:root {
    --font-primary: 'Darker Grotesque', sans-serif;
    --font-secondary: 'D-DIN DIN-Bold';
    --font-secondary-regular: 'D-DIN Regular';
    --body-bg: #fff;
    --color-primary: #f27f20;
    --color-yellow: #f4e478;
    --color-green: #418b5b;
    --color-black: #000;
    --color-white: #fff;
    --dark-color1: #000;
    --dark-color2: #ac9078;
    --dark-color3: #444444;
}
html,
body {
    overflow-x: hidden;
}
body {
    margin: 0;
    padding: 75px 0 0 0;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-primary);
    line-height: 1.184;
    color: var(--color-black);
    background-color: var(--color-white);
}
button:focus,
.btn.focus,
.btn:focus,
.btn:hover,
a:focus,
.btn.active,
.btn:active,
.btn:active,
.btn:active:focus,
a:active:focus,
a:active {
    outline: none;
}
.btn-link {
    text-decoration: none;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1px;
    padding: 0;
    text-transform: uppercase;
}
.btn-link svg {
    margin-left: 10px;
}
.btn-link svg path {
    transition: all 0.3s ease-in 0s;
    fill: var(--color-white);
}
.btn-link:hover {
    color: var(--color-primary);
    border-bottom-color: transparent;
}
.btn-link:hover svg path {
    fill: var(--color-primary);
}
a:hover {
    text-decoration: none;
    color: var(--color-primary);
}
a:active {
    text-decoration: none;
}
img {
    object-fit: cover;
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
}
img.no-gray,
img.logo {
    filter: grayscale(0);
}
picture {
    display: block;
    position: relative;
}
picture img {
    width: 100%;
}
video {
    width: 100%;
}
.form-select:focus,
.form-control:focus {
    box-shadow: none;
}
.form-control::placeholder {
    color: var(--color-white);
    opacity: 0.5;
}
textarea {
    resize: none;
}
h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
    font-family: var(--font-secondary);
    line-height: 1;
    color: var(--color-white);
}
h1,
.h1 {
    font-size: 58px;
    position: relative;
}
h2,
.h2 {
    font-size: 42px;
    position: relative;
    line-height: 1.2;
}
h2.small,
.h2.small {
    font-size: 36px;
}
h3,
.h3 {
    font-size: 34px;
    position: relative;
}
h4,
.h4 {
    font-size: 26px;
    position: relative;
}
h5,
.h5 {
    font-size: 22px;
}
h6 {
    font-size: 20px;
}
p {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 10px;
}
p.light {
    color: var(--color-white);
}
p.small {
    font-size: 80%;
}
.small,
small {
    font-size: 75%;
}
.text-small {
    font-size: 80%;
}
a {
    color: var(--color-primary);
    text-decoration: none;
}
b,
strong {
    font-weight: 600;
}
.link-text {
    color: inherit;
}
.btn {
    transition: all 0.3s ease-in 0s;
}
.btn-primary,
[type='button'],
[type='reset'],
[type='submit'],
button {
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 18px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    padding: 10px 30px;
    font-weight: 600;
    letter-spacing: 0.1px;
    line-height: 1;
}
.btn-primary svg {
    margin-left: 10px;
}
.btn-primary svg path {
    fill: var(--color-white);
    transition: all 0.3s ease-in 0s;
}
.btn-primary:hover,
[type='button']:hover,
[type='reset']:hover,
[type='submit']:hover,
button:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.btn-primary-outline {
    background-color: transparent;
    color: var(--color-primary);
    font-size: 18px;
    text-transform: uppercase;
    border: 1px solid var(--color-primary);
    border-radius: 0;
    padding: 10px 30px;
    font-weight: 600;
    letter-spacing: 0.1px;
    line-height: 1;
}
.btn-primary-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.btn-primary-outline svg {
    margin-left: 10px;
}
.btn-primary-outline svg path {
    fill: var(--color-primary);
    transition: all 0.3s ease-in 0s;
}
.btn-primary-outline:hover svg path {
    fill: var(--color-white);
}
.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}
.section-padding .title {
    margin-bottom: 50px;
    text-align: center;
}
.light-section {
    background: var(--dark-color2);
}
.light-section h2,
.light-section h3,
.light-section h4,
.light-section h5,
.light-section p {
    color: var(--color-white);
}
.dark-section {
    background: var(--dark-color1);
}
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section p,
.dark-section li {
    color: var(--color-white);
}
.no-bg-section {
}
.no-bg-section h1,
.no-bg-section h2,
.no-bg-section h3,
.no-bg-section h4,
.no-bg-section h5,
.no-bg-section p {
    color: var(--color-black);
}
.no-bg-section .icon {
    filter: brightness(0);
}
.white-bg-section {
    background: var(--color-white);
}
.white-bg-section h1,
.white-bg-section h2,
.white-bg-section h3,
.white-bg-section h4,
.white-bg-section h5,
.white-bg-section p {
    color: var(--color-black);
}
.theme-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.theme-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    text-align: left;
    font-size: 16px;
}
.theme-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 3px;
    height: 3px;
    border-radius: 10px;
    background: var(--color-blue);
}
.color-green {
    color: var(--color-green);
}
.color-black {
    color: var(--color-black);
}
.bg-white {
    background-color: var(--color-white);
}
.bg-black {
    background-color: var(--color-black);
}
.site-header {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
    transition: all 0.3s ease-in 0s;
    background: var(--color-black);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
}
.site-header .container-fluid {
    position: relative;
}
.site-header .custom-logo-link {
    max-width: 120px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.site-header .custom-logo-link img {
    filter: grayscale(0);
}
.site-header .navbar-nav {
    --bs-navbar-nav-link-padding-x: 16px;
    --bs-nav-link-color: var(--color-white);
    --bs-nav-link-hover-color: var(--color-primary);
    --bs-navbar-active-color: var(--color-primary);
}
.site-header .navbar-nav li.menu-item-has-children > a::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 2px;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.site-header .dropdown-menu {
    --bs-dropdown-bg: var(--dark-color1);
    --bs-dropdown-font-size: 18px;
    --bs-dropdown-padding-y: 0;
    --bs-dropdown-spacer: 0;
    --bs-dropdown-min-width: 200px;
}
.site-header .sub-menu {
    display: none;
    position: absolute;
    background-color: var(--dark-color1);
    min-width: 160px;
    z-index: 1;
    list-style: none;
    padding: 0;
}
.site-header li:hover > .sub-menu {
    display: block;
}
.site-header .sub-menu li a {
    color: var(--color-white);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}
.sub-menu li a:hover {
    color: var(--color-primary);
}
.hero-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero-section .hero-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: 90vh;
}
.hero-section h1 {
    font-family: var(--font-secondary-regular);
    text-align: center;
    margin-bottom: 30px;
}
.hero-section h1 strong {
    font-family: var(--font-secondary);
}
.hero-section p {
    font-size: 24px;
    font-weight: 600;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-section .top-logo {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}
.hero-section .top-logo img {
    filter: grayscale(0);
}
.hero-section .scroll-down {
    display: inline-flex;
    flex-direction: column;
    color: var(--color-white);
}
.hero-section .scroll-down .text {
    font-size: 24px;
}
.hero-section .scroll-down .more-icon {
    animation: jumpInfinite 1.5s infinite;
    transform: translateY(0px);
}
@keyframes jumpInfinite {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}
.hero-bg {
    position: absolute;
    left: 0;
    bottom: -10vh;
    right: 0;
    width: 100vw;
    height: 70vh;
}
.hero-img-wrap img {
    filter: grayscale(0);
    margin-bottom: 8px;
    margin-top: 8px;
    width: 100%;
}
.offer-section {
}
.offer-section h2 {
    text-align: center;
}
.offer-block {
    padding: 10px 15%;
    text-align: center;
}
.offer-block h4 {
    font-weight: normal;
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: var(--font-secondary-regular);
}
.offer-block h4 a {
    color: var(--color-black);
}
.offer-block .icon-wrap {
    max-width: 75px;
    margin-left: auto;
    margin-right: auto;
}
.offer-block .icon-wrap img {
    filter: brightness(0);
}
.offer-block .icon-wrap:hover img {
    animation: wiggle 1.5s ease 0s infinite;
}
@keyframes wiggle {
    0% {
        transform: translate(1px, 0px) rotate(0deg);
    }
    10% {
        transform: translate(0px, -1px) rotate(-1deg);
    }
    20% {
        transform: translate(-1px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(0px, -1px) rotate(0deg);
    }
    40% {
        transform: translate(1px, 0px) rotate(1deg);
    }
    50% {
        transform: translate(0px, 1px) rotate(-1deg);
    }
    60% {
        transform: translate(-1px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(0px, 0px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(0px, 0px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -1px) rotate(-1deg);
    }
}
.offer-swiper {
    --swiper-navigation-size: 54px;
    --swiper-navigation-sides-offset: 0px;
}
.offer-swiper .swiper-button-next img,
.offer-swiper .swiper-button-prev img {
    filter: brightness(0);
}
.offer-swiper .swiper-button-next:after,
.offer-swiper .swiper-button-prev:after {
    display: none;
}
.why-swiper {
}
.why-section h2 {
    text-align: center;
}
.why-section .bottom-action {
    text-align: center;
    margin-top: 50px;
}
.why-block {
    position: relative;
    overflow: hidden;
}
.why-block:after {
    content: '';
    background: linear-gradient(
        180deg,
        rgba(68, 68, 68, 0) 2.4%,
        rgba(24, 24, 24, 0.7) 62.91%
    );
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.why-block img {
    width: 100%;
    transition: all 0.4s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.why-block:hover img {
    filter: grayscale(0);
    transform: scale3d(1.05, 1.05, 1);
}
.why-block .overly {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 24px;
    z-index: 1;
    transition: all 0.3s ease-in 0s;
}
.why-block:hover .overly {
}
.why-block .overly .number {
    font-size: 54px;
    display: block;
}
.progressbar-theme .swiper-bottom {
    position: relative;
    margin-top: 50px;
    height: 10px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    --swiper-pagination-color: var(--color-white);
    --swiper-pagination-progressbar-size: 2px;
    --swiper-pagination-progressbar-bg-color: rgba(255, 255, 255, 0.25);
}
.progressbar-theme .swiper-pagination-progressbar-fill {
    height: 4px;
    top: -1px;
}
.project-section img,
.home-team-section .img-block img {
    width: 100%;
    transition: all 0.4s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.project-section img:hover,
.home-team-section .img-block img:hover {
    filter: grayscale(0);
    transform: scale3d(1.05, 1.05, 1);
}
.home-team-section .left-box {
    background: var(--dark-color1);
    height: 100%;
    padding: 40px;
}
.home-team-section .left-box p {
    font-size: 36px;
    line-height: 0.9;
    font-weight: 500;
    color: var(--color-white);
}
.home-team-section .left-box p strong {
    font-weight: 800;
}
.home-team-section .right-box {
    background: var(--dark-color1);
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
}
.home-team-section .right-box p {
    color: var(--color-white);
    font-size: 30px;
    margin-bottom: 25px;
}
.home-team-section .details {
    background: var(--dark-color1);
    text-align: center;
    position: relative;
    padding: 10px;
}
.home-team-section .details .name {
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    color: var(--color-white);
    display: block;
}
.home-team-section .details .deg {
    display: block;
    color: var(--color-white);
    opacity: 0.8;
    margin-bottom: 3px;
}
.project-section h2 {
    color: var(--color-white);
    text-align: center;
    padding: 5px;
    margin-bottom: 30px;
}
.project-section .cta-box {
    background: var(--color-white);
    color: var(--color-black);
    text-align: center;
    padding: 10%;
    margin-bottom: 15px;
}
.project-section .cta-box p {
    font-size: 30px;
    margin-bottom: 25px;
    color: var(--color-black);
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
}
.project-section .cta-box a {
}
.project-section .bottom-box {
    background: var(--color-white);
    padding: 20px 15%;
    text-align: center;
    margin-top: 15px;
}
.project-section .bottom-box p {
    color: var(--color-black);
    font-size: 34px;
    font-weight: 600;
    margin: 0;
}
.marquee-section {
    background: var(--color-yellow);
}
.marquee-section ul {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}
.marquee-section ul li {
    will-change: transform;
    transform: translateX(0);
    white-space: nowrap;
    animation: marquee-logo 14s linear infinite;
    padding: 10px 20px;
}
@keyframes marquee-logo {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.marquee-section ul li img {
    filter: grayscale(0);
    max-width: 445px;
}
.list-true {
    list-style: none;
    padding-left: 0;
}
.list-true li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 25px;
    height: 25px;
    background-image: url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 0.200195C23.1592 0.200196 29.7998 6.84075 29.7998 15C29.7998 23.1592 23.1592 29.7998 15 29.7998C6.84075 29.7998 0.200196 23.1592 0.200195 15C0.200195 6.84075 6.84075 0.200195 15 0.200195ZM15 2.52539C8.12337 2.52539 2.52539 8.12337 2.52539 15C2.52539 21.8766 8.12337 27.4746 15 27.4746C21.8766 27.4746 27.4746 21.8766 27.4746 15C27.4746 8.12337 21.8766 2.52539 15 2.52539ZM19.7285 10.7021C20.1541 10.2767 20.8296 10.2505 21.2861 10.623L21.374 10.7021C21.7995 11.1276 21.8263 11.8032 21.4541 12.2598L21.374 12.3477L14.3477 19.374C14.1313 19.5473 13.8725 19.6337 13.6143 19.6338C13.3499 19.6338 13.0897 19.5466 12.877 19.373L12.7891 19.293L8.63086 15.1348C8.20568 14.7093 8.17874 14.0346 8.55078 13.5781L8.63086 13.4902C9.05628 13.0649 9.7309 13.0381 10.1875 13.4102L10.2764 13.4902L13.4678 16.6807L13.6094 16.8223L13.75 16.6807L19.7285 10.7021Z" fill="white" stroke="%23181818" stroke-width="0.4"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}
.list-true li {
    position: relative;
    padding-left: 45px;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}
.list-true li strong {
    font-weight: 800;
}
.testimonial-section .test-side li {
    color: var(--color-white);
}
.testimonial-section .test-side p {
    font-size: 22px;
    text-align: center;
}
.testimonial-section .name {
    font-family: var(--font-secondary-regular);
    font-weight: normal;
    text-align: center;
    margin-top: 20px;
    font-size: 22px;
}
.testimonial-section .deg {
    color: var(--color-white);
    font-weight: 500;
    text-align: center;
    display: block;
    font-size: 18px;
}
.testimonial-section .image-side img {
    width: 100%;
}
.testimonial-section {
    --swiper-pagination-bullet-width: 40px;
    --swiper-pagination-bullet-height: 40px;
    --swiper-pagination-bullet-inactive-color: transparent;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-color: var(--color-white);
}
.testimonial-section .swiper-pagination-bullet {
    border: 2px solid var(--color-black);
    font-size: 24px;
    line-height: 1.25;
    color: var(--color-black);
}
.testimonial-section .swiper-pagination-bullet-active {
    color: var(--color-white);
    background-color: var(--color-black);
}
.testimonial-section .bottom-block {
    position: relative;
    padding-top: 100px;
}
.contact-section h5 {
    font-family: var(--font-secondary-regular);
    text-align: center;
}
.contact-section .wpcf7-form-control-wrap {
    margin-bottom: 30px;
    display: block;
}
.contact-section .form-control {
    border-radius: 0;
    border-color: var(--color-white);
    border-width: 0 0 1px 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-white);
    padding-left: 0;
    background-color: transparent;
}
.contact-section .form-select {
    border-radius: 0;
    border-color: var(--color-white);
    border-width: 0 0 1px 0;
    padding-left: 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-white);
    background-color: transparent;
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.contact-section .form-select option {
    background: var(--color-black);
    color: var(--color-white);
}
.contact-section .form-select option:focus,
.contact-section .form-select option:hover {
    background: var(--color-white);
    color: var(--color-black);
}
.contact-section .note {
    text-align: center;
}
.contact-section .div-submit {
    text-align: center;
    position: relative;
    margin-top: 50px;
}
.contact-section .div-submit .wpcf7-spinner {
    position: absolute;
    margin: 0;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
}
.site-footer {
    background: var(--color-black);
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    border-top: 1px solid #333;
}
.footer-logo img {
    filter: grayscale(0);
    max-width: 125px;
}
.footer-menu {
    --bs-nav-link-color: var(--color-white);
    --bs-nav-link-font-size: 18px;
    --bs-nav-link-padding-y: 0;
    --bs-nav-link-hover-color: var(--color-primary);
}
.footer-menu .menu-item + .menu-item::before {
    content: '/';
    color: var(--color-white);
    float: left;
    position: relative;
    left: -4px;
}
.footer-connect ul {
    display: flex;
    margin: 0;
    justify-content: end;
    flex-wrap: wrap;
}
.footer-connect ul li {
}
.footer-connect ul li + li::before {
    content: '|';
    color: var(--color-white);
    float: left;
    position: relative;
    left: -4px;
}
.footer-connect ul li > a {
    color: var(--color-white);
    padding-left: 15px;
    padding-right: 17px;
    font-size: 18px;
}
.footer-connect ul li > a:hover {
    color: var(--color-primary);
}
.footer-connect .social {
    display: flex;
}
.footer-connect .social a {
    padding-left: 5px;
    padding-right: 5px;
}
.problem-section {
    position: relative;
}
.problem-section h5 {
    font-family: var(--font-secondary-regular);
    text-align: center;
}
.problem-section .top-block {
    margin-bottom: 100px;
}
.problem-section .top-block h2 {
    margin-bottom: 20px;
}
.problem-section .top-block p {
    max-width: 660px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.problem-section .left-box {
    position: absolute;
    left: 0;
    top: 115px;
    max-width: 25%;
}
.problem-section .right-box {
    position: absolute;
    right: 0;
    top: 150px;
    max-width: 25%;
}
.problem-section svg {
    max-width: 100%;
    height: auto;
}
.pro-box .icon-wrap {
    margin-bottom: 20px;
}
.pro-box .icon-wrap img {
    filter: brightness(0);
}
.services-block {
    padding: 60px 40px 100px 40px;
    text-align: center;
    height: 100%;
    position: relative;
    background-color: var(--dark-color3);
}
.services-block h5 {
    margin-bottom: 15px;
    min-height: 45px;
}
.services-block .icon-wrap {
    max-width: 75px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}
.services-block .icon-wrap:hover img {
    animation: wiggle 1.5s ease 0s infinite;
}
.services-block .btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.services-swiper .swiper-slide {
    padding: 1px;
    height: auto;
}
.text-section .text-block .btn {
    margin-top: 25px;
}
.text-section h5 {
    font-family: var(--font-secondary-regular);
    text-align: center;
}
.service-hero {
}
.service-hero .header-text strong {
    font-family: var(--font-secondary);
}
.service-hero .header-text span {
    display: block;
    white-space: nowrap;
}
.hero-ani {
    position: relative;
    margin-bottom: 20px;
}
.hero-ani .header-text {
    font-size: 9rem;
    font-size: clamp(2.75rem, 0.6071rem + 6.8571vw, 8.75rem);
    line-height: 0.9;
    font-family: var(--font-secondary);
    text-align: center;
    margin-bottom: 0px;
    color: var(--color-white);
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
}
.hero-ani h1.header-text {
    z-index: 2;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}
.hero-ani .hero-img {
    max-width: 480px;
}
.hero-ani .hero-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.hero-ani .hero-text img {
    width: 90%;
    max-width: 900px;
}
.hero-ani .hero-text img.one {
    margin-bottom: 20px;
}
.slide-left {
    animation: 3s slide-left;
}
@keyframes slide-left {
    from {
        margin-left: 150vw;
    }
    to {
        margin-left: 0;
    }
}
.slide-right {
    animation: 3s slide-right;
}
@keyframes slide-right {
    from {
        margin-left: -150vw;
    }
    to {
        margin-left: 0;
    }
}
.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: linear;
}
.video-section .ratio {
    --bs-aspect-ratio: 50.25%;
}
.rei-section .text-block p {
    font-size: 24px;
    max-width: 450px;
    margin-bottom: 25px;
}
.rei-section .status-block {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.rei-section .status-box {
    background: rgba(242, 240, 236, 0.5);
    text-align: center;
    padding: 50px 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rei-section .status-box p {
    color: var(--color-white);
    font-size: 20px;
}
.rei-section .status-box p strong {
    display: block;
    font-size: 32px;
}
.rei-section .icon-block {
    padding: 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rei-section .icon-wrap {
    position: relative;
}
.rei-section .icon-wrap:after {
    content: '';
    border-bottom: 2px dashed rgba(242, 240, 236, 0.5);
    position: absolute;
    left: 100%;
    top: 50%;
    width: 0vw;
    transition: width 1s linear;
    transition-delay: 0.95s;
}
.rei-section .icon-wrap.elm-show:after {
    width: 100vw;
}
.rei-section .icon-wrap.b-right:after {
    left: auto;
    right: 100%;
}
.rei-section .icon-wrap:hover img {
    animation: wiggle 1.5s ease 0s infinite;
}
.rei-section .elm-ani .border-ani {
    width: 160px;
    height: 160px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px;
}
.rei-section .elm-ani .border-ani::before,
.rei-section .elm-ani .border-ani::after {
    box-sizing: inherit;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100%;
}
.rei-section .elm-ani .border-ani::before {
    border: 2px dashed transparent;
}
.rei-section .elm-ani.elm-show .border-ani::before {
    border-top-color: rgba(242, 240, 236, 0.5);
    border-right-color: rgba(242, 240, 236, 0.5);
    border-bottom-color: rgba(242, 240, 236, 0.5);
    transition:
        border-top-color 0.95s linear,
        border-right-color 0.95s linear 0.1s,
        border-bottom-color 0.95s linear 0.2s;
    transform: rotate(135deg);
}
.rei-section .elm-ani .border-ani::after {
    border: 0 dashed transparent;
    transform: rotate(-180deg);
}
.rei-section .elm-ani.elm-show .border-ani::after {
    border-top: 2px dashed rgba(242, 240, 236, 0.5);
    border-left-width: 2px;
    border-right-width: 2px;
    transform: rotate(45deg);
    transition:
        transform 0.85s linear 0s,
        border-left-width 0s linear 0.75s;
}
.icon-list {
    display: flex;
    margin-bottom: 50px;
}
.service-box {
    background: #f2f2f2;
    border-radius: 10px;
    padding: 25px 25px 50px 25px;
    min-height: 370px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.service-box + .service-box {
    margin-top: 40px;
}
.service-box .icon-wrap {
    max-width: 75px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    border: 2px dashed var(--color-primary);
    border-radius: 100%;
    padding: 5px;
}
.service-box .icon-wrap span {
    border-radius: 100%;
    background: var(--color-primary);
    display: block;
    height: 100%;
    padding: 10px;
}
.service-box h5 {
    color: var(--color-black);
}
.service-box p {
    color: var(--color-black);
}
.service-box .link {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%) rotate(45deg);
    font-size: 18px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 100%;
}
.service-box .link svg {
    height: 40px;
    width: 40px;
}
.service-box-center {
    padding: 25px 15px 15px 15px;
    background-color: var(--color-primary);
    height: 100%;
}
.service-box-center .icon-wrap {
    border-color: var(--color-white);
}
.service-box-center .icon-wrap span {
    background: var(--color-white);
}
.service-box-center .icon-wrap span img {
    filter: invert(100%);
}
.service-box-center h5,
.service-box-center p {
    color: var(--color-white);
}
.service-box-center .service-img-block {
    position: relative;
    padding-top: 20px;
}
.service-box-center .service-img-block img {
    border-radius: 5px;
    filter: grayscale(0);
}
.service-box-center .service-img-block .link {
    top: 0;
    bottom: auto;
    z-index: 1;
    background: var(--color-white);
    color: var(--color-primary);
}
.service-box-image {
    display: none;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}
.service-box:not(.service-box-center) {
    cursor: pointer;
}
.service-box:not(.service-box-center):hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.about-hero-section {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}
.about-hero-section h1 {
    text-align: center;
    text-transform: uppercase;
}
.about-hero-section h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 1.3851rem + 4.0541vw, 6.25rem);
    line-height: 1;
    position: relative;
    transform: translateY(-50%);
    mix-blend-mode: exclusion;
}
.about-hero-section .watermark {
    color: var(--color-white);
    font-size: clamp(6.25rem, -0.2534rem + 23.6486vw, 28.125rem);
    line-height: 0.75;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.1;
    user-select: none;
    text-align: center;
    width: 100%;
    white-space: nowrap;
}
.presenting-section .top-block {
    text-align: center;
    margin-bottom: 50px;
}
.presenting-section h5 {
    font-family: var(--font-secondary-regular);
    margin-bottom: 15px;
}
.presenting-section .logo {
    margin-bottom: 20px;
}
.presenting-wrap {
    padding-left: 8%;
    padding-right: 8%;
}
.presenting-wrap .pre-box {
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    aspect-ratio: 1 / 1;
}
.presenting-wrap .pre-box .icon {
    width: auto;
    height: 70px;
    margin-bottom: 20px;
}
.presenting-wrap .pre-box h4 {
    color: var(--color-white);
    text-align: center;
}
.related-blogs .blog-block .ratio {
    overflow: hidden;
}
.related-blogs .blog-block img {
    width: 100%;
    transition: all 0.4s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.related-blogs .blog-block img:hover {
    filter: grayscale(0);
    transform: scale3d(1.05, 1.05, 1);
}
.related-blogs .blog-block .details {
    padding-top: 20px;
}
.related-blogs .blog-block .details h5 a {
    color: #fff;
    font-family: var(--font-secondary-regular);
    letter-spacing: 1px;
    line-height: 1.3;
}
.related-blogs .blog-block .details h5 a:hover {
    color: var(--color-primary);
}
.related-blogs .btn-wrap {
    text-align: center;
    margin-top: 50px;
}
.story-section .swiper-button-next:after,
.story-section .swiper-button-prev:after {
    display: none;
}
.story-section .swiper-button-next,
.story-section .swiper-button-prev {
    position: static;
    margin: 0 10px;
    color: var(--color-white);
}
.story-swiper .swiper-slide-active img {
    filter: grayscale(0);
    transform: scale3d(1.05, 1.05, 1);
}
.story-section .right-block {
    position: relative;
}
.story-section .bottom-arrow {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    margin-top: 25px;
}
.story-section .story-text {
    margin-left: 12%;
    margin-right: 12%;
}
.story-section .story-text h3 {
    position: relative;
    opacity: 0;
    top: 0;
}
.story-section .story-text p {
    font-size: 22px;
    font-weight: 400;
    position: relative;
    opacity: 0;
    top: 0;
}
.story-section .animate-title {
    animation: text-fade-up 1s forwards ease;
}
.story-section .animate-description {
    animation: text-fade-up 1s 0.2s forwards ease;
}
.story-section .animate-away {
    animation: text-fade-away 300ms forwards ease;
}
@keyframes text-fade-up {
    from {
        opacity: 0;
        top: 100px;
    }
    to {
        opacity: 1;
        top: 0;
    }
}
@keyframes text-fade-away {
    from {
        opacity: 1;
        top: 0;
    }
    to {
        opacity: 0;
        top: -100px;
    }
}
.home-team-section {
    position: relative;
    z-index: 1;
}
.home-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/team-bg.jpg');
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
}
.team-image-block {
    border: 1px solid var(--color-black);
    height: 100%;
}
.team-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0);
}
.team-detail-block {
    border: 1px solid var(--color-black);
    padding: 20px 100px 20px 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.team-detail-block h3 {
    margin-bottom: 15px;
}
.team-detail-block h5 {
    margin-bottom: 20px;
}
.team-detail-block p {
    font-size: 22px;
}
.team-detail-block .name {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 18px;
    font-family: var(--font-secondary);
    padding: 10px 5px;
    writing-mode: vertical-lr;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-detail-block .name strong {
    font-size: 20px;
    font-weight: 500;
    padding: 5px;
}
.about-cta-section {
    background-image: url(assets/images/about-cta-bg.png);
    background-repeat: repeat;
}
.about-cta-section .text-block {
    padding: 40px;
}
.about-cta-section .text-block .title {
    font-family: var(--font-secondary-regular);
    margin-bottom: 25px;
}
.about-cta-section .text-block .title strong {
    font-family: var(--font-secondary);
}
.timeline {
    display: none;
    margin: 0;
    position: relative;
    list-style-type: none;
    padding-left: 120px;
    padding-right: 20px;
}
.timeline li {
    padding-bottom: 1.5rem;
    border-left: 2px solid #8c8c8c;
    position: relative;
    padding-left: 20px;
    margin-left: 10px;
    min-height: 100px;
    overflow: visible !important;
}
.timeline li:last-child {
    border-color: transparent;
    padding-bottom: 0;
}
.timeline li:before {
    content: '';
    width: 15px;
    height: 15px;
    background: #8c8c8c;
    border: 1px solid #8c8c8c;
    border-radius: 50%;
    position: absolute;
    left: -9px;
    top: 0px;
}
.timeline li .year {
    position: absolute;
    left: -115px;
    top: -10px;
    width: 80px;
    background: #8c8c8c;
    color: var(--color-white);
    padding: 5px 15px;
    font-size: 22px;
    font-family: var(--font-secondary);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.timeline li .long-year {
    top: -23px;
}
.timeline li .year:after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #8c8c8c;
    border-width: 18px;
    margin-top: -18px;
}
.timeline li p {
    font-size: 22px;
    position: relative;
    top: -8px;
}
.text-page .entry-header {
    background: var(--color-black);
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}
.text-page .entry-content {
    padding: 3.25vw 10.41667vw;
}
.text-page .entry-content .wp-block-heading {
    color: var(--color-black);
    margin-top: 30px;
}
.text-page .entry-content h4 {
    font-size: 22px;
}
.text-page .entry-content p,
.text-page .entry-content .wp-block-list {
    font-family: var(--font-primary);
    font-size: 22px;
    line-height: 1.7;
}
.stocks-hero {
    overflow: visible;
}
.stocks-hero .stock-hero-img {
    margin-top: 30px;
}
.stocks-hero .stock-hero-img-mobile {
    display: none;
}
.ltw-section {
    position: relative;
}
.ltw-wrap {
    background: var(--color-white);
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
}
.ltw-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ltw-block img {
    margin-bottom: 30px;
}
.ltw-block h3 {
    font-family: var(--font-secondary-regular);
    max-width: 625px;
    color: var(--color-black);
}
.multiply-wrap {
    background: var(--color-green);
    padding-top: 60px;
    padding-bottom: 60px;
    z-index: 1;
    position: relative;
}
.multiply-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.multiply-wrap img {
    margin-bottom: 30px;
    max-width: 200px;
}
.multiply-wrap h2 {
    font-family: var(--font-secondary-regular);
    text-align: center;
    max-width: 930px;
}
.multiply-wrap h2 strong {
    font-family: var(--font-secondary);
}
.but-wrap h3 {
    font-size: 160px;
    display: inline-block;
    background: var(--color-green);
    color: var(--color-white);
    padding: 5px 15px;
    font-style: italic;
    font-family: var(--font-secondary-regular);
}
.animation-container {
    height: 100vh;
    position: relative;
}
.sticky-statement {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.sticky-statement .container {
    padding-bottom: 10vh;
}
#ltw-wrap {
    opacity: 1;
}
.ltw-wrap,
.but-wrap,
.multiply-wrap {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.blogs-section {
}
.blogs-section .blog-block {
    border: 2px solid var(--dark-color3);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}
.blogs-section .blog-block .ratio {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    overflow: hidden;
}
.blogs-section .blog-block .ratio img {
    transition: all 0.4s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.blogs-section .blog-block:hover .ratio img {
    filter: grayscale(0);
    transform: scale3d(1.05, 1.05, 1);
}
.blogs-section .blog-details {
    padding: 15px 0;
}
.blogs-section .tag-list {
    list-style: none;
    margin: 0 0 0px 0;
    padding: 0;
}
.blogs-section .tag-list li {
    display: inline-block;
}
.blogs-section .tag-list li span {
    display: inline-block;
    background: var(--dark-color3);
    color: var(--color-white);
    border-radius: 20px;
    padding: 3px 20px 8px 20px;
    margin-bottom: 5px;
}
.blogs-section .date {
    opacity: 0.7;
}
.blogs-section .blog-title {
    margin-top: 10px;
    margin-bottom: 15px;
}
.blogs-section .blog-title a {
    color: var(--color-black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blogs-section .blog-title a:hover {
    color: var(--color-primary);
}
.blogs-section .left-blog-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--color-green);
    border-color: var(--color-green);
}
.blogs-section .left-blog-block h2 {
    color: var(--color-white);
}
.blogs-section .blog-navigation {
    position: relative;
    width: 120px;
    margin-left: auto;
    margin-right: 0;
    display: flex;
    justify-content: space-between;
}
.blogs-section .blog-navigation {
}
.blogs-section .blog-navigation .swiper-button-next::after,
.blogs-section .blog-navigation .swiper-button-prev::after {
    display: none;
}
.blogs-section .blog-navigation .swiper-button-next,
.blogs-section .blog-navigation .swiper-button-prev {
    position: static;
    width: 50px;
    height: 50px;
}
.blogs-section .blog-navigation .swiper-button-next img,
.blogs-section .blog-navigation .swiper-button-prev img {
}
.blog-swiper .swiper-slide {
    height: auto !important;
}
.process-section .offer-block {
    padding: 10px 5%;
}
.process-section .offer-block.top-block {
    margin-bottom: 50px;
}
.process-section .offer-block h4 strong {
    display: inline-block;
    line-height: 40px;
    margin-bottom: 15px;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background: var(--color-white);
    color: var(--color-black);
}
.process-section .left-arrow {
    position: relative;
    right: -30%;
    width: 100%;
    filter: grayscale(0);
}
.process-section .right-arrow {
    position: relative;
    left: -30%;
    filter: grayscale(0);
}
.process-section .line-arrow {
    filter: grayscale(0);
}
.process-section svg {
    width: 100%;
}
.elm-ani .path {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
}
.elm-ani.elm-show .path {
    animation: dash 5s linear alternate 1 forwards;
}
@keyframes dash {
    from {
        stroke-dashoffset: 500;
    }
    to {
        stroke-dashoffset: 0;
    }
}
.wpcf7 form .wpcf7-response-output {
    border: none;
    color: #fff;
}
.wpcf7 form.invalid .wpcf7-response-output {
    color: #dc3232;
}
.contact-hero-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 80px;
    padding-right: 80px;
    background-color: #fff;
    background-blend-mode: luminosity;
}
.contact-hero-section:after {
    content: '';
    background-color: #000;
    opacity: 0.65;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.contact-hero-section .left-block {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.contact-hero-section .left-block h1 {
    font-family: var(--font-secondary-regular);
    margin-bottom: 20px;
}
.contact-hero-section .bottom-block h4 {
}
.contact-hero-section .bottom-block h5 {
    font-family: var(--font-secondary-regular);
    font-size: 20px;
    margin-top: 10px;
}
.contact-hero-section .bottom-block a {
    color: var(--color-white);
}
.contact-hero-section .bottom-block a:hover {
    color: var(--color-primary);
}
.contact-hero-section .right-block {
    position: relative;
    z-index: 1;
    padding: 20px;
    border-radius: 10px;
}
.contact-hero-section .right-block .wpcf7 {
    margin-top: 25px;
}
.contact-hero-section .wpcf7-form-control-wrap {
    margin-bottom: 30px;
    display: block;
}
.contact-hero-section .form-select,
.contact-hero-section .form-control {
    padding-top: 10px;
    padding-bottom: 10px;
}
.contact-hero-section .form-control::placeholder {
    color: var(--bs-secondary-color);
    opacity: 1;
}
.faq-section {
    padding-left: 20px;
    padding-right: 20px;
}
.accordion-dark {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-btn-padding-y: 0;
    --bs-accordion-bg: transparent;
    --bs-accordion-body-padding-x: 0;
}
.accordion-dark p {
}
.accordion-dark .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--color-black);
    box-shadow: none;
}
.accordion-dark .accordion-button {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: transparent;
    border: none;
    color: var(--color-black);
}
.accordion-dark .accordion-body {
    background-color: transparent;
    padding-top: 0;
}
.social-list a {
    width: 100%;
    text-align: center;
    background: #fff;
    color: var(--dark-color2);
    border-radius: 100%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25vw;
}
.social-list a:hover {
    color: var(--dark-color1);
}
.social-list a svg {
    width: 100%;
    height: 100%;
}
.infinity-line {
    display: flex;
    padding-bottom: 25px;
}
.infinity-line ul {
    flex: none;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    animation: marquee-left 50s infinite linear;
}
.infinity-line ul li {
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 40px;
    padding: 0 30px;
    white-space: nowrap;
    position: relative;
    font-family: var(--font-secondary-regular);
    letter-spacing: 1px;
}
.infinity-line ul li:after {
    content: '/';
    position: absolute;
    right: -7px;
    top: 0;
}
@-webkit-keyframes marquee-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.legal-services-hero .hero-wrap {
    min-height: 85vh;
    justify-content: center;
}
.legal-services-hero .hero-wrap .down-arrow {
    margin-top: 40px;
}
.legal-services-hero .scroll-down {
    color: var(--color-primary);
}
.legal-services-hero .hero-wrapper {
    transition: all 1s;
    margin-top: 30px;
    overflow: hidden;
}
.legal-services-hero:not(.is-top) .hero-wrapper {
    max-width: 100%;
    margin-top: 0px;
}
.legal-services-hero .hero-wrapper .white-bg-section {
    border-radius: 30px;
}
.legal-advisors-section .section-inner {
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    padding: 50px;
}
.legal-advisors-section ul {
    margin-top: 30px;
    margin-bottom: 30px;
}
.legal-advisors-section li {
    margin-bottom: 10px;
}
.legal-advisors-section li svg {
    width: 22px;
    height: auto;
}
.legal-advisors-section video {
    border-radius: 20px;
}
.legal-support-section .section-inner {
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    padding: 50px;
}
.legal-support-section .box-block h3 {
    margin-bottom: 20px;
}
.legal-support-section .box-block picture {
    border-radius: 20px;
    overflow: hidden;
}
.legal-support-section .box-block picture img {
    width: 100%;
    transition: all 0.4s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.legal-support-section .box-block picture:hover img {
    filter: grayscale(0);
    transform: scale3d(1.05, 1.05, 1);
}
.reach-section {
    border-bottom: 1px solid #333;
}
.reach-section .box {
    aspect-ratio: 1/1;
    display: flex;
    width: 100%;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    padding: 3vw;
}
.reach-section .box span {
    color: #fff;
    font-size: 32px;
    text-align: center;
}
.s-list {
    position: relative;
    font-weight: 600;
    padding-left: 20px;
    display: block;
    margin-bottom: 15px;
    font-size: 24px;
}
.s-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    background: var(--color-black);
    width: 8px;
    height: 8px;
    border-radius: 100%;
}
.s-list.light {
    color: var(--color-white);
}
.s-list.light::before {
    background: var(--color-white);
}
.promise-section .top-part p {
    font-size: 120%;
}
.promise-section .offer-block {
    padding-left: 10%;
    padding-right: 10%;
}
.hww-section {
}
.dark-box {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease-in 0s;
}
.dark-box:hover {
    background-color: var(--color-primary);
}
.dark-box span {
    color: #fff;
    opacity: 0.5;
}
.dark-box h4 {
    text-transform: uppercase;
    font-family: var(--font-secondary-regular);
    letter-spacing: 1px;
}
.dark-box p {
    opacity: 0.5;
}
.why-india-section .left-part h2 {
    font-family: var(--font-secondary-regular);
}
.why-india-section .left-part p {
}
.stat-block {
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 15px;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 25px;
    height: calc(100% - 25px);
}
.stat-block span {
    font-size: 70px;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}
.stat-block h5 {
    font-family: var(--font-secondary-regular);
}
.concierge-hero .content-part {
    width: 50%;
    max-width: 900px;
    text-align: left;
    padding-top: 250px;
    padding-bottom: 250px;
    padding-left: 20px;
    position: relative;
}
.concierge-hero .content-part h1 {
    text-align: left;
    max-width: 500px;
}
.concierge-hero .content-part p {
    text-align: left;
    max-width: 100%;
    margin-bottom: 30px;
}
.video-bg-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.video-bg-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-template-news-page {
    background-color: var(--color-blue);
}
.news-list .accordion-button .deg {
    font-size: 11px;
    letter-spacing: 1px;
    min-width: 180px;
    max-width: 180px;
}
.news-list.team-accordion .accordion-button .btn-text {
    color: var(--color-light-blue2);
    padding-right: 100px;
}
.archive,
.single-post {
    background-color: var(--color-blue);
}
.single-post .posted-on {
    color: var(--color-light-blue2);
}
.single-post .posted-on time + time {
    display: none;
}
.single-post .page-section .post-thumbnail {
    margin-bottom: 30px;
}
.single-post .page-section .post-thumbnail img {
    width: 100%;
}
.single-post .entry-header {
    margin-bottom: 30px;
}
.blog-section .post-thumbnail {
    margin-top: 30px;
}
.blog-section .entry-content h1,
.blog-section .entry-content h2,
.blog-section .entry-content h3,
.blog-section .entry-content h4,
.blog-section .entry-content h5,
.blog-section .entry-content h6,
.blog-section .entry-content p {
    color: var(--color-gray);
}
.blog-section .entry-content h1 {
    font-size: calc(1.325rem + 0.9vw);
}
.blog-section .entry-content h2 {
    font-size: calc(1.125rem + 0.8vw);
}
.blog-section .entry-content h3 {
    font-size: calc(0.9rem + 0.8vw);
}
.blog-section .entry-content p {
    margin-bottom: 25px;
}
.blog-section .entry-footer .cat-links {
    color: var(--color-light-blue2);
}
.blog-section .wp-block-image.size-full img {
    width: 100%;
}
.single-post .site-footer {
    margin-top: 100px;
}
.post-navigation .nav-links {
    display: flex;
}
.post-navigation .nav-links .nav-next {
    width: 100%;
}
.post-navigation .nav-links .nav-previous {
    width: 50%;
}
.post-navigation .nav-links .nav-previous + .nav-next {
    width: 50%;
}
.post-navigation .nav-links .nav-next {
    text-align: right;
}
.post-navigation .nav-links a {
    color: var(--color-primary);
}
.post-navigation .nav-subtitle {
    display: block;
    font-family: var(--font-secondary);
    color: var(--color-black);
    font-size: 28px;
    text-transform: uppercase;
}
.post-navigation .nav-title {
    font-size: 26px;
}
@keyframes fadeInUp {
    0% {
        transform: translate(0px, 100px);
        opacity: 0;
    }
    100% {
        transform: translate(0px, 0);
        opacity: 1;
    }
}
.cursor {
    pointer-events: none;
    position: fixed;
    padding: 0.3rem;
    background-color: var(--color-primary);
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.cursor.cursor-grow {
    transform: translate(-50%, -50%) scale(5);
    mix-blend-mode: multiply;
}
.navbar-toggler {
    background: transparent;
    padding: 0;
    border: none;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler:focus {
    box-shadow: none;
}
.site-header #mega-menu-wrap-primary {
    margin-left: auto;
}
#mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item
    > a.mega-menu-link {
    font-weight: 500;
}
#mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item.mega-current-menu-item
    > a.mega-menu-link,
#mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item.mega-current-menu-ancestor
    > a.mega-menu-link,
#mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item.mega-current-page-ancestor
    > a.mega-menu-link {
    font-weight: 500;
}
#mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-flyout
    ul.mega-sub-menu
    li.mega-menu-item
    a.mega-menu-link {
    font-weight: 500;
}
#mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-flyout
    ul.mega-sub-menu
    li.mega-menu-item
    a.mega-menu-link:hover,
#mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-flyout
    ul.mega-sub-menu
    li.mega-menu-item
    a.mega-menu-link:focus {
    font-weight: 500;
}
#mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item
    > a.mega-menu-link:hover {
    font-weight: 500;
}
.project-hero {
    padding-top: 150px;
    padding-bottom: 150px;
    border-bottom: 1px solid var(--dark-color3);
}
.project-hero .down-arrow {
    text-align: center;
    margin-top: 50px;
}
.project-hero .scroll-down {
    display: inline-flex;
    flex-direction: column;
    color: var(--color-white);
}
.project-hero .scroll-down .text {
    font-size: 24px;
}
.project-hero .scroll-down .more-icon {
    animation: jumpInfinite 1.5s infinite;
    transform: translateY(0px);
}
.project-list-section .project-list {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--dark-color3);
}
.project-list-section .project-list:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}
.project-list-section .project-details h3 {
    font-weight: normal;
    margin-bottom: 20px;
    font-family: var(--font-secondary-regular);
}
.project-list-section .project-details strong {
    font-family: var(--font-secondary);
    font-weight: 400;
}
.project-list-section .project-meta {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}
.project-list-section .project-meta li {
    margin-bottom: 20px;
}
.project-list-section .project-meta .meta-name {
    font-family: var(--font-secondary);
    font-weight: 400;
    display: block;
}
.img-hover-block {
    overflow: hidden;
}
.img-hover-block img {
    width: 100%;
    transition: all 0.4s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.img-hover-block img:hover {
    filter: grayscale(0);
    transform: scale3d(1.05, 1.05, 1);
}
.project-tag {
    list-style: none;
    padding-left: 0;
    margin-top: 60px;
}
.project-tag .tag-title {
    font-family: var(--font-secondary);
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
}
.project-tag li {
    display: inline-block;
}
.project-tag li a {
    border-radius: 20px;
    text-transform: none;
    padding: 8px 20px 10px 20px;
}
.testimonial-section {
    padding-left: 90px;
    padding-right: 90px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.testimonial-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(52, 73, 86, 0.9);
}
.testimonial-section .text-block {
    position: relative;
    padding-right: 10%;
}
.testimonial-section .text-block .btn {
    margin-top: 30px;
}
.testimonial-section .testimonial-swiper-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}
.testimonial-section .testimonial-swiper-bottom .navigation {
    display: flex;
}
.testimonial-section .testimonial-swiper-bottom .swiper-button-next,
.testimonial-section .testimonial-swiper-bottom .swiper-button-prev {
    -webkit-transition: all 0.2s ease-in 0s;
    -moz-transition: all 0.2s ease-in 0s;
    -o-transition: all 0.2s ease-in 0s;
    transition: all 0.2s ease-in 0s;
    position: static;
    background: #f3efec;
    color: #000;
    width: 50px;
    height: 50px;
    margin: 0;
}

.testimonial-section .testimonial-swiper-bottom .swiper-button-next:hover,
.testimonial-section .testimonial-swiper-bottom .swiper-button-prev:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.testimonial-section .testimonial-swiper-bottom .swiper-button-next:after,
.testimonial-section .testimonial-swiper-bottom .swiper-button-prev:after {
    display: none;
}
.testimonial-swiper .swiper-slide {
    height: auto !important;
}

.testimonial-block {
    position: relative;
    height: 100%;
    background: var(--color-black);
    /* border-radius: 15px; */
}

.testimonial-block .top-block {
    /* border-top-left-radius: 15px;
    border-top-right-radius: 15px; */
    overflow: hidden;
}

.testimonial-block .top-block img {
    width: 100%;
    transition: all 0.4s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.testimonial-block .top-block img:hover {
    filter: grayscale(0);
    transform: scale3d(1.05, 1.05, 1);
}
.testimonial-block .center-part {
    background: #f3efec;
    height: 18px;
    position: relative;
}

.testimonial-block .center-part i {
    color: #ffffff;
    background: var(--color-primary);
    padding: 10px;
    border-radius: 100%;
    position: absolute;
    left: 30px;
    top: -20px;
    height: 60px;
    width: 60px;
    font-size: 34px;
}

.testimonial-block .body-block {
    /* background: #ffffff; */
    padding: 40px 30px 30px 30px;
    /* border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px; */
}

.testimonial-block .body-block h5 {
    /* font-size: 24px; */
    margin-bottom: 0;
    margin-top: 15px;
}

.testimonial-block .body-block .location {
    font-style: italic;
    color: var(--color-white);
}

.testimonial-block .video-block {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.testimonial-block .video-block .video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.testimonial-block .video-block video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.testimonial-block .read-more {
    cursor: pointer;
    color: var(--color-primary);
}
.testimonial-block .read-less {
    cursor: pointer;
    display: none;
    color: var(--color-primary);
}
.sticky-cta {
    position: fixed;
    right: 10px;
    bottom: 50px;
    z-index: 10;
}
.sticky-cta span {
    width: 50px;
    height: 50px;
    font-size: 50px;
}
.mobile-footer-btn {
    position: fixed;
    align-items: center;
    justify-content: space-evenly;
    background-color: #fff;
    bottom: 0;
    display: none;
    width: 100%;
    height: 65px;
    box-sizing: border-box;
    box-shadow: 0 2px 9px #000;
    z-index: 9;
    padding: 10px;
}
.mobile-footer-btn a {
    background: var(--color-primary);
    color: #fff;
    text-transform: uppercase;
    width: 45%;
    font-weight: 600;
    font-size: 18px;
    padding-top: 3px;
}
@media screen and (min-width: 768px) and (max-height: 730px) {
    .hero-bg {
        bottom: -30vh;
        height: 90vh;
    }
}
@media (max-width: 1600px) {
    .hero-ani .hero-img {
    }
}
@media (max-width: 1500px) {
}
@media (max-width: 1400px) {
    h1,
    .h1 {
        font-size: 50px;
        position: relative;
    }
    h2,
    .h2 {
        font-size: 40px;
    }
    .btn-link svg {
        width: 50px;
    }
    .team-section .right-box {
        padding: 25px;
    }
    .team-section .right-box p {
        font-size: 28px;
    }
    .team-section .left-box p {
        font-size: 28px;
    }
    .project-section h2 {
        margin-bottom: 20px;
    }
    .project-section .bottom-box p {
        font-size: 34px;
    }
    .project-section .cta-box {
        padding: 7%;
    }
    .project-section .cta-box p {
        font-size: 28px;
    }
    .footer-menu {
        --bs-nav-link-font-size: 16px;
    }
    .footer-connect ul li > a {
        font-size: 16px;
        padding-left: 10px;
        padding-right: 13px;
    }
    .services-block {
        padding: 50px 15px 100px 15px;
    }
    .team-detail-block p {
        font-size: 20px;
    }
    .team-detail-block .name {
        font-size: 16px;
    }
    .team-detail-block .name strong {
        font-size: 18px;
    }
}
@media (max-width: 1300px) {
    .service-box {
        min-height: 400px;
    }
    .testimonial-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 1200px) {
    h1,
    .h1 {
        font-size: 52px;
    }
    h2,
    .h2 {
        font-size: 38px;
    }
    h2.small,
    .h2.small {
        font-size: 34px;
    }
    h3,
    .h3 {
        font-size: 34px;
    }
    h4,
    .h4 {
        font-size: 24px;
    }
    h5,
    .h5 {
        font-size: 22px;
    }
    h6 {
        font-size: 20px;
    }
    .offer-block .icon-wrap {
        max-width: 70px;
        margin-left: auto;
        margin-right: auto;
    }
    .why-block .overly {
        font-size: 22px;
    }
    .why-block .overly .number {
        font-size: 48px;
    }
}
@media (max-width: 992px) {
    body {
        padding-top: 60px;
    }
    .section-padding {
        padding-top: 75px;
        padding-bottom: 75px;
    }
    .list-true li {
        font-size: 26px;
    }
    .team-section .img-block {
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .footer-logo {
        text-align: center;
        margin-bottom: 20px;
    }
    .footer-menu {
        margin-bottom: 20px;
    }
    .footer-connect ul {
        justify-content: center;
    }
    .hero-ani .hero-img {
    }
    .why-india-section .left-part {
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    body {
        padding-bottom: 60px;
    }
    h1,
    .h1 {
        font-size: 42px;
    }
    h2,
    .h2 {
        font-size: 30px;
    }
    h2.small,
    .h2.small {
        font-size: 28px;
    }
    h3,
    .h3 {
        font-size: 26px;
    }
    h4,
    .h4 {
        font-size: 24px;
    }
    h5,
    .h5 {
        font-size: 20px;
    }
    h6 {
        font-size: 20px;
    }
    .btn-primary-outline,
    .btn-primary,
    [type='button'],
    [type='reset'],
    [type='submit'],
    button {
        font-size: 18px;
    }
    .site-header {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 0;
        padding-right: 10px;
    }
    .site-header .navbar-nav {
        text-align: center;
    }
    .site-header .custom-logo-link {
        max-width: 100px;
        padding-top: 0;
        padding-bottom: 0;
    }
    .site-header .dropdown-menu {
        text-align: center;
    }
    .hero-section .top-logo {
        margin-bottom: 30px;
        max-width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
    .team-section .left-box p {
        text-align: center;
    }
    .team-section .right-box {
        align-items: center;
    }
    .team-section .right-box p {
        text-align: center;
    }
    .project-section .cta-box a {
        font-size: 26px;
    }
    .list-true li {
        font-size: 24px;
        padding-left: 40px;
    }
    .testimonial-section .test-side p {
        font-size: 20px;
        text-align: center;
    }
    .testimonial-section .name {
        font-size: 20px;
    }
    .problem-section {
        background-image: none;
    }
    .problem-section .top-block {
        margin-bottom: 0;
    }
    .problem-section .right-box,
    .problem-section .left-box {
        top: 5px;
        max-width: 35%;
    }
    .pro-box {
        text-align: center;
        margin-top: 50px;
    }
    .text-section .img-block {
        margin-bottom: 50px;
    }
    .text-section .text-block {
        text-align: center;
    }
    .hero-ani .hero-img {
        max-width: 50vw;
    }
    .rei-section .status-block {
        margin-bottom: 50px;
    }
    .rei-section .text-block {
        text-align: center;
    }
    .icon-list img {
        max-height: 50px;
    }
    .about-hero-section h1 {
        font-size: 36px;
    }
    .presenting-wrap {
        padding-left: 10%;
        padding-right: 10%;
    }
    .team-detail-block {
        padding: 20px 20px 80px 20px;
    }
    .team-detail-block .name {
        width: 100%;
        height: auto;
        top: inherit;
        left: 0;
        bottom: 0;
        writing-mode: inherit;
    }
    .team-detail-block h5 {
        margin-bottom: 15px;
    }
    .story-section .story-text {
        text-align: center;
        margin-left: 4%;
        margin-right: 4%;
        margin-top: 75px;
    }
    .service-box {
        padding: 25px 10px 30px 10px;
        margin-top: 40px;
        min-height: inherit;
    }
    .service-box-image {
    }
    .service-box-center {
        display: none;
    }
    .about-hero-section h2 {
        transform: translateY(-30%);
        mix-blend-mode: inherit;
    }
    .roadmap-svg {
        display: none;
    }
    .timeline {
        display: block;
    }
    .presenting-wrap .pre-box {
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    .presenting-wrap .pre-box .icon {
        height: 50px;
    }
    .text-page .entry-header {
        padding-top: 75px;
        padding-bottom: 75px;
    }
    .text-page .entry-content {
        padding: 50px 20px;
    }
    .text-page .entry-content p,
    .text-page .entry-content .wp-block-list {
        font-size: 20px;
        line-height: 1.5;
    }
    .services-hero {
        padding-top: 50px;
    }
    .d-m-none {
        display: none;
    }
    #mega-menu-wrap-primary
        #mega-menu-primary
        li.mega-menu-item-has-children
        > a.mega-menu-link
        > span.mega-indicator {
        position: absolute;
        right: 0px;
    }
    #mega-menu-wrap-primary
        #mega-menu-primary
        > li.mega-menu-flyout
        ul.mega-sub-menu
        li.mega-menu-item
        a.mega-menu-link {
        text-align: center;
    }
    .navbar-header {
        width: 100vw;
    }
    #mega-menu-wrap-primary .mega-menu-toggle {
        position: absolute;
        top: -30px;
        right: -20px;
    }
    .ltw-block {
        flex-direction: column;
        text-align: center;
    }
    .ltw-block img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .process-section .line-arrow,
    .process-section .right-arrow,
    .process-section .left-arrow {
        display: none;
    }
    .process-section .offer-block {
        margin-bottom: 50px;
    }
    .blogs-section .left-blog-block {
        text-align: center;
    }
    .blogs-section .left-blog-block h2 {
        max-width: 300px;
    }
    .blogs-section .left-blog-block h2 br {
        display: none;
    }
    .blogs-section .blog-navigation {
        width: 100%;
        justify-content: space-around;
        margin-top: 50px;
    }
    .blog-swiper {
        margin-top: 20px;
    }
    .cursor.cursor-grow {
        transform: translate(0) scale(1);
    }
    .site-footer {
        padding-bottom: 30px;
    }
    .stocks-hero .stock-hero-img {
        display: none;
    }
    .stocks-hero .stock-hero-img-mobile {
        display: block;
        margin-top: 30px;
    }
    .but-wrap h3 {
        font-size: 80px;
    }
    .contact-hero-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    .contact-hero-section .bottom-block {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .infinity-line ul li {
        font-size: 24px;
    }
    .legal-services-hero:not(.is-top) .hero-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    .legal-services-hero .hero-wrapper .white-bg-section {
        border-radius: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .legal-advisors-section .section-inner {
        border-radius: 15px;
        padding: 25px 15px;
    }
    .legal-advisors-section video {
        margin-bottom: 20px;
    }
    .legal-support-section .section-inner {
        border-radius: 15px;
        padding: 20px 20px;
    }
    .legal-support-section .box-block picture {
        margin-bottom: 20px;
        border-radius: 15px;
        margin-top: 20px;
    }
    .reach-section .box {
        margin-bottom: 20px;
    }
    .reach-section .box span {
        font-size: 24px;
    }
    .concierge-hero .content-part {
        width: 100%;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .concierge-hero .content-part .btn {
        font-size: 15px;
    }
    .promise-section .top-part p {
        font-size: 100%;
    }
    .dark-box {
        margin-bottom: 20px;
    }
    .stat-block {
        padding: 10px;
        height: calc(100% - 25px);
    }
    .stat-block span {
        font-size: 40px;
    }
    .stat-block p {
        font-size: 18px;
    }
    .project-hero {
        text-align: center;
    }
    .project-hero h1 {
        margin-bottom: 30px;
    }
    .project-list .project-details {
        padding-top: 30px;
    }
    .testimonial-section {
        padding-left: 0;
        padding-right: 0;
    }
    .testimonial-section .text-block {
        padding-right: 0;
        text-align: center;
        padding-bottom: 50px;
    }
    .testimonial-section .testimonial-swiper-bottom {
        margin-top: 30px;
    }
    .testimonial-section .testimonial-swiper-bottom .swiper-button-next,
    .testimonial-section .testimonial-swiper-bottom .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    .testimonial-section .testimonial-swiper-bottom .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
    }
    .testimonial-block .body-block {
        padding: 30px 30px 30px 30px;
    }
    .sticky-cta {
        bottom: 75px;
    }
    .mobile-footer-btn {
        display: flex;
    }
}
