@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

@font-face {
    font-family: "HelveticaNeue";
    src: url("HelveticaNeue-BoldCond.otf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

html,
body {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.inner_container {
    max-width: 1392px;
    margin: 0 auto;
}

.main_header {
    width: 100%;
    padding: 14px 0 !important;
    background: #fff;
    margin: 0;
    border: none;
    border-radius: none;
}

.main_header .inner_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main_header .brand_logo {
    display: flex;
    align-items: center;
    padding: 0;
    height: auto;
}

.main_header .brand_logo img {
    flex-shrink: 0;
}

.main_header .brand_logo .logo {
    height: 52px;
}

.main_header .brand_logo .logo_text {
    height: 34px;
    margin-left: 18px;
}

.main_header .navbar-toggle {
    outline: none;
    margin: 0;
    background: none;
    border: none;
}

.main_header .navbar-toggle:hover {
    background: none;
}

.main_header .navbar-toggle:focus {
    background: none;
    border: none;
}

.main_header .navbar-collapse {
    border: none;
    padding: 0;
}

.main_header ul {
    display: flex;
    align-items: center;
    margin: 0;
}

.main_header ul li .nav-link {
    color: #111111;
    font-size: 1em;
    margin-right: 24px;
    transition: color 0.3s ease-in-out;
}

.main_header ul li .nav-link:hover {
    color: #2fc88a;
    transition: color 0.3s ease-in-out;
}

.main_header ul li .nav_btn {
    font-size: 1em;
    border: 2px solid #004c37;
    border-radius: 25px;
    padding: 5px 23px;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
    background: #004c37;
    color: #fff;
}

.main_header ul li .nav_btn:hover {
    color: #004c37;
    background: #fff;
}

.white_rect_btn {
    background: #fff;
    color: #004c37 !important;
    padding: 5px 18px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.wrapper {
    width: 100%;
}

.wrapper .sub_navbar {
    width: 100%;
    background: #2fc88a;
    padding: 8px 15px;
}

/*.wrapper .sub_navbar ul {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  margin: 0;*/
/*}*/
/*.wrapper .sub_navbar ul li a {*/
/*  font-size: 1em;*/
/*  color: #fff;*/
/*  margin-right: 22px;*/
/*  display: inline-block;*/
/*  text-decoration: none;*/
/*  transition: all 0.3s;*/
/*  padding: 5px 15px;*/
/*  text-transform: capitalize;*/
/*}*/
/*.wrapper .sub_navbar ul li a:hover {*/
/*  background: #fff;*/
/*  border-radius: 4px;*/
/*  color: #004c37;*/
/*}*/
/*.wrapper .sub_navbar ul li .all_btn {*/
/*  margin-right: 0;*/
/*}*/
/*.wrapper .sub_navbar ul li:last-child {*/
/*  margin-left: auto;*/
/*}*/
.wrapper .home_banner {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #111;
}

.wrapper .home_banner .inner_container {
    display: flex;
    align-items: flex-start;
}

.wrapper .home_banner .inner_container .banner_text {
    width: 60%;
    padding: 64px 0 82px 0;
}

.wrapper .home_banner .inner_container .banner_text h1 {
    color: #2fc88a;
    font-size: 85px;
    font-family: "HelveticaNeue";
}

.wrapper .home_banner .inner_container .banner_text h1 span {
    font-size: 119px;
    color: #004c2c;
    display: block;
    line-height: 104px;
    margin: 8px 0 0;
}

.wrapper .home_banner .inner_container .banner_text .bn_text {
    font-size: 1.375em;
}

.wrapper .home_banner .inner_container .banner_text .search_box {
    width: 100%;
    position: relative;
    background: #337064;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin: 28px 0;
}

.wrapper .home_banner .inner_container .banner_text .search_box input {
    height: 86px;
    width: 100%;
    border: none;
    border-radius: 10px;
    color: #111111;
    font-weight: 400;
    font-size: 1.5em;
    outline: none;
    padding: 16px 75px 16px 30px;
}

.wrapper .home_banner .inner_container .banner_text .search_box input::placeholder {
    color: #111111;
}

.wrapper .home_banner .inner_container .banner_text .search_box button {
    height: 100%;
    width: 80px;
    position: absolute;
    background: none;
    outline: none;
    border: none;
    right: 10px;
}

.wrapper .home_banner .inner_container .banner_text .sm_text {
    font-size: 1em;
    color: #111111;
}

.wrapper .home_banner .inner_container .banner_img {
    width: 40%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.wrapper .home_banner .inner_container .banner_img::after {
    content: "";
    background: url("../images/cv.png") no-repeat left;
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    background-size: contain;
}

.wrapper .home_banner .inner_container .banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper .well_we {
    width: 100%;
    padding: 86px 0;
}

.wrapper .well_we ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.wrapper .well_we ul li {
    padding: 32px;
    width: calc(25% - 26px);
    border-radius: 10px;
    filter: drop-shadow(0.347px 1.97px 19px rgba(93, 140, 178, 0.13));
    background-color: #ffffff;
    min-height: 274px;
}

.wrapper .well_we ul li:first-child {
    min-height: auto;
}

.wrapper .well_we ul li h1 {
    color: #2fc88a;
    font-size: 54px;
    text-align: center;
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
}

.wrapper .well_we ul li h1 b {
    font-weight: 600;
}

.wrapper .well_we ul li p {
    font-size: 1.25em;
    color: #111111;
    margin: 24px 0 24px;
    text-align: center;
    text-transform: uppercase;
}

.wrapper .well_we ul li span {
    display: block;
    text-align: center;
    color: #3c3c3c;
    font-size: 0.875em;
    text-transform: capitalize;
}

.wrapper .well_we ul li:first-child {
    filter: none;
}

.wrapper .well_we ul li:first-child h1 {
    text-align: center;
    font-size: 40px;
    color: #252525;
    font-weight: 700;
}

.wrapper .title {
    text-align: center;
    color: #111111;
    font-size: 1.875em;
    font-weight: 600;
}

.wrapper .popular_services {
    width: 100%;
    padding: 0 0 64px;
}

.wrapper .popular_services ul {
    width: 100%;
    padding: 60px 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0;
}

.wrapper .popular_services ul li {
    width: calc(25% - 20px);
    filter: drop-shadow(0.105px 5.999px 4.5px rgba(44, 44, 44, 0.06));
    background-color: #ffffff;
    border: 1px solid #d7d7d7;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.5s;
}

.wrapper .popular_services ul li:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0px 9px rgba(44, 44, 44, 0.08));
}

.wrapper .popular_services ul li a {
    text-decoration: none;
    display: block;
}

.wrapper .popular_services ul li .icon {
    background: #337064 url("../images/mesh.png") no-repeat center;
    background-size: cover;
    text-align: center;
    height: 169px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper .popular_services ul li .icon img {
    width: 110px;
}

.wrapper .popular_services ul li p {
    font-size: 1.125em;
    color: #111111;
    text-align: center;
    padding: 18px;
    margin: 0;
}

.wrapper .popular_services h4 {
    color: #111111;
    font-size: 16px;
    text-align: center;
    font-weight: normal;
}

.wrapper .popular_services h4 a {
    color: #2fc88a;
}

img {
    max-width: 100%;
}

.hiw {
    padding: 55px 0;
}

@media (min-width: 1800px) {
    .cstm_container {
        max-width: 1411px;
        width: 100%;
        margin: 0 auto;
    }
}

.hiw h2 {
    text-align: center;
}

.creamy_bg {
    background: #fbf7ed;
}

.cards_row {
    margin-top: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wht_card {
    background: #fff;
    width: calc(25% - 15px);
    min-height: 340px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px 25px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.wht_card:hover {
    background: #fbf7ed;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
}

.wht_card:hover .img_circle {
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.wht_card h3 {
    margin: 20px 0;
    font-weight: 500;
    font-size: 18px;
}

.wht_card p {
    text-align: center;
    font-size: 14px;
}

.img_circle {
    width: 92px;
    height: 92px;
    border-radius: 100%;
    display: inline-flex;
    background-color: #fbf7ed;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.faq {
    padding: 55px 0 80px;
}

.faq .title {
    text-align: center;
    margin-bottom: 60px;
}

.faq_row {
    max-width: 884px;
    width: 100%;
    margin: 0 auto;
    display: table;
}

.faq_row .card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125) !important;
    border: none;
}

.faq_row .card-header {
    background-color: transparent;
    border: none;
}

.faq_row .card-header button {
    font-size: 20px;
    color: #55c451;
    background: none;
    text-align: left;
    position: relative;
    white-space: unset;
}

.faq_row .card-header button:focus {
    outline: none;
    box-shadow: 0px 0px 0px #fff;
}

.faq_row .card-header button.collapsed {
    color: #111;
    text-align: left;
    background: none;
}

.faq_row .card-body {
    padding: 1.25rem 34px;
}

.faq_row .card-body p {
    line-height: 31px;
}

.faq_row .card-header button:after {
    content: "∟";
    font-size: 26px;
    color: #55c451;
    float: right;
    line-height: normal;
    transform: rotate(135deg);
    margin-top: 6px;
}

.faq_row .card-header button.collapsed:after {
    content: "∟";
    /* Unicode character for "minus" sign (-) */
    color: #111;
    transform: rotate(-45deg);
    margin-top: -9px;
}

/*===============manish==================================*/
.trusted_wrap {
    text-align: center;
    padding: 50px 0px;
    background: #fbf7ee;
}

.trusted_wrap h1 {
    margin-bottom: 40px;
}

.trusted_wrap .trust_brands {
    display: flex;
    justify-content: space-between;
}

.trusted_wrap .trust_brands .trust_brand_col {
    display: flex;
    align-items: center;
}

.trusted_wrap .trust_brands .trust_brand_col img {
    width: 190px;
}

.links_wrapper {
    padding: 100px 0px 70px;
}

.links_wrapper h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 500;
}

.links_wrapper .links_row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.links_wrapper .links_row .link_col {
    width: calc(25% - 15px);
}

.links_wrapper .links_row .link_col a {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    color: #222;
}

.links_wrapper .links_row .link_col a:hover {
    color: #008329;
    text-decoration: underline;
}

.links_wrapper .browse_btn_wrp {
    text-align: center;
}

.links_wrapper .browse_btn_wrp .browse_btn {
    padding: 10px 10px;
    font-size: 1.125em;
    color: #37a000;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    min-width: 185px;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
}

.links_wrapper .browse_btn_wrp .browse_btn:hover {
    background: #f9f9f9;
}

.footer_wrapper {
    background: #494949;
}

.footer_wrapper .footer_top {
    text-align: center;
    padding-top: 20px;
}

.footer_wrapper .footer_top h4 {
    font-size: 1.125em;
    color: #e0e0e0;
    padding-bottom: 20px;
    border-bottom: 1px solid #60676a;
    font-weight: normal;
}

.footer_wrapper .footer_top h4 a {
    color: #e0e0e0;
    margin: 0px 5px;
    text-decoration: underline;
    font-weight: 500;
}

.footer_wrapper .footer_links {
    display: flex;
    justify-content: space-around;
    padding: 50px 0px;
}

.footer_wrapper .footer_links .footer_links_col h4 {
    color: #fff;
    font-weight: normal;
    font-size: 1.125em;
    margin-bottom: 20px;
}

.footer_wrapper .footer_links .footer_links_col a {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    color: #fff;
}

.footer_wrapper .footer_links .footer_links_col a:hover {
    text-decoration: underline;
}

.footer_wrapper .footer_social {
    padding: 10px 0px;
    border-bottom: 1px solid #60676a;
    border-top: 1px solid #60676a;
    display: flex;
    justify-content: space-between;
}

.footer_wrapper .footer_social .footer_social_col {
    display: flex;
    align-items: center;
}

.footer_wrapper .footer_social .footer_social_col h4 {
    color: #fff;
    font-weight: normal;
    font-size: 1.125em;
    margin-right: 48px;
}

.footer_wrapper .footer_social .footer_social_col ul {
    margin: 0;
}

.footer_wrapper .footer_social .footer_social_col ul li {
    display: inline-block;
    margin: 0 10px 0 0;
}

.footer_wrapper .footer_social .footer_social_col ul li a {
    color: #fff;
    background: #5a5a5a;
    border-radius: 50%;
    padding: 10px;
    display: block;
    height: 38px;
    width: 38px;
    line-height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer_wrapper .footer_social .footer_social_col ul li a .up-icon {
    width: 18px;
}

.footer_wrapper .footer_social .footer_social_col ul li a .up-icon svg {
    fill: #fff;
}

.footer_wrapper .footer_btm {
    text-align: center;
    padding: 50px 0px;
}

.footer_wrapper .footer_btm p {
    color: #fff;
    font-size: 1.125em;
}

@media screen and (max-width: 1680px) {
    .inner_container {
        max-width: 1170px;
    }

    .main_header {
        padding: 12px 0;
    }

    .main_header .brand_logo .logo {
        height: 42px;
    }

    .main_header .brand_logo .logo_text {
        height: 24px;
        margin-left: 14px;
    }

    /*.wrapper .sub_navbar ul {*/
    /*  overflow-x: auto;*/
    /*}*/
    /*.wrapper .sub_navbar ul::-webkit-scrollbar {*/
    /*  display: none;*/
    /*}*/
    /*.wrapper .sub_navbar ul li {*/
    /*  flex-shrink: 0;*/
    /*}*/
    /*.wrapper .sub_navbar ul li a {*/
    /*  margin-right: 0;*/
    /*  font-size: 14px;*/
    /*}*/
    .wrapper .home_banner .inner_container .banner_text {
        width: 55%;
        padding: 64px 0 82px 0;
    }

    .wrapper .home_banner .inner_container .banner_text h1 {
        font-size: 65px;
    }

    .wrapper .home_banner .inner_container .banner_text h1 span {
        font-size: 80px;
        line-height: 86px;
    }

    .wrapper .home_banner .inner_container .banner_text h1 span svg {
        height: 66px;
    }

    .wrapper .home_banner .inner_container .banner_text .bn_text {
        font-size: 1.125em;
    }

    .wrapper .home_banner .inner_container .banner_text .search_box input {
        height: 60px;
        font-size: 1.125em;
        padding: 8px 75px 8px 16px;
    }

    .wrapper .home_banner .inner_container .banner_text .search_box button img {
        height: 26px;
    }

    .wrapper .home_banner .inner_container .banner_img {
        width: 45%;
    }

    .wrapper .well_we ul li {
        padding: 24px;
        width: calc(25% - 20px);
        min-height: 240px;
    }

    .wrapper .well_we ul li h1 {
        font-size: 42px;
    }

    .wrapper .well_we ul li p {
        font-size: 1.125em;
        margin: 24px 0 20px;
    }

    .wrapper .well_we ul li:first-child h1 {
        font-size: 34px;
    }

    .wrapper .title {
        font-size: 1.5em;
    }

    .wrapper .popular_services ul li .icon {
        height: 160px;
    }

    .wrapper .popular_services ul li p {
        font-size: 1em;
        padding: 16px;
        text-transform: capitalize;
    }

    .wrapper .popular_services h4 {
        font-size: 1.125em;
    }

    .trusted_wrap .trust_brands .trust_brand_col img {
        width: 150px;
    }

    .links_wrapper {
        padding: 100px 0px 70px;
    }

    .links_wrapper h2 {
        font-size: 1.125em;
    }

    .links_wrapper .links_row .link_col a {
        font-size: 0.875em;
    }

    .links_wrapper .browse_btn_wrp .browse_btn {
        font-size: 0.875em;
    }

    .footer_wrapper .footer_top h4 {
        font-size: 0.813em;
    }

    .footer_wrapper .footer_links .footer_links_col h4 {
        font-size: 0.875em;
    }

    .footer_wrapper .footer_links .footer_links_col a {
        font-size: 0.813em;
    }

    .footer_wrapper .footer_social .footer_social_col h4 {
        font-size: 0.875em;
    }

    .footer_wrapper .footer_social .footer_social_col ul li a {
        height: 35px;
        line-height: 20px;
    }

    .footer_wrapper .footer_social .footer_social_col ul li a .up-icon {
        width: 15px;
    }

    .footer_wrapper .footer_btm p {
        font-size: 0.875em;
    }

    .wht_card {
        min-height: 328px;
    }
}

@media screen and (max-width: 1200px) {
    .inner_container {
        max-width: 100%;
        padding: 0 15px;
    }

    .wrapper .sub_navbar {
        padding: 8px 15px;
    }

    /*.wrapper .sub_navbar ul li a {*/
    /*  font-size: 0.875em;*/
    /*  margin-right: 20px;*/
    /*}*/
    .wrapper .home_banner .inner_container .banner_text {
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .wrapper .home_banner .inner_container .banner_text h1 {
        font-size: 40px;
    }

    .wrapper .home_banner .inner_container .banner_text h1 span {
        font-size: 50px;
        line-height: 56px;
        margin: 5px 0 0;
    }

    .wrapper .home_banner .inner_container .banner_text h1 span svg {
        height: 50px;
    }

    .wrapper .home_banner .inner_container .banner_text .bn_text {
        font-size: 1.125em;
    }

    .wrapper .home_banner .inner_container .banner_text .search_box {
        width: 70%;
        margin: 20px 0;
        padding: 8px;
        border-radius: 8px;
    }

    .wrapper .home_banner .inner_container .banner_text .search_box input {
        height: 48px;
        border-radius: 8px;
        font-size: 1em;
        padding: 8px 50px 8px 16px;
    }

    .wrapper .home_banner .inner_container .banner_text .search_box button {
        width: 50px;
        right: 8px;
    }

    .wrapper .home_banner .inner_container .banner_text .search_box button img {
        height: 18px;
    }

    .wrapper .home_banner .inner_container .banner_img {
        width: 100%;
    }

    .wrapper .home_banner .inner_container .banner_img::after {
        background: #ffffffb5;
        z-index: 1;
        position: absolute;
    }

    .wrapper .well_we ul {
        flex-wrap: wrap;
    }

    .wrapper .well_we ul li {
        padding: 24px;
        width: calc(33.33% - 7.5px);
    }

    .wrapper .well_we ul li h1 {
        font-size: 32px;
    }

    .wrapper .well_we ul li p {
        margin: 16px 0 14px;
    }

    .wrapper .well_we ul li:first-child {
        width: 100%;
        padding: 0 0 24px;
    }

    .wrapper .well_we ul li:first-child h1 {
        font-size: 24px;
    }

    .wrapper .popular_services ul li {
        width: calc(50% - 8px);
        margin-bottom: 16px;
    }

    .cards_row {
        flex-wrap: wrap;
    }

    .cards_row .wht_card {
        width: calc(50% - 15px);
        margin-bottom: 30px;
    }

    .trust_brands {
        flex-wrap: wrap;
    }

    .trust_brands .trust_brand_col {
        width: 30%;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .main_header .brand_logo {
        padding: 0;
        margin: 6px 0 0;
    }

    .main_header .brand_logo .logo {
        height: 30px;
    }

    .main_header .brand_logo .logo_text {
        height: 18px;
        margin-left: 8px;
    }

    .main_header ul {
        display: block;
        padding: 15px 0 0;
    }

    .main_header ul li {
        display: block;
        margin: 0;
    }

    .main_header ul li .nav_btn {
        display: block;
        text-align: center;
    }

    .main_header ul li .nav-link {
        margin: 0;
        display: block;
        padding: 10px 0px;
        text-align: center;
    }

    .wrapper .title {
        font-size: 1.2em;
    }

    .wrapper .sub_navbar {
        padding: 8px 15px;
    }

    /*.wrapper .sub_navbar ul li a {*/
    /*  font-size: 0.875em;*/
    /*  margin-right: 30px;*/
    /*}*/
    .wrapper .home_banner .inner_container .banner_text {
        padding: 48px 0 48px 0;
    }

    .wrapper .home_banner .inner_container .banner_text .search_box {
        width: 100%;
    }

    .wrapper .well_we {
        padding: 40px 0;
    }

    .wrapper .well_we ul li {
        width: 100%;
        margin-bottom: 15px;
    }

    .wrapper .popular_services {
        padding: 0 0 40px;
    }

    .wrapper .popular_services ul {
        padding: 40px 0 20px;
    }

    .wrapper .popular_services ul li {
        width: 100%;
        margin-bottom: 16px;
    }

    .hiw {
        padding: 30px 0;
    }

    .cards_row {
        justify-content: center;
        margin-top: 30px;
    }

    .container {
        max-width: 100%;
    }

    .faq .faq_row .card-header {
        padding: 12px 0px;
    }

    .faq .faq_row .card-header button {
        padding: 0 30px 0 0;
        font-size: 12px !important;
    }

    .faq .faq_row .card-header button:after {
        font-size: 16px;
        position: absolute;
        right: 0;
        top: 0px;
    }

    .faq .faq_row .card-body {
        padding: 0px 0px 10px;
    }

    .faq .faq_row .card-body p {
        font-size: 12px !important;
    }

    .cards_row {
        flex-wrap: wrap;
    }

    .cards_row .wht_card {
        width: 100%;
        margin-bottom: 15px;
    }

    .trusted_wrap {
        padding: 50px 0px 10px;
    }

    .trusted_wrap .trust_brands {
        flex-direction: column;
        align-items: center;
    }

    .trusted_wrap .trust_brands .trust_brand_col {
        margin-bottom: 30px;
        width: 100%;
        justify-content: center;
    }

    .trusted_wrap .trust_brands .trust_brand_col img {
        width: 120px;
    }

    .links_wrapper {
        padding: 50px 0px;
    }

    .links_wrapper h2 {
        font-size: 1.2em;
    }

    .links_wrapper .links_row {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .links_wrapper .links_row .link_col {
        width: 100% !important;
    }

    .links_wrapper .links_row .link_col a {
        font-size: 1em !important;
    }

    .footer_wrapper .footer_top h4 {
        font-size: 1em;
        line-height: 26px;
    }

    .footer_wrapper .footer_links {
        flex-direction: column;
        padding: 35px 0px;
    }

    .footer_wrapper .footer_links .footer_links_col h4 {
        font-size: 1em;
    }

    .footer_wrapper .footer_links .footer_links_col a {
        font-size: 1em;
    }

    .footer_wrapper .footer_social {
        flex-direction: column;
    }

    .footer_wrapper .footer_social .footer_social_col {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .footer_wrapper .footer_social .footer_social_col h4 {
        margin-bottom: 20px;
        font-size: 1em;
    }

    .faq {
        padding: 40px 0 50px;
    }

    .faq h2 {
        margin-bottom: 15px;
    }

    .faq .faq_row .card-header button {
        font-size: 16px;
        color: #55c451;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    /*.wrapper .sub_navbar ul li a {*/
    /*  font-size: 0.675em;*/
    /*  margin-right: 6px;*/
    /*}*/
}

.sign_wrapper {
    width: 100%;
    padding: 15px;
    background: #337064;
}

.sign_wrapper.bg_gry {
    background: #f1f2f4;
}

.sign_wrapper .signup_content {
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.air_card {
    width: 525px;
    flex-shrink: 0;
    position: relative;
    background-color: #fff;
    margin: 30px 0px;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.air_card.popup_content {
    width: 100%;
    margin: 0;
}

.air_card form {
    width: 100%;
    padding: 10px 15px;
}

.air_card form h2 {
    line-height: 30px;
    font-size: 24px;
    color: #222222;
    font-weight: 600;
    margin: 0 0 30px;
    text-align: center;
}

.air_card form .google_btn {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    background: #4285f4;
    color: #fff;
    border: none;
    cursor: pointer;
    outline: none;
    font-size: 14px;
    line-height: 38px;
    letter-spacing: 0.22px;
    position: relative;
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
}

.air_card form .google_btn span {
    position: absolute;
    top: 1px;
    left: 1px;
    height: 38px;
    width: 38px;
    background-color: #fff;
    border-radius: 2px;
    display: flex;
    padding: 10px;
}

.air_card form .google_btn:hover {
    box-shadow: 0 0 3px 3px rgba(66, 133, 244, 0.3);
    background-color: #4285f4;
}

.air_card form .apple_btn {
    width: 100%;
    height: 40px;
    margin-bottom: 30px;
    background-color: #fff;
    color: #222;
    text-align: center;
    padding: 0 38px;
    border: 1px solid #222;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25);
    transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.air_card form .apple_btn img {
    flex-shrink: 0;
    margin-right: 6px;
    height: 12px;
}

.air_card form .apple_btn:hover {
    box-shadow: 0 0 3px 1px rgba(23, 24, 26, 0.3);
    background-color: #fff;
}

.air_card form .or {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    line-height: 0.1em;
    font-weight: 300;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.air_card form .or span {
    padding: 0 10px;
    background: #fff;
    color: #606060;
    font-size: 13px;
    font-weight: 400;
}

.air_card form .field {
    width: 100%;
    position: relative;
    margin: 0 0 30px;
}

.air_card form .field input, select {
    height: 40px;
    width: 100%;
    padding: 10px 15px 10px 48px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 13px;
    line-height: 18px;
    outline: none;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.air_card form .field input:focus {
    border-color: #73bf41;
}

/*.air_card form .field::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  background: url("../images/envelope.svg") no-repeat center;
  background-size: contain;
  height: 14px;
  width: 14px;
}*/
.air_card form .continue_btn {
    width: 100%;
    height: 40px;
    background: #73bf41;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    color: #fff;
}

.air_card form .continue_btn:hover {
    background: #477a26;
}

.air_card form .fpas {
    font-size: 1em;
    color: #73bf41;
    display: block;
    max-width: 140px;
    margin: 10px 0 0 auto;
    text-decoration: none;
}

.air_card form .info_text {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    margin: 16px 0 0;
    text-align: center;
}

.air_card form .info_text a {
    color: #37a000;
}

.reg_modal {
    padding: 0 !important;
    align-items: center;
}

.reg_modal .fixed_header {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    background: #fff;
    z-index: 99;
}

.reg_modal .modal-dialog {
    padding: 80px 0 0;
    height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 530px;
}

.reg_modal .modal-dialog .modal-content {
    width: 100%;
}

.reg_modal .modal-dialog .modal-content .close {
    position: absolute;
    right: 18px;
    top: 18px;
    font-size: 30px;
    outline: none;
}
/*Set button color to gray if login and register fields are empty or invalid*/
#users_register .btnGrayColor{
    background-color: grey !important;
}
#users_login .btnGrayColor{
    background-color: grey !important;
}
#users_register .continue_btn[disabled='disabled']{
    background-color: grey !important;
}
#users_login .continue_btn[disabled='disabled']{
    background-color: grey !important;
}
/*Set button color to gray if login and register fields are empty or invalid*/

@media screen and (max-width: 1680px) {
    .sign_wrapper .signup_content {
        min-height: calc(100vh - 100px);
    }

    .air_card form .field {
        margin: 0 0 15px;
    }
}

@media screen and (max-width: 766px) {
    .sign_wrapper .signup_content {
        min-height: calc(100vh - 88px);
    }

    .air_card {
        width: 100%;
        padding: 30px 15px;
    }

    .reg_modal {
        padding: 0 !important;
    }

    .reg_modal .modal-dialog {
        padding: 80px 0 30px;
        margin: auto;
        align-items: flex-start;
        width: 100%;
    }
}