/* 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{
        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-1 .face{
        position:absolute;
        display: flex;
        left: 200px;
        top:250px;
    }
    .section-1 .insta{
        position: absolute;
        left: 260px;
        top:250px;}
    .section-1 .twiter{
       position: absolute;
        left: 320px;
        top:250px;}
    .section-1 .email{
       position:absolute;
        left: 380px;
        top:250px;}
    .section-1 .gg{
        position: absolute;
        left: 440px;
        top:250px;}
    .section-1 .logo{
        width: 700px;
        height: 300px;
        position: relative;
        display: flex;
        justify-content: center;
      
     
    }
   .section-2{
    position: relative;
    display: flex;
    top: 180px;
    left: 50px;
 }

    .accordion-body{
        font-size: 22px;
        color: var(--color-main);
    }
    .accordion accordion-flush{
        position: relative;
        top: 200px;
    }
    .font{
        font-size: 25px;
    }
    .section-3{
        position: relative;
        top: 150px;
        left: 60px;
    color: #76453B;
        font-size: 30px;
    
    }
   
  /* Footer */
.footer {

    position: relative;
   
   top: 1000px;
    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{
      width:840px;
    }
    .section-2{
      left: 5px;
      width: 700px;
    }
    .section-3{
      width: 800px;
      left: 10px;
    }
    .footer{
      width: 850px;
    }
    .footer .footer-box-1 {
      left: 40px;
  }}
  
  
  @media(max-width:768.98px)
   {
  .section-1{
    width: 1170px;
  
  }
  
  .footer{
    width: 1170px;
  }
  
}

