/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@font-face {
    font-family: 'Spectral';
    src: url('fonts/Spectral-Bold.woff2') format('woff2'), url('fonts/Spectral-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('fonts/Spectral-ExtraBold.woff2') format('woff2'), url('fonts/Spectral-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('fonts/Spectral-SemiBold.woff2') format('woff2'), url('fonts/Spectral-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('fonts/Spectral-Regular.woff2') format('woff2'), url('fonts/Spectral-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('fonts/Spectral-Medium.woff2') format('woff2'), url('fonts/Spectral-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('fonts/Spectral-Light.woff2') format('woff2'), url('fonts/Spectral-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Commissioner';
    src: url('fonts/Commissioner-Bold.woff2') format('woff2'), url('fonts/Commissioner-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Commissioner';
    src: url('fonts/Commissioner-Medium.woff2') format('woff2'), url('fonts/Commissioner-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Commissioner';
    src: url('fonts/Commissioner-Light.woff2') format('woff2'), url('fonts/Commissioner-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Commissioner';
    src: url('fonts/Commissioner-Regular.woff2') format('woff2'), url('fonts/Commissioner-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Commissioner';
    src: url('fonts/Commissioner-SemiBold.woff2') format('woff2'), url('fonts/Commissioner-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Commissioner';
    src: url('fonts/Commissioner-ExtraBold.woff2') format('woff2'), url('fonts/Commissioner-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*
    font-family: 'Commissioner';
    font-family: 'Spectral';
*/
:root {
    --d: 0;
    --ani-speed: 100ms;
    --ani2-speed: 150ms;
    /* colors */
    --yellow: #F6AE2D;
    --black: #000;
    --white: #ffffff;
    /* font families */
    --font-primary: 'Commissioner', sans-serif;
    --font-secondary: 'Spectral', serif;
    --d: 0;
    --ani-speed: 100ms;
    --ani2-speed: 190ms;
}


.add_animation.active [scale-up] {
    opacity: 0;
    -webkit-animation: scale-up var(--ani2-speed) ease-in-out forwards;
    animation: scale-up var(--ani2-speed) ease-in-out forwards;
    -webkit-animation-delay: calc(var(--order, 40ms) * var(--ani2-speed));
    animation-delay: calc(var(--order, 40ms) * var(--ani2-speed));
}

.add_animation.active [add-fade] {
    opacity: 0;
    -webkit-animation: add-fade .5s ease-in-out forwards;
    animation: add-fade .5s ease-in-out forwards;
}

.add_animation.active [slide-top] {
    -webkit-animation: slide-top 1s ease-in-out forwards;
    animation: slide-top 1s ease-in-out forwards;
}

.add_animation.active [slide-left] {
    -webkit-animation: slide-left 1s ease-in-out forwards;
    animation: slide-left 1s ease-in-out forwards;
}

.add_animation.active [slide-right] {
    -webkit-animation: slide-right 1s ease-in-out forwards;
    animation: slide-right 1s ease-in-out forwards;
}

@-webkit-keyframes scale-up {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    60% {
        opacity: 0.5;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes scale-up {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    60% {
        opacity: 0.5;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes add-fade {
    0% {
        -webkit-filter: blur(6px);
        filter: blur(6px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes add-fade {
    0% {
        -webkit-filter: blur(6px);
        filter: blur(6px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@-webkit-keyframes slide-right {
    0% {
        opacity: 0;
        -webkit-transform: translatex(50px);
        transform: translatex(50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translatex(0px);
        transform: translatex(0px);
    }
}

@keyframes slide-right {
    0% {
        opacity: 0;
        -webkit-transform: translatex(50px);
        transform: translatex(50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translatex(0px);
        transform: translatex(0px);
    }
}

@-webkit-keyframes slide-left {
    0% {
        -webkit-transform: translatex(-50px);
        transform: translatex(-50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translatex(0px);
        transform: translatex(0px);
    }
}

@keyframes slide-left {
    0% {
        -webkit-transform: translatex(-50px);
        transform: translatex(-50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translatex(0px);
        transform: translatex(0px);
    }
}

@-webkit-keyframes slide-top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes slide-top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.add_animation {
    overflow: hidden;
}



@keyframes scale-up {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    60% {
        opacity: 0.5;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes add-fade {
    0% {
        -webkit-filter: blur(3px);
        filter: blur(3px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes slide-right {
    0% {
        opacity: 0;
        -webkit-transform: translatex(100px);
        transform: translatex(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translatex(0px);
        transform: translatex(0px);
    }
}

@keyframes slide-left {
    0% {
        -webkit-transform: translatex(-100px);
        transform: translatex(-100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translatex(0px);
        transform: translatex(0px);
    }
}

@keyframes slide-top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.simpleParallax img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: 50% 30%;
}

section {
    display: block;
}

a {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #000;
    font-family: var(--font-primary);
}

.split_block ol,
.approach_section ol,
.content ol {
    padding-left: 20px;    margin-bottom: 20px;
}

.split_block ul ,
.approach_section ul ,
.content ul  {
    padding-left: 24px !important;    margin-bottom: 20px;    list-style: disc;
}
.split_block li, 
.approach_section li, 
.content li { 
    margin-bottom: 6px;
}

body {
    margin: 0;
    font-family: var(--font-secondary)
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

li {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: #000;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

h3.wp-block-heading {
    font-size: 36px;
    line-height: 36px;
    font-family: var(--font-primary);
    margin-bottom: 10px;
}

h4.wp-block-heading {
    font-size: 30px;
    font-family: var(--font-primary);
    margin-bottom: 10px;
}



p {
    margin: 0 0 20px;
    padding: 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: #000;
    font-family: var(--font-primary);
}

.team_single p a {
    color: var(--yellow);
}

.team_single .wp-block-list {
    margin: 0 0 20px;
    padding-left: 20px !important;
}

.team_single ul.wp-block-list {
    list-style: disc;
    padding-left: 27px !important;
}

.content ul {
    list-style: disc;
}

h1 {
    font-size: 64px;
    line-height: 72px;
    font-family: var(--font-secondary);
}

h2 {
    font-size: 44px;
    line-height: 48px;
    font-family: var(--font-secondary);
    margin-bottom: 20px;
}

h3 {
    font-size: 28px;
    line-height: 36px;
}

h4 {
    font-size: 25px;
    line-height: 35px;
}

h6 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}

h1 span,
h2 span {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--yellow) !important;
}

.text-white * {
    color: #fff;
}

.container {
    width: 1318px;
    padding: 0 20px;
}

.primary_btn {
    min-height: 56px;
    min-width: 167px;
    font-size: 16px;
    padding: 0 20px;
    text-align: center;
    line-height: 36px;
    border: 1px solid var(--white);
    color: #fff;
    border-radius: 8px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    font-family: var(--font-primary);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.primary_btn img {
    width: 19px;
    height: 19px;
    min-width: 19px;
    max-height: 19px;
    margin-left: 7px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.primary_btn:hover img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.primary_btn:hover {
    background: #fff;
    color: #000 !important;
}

.add-layer {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.banner_block.home .add-layer {
    background-color: rgba(0, 0, 0, 0.2);
}

.header-space {
    width: 100%;
    height: 105px;
    background: #fff;
}

.home .header-space {
    display: none;
}

.home header .header_links ul * {
    color: #fff;
}

header .header_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

header .header_links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    padding: 15px 0;
    background: #fff;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.home header {
    background: transparent;
}

header .logo a {
    width: 190px;
    height: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

header .logo a img.hover-logo-img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 1;
}

.home header .logo a img.hover-logo-img {
    opacity: 0;
}

header .logo a img {
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.home header .logo a img.logo-img {
    opacity: 1;
}

header .header_links ul * {
    font-size: 14px;
    line-height: 17px;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Commissioner';
    letter-spacing: 0.4px;
}

.single-team header .header_links ul li.menu-item-32 a {
    color: var(--yellow);
}

header .header_links ul a {
    border-left: 1px solid var(--yellow);
    padding: 0 14px;
}

header .header_links ul li a:hover,
header .header_links ul li.current_page_item a {
    color: var(--yellow) !important;
}

header .header_links ul li:nth-child(1) a {
    border-left: 0;
    padding-left: 0;
}

header .button-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 25px;
}

header .button-group a:hover {
    background: var(--yellow);
}

header .button-group a {
    margin: 0 7px;
    min-height: 36px;
    min-width: 96px;
    border: 1px solid var(--yellow);
    color: #000;
    font-size: 14px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.page-id-23 header .button-group .primary_btn.contact-btn {
    background: var(--yellow);
}

.home header .button-group a {
    color: #fff;
}

header .button-group a img {
    margin-right: 7px;
    -webkit-filter: invert(1);
    filter: invert(1);
}

header .button-group a:hover img {

    -webkit-filter: invert(1) !important;

    filter: invert(1) !important;
}

header .button-group a:hover img {
    margin-right: 7px;
    -webkit-filter: invert(0);
    filter: invert(0);
}


.home header .button-group a img {

    -webkit-filter: invert(0) !important;

    filter: invert(0) !important;
}

.home header .button-group a:hover img {

    -webkit-filter: invert(1) !important;

    filter: invert(1) !important;
}

.dark-header header {
    background: #fff !important;
    -webkit-box-shadow: 0 0 3px rgb(0 0 0 / 18%);
    box-shadow: 0 0 3px rgb(0 0 0 / 18%);

}

.single-team header {
    -webkit-box-shadow: 0 0 3px rgb(0 0 0 / 18%);
    box-shadow: 0 0 3px rgb(0 0 0 / 18%);
}

.dark-header header .header_links ul * {
    color: #000;
}

.dark-header header .button-group a {
    color: #000;
}

.dark-header header .button-group a img {

    -webkit-filter: invert(1) !important;

    filter: invert(1) !important;
}

.dark-header header .logo a img.hover-logo-img {

    opacity: 1;
}

.dark-header header .logo a img.logo-img {
    opacity: 0;
}



footer {
    padding: 40px 0 30px;
    background: -o-linear-gradient(bottom, rgb(0 0 0) 0% 75%, rgb(255 255 255 / 0%) 100%);
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(0 0 0)), to(rgb(255 255 255 / 0%)));
    background: linear-gradient(0deg, rgb(0 0 0) 0% 75%, rgb(255 255 255 / 0%) 100%);
    margin-top: -120px;
    position: relative;
    z-index: 6;
}

footer * {
    color: #fff;
    font-size: 16px;
}

footer a {
    color: #808080 !important;
}

footer a:hover {
    color: var(--yellow) !important;
}

footer .copyright p {
    margin: 0;
    color: #808080 !important;
}

footer .copyright ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .copyright ul a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 7px;
}

footer .copyright ul a img {
    width: 25px;
    height: 25px;
    -o-object-fit: contain;
    object-fit: contain;
}

footer .copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

footer .menu_link {
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

footer .menu_link .item-column:nth-child(1) {
    width: 235px;
}

footer .menu_link .item-column:nth-child(1) * {
    color: #fff !important;
}

footer .menu_link .item-column:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: calc(100% - 890px);
    margin: 0 20px;
}

footer .menu_link .item-column:nth-child(3) {
    width: 615px;
}

footer .footer-logo {
    margin-bottom: 66px;
    max-width: 175px;
    position: relative;
    z-index: 1;
}

footer .footer-logo img {
    width: 100%;
}

.banner_block {
    min-height: 700px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding: 170px 0;
    position: relative;
}

section.banner_block.approach .add-layer {
    background: -o-linear-gradient(left, rgba(18, 18, 18, 0.8) 0%, rgba(255, 255, 255, 0) 120%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(18, 18, 18, 0.8)), color-stop(120%, rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(18, 18, 18, 0.8) 0%, rgba(255, 255, 255, 0) 120%);
}

section.banner_block.home {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.banner_block .img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.banner_block .mobile-img img,
.banner_block .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

section.banner_block.approach,
section.banner_block.team,
section.banner_block.about-us,
section.banner_block.services {
    min-height: 600px;
}

section.banner_block.services {
    padding: 220px 0 100px;
}

section.banner_block.team .add-layer {
    background: -webkit-gradient(linear, left top, right top, from(rgba(18, 18, 18, 0.8)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(left, rgba(18, 18, 18, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(90deg, rgba(18, 18, 18, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}

section.banner_block.services .img img {
    -o-object-position: 50% 75%;
    object-position: 50% 75%;
}

section.banner_block.approach .img img {
    -o-object-position: 50% 85%;
    object-position: 50% 85%;
}

section.banner_block.team img {
    -o-object-position: top;
    object-position: top;
}

.banner_block .content {
    position: relative;
    z-index: 1;
    max-width: 790px;
    border-left: 1px solid var(--yellow);
    padding-left: 32px;
}

.banner_block .content h1 {
    color: #fff;
}

.banner_block.inner_block h1 {
    font-size: 54px;
    line-height: 62px;
}

.logo_content_block .left_col .img {
    width: 240px;
    height: 240px;
}

.logo_content_block .left_col .img img {
    width: 100%;
}

.logo_content_block .left_col {
    width: 240px;
}

.logo_content_block .right_col {
    width: calc(100% - 240px);
    padding-right: 90px;
}

.logo_content_block .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 60px;
}

.logo_content_block {
    padding: 90px 0 70px;
}

.logo_content_block .content p {
    font-size: 28px;
    line-height: 38px;
    font-family: var(--font-secondary);
}

.logo_content_block .content {
    border-left: 1px solid var(--yellow);
    padding-left: 32px;
}

.card_block {
    position: relative;
    margin: 20px 0;
}

.card_block .item-image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* border-radius: 20px; */
    /* overflow: hidden; */
}

.card_block .wrapper {
    position: relative;
    z-index: 1;
    padding: 50px 50px;
    border-radius: 20px;
    overflow: hidden;
    min-height: 640px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card_block .item-content.bottom-align {
    margin-top: auto;
}

.card_block .item-content.top-align {
    margin-bottom: auto;
}

.card_block .item-content {
    position: relative;
    z-index: 4;
    width: 50%;
}

.card_block .right_col .item-content {
    margin-left: auto;

}

.card_block .left_col .item-content .content {
    max-width: 480px;
}

.card_block .left_col .item-content .content p {
    max-width: 380px;
}


.card_block .right_col .item-content .content {
    max-width: 470px;
    margin-left: auto;
}


.card_block .content * {
    color: #fff;
}
 p > a {
    color: #594B13 !important;    font-weight: 600;
}
b, strong {
    font-weight: 600;
}
.card_block  p > a {
    color: var(--yellow) !important;
}
.card_block .content p {
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.card_block .item-image * {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.card_block .two-col-mbl-img{
    display: none;
}

.card_block .content h2 {
    margin-bottom: 30px;
}

.card_block .content .primary_btn {
    margin-top: 20px;
}

.card_block .wrapper:before {
    /* background: -o-linear-gradient(left, rgba(18, 18, 18, 0.8) 0%, rgba(255, 255, 255, 0) 80%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(18, 18, 18, 0.8)), color-stop(80%, rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(18, 18, 18, 0.8) 0%, rgba(255, 255, 255, 0) 80%);
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1; */
}

.card_block .wrapper.right_col:before {
    background: -o-linear-gradient(190deg, rgba(18, 18, 18, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(260deg, rgba(18, 18, 18, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}

.cta_block {
    position: relative;
    padding: 100px 0;
    text-align: center;
    min-height: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cta_block .add-layer {
    background-color: rgba(0, 0, 0, 0.35);
}

.cta_block .img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.cta_block .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center 78%;
    object-position: center 78%;
}

.cta_block h2 {
    font-size: 50px;
    line-height: 54px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
}

.cta_block .wrapper {
    position: relative;
    z-index: 1;
}

.testimonial_block .wrapper {
    background: rgb(246 174 45 / 14%);
    padding: 50px 130px;
    border-radius: 20px;
    /* overflow: hidden; */
}

.testimonial_block .content p {
    font-size: 28px;
    font-weight: 400;
    font-family: var(--font-secondary);
    line-height: 32px;
}

.testimonial_block h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    font-family: var(--font-primary);
    margin: 35px 0 5px;
}

.testimonial_block h6 {
    color: #808080;
    font-size: 20px;
    font-weight: 400;
    font-family: var(--font-primary);
}

.testimonial_block .container {
    padding: 0 50px;
}

.testimonial_block {
    padding: 100px 0;
    overflow: hidden;
}

.testimonial_block .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    background: transparent;
    margin: 0 5px;
    border-radius: 50%;
    border: 1px solid #000;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.testimonial_block .owl-dots button.owl-dot.active {
    background: #000;
}

.testimonial_block .owl-nav button {
    width: 26px;
    height: 30px;
    background: #000 !important;
    -webkit-clip-path: polygon(0 50%, 100% 97%, 100% 0);
    clip-path: polygon(0 50%, 100% 97%, 100% 0);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotateY(160deg);
    transform: translateY(-50%) rotateY(160deg);
    left: auto;
    right: -80px;
}

.testimonial_block .owl-nav button * {
    display: none;
}

.testimonial_block .owl-nav button.owl-prev {
    left: -80px;
    right: auto;
    -webkit-transform: translateY(-50%) rotateY(0deg);
    transform: translateY(-50%) rotateY(0deg);
}

.testimonial_block .owl-dots {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: -20px;
    margin-bottom: -10px;
    left: 0;
    right: 0;
}

.testimonial_block .quote-img img {
    width: 55px;
}

.testimonial_block .quote-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 40px;
    margin-bottom: -100px;
}


.split_block .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.split_block .wrapper .left_col {
    width: 50%;
    padding: 0 22px;

    padding-right: 25px;
}

.split_block .wrapper .right_col {
    width: 50%;
padding: 0 22px;
 
}

.split_block .wrapper .left_col img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3.35;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 22px;
    overflow: hidden;
}

section.split_block h2 {
    margin-bottom: 30px;
}

section.split_block {
    padding: 40px 0;
}

.split_block .wrapper .right_col * {
    /* max-width: 515px; */
    /* margin: 0 auto; */
}



.inspire_block .wrapper {
    padding: 80px 40px;
    background: #000;
    border-radius: 22px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}


section.inspire_block .right_col {
    width: 50%;
}

section.inspire_block .right_col * {
    /* color: #fff; */
    max-width: 525px;
    /* margin-bottom: 20px; */
}

.inspire_block .left_col {
    width: 50%;
    padding-left: 25px;
}


.quote_block {
    padding: 100px 0;
}

.quote_block .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.quote_block .wrapper img {
    width: 130px;
    height: 90px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-top: 10px;
}

.quote_block h3 {
    font-size: 34px;
    line-height: 46px;
    font-weight: 300;
    color: var(--yellow);
    font-family: var(--font-primary);
    margin-bottom: 26px;
}

.quote_block h6 {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-primary);
    line-height: 26px;
}

.quote_block .wrapper .content {
    max-width: calc(100% - 260px);
    padding: 0 90px;
}



.inspire_block .glow-box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 50px;
    padding-left: 13px !important;
}

.inspire_block .glow-box li {
    width: calc(50% - 100px);
    margin: 30px 0 0;
    border-left: 1px solid var(--yellow);
    padding-left: 15px;
    /* width: 190px; */
    list-style: none;
}

.inspire_block .left_col h4 {
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--yellow) !important;
    margin-bottom: 50px;
    margin-right: -80px;
}



.inspire_block .glow-box li:nth-child(odd) {
    border-right: 1px solid var(--yellow);
    border-left: 0;
    padding-left: 0;
    padding-right: 15px;
    text-align: right;
    max-width: 190px;
}

.inspire_block .glow-box li:nth-child(1),
.inspire_block .glow-box li:nth-child(2) {
    margin-top: 0 !important;
}

.inspire_block .glow-box {
    position: relative;
    margin-right: -50px;
}

.inspire_block .glow-box img {
    width: 290px;
    height: 290px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}



section.grid_section .img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

section.grid_section .wrapper .item-column .icon {
    width: 96px;
    height: 96px;
    margin: 0 auto;
    border: 1px solid #fff;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

section.grid_section .wrapper .item-column img {
    width: 55%;
    height: 55%;
    -o-object-fit: contain;
    object-fit: contain;
}

section.grid_section .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    padding: 70px 50px 40px;
}

section.grid_section .wrapper .item-column {
    width: 33.33%;
    text-align: center;
    position: relative;
    padding: 27px 25px;
}



section.grid_section .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 100% 55%;
       object-position: 100% 55%;
}

section.grid_section .row {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

section.grid_section {
    margin: 40px 0;
}

section.grid_section .wrapper p {
    max-width: 180px;
    margin: 15px auto 0;
}

section.grid_section .wrapper .item-column:before,
section.grid_section .wrapper .item-column:after {
    content: "";
    background: var(--yellow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1px;
    position: absolute;
    left: 30px;
    right: 30px;
    top: 0;
    bottom: 0;
}

section.grid_section .wrapper .item-column:after {
    width: 1px;
    right: 0px;
    top: 25px;
    bottom: 0px;
    left: auto;
    height: calc(100% - 50px);
}

section.grid_section .wrapper .item-column:nth-child(3n):after {
    content: "";
    background: transparent;
}

section.grid_section .wrapper .item-column:nth-child(1):before,
section.grid_section .wrapper .item-column:nth-child(2):before,
section.grid_section .wrapper .item-column:nth-child(3):before {
    background: transparent;
}




.approach_section {
    padding: 70px 0;
}

.approach_section .item-column {
    background-color: #F0F0F0;
    padding: 80px 75px 80px;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    margin-bottom: 40px;
}

.approach_section .item-column .left-col {
    width: 350px;
    max-width: 100%;
    padding-right: 15px;
}

.approach_section .item-column .right-col {
    width: calc(100% - 350px);
}

.approach_section .item-column .right-col .content {
    max-width: 680px;
    padding-left: 20px;
    margin-left: auto;
}

.approach_section .item-column .right-col .content ul {
    margin-bottom: 20px;
}

.approach_section .item-column .left-col .img {
    max-width: 150px;
    max-height: 135px;
    margin-bottom: 35px;
}

.approach_section .item-column .left-col .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;max-width: 125px;
}

.approach_section .item-column .left-col h3 {
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    font-weight: 500;
}

.approach_section .item-column .left-col h3 strong {
    color: var(--yellow);
    font-family: var(--font-primary);
}

.approach_section .item-column .left-col h4 {
    font-family: var(--font-primary);
}

.approach_section .item-column .left-col h4 strong {
    font-weight: 700;
    font-family: var(--font-primary);
}


.approach_section .primary_btn {
    border: 1px solid var(--yellow);
    color: #000;
    font-weight: 600;
    background: #fff;
}

.approach_section .primary_btn:hover {
    background: var(--yellow);
}

.approach_section .item-column .right-col h6 {
    margin-top: 50px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.approach_section .item-column .right-col .primary_btn {
    margin-top: 50px;
}


.resource_section .item-column .img {
    max-width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}


.resource_section .item-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.resource_section .item-column .left-col {
    width: 300px;
}

.resource_section .item-column .right-col {
    width: calc(100% - 300px);
    padding-left: 70px;
}

.resource_section .item-column {
    margin: 80px 0;
}

section.resource_section {
    background: #F0F0F0;
    padding: 80px 0;
}

section.resource_section .arrow-btn {
    font-size: 16px;
    line-height: 30px;
    color: #594B13;
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: 600;
}

.team_section {
    padding: 80px 0;
}

.team_section .block-head h2 {
    margin: 0 0 5px;
}



.team_section .wrapper h3 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #000;
    font-family: var(--font-primary);
}

.team_section .wrapper h6 {
    font-size: 26px;
    line-height: 30px;
    color: #594B13;
    font-weight: 300;
    font-family: var(--font-primary);
}

.team_section .wrapper .arrow-link {
    font-size: 16px;
    color: #594B13;
    font-weight: 300;
    display: block;
    margin-top: 15px !important;
    letter-spacing: 0.4px;
    font-family: var(--font-primary);
}

.team_section .wrapper .img {
    width: 264px;
    height: 264px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 30px !important;
}

.team_section .wrapper .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.team_section .wrapper .item-column {
    text-align: center;
    margin-bottom: 40px;
}

.team_section .wrapper .item-column a {
    display: block;
    padding: 0px 0px;
    max-width: 325px;
    margin: 0 auto;
}

.team_section .wrapper a:hover {
    color: var(--yellow);
}


.team_section .block-head {
    margin-bottom: 60px;
}





.team_single {
    padding: 50px 0 100px;
}

.team_single_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 70px;
}

.team_single_img {
    width: 315px;
    border-radius: 20px;
    overflow: hidden;
}

.team_single_img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/4;
}

.team_single_text {
    width: calc(100% - 400px);
    padding-left: 50px;
    max-width: 720px;
}

.team_single_sub_text {
    margin: 0 0 30px;
}

.team_social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 44px;
    border-bottom: 1px solid #000;
    padding-bottom: 30px;
}

.team_social_name {
    width: auto;
    padding-right: 15px;
}

.team_single_sub_text span {
    font-size: 22px;
    line-height: 36px;
    font-family: var(--font-primary);
    font-weight: 400;
}

.team_social_icon {
    display: block;
    width: 100%;
    margin-top: 20px;
}

.team_social ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.team_social ul li {
    margin-right: 10px;
}

.team_social ul li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 48px;
    height: 48px;
    background: var(--yellow);
    border-radius: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.team_social ul li a:hover {
    opacity: 0.6;
}

.team_social ul li img {
    width: 100%;
    max-width: 22px;
}

.primary-btn.blue_btn {
    color: var(--yellow);
    font-size: 14px;
    font-weight: 500;
    /* background: url(../images/yellow-arrow.svg) no-repeat center left / 35px;
    padding-left: 45px; */
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: 30px;
}
.back-arrow img {
width: 35px;
    object-position: left;
    max-height: 20px;
    margin-right: 12px;
    object-fit: cover;
    aspect-ratio: auto;
    border-radius: unset;
    padding: 2px;
}

.team_single h2 {
    font-size: 42px;
    font-weight: 500;
    line-height: 30px;
    margin: 0 0 14px;
    font-family: var(--font-primary);
}

.team_single .bottom-text p {
    font-size: 16px;
    line-height: 24px;
}



.grid_section .add-layer {
    background-color: rgba(0, 0, 0, 0.3);
}



section.contact-block {
    padding: 80px 0;
}

section.contact-block .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

section.contact-block .wrapper .left-col {
    width: 50%;
    border: 1px solid rgb(0 0 0 / 75%);
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

section.contact-block .wrapper .right-col input {
    height: 58px;
    outline: 0 !important;
    padding: 15px;
    border: 1px solid rgb(0 0 0 / 75%) !important;
    font-size: 16px;
    line-height: 20px;
    font-family: var(--font-primary);
}

section.contact-block .wrapper .right-col {
    width: 50%;
    padding-left: 22px;
}

section.contact-block .wrapper .reduired {
    margin: 0;
    font-size: 14px;
    line-height: 28px;
    position: relative;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    top: -15px;
}

section.contact-block .wrapper .left-col h2 {
    color: var(--yellow);
    font-size: 34px;
    line-height: 28px;
    font-weight: 500;
    font-family: var(--font-primary);
}

section.contact-block .wrapper .left-col p,
section.contact-block .wrapper .left-col a {
    font-size: 16px;
    line-height: 20px;
    color: #000;
    font-weight: 400;
    margin: 0 0 12px;
}

.gform_confirmation_message {
    background: var(--yellow);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

section.contact-block .wrapper .left-col iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 2.05;
    margin-top: 15px;
}

section.contact-block .block-head {
    margin-bottom: 35px;
}

section.contact-block .wrapper ::-webkit-input-placeholder {
    font-family: var(--font-primary) !important;
    color: #4B4B4D !important;
}

section.contact-block .wrapper ::-moz-placeholder {
    font-family: var(--font-primary) !important;
    color: #4B4B4D !important;
}

section.contact-block .wrapper :-ms-input-placeholder {
    font-family: var(--font-primary) !important;
    color: #4B4B4D !important;
}

section.contact-block .wrapper ::-ms-input-placeholder {
    font-family: var(--font-primary) !important;
    color: #4B4B4D !important;
}

section.contact-block .wrapper ::placeholder {
    font-family: var(--font-primary) !important;
    color: #4B4B4D !important;
}

section.contact-block .wrapper .left-col img {
    width: 24px;
    max-height: 24px;
    margin-right: 15px;

}

section.contact-block .wrapper .right-col .gform_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

section.contact-block .wrapper .right-col .gform_wrapper form {
    width: 100%;
}

section.contact-block .wrapper .right-col .gform_wrapper form textarea {
    height: 180px;
    border: 1px solid rgb(0 0 0 / 75%) !important;
    padding: 15px;
    font-size: 16px;
    line-height: 20px;
    font-family: var(--font-primary);
}

section.contact-block .wrapper .left-col .map_block {
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

section.contact-block .gform-footer input[type="submit"] {
    background: var(--yellow);
    border: 1px solid var(--yellow) !important;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--font-primary);
    letter-spacing: 0.4px;
}

section.contact-block .gform-footer {
    padding: 0 !important;
    margin: 0 !important;
}

.gform_validation_errors {
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    pointer-events: none;
}

.gfield_validation_message {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    /* color: var(--yellow) !important; */
    font-family: var(--font-primary) !important;
    font-weight: 400;
}

.gform_validation_errors h2 {
    /* color: var(--yellow) !important; */
    padding: 10px 0px !important;
    outline: 0 !important;
    border: 0 !important;
    font-family: var(--font-primary) !important;
    font-weight: 400 !important;
    font-size: 15px !IMPORTANT;
}

.gfield_error input {
    border-color: var(--yellow) !important;
}

.gform-icon--circle-error:before {
    display: none !important;
}

section.contact-block .wrapper .right-col * {
    outline: 0 !important;
}

.resource_section .item-column .right-col .content {
    max-width: 645px;
}

.resource_section .item-column .right-col .content p {
    color: #1A1A1A;
    font-weight: 300;
}



.mobile-img {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.navbar-toggler {
    display: none;
}

.modal .modal-dialog {
    max-width: calc(100% - 20px);
    margin: 0 auto;
    width: 960px;
}

.modal .modal-dialog .modal-content {
    position: relative;
    border-radius: 30px;
}

.modal .modal-dialog .modal-header {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
    border: 1px solid var(--color-primary);
    padding: 0;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background: url(../images/icon-close.svg) no-repeat center / 21px !important;
}

.modal .modal-header .btn-close {
    padding: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background: transparent;
}

.modal-dialog-scrollable .modal-body {
    overflow: auto;
    scrollbar-width: none;
    max-height: 90vh;
}

.modal .modal-body .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 60px 0px 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0px;
    margin: 0;
}

.modal .modal-body .row .view_row {
    text-align: center;
    padding: 0;
    margin: 15px 0;
    max-width: calc(33.33% - 00px);
    min-height: 280px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.modal .modal-dialog .img {
    width: 220px;
    margin: 0 auto 40px;
    max-width: 100%;
    min-height: 110px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal .modal-dialog .img img {
    max-height: 90px;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 100%;
}


.modal .modal-dialog .primary_btn:hover {
    background: var(--yellow);
    color: #fff;
}

.modal .modal-dialog .primary_btn {
    border: 1px solid var(--yellow);
    color: #000 !important;
}

.modal .modal-body .row .view_row:after {
    border-right: 1px solid var(--yellow);
    content: "";
    top: 0;
    bottom: 0;
    display: inline-block;
    position: absolute;
    height: 100%;
    width: 1px;
    right: 0;
}

.modal .modal-body .row .view_row:nth-child(3n):after {
    content: "";
    border: transparent;
}



.split_block .wrapper .left_col .img:before {
    content: "" "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0.05;
}

.split_block .wrapper .left_col .img {
    width: 100%;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
}




.modal .modal-body .row .view_row:nth-last-child(1):after {
    content: "";
    border: transparent !important;
}

.banner_block.home .img img {
    -o-object-position: 100% 80%;
       object-position: 100% 80%;

}
  .glow-box.for-mobile{
        display: none !important;
    }

@media (min-width: 992px) {
.header_menu {
  display: flex !important;
}
}
@media (min-width: 1200px) {
    .container {
        width: 100%;
        padding: 0 20px;
        max-width: 1318px;
    }

    .banner_block.home {
        max-height: 100vh;
        width: 100%;
        aspect-ratio: 4 / 2.5;
    }

}
@media (min-width: 575px) {
    .glow-box.for-mobile{
        display: block !important;
    }
}
@media (max-width: 768px) {
    .modal .modal-body .row.login-content .view_row:nth-child(even):after {
        content: "";
        border: transparent;
    }

    .modal .modal-body .row.login-content .view_row {
        max-width: calc(50% - 00px);
    }

    .modal .modal-body .row.login-content .view_row:nth-child(3n):after {
        border-right: 1px solid var(--yellow);
    }
    .inspire_block .wrapper {
    flex-direction: column;
}
}

@media (max-width: 1440px) {
    .testimonial_block .container {
        padding: 0 50px;
        max-width: calc(100% - 100px);
    }

    .testimonial_block .owl-nav button {
        left: auto;
        right: -60px;
    }

    .testimonial_block .owl-nav button.owl-prev {
        left: -60px;
        right: auto;

    }

}

@media (max-width: 1360px) {

    .inspire_block .glow-box li {
        width: calc(50% - 55px);
    }

    .inspire_block .glow-box img {
        /* width: 220px; */
        /* height: 220px; */
    }

    .quote_block {
        padding: 80px 0;
    }

    .quote_block .wrapper .content {
        max-width: calc(100% - 260px);
        padding: 0 40px;
    }

    section.grid_section .wrapper {

        padding: 70px 20px;
    }

    .quote_block h3 {
        font-size: 30px;
        line-height: 42px;

    }

    .inspire_block .glow-box img {
        width: 200px;
        height: 200px;
        margin: 0 auto;margin-left: -15px;
    }

    .inspire_block .left_col {
       padding-left: 50px;
    }

    .inspire_block .glow-box {
        position: relative;
        max-width: 500px;
        margin: 0 auto;

    }

    .inspire_block .left_col h4 {
max-width: 500px;
        margin: 0 auto 50px;margin-right: -50px;
    }
    .inspire_block .glow-box ul{
        padding-left: 0px !important;margin-right: -50px;
    }
        .inspire_block .glow-box img {
        width: 200px;
        height: 200px;
        margin: 0 auto;
       margin-left: 15px;
    }


}

@media (max-width: 1199px) {
    .approach_section .item-column {

        padding: 50px 40px 50px;
    }

    .approach_section .item-column .left-col h3 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .approach_section .item-column h4 {
        font-size: 22px;
        line-height: 35px;
    }

    .team_section .wrapper h3 {
        font-size: 22px;

    }

    .team_section .wrapper h6 {
        font-size: 20px;
    }

    .team_section .wrapper span {

        margin-top: 10px;
    }

    .team_single_text {
        width: calc(100% - 260px);
        padding-left: 40px;
        max-width: 720px;
    }

    .team_single_img {
        width: 260px;

    }

    .team_single h2 {
        font-size: 36px;
        line-height: 40px;

    }

    .team_single_sub_text span {
        font-size: 20px;
        line-height: 36px;
    }

    h1 {
        font-size: 56px;
        line-height: 66px;
    }

    .logo_content_block {
        padding: 70px 0 70px;
    }

    .card_block .item-content {
        width: 75%;
    }

    .testimonial_block .owl-nav button.owl-prev {
        left: -40px;
    }

    .testimonial_block .owl-nav button {

        right: -40px;
    }

    .testimonial_block .container {
        padding: 0 40px;
        max-width: calc(100% - 60px);
    }

    .logo_content_block .right_col {
        width: calc(100% - 240px);
        padding-right: 40px;
    }

    .cta_block {

        padding: 160px 0 180px;

    }

    footer .menu_link .item-column:nth-child(2) {
        width: calc(100% - 730px);
        margin: 0 20px;
    }

    footer .menu_link .item-column:nth-child(3) {
        width: 455px;
    }

    footer .menu_link {
        margin-bottom: 50px;

    }

    footer {

        margin-top: -130px;
    }

    .testimonial_block .content p {
        font-size: 24px;
        line-height: 32px;
    }

    h2 {
        font-size: 36px;
        line-height: 42px;

    }


    .inspire_block .left_col {
        width: 100%;
        padding-left: 0px;
    }

    section.inspire_block .right_col {
        width: 100%;
        margin-bottom: 0px;
    }

    section.inspire_block .right_col * {

        max-width: 100%;

    }

    .inspire_block .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding: 60px 40px;
    }

    .inspire_block .left_col h4 {
        margin: 0 auto 40px;
        right: -40px;
        position: relative;
    }

    .inspire_block .left_col {

        margin-bottom: 30px;
    }

    .quote_block {
        padding: 60px 0;
    }

    .quote_block .wrapper .content {
        max-width: calc(100% - 200px);
        padding: 0 40px;
    }

    .quote_block .wrapper img {
        width: 100px;
        height: 60px;

    }

    .quote_block h3 {
        font-size: 26px;
        line-height: 36px;
    }

    .inspire_block .glow-box ul {
margin-right: 0;
        gap: 75px;
        padding-left: 0 !important;
    }

    .inspire_block .glow-box img {
width: 260px;
        height: 260px;
        left: 50%;
        margin-left: 0;

    }

    section.grid_section .row {

        margin-top: 20px;

    }

    section.resource_section h2 {
        margin-bottom: 7px;
    }

    .inspire_block .glow-box {
                max-width: 648px;
        margin: 0 auto;
    }

    .inspire_block .left_col h4 {

        right: 0;

    }
section.split_block br {
    display: none;
}
    .inspire_block .glow-box li {
        width: 100%;
        max-width: 190px;
    }


}

@media (max-width: 991px) {



    .container {
        width: 100%;
        max-width: 100%;
    }

    .banner_block.inner_block h1 {
        font-size: 42px;
        line-height: 52px;
    }

    h1 {
        font-size: 56px;
        line-height: 1.3;
    }

    .approach_section .item-column {
        padding: 40px 30px 40px;
    }

    .approach_section .item-column .left-col {
        width: 280px;
    }

    .approach_section .item-column h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .approach_section .item-column .left-col h3 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .approach_section .item-column .right-col {
        width: calc(100% - 280px);
    }

    p {

        font-size: 18px;
        line-height: 26px;

    }

    li {
        font-size: 18px;
        line-height: 28px;

    }

    .approach_section .item-column .right-col h6 {
        margin-top: 40px;
    }

    h6 {
        font-size: 18px;
        line-height: 26px;
    }

    .approach_section .item-column .right-col .primary_btn {
        margin-top: 30px;
        white-space: normal;
    }

    .resource_section .item-column .left-col {
        width: 220px;
    }

    .resource_section .item-column .right-col {
        width: calc(100% - 220px);
        padding-left: 50px;
    }

    .resource_section .item-column {
        margin: 60px 0;
    }

    .approach_section {
        padding: 50px 0;
    }

    .team_section {
        padding: 60px 0;
    }

    .team_section .wrapper .img {
        width: 214px;
        height: 214px;
        margin: 0 auto 20px;
    }

    .team_section .block-head {
        margin-bottom: 40px;
    }

    h1 {
        font-size: 48px;
        line-height: 1.3;
    }

    .logo_content_block .right_col {
        width: 100%;
        padding-right: 0;
    }

    .logo_content_block .content p {
        font-size: 22px;
        line-height: 32px;
    }

    .logo_content_block .wrapper {

        -webkit-box-orient: vertical;

        -webkit-box-direction: reverse;

        -ms-flex-direction: column-reverse;

        flex-direction: column-reverse;
        padding-right: 0px;
    }

    .logo_content_block {
        padding: 50px 0;
    }

    .logo_content_block .left_col .img {
        margin-bottom: 30px;
    }

    .card_block .wrapper {
        padding: 50px 40px 50px;
    }

    .card_block .item-content {
        width: 100%;
    }

    .banner_block {
        min-height: auto !important;
        /* padding: 160px 0 60px; */
        padding: 100px 0 !important;
    }

    .testimonial_block .quote-img {
        padding: 0 20px;
        margin-bottom: -60px;
    }

    .testimonial_block .wrapper {

        padding: 30px 60px;

    }

    .testimonial_block .quote-img img {
        width: 30px;
    }

    .testimonial_block .owl-nav button {
        right: 20px;
    }

    .testimonial_block .owl-nav button.owl-prev {
        left: 20px;
    }

    .testimonial_block .owl-nav button {
        width: 21px;
        height: 25px;

    }

    .cta_block h2 {
        font-size: 38px;
        line-height: 1.3;

    }

    footer .menu_link .item-column:nth-child(3) {
        width: 100%;
        margin-top: 20px;
    }

    footer * {
        color: #fff;
        font-size: 16px;
    }

    footer .copyright * {
        margin-bottom: 0;
        font-size: 14px;
    }

    footer .copyright ul a img {
        width: 20px;
        height: 20px;
        -o-object-fit: contain;
        object-fit: contain;
    }

    footer .menu_link {
        margin-bottom: 30px;
    }

    footer .menu_link .item-column:nth-child(2) {
        width: calc(100% - 50%);
        margin: 0 20px;
    }

    .card_block .wrapper:before {
        background: rgba(0, 0, 0, 0.6) !important;

    }

    h2 {
        font-size: 32px !important;
        line-height: 40px;
        font-family: var(--font-secondary);
        margin-bottom: 20px;
    }

    footer .copyright {
        /* flex-direction: column; */
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    footer .copyright ul {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 10px;
    }

    footer .menu_link {
        margin-bottom: 0px;
    }

    .quote_block {
        padding: 60px 0;
    }


    header {
        background: #fff !important;
    }

    header .header_links ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    header .header_menu {
        position: fixed;
        left: 0;
        right: 0;
        top: 80px;
        background: #fff;
        padding: 30px 20px 30px;
        /* transition: all 0.5s ease-in-out; */
        /* transform: translateY(-100%); */
        display: none;
    }

    .show_menu .header_menu {
        /* transform: translateY(0%); */
        overflow: auto;
        max-height: calc(100vh - 80px) !important;
    }

    header .header_links ul li {
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        width: 100%;
    }

    header .header_links ul li a {
        padding: 0;
        border: 0;
        text-align: left;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 18px;
        line-height: 22px;
        margin: 0 0 12px;
    }

    header .button-group {
        margin: 15px 0 0;
    }

    header .button-group a {
        margin: 0 12px 0 0;
    }

    header .logo {
        position: relative;
        z-index: 9;
    }

    header .header_links {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    header .header_links ul * {
        color: #000 !important;
    }

    header .logo a img.hover-logo-img {
        opacity: 1 !important;
    }

    header .logo a img.logo-img {
        opacity: 0 !important;
    }

    header .button-group a {
        color: #000 !important;
    }

    header .button-group a img {
        -webkit-filter: invert(1) !important;
        filter: invert(1) !important;
    }

    header .logo a {
        width: 120px;
        height: 55px;

    }


    header button.navbar-toggler {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        background: transparent;
        outline: 0 !important;
        border: 0 !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        position: relative;
        z-index: 99;
    }

    body.show_menu span.navbar-toggler-icon:nth-child(1) {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 5px;
    }

    header button.navbar-toggler span.navbar-toggler-icon {
        background: #000;
        height: 2px;
        margin: 4px 0;
        width: 32px;
        position: relative;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        -webkit-transform: translate3d(0, 0px, 0) rotate(0deg);
        transform: translate3d(0, 0px, 0) rotate(0deg);
    }

    body.show_menu span.navbar-toggler-icon:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -4px;
    }

    body.show_menu span.navbar-toggler-icon:nth-child(3) {
        opacity: 0;
    }

    .header-space {
        display: block !important;
        height: 85px;

    }

    body.show_menu {
        overflow: hidden;
    }

    .quote_block .wrapper img {
        width: 70px;
        height: 50px;
        -o-object-fit: contain;
        object-fit: contain;
        margin-top: 10px;
    }

    .quote_block .wrapper .content {
        max-width: calc(100% - 140px);
        padding: 0px 20px;
    }

    .quote_block h3 {
        font-size: 22px;
        line-height: 32px;
    }

    footer {
        margin-top: -140px;
    }

    .approach_section .item-column .right-col .content {

        padding-left: 20px;
    }

    .home header .button-group a img {
        -webkit-filter: invert(0) !important;
        filter: invert(1) !important;
    }

    .modal .modal-body .row .view_row {
        max-width: calc(50% - 00px);
    }

    .modal .modal-body .row .view_row:nth-child(3n):after {
        border-right: 1px solid var(--yellow);
    }

    .modal .modal-body .row .view_row:nth-child(even):after {
        border-right: 0px solid var(--yellow);
    }

    .modal .modal-dialog {
        max-width: calc(100% - 60px);
        margin: 30px auto;
        width: 960px;
    }

    .modal .modal-body .row {

        padding: 30px 0px 30px;

    }

    .testimonial_block .container {
        padding: 0 0px;
        max-width: calc(100% - 60px);
    }




}


@media (max-width: 767px) {

    .mobile-img {
        display: block;
    }

    .banner_block .img {
        display: none;
    }

    h1 {
        font-size: 36px;
        line-height: 1.3;
    }

    .banner_block.inner_block h1 {
        font-size: 36px;
        line-height: 46px;
    }

    .approach_section .item-column .left-col {
        padding: 0;
        width: 100%;

    }

    .approach_section .item-column .left-col {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .approach_section .item-column .right-col {
        width: 100%;
        max-width: 100%;
    }

    .approach_section .item-column {
        padding: 40px 20px 30px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .approach_section .item-column .left-col .img {
        max-width: 110px;
        max-height: 110px;
        margin-bottom: 35px;
    }

    .primary_btn {
        font-size: 14px;
        padding: 5px 20px;

        line-height: 28px;

    }

    .resource_section .item-column {
        margin: 40px 0;
    }

    .resource_section .item-column .right-col {
        width: 100%;
        padding-left: 0px;
        margin-top: 25px;
    }

    .approach_section {
        padding: 40px 0;
    }

    .team_section {
        padding: 40px 0;
    }

    .team_section .wrapper .img {
        width: 100%;
        height: auto;
        margin: 0 auto 20px;
        aspect-ratio: 4 / 4;
        max-width: 100% !important;
    }

    .team_single_text {
        width: 100%;
        padding-left: 0;
        max-width: 100%;
    }

    .card_block .item-content {

        width: 100%;
    }

    .card_block .wrapper {

        padding: 50px 20px;

        min-height: auto;

    }

    .testimonial_block .container {
        padding: 0 20px;
    }


    .testimonial_block .content p {
        font-size: 20px;
        line-height: 28px;
    }

    .testimonial_block h5 {
        font-size: 22px;

        margin: 20px 0 5px;
    }

    .logo_content_block .content p {
        font-size: 20px;
        line-height: 28px;
    }

    .logo_content_block .right_col {
        width: 100%;
        padding-right: 0;
    }

    .logo_content_block .left_col .img {
        width: 170px;
        height: 170px;
    }

    .logo_content_block .content p {
        font-size: 20px;
        line-height: 30px;
    }

    .card_block .content h2 {
        margin-bottom: 20px;
    }

    footer .footer-logo {
        margin-bottom: 30px;
        max-width: 175px;
        position: relative;
        z-index: 1;
    }

    footer {
        margin-top: -150px;
        background: -o-linear-gradient(bottom, rgb(0 0 0) 0% 82%, rgb(255 255 255 / 0%) 100%);
        background: -webkit-gradient(linear, left bottom, left top, from(rgb(0 0 0)), to(rgb(255 255 255 / 0%)));
        background: linear-gradient(0deg, rgb(0 0 0) 0% 82%, rgb(255 255 255 / 0%) 100%);
    }

    footer .copyright {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    footer .menu_link .item-column:nth-child(2) {
        width: 50%;
        margin: 0px 0 20px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    footer .menu-main-menu-container {
        width: 50%;
    }

    .cta_block {
        padding: 60px 0 60px;
    }

    .inspire_block .wrapper {

        padding: 40px 15px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .inspire_block .glow-box {

        text-align: center;

        margin-right: -20px;
    }

    .inspire_block .glow-box li {
        width: calc(50% - 60px);
        margin-top: 0;
        text-align: left;
    }

    .inspire_block .glow-box img {
        width: 170px;
        height: 170px;
    }

    section.grid_section .wrapper {
        padding: 40px 0px;
    }


    section.grid_section .wrapper .item-column {
        width: 50%;
        padding: 25px 0px;
    }

    section.grid_section .wrapper .item-column:nth-child(3n):after {
        background: var(--yellow);
    }

    section.grid_section .wrapper .item-column:nth-child(2n):after {
        background: transparent;
    }

    section.grid_section .wrapper .item-column:nth-child(3):before {
        background: var(--yellow);
    }

    section.grid_section .row {
        margin-top: 30px;
    }

    .split_block .wrapper .right_col {
        width: 100%;
        padding: 0;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .split_block .wrapper .left_col {
        width: 100%;
        padding-left: 0px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 20px;
        padding: 0 !important;
    }

    .quote_block .wrapper img {
        width: 35px;
        height: 25px;
        -o-object-fit: contain;
        object-fit: contain;
        margin-top: 5px;
    }

    section.split_block h2 {
        margin-bottom: 15px;
    }

    .quote_block .wrapper .content {
        max-width: calc(100% - 70px);
        padding: 0 15px;
    }

    .quote_block h3 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 26px;
    }

    .quote_block {
        padding: 40px 0;
    }

    .inspire_block .left_col {
        margin-bottom: 50px;
    }

    section.grid_section .wrapper .item-column img {
        width: 65px;
        height: 65px;
    }

    section.contact-block .wrapper .right-col {
        width: 100%;
        padding: 0;
    }

    section.contact-block .wrapper .left-col {
        padding: 15px;
        width: 100%;
        margin-bottom: 30px;
    }

    .logo_content_block .left_col {
        width: 240px;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    footer .menu_link .item-column:nth-child(1) p {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    footer .menu_link .item-column:nth-child(1) {
        width: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }


    .card_block .right_col .item-content {
        margin-left: auto;
        padding-right: 0;
    }

    .approach_section .item-column .right-col .content {
        max-width: 720px;
        padding-left: 0px;
    }

    .content ul {

        padding-left: 25px !important;
    }

    .modal .modal-body .row .view_row:nth-child(3n):after {
        content: "";
        border-right: 1px solid var(--yellow);
    }

    .modal .modal-body .row .view_row:nth-child(even):after {
        content: "";
        border: transparent;
    }

    .testimonial_block .content p {
        font-size: 20px;
        line-height: 26px;
    }

    .cta_block .add-layer {
        background-color: rgba(0, 0, 0, 0.4);
    }

    .testimonial_block .container {
        padding: 0 20px;
        max-width: calc(100% - 20px);
    }

    .banner_block.about-us .content {
        position: relative;
        top: -50px;
    }

    .team_single {
        padding: 40px 0 40px;
    }

    .team_single_wrap {

        margin: 0 0 20px;
    }

    .cta_block h2 {

        margin-bottom: 90px;
        margin-top: -70px;
    }
        section.grid_section h2 {
        max-width: 330px;
        margin: 0 auto;
        text-align: center;
    }   

}



@media (max-width: 575px) {



    .cta_block h2 {
        font-size: 32px;
        line-height: 1.3;
    }

    .inspire_block .glow-box li {
        width: 100%;
        border: 0 !important;
        border-bottom: 1px solid var(--yellow) !important;
        text-align: center !important;
        padding-bottom: 9px;
        max-width: 100%;

    }

    .inspire_block .glow-box li:nth-child(odd) {
        text-align: left;
        border-left: 1px solid var(--yellow);
        border-right: 0;
        padding-right: 0;
        padding-left: 15px; max-width: 100%;
    }

    li {
        font-size: 18px;
        line-height: 26px;
        font-weight: 400;
    }

    .inspire_block .glow-box ul {

        gap: 20px;
    }

    .inspire_block .glow-box img {

        position: static;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin: 0 auto;
    }

    h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    h2 {
        font-size: 24px;
        line-height: 32px;
    }

    h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .inspire_block .left_col h4 {
        margin-bottom: 30px;
    }

    .quote_block h3 {
        font-size: 21px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    /* section.grid_section .wrapper .item-column {
        width: 100%;
        padding: 25px 0px;
    }

    section.grid_section .wrapper .item-column:after {
        display: none;
    } */

    /* section.grid_section .wrapper .item-column:nth-child(2):before {
        background: var(--yellow);
    }

    section.grid_section .wrapper .item-column:before,
    section.grid_section .wrapper .item-column:after {

        left: 0px;
        right: 0px;

    } */
    section.grid_section .wrapper .item-column .icon {
        width: 76px;
        height: 76px;
    }

    section.grid_section .wrapper .item-column img {
        width: 45px;
        height: 45px;
    }

    section.grid_section .wrapper p {

        font-size: 14px;
        line-height: 22px;
    }

    .banner_block .content {

        padding-left: 20px;
    }

    .inspire_block .glow-box li br {
        display: none;
    }

    .modal .modal-body .row .view_row {
        max-width: 100%;
        border-bottom: 1px solid var(--yellow);
    }

    .modal .modal-body .row .view_row:after {
        border-right: 0px solid var(--yellow) !important;

    }

    .modal .modal-body .row .view_row:nth-last-child(1) {
        border: 0 !important;
    }

    section.contact-block .wrapper .right-col * {

        gap: 0 !important;
    }

    .gform_wrapper.gravity-theme .ginput_complex span {
        margin-bottom: 0 !important;
        padding-left: 0;
    }

    section.contact-block .wrapper .right-col textarea,
    section.contact-block .wrapper .right-col input {
        margin-bottom: 15px;
    }

    .modal .modal-body .row {

        padding: 30px 0px 20px;

    }

    footer .menu_link .item-column:nth-child(2) {
        width: 100%;
    }

    footer .menu_link .item-column:nth-child(1) {
        width: 100%;
        margin-bottom: 30px;
    }

    .inspire_block .glow-box {
        text-align: center;
        margin-right: 0px;
    }

    .approach_section .item-column .left-col .img {
        max-width: 90px;
        max-height: 90px;
        margin-bottom: 35px;
    }

    .primary_btn {
        font-size: 12px;
        padding: 5px 20px;

        line-height: 28px;

    }

    .grid_section h2 {
        text-align: center;
        width: 100%;
    }

    .card_block .two-col-desktop-img{
        display: none;
    }
    .card_block .two-col-mbl-img{
        display: block;
    }
    .inspire_block .glow-box {
        margin: 0 auto;
    }
    .inspire_block .glow-box img{
        display: none;
    }
    .glow-box.for-mobile *,
    .glow-box.for-mobile{
        display: block !important;
    }
            .inspire_block .left_col {
        margin-bottom: 0;
        margin-top: 20px;
        }
        .inspire_block .wrapper {
    flex-direction: column;
}

}

@media (max-height: 600px) {
    .modal .modal-body .row {

        padding: 40px 0px 0px;

    }

    .modal .modal-dialog .img {
        margin: 0 auto 20px;
        min-height: 110px;
    }

    .modal .modal-dialog {

        min-height: auto;
        height: auto;
        margin: 20px auto;
    }


}

@media (max-height: 450px) {
    .modal .modal-body .row .view_row {

        min-height: 230px;

    }

    .modal .modal-body .row {
        padding: 30px 0px 0px;
    }
        header .header_links ul li a {
       
        font-size: 16px;
        line-height: 20px;
        margin: 0 0 10px;
    }
        header .header_menu {
      
        padding: 10px 20px 20px;

    }

}