@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Poppins:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,700&display=swap');




/*//////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////  */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body{
    height: 100%;
    font-family: 'Poppins', sans-serif;
}




body {
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    color: black;
    overflow-x: hidden;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

a{
    color: black;
    text-decoration: none;
}

ul{
    list-style: none;
}

p{
    margin: 5px 0;
    line-height: 1.7;
}

img{
    max-width: 100%;
}

/* Navbar */

.navbar{
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 20px 0px;
}

.navbar-brand img{
    width: 400px;
    height: 55px;
}

.navbar-container{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.navbar ul{
    display: flex;
    align-items: center;
}

.navbar li{
    margin:0 15px;
}

.navbar a:hover{
    color: rgb(189, 72, 72);
}

/* Text Styling */

p{
  text-align: justify;
}

.text-xl{
    font-size: 65px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.text-lg{
    font-size: 40px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.text-md{
    font-size: 24px;
    margin-bottom: 20px;
}
.text-sm{
    font-size: 19px;
    margin-bottom: 20px;
}

.btn{
    font-size: 16px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    outline: none;
    border: 1px solid #5b9be0;
    padding: 1.2em 2.4em;
    text-align: center;
    background-color: #5b9be0;
    border-radius: 35px;
    color: #fff;
    transition: 0.2s ease;
}

.btn:hover{
    color: #5b9be0;
    background-color: white;
}

.red-btn{
  font-family: 'Poppins', serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
  width: 140px;
  height: 60px;
  color: white;
  border-radius: 4px;
  background-color: #D65050;
  border: none;
  transition: 0.2s ease;
}

.red-btn:hover{
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.2);
  color:#D65050;
  background-color: #fff;

}

/* Hamburger Menu Icon */

.hamburger {
    display: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    z-index: 12;
    transition: all 0.25s;
}

.hamburger-top,
.hamburger-middle,
.hamburger-bottom{
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #000;
    transform: rotate(0);
    transition: all 0.5s;
}
.hamburger-middle{
    transform: translateY(7px);
}
.hamburger-bottom{
    transform: translateY(14px);
}

.open .hamburger-top{
    transform: rotate(45deg) translateY(6px) translateX(6px);
}
.open .hamburger-middle{
    display: none;
}
.open .hamburger-bottom{
    transform: rotate(-45deg) translateY(6px) translateX(-6px);
}

/* Mobile Menu */

.mobile-menu{
    z-index: 99;
    position: fixed;
    top: 87px;
    right: 0;
    width: 90%;
    height: 100%;
    color: #000;
    padding: 30px;
    background-color: #fff;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    transition: all 0.3s;
}

.mobile-menu ul{
    line-height: 3;
    border-bottom: #777 solid 1px;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.mobile-menu a{
    text-decoration: none;
    font-size: 20px;
    transition: 0.2s ease;
}

.mobile-menu a:hover{
    color: rgb(209, 79, 79);
}

.mobile-menu div{
    margin-top: 20px;
}

.mobile-menu div a{
    display: flex;
    align-items: center;
    font-size: 16px;
}


.hidden{
    transform: translateX(100%);
}

.hide{
    display: none;
}

.no-scroll{
    overflow: hidden;
}



@media (max-width:960px) {
    .text-xl{
        font-size: 40px;
    }
    .text-lg{
        font-size: 32px;
    }
    .text-md{
        font-size: 26px;
    }
    .text-sm{
        font-size: 24px;
    }
}




.box-a{
  padding: 20px 40px;
  background-image: linear-gradient(to right bottom, #2a6a9b, #4e7faa, #6c96ba, #8aacca, #a8c3da, #bbcfe3, #cddbeb, #dfe8f4, #e9edf7, #f1f3f9, #f9f9fc, #ffffff);
  width: 100%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
}

.box-a .left-section{
  max-width: 500px;
}

.box-a .left-section div{
  margin: 20px 0px;
}

.box-a .left-section .brand-title{
  text-shadow: 3px 3px 5px rgba(0,0,0,0.5);
}

.box-a .right-section{
  min-width: 500px;
}

.box-a h1{
  font-size: 80px;
}

.box-a .second h2:first-child{
  text-shadow: 3px 3px 23px rgba(0,0,0,0.6);
  font-size: 59px;
}

.box-a .second h2{
  font-size: 39px;
  text-shadow: 0px 3px 35px rgba(0,0,0,0.5);
}



.box-a h3{
  font-size: 25px;
  text-shadow: 1px 1px 23px rgba(0,0,0,0.3);
}

/* MKO PAPER TEXT */

.brand-header{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.brand-text {
  color: white;
  text-shadow: 0.1px 0.1px 2.2px #000000;
  font-size: 100px;
  text-align: center;
  position: absolute;
}

.below-brand{
  top: 30px;
  position: relative;
  font-family: 'Playfair Display', serif;
}

.below-brand{
  font-size: 50px;
}

.below-brand span, .about-main .below-brand, .product-header .below-brand{
  color: #5C9DE3;
}





.box-b .header{
    margin-top: 50px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-container{
    display: flex;
    align-items: center;
    justify-content: center;
}



.cards{
    display: flex;
    justify-content: center;
    align-items: center;

  }

.cards img{
  width: 360px;
  height: 240px;
  transition: all 0.5s ease;
}

.card{
    width: 380px;
    height: 436px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-top: 2px;
  }

  .middle-card{
    margin: 0 20px;
  }

  .card:hover img{
    transform: scale(1.19);
  }

  

  .card h2{
    margin-top: 40px;
  }
  .card:hover h2{
    color: rgb(79, 154, 216);
  }

  .box-b .btn-container{
    margin-top: 30px;
}

.forest{
    margin-top: 90px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 500px;
    position: relative;
    font-weight: bold;

}
.forest::after {
    content:'';
    background: url('images/forest.png') no-repeat center center;
    background-size:100% 100%;
    object-fit: cover;
    width: 100%;
    height: 500px;
    position: absolute;
    top:0px;
    left: 0px;
    z-index:-1;
    opacity: 0.6; 
}
  

  .forest h3{
    text-align: center;
    margin: 0;
    max-width: 490px;
    overflow-wrap: break-word;
    color: #0C1248;
    font-weight: bold;
    text-shadow: 1px 1px 2.2px #000000;
  }

  .forest p{
    margin: 0;
    max-width: 480px;
    color: #0C1248;
    font-size: 1.5625rem;
  }

  .forest-description{
  margin: 0 auto;
  }

  .infos{
    padding: 50px;
    font-size: 0.9375rem;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

  .infos h4{
    font-weight: normal;
    font-size: 15px;
  }

  .infos i{
  margin-bottom: 30px;
  font-size: 4.6875rem;
  color:#FF6239
}

.info{
    width: 380px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .location2{
        margin-top: 20px;
        margin-bottom: 20px;
    }

  

  footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 30px;
    background-color: #394450;
  }

  footer ul{
    display: flex;
    justify-content: center;
  }

  footer ul li{
    margin: 0 15px;
  }

  footer ul li:hover{
    color: rgb(211, 211, 211);
  }


  footer a{
    color: white;
  }

  footer h5{
    font-size: 15px;
    color: white;
    text-align: center;
    font-weight: normal;
  }

    .mail-bottom1{
      margin-bottom: 20px;
    }  

  .phone-number1{
    margin-bottom: 20px;
  }

  .box-c{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    color: white;
    background-color: #06063F;
  }

  .box-c img{
    max-width: 100%;
    object-fit: cover;
    background-size: contain;
    vertical-align: middle;

  }

  .box-c h3{
    font-size: 48px;
  }

  .box-c p{
    font-size: 25px;
    max-width: 600px;
  }

 
.left-side{
    align-items: center;
    justify-content: center;
    display: flex;
}

.left-side img{
    height: auto;
    max-width: 500px;
}

/* Accordion Menu */

.accordion-menu h2 {
    text-align: center;
    margin: 20px auto;
    color: #fff;
  }
  
  .accordion-menu {
    width: 100%;
    max-width: 700px;
    background: #fff;
    border-radius: 4px;
  }
  .accordion-menu li.open .dropdownlink {
    color: #000;
    
  }

  .accordion-menu li.open .dropdownlink .fa-chevron-down {
    transform: rotate(180deg);
  }
  .accordion-menu li:last-child .dropdownlink {
    border-bottom: 0;
  }
  .dropdownlink {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px 15px 45px;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
    color: #212121;
    transition: all 0.3s ease-out;
  }

  .dropdownlink h3{
    font-size: 18px;
  }

  .dropdownlink:hover h3{
    transition: 0.3s ease;
    color: #5C9DE3
  }
  

  .submenuItems {
    padding: 5px 40px;
    display: none;
    background: #fff;
  }

  .submenuItems li {
    border-bottom: 1px solid #B6B6B6;
  }

  .submenuItems p{
    line-height: 1.8;
  }
 .accordion-menu ul li:last-child{
    border-bottom: none;
 }
  
  .submenuItems a {
    display: block;
    color: #000;
    padding: 12px 12px 12px 45px;
    transition: all 0.3s ease-out;
  }

  .submenuItems a:hover{
    background-color: none;
    color: #000;
  }

  /* Products Page */

  

.products-brand {
  color: white;
  text-shadow: 0.1px 0.1px 2.2px #000000;
  font-size: 100px;
  text-align: center;
  position: absolute;
}

.products-title{
  top: 30px;
  position: relative;
  font-size: 70px;
  color: #5C9DE3;
  font-family: 'Playfair Display', serif;
}

.section-a h3{
  text-align: center;
  font-size: 60px;
}

.section-a, .section-c, .section-e, .section-g{
    color: white;
    background-color: #1E2362;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.section-a .inner-text{
  padding: 30px;
  margin-right: 30px;
}

.section-a p{
    font-size: 21px;
    max-width: 650px;
}

.section-a img{
  background-size: cover;
  object-fit: cover;
    height: auto;
    max-width: 50%;
    padding: 20px;
}


.section-b{
    margin: 20px 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    color: #121165;
} 

 .section-b img{
  height: auto;
  max-width: 600px;
  margin: 20px 0;
}




.section-b h3{
    font-size: 60px;
}

.section-b ul{
    list-style: disc;
    font-size: 22px;
}

.section-b li{
    margin: 10px 0px;
} 



.section-c h3, .section-e h3, .section-g h3{
  font-size: 65px;
}

.section-d, .section-f{
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}



.section-d img{
  height: auto;
  object-fit: cover;
  width: 280px;
}


.section-e img{
  height: auto;
  object-fit: cover;
}

.section-c, .section-e, .section-g{
  text-align: center;
}

.section-f img{
  width: 33%;
  max-width: 400px;
}

.section-g img{
  max-width: 50%;
  margin: 0;
}


.section-h{
  margin: 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.section-h img{
  object-fit: contain;
  max-width: 50%;
  max-height: 360px;
}


/* Contact Page */

.form-main{
  margin-bottom: 20px;
}

.form-title{
  text-align: center;
}

.contact-container{
  display: flex;
  justify-content: space-evenly;
}

.form-container form{
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

form label{
  align-self: flex-start;
}

form div{
  align-self: flex-start;
  padding: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

form input{
  width: 300px;
  height: 50px;
}

form input, form textarea{
  font-family: 'Poppins', serif;
  background-color: #FAFAFA;
  border: 1px solid rgba(0,0,0,0.1);
  outline: none;
  padding: 4px 20px;
  font-size: 18px;
}

textarea{
  width: 400px;
  max-height: 200px;
  resize: none;
}

.form-title{
  margin: 40px 0;
}


/* Mobile Styles */

@media (max-width:1050px) {




  .box-a h2{
    font-size: 62px;
  }
  
  .box-a .second h2:first-child{
    font-size: 38px;
  }
  
  .box-a .second h2{
    font-size: 33px;
  }
  
  
  .box-a h2{
    font-size: 23px;
  }

  .box-a button{
    font-size: 16px;
  }

   .navbar-brand img{
       width: 300px;
       height: auto;
   }

}



@media (max-width:960px){

  
    
  .cards{
   flex-direction: column;
  }
  .box-a{
   text-align: center;
   height: auto;
   flex-direction: column;
   padding: 30px;
  }
  
  footer h5{
    font-size: 13px;
  }

  .box-a h1{
    font-size: 50px;
  }

  .box-a h2{
    font-size: 60px;
  }
  
  .box-a .second h2:first-child{
    font-size: 39px;
  }
  
  .box-a .second h2{
    font-size: 29px;
  }
  
  
  .box-a h2{
    font-size: 22px;
  }

  .box-a .right-section{
    min-width: initial;
    max-width: 100%;
  }

  

  .box-b .header{
   margin-top: 30px;
  }

  .brand-text{
    font-size: 75px;
  }

  .box-b .below-brand{
    text-align: center;
    font-size: 38px;
  }

  .box-c{
    text-align: center;
    height: auto;
    flex-direction: column;
   }
 
   .box-c h2{
    font-size: 40px;
   }

   .box-c p{
    max-width: 450px;
   }
  
   
  
  .infos{
   flex-direction: column;
   align-items: center;
  }
  .middle-info{
   margin: 40px 0px;
  }

  .forest{
    justify-content: center;
  }

  

  .forest-description{
    position: initial;
    right: initial;
    margin: 0;
   }
   .forest-description h3{
    text-align: center;
   }
   .hamburger{
       display: block;
   }

  .navbar-right{
   display: none !important;
  }

  footer{
    margin: 0;
    padding: 40px 0;
    font-size: 16px;
  }
  .left{
   margin-top: 50px;
  }
 

  .left-side{
   flex-direction: column;
  }
  .left-side img{
   width: 350px;
  }

  .section-a .inner-text{
    margin: 0;
  }

  .section-a, .section-b, .section-c, .section-d, .section-e, .section-f, .section-g, .section-h{
    width: 100%;
    max-height: none;
    height: auto;
   flex-direction: column;
  }

  
 
  .section-a img, .section-b img, .section-c img, .section-d img, .section-e img, .section-f img, .section-g img, .section-h img{
    max-width: 100% !important;
    max-height: 410px;
    height: auto;
  }

  

  

  .section-a h3, .section-b h3, .section-c h3, .section-d h3, .section-e h3, .section-f h3, .section-g h3, .section-h h3{
    padding: 5px 20px;
   text-align: center;
   font-size: 50px;
  }

  .section-a p{
    margin: 5px 15px;
   font-size: 20px;
  }

  .section-b{
    display: flex;
    align-items: center;
  }

  .section-b .inner-text{
    margin: 0 35px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .section-b ul{
    font-size: 20px;
  }

  .section-c h3, .section-e h3{
    padding: 20px;
  }

  .section-a h3, .section-c h3, .section-e h3, .section-g h3{
    font-size: 42px;
  }

  
  .section-e img{
    max-height: 360px;
  }

  .section-f img, .section-c img, .section-g img, .section-a img{
    max-width: 100%;
    margin: 0;
  }

  

  .section-h img{
    max-width: 400px;
    margin: 20px 0px;
  }

  .section-f img{
    width: auto;
    max-width: 450px;
  }

 .section-f img:nth-child(2){
  margin: 50px 0;
 }

 
  .products-brand{
    font-size: 70px;
  }

  .products-title{
    font-size: 55px;
  }

  .contact-container{
    flex-direction: column;
  }

  .map-container{
    margin-top: 60px;
  }
  
  form div:nth-child(4) {
    align-self: center;
  }

  .form-container{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .map-container{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  footer h6{
    font-size: 12px;
  }

  
 
}
@media (max-width:550px){

  img.logo{
    width: 290px;
  }

  .mobile-menu{
    top: 85px;
  }

  textarea{
    width: 300px;
    height: 150px;
  }
 
  .box-b .below-brand{
    font-size:28px;
  }

  .brand-text{
    font-size: 60px;
  }

  .box-c{
    padding: 40px 20px;
  }

  .box-c h3{
    font-size: 35px;
  }



  .forest p, .box-c p{
    font-size: 20px;
  }

  footer ul{
    font-size: 14px;
  }

  footer ul li{
    margin: 0 10px;
  }

  

  .contact-header h2{
    font-size: 33px;
  }

  

}


