@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

/* Custom Fonts  */
@font-face {
    font-family: "Dolce-vita";
    src: url("../fonts/dolce_vita_heavy_bold-webfont.woff2") format("woff2"),
        url("../fonts/dolce_vita_heavy_bold-webfont.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Dolce-vita";
    src: url("../fonts/dolce_vita-webfont.woff2") format("woff2"),
        url("../fonts/dolce_vita-webfont.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Dolce-vita";
    src: url("../fonts/dolce_vita_light-webfont.woff2") format("woff2"),
        url("../fonts/dolce_vita_light-webfont.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #000000;
    --black-1: #212121;
    --white: #ffffff;
    --white-1: #f6f6f9;
    --white-2: #f9fafb;
    --white-3: #efefff;
    --blue: #0035c9;
    --blue-1: #b9cbff;
    --green: #00ced3;
    --green-1: #57d7da;
    --paragraph-color: #000000;
    --filter-1: initial;
}

html.dark-mode {
    --black: #ffffff;
    --black-1: #f6f6f9;
    --white: #000000;
    --white-1: #212121;
    --white-2: #333333;
    --white-3: #000000;
    --blue: #0035c9;
    --blue-1: #0035c9;
    --green: #00ced3;
    --green-1: #157e81;
    --filter-1: invert(1) brightness(1000);
}


body {
    color: var(--black);
    background-color: var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    font-family: "Marcellus", serif;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

.text-black {
    color: var(--black) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-blue {
    color: var(--blue) !important;
}

.text-green {
    color: var(--green) !important;
}


.bg-white {
    background-color: var(--white) !important;
}

.bg-white-1 {
    background-color: var(--white-1) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-black-1 {
    background-color: var(--black-1) !important;
}

.bg-blue {
    background-color: var(--blue) !important;
}

.bg-green {
    background-color: var(--green) !important;
}

ul,
ol {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

h1,
h2,
h3 {
    font-weight: bold;
    color: var(--black);
}

h1 {
    font-size: 62px;
    font-weight: bold;
}

h2 {
    font-size: 50px;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero h2 {
    font-family: "Dolce-vita", sans-serif;
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1;
    /*color: var(--green);*/
}

.hero.sub-hero h2 {
    color: var(--blue);
}

h3 {
    font-size: 20px;
}


p:last-child {
    margin-bottom: 0px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.image-cover {
    height: 100%;
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.image-cover img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
}

.image-cover img.image-curve {
    /*-webkit-clip-path: url(#diagonalTopLeftBottomRight);
    clip-path: url(#diagonalTopLeftBottomRight);*/
}

.image-cover-1 {
    min-height: auto;
    border: 0px;
    padding: 0px;
    border-radius: 0px;
}

.image-cover-1 img {
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 0px;
}


.switch__tab {
    font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer
}

.theme-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--black);
    padding-left: 20px;
}

.inner-header .switch__tab {
    /* position: absolute;
    right:160px;
    top: 50%;
    transform: translateY(-50%);*/
    z-index: 3;
}

.mode__switch {
    height: 34px;
    width: 80px;
    display: inline-block;
    position: relative;
    margin: 0px;
    background: var(--green);
    transform: translateY(0);
    border-radius: 3px;
    cursor: pointer;
    transition: all .3s ease-out 0s;
}

.mode__switch:before {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    background: #ffffff;
    width: 28px;
    height: 28px;
    z-index: -1;
    border-radius: 3px;
    transition: all .3s ease-out 0s;
}

.dark-mode .mode__switch:before {
    left: calc(100% - 31px);
}

.mode__switch span {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 34px;
    display: block
}

.mode__switch span:before {
    right: 54px;
    background-image: url(../images/sun.png)
}

.dark-mode .mode__switch span:before {
    background-image: url(../images/sun.png);
}

.mode__switch span:after,
.mode__switch span:before {
    content: "";
    position: absolute;
    top: 8px;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    background-size: cover
}

.mode__switch span:after {
    left: 54px;
    background-image: url(../images/moon.png)
}

.dark-mode .mode__switch span:after {
    background-image: url(../images/moon.png);
}

/* Header Styles */
.header {
    position: absolute;
    background-color: transparent;
    padding: 16px 12px;
    width: 100%;
    z-index: 999;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
}

/*html.dark-mode .header{
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}*/
.header.sticky {
    position: fixed;
    padding: 16px 0px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    margin-top: 0;
    background: var(--white-1);
    -webkit-animation: sticky 1.2s;
    animation: sticky 1.2s;
    /*    -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.2);*/
    border-bottom: 1px solid var(--blue);
}

html.dark-mode .header.sticky {
    /*    -webkit-box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.5);*/
}

@-webkit-keyframes sticky {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

@keyframes sticky {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

.logo {
    width: 180px;
    height: auto;
}

.inner-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;

}

.header-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hamburger-btn {
    font-weight: 500;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
    line-height: 1;
    color: var(--black);
    gap: 12px;
    padding: 0px;
    font-weight: 500;
}

.cubes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 32px;
    gap: 4px;
}

.cubes span {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 2px solid var(--blue);
}

/*.cubes span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}*/

.hamburger-btn:hover .cubes span:nth-child(2) {
    -webkit-animation: bounceTwice 0.6s linear forwards;
    animation: bounceTwice 0.6s linear forwards;
}

@keyframes bounceTwice {
    0% {
        transform: rotate(45deg) translateY(0);
    }

    25% {
        transform: rotate(0deg) translateY(-3px);
    }

    50% {
        transform: rotate(0deg) translateY(0);
    }

    75% {
        transform: rotate(0deg) translateY(-3px);
    }

    100% {
        transform: rotate(0deg) translateY(0);
    }
}


/* OVERLAY */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--white-1);
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease;
    z-index: 999;
    /* top:83.4px;
        height:calc(100vh - 83.4px);*/
    height: 100vh;
}

.menu-overlay .container {
    height: 100%;
}

.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* LAYOUT */
.menu-header {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--blue);
}

.menu-header .hamburger-btn img {
    height: 32px;
}

.menu-bottom {
    display: flex;
    height: calc(100% - 83.4px);
}

/* IMAGE SECTION */
.menu-images {
    width: 45%;
    display: flex;
    align-items: end;
    justify-content: start;
}

.image-wrapper {
    width: 75%;
    height: 65vh;
    overflow: hidden;
}

.image-stack {
    height: 800%;
    transform: translateY(0);
    transition: transform .9s cubic-bezier(.77, 0, .18, 1);
}

.image-stack img {
    width: 100%;
    height: 65vh;
    object-fit: cover;
}

/* MENU */
.menu-content {
    width: 55%;
    padding: 0px 0px 0px 80px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
}

.menu-item {
    cursor: pointer;
    overflow: hidden;
    color: var(--black);
    padding: 20px 0px;
    position: relative;
    display: block;
    transition: .3s;
    font-family: "Dolce-vita", sans-serif;
    font-weight: bold;
}

.menu-item::after {
    content: '';
    width: 0%;
    height: 0px;
    border-bottom: 1.5px solid var(--blue);
    /*transform: scaleX(0);
    transform-origin: left;*/
    transition: width .6s ease;
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.menu-item:hover::after {
    width: 100%;
}

.menu-item:hover {
    color: var(--blue);
}

.menu-item.active {
    color: var(--blue);
}

a.menu-item {
    color: var(--black);
}

a.menu-item:hover {
    color: var(--blue);
}

a.menu-item.active {
    color: var(--blue);
}

.services-open .menu-item {
    padding: 12px 0px;
}

.menu-item.services i {
    font-size: 26px;
    vertical-align: text-bottom;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
}



/* BORDER */
.menu-line {
    width: 100%;
    height: 0px;
    border-bottom: 1px solid var(--black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s ease;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.borders-done .menu-line {
    transform: scaleX(1);
    transform-origin: right;
}

/* TEXT */
.menu-text {
    font-size: 42px;
    transform: translateY(120%);
    opacity: 0;
    transition: transform .6s ease, opacity .6s ease;
}

.items-done .menu-item:nth-child(1) .menu-text {
    transition-delay: .1s;
}

.items-done .menu-item:nth-child(2) .menu-text {
    transition-delay: .25s;
}

.items-done .menu-item:nth-child(3) .menu-text {
    transition-delay: .4s;
}

.items-done .menu-item:nth-child(4) .menu-text {
    transition-delay: .55s;
}

.items-done .menu-text {
    transform: translateY(0);
    opacity: 1;
}

/* SUBMENU – NO JERK */
.submenu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .6s ease, opacity .4s ease;
    padding-left: 12px;
}

.submenu.active {
    max-height: 200px;
    opacity: 1;
}

.menu-item:hover .submenu a {
    color: var(--black);
}

.menu-item:hover .submenu a.active {
    color: var(--blue);
}

.submenu a {
    display: block;
    color: var(--black);
    font-size: 18px;
    text-decoration: none;
    margin-bottom: 5px;
}

.submenu a:hover {
    color: var(--blue);
}

.submenu a.active {
    color: var(--blue);
}

.menu-item:hover .submenu a:hover {
    color: var(--blue);
}

.submenu a:last-child {
    margin-bottom: 0px;
}

.hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 130px;
    padding-bottom: 63.55px;
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--white-3);
}

.btn-default {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--blue);
    border-radius: 60px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 15px;
    font-weight: 500;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1;
    padding: 21px 38px;
    position: relative;
    text-align: center;
    text-transform: capitalize;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

/*.btn-default-black{
    background-color: var(--black);
}*/
.btn-default span {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-default span span.text-1 {
    position: relative;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.btn-default:hover span span.text-1 {
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-default span span.text-2 {
    position: absolute;
    top: 100%;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.btn-default:hover span span.text-2 {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-default i {
    position: relative;
    overflow: hidden;
    width: 14px;
    height: 14px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 10px;
}

.btn-default i svg {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    position: absolute;
    bottom: -1px;
    left: 1px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.btn-default:hover i svg:first-child {
    -webkit-transform: translate(16px, -16px);
    transform: translate(16px, -16px);
}

.btn-default i svg:last-child {
    left: -12px;
    bottom: -12px;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0;
}

.btn-default:hover i svg:last-child {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(13px, -12px);
    transform: translate(13px, -12px);
}

.hero-image {
    background-color: red;
}

.hero-image img {
    width: 100%;
}

.hero::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-image: url(../images/hero-bg.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .4;
    filter: invert(1) brightness(0);
}

html.dark-mode .hero::before {
    background-image: url(../images/hero-bg-1.png);
    opacity: 1;
    filter: invert(0) brightness(1000);
}

.hero::after {
    content: '';
    position: absolute;
    height: 600px;
    width: 600px;
    border: 50px solid #f9fafb6b;
    border-radius: 50%;
    right: 80px;
    top: 0px;
    z-index: 0;
    -webkit-transform: translate(calc(100% - 300px), calc(-100% + 250px));
    -ms-transform: translate(calc(100% - 300px), calc(-100% + 250px));
    transform: translate(calc(100% - 300px), calc(-100% + 250px));
}

html.dark-mode .hero::after {
    border: 50px solid #333333a6;
}
.hero .container *{
position: relative;
z-index:1;
}

.hero .hero-shape-1 {
    position: absolute;
    right: 30%;
    top: -100px;
    width: 50px;
    animation: moveAround 8.5s ease-in-out infinite;
    will-change: transform;
    opacity:.75;
    z-index:0;
}

@keyframes scalePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.hero .hero-shape-2 {
    position: absolute;
    right: 50px;
    bottom:-60px;
    width: 70px;
    filter: invert(0) brightness(0);
    animation: scalePulse 1.8s ease-in-out infinite;
    opacity:.75;
    z-index:0;
}


html.dark-mode .hero .hero-shape-2 {
    filter: invert(0) brightness(1000);
}
.hero .hero-shape-4 {
    position: absolute;
    left:50%;
    top:-80px;
    width:80px;
    animation: scalePulse 1.8s ease-in-out infinite;
    z-index:0;
}

@keyframes moveAround {

    /* Start */
    0% {
        transform: translate(0, 0);
    }

    /* Move top */
    25% {
        transform: translate(0, -40px);
    }

    /* Diagonal right bottom */
    50% {
        transform: translate(40px, 20px);
    }

    /* Move left */
    75% {
        transform: translate(-40px, 20px);
    }

    /* Back to start */
    100% {
        transform: translate(0, 0);
    }
}

.hero .hero-shape-3 {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.image-design {
    padding-right: 100px;
    position: relative;
    padding-bottom: 100px;
}

.image-design-invert {
    padding-left: 100px;
    padding-right: 0px;
}

.image-design-1 {
    border-radius: 10px;
    z-index: 1;
    position: relative;
    -webkit-clip-path: url(#diagonalTopLeftBottomRight);
    clip-path: url(#diagonalTopLeftBottomRight);
}

.image-design-invert .image-design-1 {
    -webkit-clip-path: url(#diagonalTopRightBottomLeft1);
    clip-path: url(#diagonalTopRightBottomLeft1);
}

.image-design-2-cover {
    width: 50%;
    height: auto;
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 1;
}

.image-design-invert .image-design-2-cover {
    right: auto;
    left: 0px;
}

.image-design-2-cover::after {
    content: '';
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: var(--white-1);
    position: absolute;
    left: -10px;
    top: -10px;
    z-index: 0;
    /* border-radius: 10px; */
    -webkit-clip-path: url(#diagonalTopLeftBottomRight);
    clip-path: url(#diagonalTopLeftBottomRight);
}

.image-design-invert .image-design-2-cover::after {
    left: absolute;
    right: -10px;
    -webkit-clip-path: url(#diagonalTopRightBottomLeft1);
    clip-path: url(#diagonalTopRightBottomLeft1);
}

.image-design-2-cover.border-white::after {
    background: var(--white);
}

.image-design-2 {
    width: 100% !important;
    border-radius: 10px;
    z-index: 1;
    position: relative;
    -webkit-clip-path: url(#diagonalTopLeftBottomRight);
    clip-path: url(#diagonalTopLeftBottomRight);
}

.image-design-invert .image-design-2 {
    -webkit-clip-path: url(#diagonalTopRightBottomLeft1);
    clip-path: url(#diagonalTopRightBottomLeft1);
}

.design-shape {
    position: absolute;
    filter: invert(0) brightness(0);
    opacity: .75;
    z-index: 0;
}

html.dark-mode .design-shape {
    filter: invert(1) brightness(1000);
}

.design-shape-1 {
    top: 25px;
    right: 20px;
}

.image-design-invert .design-shape-1 {
    top: 25px;
    right: 0px;
    left: 20px;
    transform: scalex(-1);
}

.design-shape-2 {
    bottom: 7px;
    right: 44%;
}

.image-design-invert .design-shape-2 {
    right: auto;
    left: 44%;
    transform: scaleX(-1);
}

.design-svg {
    width: 0px;
    height: 0px;
    position: absolute;
    overflow: hidden;
    z-index: -1;
    opacity: 0;
}

.services-item {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.services-item h3 {
    font-weight: bold;
}

.services-item-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-item-image {
    position: relative;
}

.services-item img.service-image {
    border-radius: 15px;
    transition: .3s;
}

.services-item-icon-cover {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 90px;
    height: 90px;
    background: var(--white);
    border-top-left-radius: 50%;
    padding: 10px;
}

.services-item-icon-cover::before {
    position: absolute;
    content: "";
    bottom: 6px;
    left: -20px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px var(--white);
}

.services-item-icon-cover::after {
    position: absolute;
    content: "";
    top: -20px;
    right: 6px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px var(--white);
}

.services-item-icon {
    position: absolute;
    background: var(--blue-1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    width: 72px;
    height: 72px;
    line-height: 72px;
    transform: rotate(0deg);
    padding: 10px;
}

.services-item-icon img {
    width: 100%;
    filter: var(--filter-1);
}

.services-item .services-item-header:hover .services-item-icon {
    background-color: var(--green-1);
    -webkit-animation: bounceTwice 0.6s linear forwards;
    animation: bounceTwice 0.6s linear forwards;
}

.home-card {
    position: relative;
    height: 100%;
    background-color: var(--white-3);
    padding: 20px 20px 30px 30px;
}

html.dark-mode .home-card {
    background-color: #0000004f;
}

.home-card * {
    position: relative;
    z-index: 1;
}

.home-card .dots-shape {
    width: 100px;
    position: absolute;
    right: 30px;
    opacity: .3;
    top: 30px;
    filter: var(--filter-1);
    z-index: 0;
}

.home-card .lines-shape {
    position: absolute;
    width: 300px;
    height: 200px;
    top: 0px;
    right: 0px;
    filter: var(--filter-1);
    z-index: 0;
}

.home-card img.shape-divider {
    position: absolute;
    left: -30px;
    top: 0px;
    height: 100%;
    opacity: .25;
    filter: var(--filter-1);
}

.icon-cover {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: var(--blue-1);
    border-radius: 10px;
    margin-bottom: 15px;
}

.icon-cover img {
    width: 100%;
    filter: var(--filter-1);
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 8px;
}

.check-list-icon {
    width: 18px;
    flex: 0 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5px;
}

.check-list-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: var(--filter-1);
}

.cta-section {
    background-image: url(../images/cta-bg.jpg);
    background-size: cover;
    background-position: top center;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.cta-section::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: -webkit-gradient(linear, left top, right top, color-stop(60%, rgba(255, 255, 255, .9)), to(rgba(87, 30, 136, 0)));
    background: linear-gradient(to right, rgba(255, 255, 255, .9) 60%, rgba(87, 30, 136, 0) 100%);
}

html.dark-mode .cta-section::before {
    background: -webkit-gradient(linear, left top, right top, color-stop(60%, rgba(0, 0, 0, .9)), to(rgba(87, 30, 136, 0)));
    background: linear-gradient(to right, rgba(0, 0, 0, .7) 60%, rgba(87, 30, 136, 0) 100%);
}

footer {
    position: relative;
}

footer * {
    position: relative;
    z-index: 1;
}

footer::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-image: url(../images/footer-bg.png);
    background-size: cover;
    opacity: .2;
    filter: invert(0) brightness(0);
}

html.dark-mode footer::after {
    filter: invert(1) brightness(1000);
    opacity: 1;
}

.footer-top {
    padding: 0px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

html.dark-mode .footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.footer-row {
    display: flex;
    justify-content: start;
    align-items: stretch;
}

.footer-item {
    width: 33.33333%;
    flex: 0 0 33.33333%;
    padding: 80px 60px;
    border-right: 1px solid rgba(0, 0, 0, .1);
}
.footer-item:nth-child(2){
    padding-left:40px;
}
html.dark-mode .footer-item {
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer-item:last-child {
    border-right: 0px !important;
}

.footer-logo {
    width: fit-content;
    display: block;
}

.footer-logo img {
    width: 140px;
}

.footer-item h3 {
    /*text-align: center;*/
    font-family: "Dolce-vita", sans-serif;
    color: var(--green);
}

.footer-item .footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-item .footer-links a.footer-menu-item {
    /*text-align: center;*/
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
}

.footer-item .footer-links a.footer-menu-item:not(.footer-menu-item-no-link):hover {
    color: var(--green);
}

.footer-menu-item-no-link {
    pointer-events: none !important;
    cursor: default !important;
}

.footer-item .footer-links a.footer-menu-item.active {
    color: var(--green);
    pointer-events: none !important;
    cursor: default !important;
}

.footer-bottom {
    padding: 30px 12px;
}

.footer-logo-cover {
    display: none;
}

.check-list-row {
    flex-direction: row;
}

.ymp-card {
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 20px 30px rgba(187, 192, 207, 0.15);
}

.ymp-card * {
    position: relative;
    z-index: 1;
}

.ymp-card:after {
    content: '';
    position: absolute;
    height: 480px;
    width: 480px;
    border: 50px solid var(--white-2);
    border-radius: 50%;
    right: 0;
    top: 0;
    z-index: 0;
    -webkit-transform: translate(calc(100% - 215px), calc(-100% + 202px));
    -ms-transform: translate(calc(100% - 215px), calc(-100% + 202px));
    transform: translate(calc(100% - 215px), calc(-100% + 202px));
}

.ymp-card.ymp-card-2:after {
    left: 0;
    right: auto;
    top: 0;
    -webkit-transform: translate(calc(-100% + 215px), calc(-100% + 202px));
    -ms-transform: translate(calc(-100% + 215px), calc(-100% + 202px));
    transform: translate(calc(-100% + 215px), calc(-100% + 202px));
}

.ymp-card .icon-cover {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
}

.main-card {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    background-color: var(--white-1);
    gap: 15px;
}

.main-card-row {
    flex-direction: row;
    align-items: center;
}

.main-card-icon {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    background-color: var(--blue-1);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-card-icon img {
    width: 100%;
    filter: var(--filter-1);
}

.main-card-content {}

.smm-1 .main-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 15px;
    align-items: center;
    height: 100%;
    border-top: 5px solid var(--blue-1);
    position: relative;
    overflow: hidden;
}

.smm-1 .main-card * {
    position: relative;
    z-index: 1;
}

.smm-1 .main-card:after {
    content: '';
    position: absolute;
    height: 300px;
    width: 300px;
    border: 25px solid var(--white-2);
    border-radius: 50%;
    right: 0;
    top: 0;
    z-index: 0;
    -webkit-transform: translate(calc(100% - 134px), calc(-100% + 126px));
    -ms-transform: translate(calc(100% - 134px), calc(-100% + 126px));
    transform: translate(calc(100% - 134px), calc(-100% + 126px));
}

.smm-1 .main-card.main-card-2:after {
    left: 0;
    right: auto;
    top: 0;
    -webkit-transform: translate(calc(-100% + 134px), calc(-100% + 126px));
    -ms-transform: translate(calc(-100% + 134px), calc(-100% + 126px));
    transform: translate(calc(-100% + 134px), calc(-100% + 126px));
}

.smm-1 .main-card:before {
    content: '';
    position: absolute;
    height: 300px;
    width: 300px;
    border: 25px solid var(--white-2);
    border-radius: 50%;
    right: 0;
    left: auto;
    top: 0;
    -webkit-transform: translate(calc(100% - 134px), calc(-100% + 126px));
    -ms-transform: translate(calc(100% - 134px), calc(-100% + 126px));
    transform: translate(calc(100% - 134px), calc(-100% + 126px));
    opacity: 0;
    visibility: hidden;
}

.smm-1 .main-card.main-card-2::before {
    opacity: 1;
    visibility: visible;
}

.smm-1 .main-card.main-card-3:after {
    left: 0;
    right: auto;
    top: 0;
    -webkit-transform: translate(calc(-100% + 134px), calc(-100% + 126px));
    -ms-transform: translate(calc(-100% + 134px), calc(-100% + 126px));
    transform: translate(calc(-100% + 134px), calc(-100% + 126px));
}

.smm-2 .main-card {
    padding: 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.smm-2 .main-card:last-child {
    margin-bottom: 0px;
}

.smm-2 .main-card .main-card-icon {
    border-radius: 100%;
    padding: 14px;
}

.smm-2 .image-cover p {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    width: calc(100% - 40px);
}

.seo-card {
    position: relative;
    margin-top: 20px;
}

.seo-card img {
    position: absolute;
    left: 50%;
    bottom: -90px;
    width: 300px;
    /*opacity: .5;*/
    transform: rotate(15deg);
    filter: var(--filter-1);
}

.seo-1 .main-card-icon {
    border-radius: 100%;
    background-color: var(--green-1);
}

.seo-1 .main-card {
    padding: 20px;
    border-radius: 20px;
    border: 5px double var(--green-1);
    background-color: var(--white);
    align-items: center;
}

.sem-card {
    position: relative;
    padding: 50px 20px 10px 70px;
}

.sem-card::after {
    content: '';
    width: 0px;
    height: calc(100% - 50px);
    background-color: black;
    position: absolute;
    left: 12px;
    top: 50px;
    border-right: 1px solid rgba(0, 0, 0, .1);
}

html.dark-mode .sem-card::after {
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.sem-card img {
    width: 40px;
    position: absolute;
    left: -5px;
    top: 0px;
}

.sem-4 .main-card {
    padding: 0px;
    align-items: center;
    text-align: center;
    background-color: transparent;
    overflow: visible;
    position: relative;
}

.sem-4 .main-card * {
    position: relative;
    z-index: 1;
}

.sem-4 .main-card .main-card-icon {
    margin-bottom: 40px;
    outline: 1.5px solid var(--black);
    outline-offset: 5px;
    border-radius: 100%;
}

.sem-4 .main-card .main-card-content {
    background-color: var(--blue-1);
    padding: 20px;
    border-radius: 12px;
    position: relative;
}

.sem-4 .main-card::after {
    content: '';
    width: 60px;
    height: 60px;
    background-color: var(--blue-1);
    z-index: 0;
    position: absolute;
    top: 106px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 4px;
}

.db-card {
    width: 100%;
}

.border-r {
    border-radius: 12px;
}

.db-card {
    background: linear-gradient(45deg, var(--white-3) 50%, var(--white-2) 70%, transparent 100%);
    padding: 30px;
    border-radius: 15px;
    margin-left: -200px;
    width: calc(100% + 200px) !important;
}

.db-2 .c-card {
    display: flex;
    flex-direction: row;
    padding: 0px 0px 30px 0px;
    gap: 30px;
    height: auto;
    position: relative;
    align-items: start;
}

.db-2 .c-card:last-child {
    padding-bottom: 0px;
}

.db-2 .c-card .card-icon {
    background: var(--green-1);
    border-radius: 100%;
    width: 50px;
    padding: 7px;
    flex: 0 0 50px;
}

.db-2 .c-card .card-icon img {
    width: 100%;
    filter: var(--filter-1);
}

.db-2 .c-card::before {
    content: '';
    width: 2px;
    height: calc(100% - 50px);
    background: var(--green-1);
    opacity: 0.4;
    flex: 0 0 auto;
    position: absolute;
    top: 50px;
    left: 23.5px;
}

.db-2 .c-card:last-child::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--green-1);
    opacity: .8;
    flex: 0 0 auto;
    position: absolute;
    bottom: 0px;
    left: 18px;
    border-radius: 100%;
}

.db-3 .main-card {
    height: 100%;
    background-color: var(--blue-1);
    background-image: url("../images/card-header.png");
    align-items: center;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    border-style: solid;
    border-width: 6px 6px 6px 6px;
    border-color: var(--black);
    border-radius: 10px 10px 10px 10px;
    padding: 15px 15px 15px 15px;
    position: relative;
}

.db-3 .main-card * {
    position: relative;
    z-index: 1;
}

.db-3 .main-card::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--black);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -60px;
    border-radius: 100%;
}

.db-3 .main-card::after {
    content: '';
    width: 0px;
    height: 60px;
    background: var(--black);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -60px;
    border-radius: 100%;
    border-left: 1px solid var(--black);
    ;
}

.db-3 .main-card .main-card-icon {
    background-color: transparent;
    padding: 0px;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    margin-bottom: 0px;
    margin-top: 27px;
}

.arrow-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    background-image: url(../images/arrow-1.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
}

.db-3-row {
    position: relative;
}

.db-3-row::before {
    content: '';
    width: calc(100% - 25%);
    height: 0px;
    border-bottom: 1px solid var(--black);
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translateX(-50%);
}

#contactForm {}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    border: 1.5px solid var(--black) !important;
    color: var(--black);
    border-radius: 5px;
    box-shadow: none;
    outline: none;
    padding: 14px 10px 14px;
    background-color: transparent;
}

.recaptch-cover {
    border: 1.5px solid var(--black) !important;
    padding: 0px;
    position: relative;
    background-color: transparent;
    border-radius: 5px;
}

.recaptch-cover .recaptch-cover-header {
    padding: 12px 12px 12px 20px;
    text-align: left;
    display: block;
    border-bottom: 1.5px solid var(--black) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recaptch-cover .recaptch-cover-header button {
    background: transparent;
    color: var(--black);
    border-color: var(--blue);
    border-radius: 3px;
}

.recaptch-cover .recaptch-cover-header button:active {
    background: var(--blue-1);
    color: var(--black);
}

.recaptch-cover .recaptch-cover-header button:hover {
    background: var(--blue-1);
    color: var(--black);
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    background-color: transparent;
    border-color: blue;
    color: var(--black);
}

.loading-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 1111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #ffffff;
    display: none;
}

.loading-overlay.active {
    display: flex;
}

#refreshCaptcha {
    cursor: pointer;
}

.form-control::placeholder {
    color: rgba(0, 0, 0, .5);
    opacity: 1;
    /* Firefox */
}

.form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(0, 0, 0, .5);
}

html.dark-mode .form-control::placeholder {
    color: rgba(255, 255, 255, .5);
    opacity: 1;
    /* Firefox */
}

html.dark-mode .form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(255, 255, 255, .5);
}


.error {
    color: red;
    display: none;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#submitBtn.btn-default {
    border: 0px;
}

.jconfirm.jconfirm-modern .jconfirm-box {
    background: var(--white);
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c {
    color: var(--black);
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default::before {
    display: none;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
    background: var(--blue);
    color: #ffffff;
    padding: 15px 40px;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background: #000000;
    color: #ffffff;
}

html.dark-mode .jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background: #ffffff;
    color: var(--white) !important;
}

.hero p.sub-title {
    width: fit-content;
    border-radius: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1;
    position: relative;
    padding-left: 12px;
    padding-right: 12px;
}

.hero p.sub-title::before {
    content: '';
    width: 0px;
    height: 100%;
    border-left: 1.5px solid var(--blue);
    position: absolute;
    left: 0px;
    top: 0px;
}

.hero p.sub-title::after {
    content: '';
    width: 0px;
    height: 100%;
    border-left: 1.5px solid var(--blue);
    position: absolute;
    right: 0px;
    top: 0px;
}

/* CAPTCHA Styles - HORIZONTAL DESIGN */

.recaptch-cover-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--blue);
}

.recaptch-cover-body {
    display: flex;
    gap: 25px;
    padding: 0px 20px 20px;
    flex-direction: column;
}

.captcha-instruction-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 20px;
    border-radius: 10px;
    border: 1.5px solid var(--blue);
    /* width: calc(50% - 25px);
    flex: 0 0 calc(50% - 25px);*/
}

.captcha-instruction-text {
    font-size: 20px;
    font-weight: 500;
}

.captcha-sequence {
    display: flex;
    gap: 25px;
    align-items: center;
}

.captcha-sequence-item {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--blue);
    font-size: 30px;
    color: var(--blue);
    position: relative;
    transition: transform 0.3s ease;
}

.sequence-number {
    position: absolute;
    top: -12px;
    left: -12px;
    background: var(--blue-1);
    color: var(--black);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.captcha-selection-area {
    position: relative;
    min-height: 200px;
    background: linear-gradient(135deg, var(--white-1) 0%, var(--white) 100%);
    border-radius: 10px;
    border: 1.5px solid var(--black);
    padding: 25px;
    overflow: hidden;
    /*  width: calc(50% - 25px);
    flex: 0 0 calc(50% - 25px);*/
    background-image: url(../images/captcha-bg-light.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

html.dark-mode .captcha-selection-area {
    background-image: url(../images/captcha-bg-dark.jpg);
}

.captcha-selection-area * {
    position: relative;
    z-index: 2;
}

.captcha-selection-area::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .85);
    position: absolute;
    left: 0px;
    top: 0px;
}

html.dark-mode .captcha-selection-area::after {
    background: rgba(0, 0, 0, .75);
}


.captcha-hint {
    text-align: center;
    color: var(--black-1);
    font-size: 15px;
    margin-bottom: 20px;
    font-style: italic;
}

.captcha-options-container {
    position: relative;
    width: 100%;
    height: 140px;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.captcha-options-container.active {
    opacity: 1;
}

/* Icon option with guaranteed non-overlapping positioning */
.captcha-option {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    /*box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);*/
    transition: all 0.3s ease;
    font-size: 30px;
    color: var(--black-1);
    z-index: 1;
    border: 1px solid transparent;
}

.captcha-option:hover {
    /*transform: scale(1.1);*/
    /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);*/
    z-index: 3;
}

.captcha-option.selected {
    background-color: #b9cbff7d;
    border: 1px solid var(--blue);
    z-index: 4;
}

html.dark-mode .captcha-option.selected {
    background-color: #0035c980;
}

.selection-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--blue-1);
    color: var(--black);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.captcha-status {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
    display: none;
    text-align: center;
    font-size: 16px;
    font-family: "Instrument Sans", sans-serif;
}

.captcha-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.captcha-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.legal-pages h2 {
    margin-bottom: 12px;
    font-size: 32px;
}

.legal-pages p+ul {
    margin-top: -8px;
}

.legal-pages ul+p {
    margin-top: -15px;
    margin-bottom: 20px;
}

.legal-pages ul {
    margin-bottom: 26px;
    padding-left: 20px;
}

.legal-pages ul li {
    list-style-type: disc;
    list-style-position: inside;
}

.legal-pages strong {
    font-weight: 600;
}

.legal-pages p.company-name {
    font-weight: bold;
    font-family: "Dolce-vita", sans-serif;
}

.legal-pages a {
    color: var(--blue);
    text-decoration: none;
}


.legal-pages ul li::marker {
    left: 0px;
    position: absolute;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10000001;
}

.loader {
    width: 40px;
    aspect-ratio: 1;
    color: var(--blue);
    position: relative;
    background:
        conic-gradient(from 134deg at top, currentColor 92deg, #0000 0) top,
        conic-gradient(from -46deg at bottom, currentColor 92deg, #0000 0) bottom;
    background-size: 100% 50%;
    background-repeat: no-repeat;
}

.loader:before {
    content: '';
    position: absolute;
    inset: 0;
    --g: currentColor 14.5px, #0000 0 calc(100% - 14.5px), currentColor 0;
    background:
        linear-gradient(45deg, var(--g)),
        linear-gradient(-45deg, var(--g));
    animation: l7 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes l7 {
    33% {
        inset: -10px;
        transform: rotate(0deg)
    }

    66% {
        inset: -10px;
        transform: rotate(90deg)
    }

    100% {
        inset: 0;
        transform: rotate(90deg)
    }
}