html{
    scroll-behavior: smooth;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1270px;
  }
}
/*Typography*/
body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: #000024;
}
h1 {
    font-size: 52px;
    line-height: 1.2;
}
h2 {
    font-size: 42px;
    line-height: 1.2;
}
h1 span,h2 span {
    color: #C8AC76;
}
h6 {
    font-size: 20px;
    line-height: 25px;
}
a {
    text-decoration: none;
    transition: all 0.2s ease;
}
p {
    font-size: 16px;
    line-height: 30px;
    color: #818198;
}
p {
  margin: 0;
}
/*Common Classes*/
.btn {
    display: inline-flex;
    background-color: #252549;
    border-radius: 12px;
    min-width: 200px;
    padding: 17px 10px;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    justify-content: center;
    text-transform: capitalize;
}
.btn:hover {
    background-color: #C8AC76;
    color: #252549;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.col-6 {
    width: 50%;
}
.col-3 {
    width: 25%;
}
.text-center {
    text-align: center;
}
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}
.pt-50 {
    padding-top: 50px;
}
.pb-50 {
    padding-bottom: 50px;
}
.section-title {
    margin-bottom: 45px;
}
.container-padding-left {
    padding-left: calc((100% - 1240px) / 2);
}
.post, .page {
    margin: 0;
}
.slick-dots li {
    display: inline-flex;
}
.slick-dots {
    margin: 30px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    width: 100%;
    column-gap: 4px;
}
.slick-dots li button {
    font-size: 0;
    padding: 0;
    margin: 0;
    border: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.slick-dots li.slick-active button {
    background-color: #252549;
}
/*Header*/
.heder-top {
    background-color: #252549;
    padding-top: 8px;
    padding-bottom: 8px;
}
.heder-top ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.heder-top ul li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.heder-top ul li .icon {
    display: flex;
    width: 20px;
    height: 20px;
}
.heder-top ul li .icon svg path {
    fill: #C8AC76;
}
.heder-top ul li .text a {
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}
.heder-top ul li .text a:hover {
    text-decoration: underline;
}
.site-header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-header .menu {
    display: flex;
    justify-content: center;
    column-gap: 30px;
}
.site-header .site-branding a,.site-header .site-branding {
    display: inline-flex;
}
.site-header .custom-logo-link {
    width: 166px;
}
.site-header {
    padding-top: 17px;
    padding-bottom: 17px;
}
.site-header .menu li a {
    color: #010F24;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
}
.site-header .menu li a:hover,.site-header .menu li a:focus {
    color: #C8AC76;
}
.site-header {
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    top: -120px;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
}
.site-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}
.site-header .wrapper .btn {
    min-width: 176px;
}
/*Hero Section*/
.hero-section .text-block {
    background-image: url(../images/section-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-right: 25px;
    display: flex;
    align-items: center;
}
.hero-section .image-block {
    display: flex;
}
.hero-section .image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-section .text-block p {
    margin-top: 12px;
}
.hero-section .text-block .btn {
    margin-top: 30px;
}
/*Services Wrapper*/
.services-wrapper .service-item {
    padding-left: 10px;
    padding-right: 10px;
}
.services-wrapper {
    margin-left: -10px;
    margin-right: -10px;
    row-gap: 20px;
}
.services-wrapper .service-item .image-block {
    position: relative;
    padding-bottom: 121%;
    border-radius: 12px;
    overflow: hidden;
}
.services-wrapper .service-item:hover .image-block img {
    transform: scale(1.05);
}
.services-wrapper .service-item .image-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.services-wrapper .service-item .service-block {
    position: relative;
}
.services-wrapper .service-item .service-block .title-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 36, 0) 54.76%, #000024 87.82%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 15px 20px;
}
.services-wrapper .service-item .service-block .title-block h3 {
    color: #fff;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    text-align: center;
}
/*Premium Service*/
.premium-services-section .image-block {
    padding-right: 25px;
    display: flex;
}
.premium-services-section .text-block {
    padding-left: 25px;
}
.premium-services-section .image-block img {
    border-radius: 12px;
}
.premium-services-section .row {
    align-items: center;
}
.premium-services-section .text-block p {
    margin-top: 22px;
}
/*Membership Section*/
.membership-boxes .membership-box {
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
}
.membership-boxes .membership-item {padding-left: 9px;padding-right: 9px;row-gap: 18px;}
.membership-boxes {
    margin-left: -9px;
    margin-right: -9px;
}
.membership-boxes .membership-box .title-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.membership-boxes .membership-box .title-block .icon {
    display: flex;
}
.membership-boxes .membership-box .title-block h3 {
    font-size: 20px;
    line-height: 25px;
}
/*Perks and giveaways*/
.perks-and-givaways-section h2 {
    margin: 0 0 20px 0;
}
.perks-and-givaways-section ul {
    margin: 25px 0 30px 0;
    list-style: none;
    padding: 0;
}
.perks-and-givaways-section ul li {
    color: #000024;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}
.perks-and-givaways-section ul li:not(:last-child) {
    margin-bottom: 12px;
}
.perks-and-givaways-section .image-block {
    padding-right: 25px;
}
.perks-and-givaways-section .text-block {
    padding-left: 25px;
}
.perks-and-givaways-section ul li span {
    display: inline-flex;
}
.perks-and-givaways-section .row {
    align-items: center;
}
/*Reviews Section*/
.reviews-slider-section .col-6:first-child {
    background-image: url(../images/section-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.reviews-slider .review-stars {
    display: flex;
    column-gap: 8px;
    margin: 0 0 20px 0;
}
.reviews-slider .review-title {
    font-size: 20px;
    line-height: 1.5;
}
.reviews-slider-section .container-padding-left {
    padding-right: 48px;
    padding-top: 5.6vw;
    padding-bottom: 5.6vw;
}
.reviews-slider .author-name {
    color: #C8AC76;
    margin-top: 30px;
}
.reviews-slider-section .review-navs {
    margin-top: 45px;
    display: flex;
    column-gap: 32px;
}
.reviews-slider-section .review-navs .slick-arrow {
    width: 48px;
    height: 48px;
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid #000024;
    cursor: pointer;
    transition: all 0.2s ease;
}
.reviews-slider-section .review-navs .slick-arrow:hover img {
    filter: brightness(0) invert(1);
}
.reviews-slider-section .review-navs .slick-arrow:hover {
    background-color: #000024;
}
/*About Us Section*/
.about-us-section .text-block {
    background-image: url(../images/section-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 35px;
    padding-bottom: 35px;
    padding-right: 25px;
    display: flex;
    align-items: center;
}
.about-us-section .text-block h2 {
    margin-bottom: 20px;
}
.about-us-section .text-block h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #C8AC76;
    margin: 15px 0;
}
.about-us-section .image-block {
    display: flex;
}
.about-us-section .image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*Leadership Section*/
.meet-leadership-section .teammembers-wrapper {
    margin-left: -11px;
    margin-right: -11px;
    row-gap: 22px;
}
.meet-leadership-section .teammeber-item {
    padding-left: 11px;
    padding-right: 11px;
    width: 20%;
}
.meet-leadership-section .teammeber-item .image-block {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    padding-bottom: 118%;
    position: relative;
}
.meet-leadership-section .teammeber-item .image-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.meet-leadership-section .teammeber-item .image-block:hover img {
    transform: scale(1.03);
}
.meet-leadership-section .teammeber-item .info-block {
    text-align: center;
    margin-top: 20px;
}
.meet-leadership-section .teammeber-item .designation {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    font-size: 16px;
    line-height: 20px;
    color: #000024;
}
/*Contact Section*/
.contact-us-section .form-block {
    padding-right: 25px;
}
.contact-us-section .image {
    padding-left: 25px;
}
.contact-us-section .image-wrapper {
    position: relative;
    padding-bottom: 75%;
    border-radius: 12px;
    overflow: hidden;
}
.contact-us-section .image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-us-section .image-block {
    position: relative;
}
.contact-us-section .image-block .contact-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(0, 0, 36, 0) 51.98%, #000024 89.65%);
    padding: 28px;
    display: flex;
    align-items: flex-end;
}
.contact-us-section .image-block .contact-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.contact-us-section .image-block .contact-info ul li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.contact-us-section .image-block .contact-info ul li span {
    display: inline-flex;
}
.contact-us-section .image-block .contact-info ul li span a {
    color: #fff;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}
.contact-us-section .image-block .contact-info ul li:not(:last-child) {
    margin: 0 0 28px 0;
}
.contact-us-section .image-block .contact-info ul li span a:hover {
    text-decoration: underline;
}
.contact-us-section .form-block label {
    display: flex;
    color: #001F1B;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 8px 0;
}
.contact-us-section .form-block .wpcf7-form-control-wrap {
    display: flex;
    flex-wrap: wrap;
}
.contact-us-section .form-block input,.contact-us-section .form-block textarea {
    border: 1px solid #F0F0F0;
    width: 100%;
    border-radius: 12px;
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: #001F1B;
}
.contact-us-section .form-block h2 {
    margin: 0 0 20px 0;
}
.contact-us-section .form-block input::placeholder,
.contact-us-section .form-block textarea::placeholder {
    color: #666666;
    opacity: 1;
}
.contact-us-section .form-block input::-ms-input-placeholder,
.contact-us-section .form-block textarea::-ms-input-placeholder { 
    color: #666;
}
.contact-us-section .form-block input {
    height: 48px;
    padding: 5px 24px;
}
.contact-us-section .form-block .col-12 {
    margin: 0 0 20px 0;
}
.contact-us-section .form-block textarea {
    padding: 12px 24px;
    height: 87px;
    resize: none;
}
.contact-us-section .form-block input.wpcf7-submit {
    width: 112px;
    border: 0;
    background-color: #252549;
    color: #fff;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}
.contact-us-section .form-block p {
    position: relative;
}
.contact-us-section .form-block input.wpcf7-submit:hover {
    background-color: #C8AC76;
    color: #252549;
}
.contact-us-section .form-block .wpcf7-not-valid-tip {
    display: flex;
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 8px;
    font-weight: 400;
}
.contact-us-section .form-block .wpcf7-response-output {
    margin: 20px 0 0 0;
    text-align: center;
}

.contact-us-section .btn-block {
    margin-top: 50px;
}

/*Faqs Section*/
.faqs-section {
    background-image: url(../images/section-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.faqs-wrapper .faq-item {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 20px;
}
.faqs-wrapper .faq-item:not(:last-child) {
    margin: 0 0 28px 0;
}
.faqs-wrapper .faq-item .content-block {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faqs-wrapper .faq-item .title-block {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.faqs-wrapper .faq-item .title-block .icon {
    position: relative;
    width: 24px;
    height: 24px;
}
.faqs-wrapper .faq-item .title-block .icon:before,.faqs-wrapper .faq-item .title-block .icon:after {
    content: "";
    background-color: #001F1B;
    transition: all 0.2s ease;
    position: absolute;
}
.faqs-wrapper .faq-item .title-block h6 {
    width: calc(100% - 24px);
    padding-right: 30px;
}
.faqs-wrapper .faq-item .title-block .icon:before {
    width: 24px;
    height: 2px;
    top: 11px;
    left: 0;
}
.faqs-wrapper .faq-item .title-block .icon:after {
    width: 2px;
    height: 24px;
    top: 0;
    left: 11px;
}
.faqs-wrapper .faq-item.active {
    background-color: #252549;
}
.faqs-wrapper .faq-item.active .title-block :is(h6, p) {
    color: #fff;
}
.faqs-wrapper .faq-item.active .title-block .icon:after {
    opacity: 0;
}
.faqs-wrapper .faq-item.active .title-block .icon:before, .faqs-wrapper .faq-item.active .title-block .icon:after {
    background-color: #fff;
}
.faqs-wrapper .faq-item .content-block .content {
    padding-top: 5px;
}
.faqs-wrapper .faq-item .content-block .content p {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
}
.faqs-wrapper * {
  transition: all 0.2s ease;
}
/*Footer*/
.site-footer {
    background-color: #000024;
}
.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    padding-top: 28px;
    padding-bottom: 28px;
}
.site-footer .footer-bottom p {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
}
.site-footer .footer-top {
    padding-top: 48px;
    padding-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.site-footer .footer-top .footer-left {
    width: 54.4%;
}
.site-footer .footer-top .footer-left p {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    margin-top: 18px;
}
.site-footer .footer-top .footer-left .footer-logo {
    display: inline-flex;
}
.site-footer .footer-top .footer-right {
    width: 35.8%;
}
.site-footer .footer-top .footer-right .wrapper {
    display: flex;
    flex-wrap: wrap;
}
.site-footer .footer-top .footer-right .menu-block {
    width: 50%;
}
.site-footer .footer-top .footer-right .contact-info {
    width: 50%;
}
.site-footer .footer-top .footer-right ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.site-footer .footer-top .footer-right .menu-block ul li a {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
}
.site-footer .footer-top .footer-right .menu-block ul li:not(:last-child) {
    margin: 0 0 12px 0;
}
.site-footer .footer-top .footer-right h3 {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
}
.site-footer .footer-top .footer-right .contact-info ul li {
    display: inline-flex;
    column-gap: 12px;
}
.site-footer .footer-top .footer-right .contact-info ul li .icon {
    display: inline-flex;
    max-width: 20px;
}
.site-footer .footer-top .footer-right .contact-info ul li span a {
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}
.site-footer .footer-top .footer-right ul li:not(:last-child) {
    margin: 0 0 10px 0;
}
.site-footer .footer-top .footer-right .menu-block ul li a img {
    display: none;
}
.site-footer .footer-top .footer-right .menu-block ul li a span {
    padding-left: 0;
}
.site-footer .footer-top .footer-right .menu-block ul li a:hover {
    color: #C8AC76;
}
.site-footer .footer-top .footer-right .contact-info ul li span a:hover {
    text-decoration: underline;
}
.site-footer .footer-top .footer-right .menu-block ul li:last-child {
    display: none;
}
@media only screen and (min-width: 992px) {
    .mobile-menu-wrapper,.mobile-menu-icon,header .main-navigation .menu-image{
        display: none;
    }
    .reviews-slider-section .images-slider,.reviews-slider-section .images-slider * {
        height: 100%;
        position: relative;
    }
    .reviews-slider-section .images-slider img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
@media only screen and (max-width: 1439px) {
    h1 {
        font-size: 48px;
    }
    .container-padding-left {
        padding-left: calc((100% - 1110px) / 2);
    }
    .hero-section .text-block .btn {
        margin-top: 25px;
    }

    .contact-us-section .btn-block {
        margin-top: 30px;
    }
}
@media only screen and (max-width: 1199px) {
    .container-padding-left {
        padding-left: calc((100% - 930px) / 2);
    }
    h1 {
        font-size: 42px;
    }
    h2 {
        font-size: 36px;
    }
    .section-title {
        margin-bottom: 35px;
    }
    .meet-leadership-section .teammembers-wrapper {
        margin-left: 0;
        margin-right: 0;
    }
    .site-header .wrapper .btn {
        padding: 15px 10px;
        min-width: 160px;
    }
    .site-header .menu {
        column-gap: 25px;
    }
    .site-footer .footer-bottom {
        padding-top: 15px;
        padding-bottom: 15px;
    }  
    .pb-50 {
        padding-bottom: 40px;
    }
    .pt-50 {
        padding-top: 40px;
    }
    .pb-100 {
        padding-bottom: 80px;
    } 
    .pt-100 {
        padding-top: 80px;
    }
    .meet-leadership-section .teammembers-wrapper {
        row-gap: 0;
    }
    .perks-and-givaways-section .image-block {
        padding-right: 15px;
    }
    .perks-and-givaways-section .text-block {
        padding-left: 15px;
    }
    .perks-and-givaways-section h2 {
        margin: 0 0 10px 0;
    }
    .perks-and-givaways-section ul {
        margin: 15px 0 20px 0;
    }
    .membership-boxes .slick-track {
        display: flex !important;
    }
    .membership-boxes .slick-track .slick-slide {
        height: inherit !important;
    }
    .membership-boxes .membership-item {
        padding-bottom: 9px;
    }
    .reviews-slider .review-stars img {
        max-width: 24px;
    }
    .premium-services-section .text-block {
        padding-left: 15px;
    }
    .premium-services-section .image-block {
        padding-right: 15px;
    }
}
@media only screen and (max-width: 991px) {
    header .wrapper .btn-block{
        display: none;
    }
     .pb-100 {
        padding-bottom: 60px;
    } 
    .pt-100 {
        padding-top: 60px;
    }
    .site-header .wrapper{
        flex-direction: row-reverse;
    }
    .site-header .mobile-menu-wrapper .main-navigation{
        display: block;
    }
    .site-header .mobile-menu-wrapper .main-navigation ul li a {
        font-size: 14px;
        padding: 12px 16px;
        border-radius: 12px;
        display: flex;
        align-items: center;
    }
    .site-header .mobile-menu-wrapper .main-navigation ul li.active a{
        color: #fff;
        background-color: #252549;
    }
    .site-header .mobile-menu-wrapper .main-navigation ul li.active a img{
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(288deg) brightness(105%) contrast(101%);
    }
    .site-header .mobile-menu-wrapper .main-navigation ul li a img{
        padding-right: 0;
        width: 24px;
    }
    .site-header .mobile-menu-wrapper .menu-header.row{
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    .site-header .mobile-menu-wrapper {
        position: fixed;
        top: 0;
        background: #fff;
        width: 100%;
        padding: 30px 20px;
        height: 100vh;
        overflow-y: auto;
        z-index: 99999999;
        left: -100%;
        transition: all 0.3s ease;
    }
    .site-header .mobile-menu-wrapper.menu-open {
        left: 0;
    }
    .site-header .mobile-menu-wrapper .mobile-menu{
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .site-header .mobile-menu-wrapper .mobile-menu .btn-block{
        margin-top: 15px;
    }
    .site-header .mobile-menu-wrapper .mobile-menu .btn-block a{
        background-color: #C8AC76;
        color: #252549;
        font-size: 13px;
        padding: 17px 26px;
        width: fit-content;
        min-width: auto;
    }
    .site-header .mobile-menu-wrapper .menu{
        flex-direction: column;
    }
    .site-header .wrapper .site-branding{
        width: 100%;
        justify-content: center;
    }
    .site-header .wrapper .site-branding .custom-logo {
        max-width: 127px;
    }
    .site-header .wrapper .mobile-menu-icon {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .site-header .wrapper {
        position: relative;
    }
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .container-padding-left {
        padding-left: 30px;
        padding-right: 30px;
    }
    .about-us-section .text-block {
        order: 2;
    }
    .about-us-section .image-block {
        order: 1;
    }
    .col-6 {
        width: 100%;
    }
    .hero-section .text-block {
        order: 2;
    }
    .hero-section .image-block {
        order: 1;
    }
    .hero-section .text-block {
        padding: 40px 30px;
    }
    .site-header .main-navigation {
        display: none;
    }
    .col-3 {
        width: 50%;
    }
    .site-footer .footer-top .footer-left,.site-footer .footer-top .footer-right {
        width: 100%;
    }
    .meet-leadership-section .teammeber-item {
        width: 33.3333%;
    }
    .perks-and-givaways-section .text-block {
        padding-left: 0;
        padding-top: 30px;
    }
    .perks-and-givaways-section .text-block p {
        line-height: 30px;
    }
    .site-header .wrapper .mobile-menu-icon {
        display: inline-flex;
    }
    .heder-top ul {
        justify-content: center;
    }
    .contact-us-section .image {
        padding-left: 0;
        padding-top: 30px;
    }
    .contact-us-section .image-block .contact-info ul li span a {
        font-size: 18px;
    }
    .contact-us-section .image-block .contact-info ul li span.icon {
        width: 20px;
    }
    .contact-us-section .image-block .contact-info ul li:not(:last-child) {
        margin: 0 0 20px 0;
    }
    .contact-us-section .form-block h2 {
        text-align: center;
        margin: 0 0 30px 0;
    }
    .contact-us-section .form-block {
        padding-right: 0;
    }
    .perks-and-givaways-section .image-block {
        padding-right: 0;
    }
    .premium-services-section .text-block {
        padding-left: 0;
        padding-top: 30px;
    }
    .premium-services-section .text-block p {
        margin-top: 10px;
    }    
    .site-footer .footer-top .footer-right .contact-info ul li {
        width: 100%;
    }
    .site-footer .footer-bottom p,
    .site-footer .footer-top .footer-right .menu-block ul li a {
        font-size: 14px;
    }
    .site-footer .footer-top .footer-right h3 {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .site-footer .footer-top .footer-right {
        margin-top: 20px;
    }
    .site-footer .footer-top {
        padding-top: 20px;
    }
    .site-footer .footer-top .footer-left p {
        margin-top: 0;
        font-size: 14px;
    }
    .meet-leadership-section .teammeber-item {
        padding-left: 8px;
        padding-right: 8px;
    }
    .meet-leadership-section .teammembers-wrapper .slick-list {
        margin-left: -8px;
        margin-right: -8px;
    }
    .reviews-slider-section .images-slider img {
        max-width: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .reviews-slider-section .image-block {
        height: inherit !important;
    }
    .reviews-slider-section .slick-track {
        display: flex !important;
    }
    .reviews-slider-section .col-6.container-padding-left {
        order: 2;
    }
    .reviews-slider-section .col-6 {
        order: 1;
    }
    .reviews-slider-section .review-navs {
        display: none;
    }
    .reviews-slider-section .container-padding-left {
        padding: 30px;
    }
	.site-header .custom-logo-link {
    	width: 127px;
	}
    .premium-services-section .image-block {
        padding-right: 0;
    }
}
@media only screen and (max-width: 767px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 30px;
        line-height: 38px;
    }
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .pb-100 {
        padding-bottom: 50px;
    }
    .pb-50 {
        padding-bottom: 30px;
    }
    .pt-50 {
        padding-top: 30px;
    }
    .hero-section .text-block h1 {
        max-width: 80%;
    }
    .container-padding-left {
        padding-left: 20px;
        padding-right: 20px;
    }
    .section-title {
        margin-bottom: 30px;
    }   
    .hero-section .text-block {
        padding: 30px 20px;
    }
    .faqs-wrapper .faq-item .title-block h6 {
        font-size: 14px;
        line-height: 18px;
        width: calc(100% - 16px);
    }
    .faqs-wrapper .faq-item .content-block .content p {
        font-size: 13px;
        line-height: 22px;
    }
    .faqs-wrapper .faq-item .title-block .icon {
        width: 16px;
        height: 16px;
    }
    .faqs-wrapper .faq-item .title-block .icon:before {
        width: 16px;
        height: 2px;
        top: 7px;
    }
    .faqs-wrapper .faq-item .title-block .icon:after {
        width: 2px;
        height: 16px;
        left: 7px;
    }
    .faqs-wrapper .faq-item {
        border-radius: 10px;
        padding: 15px;
    }
    .faqs-wrapper .faq-item:not(:last-child) {
        margin: 0 0 15px 0;
    }
    .meet-leadership-section .teammeber-item {
        padding-left: 7px;
        padding-right: 7px;
    }
    .meet-leadership-section .slick-list {
        margin-left: -7px;
        margin-right: -7px;
    }
    .site-header .site-branding  img,.site-header .mobile-logo  img{
       max-width: 127px;
    }
    .contact-us-section .image-block .contact-info ul li span a {
        font-size: 14px;
    }
    .contact-us-section .image-block .contact-info ul li:not(:last-child) {
        margin: 0 0 15px 0;
    }
    .contact-us-section .image-block .contact-info {
        padding: 18px;
    }
    .contact-us-section .form-block input {
        padding: 5px 16px;
    }
    .contact-us-section .form-block textarea {
        padding: 12px 16px;
    }
    .meet-leadership-section .teammeber-item .info-block h6 {
        font-size: 16px;
    }
    .meet-leadership-section .teammeber-item .designation {
        font-size: 14px;
        margin-top: 4px;
    }
    .meet-leadership-section .teammeber-item .info-block {
        margin-top: 15px;
    }
    .meet-leadership-section .teammeber-item .image-block {
        padding-bottom: 156%;
    }
    .slick-dots {
        margin: 20px 0 0 0;
    }
    .reviews-slider .review-stars img {
        max-width: 20px;
    }
    .reviews-slider .review-title {
        font-size: 16px;
        margin: 0 0 10px 0;
    }
    .reviews-slider .message p {
        font-size: 14px;
        line-height: 28px;
    }
    .reviews-slider .author-name {
        font-size: 16px;
        line-height: 20px;
        margin-top: 20px;
    }
    .reviews-slider-section .container-padding-left {
        padding: 30px 20px;
    }
}
@media only screen and (max-width: 575px) {
    .hero-section .text-block h1 {
        max-width: 90%;
    }
    .meet-leadership-section .teammeber-item {
        width: 100%;
    }
    .services-wrapper .service-item {
        padding-left: 4px;
        padding-right: 4px;
    }
    .services-wrapper {
        row-gap: 10px;
        margin-left: -5px;
        margin-right: -5px;
    }
    .services-wrapper .service-item .service-block .title-block {
        padding: 15px;
    }
    .services-wrapper .service-item .service-block .title-block h3 {
        font-size: 16px;
        line-height: 1.4;
        min-height: auto;
    }
}
@media only screen and (max-width: 479px) {
    h1 {
        font-size: 32px;
    }
    .hero-section .text-block h1 {
        max-width: 100%;
    }
}