@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@font-face {
    font-family: "Helveticaneu";
    src: url(../fonts/helvatica/HelveticaNeue.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "Helveticaneu";
    src: url(../fonts/helvatica/HelveticaNeue\ Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: "Helveticaneu";
    src: url(../fonts/helvatica/HelveticaNeueBold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: "Helvetica";
    src: url(../fonts/helvatica/Helvetica.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "Helvetica";
    src: url(../fonts/helvatica/Helvetica-Bold.ttf);
    font-weight: 700;
}

.font-helvetica {
    font-family: "Helvetica";
}

.font-helveticaneue {
    font-family: "Helveticaneu";
}

:root {
    --primary: #274d5d;
    --secondary: #85b8af;
    --parot: #04cfab;
    --light: #e4e4e4;
    --light2: #e5e9eb;
    --dark: #001019;
    --white: #ffffff;
    --black: #000000;
    --font-helneue: "Helveticaneu";
    --font-hel: "Helvetica";
    --font-lato: "Lato", sans-serif;
    --gray: #b2b0ab;
    --hrBorder: 1px solid #b2b0ab;
    --bdrGreen: 2px solid #85b8af;
    --bdrparot: 2px solid var(--parot);
    --footer-clr: rgba(255, 255, 255, 0.45);
    --trans: 0.4s all ease;
}


/* Global smooth font rendering */

* {
    box-sizing: border-box;
    font-kerning: normal;
}

body {
    font-family: "Lato", sans-serif;
    padding: 0;
    margin: 0;
    color: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html,
body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
a {
    margin: 0;
    padding: 0;
}

ul {
    padding-left: 16px;
}

h1,
.h1-style {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 700;
}

h2,
.h2-style {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2992;
}

h3,
.h3-style {
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: 0.02em;
}

h4 {
    font-size: 22px;
    font-weight: 600;
}

p {
    font-size: 18px;
    line-height: 1.25;
}

img {
    width: 100%;
    height: auto;
}

b,
strong {
    font-weight: 700;
}

h1 span,
h2 span {
    color: var(--secondary);
}

.btn-style a,
.site-btn {
    font-family: "Helveticaneu";
    display: inline-block;
    border: 1px solid var(--primary);
    border-radius: 50px;
    text-decoration: none;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    padding: 22px 34px;
    text-align: center;
    z-index: 1;
    position: relative;
    overflow: hidden;
    transition: 0.3s all ease;
}

.site-btn.with-icon {
    padding: 22px 28px;
}

.site-btn .btn-icon {
    transition: 0.3s all ease;
    transform: scale(1);
}

.site-btn .btn-icon.start {
    transform: scale(0);
    width: 0;
    height: 0;
}

.site-btn:hover .btn-icon.start {
    transform: scale(1);
    transition: 0.3s all ease;
    width: 11px;
    height: auto;
}

.site-btn:hover .btn-icon.end {
    transform: scale(0);
    transition: 0.3s all ease;
    width: 0;
    height: 0;
}

.btn-style:hover a,
.site-btn:hover {
    transition: 0.3s all ease;
    color: var(--white);
    border-color: var(--secondary);
}

.btn-style a::before,
.site-btn::before {
    content: "";
    background-color: var(--secondary);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.btn-style:hover a::before,
.site-btn:hover::before {
    right: 0;
    transform-origin: left;
    transform: scaleX(1);
}

.site-btn.outline {
    background: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.site-btn.outline-white {
    border-color: var(--white);
    background: transparent;
    color: var(--white);
}

.site-btn.outline svg path {
    stroke: var(--secondary);
}

.site-btn.outline-white svg path {
    stroke-width: var(--white);
}

.site-btn.outline::before {
    background: var(--secondary);
}

.site-btn.outline-white::before {
    background: var(--white);
}

.site-btn.grey {
    background: var(--light);
    border-color: var(--white);
    color: var(--black);
}

.site-btn.white:hover,
.site-btn.outline:hover {
    color: var(--white);
}

.site-btn.outline-white:hover {
    color: var(--secondary);
}

.site-btn.outline:hover svg path {
    stroke: var(--white);
}

.site-btn.outline-white:hover svg path {
    stroke: var(--secondary);
}

.site-btn.white::before {
    background-color: var(--secondary);
}

.site-btn.btn-icon-end svg.end {
    margin-left: 30px;
}

.container-fluid {
    max-width: 2560px;
}

@media (min-width: 1200px) {
    .container-fluid {
        padding: 0 24px;
    }
}

@media (min-width: 1440px) {
    .container-fluid {
        padding: 0 68px;
    }
}


/* Header */

header {
    margin-bottom: 18px;
    transition: 0.3s all ease;
}

header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #707070;
    width: 100%;
    transition: 0.3s all ease;
}

@media (min-width: 992px) {
    .navbar-collapse {
        transition: 0.3s all ease;
        justify-content: center;
        align-self: flex-end;
    }
}

header .logo {
    max-width: 200px;
    transition: 0.3s all ease;
}

header .btn-wrap {
    display: flex;
    gap: 8px;
}

.dropdown-toggle::after {
    border: none;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="19.672" height="11.25" viewBox="0 0 19.672 11.25"><path id="Path_357" data-name="Path 357" d="M22.7,133.335l-9.129,9.129-9.129-9.129" transform="translate(-3.734 -132.628)" fill="none" stroke="%2385b8af" stroke-miterlimit="10" stroke-width="2"/></svg>');
    width: 20px;
    height: 11px;
    margin-left: 0.7em;
    vertical-align: 0;
}

header .navbar-nav .nav-link {
    font-size: 23px;
    font-family: "Helveticaneu";
    font-weight: 400;
    color: var(--black);
    position: relative;
    transition: 0.3s all ease;
    padding: 40px 0 55px;
}

header .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    border-radius: 10px;
    top: 80px;
    left: -24%;
    right: 0;
    margin: auto;
    background: var(--secondary);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    transform: scale(0) translateY(10px);
    transition: 0.3s all ease;
}

header .navbar-nav .nav-item:hover .nav-link::before,
header .navbar-nav .nav-item.active>.nav-link::before {
    transition: 0.3s all ease;
    transform: scaleX(1) translateY(0px);
}

header .navbar-nav .nav-item.current-menu-item>.nav-link {
    color: var(--primary);
    font-weight: 600;
}

header .menu-item-has-children {
    position: relative;
    z-index: 2;
}

header .sub-menu {
    z-index: 10;
    transition: 0.5s all ease;
    background-color: #E5E9EB;
    min-width: 331px;
    padding: 15px;
    list-style: none;
}

@media (min-width: 992px) {
    header .sub-menu {
        display: none;
    }
}


/* header .menu-item-has-children:hover .sub-menu {
    display: block;
    transition: 0.5s all ease;
} */

header .sub-menu .nav-link {
    padding: 3px 0;
}

header .sub-menu li:hover .nav-link {
    color: var(--primary);
    transition: 0.3s all ease;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.8);
    transition: 0.3s all ease;
}

header.sticky .wrap {
    transition: 0.3s all ease;
    border-bottom: none;
}

header.sticky .navbar-nav .nav-link {
    padding: 40px 8px;
}

header.sticky .navbar-brand img {
    max-width: 180px;
    transition: 0.3s all ease;
}

header.sticky .navbar-collapse {
    margin-top: 0;
    transition: 0.3s all ease;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
    position: relative;
    height: 30px;
    width: 35px;
    display: inline-block;
    cursor: pointer;
    z-index: 111;
    background-color: transparent;
    padding: 0;
}

.navbar-toggler span {
    position: absolute;
    top: 13px;
    left: 0px;
    right: 0;
    display: block;
    padding: 0;
    width: 32px;
    height: 4px;
    border-radius: 20px;
    background-color: var(--secondary);
    font-size: 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    margin: auto;
}

.navbar-toggler span::before,
.navbar-toggler span::after {
    content: "";
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    border-radius: 20px;
    -webkit-transition: -webkit-transform 0.3s;
}

.navbar-toggler span::before {
    -webkit-transform: translateY(-250%);
    transform: translateY(-250%);
    -moz-transform: translateY(-250%);
    -ms-transform: translateY(-250%);
    top: -1px;
}

.navbar-toggler span::after {
    -webkit-transform: translateY(250%);
    transform: translateY(250%);
    -moz-transform: translateY(250%);
    -ms-transform: translateY(250%);
    top: 1px;
}

.navbar-toggler[aria-expanded="true"] span {
    -webkit-background: none;
    -moz-background: none;
    -ms-background: none;
    -o-background: none;
    background: none;
}

.navbar-toggler[aria-expanded="true"] span::before {
    -webkit-transform: translateY(0) rotate(45deg);
    -moz-transform: translateY(0) rotate(45deg);
    -ms-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
    top: 0px;
    background: var(--secondary);
}

.navbar-toggler[aria-expanded="true"] span::after {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
    top: 0px;
    background: var(--secondary);
}


/* Hero  */

.hero {
    display: flex;
    height: 600px;
    width: 100%;
    overflow: hidden;
    gap: 10px;
    position: relative;
}

@media (max-width: 1640px) {
    .hero {
        height: 500px;
    }
}

@media (max-width: 1200px) {
    .hero {
        height: 440px;
    }
}

@media (max-width: 767px) {
    .hero {
        height: 500px;
    }
}


/* ═══════════════════════════════════════
   EACH PANEL (collapsed or expanded)
═══════════════════════════════════════ */

section.hero-sec {
    position: relative;
}

.hero .panel {
    --panel-size: 129px;
    --pan-diff: 2.15;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    /* Default: collapsed thin strip */
    width: var(--panel-size);
    transition: width 0.75s cubic-bezier(0.77, 0, 0.18, 1);
    border-radius: 15px;
}

.hero.hero-slide-4 .panel {
    --pan-diff: 3.25;
}


/* Active / expanded panel */

.hero .panel.active {
    width: calc(100% - var(--panel-size) * var(--pan-diff));
    cursor: initial;
}

.hero .panel:not(.active):hover {
    --panel-size: 150px;
    --pan-diff: 3;
}

.hero:has(.panel:hover) .panel.active {
    width: calc(100% - var(--panel-size) * var(--pan-diff));
}


/* ─── Panel backgrounds ─── */

.hero .panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    background-position: center !important;
    transform: scale(1.05);
    transition: transform 0.75s cubic-bezier(0.77, 0, 0.18, 1);
    border-radius: 15px;
}

.hero .panel.active .panel-bg {
    transform: scale(1);
}


/* Dark overlay */

.hero .panel-overlay {
    position: absolute;
    inset: 0;
    transition: background 0.6s ease;
    border-radius: 15px;
    background: linear-gradient(to bottom, #000000, transparent);
}


/* ─── COLLAPSED state: vertical label ─── */

.hero .panel-collapsed-label {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 62px;
    gap: 14px;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero .panel.active .panel-collapsed-label {
    opacity: 0;
    transition: opacity 0.15s ease;
}

.hero .collapsed-dot {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
}

.hero .collapsed-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 23px;
    font-weight: 400;
    color: var(--white);
    white-space: nowrap;
    user-select: none;
}

.hero .collapsed-plus {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    transition: border-color 0.2s, color 0.2s;
}

.hero .panel:hover:not(.active) .collapsed-plus {
    border-color: var(--secondary);
    color: var(--secondary);
}


/* ─── EXPANDED state: full content ─── */

.hero .panel-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    padding: 107px 60px 50px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.hero .panel.active .panel-content {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s 0.35s ease;
}


/* Horizontal label at top */

.hero .panel-active-label {
    position: absolute;
    top: 54px;
    right: 48px;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.4s 0.4s ease;
}

.hero .panel.active .panel-active-label {
    opacity: 1;
}

.hero-label,
.hero .panel-active-label {
    gap: 10px;
    display: flex;
    align-items: center;
}

.hero-label span,
.hero .panel-active-label span {
    font-size: 23px;
    /* font-family: var(--font-helneue); */
    font-weight: 400;
    color: var(--white);
}

.hero-label .active-dot,
.hero .active-dot {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    border: 1.5px solid var(--white);
}


/* Title */

.hero .panel-title {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.5s 0.35s ease, opacity 0.4s 0.35s ease;
    opacity: 0;
    max-width: 650px;
    margin-bottom: 23px;
}

.hero .panel.active .panel-title {
    transform: translateY(0);
    opacity: 1;
}


/* Subtitle */

.hero .panel-sub {
    color: var(--white);
    transform: translateY(16px);
    transition: transform 0.5s 0.45s ease, opacity 0.4s 0.45s ease;
    opacity: 0;
    max-width: 510px;
}

.hero .panel.active .panel-sub {
    transform: translateY(0);
    opacity: 1;
}


/* CTA button */

.hero .btn-wrap {
    display: flex;
    gap: 14px;
    margin-top: 40px;
}

.hero .panel-cta {
    cursor: pointer;
    transform: translateY(12px);
    opacity: 0;
    background: #000502;
}

.hero .panel.active .panel-cta {
    transform: translateY(0);
    opacity: 1;
}


/* ─── Consultation card ─── */

.consult-card {
    width: 100%;
    background: var(--white);
    padding: 20px 0 20px 23px;
    border-radius: 24px;
    overflow: hidden;
    transition: opacity 0.5s 0.5s ease, transform 0.5s 0.5s ease, box-shadow 0.2s;
}

.consult-card .consult-close {
    border: none;
    background: transparent;
    position: absolute;
    top: 10px;
    right: 10px;
}

.hero .consult-card {
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 14%;
    right: 11%;
    max-width: 650px;
    display: flex;
    z-index: 20;
    cursor: pointer;
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    transition: .3s all ease;
}

.hero .consult-card.consult2 {
    right: 4%;
}

.hero .consult-card.consult3 {
    right: 0%;
    bottom: 10%;
}

@keyframes consultCard {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero .consult-card.active {
    pointer-events: all;
    opacity: 1;
    transition: .3s all ease;
}

.hero .consult-card.consult0.active {
    transition-delay: 15s;
}

.hero .consult-card:hover {
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px) !important;
}

.hero .consult-img {
    width: 67%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a3a6c 0%, #0d2040 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.consult-img video {
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
}

.hero .consult-img video {
    max-height: 270px;
}

.hero .consult-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(60, 120, 220, 0.35) 0%, transparent 70%);
    border-radius: 8px;
}

.hero .consult-body {
    width: 33%;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero .consult-body h3 {
    font-weight: 700;
    color: #0c0d0f;
    line-height: 1.3;
    margin-left: 9px;
}

.hero .consult-body .site-btn {
    padding: 18px 20px;
    font-size: 19px;
}


/* ─── Navigation arrows ─── */

.hero-nav {
    gap: 10px;
    position: relative;
    z-index: 100;
    display: none;
}

.hero-nav .nav-btn {
    width: 46px;
    aspect-ratio: 1;
    background: transparent;
    border: var(--bdrGreen) !important;
    border-radius: 50%;
    font-size: 22px !important;
    color: var(--secondary) !important;
    transition: var(--trans);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(6px);
}

.hero-nav .nav-btn:hover {
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
}


/* ─── Progress bars ─── */

.hero-progress {
    position: relative;
    z-index: 100;
    display: none;
}

.hero-progress .prog-bar {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    overflow: hidden;
    transition: width 0.3s;
}

.hero-progress .prog-bar.active {
    width: 44px;
}

.hero-progress .prog-fill {
    height: 100%;
    background: var(--secondary);
    width: 0%;
    border-radius: 2px;
}

.hero-progress .prog-bar.active .prog-fill {
    animation: fillProgress 6s linear forwards;
}

@keyframes fillProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}


/* ─── Bokeh effects ─── */

.hero .bokeh {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero .b1 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(60, 130, 255, 0.3) 0%, transparent 70%);
    top: 5%;
    left: 55%;
    filter: blur(35px);
    animation: bfloat 9s ease-in-out infinite;
}

.hero .b2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(100, 180, 255, 0.22) 0%, transparent 70%);
    top: 35%;
    left: 68%;
    filter: blur(28px);
    animation: bfloat 11s 2s ease-in-out infinite;
}

.hero .b3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(40, 100, 200, 0.18) 0%, transparent 70%);
    top: 55%;
    left: 38%;
    filter: blur(32px);
    animation: bfloat 13s 1s ease-in-out infinite reverse;
}

@keyframes bfloat {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-18px, 14px);
    }
}


/* features  */

section.features {
    padding: 132px 0 91px;
}

section.features.small-pad {
    padding: 80px 0 43px;
}

section.features .container-fluid {
    padding-right: 0;
}

.divider-hrzntl {
    height: 100%;
    background-color: var(--gray);
    width: 2px;
}

.flex-title {
    margin-bottom: 80px;
}

.flex-title h2 {
    font-weight: 300;
    line-height: 1.06;
}

.flex-title h2 span {
    font-weight: 700;
}

.flex-title .col-auto.dv {
    margin-left: -5px;
}

.flex-title .col-auto:not(.dv) {
    width: 30%;
}

.flex-title .col-auto.end {
    width: 60%;
}

.big-content p {
    font-size: 28px;
    font-weight: 300;
}

.small-wrapper {
    padding: 0 5%;
}

.content-end {
    height: 100%;
    display: flex;
    align-items: end;
}

.site-container {
    padding-left: 4.7%;
}

.feature-carousel .owl-stage {
    display: flex;
}

.feature-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.feature-carousel .item {
    width: 100%;
}

.card-wrap {
    border: var(--bdrGreen);
    display: block;
    border-radius: 31px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    font-family: var(--font-helneue);
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    transition: var(--trans);
    z-index: 1;
    overflow: hidden;
    position: relative;
}

.card-wrap .label {
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--secondary);
}

.card-wrap .label span {
    width: 17px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: var(--bdrGreen);
    display: inline-flex;
}

.card-wrap .content-card h3 {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--primary);
    max-width: 310px;
    margin: 33px 0;
    transition: var(--trans);
}

.card-wrap .content-card p {
    max-width: 420px;
}

.card-wrap .btn-wrap {
    border: var(--bdrGreen);
    border-radius: 80px;
    padding: 20px 42px;
    margin-top: 40px;
    min-height: 100px;
    transition: var(--trans);
    position: relative;
    background-position: center center;
    background-size: cover;
}

.card-wrap .btn-wrap>span {
    visibility: hidden;
    color: var(--white);
    position: absolute;
    inset: 0;
    margin: auto;
    font-family: var(--font-helneue);
    font-weight: 700;
    font-size: 20px;
    width: max-content;
    height: max-content;
}

.card-wrap .btn-wrap svg {
    --svg-size: 55px;
    width: var(--svg-size);
    height: var(--svg-size);
    min-width: var(--svg-size);
    border-radius: 50%;
    background-color: var(--white);
    transition: var(--trans);
    position: absolute;
    left: 8%;
    top: 0;
    bottom: 0;
    margin: auto;
}

.card-wrap .btn-wrap svg path,
.card-wrap .btn-wrap svg g {
    stroke: var(--secondary);
    transition: var(--trans);
}

.card-wrap .btn-wrap .line {
    width: 76%;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--trans);
    position: absolute;
    z-index: -1;
    inset: 0;
    margin: auto;
}

.card-wrap::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    height: 0;
    transition: 0.3s all ease;
    z-index: -1;
}

.card-wrap:hover {
    color: var(--white);
    transition: 0.3s all ease;
}

.card-wrap:hover::before {
    height: 100%;
    transition: 0.3s all ease;
}

.card-wrap:hover h3 {
    color: var(--white);
    transition: 0.3s all ease;
}

.card-wrap:hover .btn-wrap {
    background-image: url(../images/mobile-user-boy.png);
    border-color: var(--white);
}

.card-wrap:hover .btn-wrap svg {
    transition: var(--trans);
    background-color: transparent;
    left: calc(92% - var(--svg-size));
}

.card-wrap:hover .btn-wrap svg path,
.card-wrap:hover .btn-wrap svg g {
    stroke: var(--white);
}

.card-wrap:hover .line {
    background-color: var(--white);
    opacity: 0;
}

.card-wrap:hover .btn-wrap>span {
    visibility: visible;
    transition-delay: 0.2s;
}

.owl-nav-style .owl-nav {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    align-items: center;
}

.owl-nav-style .owl-nav a.site-btn {
    margin-left: 15px;
}

.owl-nav-style .owl-nav button {
    width: 70px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: var(--bdrGreen) !important;
    font-size: 35px !important;
    color: var(--secondary) !important;
    transition: var(--trans);
}

.owl-nav-style .owl-nav button.disabled,
.owl-nav-style .owl-nav button:hover {
    background-color: var(--secondary) !important;
    color: var(--white) !important;
    transition: var(--trans);
}

.grdnt-bg {
    position: relative;
    z-index: 1;
}

.grdnt-bg::before {
    content: "";
    background-image: linear-gradient(to bottom, #080f13, #274d5d);
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 93.5%;
}

.light-p p {
    font-weight: 300;
}

.h-100.grdnt-bg::before {
    height: 100%;
    background-image: linear-gradient(to bottom, #274d5d, #080f13);
}

.card-wrap.event .btn-wrap {
    margin-top: 68px;
}

.card-wrap.event .btn-wrap .line {
    width: 60%;
    left: 16%;
}

.sec-btn-wrap {
    padding-left: 270px;
    margin-top: -70px;
}


/* about section  */

section.about {
    padding-bottom: 150px;
}

section.about.f-bg {
    padding: 120px 0;
}

.grdnt-bg.f-bg::before {
    height: 100%;
}

.logo-icon {
    width: 130px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #162c36;
    padding: 36px;
    border: var(--bdrparot);
    display: inline-flex;
    margin: auto;
}

.logo-icon img {
    width: auto;
    max-width: 100%;
    height: 100%;
}

.space-bottom {
    margin-bottom: 80px;
}

.space h2 {
    margin: 35px 0 20px;
}

.site-bdr-card {
    padding: 15px 0 15px 60px;
    border-left: var(--bdrGreen);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 50px;
}

.site-bdr-card .img-card {
    max-width: 80px;
}

.site-bdr-card h3 {
    font-size: 30px;
    font-weight: 700;
    margin: 30px 0 25px;
}

.card-wrap .card-img {
    margin-top: 50px;
}

.card-wrap .card-img img {
    width: auto;
    max-width: 260px;
    height: 70px;
    object-fit: contain;
    object-position: left;
}

.pad-large {
    padding: 30px 50px 50px;
}

.pad-large .label {
    margin-left: -15px;
}

.card-wrap.card-style-2 {
    padding: 50px;
    color: var(--white);
}

.card-wrap.card-style-2 .card-img svg {
    width: auto;
    height: 108px;
    transition: var(--trans);
}

.card-wrap.card-style-2:hover .card-img svg path {
    fill: var(--white);
    transition: var(--trans);
}

.card-wrap.card-style-2 h3 {
    color: var(--white);
    margin: 50px 0 40px;
}
.col-img video,
.col-img img {
    border-radius: 29px;
    object-fit: cover;
}

.pad-120 {
    padding: 120px 0;
}

@media (min-width: 1200px) {
    .custmize-col .col-md-6 {
        width: 47%;
    }
}

.col-content p {
    margin: 50px 0 60px;
}

.layer-bg {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.layer-bg::before {
    background-color: #001d2d;
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.77;
}

.card-wrap.style-trnsprnt,
.card-wrap.style-trnsprnt h3 {
    color: var(--white);
}

.card-wrap.style-trnsprnt h4 {
    font-size: 38px;
    font-weight: 700;
    color: var(--secondary);
}

.card-wrap.style-trnsprnt .btn-wrap svg {
    background-color: transparent;
}


/* FAQ Section */

section.faq {
    padding: 109px 0;
    --acc-radius: 27px;
}

section.faq .title {
    margin-bottom: 45px;
}

section.faq .nav-pills {
    justify-content: center;
    row-gap: 16px;
    column-gap: 20px;
    margin-bottom: 59px;
}

section.faq .nav-pills .nav-link {
    border-radius: 50px;
    color: rgba(0, 16, 25, 0.38);
    border: 1px solid rgba(0, 16, 25, 0.38);
    font-size: 23px;
    font-weight: 700;
    font-family: var(--font-helneue);
    min-width: 250px;
    padding: 16px 25px;
}

section.faq .nav-pills .nav-link svg path {
    stroke: rgba(0, 16, 25, 0.38);
}

section.faq .nav-pills .nav-link:hover,
section.faq .nav-pills .nav-link.active {
    background: var(--primary);
    border-color: var(--parot);
    color: var(--white);
}

section.faq .nav-pills .nav-link:hover svg path,
section.faq .nav-pills .nav-link.active svg path {
    stroke: var(--white);
}

section.faq .accordion-item {
    margin-bottom: 15px;
    border-radius: var(--acc-radius);
    border: 2px solid var(--secondary);
}

section.faq .accordion-button {
    background: var(--white);
    color: var(--black) !important;
    border-radius: var(--acc-radius) !important;
    box-shadow: none;
    font-size: 30px;
    font-weight: 700;
    font-family: var(--font-hel);
    padding: 20px 35px;
}

section.faq .accordion-button::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 58"><g id="Group_131317" data-name="Group 131317" transform="translate(-1718 -9189)"><g id="Ellipse_48" data-name="Ellipse 48" transform="translate(1718 9192)" fill="none" stroke="%239cc5be" stroke-width="2"><circle cx="26" cy="26" r="26" stroke="none"/><circle cx="26" cy="26" r="25" fill="none"/></g><text id="_" data-name="+" transform="translate(1730 9237)" fill="%239cc5be" font-size="49" font-family="Lato-Light, Lato" font-weight="300"><tspan x="0" y="0">+</tspan></text></g></svg>');
    background-size: 100% 100%;
    width: 50px;
    height: 50px;
}

section.faq .accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 58"><g id="Group_131339" data-name="Group 131339" transform="translate(-1718 -9066)"><text id="_-" data-name="-" transform="translate(1735 9114)" fill="%239cc5be" font-size="49" font-family="Lato-Light, Lato" font-weight="300"><tspan x="0" y="0">-</tspan></text><g id="Ellipse_48" data-name="Ellipse 48" transform="translate(1718 9072)" fill="none" stroke="%239cc5be" stroke-width="2"><circle cx="26" cy="26" r="26" stroke="none"/><circle cx="26" cy="26" r="25" fill="none"/></g></g></svg>');
}

section.faq .accordion-body {
    padding: 0 34px 30px;
}

section.faq .accordion-body p {
    margin-bottom: 10px;
}


/* Footer */

footer {
    background: linear-gradient(to bottom, #264c5b, #091117);
    padding-top: 72px;
    position: relative;
    z-index: 1;
}

footer .xicon {
    position: absolute;
    right: 0;
    width: auto;
    height: 100%;
    top: 0;
    z-index: -1;
}

footer .small-wrapper {
    padding: 0 3%;
}

footer .logo img {
    max-width: 250px;
    margin-bottom: 23px;
}

footer .logo p {
    font-size: 20px;
    font-family: var(--font-hel);
    max-width: 847px;
    color: var(--footer-clr);
}

footer h3 {
    color: #9cc5be;
    margin-bottom: 26px;
}

footer .social h3 {
    text-transform: uppercase;
    font-size: 26px;
}

footer .social {
    padding-left: 58px;
}

footer .social a {
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    opacity: 0.45;
}

footer .bottom {
    border-top: 1px solid rgba(112, 112, 112, 0.66);
    border-bottom: 1px solid rgba(112, 112, 112, 0.66);
    margin: 52px 0 0;
    padding: 42px 0 99px;
}

footer .bottom .col-auto {
    width: 20%;
}

footer .links ul {
    padding-left: 12px;
    margin: 0;
    list-style: none;
}

footer .links li {
    margin-bottom: 4px;
}

footer .links a {
    text-decoration: none;
    color: var(--footer-clr);
    font-size: 23px;
    transition: var(--trans);
}

footer .links a:hover {
    color: var(--parot);
    transition: var(--trans);
}

footer .copyright {
    display: flex;
    justify-content: space-between;
    padding: 46px 0 52px;
}

footer .copyright p,
footer .copyright a {
    color: var(--footer-clr);
    font-family: var(--font-hel);
    font-size: 18px;
}

footer .copyright a {
    margin-right: 22px;
}


/* custom dropdown header  */

.dropdown-nav {
    position: fixed;
    width: calc(100% - 130px);
    height: auto;
    max-height: calc(100vh - 200px);
    top: 130px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--light2);
    visibility: hidden;
    opacity: 0;
    z-index: -99;
    transition: var(--trans);
}


/* .dropdown-nav::before {
    position: absolute;
    bottom: 100%;
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
} */

header .navbar-nav .nav-item.dropdown:hover .dropdown-nav {
    visibility: visible;
    opacity: 1;
    z-index: 999;
}

header.sticky .dropdown-nav {
    top: 115px;
}

.d-sidebar {
    display: flex;
    flex-direction: column;
    background-color: var(--primary);
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.d-sidebar ul {
    list-style: none;
    padding: 0;
}

.d-sidebar ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    padding: 50px;
    font-size: 24px;
    font-weight: 700;
    width: calc(100% + 2px);
}

.d-sidebar ul li .icon-text {
    display: flex;
    align-items: center;
    gap: 30px;
    color: inherit;
    text-decoration: none;
}

.d-sidebar ul li .icon-text .icon {
    max-width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.d-sidebar ul li span svg {
    visibility: hidden;
}

.d-sidebar ul li svg :is(g,
path,
line) {
    stroke: #e5e9eb;
}

.d-sidebar ul li:hover,
.d-sidebar ul li.active {
    background-color: var(--light2);
    color: var(--primary);
}

.d-sidebar ul li:hover svg :is(g,
path,
line),
.d-sidebar ul li.active svg :is(g,
path,
line) {
    stroke: var(--primary);
}

.d-sidebar ul li.active .icon img,
.d-sidebar ul li:hover .icon img {
    filter: invert(0.5) brightness(0.5);
}

.d-sidebar ul li:hover span svg,
.d-sidebar ul li.active span svg {
    visibility: visible;
}

.d-services {
    padding: 60px 30px 50px 120px;
    height: 100%;
    overflow: auto;
}

.d-services::-webkit-scrollbar {
    display: none;
}

.d-services>.row {
    row-gap: 100px;
}

.bar-card {
    color: inherit;
    text-decoration: none;
}

.bar-card .icon img {
    width: auto;
    height: 70px;
    object-fit: contain;
}

.bar-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: 25px 0 10px;
}

.bar-card p {
    max-width: 315px;
}

.d-services .cards-wrapper {
    display: none;
}

.d-services .cards-wrapper.active {
    display: block;
}

.d-services .cards-wrapper .row {
    --bs-gutter-x: 91px;
    --bs-gutter-y: 70px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--trans);
}

.d-services .cards-wrapper.active .row {
    transform: translateY(0);
    opacity: 1;
    transition: var(--trans);
}


/* H1 Heero */

.h1-hero .bg {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 60px 60px 100px;
    border-radius: 15px;
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
}

.h1-hero * {
    color: var(--white);
}

.h1-hero .text {
    max-width: 640px;
}

.h1-hero h1 {
    margin-bottom: 15px;
}

.h1-hero p {
    margin-top: 20px;
}

.sol-grid .flex-title .col-auto:not(.dv,
.end) {
    width: 37%;
}

.sol-grid .flex-title,
.sec-row:not(:last-child) {
    border-bottom: 1px solid #707070;
    padding-bottom: 80px;
}

.sec-row:not(:last-child) {
    margin-bottom: 80px;
}

.sec-row h2 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.sec-row h3 {
    font-weight: 700;
}

.sec-row .col-content p,
.sec-row h3 {
    margin-bottom: 20px;
}

.sec-row .col-content p {
    margin-top: 0 !important;
}

.sec-row .col-content .site-btn {
    margin-top: 40px;
}

@media (min-width: 992px) {
    .sol-row .col-lg-6 {
        width: 55%;
    }
}


/* Single Solution */

.h1-hero .hero-label {
    position: absolute;
    top: 45px;
    left: 100px;
}

.h1-hero .arrow-txt {
    margin-top: 35px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.h1-hero .arrow-txt svg {
    min-width: 20px;
    width: 20px;
    margin-top: 11px;
}


/* Scroll Spy Section */

section.scrollspy-sec {
    position: relative;
}

.scrollspy-list-wrap {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 128px;
    padding-left: 98px;
    width: auto;
    transition: .3s all ease;
}

.scrollspy-list-wrap.active {
    position: fixed;
    transition: .3s all ease;
}

.scrollspy-list .ss-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scrollspy-list .ss-list-wrap a,
.scrollspy-list .ss-list-wrap button {
    text-align: left;
    background: transparent;
    border: none;
    box-shadow: none;
    font-size: 24px;
    font-family: "Helveticaneu";
    border-left: 4px solid transparent;
    text-decoration: none;
    color: var(--black);
    padding-left: 29px;
    transition: .3s all ease;
}

.scrollspy-list .ss-list-wrap button.active,
.scrollspy-list .ss-list-wrap a.active {
    border-color: var(--secondary);
    color: var(--secondary);
    font-weight: 700;
    transition: .3s all ease;
}

.scrollspy-list {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: calc(100vh - 160px);
}

.scrollspy-list .consult-card {
    padding: 20px;
    border: 1px solid #707070;
}

.scrollspy-list .consult-card h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: "Helveticaneu";
    margin: 5px 0 20px;
}

.spy-sec:not(.full-w) .container-fluid {
    padding-left: 0;
}

.spy-sec:not(.full-w) {
    padding-left: 450px;
    padding-top: 81px;
    padding-bottom: 75px;
}

.spy-sec.sol-benefit-sec {
    background: rgba(156, 197, 190, 0.09);
}

.spy-sec .title {
    margin-bottom: 83px;
    max-width: 1260px;
}

.spy-sec h2,
.f-bg h2 {
    color: #85B8AF;
}

.spy-sec h2 {
    margin-bottom: 10px;
}

@media (min-width: 1320px) {
    .spy-sec h2,
    .small-title {
        font-size: 46px;
    }
}

.spy-sec h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.spy-sec p {
    margin-bottom: 10px;
}

.site-bdr-card.v2 {
    padding: 0px 15px 0px 20px;
    border-right: var(--bdrGreen);
    border-left: unset;
}

.spy-sec .colm:first-child .site-bdr-card.v2 {
    padding-left: 0;
}

.spy-sec .colm:last-child .site-bdr-card.v2 {
    border-right: 0;
}

.site-bdr-card.v2 h3 {
    font-size: 29px;
    margin-bottom: 0;
}

.spy-sec section.about {
    padding: 110px 0;
}

.spy-sec .grdnt-bg::before {
    height: 100%;
}

.spy-sec .owl-nav-style .owl-nav {
    margin-left: 0;
}

.spy-sec .owl-stage {
    display: flex;
}

.spy-sec .owl-stage .item,
.spy-sec .owl-stage .card-wrap {
    height: 100%;
}

.card-wrap.v3 .content-card h3 {
    max-width: 100%;
}

.firm-sol-sec .colm:nth-child(2) .site-bdr-card.v2 {
    border-right: none;
}

.firm-why-sec .card-wrap .content-card p {
    max-width: 530px;
}

@media (min-width: 992px) {
    .firm-why-sec .card-wrap {
        padding-bottom: 50px;
    }
    .integ-sec .card-wrap {
        padding-top: 50px;
        padding-bottom: 30px;
    }
}

.post-category-list .ss-list-wrap button {
    font-size: 18px;
}

.search-w-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.spy-sec .title {
    margin-bottom: 83px;
    max-width: 1260px;
}

.search-w-title .title h2 span {
    color: #010A08;
}

.spy-sec .search-w-title .title {
    margin-bottom: 50px;
}

.search-w-title .search-bar {
    border-bottom: 2px solid #A3C8C2;
    display: flex;
    align-items: center;
}

.search-w-title .search-bar svg {
    width: 35px;
    height: auto;
}

.search-w-title .search-bar input {
    border: none;
    padding: 15px 25px 17px;
    box-shadow: none;
    outline: 0;
    font-size: 20px;
    width: 270px;
    color: #A3C8C2;
}

section.content-sec,
section.news {
    padding: 80px 0;
}

section.content-sec .flex-title {
    margin-bottom: 0 !important;
}

section.video-sec:not(.overlap-top) {
    padding-top: 80px;
}

section.video-sec img {
    border-radius: 25px;
}

section.overlap-top {
    margin-top: -150px;
    position: relative;
    z-index: 1;
}

section.overlap-sec {
    padding-bottom: 230px !important;
}

section.less-pad {
    padding: 80px !important;
}

section.news .card-wrap h3 {
    font-size: 30px;
}

section.news .card-wrap h4.date {
    color: #9CC5BE;
}

section.featured-eve {
    margin-top: 80px;
}

section.featured-eve .col-content h2 {
    margin-bottom: 20px;
}

section.featured-eve .col-content p {
    margin: 20px 0 0;
}

section.featured-eve .col-content .site-btn {
    margin-top: 50px;
}

@media (min-width: 1200px) {
    section.featured-eve .small-wrapper {
        padding: 0 12%;
    }
}

section.contact {
    padding-bottom: 80px;
}

section.contact .quote-card,
section.contact .consult-card {
    height: 100%;
}

section.contact .consult-card {
    background: #1D3A46;
    padding: 35px 50px;
}

section.contact .consult-card * {
    color: var(--white);
}

section.contact .consult-card h2 {
    margin: 15px 0;
}

@media (min-width: 1730px) {
    section.contact .consult-card h2 {
        font-size: 55px;
    }
}

section.contact .form-wrap {
    background: #E4E4E4;
    border-radius: 15px;
    padding: 80px 50px;
    height: 100%;
}

.form-wrap .gfield input,
.form-wrap .gfield select {
    border: none;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 1px solid #707070;
    color: #000000;
    font-weight: 300;
    font-size: 16px;
    height: 45px;
    padding-bottom: 10px;
    padding-left: 0;
}

.form-wrap .gfield input::placeholder {
    color: #000000;
}

.form-wrap .gform_footer input[type="submit"] {
    margin-top: 40px !important;
    font-family: "Helveticaneu" !important;
    border: 1px solid var(--primary);
    border-radius: 50px ! IMPORTANT;
    background-color: var(--primary) !important;
    color: var(--white) !important;
    font-size: 23px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    padding: 18px 45px !important;
    text-align: center !important;
    z-index: 1;
    transition: 0.3s all ease !important;
}

.form-wrap .gform_footer input[type="submit"]:hover {
    background-color: var(--secondary) !important;
    transition: 0.3s all ease !important;
}

section.broch-sec {
    padding: 80px 0 120px;
}

.post-select-filters {
    display: flex;
    gap: 15px;
    align-items: center;
}

.post-select-filters select {
    max-width: 250px;
    font-size: 18px;
    border-radius: 20px;
    height: 62px;
    padding-left: 24px;
    border-color: rgba(112, 112, 112, 0.6);
    background-size: 18px 16px;
}

.search-results .card-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.footer-search {
    background: #fff;
    border: 1px solid #707070;
    border-radius: 30px;
    width: 100%;
    max-width: 400px;
    padding: 21px 30px;
    position: absolute;
    right: 3%;
    top: -6%;
}

.search-close {
    border: none;
    background: transparent;
    position: absolute;
    top: 10px;
    right: 10px;
}

.footer-search form.site-search {
    position: relative;
    margin-top: 16px;
}

.footer-search form input {
    border: 1px solid #9CC5BE;
    box-shadow: none;
    outline: 0;
    height: 50px;
    width: 100%;
    border-radius: 50px;
    padding: 10px 20px;
}

.footer-search form input {
    border: 1px solid #9CC5BE;
    box-shadow: none;
    outline: 0;
    height: 50px;
    width: 100%;
    border-radius: 50px;
    padding: 10px 20px;
}

.footer-search form button {
    border-left: 2px solid #9CC5BE;
    border-radius: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: max-content;
    margin: auto;
}

.footer-search form button svg {
    width: 26px;
    height: auto;
}

.pad-100 {
    padding: 100px 0;
}

.news-single .text * {
    margin-bottom: 15px;
}

.sec-padding {
    padding: 80px 0 100px;
}

.sec-title {
    margin-bottom: 60px;
}

section.teams {
    padding-top: 60px;
}

section.teams .row {
    --bs-gutter-x: 65px;
    --bs-gutter-y: 65px;
}

section.teams .img img {
    border-radius: 24px;
}

.team-wrap {
    cursor: pointer;
}

.team-wrap h3 {
    font-weight: 700;
    margin: 20px 0 5px;
}

section.teams p.role {
    font-size: 26px;
    color: #707070;
}

.team-info {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .team-info .img {
        width: 36%;
    }
}

.team-info .social {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.team-popup .bio p {
    margin-bottom: 15px;
}

.team-popup .btn-close {
    border: 1px solid;
    border-radius: 50%;
}
.single-post .h1-hero .text {
    max-width: 100%;
}
@media (max-width: 1730px) {
    header .navbar-nav .nav-link {
        font-size: 20px;
    }
    section.features.v2 h2 {
        font-size: 46px;
    }
    .card-wrap.event .btn-wrap .line {
        left: 24%;
    }
    .site-bdr-card.v2 h3 {
        font-size: 24px;
    }
    .scrollspy-list {
        max-width: 260px;
        height: calc(100vh - 140px);
    }
    .bar-card p {
        font-size: 16px;
    }
    .d-sidebar ul li .icon-text {
        gap: 20px;
    }
    .d-sidebar ul li {
        font-size: 20px;
    }
    .d-sidebar ul li .icon-text .icon {
        max-width: 38px;
    }
    .dropdown-nav,
    header.sticky .dropdown-nav {
        top: 110px;
    }
    header .navbar-nav .nav-link {
        padding: 40px 0;
    }
    header .navbar-nav .nav-link::before {
        top: 75px;
    }
    .bar-card .icon img {
        height: 50px;
    }
}

@media (max-width: 1640px) {
    h1,
    .h1-style {
        font-size: 49px;
    }
    h2,
    .h2-style {
        font-size: 40px;
    }
    h3,
    .h3-style {
        font-size: 28px;
    }
    .big-content p {
        font-size: 24px;
    }
    .container-fluid {
        padding: 0 15px;
        max-width: 1356px;
    }
    .dropdown-nav {
        width: 100%;
        max-width: 1356px;
        overflow-y: auto;
    }
    .d-sidebar ul li {
        padding: 30px;
    }
    .d-services {
        padding: 60px 40px 50px;
    }
    .d-services .cards-wrapper .row {
        --bs-gutter-x: 40px;
    }
    .btn-style a,
    .site-btn {
        font-size: 16px;
        padding: 17px 34px;
    }
    header {
        margin-bottom: 9px;
    }
    header .navbar-nav .nav-link {
        font-size: 19px;
        padding-bottom: 40px;
    }
    .dropdown-toggle::after {
        margin-left: 0.3em;
        vertical-align: 1px;
        transform: scale(0.8);
    }
    .hero .panel {
        --panel-size: 98px;
        --pan-diff: 2.33;
    }
    .hero.hero-slide-4 .panel {
        --pan-diff: 3.3;
    }
    .hero-label span,
    .hero .panel-active-label span {
        font-size: 20px;
    }
    .hero .panel-collapsed-label {
        padding-top: 47px;
    }
    .hero .collapsed-dot {
        width: 15px;
        height: 15px;
    }
    .hero .collapsed-title {
        font-size: 18px;
    }
    .hero .collapsed-plus {
        width: 40px;
        height: 40px;
        bottom: 17px;
    }
    .hero .panel-title {
        max-width: 520px;
    }
    .hero .panel-content {
        padding: 86px 20px 30px 70px;
    }
    .hero .panel-sub {
        max-width: 467px;
    }
    .hero .consult-card {
        max-width: 500px;
    }
    .hero .consult-img {
        width: 64%;
    }
    .hero .consult-img video {
        max-height: 214px;
    }
    .hero .consult-body {
        padding: 16px 14px;
    }
    .hero .consult-body .site-btn {
        padding: 18px 13px;
        font-size: 15px;
    }
    .hero .btn-wrap {
        margin-top: 24px;
    }
    .site-btn.with-icon {
        padding: 17px 22px;
    }
    .h1-hero .bg {
        padding: 70px 60px 60px 97px;
    }
    .h1-hero .hero-label {
        left: 97px;
    }
    section.features.small-pad {
        padding: 61px 0 34px;
    }
    .card-wrap {
        border-radius: 24px;
    }
    .card-wrap .content-card h3 {
        font-size: 24px;
        max-width: 280px;
        margin: 20px 0;
    }
    .card-wrap .content-card p {
        max-width: 330px;
    }
    .card-wrap .btn-wrap {
        padding: 20px 42px;
        margin-top: 26px;
    }
    .card-wrap .btn-wrap svg {
        --svg-size: 48px;
    }
    .owl-nav-style .owl-nav {
        margin-top: 35px;
    }
    .owl-nav-style .owl-nav button {
        width: 55px;
        font-size: 25px !important;
    }
    .sec-btn-wrap {
        padding-left: 215px;
        margin-top: -55px;
    }
    .logo-icon {
        width: 111px;
        padding: 30px;
    }
    .grdnt-bg::before {
        height: 94.5%;
    }
    .space h2 {
        margin-top: 22px;
    }
    .space-bottom {
        margin-bottom: 69px;
    }
    .site-bdr-card .img-card {
        max-width: 70px;
    }
    .site-bdr-card h3 {
        font-size: 26px;
        margin: 24px 0 20px;
    }
    section.about {
        padding-bottom: 87px;
    }
    section.about.f-bg {
        padding: 80px 0;
    }
    section.features {
        padding: 90px 0 57px;
    }
    section.features.v2 h2 {
        font-size: 38px;
    }
    .pad-large {
        padding: 30px;
    }
    .card-wrap .card-img img {
        max-width: 170px;
        height: 60px;
    }
    .card-wrap .content-card p {
        max-width: 294px;
    }
    .card-wrap.card-style-2 {
        padding: 30px;
    }
    .card-wrap.card-style-2 .card-img svg {
        height: 80px;
    }
    .card-wrap.style-trnsprnt h4 {
        font-size: 29px;
    }
    section.faq {
        padding: 83px 0 60px;
        --acc-radius: 20px;
    }
    section.faq .title {
        margin-bottom: 30px;
    }
    section.faq .nav-pills .nav-link {
        min-width: 177px;
        font-size: 17px;
    }
    section.faq .nav-pills {
        margin-bottom: 44px;
    }
    section.faq .accordion-button {
        font-size: 25px;
        padding: 12px 21px;
    }
    section.faq .accordion-body p {
        font-size: 16px;
    }
    section.faq .accordion-button::after {
        width: 42px;
        height: 42px;
    }
    footer {
        padding-top: 59px;
    }
    footer .logo img {
        max-width: 185px;
        margin-bottom: 15px;
    }
    footer .logo p {
        font-size: 16px;
        max-width: 630px;
    }
    footer .social {
        padding-left: 41px;
    }
    footer .social a svg {
        width: 26px;
    }
    footer .social h3 {
        font-size: 20px;
    }
    footer h3 {
        margin-bottom: 15px;
    }
    footer .bottom {
        margin: 37px 0 0;
        padding: 30px 0 75px;
    }
    footer .links a {
        font-size: 17px;
    }
    footer .links ul {
        padding-left: 6px;
    }
    footer .copyright {
        padding: 32px 0 33px;
    }
    footer .copyright p,
    footer .copyright a {
        font-size: 13px;
    }
    .scrollspy-list-wrap {
        padding-top: 110px;
        padding-left: 70px;
    }
    .spy-sec:not(.full-w) {
        padding-left: 380px;
    }
    .site-bdr-card.v2 h3 {
        font-size: 21px;
    }
    section.news .card-wrap h3 {
        font-size: 20px;
    }
}

@media (max-width: 1380px) {
    .scrollspy-list-wrap {
        padding-left: 20px;
    }
    .spy-sec:not(.full-w) {
        padding-left: 250px;
    }
    .scrollspy-list .ss-list-wrap a,
    .scrollspy-list .ss-list-wrap button {
        padding-left: 25px;
        font-size: 18px;
    }
    .post-category-list .ss-list-wrap button {
        font-size: 14px;
    }
    .scrollspy-list {
        max-width: 190px;
    }
    .scrollspy-list .consult-card {
        padding: 10px;
        border-radius: 16px;
    }
    .bar-card .icon img {
        height: 50px;
    }
    header .navbar-nav .nav-link {
        font-size: 18px;
        padding: 34px 0;
    }
    .dropdown-nav,
    header.sticky .dropdown-nav {
        top: 100px;
    }
}

@media (max-width: 1320px) {
    h1,
    .h1-style,
    h2,
    .h2-style {
        font-size: 38px;
    }
    p {
        font-size: 16px;
    }
    .big-content p {
        font-size: 22px;
    }
    header .logo {
        max-width: 150px;
    }
    header .navbar-nav .nav-link {
        font-size: 16px;
    }
    .d-sidebar ul li .icon-text {
        gap: 15px;
    }
    .hero .consult-card {
        display: none;
    }
    .hero .panel-content {
        padding: 60px 20px 30px 60px;
    }
    .bar-card .icon svg {
        width: auto;
        height: 60px;
    }
    .bar-card p {
        font-size: 16px;
    }
    .bar-card h3 {
        font-size: 22px;
    }
    .d-services .cards-wrapper .row {
        --bs-gutter-x: 30px;
        --bs-gutter-y: 50px;
    }
    .hero .panel-title {
        max-width: 400px;
    }
    .hero .panel-sub {
        max-width: 355px;
    }
    .hero-label span,
    .hero .panel-active-label span {
        font-size: 18px;
    }
    .hero-label .active-dot,
    .hero .active-dot {
        width: 14px;
        height: 14px;
    }
    .h1-hero .bg {
        padding: 70px 20px 60px 60px;
    }
    .h1-hero .hero-label {
        left: 60px;
    }
    .card-wrap {
        padding: 20px;
    }
    .card-wrap .label {
        gap: 15px;
        font-size: 18px;
    }
    .card-wrap .label span {
        width: 14px;
    }
    .card-wrap .btn-wrap>span {
        font-size: 18px;
    }
    .pad-large .label {
        margin-left: 0;
    }
    .owl-nav-style .owl-nav button {
        width: 60px;
        font-size: 26px !important;
    }
    .logo-icon {
        padding: 26px;
    }
    .site-bdr-card .img-card {
        max-width: 60px;
    }
    section.features.v2 h2 {
        font-size: 34px;
    }
    .card-wrap .card-img img {
        width: 51%;
        height: 55px;
    }
    .card-wrap.event .btn-wrap .line {
        left: 14%;
        width: 65%;
    }
    .site-bdr-card.v2 h3 {
        font-size: 20px;
    }
    .site-bdr-card.v2 .img-card {
        max-width: 65px;
    }
    .dropdown-nav,
    header.sticky .dropdown-nav {
        top: 94px;
    }
    header .navbar-nav .nav-link::before {
        top: 60px;
    }
    header.sticky .navbar-nav .nav-link::before {
        top: 68px;
    }
}

@media (max-width: 1199px) {
    h1,
    .h1-style,
    h2,
    .h2-style {
        font-size: 34px;
    }
    h3,
    .h3-style {
        font-size: 22px;
    }
    .big-content p {
        font-size: 18px;
    }
    section.features.v2 h2 {
        font-size: 32px;
    }
    .small-wrapper,
    .site-container {
        padding: 0;
    }
    header .logo {
        max-width: 120px;
    }
    header .navbar-nav .nav-link {
        font-size: 12px;
    }
    header .site-btn.with-icon,
    header .site-btn {
        padding: 17px 17px;
    }
    .dropdown-toggle::after {
        vertical-align: -2px;
        transform: scale(0.6);
    }
    .dropdown-nav {
        max-height: unset;
    }
    .dropdown-nav .d-sidebar ul li {
        padding: 20px 15px;
    }
    .d-sidebar ul li .icon-text .icon {
        min-width: unset;
    }
    .d-sidebar ul li .icon-text .icon svg {
        width: auto;
        height: 30px;
    }
    .d-sidebar ul li {
        font-size: 18px;
    }
    .d-sidebar ul li .icon-text .icon {
        max-width: 35px;
    }
    .d-sidebar ul li span svg {
        width: 35px;
        height: auto;
    }
    .hero .panel-active-label {
        top: 35px;
        right: 30px;
    }
    .hero .collapsed-plus {
        font-size: 29px;
    }
    .hero-label span,
    .hero .panel-active-label span {
        font-size: 16px;
    }
    .site-bdr-card {
        padding: 15px 0 15px 35px;
    }
    section.features.v2 h2 {
        font-size: 27px;
    }
    .col-content p {
        margin: 20px 0 30px;
    }
    .d-services {
        padding: 40px 30px;
    }
    .bar-card .icon svg {
        height: 40px;
    }
    .card-wrap .btn-wrap {
        margin-top: 40px;
    }
    .scrollspy-list-wrap {
        display: none;
    }
    .spy-sec:not(.full-w) {
        padding-left: 15px;
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .spy-sec .title {
        margin-bottom: 50px;
    }
    .spy-sec .colm:nth-child(2) .site-bdr-card.v2 {
        border-right: none;
    }
    .spy-sec .search-w-title .title {
        margin-bottom: 40px;
    }
    .space-bottom {
        margin-bottom: 50px;
    }
    section.news .card-wrap h3,
    section.news .card-wrap h4 {
        font-size: 16px;
    }
    section.contact .form-wrap {
        padding: 40px 25px;
    }
    section.contact .consult-card {
        padding: 35px 25px;
    }
    .dropdown-nav {
        top: 85px;
    }
    header.sticky .dropdown-nav {
        top: 90px;
    }
    header .navbar-nav .nav-link::before {
        top: 54px;
        left: -20%;
        height: 8px;
        width: 8px;
    }
    header.sticky .navbar-nav .nav-link::before {
        top: 65px;
    }
}

@media (max-width: 991px) {
    .container-fluid {
        max-width: 720px;
    }
    li.dropdown,
    li.menu-item-has-children {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    li.dropdown .nav-link,
    li.menu-item-has-children .nav-link {
        order: 0;
    }
    li.dropdown .drop-toggler,
    li.menu-item-has-children .drop-toggler {
        padding-right: 0;
        order: 1;
        transform: rotate(-3deg);
    }
    .navbar-expand-lg .navbar-collapse {
        position: absolute;
        left: 0;
        top: 66px;
        z-index: 1060;
        background: #E5E9EB;
        width: 100%;
        padding: 5px 36px 20px;
        max-height: calc(100vh - 80px);
        overflow-y: scroll;
    }
    .drop-toggler svg {
        width: 30px;
        height: auto;
    }
    .drop-toggler {
        border: none;
        box-shadow: none !important;
        transition: var(--trans);
    }
    li.dropdown .drop-toggler.active,
    li.menu-item-has-children .drop-toggler.active {
        transform: rotate(87deg) translateY(-6px) !important;
        transition: var(--trans);
    }
    .dropdown-nav {
        display: none !important;
        visibility: hidden !important;
    }
    header .navbar-nav .nav-link {
        font-size: 18px;
        padding: 10px 0;
    }
    header .navbar-nav .nav-link::before,
    .dropdown-toggle::after {
        display: none;
    }
    header .sub-menu {
        min-width: unset;
        width: 100%;
        padding: 0;
        order: 2;
        padding-left: 12px;
    }
    header .wrap {
        padding: 10px 0 15px;
    }
    header .btn-wrap {
        margin-top: 16px;
    }
    .hero {
        height: 410px;
    }
    .hero .panel {
        --panel-size: 52px;
        --pan-diff: 2.6;
    }
    .hero.hero-slide-4 .panel {
        --pan-diff: 3.6;
    }
    .hero .panel-collapsed-label {
        padding-top: 25px;
    }
    .hero .collapsed-dot,
    .hero-label .active-dot,
    .hero .active-dot {
        width: 10px;
        height: 10px;
    }
    .hero .collapsed-title,
    .hero-label span,
    .hero .panel-active-label span {
        font-size: 14px;
    }
    .hero .collapsed-plus {
        width: 30px;
        height: 30px;
        font-size: 24px;
    }
    .hero .panel-active-label {
        top: 17px;
        right: 20px;
    }
    .hero .panel-content {
        padding: 60px 20px 30px 20px;
    }
    .h1-hero .bg {
        display: block;
        min-height: 410px;
        padding: 50px 20px;
    }
    .h1-hero .hero-label {
        position: unset;
        top: 0;
        left: 0;
        margin-bottom: 15px;
    }
    .flex-title .col-auto {
        width: 100% !important;
    }
    .flex-title .col-auto.dv {
        display: none;
    }
    .flex-title .col-auto.end {
        margin-top: 20px;
    }
    .flex-title {
        margin-bottom: 50px;
    }
    section.features {
        padding: 60px 0;
    }
    .two-col-sec .col-img {
        width: 85%;
        margin: auto;
    }
    .pad-120 {
        padding: 60px 0;
    }
    .col-content h2 br,
    p br {
        display: none;
    }
    section.about .title p {
        max-width: 500px;
        margin: auto;
    }
    section.about.f-bg {
        padding: 50px 0;
    }
    section.faq .nav-pills .nav-link {
        min-width: 123px;
    }
    section.faq .accordion-button {
        font-size: 20px;
    }
    section.faq .accordion-body p {
        font-size: 16px;
    }
    .hero .panel-sub {
        max-width: 100%;
    }
    footer .bottom .row {
        --bs-gutter-y: 30px;
    }
    footer .bottom .col-auto {
        width: 33%;
    }
    footer .copyright {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .sol-grid .flex-title,
    .sec-row:not(:last-child) {
        padding-bottom: 50px;
    }
    .sec-row:not(:last-child) {
        margin-bottom: 50px;
    }
    .h1-hero .text {
        max-width: 400px;
    }
    section.content-sec,
    section.news {
        padding: 50px 0;
    }
    section.less-pad {
        padding: 50px 0 !important;
    }
    section.overlap-sec {
        padding-bottom: 120px !important;
    }
    section.overlap-top {
        margin-top: -50px;
    }
    section.video-sec img {
        border-radius: 15px;
    }
    .space-bottom {
        margin-bottom: 30px;
    }
    section.featured-eve {
        margin-top: 50px;
    }
    section.broch-sec {
        padding: 60px 0;
    }
    .post-select-filters select {
        max-width: 163px;
        font-size: 16px;
        height: 50px;
        padding-left: 15px;
        background-size: 16px 14px;
    }
    .pad-100 {
        padding: 50px 0 100px;
    }
    .team-info {
        margin-bottom: 25px;
        flex-direction: column;
        align-items: flex-start;
    }
    section.teams p.role {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    h1,
    .h1-style,
    h2,
    .h2-style {
        font-size: 30px;
    }
    h3,
    .h3-style {
        font-size: 22px;
    }
    .sec-row h3 {
        font-size: 18px;
    }
    footer .logo img,
    header.sticky .navbar-brand img {
        max-width: 130px;
    }
    .navbar-expand-lg .navbar-collapse {
        padding: 5px 18px 20px;
    }
    .hero {
        height: auto;
        min-height: 500px;
        gap: 0;
        top: unset;
        left: unset;
    }
    .hero .panel,
    .hero.hero-slide-4 .panel {
        --panel-size: 0;
        --pan-diff: 0;
        border-radius: 8px !important;
    }
    .hero .panel.active {
        width: 100%;
        /* display: block; */
    }
    .hero .panel-collapsed-label * {
        opacity: 0;
    }
    .hero-nav {
        display: flex;
        margin: -65px 0 0 20px;
    }
    .hero .btn-wrap {
        display: none;
    }
    .owl-nav-style .owl-nav {
        margin: 38px 0 0 0;
    }
    .owl-nav-style .owl-nav button {
        width: 46px;
        font-size: 22px !important;
    }
    .owl-nav-style .owl-nav {
        gap: 10px;
    }
    .owl-nav-style .owl-nav button {
        width: 46px;
        font-size: 22px !important;
    }
    .hero-progress {
        display: flex;
        top: -70px;
    }
    .hero-progress .prog-bar {
        width: 0;
    }
    .hero-progress .prog-bar.active {
        width: 100%;
    }
    .hero .panel.active .panel-content {
        transition-delay: 0.4s;
    }
    .h1-hero .bg {
        min-height: unset;
        padding: 50px 15px;
        background-position: 20% 50%;
    }
    .h1-hero .text {
        max-width: 355px;
    }
    .h1-hero .hero-label {
        margin-bottom: 10px;
    }
    .h1-hero h1 {
        margin-bottom: 15px;
    }
    .h1-hero .arrow-txt {
        margin-top: 20px;
    }
    .h1-hero .arrow-txt svg {
        min-width: 15px;
        width: 15px;
        margin-top: 8px;
    }
    .flex-title .col-auto.end {
        margin-top: 15px;
    }
    .flex-title {
        margin-bottom: 35px;
    }
    .card-wrap {
        border-radius: 10px;
    }
    .card-wrap .btn-wrap>span {
        font-size: 16px;
    }
    .card-wrap .btn-wrap {
        min-height: 80px;
    }
    .card-wrap .btn-wrap svg {
        --svg-size: 40px;
    }
    .owl-nav-style .owl-nav a.site-btn {
        margin-left: 0;
    }
    .sec-btn-wrap {
        padding-left: 115px;
        margin-top: -48px;
    }
    .grdnt-bg::before {
        height: 96.5%;
    }
    .site-bdr-card {
        padding: 15px 0 25px;
        border-left: none;
        border-bottom: var(--bdrGreen);
    }
    .card-wrap .card-img {
        margin-top: 30px;
    }
    .card-wrap.card-style-2 .card-img svg {
        height: 60px;
    }
    .col-img img,
	.col-img video{
        border-radius: 10px;
    }
    .card-wrap.event .btn-wrap {
        margin-top: 30px;
    }
    .card-wrap.style-trnsprnt h4 {
        font-size: 26px;
    }
    .card-wrap.event .btn-wrap .line {
        left: 15%;
        width: 70%;
    }
    section.faq {
        padding: 60px 0;
        --acc-radius: 10px;
    }
    section.faq .nav-pills {
        flex-wrap: nowrap;
        justify-content: flex-start;
        white-space: nowrap;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 12px;
    }
    section.faq .nav-pills::-webkit-scrollbar {
        display: none;
    }
    section.faq .nav-pills .nav-link {
        font-size: 14px;
        padding: 13px 20px;
        min-width: unset;
    }
    section.faq .nav-pills .nav-link svg {
        width: 8px;
        margin-left: 5px;
    }
    section.faq .accordion-button {
        font-size: 16px;
        padding: 12px 15px;
    }
    section.faq .accordion-button::after {
        width: 30px;
        height: 30px;
    }
    section.faq .accordion-body {
        padding: 0px 15px 10px;
    }
    footer .small-wrapper {
        padding: 0;
    }
    footer .logo p {
        font-size: 14px;
        line-height: 1.5;
    }
    footer .social {
        padding-left: 0;
        margin-top: 20px;
        text-align: center;
    }
    footer .bottom {
        margin: 30px 0 0;
        padding: 30px 0;
    }
    footer .bottom .col-auto {
        width: 50%;
    }
    footer .links a {
        font-size: 14px;
    }
    footer h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    footer .links ul {
        padding-left: 0;
    }
    footer .bottom .row {
        --bs-gutter-y: 15px;
    }
    footer .copyright {
        padding: 20px 0 20px;
        text-align: center;
    }
    footer .copyright a {
        margin-right: 10px;
        font-size: 13px;
    }
    .spy-sec .title {
        margin-bottom: 35px;
    }
    .sec-row .col-content p,
    .sec-row h3 {
        margin-bottom: 10px;
    }
    .sec-row .col-content .site-btn {
        margin-top: 20px;
    }
    .site-bdr-card.v2 {
        border-right: none;
        padding: 0px 0 24px 0;
    }
    .spy-sec:not(.full-w) {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .search-w-title {
        flex-direction: column-reverse;
        gap: 25px;
    }
    .search-w-title .search-bar {
        width: 100%;
    }
    .search-w-title .search-bar input {
        padding: 10px 18px 15px;
        font-size: 16px;
        width: calc(100% - 35px);
    }
    .search-w-title .search-bar svg {
        width: 25px;
    }
    section.featured-eve .col-content h2 {
        margin-bottom: 10px;
    }
    section.featured-eve .col-content p {
        margin: 15px 0 0;
    }
    section.featured-eve .col-content .site-btn {
        margin-top: 25px;
    }
    section.contact .form-wrap,
    section.contact .consult-card {
        padding: 25px;
    }
    .gform-theme--foundation .gform_fields {
        --gf-form-gap-y: 15px;
    }
    .form-wrap .gform_footer input[type="submit"] {
        margin-top: 20px !important;
        font-size: 18px !important;
        padding: 15px 35px !important;
    }
    .post-select-filters {
        flex-wrap: wrap;
    }
    .post-select-filters select {
        max-width: 100%;
        width: 47%;
    }
    .footer-search {
        display: none;
    }
    .pad-100 {
        padding: 50px 0;
    }
    .text p {
        margin-bottom: 10px;
    }
    .team-info {
        gap: 16px;
        margin-bottom: 20px;
    }
    .team-info .social {
        margin-top: 14px;
        gap: 15px;
    }
    .team-info .social svg {
        width: 30px;
        height: auto;
    }
}