/* Exporting Fonts */
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-shims.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v5-font-face.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-font-face.min.css?token=7ca6a895ef);
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  box-sizing: border-box;
}

:root {
  --primery-color: #47B04F;
  --secondary-color: #1C1C1C;
  --black: #000000;
  --white: #fff;
}

body,
html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}
img {
  width: 100%;
  height: auto;
}

a,
a:hover,
button,
button:hover {
  transition: 0.3s all ease;
}
a{
  text-decoration: unset;
  color: unset;
}
ul{
  list-style: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  margin: 0;
  padding: 0;
}
h1{
  font-size: 133px;
  font-weight: 700;
  color: var(--primery-color);
  margin-bottom: 20px;
}
h2{
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
}
p{
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
}

.site-btn {
  border-radius: 37px;
  border: 1px solid var(--primery-color);
  background: var(--primery-color);
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins";
  min-width: 180px;
  padding: 12px 16px;
  color: var(--white);
}

.site-btn:hover {
  background: transparent;
  border: 1px solid var(--black);
  color: #231F20;
  transition: 0.3s all ease;
}

.site-btn.outline-btn{
  background: transparent;
  border: 1px solid var(--black);
  color: #231F20;
}
.site-btn.outline-btn:hover{
  border: 1px solid var(--primery-color);
  background: var(--primery-color);
  color: var(--white);
  transition: 0.3s all ease;
}

/* Header */
header {
  background: var(--white);
  box-shadow: 0px 0px 16.8px 0px rgba(0, 0, 0, 0.12);
  padding: 18px 0;
}
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1050;
  padding: 8px 0;
  background: var(--white);
}
header .logo img{
  max-width: 180px;
}

header .nav-item {
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  margin-right: 37px;
}
header .nav-item.active a{
  color: var(--primery-color);
}
header .nav-item:last-of-type{
  margin-right: 0;
}
header .nav-item a:hover {
  color: var(--primery-color);
}

/* Banner */
.banner{
  background: rgba(71, 176, 79, 0.2);
  padding-top: 110px;
  margin-bottom: 130px;
}

.banner .text span{
  font-size: 25px;
  font-weight: 500;
  color: #4D4D4D;
}

.banner .text p{
  font-size: 16px;
  max-width: 455px;
}
.banner-details{
  position: relative;
}
.sticky-notes{
  position: absolute;
  bottom: -30px;
  display: flex;
  align-items: center;
}
.sticky-notes .notes{
  position: relative;
  background-image: url(../Images/bg-notes.png);
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 60px 24px 54px -40px rgba(0, 0, 0, 0.15);
  border-top: 8px solid var(--primery-color);
  padding: 18px 20px;
  margin-right: 20px;
  min-width: 217px;
  text-align: center;
}
.sticky-notes .notes:last-of-type{
  margin-right: 0 !important;
}
.sticky-notes .notes .logo img{
   padding: 30px 0;
   max-width: 60px;
}
.sticky-notes .notes p{
   font-weight: 600;
}

/* Tracking System */
.tracking-system{
  margin: 100px 0;
}
.tracking-system .tittle{
  max-width: 745px;
   text-align: center;
   margin: 0 auto 40px;
} 
.tracking-system .tittle p{
  margin-top: 20px;
}

/* Show you */
.show-you{
  margin: 100px 0;
  position: relative;
}
.show-you::before{
  content: " ";
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 100%;
  height: 54%;
  background-image:  url(../Images/bg-patren.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
.show-you .explain .text{
  margin-bottom: 70px;
}
.show-you .explain h2{
  font-weight: 600;
  font-size: 30px;
}
.show-you .explain p{
  color: var(--primery-color);
  margin-top: 20px;
  font-weight: 500;
}
.custom-form{
  margin-left: 60px;
}
.custom-form .form-control{
  background: rgba(255, 255, 255, 0.19);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  border-radius: 0;
  box-shadow: unset;
}
.custom-form input::placeholder{
  color: var(--white);
}

.custom-form .submit-btn .site-btn{
  width: 100%;
  background: #231F20;
  color: var(--white);
  border-radius: 0;
  border: 1px solid #231F20;
  margin-top: 20px;
}
.custom-form .submit-btn .site-btn:hover{
  width: 100%;
  background: transparent;
  border: 1px solid var(--white);
}

.features-list .feature:nth-child(even) .row {
  flex-direction: row-reverse;
}
.features-list .explain .tittle p{
   margin: 16px 0;
}

.sub-feature li{
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  
}
.sub-feature li:last-of-type{
  margin-bottom: 0;
}

.features-list .feature{
  margin-bottom: 70px;
}
.features-list .feature:last-of-type{
  margin-bottom: 0;
}

.features-list .wrapper{
  max-width: 980px;
  margin: auto;
}
footer{
  margin: 100px auto 50px;
  text-align: center;
}
footer .wrapper{
  padding: 40px 30px;
  background-image: url(../Images/bg-footer.png);
  background-size: 100% 100%;
}
footer .content{
  max-width: 970px;
  margin: auto;
}

.footer-logo img{
   max-width: 320px;
   text-align: center;
}
.footer-logo{
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  padding-bottom: 25px;
}

.copy-right p{
  color: var(--white);
}
.copy-right p a:hover{
  color: var(--black);
}
.pivacy-policy{
  margin: 50px 0;
}
.pivacy-policy h2 {
  color: var(--primery-color);
  font-size: 40px;
}

.pivacy-policy h4 {
  margin: 20px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}

.pivacy-policy p {
  color: var(--black);
}
.pivacy-policy ul{
  list-style: disc;
}
.pivacy-policy li {
  margin-top: 10px;
}
@media (max-width:1199px) {
  h2{
    font-size: 35px;
  }
  p{
    font-size: 16px;
  }
  .header-btn .site-btn{
    min-width: 130px;
    font-size: 14px;
  }
  .banner .text span {
    font-size: 22px;
  }
  h1 {
    font-size: 110px;
  }
  .sticky-notes .notes {
    min-width: 190px;
    padding: 30px 20px;
  }
  .sticky-notes .notes p {
   font-size: 16px;
  }
  .sticky-notes .notes .logo img {
    padding: 20px 0;
    max-width: 40px;
  }
  .sticky-notes {
    bottom: -67px;
  }

  .show-you .explain h2 {
    font-size: 20px;
  }
  .custom-form .submit-btn .site-btn{
    margin-top: 0;
  }
  .features-list .wrapper {
    max-width: 650px;
  }
  footer .content {
    max-width: 670px;
    margin: auto;
  }
  footer .wrapper {
    padding: 25px 25px;
  }
}
@media (max-width:991px) {
  h1 {
    font-size: 90px;
   }
   h2 {
    font-size: 28px;
  }
  .navbar-collapse {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 10px 36px 20px;
    z-index: 1060;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  header{
    padding: 6px 0;
  }
  header .nav-item{
    margin-right: 0;
  }
  header .nav-item a{
    padding: 0 0 14px;
  }
  header .barger-icon {
    border: unset;
    background-color: transparent;
    position: relative;
    display: inline-block;
    width: 30px;
    box-shadow: none;
  }
  header .nav-link {
    margin-right: 0;
  }
  header .barger-icon span {
    line-height: 0;
  }
  header .active-manu span {
    display: none;
  }
  header .barger-icon::before,
  header .barger-icon span::before,
  header .barger-icon::after {
    background-color: var(--black);
    width: 100%;
    height: 4px;
    border-radius: 2px;
    content: "";
    position: absolute;
    z-index: 0;
    top: 10px;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.3s all ease;
  }
  header .barger-icon::after {
    bottom: 10px;
    top: unset;
  }
  header .barger-icon span::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: unset;
  }
  .active-manu::before {
    transform: rotate(-45deg);
    top: unset !important;
  }
  .active-manu::after {
    transform: rotate(45deg);
    bottom: -1px !important;
  }
  /* Banner */
  .banner{
    padding: 50px 0 100px;
    margin-bottom: 100px;
    position: relative;
    z-index: -1;
  }
  .sticky-notes {
    bottom: -180px;
  }
  .sticky-notes .notes {
    min-width: 174px;
    padding: 21px 15px;
  }

  /* Tracking System */
  .tracking-system {
    margin: 120px 0 50px;
  }
  .tracking-system .tittle {
    margin: 0 auto 25px;
  }
  /* Show You */
  .show-you {
    margin: 50px 0;
  }
  .show-you::before {
    height: 59%;
  }
  .show-you .explain .text {
    margin-bottom: 35px;
  }
  .custom-form {
    margin-left: 0;
  }
  .sub-feature li {
    font-size: 16px;
  }
  .features-list{
    margin: 50px 0;
  }
  footer {
   margin: 50px 0;
  }

  .footer-logo img {
    max-width: 270px;
  }
  footer .content {
    max-width: 490px;
  }
  .pivacy-policy h2 {
    font-size: 30px;
  }
}

@media (max-width:767px) {
  h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 24px;
  }
  .navbar-collapse {
    padding: 10px 16px 20px;
  }
  .active-manu::after {
    bottom: 0px !important;
  }
  .banner {
    padding: 50px 0 0px;
  }
  .banner .text span {
    font-size: 18px;
  }
  .banner .phone-pic{
    max-width: 230px;
    margin:270px auto 0;
  }
  .sticky-notes {
    bottom: 370px;
  }
  .sticky-notes .notes {
    min-width: 160px;
  }
  .show-you {
    padding: 30px 0 0;
  }
  .show-you::before {
    height: 100%;
  }

  .show-you .explain h2 {
    color: var(--white);
    margin-top: 30px;
  }
  .show-you .explain p {
    color: var(--white);
  }
  .show-you .custom-form{
    margin-bottom: 30px;
  }
  .footer-logo img {
    max-width: 200px;
  }
  .footer-logo {
    margin-bottom: 17px;
    padding-bottom: 16px;
  }
  footer .content {
    max-width: 280px;
  }
  .copy-right p {
    font-size: 14px;
  }
  footer .wrapper {
    padding: 16px 20px;
  }
  .pivacy-policy h4 {
    font-size: 18px;
  }
}