:root {
    --primary: #3f939a;
    --secondary: #254c5b;
    --gradientBg: #fafdff;
    --headerHeight: 116px;
    --borderRadius: 18px;
    --boxShadow: 0 4px 22px rgba(31, 47, 70, 0.08);
    --gray: #7E8896;
    --footerBg: #1C8895CC;
    --footerLight: #b7cacf;
    --inputBg: #f6f8fa;
  }
.header {
    position: fixed;
    background: transparent;
    overflow: hidden;
    max-width: 1920px;
    margin-inline: auto;
    top: 0;
    z-index: 2;
    width: 100%;
    transition-property: transform;
    transition-duration: 500ms;
  }
  header.hide {
  transform: translateY(-100%);
  }
  .header.bgwhite{
    background: #fff;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--headerHeight);
    margin: 0 80px;
    z-index: 2;
    position: relative;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #000;
    font-weight: bold;
    font-size: 25px;
  }
  .logo a {
    color: #000;
    text-decoration: none;
  }
  
  nav ul {
    display: flex;
    gap: 72px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #131313;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.2s;
  }
  
  nav ul li a:hover {
    color: var(--primary);
  }
  @media screen and (max-width: 1279px) {
    .header-inner{
      margin-inline: 32px;
    }
  }
  @media screen and (max-width: 680px) {
    .header-inner {
      margin-inline:0px;
      gap: 9px;
      padding: 10px 5vw;
      height: auto;
    }
    nav ul{
      gap: 14px;
    }
    nav ul li a {
      font-size: 14px;
      font-weight: 400;
    }
  }
  .hamburger-menu{
    display: none;
  }
  #menu__toggle {
    opacity: 0;
  }

  #menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
  }
  #menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
  }
  #menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
    visibility: visible;
    left: 0;
  }

  .menu__btn {
    display: none;
  }

  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;

    width: 100%;
    height: 2px;

    background-color: #616161;

    transition-duration: .25s;
  }
  .menu__btn > span::before {
    content: '';
    top: -8px;
  }
  .menu__btn > span::after {
    content: '';
    top: 8px;
  }

  .menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 50px 0;
    list-style: none;
    background-color: #fff;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
    transition-duration: .25s;
    z-index: 9999;
  }

  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition-duration: .25s;
    border-bottom:1px solid #d4cfcf;
  }
  .menu__item:hover {
    background-color: #CFD8DC;
  }

  @media screen  and (max-width:767px) {
    .hamburger-menu{
      display: block;
    }
    .menu__btn {
      display: flex;
      align-items: center;
      position: absolute;
      top: 20px;
      right: 20px;

      width: 26px;
      height: 26px;

      cursor: pointer;
      z-index: 1;
    }
    nav ul {
      display: none;
    }
    .logo-img{
      width: 180px;
      height: auto;
    }
  }

  /*----footer styles-----*/
  .footer-container{
    padding-top: 40px;
    padding-bottom: 85px;
    padding-inline: 108px;
  }
  .footer-sec-1{
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 200px;
    padding-bottom: 40px;
    width: 100%;
    justify-content: space-between;
  }
  .footer-title{
    font-family: Roboto;
    font-weight: 700;
    font-size: 31px;
    line-height: 100%;
    color: #000000;
    padding-bottom: 5px;
    margin: 0px;
  }
  .footer-description-1{
    font-family: Roboto;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    margin: 0px;
    max-width: 471px;
    color: #676767;
  }
  .email-container{
    position: relative;
    min-width: 504px;
    height: 64px;
    border-radius: 32px;
    border: 1px solid #E4E4E7;
    display: flex;
    align-items: center;
    gap: 0px;
    margin-top: 24px;
  }
  .email-input{
    width: 300px;
    font-family: Roboto;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -1%;
    border: none;
    padding: 20px;
    background: transparent;
  }

  .subscribe-btn{
    width: 138px;
    height: 52px;
    background: #FF7F50;
    color: #fff;
    opacity: 1;
    border-radius: 32px;
    font-family: Roboto;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    border: none;
    position: absolute;
    z-index: 1;
    top: 6px;
    right: 6px;
  }
  .footer-sec-2{
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
  .footer-sec-3{
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr 1fr 0.5fr;
    gap: 76px;
    padding-top: 28px;
    padding-bottom: 36px;
    border-bottom: 1px solid #E4E4E7;
  }
  .footer-dec-2{
    color: #52525B;
    font-family: Roboto;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0px;
    margin-block: 0px;
    padding-top: 14px;
  }
  .footer-h-4{
    color: #49A0AA;
    font-family: Roboto;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    padding-bottom: 26px;
    margin: 0px;
    padding-top: 12px;
  }
  .footer-link-1{
    color: #000000;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-decoration: none;
  }
  .footer-addr{
    margin: 0px;
    color: #000;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
  }
  .footer-sec-4{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    padding-top: 36px;
  }
  .footer-copy{
    color: #52525B;
    font-family: 'Source Sans Pro';
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: right;
    margin: 0px;
  }
  .social-link{
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: end;
  }
  .footer-container{
    border-top: 1px solid #e3f0f2;
  }
  @media screen  and (max-width:1023px) {
    .footer-title{
      font-size: 20px;
      padding-bottom: 12px;
    }
    .footer-description-1{
      font-size: 12px;
      line-height: 18px;
    }
    .footer-sec-1{
      flex-direction: column;
      gap: 20px;
      padding-bottom: 20px;
    }
    .footer-container{
      padding-top: 40px;
      padding-bottom: 40px;
      padding-inline: 20px;
    }
    .footer-sec-3{
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .email-container{
      min-width: 100%;
    }
    .social-link{
      gap: 12px;
    }
    .footer-sec-4{
      padding-top: 20px;
    }
    .logo-img-footer{
      width: 100%;
      height: auto;
    }
    .footer-dec-2, .footer-link-1, .footer-addr{
      margin: 0px;
      font-size: 12px;
      line-height: 16px;
    }
    .footer-h-4{
      padding-bottom: 12px;
    }
    .social-icon{
      width: 24px;
      height: auto;
    }
    .social-icon-facebook{
      width: 12px;
      height: auto;
    }
  }
  