@font-face {
 font-family: madeTommyLight;
 src: url('../fonts/MADE-TOMMY-Light.otf');
}

@font-face {
 font-family: madeTommyMedium;
 src: url('../fonts/MADE-TOMMY-Medium.otf');
}

@font-face {
 font-family: madeTommyBold;
 src: url('../fonts/MADE-TOMMY-Bold.otf');
}

@font-face {
 font-family: madeTommyExtraBold;
 src: url('../fonts/MADE-TOMMY-ExtraBold.otf');
}

html {
 padding: 0;
 overflow-x: hidden;
 min-width: 100vw;
 scroll-behavior: smooth;
}

body {
 height: 0;
 padding: 0;
 margin: 0;
}

header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 min-height: 160px;
 max-height: 160px;
 background-color: white;
 box-shadow: 10px 0 30px #363e53;
 z-index: 2;
}

@media screen and (max-width: 900px) {
 header {
  display: flex;
 }
}

header img {
 height: 160px;
 margin-left: 30px;
}

header ul {
 display: inline-flex;
 position: relative;
 list-style: none;
 margin-right: 50px;
}

header .nav-menu {
 visibility: hidden;
 position: absolute;
}

@media screen and (max-width: 900px) {
 header ul {
  visibility: hidden;
  position: absolute;
 }

 @keyframes verticalSlide {
  from {max-height: 0;}
  to {max-height: 500px;}
}
 
 header .nav-menu.visible {
  display: flex;
  justify-content: space-between;
  align-items: center;
  visibility: visible;
  position: absolute;
  top: 160px;
  padding-left: 20px;
  width: 100vw;
  background-color: white;
  opacity: 80%;
  animation-name: verticalSlide;
  animation-duration: 1s;
 }

 @media screen and (max-width: 416px) {
   header .nav-menu.visible {
     flex-direction: column;
     align-items: flex-start;
   }
 }

 @keyframes fadeIn {
  from {opacity: 0%;}
  to {opacity: 100%;}
 }

 header .nav-menu .nav-content.visible {
  visibility: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  list-style: circle;
  animation-name: fadeIn;
  animation-duration: 1s;
 }
}

header li {
 margin: 0 8px 0 8px;
}

header .nav-link {
 text-decoration: none;
 color: #005A29;
 padding: 3px;
 font-family: madeTommyBold;
 white-space: nowrap;
}

header .nav-link:hover {
 background-color: #005A29;
 border-radius: 10px;
 color: white;
}

header .menu {
 visibility: hidden;
 position: absolute;
}

@media screen and (max-width: 900px) {
 header .menu {
  align-items: center;
  visibility: visible;
  position: relative;
  background-color: white;
  border: none;
  margin-right: 40px;
 }
 
 header .menu:hover {
  cursor: pointer;
  opacity: 60%;
 }

 header .menu:active {
  height: 32px;
 }
 
 header .menu .icon {
  height: 20px;
 }
}

header .resp-lang-div.visible {
  margin-right: 50px;
  animation-name: fadeIn;
  animation-duration: 1s;
}

header .social-div {
  position: absolute;
  right: 10px;
  top: 160px;
}

header .social-div .logo {
  height: 18px;
}

header .lang-div {
  position: absolute;
  right: 10px;
  top: 40px;
}

@media screen and (max-width: 900px) {
  header .lang-div {
    display: none;
  }
}

header .lang-link:hover {
  cursor: pointer;
}

header .lang-link {
  height: 18px;
  margin-left: 0;
}

header .top-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
}

header .top-button .icon {
  height: 50px;
}

#main {
 z-index: -1;
}

#main #sectionOne {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: space-around;
 background-image: url('../images/bg-sectionOne.jpg');
 background-repeat: no-repeat;
 background-size: cover;
 background-position: center;
 min-height: 700px;
}

#main #sectionOne .text-div {
  margin-top: 30vh;
 }

#main #sectionOne .text-div .row-one {
  color: #58e00e;
  margin: 0;
  font-family: madeTommyExtraBold;
  text-align: center;
  font-size: 90px;
  letter-spacing: -3px;
  text-shadow: 5px 4px 2px #041000;
}

@media screen and (max-width: 510px) {
  #main #sectionOne .text-div .row-one {
    font-size: 50px;
  }
}

#main #sectionOne .text-div .row-two {
  color: #9BBB5C;
  margin: 0;
  font-family: madeTommyBold;
  text-align: center;
  font-size: 40.6px;
  margin-top: -30px;
  text-shadow: 5px 4px 2px #041000;
}

@media screen and (max-width: 510px) {
  #main #sectionOne .text-div .row-two {
    font-size: 21.6px;
    max-width: 279px;
    margin-top: -10px;
  }
}

#main #sectionOne .button {
  background-color: #679352;
  color: white;
  text-decoration: none;
  font-family: madeTommyMedium;
  padding: 5px 10px 5px 10px;
  border-radius: 5px;
  margin-top: -100px;
}

#main #sectionOne .button:hover {
  opacity: 80%;
}

#main #sectionTwo {
  display: flex;
  flex-direction: column;
  background-image: url('../images/bg-sectionTwo.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  min-height: 900px;
}

@media screen and (max-width: 520px) {
  #main #sectionTwo {
    justify-content: center;
    background-image: none;
  }
}

@media screen and (max-width: 363px) {
  #main #sectionTwo {
    padding-top: 200px;
  }
}

@media screen and (max-width: 520px) {
  #main #sectionTwo .logo-div {
    display: none;
  }
}

#main #sectionTwo .logo-div .logo {
   height: 500px;
   margin-left: 25vw;
}

@media screen and (max-width: 700px) {
  #main #sectionTwo .logo-div .logo {
    margin-left: 5px;
  }
}

#main #sectionTwo .text-div {
   margin-left: 100px;
}

@media screen and (max-width: 440px) {
  #main #sectionTwo .text-div {
    margin-left: 20px;
  }
}

 #main #sectionTwo .text-div .header {
  color: #005A29;
  margin: 0;
  font-family: madeTommyBold;
  font-size: 60px;
  border-left: #005A29 solid 3px;
  padding-left: 10px;
 }

#main #sectionTwo .text-div .header .part-two {
  color: #679352;
}

#main #sectionTwo .text-div .body {
  font-family: madeTommyLight;
  color: #005A29;
  padding-left: 13px;
  font-size: 25px;
  max-width: 60vw;
}

#main #sectionTwo .video {
  width: 40vw;
  height: 30vw;
  margin-bottom: 20px;
}

#main #sectionThree {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-image: url('../images/bg-sectionThree.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 51vw;
}

#main #sectionThree .header-div .header {
  color: white;
  margin: 0;
  font-family: madeTommyBold;
  font-size: 40px;
  border-left: #E9C33D solid 3px;
  padding-left: 10px;
  margin-left: 13vw;
  margin-top: 110px;
}

#main #sectionThree .header-div .header .part-two {
  color: #E9C33D;
}

@media screen and (max-width: 990px) {
  #main #sectionThree .header-div .header {
    margin-top: 230px;    
  }
}

@media screen and (max-width: 380px) {
  #main #sectionThree .header-div .header {
    margin-top: 330px;    
  }
}

#main #sectionThree .services-div {
  display: flex;
  margin: 50px 50px;
}

@media screen and (max-width: 990px) {
  #main #sectionThree .services-div {
    position: relative;
    flex-wrap: wrap;
    max-width: 600px;
  }
}

#main #sectionThree .services-div .service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}


@media screen and (max-width: 990px) {
  #main #sectionThree .services-div .service {
    border-right: none;
  }
}

@media screen and (max-width: 580px) {
  #main #sectionThree .services-div .service {
    padding: 20px 0 20px 0;
  }
}

#main #sectionThree .services-div .service.last {
  border-right: 0;
}

#main #sectionThree .services-div .service .title {
  color: white;
  font-family: madeTommyBold;
  font-size: 25px;
  text-align: center;
  width: 208px;
  margin: 0;
}

#main #sectionThree .services-div .service .title .part-two {
  color: #E9C33D; 
}

#main #sectionThree .services-div .service .link {
  background-color: #E9C33D;
  color: #005A29;
  text-decoration: none;
  font-family: madeTommyMedium;
  padding: 5px 10px 5px 10px;
  border-radius: 5px;
  text-align: center;
  width: 84px;
  opacity: 85%;
}

#main #sectionThree .services-div .service .link:hover {
  opacity: 75%;
}

#main #sectionThree .product-img {
    width: 300px;
    border: solid white 10px;
    border-radius: 10px 10px 50px 10px;
}

footer {
  height: 250px;
  background-color: white;
  width: 100vw;
  padding-top: 10px;
 }

 footer .social-div {
   padding-left: 30px;
 }

 footer .social-div a {
   text-decoration: none !important;
 }

 footer .social-div .logo {
   height: 40px;
 }

 footer .phone-div {
  margin: 16px 0 16px 0;
 }

 footer .phone {
  margin: 0;
 }

 footer .top {
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 footer .top .left {
   margin-left: 120px;
 }

 @media screen and (max-width: 590px) {
    footer .top .left {
      margin-left: 10px;
    }
 }
 
 footer .top .left .item {
  display: flex;
  align-items: center;
 }
 
 footer .top .left .item .icon {
  width: 20px;
  height: 15px;
  margin-right: 10px;
 }
 
 footer .top .left .item .info {
  color: #005A29;
  font-family: madeTommyLight;
  font-size: 16px;
 }

 footer .top .right {
   margin-right: 60px;
 }

 @media screen and (max-width: 590px) {
  footer .top .right {
    margin-right: 1px;
  }
 }
 
 footer .top .right .logo {
  height: 200px;
 }
 
 footer .bottom {
  display: flex;
  justify-content: center;
 }
 
 footer .bottom .copyright {
  color: #005A29;
  font-family: madeTommyBold;
  font-size: 15px;
  white-space: nowrap;
 }