
  
/* Header */
.header {
    position: fixed;
    width: 100%;
    z-index: 999;
    box-shadow: 2px 1px 3px 2px rgba(0, 0, 0, 0.356);
    border-top: 1px var(--color-main) solid;
}

.header .hd-voucher {
    background: var(--color-main);
    color: #fff;
    padding: 3px;
    justify-content: space-between;
    display: flex;
}

.header .hd-voucher .hd-voucher-content {
    font-size: 15px;
    margin: auto;
}

.header .hd-voucher .hd-voucher-icon {
    color: black;
    font-size: 18px;
}

.header .hd-voucher .hd-voucher-icon:hover {
    cursor: pointer;
    color: #fff;
    transition: all 0.3s;
}

 .header .container {
    max-width: 1120px;
    margin-inline: 1.5rem;
  }
  
  /*=============== HEADER ===============*/
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-family: var(--body-font);
    background-color: #fff;
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: var(--z-fixed);
    border-top: #43766c78 1px solid;
  }
  
  /*=============== NAV ===============*/
  .header .nav {
    height: var(--header-height);
  }
  
  .header .nav__logo, 
  .nav__burger, 
  .nav__close {
    color: #43766C;
  }
  
  .header .nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header .nav__logo img {
    height: 35px;
    width: auto;
    margin-left: -25px;
    /* Color highlighting when pressed on mobile devices */
    /*-webkit-tap-highlight-color: transparent;*/
  }
  
  
  .header .nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
  }
  
  .header .nav__burger {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
  }
  .header .nav__close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
  }
  
  .header .nav__close {
    opacity: 0;
  }
  
  /* Navigation for mobile devices */
  @media screen and (max-width: 1118px) {
    .header .nav__menu {
    background: #fff;
      position: absolute;
      left: 0;
      top: 2.5rem;
      width: 100%;
      height: calc(100vh - 3.5rem);
      overflow: auto;
      pointer-events: none;
      opacity: 0;
      transition: top .4s, opacity .3s;
    }
    .header .nav__menu::-webkit-scrollbar {
      width: 0;
    }
    .header .nav__list {
      background-color: var(--black-color);
      padding-top: 1rem;
    }
  }
  
  .header .nav__link {
    font-size: 20px;
    color: #000;
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
  }
  
  .header .nav__link:hover {
    color: #43766C;
  }
  
  /* Show menu */
  .header .show-menu {
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
  }
  
  /* Show icon */
  .header .show-icon .nav__burger {
    opacity: 0;
    transform: rotate(90deg);
    color: #43766C;
  }
  .header .show-icon .nav__close {
    opacity: 1;
    transform: rotate(90deg);
    color: #43766C;
  }
  
  /*=============== DROPDOWN ===============*/
  .header .dropdown__item {
    cursor: pointer;
  }
  
  .header .dropdown__arrow {
    font-size: 1.25rem;
    font-weight: initial;
    transition: transform .4s;
  }
  
  .header .dropdown__link, 
  .dropdown__sublink {
    padding: 10px;
    width: 220px;
    color: #fff;
    background-color: #43766C;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s;
  }
  
  .header .dropdown__link i, 
  .dropdown__sublink i {
    font-size: 1.25rem;
    font-weight: initial;
  }
  
  .header .dropdown__link:hover, 
  .dropdown__sublink:hover {
    background-color: #a7bbb7;
  }
  
  .header .dropdown__menu, 
  .dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
  }
  
  /* Show dropdown menu & submenu */
  .header .dropdown__item:hover .dropdown__menu, 
  .dropdown__subitem:hover > .dropdown__submenu {
    max-height: 1000px;
    transition: max-height .4s ease-in;
  }
  
  /* Rotate dropdown icon */
  .header .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }
  
  /*=============== BREAKPOINTS ===============*/
  /* For small devices */
  @media screen and (max-width: 575.99px) {
    .header .container {
      margin-inline: 1rem;
    }
  
    .header .nav__link {
      padding-inline: 1rem;
    }

    .header .hd-voucher {
        display: none;
    }
  }
  
  /* For large devices */
  @media screen and (min-width: 1118px) {
    .header .container {
      margin-inline: auto;
    }
  
    .header .nav {
      height: calc(var(--header-height) + 2rem);
      display: flex;
      justify-content: space-between;
    }
    .header .nav__toggle {
      display: none;
    }
    .header .nav__list {
      height: 100%;
      display: flex;
      column-gap: 3rem;
    }
    .header .nav__link {
      height: 100%;
      padding: 0;
      justify-content: initial;
      column-gap: .25rem;
    }
    .header .nav__link:hover {
      background-color: transparent;
    }
  
    .header .dropdown__item, 
    .dropdown__subitem {
      position: relative;
    }
  
    .header .dropdown__menu, 
    .dropdown__submenu {
      max-height: initial;
      overflow: initial;
      position: absolute;
      left: 0;
      top: 6rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s, top .3s;
    }
  
    .header .dropdown__link, 
    .dropdown__sublink {
      padding-inline: 1rem 3.5rem;
    }
  
    .header .dropdown__subitem .dropdown__link {
      padding-inline: 1rem;
    }
  
    .header .dropdown__submenu {
      position: absolute;
      left: 100%;
      top: .5rem;
    }
  
    /* Show dropdown menu */
    .header .dropdown__item:hover .dropdown__menu {
      opacity: 1;
      top: 5.5rem;
      pointer-events: initial;
      transition: top .3s;
    }
  
    /* Show dropdown submenu */
    .header .dropdown__subitem:hover > .dropdown__submenu {
      opacity: 1;
      top: 0;
      pointer-events: initial;
      transition: top .3s;
    }
  }

/*section*/


.section-1 .main{
    width: 100%;
    position: absolute;
    display: flex;
    top: 100px;
    justify-content: center;
    font-size: 70px;
    color: rgb(67, 118, 108);
}
.section-1 .para{
    width: 800px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    top:150px;
    text-align: center;
    color: rgb(67, 118, 108);
  

}

    .section-1{
        position: relative;
        top: 51px;
        width: 100%;
        height: 450px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(67, 118, 108, 0.2);
    
    }

.section-2{
    
    margin-top: 140px;
    display: flex;
    width: 450px;
    height: 300px;
    position: relative;
}
.section-2 .hd{
    margin-bottom:  250px;
    font-size: 20px;
    color: #76453B;
    position: absolute;
}
.section-2 .pa{
    top: 50px;
    position: absolute;
     color: var(--color-main);
    display: flex;
    justify-content: center;
    
    

}
.section-2 .phone{
    position: absolute;
    top: 150px;
    color: var(--color-main);
}
.section-2 .email{
    position: absolute;
    top: 190px;
    color: var(--color-main);
}
.section-2 .address{
    position: absolute;
    top: 230px;
    color: var(--color-main);
}
.section-2 .face{
    position: absolute;
    top:280px;
    
}
.section-2 .insta{
    position: absolute;
    top: 280px;
    left: 50px;
}
.section-2 .twiter{
    position: absolute;
    top: 280px;
    left: 100px;
}
.section-3{
    position: relative;
    top:150px;
    align-items: center;
    width: 700px;
    height: 400px;
    border-style:ridge ;
    border-radius: 20px;
    border-color: rgba(67, 118, 108, 0.2);
    padding: 20px;
}
.form-control{
    
 border-color:rgba(67, 118, 108, 0.2) ;
}
.button-click{
  cursor: pointer;
  
}
.dong{
  cursor: pointer;
  margin-left: 220px;
  width: 70px;
height: 50px;
padding: auto;
border-radius: 10px;
border: 1px solid;
border-color: var(--color-text-1);
text-align: center;
padding-top: 10px;

}
.dong:hover{
  background-color: var(--bg-1);
}

.btn-1{
width: 70px;
height: 50px;
background-color: #a7bbb7;
color: var(--color-text-1);
border-radius: 10px;
border: 1px solid;
border-color: var(--color-text-1);

}
:hover.btn-1{
  background-color: var(--color-main);
  color: #fff;
}
.btn btn-primary#blur.active{
  filter: blur(20px);
  pointer-events: none;
  user-select: none;
}
#popup{
  border-radius: 12px;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  padding: 50px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}
#popup.active{
    top: 50%;
    visibility: visible;
    opacity: 1;
    transform: 0.5s;
}
.btn-2{
  width: 70px;
  height: 50px;
  background-color: #a7bbb7;
  color: var(--color-text-1);
  padding-left: 15px;
  padding-top: 10px;
  border-radius: 10px;
  border: 1px solid;
  border-color: var(--color-text-1);

}
:hover.btn-2{
  background-color: var(--color-main);
  color: #fff;}
.section-4{
    display: flex;
    position: relative;
    top:300px;
    align-items: center;
    justify-content: center;

}

.map {
  width: 100%;
  margin-bottom: -58px;
  height: 300px;
  box-shadow: 2px 1px 3px 2px rgba(0, 0, 0, 0.356);
}




















/* Footer */
.footer {
    position: relative;
    top: 360px;
    background: var(--color-main);
    padding: 10px;
}

.footer .footer-box-1 {
    margin-left: 100px;
}

.footer .footer-box-1 .footer-box-1-img {
    background: #fff;
    padding: 10px;
    display: inline-block;
    margin-top: 30px;
}

.footer .footer-box-1 .footer-box-1-img img {
    width: auto;
    height: 30px;
}

.footer .footer-box-1 .footer-box-1-content-1 {
    color: var(--color-text-2);
    font-size: 24px;
    opacity: 0.85;
    font-weight: 500;
    font-family: var(--font);
    margin-top: 30px;
    margin-bottom: 5px;
}

.footer .footer-box-1 .footer-box-1-content-2 {
    color: var(--color-text-2);
    font-size: 18px;
    opacity: 0.85;
    font-family: var(--font);
}

.footer .footer-box-1 .footer-box-1-signup-button {
    border: 1px #ffffff89 solid;
    border-radius: 12px;
    padding: 10px 30px;
    background: var(--color-text-2);
    text-align: center;
    display: inline;
    align-items: center;
    transition: all 0.3s;
}

.footer .footer-box-1 .footer-box-1-signup-button a {
    text-align: center;
    color: var(--color-text-1);
    font-size: 20px;
}

.footer .footer-box-1 .footer-box-1-signup-button:hover {
    background: var(--color-highlight);
}

.footer .footer-box-2 {
    margin-left: 70px;
    margin-top: 20px;
}

.footer .footer-box-2 .footer-box-2-inner {
    margin-right: 50px;
}

.footer .footer-box-2 .footer-box-2-inner p {
    color: var(--color-text-2);
    font-size: 18px;
}

.footer .footer-box-2 .footer-box-2-inner p a {
    color: var(--color-text-2);
    font-size: 18px;
}

.footer .footer-box-2 .footer-box-2-inner .underline {
    text-decoration: underline;
}

.footer .footer-box-2 .footer-box-2-inner .footer-box-2-title {
    color: var(--color-text-2);
    font-size: 30px;
    font-weight: 600;
}

.footer .footer-box-2 .footer-box-2-inner .footer-box-2-icon a {
    font-size: 22px;
    margin-right: 15px;
    color: var(--color-text-2);
}

.footer .footer-navbar {
    content: "";
    background: var(--color-text-2);
    width: calc(100% - 170px);
    height: 0.5px;
    position: absolute;
    bottom: 35px;
    margin-left: 100px;
}

.footer .footer-cs {
    color: var(--color-text-2);
    margin-left: 100px;
}

/* End Footer */


@media(max-width:575.98px) {
  
.section-1 .para{
  width: 600px;
}
  .section-1{
    width: 840px;;
  }
  .section-2{
    left: 110px;
  }
  .section-3{
    width: 575px;
    left: 110px;
  }
  .section-4{
    width: 840px;
  }.footer{
    width: 850px;
  }
  .footer .footer-box-1 {
    left: 40px;
}

}

