
  .header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 9;
  }
  .header .header-outer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .header .left-block {
    display: flex;
    gap: 40px;
  }
  .header .nav {
    display: flex;
    gap: 20px;
    padding-top: 8px;
    height: 100%;
  }
  .header .nav a {
    color: #1F1F1F;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding-bottom: 5px;
  }
  .header .nav a:not(.full-menu)::before {
    content: "";
    background-color: #0B8EFF;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    transition: all 0.3s ease-in-out;
  }
  .header .nav a:hover {
    color: #0B8EFF;
  }
  .header .nav a:hover .bar1, .header .nav a:hover .bar2, .header .nav a:hover .bar3 {
    background-color: #0B8EFF;
  }
  .header .nav a:hover::before {
    width: 80%;
  }
  .header .right-box-outer {
    display: flex;
    gap: 50px;
    align-items: center;
  }
  .header input {
    border-radius: 6px;
    padding: 10px 15px 10px 35px;
    border: 1px rgb(0 0 0 / 10%) solid;
    outline: 0;
    background: #fff url('../images/searchIcon.svg') 10px 11px no-repeat;
  }
  .header .search-box {
    cursor: pointer;
  }
  .header .search-box img {
    background: rgba(255, 255, 255, 0.3);
    padding: 10px;
    display: inline-block;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }
  .header .search-box:hover img {
    background-color: #0B8EFF;
  }

  .header .login {
    font-size: 15px;
    color: #494A53;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
  }

  .header .full-menu {
    display: flex;
    /* align-items: center; */
    gap: 10px;
  }
  .header .hamberger {
    margin-top: 2px;
  }
  .header .hamberger .bar1, .header .hamberger .bar2, .header .hamberger .bar3 {
    width: 14px;
    height: 1px;
    background-color: #1F1F1F;
    margin: 3px 0;
    transition: 0.4s;
  }
  
  .full-menu-section {
    background-color: #0E0E0E;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  .full-menu-section.show {
    opacity: 1;
    height: 100%;
    min-height: 100%;
    overflow-y: auto;
    padding: 30px 0;
  }

  .full-menu-section .close-btn {
    cursor: pointer;
    max-width: 40px;
    margin-left: auto;
  }
  .full-menu-section .close-btn img {
    background: #0B8EFF;
    padding: 10px;
    border-radius: 50px;
    margin-left: auto;
    transition: all 0.3s ease-in-out;
  }
  .full-menu-section .close-btn:hover img {
    opacity: 0.5;
  }
  .full-menu-section .big-search {
    margin-top: 35px;
    background-color: #494A53;
    border-radius: 50px;
    display: none;
  }
  .full-menu-section .big-search .search-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .full-menu-section .big-search input {
    padding: 18px;
    width: 100%;
    border: 0;
    outline: 0;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
  }
  .full-menu-section .big-search input:focus {
    background: #fff;
    border-radius: 50px;
  }
  .full-menu-section .big-search .search-btn {
    background-color: transparent;
    border: 0;
    outline: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .full-menu-section .big-search .search-btn:hover {
    opacity: 0.5;
  }
  .full-menu-section .big-search img {
    background: #0B8EFF;
    padding: 10px;
    border-radius: 50px;
    margin-left: auto;
  }
  .full-menu-section .menu-outer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .full-menu-section .menu-outer .quick-links, .full-menu-section .menu-outer .nav-list {
    margin-top: 20px;
  }
  .full-menu-section .menu-outer .head {
    position: relative;
    display: block;
  }
 .full-menu-section .menu-outer .head.toggle .btn {
    transform: rotateX(180deg);
  }
  .full-menu-section .menu-outer .title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
  }
  .full-menu-section .menu-outer .sub-list {
    padding-left: 30px;
  }
  .full-menu-section .menu-outer .sub-list a {
    display: list-item;
  }
  .full-menu-section .menu-outer a, .full-menu-section .menu-outer p, .full-menu-section .menu-outer .sub-title {
    color: #fff;
    text-decoration: none;
    font-weight: 200;
    font-size: 16px;
    margin-top: 8px;
    display: block;
    line-height: 1.4;
  }
  .full-menu-section .menu-outer a {
    position: relative;
    flex-basis: 33.33%;
    padding-right: 10px;
    margin-top: 10px;
  }
  .full-menu-section .menu-outer a:hover {
    text-decoration: underline;
    color: #0B8EFF;
  }
  .full-menu-section .menu-outer .nav-list-outer {
    display: flex;
    flex-wrap: wrap;
  }
  .full-menu-section .menu-outer .nav-list-outer .nav-list {
    display: flex;
    flex-direction: column;
  }
  .full-menu-section .menu-outer .nav-list-outer .nav-list .nav-links {
    display: flex;
    flex-wrap: wrap;
  }
  .full-menu-section .menu-outer .quick-links {
    display: flex;
    flex-direction: column;
    flex-basis: 20%;
    padding-left: 20px;
  }
  .full-menu-section .menu-outer .quick-links .quick-links-inner {
    padding: 20px;
    border: 1px #0B8EFF solid;
    background: #32343E;
  }
  

/* media querry */

@media (max-width: 1200px) {
    .header .header-outer .logo img {
      max-width: 180px;
    }
    .header .nav a {
        font-size: 14px;
      }
      .full-menu-section .big-search {
        margin-top: 20px;
      }
      .full-menu-section .menu-outer .quick-links, .full-menu-section .menu-outer .nav-list {
          margin-top: 30px;
        }
    .full-menu-section .menu-outer .title {
        font-size: 16px;
    }
    .full-menu-section .menu-outer .title {
        font-size: 14px;
    }
    .full-menu-section .menu-outer .sub-list {
        padding-left: 25px;
    }
    .full-menu-section .menu-outer a, .full-menu-section .menu-outer p, .full-menu-section .menu-outer .sub-title {
        font-size: 14px;
    }
    .full-menu-section .menu-outer .quick-links {
        padding-left: 0;
    }
    .full-menu-section .menu-outer .quick-links .quick-links-inner {
        padding: 20px 14px;
    }
}
@media (max-width: 991px) {
    .header {
      padding: 15px 0;
    }
    .header .nav {
        gap: 10px;
      }
      .header .search-box img {
        padding: 6px;
        max-width: 26px;
      }
      .full-menu-section {
        display: block;
        left: -100%;
        height: 100%;
      }
      .full-menu-section.show {
        left: 0;
        padding-bottom: 60px;
      }
      .full-menu-section .close-btn img {
        padding: 6px;
        max-width: 25px;
      }
      .full-menu-section .big-search input {
        padding: 14px;
      }
      .full-menu-section .big-search .search-btn {
        margin-right: 5px;
      }
      .full-menu-section .big-search img {
          padding: 8px;
        }
        .header .header-outer .logo img {
            max-width: 130px;
        }
        .header .nav a {
            font-size: 12px;
        }
        .header input {
            max-width: 125px;
        }
        .header .right-box-outer {
            gap: 20px;
        }
    }
  @media (max-width: 767px) {
    .header .header-outer .logo img {
        max-width: 120px;
    }
    .header .nav .hide-m {
      display: none;
    }
    .header .nav .full-menu {
      color: transparent !important;
    }
    .header .nav {
        padding-top: 0;
    }
    .header .login {
        font-size: 12px;
    }
    .full-menu-section .menu-outer a {
        flex-basis: 100%;
    }
    .header .search-box {
        display: none;
    }
    .full-menu-section .big-search {
        display: block;
    }    
    .full-menu-section.show {
      padding: 10px 0;
      padding-bottom: 60px;
    }
    .full-menu-section .close-btn {
      max-width: 25px;
      position: absolute;
      right: 20px;
    }
    .full-menu-section .big-search {
      margin-top: 10px;
      max-width: calc(100% - 30px);
    }
    .full-menu-section .big-search input {
        padding: 5px 10px;
        font-size: 12px;
      }
      .full-menu-section .big-search .search-btn {
        margin-top: 2px;
      }
      .full-menu-section .big-search img {
        padding: 4px;
        max-width: 22px;
      }
    .full-menu-section .menu-outer .quick-links, .full-menu-section .menu-outer .nav-list {
      margin-top: 15px;
    }
    .full-menu-section .menu-outer .nav-list.hide-m {
      display: none !important;
    }
    .full-menu-section .menu-outer .head .btn {
      background: url("../images/downArrow.png") 0 0 no-repeat;
      width: 20px;
      height: 20px;
      filter: invert(1);
      display: inline-block;
      position: absolute;
      right: 0;
    }
    .full-menu-section .menu-outer .nav-links {
      display: none;
    }
    .full-menu-section .menu-outer .nav-links.open {
      display: block;
      background: #494a53;
      padding: 5px 10px 12px 10px;
      border-radius: 5px;
      margin-top: 5px;
    }
    .full-menu-section .menu-outer .sub-list {
      padding-left: 22px !important;
    }
    .full-menu-section .menu-outer .sub-list a:first-child {
      margin-top: 0;
    }
    .full-menu-section .menu-outer .nav-list-outer {
      flex-basis: 100%;
    }
    .full-menu-section .menu-outer .nav-list-outer .nav-list {
      flex-basis: 100%;
      padding-right: 0;
    }
    .full-menu-section .menu-outer .quick-links {
        flex-basis: 100%;
      }
      .full-menu-section .menu-outer .quick-links .quick-links-inner {
        border: 0;
        padding: 0;
        background-color: transparent;
      }
    }
