/* Font Families */
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");

/* font-family: "Lexend Deca", sans-serif; */
:root {
    /* Colors */
    --color-primary: #c8964d;
    --darkcyan: #0b4d54;
    --color-black: #1a1a1a;
    --color-white: #ffffff;
    /* Font Sizes */
    --font-100: 100px;
    --font-74: 74px;
    --font-62: 62px;
    --font-58: 58px;
    --font-42: 42px;
    --font-26: 26px;
    --font-22: 22px;
    --font-18: 18px;
    --font-16: 16px;
    --primary-font: "Lexend Deca", sans-serif;
    --header-height: 114px;
    --d: 0;
    --ani-speed: 100ms;
    --ani2-speed: 190ms;
}

.add_animation.active [scale-up] {
    opacity: 0;
    animation: scale-up var(--ani2-speed) ease-in-out forwards;
    animation-delay: calc(var(--order, 40ms) * var(--ani2-speed));
}

.add_animation.active [add-fade] {
    opacity: 0;
    animation: add-fade 0.5s ease-in-out forwards;
}

.add_animation.active [slide-top] {
    animation: slide-top 1s ease-in-out forwards;
}

.add_animation.active [slide-left] {
    animation: slide-left 1s ease-in-out forwards;
}

.add_animation.active [slide-right] {
    animation: slide-right 1s ease-in-out forwards;
}

@keyframes scale-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    60% {
        opacity: 0.5;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes add-fade {
    0% {
        -webkit-filter: blur(6px);
        filter: blur(6px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes slide-right {
    0% {
        opacity: 0;
        transform: translatex(50px);
    }

    100% {
        opacity: 1;
        transform: translatex(0px);
    }
}

@keyframes slide-left {
    0% {
        transform: translatex(-50px);
    }

    100% {
        opacity: 1;
        transform: translatex(0px);
    }
}

@keyframes slide-top {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes slide-toggle {
    0% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.add_animation {
    overflow: hidden;
}

.text-white * {
    color: #fff !important;
}

.block-setting-padding {
    padding-top: var(--block-padding-top);
    padding-bottom: var(--block-padding-bottom);
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-left: 15px;
    padding-right: 15px;
}

/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--primary-font);
    margin: 0;
    padding: 0;
    font-size: var(--font-18);
}

p {
    font-size: var(--font-18);
    color: var(--color-black);
    line-height: 1.5;
    margin-bottom: 1em;
}

h1 {
    font-size: var(--font-74);
    color: var(--color-primary);
    font-weight: 500;
    font-family: var(--primary-font);
}

h2 {
    font-size: var(--font-58);
    color: var(--color-primary);
}

h3 {
    font-size: var(--font-26);
    color: var(--color-primary);
}

h4 {
    font-size: var(--font-22);
    color: var(--color-primary);
    line-height: 1.4;
    font-weight: 400;
}

h5 {
    font-size: var(--font-18);
    color: var(--color-primary);
    line-height: 1.4;
}

h6 {
    font-size: var(--font-16);
    color: var(--color-primary);
    line-height: 1.4;
}

a {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    cursor: pointer;
}

.container {
    max-width: 1310px;
    padding: 0 15px;
}

.primary_btn {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 30px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 400;
    letter-spacing: 0.6px;
    transition: all 0.5s ease-in-out;
}

.primary_btn:hover {
    background: transparent;
    color: var(--color-primary);
}

.header-btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.arrow-link img {
    transform: rotate(-90deg);
    width: 26px;
    max-height: 24px;
    margin-left: 8px;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    color: var(--darkcyan);
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.arrow-link:hover {
    color: var(--color-primary);
}

/* header */
.admin-bar header {
    top: 32px;
}

.header_space {
    height: 114px;
}

header .logo a {
    display: flex;
    width: 200px;
    height: 74px;
    position: relative;
}

header .header-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    position: absolute;
    left: 50%;
    right: 0;
    top: 50%;
    justify-content: center;
    transform: translate(-50%, -50%);
}

header .header-menu ul * {
    color: var(--darkcyan);
    font-size: 14px;
    line-height: 16px;
    padding: 0 8px;
    font-weight: 400;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

header .header-menu ul li {
    margin: 0 7px;
}

header {
    display: flex;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    padding: 20px 0;
    background: #fff;
    transition: all 0.5s ease-in-out;
    position: fixed;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

header .login_btn {
    display: flex;
    align-items: center;
    color: var(--color-primary);
    font-size: 14px;
    line-height: 16px;
    padding: 0 8px;
    font-weight: 400;
    margin-right: 27px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

header .login_btn svg {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

header .header-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

header .navbar-toggler {
    display: none;
}

header .logo a img.header-white-icon {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    opacity: 0;
}

.home .header_space {
    display: none;
}

.home header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: transparent;
}

.home header .header-menu ul * {
    color: #fff;
}

.home header .logo a img {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.home header .logo a .header-white-icon {
    opacity: 1;
}

.dark-header header .logo a {
    background: transparent;
}

.dark-header header {
    background: #fff;
}

.dark-header header .header-menu ul a {
    color: var(--darkcyan);
}

.dark-header header .primary_btn {
    background: var(--darkcyan);
    border-color: var(--darkcyan);
}

.dark-header header .login_btn {
    color: var(--darkcyan);
}

.page-template-default header .login_btn {
    color: var(--darkcyan);
}

.dark-header header .logo a .header-white-icon {
    opacity: 0 !important;
}

.dark-header header .logo a img {
    opacity: 1 !important;
}

header .login_btn svg * {
    transition: all 0.4s ease-in-out;
}

.dark-header header .login_btn svg * {
    fill: var(--darkcyan);
}

.page-template-default .login_btn svg * {
    fill: var(--darkcyan);
}

.page-template-default header .header-menu .primary_btn {
    background: var(--darkcyan) !important;
    border-color: var(--darkcyan) !important;
}

.page-template-default header .header-menu .primary_btn:hover {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #fff;
}

.home.page-template-default header .header-menu .primary_btn {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.home.page-template-default header .header-menu .primary_btn:hover {
    background: var(--darkcyan) !important;
    border-color: var(--darkcyan) !important;
}

.dark-header.home.page-template-default header .header-menu .primary_btn:hover {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.home.page-template-default header .login_btn svg * {
    fill: var(--color-primary);
}

.home.page-template-default header .login_btn {
    color: var(--color-primary);
}

.home.dark-header header .login_btn svg * {
    fill: var(--darkcyan);
}

.home.dark-header header .login_btn {
    color: var(--darkcyan);
}

.home.dark-header header .header-menu .primary_btn {
    background: var(--darkcyan) !important;
    border-color: var(--darkcyan) !important;
}

.single-team header .header-menu ul .menu-item-171 a,
.single-post header .header-menu ul .menu-item-169 a,
header .header-menu ul a:hover,
header .current-menu-item a {
    color: var(--color-primary) !important;
}

.banner-secton {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.banner-secton.inner-secton {
    height: auto;
    aspect-ratio: 4/1.45;

    width: 100%;
}

.banner-secton.inner-secton h1 {
    font-size: var(--font-74);
    color: #fff;
    text-align: left;
}

.banner-secton.inner-secton .wrapper {
    max-width: 60%;
    margin-left: 0;
}

.banner-secton .wrapper {
    max-width: 816px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.banner-secton .wrapper h4 {
    color: var(--color-white);
    font-weight: 300;
}

.banner-secton h1 {
    font-size: var(--font-100);
}

.insights-banner {
    height: 294px !important;
    aspect-ratio: auto !important;
}

.insights-banner .thumbnail {
    transform: none !important;
}

.banner-secton .down-arrow {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    padding: 0 8px;
    font-weight: 400;
    text-transform: uppercase;
    position: absolute;
    letter-spacing: 3px;
    bottom: 50px;
    left: 0;
    right: 0;
    animation: slide-toggle 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate-reverse both;
}

.banner-secton .down-arrow img {
    width: 26px;
    max-height: 24px;
    margin-top: 10px;
}

.thumbnail {
    width: 100%;
    height: 100%;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.5);
}

.simpleParallax {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
}

.splite_block .wrapper {
    padding: 0px 0;
    position: relative;
}

.splite_block .wrapper.green_bg {
    background: url(../images/logo-pattern.svg) no-repeat center / cover !important;
    position: relative;
}

.splite_block .wrapper.green_bg:before {
    background: linear-gradient(0deg, #03171a -0.27%, #0b4d54 73.63%);
    z-index: -1;
}

.splite_block .wrapper.green_bg h2 {
    font-size: 62px;
    color: var(--color-primary) !important;
}

.splite_block .wrapper.green_bg * {
    color: #fff;
}

.splite_block .wrapper:before {
    background: linear-gradient(180deg,
            rgba(200, 150, 77, 0.1) 10%,
            rgba(255, 255, 255, 0.91) 70%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
}

.splite_block .left_col {
    width: 50%;
    z-index: 1;
}

.splite_block .right_col {
    width: 50%;
}

.splite_block .wrapper .column-image {
    left: auto;
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
}

.splite_block .wrapper:nth-child(even) .column-image {
    left: 0;
}

.splite_block .column-content {
    padding-right: 30px;
}

.splite_block .wrapper .column-image .image-item {
    width: 100%;
    height: 100%;
}

.splite_block .wrapper .right_col img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.splite_block .left_col .arrow-link {
    margin-top: 20px;
    text-transform: uppercase;
}

.splite_block .left_col h2 {
    color: var(--darkcyan);
    font-weight: 600;
    margin-bottom: 15px;
}

.splite_block .wrapper:nth-child(even) .column-content {
    margin-left: auto;
    padding-left: 30px;
}

.splite_block .title h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}

.splite_block .title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 23px 40px;
    border-bottom: 1px solid var(--color-primary);
    width: 50%;
}

.splite_block .wrapper:nth-child(even) .title {
    margin-left: auto;
}

.block-guide-section:before {
    content: "";
    background: linear-gradient(0deg, #03171a -0.27%, #0b4d54 73.63%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.block-guide-section {
    background: url(../images/logo-pattern.svg) no-repeat center / cover;
    position: relative;
}

.block-guide-section .title {
    text-align: center;
    margin-bottom: 70px;
}

.block-guide-section .title h4 {
    color: #fff;
    text-transform: initial;
    font-weight: 300;
}

.block-guide-section .column-item p {
    color: #fff;
    margin: 0;
}

.block-guide-section h4 {
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.6px;
}

.block-guide-section .column-item {
    width: 50%;
    text-align: center;
    padding: 0 20px;
}

.block-guide-section .wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}

.block-guide-section .column-item:before {
    content: "";
    height: 1px;
    background: var(--color-primary);
    display: block;
    width: 250px;
    margin: 50px auto;
}

.block-guide-section .column-item:nth-child(1):before,
.block-guide-section .column-item:nth-child(2):before {
    display: none;
}

.footer {
    background: linear-gradient(0deg, #03171a -0.27%, #0b4d54 80%);
    padding: 80px 0 30px;
    position: relative;
    margin-top: auto;
}

footer .footer-left h6 {
    font-weight: 500;
    margin-bottom: 0;
}

footer .footer-left p,
footer .footer-left a {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    margin: 0;
    display: block;
}

footer .footer-left a {
    display: inline-block;
}

footer .footer-left a {
    color: var(--color-primary);
}

footer .footer-left a:hover {
    color: var(--color-white);
}

footer .social p {
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 5px;
}

footer .social {
    margin-top: 25px;
}

footer .social a img {
    width: 100%;
}

footer .social a {
    width: 24px;
    display: flex;
}

footer .bg-img {
    width: 450px;
    position: absolute;
    bottom: 50px;
    right: 80px;
    left: auto;
    object-fit: contain;
    max-width: 100%;
    z-index: 0;
}

footer .wrapper h2 {
    font-size: 70px;
    margin-bottom: 20px;
}

footer .wrapper .footer-right {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

footer .wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

footer .footer-bottom p {
    font-size: 14px;
    color: #fff;
    max-width: 690px;
}

footer .bottom-text a {
    font-size: 14px;
    color: #fff;
    padding: 0 11px;
    border-right: 1.5px solid #c8964d;
    line-height: 14px;
    display: flex;
}

footer .bottom-text a:hover {
    color: var(--color-primary);
}

footer .menu {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

footer .menu li.menu-item:nth-last-child(1) a {
    padding-right: 0;
    border-right: 0;
}

footer .bottom-text p {
    margin-right: 30px;
    display: block;
    margin-bottom: 0;
    font-size: 14px;
}

footer .bottom-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.content_block h2 {
    font-size: 62px;
    color: var(--darkcyan);
}

.content_block .left_col {
    width: 50%;
}

.content_block .right_col {
    width: 50%;
}

.content_block p {
    font-size: 22px;
    font-weight: 300;
    line-height: 32px;
}

/*indipendent_block*/
.indipendent_block {
    position: relative;
    overflow: hidden;
}

.indipendent_block .title {
    margin-bottom: 80px;
}

.indipendent_block .container {
    position: relative;
    z-index: 1;
}

.indipendent_block .item h5 {
    font-weight: 600;
}

.indipendent_block .item {
    background: rgb(0 0 0 / 40%);
    height: auto;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(25% - 4px);
    padding: 0 5px;
    text-align: center;
    margin: 2px;
    letter-spacing: 0.6px;
}

.indipendent_block .item:nth-child(8n),
.indipendent_block .item:nth-child(8n - 2),
.indipendent_block .item:nth-child(8n - 5),
.indipendent_block .item:nth-child(8n - 7) {
    background: rgb(0 0 0 / 50%);
}

.services_block .item {
    background: rgb(0 0 0 / 40%) !important;
}

.services_block .item:nth-child(6n),
.services_block .item:nth-child(6n - 4),
.services_block .item:nth-child(6n - 2) {
    background: rgb(0 0 0 / 50%) !important;
}

.insight-list .wrapper .column-item {
    animation: none !important;
    opacity: 1;
}

.insight-list .wrapper .column-item p {
    display: none;
}

.insight-single .wrapper span {
    color: var(--color-primary);
}

.services_block .item img {
    width: 100px;
    height: 100px;
    max-height: 100px;
    max-width: 100px;
    margin-bottom: 40px;
}

.services_block .item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(33% - 10px);
}

.wealth_block {
    padding: 80px 0;
    background: url(../images/backgound-1.svg) repeat left / cover;
    position: relative;
}

.wealth_block .column-image {
    width: 100%;
    max-width: 540px;
    width: 100%;
    margin-left: auto;
}

.wealth_block .column-image img {
    width: 100%;
}

.wealth_block h2 {
    color: #0b4d54;
    font-size: 60px;
}

.wealth_block .column-content p {
    font-weight: 400;
    line-height: 26px;
}

.wealth_block .column-content strong {
    font-weight: 700;
    color: #0b4d54;
}

.wealth_block h5 {
    color: #0b4d54;
    font-size: var(--font-18);
    font-weight: 600;
    margin-bottom: 2px;
}

.wealth_block h6 {
    color: var(--color-black);
    margin-bottom: 18px;
    font-weight: 400;
    font-size: var(--font-16);
}

.wealth_block .updates {
    margin-top: 20px;
    max-width: 590px;
}

.wealth_block .updates h4:after {
    content: "";
    background: var(--color-primary);
    width: 100%;
    height: 1px;
    display: block;
    top: -8px;
    position: relative;
}

.wealth_block .updates h4 {
    display: flex;
    align-items: flex-end;
    white-space: nowrap;
    gap: 20px;
    margin: 40px 0 30px;
    font-size: 30px;
    font-weight: 600;
}

.block-team-section .img:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    transform: translate(-50%, -50%);
}

.block-team-section a:hover .img:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
}

.block-team-section .img {
    width: 330px;
    height: 330px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    padding: 10px;
    position: relative;
}

.block-team-section .title p {
    font-size: var(--font-26);
    text-align: center;
    font-weight: 300;
}

.block-team-section .title {
    max-width: 1140px;
    margin: 0 auto 70px;
}

.block-team-section .wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    max-width: 760px;
    margin: 0 auto;
}

.block-team-section .wrapper .item {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 70px;
}

.block-team-section .wrapper .item a {
    display: block;
    text-align: center;
}

.block-team-section .wrapper .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-team-section .name span {
    font-size: 16px;
    color: var(--color-primary);
}

.block-team-section .name h6 {
    color: #000;
    font-weight: 400;
}

.block-team-section .name h5 {
    color: var(--darkcyan);
    font-weight: 500;
}

.trusted_resource {
    padding: 80px 0;
    background-image: linear-gradient(0deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(200, 150, 77, 0.15) 100%);
}

.trusted_resource .item-column {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.trusted_resource .item-column .img {
    width: 50%;
}

.trusted_resource .item-column .img img {
    width: auto;
    max-height: 115px;
    max-width: 253px;
}

.trusted_resource .item-column .text-content {
    width: 50%;
    padding-left: 30px;
}

.trusted_resource .title {
    margin-bottom: 70px;
    max-width: 1040px;
}

.trusted_resource .title p {
    font-weight: 300;
    font-size: 22px;
}

.trusted_resource .item-column {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.trusted_resource .item-column .text-content a {
    color: var(--darkcyan);
    font-weight: 600;
    font-size: 16px;
    text-decoration: underline var(--darkcyan);
    margin-top: 30px;
    display: block;
    text-transform: uppercase;
}

.trusted_resource .title h2 {
    color: var(--darkcyan);
}

.trusted_resource .item-column:nth-last-child(1) {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.trusted_resource .item-column .text-content h6 {
    font-weight: 400;
    color: var(--color-black);
    font-size: 14px;
    line-height: 20px;
}

.team-single .text-content .arrow-link img {
    transform: rotate(-270deg);
    margin-right: 8px;
    margin-left: 0;
}

.team-single .head-wrap .img {
    width: 330px;
    height: 330px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid transparent;
    outline: 1px solid var(--color-primary);
    margin-bottom: -120px;
    margin-top: 35px;
}

.team-single .head-wrap .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-single .head-wrap h1 {
    font-size: 42px;
    font-weight: 500;
}

.team-single .head-wrap h4 {
    color: var(--color-white);
}

.team-single .head-wrap ul a {
    display: flex;
    width: 32px;
    max-height: 22px;
    margin-right: 5px;
}

.team-single .head-wrap ul a img {
    width: 100%;
}

.team-single .head-wrap ul li {
    list-style: none;
}

.team-single .head-wrap ul {
    margin: 15px 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.team-single .head-wrap {
    display: flex;
    align-items: end;
    position: relative;
    padding: 30px 0;
}

.team-single .left_col {
    margin-right: 0;
    width: 330px;
}

.team-single .text-content,
.team-single .right_col {
    width: calc(100% - 430px);
    margin-left: auto;
    max-width: 100%;
    padding-left: 0;
}

.team-single .head-wrap .row {
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

.team-single .right_col {
    padding-top: 90px;
}

.team-single .text-content {
    padding: 80px 0;
}

.team-single .text-content p {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 25px;
}

.team-single .text-content .arrow-link {
    color: var(--color-primary);
    margin-top: 15px;
}

.team-single .text-content a {
    color: var(--color-primary);
}

.team-single .text-content a:hover {
    color: var(--darkcyan);
}

.insight-list .wrapper {
    display: flex;
    flex-wrap: wrap;
}

.insight-list .wrapper .column-item {
    width: calc(33.33% - 22px);
    margin: 11px;
}

.insight-list .wrapper .column-item a {
    display: block;
    position: relative;
}

.insight-list .wrapper .column-item a .icons {
    max-width: 100px;
    max-height: 100px;
    position: absolute;
    bottom: 20px;
    right: 0;
}

.insight-list .img-column {
    display: flex;
    width: 100%;
    position: relative;
}

.insight-list .wrapper .column-item a img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/2.3;
}

.insight-list .title {
    padding: 15px 20px 15px;
}

.insight-list h4 {
    color: var(--darkcyan);
    font-weight: 500;
}

.insight-list h6 {
    margin: 0;
}

.insight-single {
    padding: 80px 0;
    background-image: linear-gradient(0deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(200, 150, 77, 0.2) 100%);
}

.page-content h1.wp-block-heading,
.page-content h2.wp-block-heading,
.page-content h3.wp-block-heading,
.page-content h4.wp-block-heading,
.page-content h5.wp-block-heading,
.page-content h6.wp-block-heading {
    margin-bottom: 15px;
    color: var(--darkcyan);
    line-height: 110%;
    font-weight: 500;
}

.page-content p {
    margin-bottom: 25px;
}

.page-content p strong {
    color: var(--darkcyan);
    font-weight: 400;
}

.page-content a {
    color: var(--color-primary);
}

.page-content ol.wp-block-list,
.page-content ul.wp-block-list {
    padding-left: 20px;
    margin-bottom: 25px;
}

.page-content h1 {
    font-size: 50px;
    color: var(--darkcyan);
}

.page-content h3.wp-block-heading {
    font-size: 30px;
}

.page-content h4.wp-block-heading {
    font-weight: 400;
}

.page-content pre.wp-block-verse {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--primary-font);
    padding-top: 15px;
    padding-bottom: 15px;
}

.insight-single .wrapper {
    width: 830px;
    max-width: 100%;
    margin: 0 auto;
}

.insight-single figure.wp-block-image img {
    width: 100%;
}

.insight-single figure.wp-block-image {
    margin: 30px 0;
}

.insight-single .arrow-link {
    color: var(--color-primary);
}

.insight-single .arrow-link img {
    transform: rotate(-270deg);
    margin-right: 8px;
    margin-left: 0;
}

.insight-single .social-links {
    display: flex;
    list-style: none;
    margin-bottom: 30px;
}

.insight-single .social-links a {
    display: inline-flex;
    margin-right: 30px;
    font-size: 14px !important;
    white-space: nowrap;
}

.insight-single .social-links a img {
    width: 22px;
    height: 20px;
    margin-left: 10px;
}

.contact-page {
    background-image: linear-gradient(0deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(200, 150, 77, 0.2) 100%);
}

.contact-page h2 {
    font-size: 50px;
    color: var(--darkcyan);
}

.contact-page .title {
    text-align: center;
    margin-bottom: 40px;
}

.contact-page ul li a,
.contact-page .contact-details ul li {
    font-size: 22px;
    color: var(--darkcyan);
    font-weight: 700;
    list-style: none;
}

.contact-page ul li a {
    font-weight: 400;
}

.contact-page ul li a:hover {
    color: #c8964d;
}

.contact-page .gform_confirmation_wrapper {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 6px;
}

.contact-page ul {
    padding: 0;
    margin: 0 0 25px;
}

.conatct-form textarea,
.conatct-form input {
    font-size: 16px !important;
    color: var(--color-black);
    height: 58px;
    border: 1px solid var(--color-primary);
    outline: 0 !important;
    padding: 10px 20px !important;
}

.conatct-form textarea::placeholder,
.conatct-form input::placeholder {
    color: var(--color-black);
}

.conatct-form textarea {
    height: 208px !important;
    resize: none;
}

.conatct-form .gform_wrapper.gravity-theme * {
    gap: 0 !important;
}

.conatct-form .gform_wrapper.gravity-theme .gfield {
    margin-top: 10px;
    position: relative;
}

.conatct-form p.reduired {
    font-size: 16px !important;
    margin: 0;
    position: absolute;
    right: 0;
    font-weight: 300;
}

.conatct-form .gform-footer.gform_footer.top_label {
    padding-top: 5px;
    margin-top: 0;
}

.conatct-form input[type="submit"] {
    background: var(--darkcyan);
    border-color: var(--darkcyan);
    color: var(--color-primary);
    font-size: 18px !important;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    min-width: 188px;
    transition: all 0.5s ease-in-out;
}

.conatct-form input[type="submit"]:hover {
    background: transparent;
}

.contact-details {
    padding-top: 20px;
    height: 100%;
}

.contact-page .map-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 20px;
    overflow: hidden;
    min-height: calc(100% - 195px);
}

.contact-page .map-wrapper iframe {
    border: 1px solid var(--color-primary) !important;
    width: 66%;
    padding: 2px;
    height: auto;
}

.contact-page .map-wrapper img {
    width: 36%;
    padding-left: 0;
    height: auto;
    object-fit: cover;
}

.modal {
    background: rgb(0 0 0 / 0.3);
}

.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: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: url(../images/icon-close.svg) no-repeat center / 21px !important;
}

.modal .modal-dialog button.btn-close {
    border: 1px solid var(--color-primary);
    cursor: pointer;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 50%;
    opacity: 1;
    background: url(../images/close.svg) no-repeat 50% / 16px;
}

.modal .modal-body .row {
    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% - 00px);
    min-height: 280px;
    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-body .row .view_row:nth-child(odd):after {
    border-right: 1px solid var(--color-primary);
    content: "";
    top: 0;
    bottom: 0;
    display: inline-block;
    position: absolute;
    height: 100%;
    width: 1px;
    right: -15px;
} */

.modal .modal-dialog .img {
    width: 220px;
    margin: 0 auto 40px;
    max-width: 100%;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body .view_row .primary_btn {
    background-color: #f9f5ed;
    color: var(--color-primary);
}

.modal-body .view_row .primary_btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.modal .modal-dialog .img img {
    max-height: 90px;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 100%;
}

.modal .modal-header .btn-close {
    padding: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background: transparent;
}

.modal .modal-body .row .view_row:after {
    border-right: 1px solid var(--color-primary);
    content: "";
    top: 0;
    bottom: 0;
    display: inline-block;
    position: absolute;
    height: 100%;
    width: 1px;
    right: 0px;
}
.modal .modal-body .row .view_row:nth-child(3n):after,
.modal .modal-body .row .view_row:nth-last-child(1):after {
    border: 0;
}

.modal-dialog-scrollable .modal-body {
    overflow: auto;
    scrollbar-width: none;
}

.insight_video .modal-dialog-scrollable .modal-body {
    padding: 0;
}

.insight_video .modal-dialog-scrollable .modal-body .video-sec {
    width: 100%;
    padding: 0;
    display: flex;
}

.insight_video .modal-dialog-scrollable .modal-body .video-sec iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 4/2.2;
    display: flex;
}

.insight_video .modal-body .row {
    padding: 0;
    margin: 0;
}

.insight_video .modal-dialog .modal-content {
    background: transparent;
    border-radius: 0;
    padding-top: 50px;
    border: 0;
}

.insight_video .modal-dialog .modal-header {
    top: 0;
    right: 0;
}

.mobile-img {
    display: none;
}

.archive-search,
.block-404 {
    padding: 100px 0;
}

.archive-search .item-post {
    border: 1px solid var(--color-primary);
    display: block;
    padding: 10px 20px;
    width: calc(33.33% - 10px);
    margin: 5px;
}

.archive-search .listing-posts {
    display: inline-flex;
    flex-wrap: wrap;
    margin-left: -3px;
    margin-right: -3px;
}

.archive-search .item-post:hover * {
    color: #fff;
}

.archive-search .item-post:hover {
    background: var(--color-primary);
}

.archive-search .item-post * {
    transition: all 0.3s ease-in-out;
}

.page-id-25 div#page {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
}

.page-id-25 div#page>* {
    width: 100%;
}

.indipendent_block h2,
.trusted_resource h2 {
    font-size: 62px;
}

.content_block p a {
    color: #0b4d54;
}

ol li a,
ul li a,
p a {
    color: #0b4d54;
}

.trusted_resource .item-column .text-content p a {
    display: inline-block;
}

.trusted_resource .item-column .text-content p a:hover {
    color: var(--color-primary);
    text-decoration: underline var(--color-primary);
}

.splite_block .left_col p a {
    color: #0b4d54;
}

.splite_block .left_col p a:hover {
    color: var(--color-primary);
}

.splite_block .wrapper.green_bg p a {
    color: var(--color-primary) !important;
}

.splite_block .wrapper.green_bg p a:hover {
    color: #fff !important;
}

.wp-block-embed__wrapper iframe {
    width: 100%;
    aspect-ratio: 1/0.56;
    height: 100%;
}

.page-content p a:hover {
    color: #0b4d54;
    text-decoration: underline;
}

.services_block .title .right_col p {
    max-width: 540px;
}

.insights-banner .thumbnail img {
    transform: scale(1);
    object-position: bottom !important;
    margin-top: 0 !important;
}

.image_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.image_block .wrapper {
    width: 50%;
    display: inline-block;
}

.image_block .wrapper .container {
    padding: 0;
}

.image_block .wrapper .container .row {
    margin: 0;
}

.image_block .wrapper .container .right_col {
    padding-top: 30px;
    padding-bottom: 30px;
}

.image_block .wrapper .container .right_col .image-item img {
    width: 100%;
    object-fit: cover;
    max-height: 779px;
    aspect-ratio: 1/1;
}

.image_block .wrapper:nth-child(odd) .right_col {
    padding-left: 0;
}

.image_block .wrapper:nth-child(even) .right_col {
    padding-right: 0;
}

@media (min-width: 1440px) {
  

    .team-single .head-wrap {
        aspect-ratio: 4 / 0.9;
        align-items: end;
    }
}

@media (max-width: 1210px) {
    .banner-secton.inner-secton .wrapper {
        max-width: 100%;
    }
}

@media (max-width: 1199px) {
    :root {
        --font-100: 74px;
        --font-74: 64px;
        --font-62: 42px;
        --font-58: 42px;
        --font-22: 20px;
        --header-height: 114px;
    }

    .team-single .head-wrap .img {
        width: 250px;
        height: 250px;
        margin-bottom: -100px;
    }

    .team-single .text-content,
    .team-single .right_col {
        width: calc(100% - 300px);
    }

    .banner-secton.inner-secton .wrapper {
        max-width: 60%;
    }

    .team-single .left_col {
        width: 270px;
    }

    .team-single .head-wrap h1 {
        font-size: 36px;
    }

    .team-single .head-wrap ul {
        margin: 15px 0 0;
    }

    .team-single .right_col {
        padding-top: 70px;
    }

    .team-single .text-content {
        padding: 60px 0;
    }

    .banner-secton.inner-secton {
        padding: 120px 0;
    }

    .block-team-section .img {
        width: 280px;
        height: 280px;
    }

    .block-team-section .wrapper {
        max-width: 700px;
    }

    .splite_block .left_col .arrow-link {
        margin-top: 30px;
    }

    .splite_block .column-content {
        max-width: 100%;
    }

    .splite_block .title {
        padding-left: 20px;
    }

    .block-guide-section .column-item:before {
        width: 100%;
        margin: 30px auto;
    }

    .block-guide-section .column-item {
        padding: 0 60px;
    }

    .block-guide-section .title {
        margin-bottom: 50px;
    }

    .indipendent_block .title {
        margin-bottom: 60px;
    }

    footer .wrapper h2 {
        font-size: var(--font-58);
    }

    .contact-page h2 {
        font-size: var(--font-58);
    }

    .wealth_block h2 {
        font-size: var(--font-58);
    }

    .content_block h2 {
        font-size: var(--font-58);
    }

    .content_block p {
        font-size: var(--font-22);
    }

    .splite_block .title {
        padding: 23px 20px;
    }

    br {
        display: none;
    }

    .content_block h2 {
        max-width: 440px;
    }
    .indipendent_block .item h5 br {
        display: block;
    }
    .indipendent_block h2,
    .trusted_resource h2 {
        font-size: 50px;
    }
}

@media (max-width: 991px) {

    .indipendent_block h2,
    .trusted_resource h2 {
        font-size: 40px;
    }

    :root {
        /* Font Sizes */

        /* 
    --font-42: 42px;
     */
        --font-100: 64px;
        --font-74: 64px;
        --font-62: 36px;
        --font-58: 36px;
        --font-26: 22px;
        --font-22: 20px;
        --header-height: 114px;
    }

    .page-content h1 {
        font-size: var(--font-58);
    }

    .banner-secton.inner-secton h1 {
        max-width: 640px;
    }

    .banner-secton.inner-secton .wrapper {
        max-width: 100%;
    }

    .block-setting-padding {
        padding-top: calc(var(--block-padding-top) / 2.5);
        padding-bottom: calc(var(--block-padding-bottom) / 2.5);
    }

    .home header .header-menu ul * {
        color: var(--color-black);
        padding: 0;
        margin: 0;
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 9px;
    }

    header .header-menu {
        flex-direction: column;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: auto;
        background: #fff;
        padding: 100px 20px 20px;
        transition: all 0.5s ease-in-out;
        transform: translateX(100%);
    }

    header .header-menu .menu-header-menu-container {
        width: 100%;
    }

    header .header-menu .header-btn {
        width: 100%;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    header .header-menu ul {
        position: static;
        flex-direction: column;
        transform: none;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 30px;
    }

    header .login_btn {
        padding: 0;
        margin-left: 30px;
    }

    .team-single .head-wrap .img {
        width: 200px;
        height: 200px;
        margin-bottom: -80px;
        margin-top: 40px;
    }

    .team-single .left_col {
        width: 230px;
    }

    .team-single .right_col {
        width: calc(100% - 250px);
        padding-top: 60px;
    }

    .team-single .head-wrap h1 {
        font-size: 32px;
    }

    .team-single .text-content {
        width: 100%;
        margin-top: 30px;
    }

    .trusted_resource .item-column .img {
        width: 35%;
    }

    .trusted_resource .item-column .text-content {
        width: 65%;
    }

    .banner-secton.inner-secton {
        padding: 40px 0;
    }

    .block-team-section .img {
        width: 260px;
        height: 260px;
    }

    .block-team-section .wrapper {
        max-width: 640px;
    }


    .splite_block .column-content {
        padding: 40px 0 0;
    }

    .splite_block .wrapper:nth-child(even) .column-content {
        margin-left: auto;
        padding-left: 0;
    }

    .block-guide-section .column-item {
        padding: 0 20px;
    }

    .indipendent_block .title {
        margin-bottom: 40px;
    }

    .indipendent_block .item {
        width: calc(33.33% - 4px);
        padding: 30px 20px;
    }

    .indipendent_block .wrapper {
        justify-content: center;
    }

    .banner-secton.inner-secton .wrapper {
        max-width: 100%;
    }

    .contact-page .title {
        margin-bottom: 20px;
    }

    .wealth_block .column-image {
        margin: 40px auto 0;
    }

    .wealth_block .updates {
        max-width: 100%;
    }

    .content_block .left_col {
        width: 100%;
    }

    .content_block .right_col {
        width: 100%;
    }

    header .logo a {
        width: 140px;
        height: 50px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .insight-list .wrapper .column-item {
        width: calc(50% - 22px);
    }

    header button.navbar-toggler {
        display: -webkit-inline-flex;
        display: inline-flex !important;
        -webkit-flex-direction: column;
        flex-direction: column;
        background: transparent;
        outline: 0 !important;
        border: 0 !important;
        box-shadow: none !important;
        z-index: 2;
    }

    body.show_menu span.navbar-toggler-icon:nth-child(1) {
        transform: rotate(-45deg);
        top: 5px;
    }

    header button.navbar-toggler span.navbar-toggler-icon {
        background: var(--color-primary);
        height: 2px;
        margin: 3px 0;
        width: 32px;
        position: relative;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
        transform: translate3d(0, 0px, 0) rotate(0deg);
    }

    body.show_menu span.navbar-toggler-icon:nth-child(2) {
        transform: rotate(45deg);
        top: -4px;
    }

    body.show_menu span.navbar-toggler-icon:nth-child(3) {
        opacity: 0;
    }

    .show_menu .header-menu {
        transform: translateX(0%);
    }

    header .header-menu ul li {
        margin: 0;
        padding: 0;
    }

    .header-menu ul a {
        padding: 0;
        margin: 8px 0 !important;
        display: flex;
    }

    .logo {
        position: relative;
        z-index: 3;
    }

    .header_space {
        height: 90px;
    }

    .show_menu {
        overflow: hidden;
    }

    .show_menu header .logo a img {
        opacity: 1 !important;
    }

    .show_menu header .logo a img.header-white-icon {
        opacity: 0 !important;
    }

    .services_block .item img {
        width: 90px;
        height: 90px;
        max-height: 90px;
        max-width: 90px;
        margin-bottom: 30px;
    }

    .content_block .left_col {
        margin-bottom: 20px;
    }

    .contact-page {
        margin-top: 70px;
    }
    .modal .modal-body .row .view_row{
            max-width: calc(50% - 0px);
    }
    .modal .modal-body .row .view_row:nth-child(3n):after {
           border-right: 1px solid var(--color-primary);
    }
    .modal .modal-body .row .view_row:nth-child(even):after, .modal .modal-body .row .view_row:nth-last-child(1):after {
        border: 0;
    }
    .modal .modal-dialog
    {
        width: 880px;
    }
}

@media (max-width: 767px) {
    :root {
        /* Font Sizes */

        /* --font-100: 100px;
    --font-62: 62px;
    --font-58: 58px;
    --font-42: 42px;
    --font-26: 26px; */
        --font-100: 42px;
        --font-74: 42px;
        --font-26: 22px;
        --font-22: 20px;
        --header-height: 114px;
    }

    .splite_block .wrapper.green_bg h2 {
        font-size: 42px;
    }

    .indipendent_block .item h5 br {
        display: block;
    }

    .block-setting-padding {
        padding-top: calc(var(--block-padding-top) / 2);
        padding-bottom: calc(var(--block-padding-bottom) / 2);
    }

    .banner-secton .down-arrow {
        bottom: 40px;
    }

    .banner-secton.inner-secton h1 {
        max-width: 440px;
    }

    .banner-secton:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #000000;
        left: 0;
        top: 0;
        z-index: 0;
        opacity: 0.2;
    }

    .banner-secton .thumbnail img {
        margin-top: -6px;
        object-position: 90%;
    }

    .team-single .right_col {
        width: 100%;
        padding-top: 30px;
    }

    .team-single .head-wrap .img {
        width: 200px;
        height: 200px;
        margin-bottom: -10px;
        margin-top: 0;
    }

    .team-single .text-content {
        width: 100%;
        margin-top: 0;
        padding: 40px 0;
    }

    .trusted_resource .item-column .text-content {
        width: 100%;
        padding: 0;
    }

    .trusted_resource .item-column .img {
        width: 50%;
        margin-bottom: 20px;
    }

    .banner-secton.inner-secton {
        height: auto;
        min-height: auto;
        aspect-ratio: 4/3;
    }

    .block-team-section .img {
        width: 220px;
        height: 220px;
    }

    .splite_block .left_col {
        width: 100%;
        padding: 40px 15px 30px;
    }

    .splite_block .right_col {
        width: 100%;
        position: relative;
        z-index: 1;
        margin-bottom: 30px;
    }

    .splite_block .wrapper .column-image {
        position: static;
    }

    .splite_block .wrapper .column-image {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .splite_block .column-content {
        max-width: 100%;
        padding: 0px 00px 0;
    }

    .splite_block .title {
        position: relative;
        width: calc(100% + 30px);
        padding: 20px 20px;
        margin-bottom: 30px;
        margin-left: -15px;
    }

    .splite_block .wrapper:nth-child(even) .title {
        margin-left: -15px;
    }

    .splite_block .wrapper:nth-child(even) .row {
        flex-direction: column-reverse;
    }

    .indipendent_block .item {
        width: calc(50% - 4px);
    }

    .content_block .left_col {
        width: 100%;
        margin-bottom: 20px;
    }

    .content_block .right_col {
        width: 100%;
    }

    .mobile-img {
        display: block !important;
    }

    .banner-secton .thumbnail img {
        display: none;
    }

    .insight-list .wrapper .column-item {
        width: calc(50% - 12px);
        margin: 6px;
    }

    .menu-footer-menu-container {
        margin-top: 0px;
    }

    footer .bottom-text p {
        line-height: 25px;
    }

    footer .bottom-text {
        text-align: center;
        justify-content: center;
    }

    footer .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    footer .bottom-text p {
        margin-right: 0;
    }

    footer .bg-img {
        margin: 0 auto;
        left: 0;
        right: 0;
        max-width: 80%;
    }

    .archive-search .listing-posts .item-post {
        width: calc(50% - 10px);
    }

    .archive-search,
    .block-404 {
        padding: 60px 0;
    }



    .modal .modal-dialog .img {
        width: 180px;
        margin: 0 auto 20px;
    }

    .image_block {
        flex-direction: column;
    }

    .image_block .wrapper {
        width: 100%;
        padding: 15px;
    }

    .image_block .wrapper:nth-child(odd) .right_col,
    .image_block .wrapper:nth-child(even) .right_col {
        padding: 0;
    }

    .image_block .wrapper .container .right_col {
        padding-top: 0px;
        padding-bottom: 0px;
    }
}

@media (max-width: 575px) {
    .contact-page .map-wrapper {
        flex-wrap: wrap;
    }

    .block-team-section .wrapper .item {
        width: 100%;
        margin-bottom: 50px;
    }

    .block-guide-section .column-item {
        width: 100%;
    }

    .splite_block .title {
        padding: 23px 20px;
    }

    .indipendent_block .item {
        width: calc(100% - 0px);
        padding: 40px 15px;
        aspect-ratio: auto;
    }

    .block-guide-section .column-item:nth-child(2):before {
        display: block;
    }

    footer .wrapper h2 {
        font-size: var(--font-58);
        margin-bottom: 20px;
    }

    footer .wrapper {
        margin-bottom: 30px;
        flex-direction: column-reverse;
    }

    .footer-left {
        width: 100%;
        text-align: center;
    }

    footer .wrapper .footer-right {
        width: 100%;
        padding: 0;
        margin-bottom: 40px;
    }

    footer .social a {
        margin: 0 auto;
    }

    .footer {
        padding: 40px 0 30px;
    }

    .contact-page .map-wrapper iframe,
    .contact-page .map-wrapper img {
        width: 100%;
        aspect-ratio: 4/3;
        height: auto;
        margin-bottom: 20px;
        padding: 0 !important;
    }

    .insight-list .wrapper .column-item {
        width: 100%;
        margin: 0 0 20px;
    }

    .archive-search .listing-posts .item-post {
        width: 100%;
    }

    .modal .modal-dialog .img {
        width: 200px;
    }

    .modal .modal-body .row .view_row {
        width: 100%;
        max-width: 100%;
        border-bottom: 1px solid var(--color-primary);
        margin: 0px 0;
    }

    .modal .modal-body .row .view_row:nth-child(odd):after {
        opacity: 0;
    }

    .modal .modal-body .row .view_row:nth-last-child(1) {
        border-bottom: 0;
        padding-bottom: 0;
    }
}

@media only screen and (max-height: 575.98px) and (orientation: landscape) {
    header .header-menu ul {
        margin-bottom: 10px;
    }

    .home header .header-menu ul * {
        font-size: 16px;
        line-height: 22px;
    }

    .home header .header-menu ul li {
        margin-bottom: 0;
        margin-top: 0;
    }

    .show_menu .header-menu {
        padding-top: 85px;
    }

    .home header .header-menu ul li a {
        margin-bottom: 5px !important;
    }

    .modal .modal-body .row .view_row {
        min-height: 200px;
    }

    .modal .modal-dialog {
        margin: 25px auto;
    }

    .modal .modal-body .row {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .banner-secton.inner-secton {
        aspect-ratio: 4 / 1.45;
    }

    .team-single .right_col {
        width: calc(100% - 250px);
    }

    .team-single .head-wrap .img {
        margin-bottom: 0;
    }
}

@media (max-width: 640px) {
    .gform_wrapper.gravity-theme .ginput_complex span {
        margin: 10px 0 0 !important;
    }
}