@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=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --black: #000000;
    --white: #ffffff;
    --white-1: #E1E8F0;
    --white-2: #EEEEEE;
    --white-3: #F8F6F1;
    --white-4: #FEFAF2;
    --white-5: #EEF1F6;
    --white-6: #EAEEF0;
    --white-7: #F8FAFF;
    --white-8: #FDFDFE;
    --skyblue: #65afdb;
    --skyblue-1: #D5EBF9;
    --blue: #3f3f69;
}

html {
    overscroll-behavior: none;
}

body {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    padding-top: 92.03px;
    background-color: #F6F6F9;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

.text-white {
    color: var(--white) !important;
}

.text-black {
    color: var(--black) !important;
}

.text-skyblue {
    color: var(--skyblue) !important;
}

.text-blue {
    color: var(--blue) !important;
}

.bg-white {
    background-color: #F6F6F9 !important;
}

.bg-white-1 {
    background-color: var(--white-1) !important;
}

.bg-white-2 {
    background-color: var(--white-2) !important;
}

.bg-white-3 {
    background-color: var(--white-3) !important;
}

.bg-white-4 {
    background-color: var(--white-4) !important;
}

.bg-white-5 {
    background-color: var(--white-5) !important;
}

.bg-white-6 {
    background-color: var(--white-6) !important;
}

.bg-white-7 {
    background-color: var(--white-7) !important;
}

.bg-white-8 {
    background-color: var(--white-8) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-skyblue {
    background-color: var(--skyblue) !important;
}

.bg-skyblue-1 {
    background-color: var(--skyblue-1) !important;
}

.bg-blue {
    background-color: var(--blue) !important;
}

ul,
ol {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

.image-cover {
    height: 100%;
    position: relative;
    min-height: 300px;
}

.image-cover img.image-cover-photo {
    display: block;
    width: 100%;
    /*height: 100%;*/
    position: relative;
    z-index: 2;
    border-radius: 10px;
    display: none;
}

.image-cover img.image-photo {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
}

h1,
h2,
h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-family: "Red Hat Display", sans-serif;
    font-weight: 500;
}

h1 {
    font-size: 56px;
    font-weight: bold;
}


h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold;
}

h3 {
    font-size: 22px;
    font-weight: 600;
}



p:last-child {
    margin-bottom: 0px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.z-1 {
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    background-color: #F6F6F9;
    padding: 8px 12px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    transition: .3s;
}

.header.scrolled {
    background-color: var(--white-1);
    /*padding:5px 12px;*/
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 190px;
    height: auto;
    transition: .3s;
}

/*.header.scrolled .logo {
    transform: scale(.9);
}*/

.hamburger-cover {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.hamburger-btn {
    background-color: transparent;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1.5px solid var(--skyblue);
    border-radius: 100%;
    background: var(--white-1);
}

.hamburger-btn:hover {
    border: 1.5px solid var(--blue);
}

.hamburger-btn svg {
    transition: all 0.5s cubic-bezier(0.55, 0.085, 0, 0.99);
}

.hamburger-btn:hover svg {
    /*transform: rotate(180deg);*/
}

.hamburger-btn svg rect {
    fill: var(--skyblue);
}

.hamburger-btn:hover svg rect {
    fill: var(--blue);
}

.hamburger-btn:hover svg rect:nth-child(1) {
    transition-delay: 0;
}

.hamburger-btn:hover svg rect:nth-child(2) {
    transition-delay: .03s;
}

.hamburger-btn:hover svg rect:nth-child(3) {
    transition-delay: .06;
}

.hamburger-btn:hover svg rect:nth-child(4) {
    transition-delay: .09s;
}

.hamburger-btn:hover svg rect:nth-child(5) {
    transition-delay: .12s;
}

.hamburger-btn:hover svg rect:nth-child(6) {
    transition-delay: .15s;
}

.hamburger-btn:hover svg rect:nth-child(7) {
    transition-delay: .18s;
}

.hamburger-btn:hover svg rect:nth-child(8) {
    transition-delay: .21s;
}

.hamburger-btn:hover svg rect:nth-child(9) {
    transition-delay: .24s;
}

.close-btn {
    background-color: transparent;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1.5px solid var(--skyblue);
}

.close-btn svg path {
    stroke: var(--skyblue);
}

.close-btn:hover {
    border: 1.5px solid var(--blue);
}

.close-btn:hover svg path {
    stroke: var(--blue);
}

.close-btn svg rect {
    fill: var(--skyblue);
}

.close-btn:hover svg rect {
    fill: var(--blue);
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white-1);
    z-index: 1020;
    display: flex;
    flex-direction: column;
    transform: translatey(-100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow-y: auto;
    z-index: 1031;
}

.fullscreen-menu.active {
    transform: translatey(0);
}

.fullscreen-menu .menu-header {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.menu-content {
    height: calc(100% - 92.03px);
    padding: 20px 0px;
    display: flex;
    align-items: start;
    justify-content: start;
    overflow: hidden;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translatex(-100%);
    transition: 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fullscreen-menu.active .menu-items {
    transform: translatex(0);
}

.menu-content .image-cover {
    transform: translatex(100%);
    transition: 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fullscreen-menu.active .menu-content .image-cover {
    transform: translatex(0);
}

.menu-items a.btn-default {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px 10px 20px;
    font-size: 22px;
    line-height: 1;
    font-family: "Red Hat Display", sans-serif;
}

.hero {
    height: auto;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    text-align: center;
}

.hero * {
    position: relative;
    z-index: 1;
}

.main-hero {
    min-height: calc(100vh - 92.03px);
    height: calc(100vh - 92.03px);
    background-image: url(../images/hero-1.jpg);
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: left;
}

.main-hero h1 {
    position: relative;
    font-size: 90px;
}

.main-hero h2 {
    font-size: 96px;
    color: var(--skyblue);
    font-weight: 500;
}

.h1-shape-1 {
    position: absolute;
    top: -40px;
    right: 60px;
    opacity: .5;
    -webkit-animation-name: tm-animation-floating;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: Floating;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
}

@-webkit-keyframes tm-animation-floating {
    from {
        -webkit-transform: translate(0, 0px);
    }

    65% {
        -webkit-transform: translate(0, 15px);
    }

    to {
        -webkit-transform: translate(0, 0px);
    }
}

@-moz-keyframes tm-animation-floating {
    from {
        -moz-transform: translate(0, 0px);
    }

    65% {
        -moz-transform: translate(0, 15px);
    }

    to {
        -moz-transform: translate(0, 0px);
    }
}

.hero-arrow {
    filter: invert(1) brightness(1000);
    width: 200px;
    right: 2px;
    position: absolute;
    bottom: -28px;
    transform: rotate(13deg);
    opacity: .6;
    z-index: 0;
}

.hero-shape-right {
    position: absolute;
    right: 100px;
    bottom: -82px;
    filter: invert(1) brightness(1000);
    transform: rotate(73deg);
    opacity: .5;
}

.hero-1 {
    background-image: url(../images/hero-1.jpg);
}

.hero-2 {
    background-image: url(../images/hero-2.jpg);
}

.hero-3 {
    background-image: url(../images/hero-3.jpg);
}

.hero-4 {
    background-image: url(../images/hero-4.jpg);
}

.hero-5 {
    background-image: url(../images/hero-5.jpg);
}

.hero-6 {
    background-image: url(../images/hero-6.jpg);
}

.hero-7 {
    background-image: url(../images/hero-7.jpg);
}

.hero-8 {
    background-image: url(../images/hero-8.jpg);
}

.hero-9 {
    background-image: url(../images/hero-9.jpg);
}

.hero-10 {
    background-image: url(../images/hero-10.jpg);
}

.hero::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, .7);
    z-index: 0;
}

.btn-default {
    display: flex;
    gap: 12px;
    align-items: center;
    background: var(--skyblue);
    color: var(--white);
    padding: 8px 12px 8px 13px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    width: fit-content;
    overflow: hidden;
    line-height: 1;
}

.menu-header .btn-default {
    background: var(--white);
    padding: 6.5px 12px 6.5px 13px;
    border: 1.5px solid var(--skyblue);
    color: var(--skyblue);
    transition: .3s;
}

.menu-header .btn-default:hover {
    border: 1.5px solid var(--blue);
    color: var(--white);
}

.menu-header .btn-default.active {
    border: 1.5px solid var(--blue);
    color: var(--white);
}

.menu-header .btn-default .btn-icon {
    border: 1.5px solid var(--skyblue);
    color: var(--skyblue);
}

.menu-header .btn-default:hover .btn-icon {
    border: 1.5px solid var(--white);
    color: var(--white);
}

.menu-header .btn-default.active .btn-icon {
    border: 1.5px solid var(--white);
    color: var(--white);
}

.btn-default.active {
    pointer-events: none !important;
    cursor: default !important;
}

.btn-default-big {
    padding: 12px 14px 12px 16px;
}

.btn-default * {
    position: relative;
    z-index: 1;
}

.btn-default::before {
    content: '';
    width: 0px;
    height: 100%;
    background: var(--blue);
    position: absolute;
    left: 0px;
    top: 0px;
    transition: .3s;
    border-radius: 100px;
    z-index: 0;

}

.btn-default:hover::before {
    width: 100%;
    height: 100%;
}

.btn-default.active::before {
    width: 100%;
    height: 100%;
}

.btn-icon {
    display: block;
    font-size: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--white);
    border-radius: 100%;
    line-height: 1;
    transition: .3s;
    transform: rotate(-45deg);
}

.btn-default:hover .btn-icon {
    transform: rotate(0deg);
}

.btn-default.active .btn-icon {
    transform: rotate(0deg);
}

.extra-p {
    font-size: 28px;
    font-style: italic;
    font-weight: 300;
}

.services-row {
    margin-top: 220px;
}

.service-item {
    padding: 0px;
    height: 100%;
    font-size: 16px;
    border-radius: 10px;
    position: relative;
}

.service-item a {
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
    display: block;
    margin-bottom: 10px;
}

.service-icon {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: absolute;
    top: -100px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 5px;
}

.service-icon img {
    width: 100%;
}

.long-line {
    width: 100%;
    height: 0px;
    border-bottom: 3px solid var(--skyblue);
    position: absolute;
    left: 0px;
    top: 220px;
}

.service-check {
    width: 30px;
    height: 30px;
    background: var(--skyblue);
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100%;
    top: -186px;
    border: 3px solid var(--white);
}

.service-check::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--white);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
}

.service-check::after {
    content: '';
    width: 0px;
    height: 30px;
    border-right: 3px solid var(--skyblue);
    position: absolute;
    left: 50%;
    top: 22px;
    transform: translatex(-50%);
    transition: .3s;
}

.service-item:hover ::after {
    height: 80px;
}

.service-item:hover .service-icon {
    background-color: var(--skyblue);
}

.service-item:hover .service-icon img {
    filter: invert(1) brightness(1000);
}

.service-item:hover a {
    color: var(--skyblue);
}

.check-list {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 20px 10px;
    flex-wrap: wrap;
}

.list-item {
    width: calc(33.333% - 20px);
    flex: 0 0 calc(33.333% - 20px);
    font-size: 17px;

}

.list-item {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 14px;
}

.list-item i {
    display: block;
    font-size: 18px;
    color: var(--skyblue);
}

.cta {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../images/cta-1.jpg);
    background-size: cover;
    background-position: top left;
}

.cta-inner {
    background-color: #F6F6F9;
    padding: 40px;
    border-radius: 10px;
    position: relative;
}

footer.main-footer {
    position: relative;
    background-color: var(--blue);
    font-family: "Red Hat Display", sans-serif;
}

footer.main-footer * {
    position: relative;
    z-index: 1;
}

.footer-top {
    padding: 0px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.footer-row {
    display: flex;
    justify-content: start;
    align-items: stretch;
}

.footer-item {
    width: 27%;
    flex: 0 0 27%;
    padding: 50px 30px;
    border-left: 1px solid rgba(255, 255, 255, .3);
    position: relative;
}

/*.footer-item:last-child {
    border-right: 0px !important;
}*/

.footer-item:nth-child(1) {
    width: calc(46% - 30px);
    flex: 0 0 calc(46% - 30px);
    padding: 20px 30px;
    margin: 30px 30px 30px 0px;
    border-radius: 12px;
}

/*.footer-item:nth-child(2) {
    padding-left: 50px;
}
*/
.footer-logo {
    width: fit-content;
    display: block;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 170px;
}

.footer-item h3 {
    /*text-align: center;*/
    color: var(--skyblue);
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 600;
}

.footer-item .footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-item .footer-links a.footer-menu-item {
    /*text-align: center;*/
    color: var(--white);
    font-weight: 400;
    font-size: 18px;
}

.footer-item .footer-links a.footer-menu-item:not(.footer-menu-item-no-link):hover {
    color: var(--skyblue);
}

.footer-item .footer-menu-item-no-link {
    pointer-events: none !important;
    cursor: default !important;
}

.footer-item .footer-links a.footer-menu-item.active {
    color: var(--skyblue);
    pointer-events: none !important;
    cursor: default !important;
}

.footer-bottom {
    padding: 30px 12px;
    font-size: 16px;
}

.footer-item .social-links {
    justify-content: end;
    flex-direction: row;
    gap: 15px;
}

.footer-bottom .footer-item {
    width: 100%;
    flex: 0 0 100%;
    padding: 0px;
    border-left: 0px;
    margin: 0px;
}

.footer-bottom .footer-item .social-links a.footer-menu-item {
    font-size: 16px;
}

.copy-right {
    color: var(--white);
}

.home-1:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    background-image: url(../images/bg-1.png);
    background-size: cover;
    background-position: center center;
    opacity: .75;
}

.home-1 * {
    position: relative;
    z-index: 1;
}

.home-3::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background-image: url(../images/bg-12.jpg);
    background-size: cover;
    background-position: top right;
    z-index: 0;
    opacity: .75;
}

.home-3 * {
    position: relative;
    z-index: 1;
}

.home-4 {
    overflow: hidden;

}

.home-4::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background-image: url(../images/bg-13.jpg);
    background-size: cover;
    background-position: bottom left;
    z-index: 0;
    opacity: .75;
}

.home-4 * {
    position: relative;
    z-index: 1;
}

.cta-inner:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    background-image: url(../images/bg-2.png);
    background-size: cover;
    background-position: center center;
    opacity: .5;
}

.cta-inner * {
    position: relative;
    z-index: 1;
}

.isl-4 .check-list {
    /*flex-direction: column;*/
}

.isl-4 .list-item {
    width: calc(50% - 14px);
    flex: 0 0 calc(50% - 14px);
}

.isl-4-card {
    background-color: var(--blue);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
}

.isl-4-row {
    margin-bottom: 100px;
}

.feature-bg-line {
    position: absolute;
    left: 50%;
    top: 80px;
    height: calc(100% - 160px);
    bottom: 0;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.feature-bg-line svg {
    height: 100%;
}

/*.feature-bg-line svg defs {
    display: none;
}*/

.feature-row-1,
.feature-row-2 {
    justify-content: space-between;
    position: relative;
}

.feature-row-2 {
    margin-top: 100px;
}

.feature-circle {
    width: 40px;
    height: 40px;
    border-radius: 0px 10px 10px 0px;
    background-color: var(--white);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.feature-circle::before {
    content: '';
    width: 15px;
    height: 15px;
    background-color: var(--skyblue);
    border-radius: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.feature-row-1 .feature-circle {
    left: calc(50% + 73px);
}

.feature-row-2 .feature-circle {
    left: calc(50% - 61px);
}

.main-card {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    background-color: var(--white);
    gap: 15px;
    position: relative;
}

.main-card-row {
    flex-direction: row;
    align-items: center;
}

.main-card-icon {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    background-color: var(--skyblue);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.main-card-icon img {
    width: 100%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.isl-3 .col-md-4 {
    position: relative;
}

.isl-3 .col-md-4::before {
    content: '';
    width: 0px;
    height: 100%;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translatey(-50%);
    border-right: 1.5px solid rgba(0, 0, 0, .2);
}

.isl-3 .col-md-4:last-child::before {
    opacity: 0;
}

.isl-3 .main-card {
    background-color: transparent;
    text-align: left;
    gap: 24px;
}

.isl-3 .main-card-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--white);
    border: 1px solid #EBEDF1;
    -webkit-filter: drop-shadow(2.5px 2.5px 15px rgba(232, 234, 238, 0.55));
    filter: drop-shadow(2.5px 2.5px 15px rgba(232, 234, 238, 0.55));
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    /*margin:0 auto;*/
    padding: 15px;
}

.isl-3 .main-card-icon:before {
    content: "";
    position: absolute;
    inset: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    border-radius: 50%;
    background-color: var(--skyblue);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.isl-3 .main-card:hover .main-card-icon:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.isl-3 .main-card:hover .main-card-icon img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.smm-3 {
    background-color: #F4F2F9;
}

.smm-3::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background-image: url(../images/bg-3.png);
    background-size: cover;
    background-position: center center;
    mix-blend-mode: luminosity;
    z-index: 0;
}

.smm-3 * {
    position: relative;
    z-index: 1;
}

.smm-3 .main-card {
    background-color: transparent;
    gap: 60px 0px;
}

.smm-3 .main-card::before {
    content: '';
    width: 0px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 70px;
    border-right: 3px solid var(--blue);
    transition: .3s;
}

.smm-3 .main-card:hover::before {
    border-right: 3px solid var(--skyblue);
}

.smm-3 .main-card-icon {
    margin: 0 auto;
    background-color: var(--blue);
}

.smm-3 .main-card:hover .main-card-icon {
    background-color: var(--skyblue);
}

.smm-3 .main-card-content {
    background-color: var(--white);
    padding: 15px;
    border-radius: 5px;
    border: 2px solid var(--blue);
    transition: .3s;
}

.smm-3:hover .main-card-content {
    border: 2px solid var(--skyblue);
}

.smm-3 .main-card .main-card-icon img {
    filter: invert(1) brightness(1000);
}


.smm-4::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background-image: url(../images/bg-4.png);
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.smm-4::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background-image: url(../images/bg-5.jpg);
    background-size: cover;
    background-position: center center;
    mix-blend-mode: luminosity;
    opacity: .6;
    z-index: 0;
}

.smm-4 * {
    position: relative;
    z-index: 1;
}

.smm-4 .main-card {
    background-color: transparent;
}

.smm-4 .main-card-icon img {
    filter: invert(1) brightness(1000);
}

.smm-6 .feature-row-2 .feature-circle {
    left: calc(50% - 53px);
}

.smm-6 .feature-row-1 .feature-circle {
    left: calc(50% + 66px);
}

.smm-card-item {
    border-radius: 10px;
    border-top: 3px solid var(--skyblue);
    border-bottom: 3px solid var(--skyblue);
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.0509803922);
    text-align: center;
    position: relative;
    transition: 0.5s;
    padding: 20px 15px;
    height: 100%;
    transition: .3s;
}

.smm-card-item:hover {
    border-top: 3px solid var(--blue);
    border-bottom: 3px solid var(--blue);
}

.smm-card-item .card-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.smm-card-item:hover .card-icon {
    transform: scale(1.05);
}

.smm-card-item .card-icon img {
    width: 100%;
}

.smm-card-item:hover .card-icon img {
    filter: brightness(0%) saturate(100%);
}

.smm-card-item .card-content {
    padding: 20px 0px;
    margin-bottom: 20px;
    margin-top: 20px;
    position: relative;
}

.smm-card-item .card-content h3 {
    margin-bottom: 0px;
}

.smm-card-item .card-content::before,
.smm-card-item .card-content::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(101, 175, 219, .9) 50%,
        rgba(255, 255, 255, 0.1) 100%);

    transform: scaleY(0.5);
    transform-origin: center;
    transition: .3s;
}

.smm-card-item:hover .card-content::before,
.smm-card-item:hover .card-content::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(0, 0, 0, .9) 50%,
        rgba(255, 255, 255, 0.1) 100%);

    transform: scaleY(0.5);
    transform-origin: center;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .smm-card-item .card-content::before,
    .smm-card-item .card-content::after {
        height: 2px;
        /* Or tweak for perfect alignment */
    }
}

.smm-card-item .card-content::before {
    top: 0;
    /* Line at the top */
}

.smm-card-item .card-content::after {
    bottom: 0;
    /* Line at the bottom */
}

.om-3 .check-list {
    /*flex-direction: column;*/
}

.om-3 .list-item {
    width: 100%;
    flex: 0 0 100%;
}

.om-3::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background-image: url(../images/bg-6.png);
    background-size: cover;
    background-position: center center;
    z-index: 0;
    opacity: .5;
}

.om-3 * {
    position: relative;
    z-index: 1;
}

.om-big-box {
    background-color: var(--blue);
    padding: 50px 30px;
    border-radius: 15px;
    color: var(--white);
    font-size: 17px;
    height: 100%;
}

.om-4 .main-card {
    background-color: transparent;
    padding: 8px;
}

.om-4 .main-card-icon {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    background-color: transparent;
    border-radius: 100%;
    border: 1.5px solid var(--white);
    margin: 0 auto;
    padding: 16px;
}

.om-4 .main-card-icon img {
    filter: invert(1) brightness(1000);
}

.om-last .col-md-5 {
    position: relative;
    color: var(--white);
}

.om-last .col-md-5 .om-last-content {
    position: relative;
    padding: 0px 8px 0px 18px;
}

.om-last .col-md-5 .om-last-content::before {
    content: '';
    height: calc(100% - 50px);
    width: 138px;
    position: absolute;
    left: -20px;
    top: 50px;
    z-index: 1;
    border: 3px solid var(--white);
    border-radius: 20px 0px 0px 0px;
    border-right: 0px;
    border-bottom: 0px;
    transition: .3s;
}

.om-last .col-md-5 .om-last-content::after {
    content: '';
    height: calc(100% - 50px);
    width: 5000px;
    position: absolute;
    right: calc(100% + 20px);
    top: 50px;
    z-index: 1;
    border-bottom: 3px solid var(--white);
    border-radius: 20px 0px 0px 0px;
    transition: .3s;
}

.om-last .col-md-5:hover .om-last-content::before {
    border: 3px solid var(--blue);
    border-right: 0px;
    border-bottom: 0px;
}

.om-last .col-md-5:hover .om-last-content::after {
    border-bottom: 3px solid var(--blue);
}

.om-last .col-md-5::after {
    content: '';
    height: calc(100% + 200px);
    width: 5000px;
    position: absolute;
    right: -12px;
    top: -100px;
    background-color: var(--skyblue);
    z-index: 0;
}

.om-last .col-md-5 * {
    position: relative;
    z-index: 2;
}

.om-last .list-item {
    width: calc(50% - 14px);
    flex: 0 0 calc(50% - 14px);
}

.om-last-icon {
    width: 100px;
    height: 100px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    margin-left: 100px;
    border-radius: 10px;
    border: 3px solid var(--white);
    padding: 15px;
    transition: .3s;
}

.om-last .col-md-5:hover .om-last-icon {
    border: 3px solid var(--blue);
}

.om-last-icon img {
    width: 100%;
    filter: invert(1) brightness(1000);
}

.mas-last .feature-bg-line {
    left: calc(50% - -4px);
}

.mas-last .feature-row-1 .feature-circle {
    left: calc(50% + 80px);
}

.mas-last .feature-row-2 .feature-circle {
    left: calc(50% - 66px);
}

.mas-last .feature-circle::before {
    background-color: var(--blue);
}

.mas-last .feature-bg-line svg path {
    stroke: var(--blue);
}

.mas-3 {
    background-color: #D5EBF9;
}

.mas-3::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background-image: url(../images/bg-8.jpg);
    background-size: cover;
    background-position: top center;
    mix-blend-mode: luminosity;
    z-index: 0;
    opacity: .75;
}

.mas-3 * {
    position: relative;
    z-index: 1;
}

.mas-4 .c-card {
    display: flex;
    flex-direction: row;
    padding: 0px;
    gap: 30px;
    height: auto;
    margin-bottom: 50px;
    position: relative;
    align-items: start;
    background-color: transparent;
}

.mas-4 .c-card::before {
    content: '';
    flex: 0 0 auto;
    position: absolute;
    left: 23px;
    background: var(--skyblue);
    opacity: 1;
    top: 50px;
    height: 100%;
    width: 2px;
}

.mas-4 .c-card .card-icon {
    border-radius: 100%;
    width: 50px;
    padding: 7px;
    flex: 0 0 50px;
    background: transparent;
    border: 2px solid var(--skyblue)
}

.mas-4 .card-icon img {
    width: 100%;
}

.mas-4 .c-card:last-child {
    margin-bottom: 0px;
}

.mas-4 .c-card:last-child::before {
    height: calc(100% - 50px);
    opacity: 0;
}

.mas-5 .main-card {
    background-color: transparent;
    height: auto;
    padding: 12px;
}

.mas-5 .main-card::before {
    content: '';
    width: 5px;
    height: 70px;
    background-color: var(--skyblue);
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    top: -100px;
    border-radius: 100px;
}

.mas-5 .main-card::after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: var(--skyblue);
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    top: -22px;
    border-radius: 100%;
}

.mas-5 .main-card * {
    position: relative;
    z-index: 1;
}

.mas-5 .main-card .main-card-icon {
    margin: 0 auto;
    transform: rotate(45deg);
    margin-bottom: 20px;
    border-radius: 5px;
}

.mas-5 .main-card .main-card-icon img {
    filter: invert(1) brightness(1000);
    transform: rotate(-45deg);
}

.mas-5-row {
    position: relative;
    padding-top: 100px;
}

.mas-5-row::before {
    content: '';
    width: 100%;
    height: calc(100% + 100px);
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: transparent;
    border: 5px solid var(--skyblue);
    z-index: 0;
    border-bottom: 0px;
    /*border-radius:15px 15px 0px 0px;*/
}

.mas-5-row * {
    position: relative;
    z-index: 1;
}

.mas-4 {
    padding-bottom: 0px;
}

.mas-4-row {
    align-items: end;
}

.mas-4-left {
    padding-bottom: 100px;
}

.mas-4-men-image {
    position: relative;
}

.mas-4-men-image:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(101, 175, 219, .3);
    -webkit-filter: blur(100px);
    filter: blur(100px);
    z-index: 0;
}

.mas-4-men-image * {
    position: relative;
    z-index: 1;
}

.mas-4-men-image img.men-bg {
    width: 100%;
    position: absolute;
    top: 0px;
}

.mas-4-men-image img.men-image {
    width: 100%;
    padding-top: 70px;
}

.cm-1 .feature-bg-line {
    left: 50%;
}

.cm-1 .feature-row-1 .feature-circle {
    left: calc(50% + 75px);
}

.cm-1 .feature-row-2 .feature-circle {
    left: calc(50% - 66px);
}

.cm-1 .feature-circle::before {
    background-color: var(--blue);
}

.cm-1 .feature-bg-line svg path {
    stroke: var(--blue);
}

.cm-3 .list-item {
    width: 100%;
    flex: 0 0 100%;
}

.cm-5::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background-image: url(../images/bg-8.jpg);
    background-size: cover;
    background-position: top center;
    mix-blend-mode: luminosity;
    z-index: 0;
    opacity: 1;
}

.cm-5 * {
    position: relative;
    z-index: 1;
}

.cm-5-card {
    padding: 20px 30px;
    border: 1.5px solid var(--skyblue);
    border-radius: 12px;
    height: 100%;
    background-color: var(--white);
}

.cm-5-row {
    position: relative;
}

.cm-5-icon {
    width: 130px;
    height: 130px;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 100%;
    top: 56px;
    padding: 20px;
}

.cm-5-icon::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--white);
    position: absolute;
    inset: 0%;
    z-index: 1;
    border-radius: 100%;
}

.cm-5-icon img {
    width: 100%;
    flex: 0 0 100%;
    position: relative;
    z-index: 2;
}

.cm-line {
    position: absolute;
    z-index: 0;
    border: 1.5px solid var(--skyblue);
}

.cm-line-1 {
    width: 100px;
    height: 80px;
    background: transparent;
    border-radius: 0px 10px 0px 0px;
    left: calc(-50% + 18px);
    top: -18px;
    border-left: 0px;
    border-bottom: 0px;
}

.cm-line-2 {
    width: 100px;
    height: 80px;
    background: transparent;
    border-radius: 10px 0px 0px 0px;
    right: calc(-50% + 18px);
    top: -18px;
    border-right: 0px;
    border-bottom: 0px;
}

.cm-line-3 {
    width: 100px;
    height: 80px;
    background: transparent;
    border-radius: 0px 0px 10px 0px;
    left: calc(-50% + 18px);
    bottom: -18px;
    border-left: 0px;
    border-top: 0px;
}

.cm-line-4 {
    width: 100px;
    height: 80px;
    background: transparent;
    border-radius: 0px 0px 0px 10px;
    right: calc(-50% + 18px);
    bottom: -18px;
    border-right: 0px;
    border-top: 0px;
}

.cm-line-5 {
    width: 0px;
    height: 110px;
    background: transparent;
    border-radius: 0px 0px 0px 10px;
    bottom: -105px;
    border-right: 0px;
    border-top: 0px;
}

.cm-4 .main-card {
    height: 100%;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 19px 31px 0px rgba(0, 0, 0, 0.06);
    font-size: 17px;
    border-top: 5px solid var(--skyblue);
}

.cm-4 .main-card h3 {
    margin-bottom: 0px;
}

.cm-4 .main-card-icon {
    background-color: transparent;
    padding: 0px;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
}

.cm-4 .main-card-header {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 16px;
}

#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(--skyblue);
    border-color: var(--skyblue);
    border-radius: 3px;
}

.recaptch-cover .recaptch-cover-header button:active {
    background: var(--skyblue);
    color: var(--white);
}

.recaptch-cover .recaptch-cover-header button:hover {
    background: var(--skyblue);
    color: var(--white);
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    background-color: transparent;
    border-color: var(--skyblue);
    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);
}

.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(--skyblue);
    color: #ffffff;
    padding: 15px 40px;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background: #000000;
    color: #ffffff;
}

/* 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(--skyblue);
}

.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(--skyblue);
    /* 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: 1.5px solid var(--skyblue);
    font-size: 30px;
    color: var(--skyblue);
    position: relative;
    transition: transform 0.3s ease;
}

.sequence-number {
    position: absolute;
    top: -12px;
    left: -12px;
    background: var(--skyblue);
    color: var(--white);
    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-image.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.captcha-selection-area * {
    position: relative;
    z-index: 2;
}

.captcha-selection-area::before {
    content: '';
    width: 100%;
    height: 30%;
    background: rgba(255, 255, 255, .7);
    position: absolute;
    left: 0px;
    top: 0px;
}

.captcha-selection-area::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .85);
    position: absolute;
    left: 0px;
    top: 0px;
}

.captcha-hint {
    text-align: center;
    color: var(--black);
    font-size: 17px;
    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);
    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: var(--skyblue);
    border: 1px solid var(--blue);
    z-index: 4;
    color: var(--white);
}

.selection-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--blue);
    color: var(--white);
    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;
}

.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 strong+p {
    margin-left: 24px;
}

.legal-pages p.company-name {
    font-weight: bold;
    font-family: "Red Hat Display", 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-7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10000001;
}

.loader {
    width: 40px;
    aspect-ratio: 1;
    color: var(--skyblue);
    position: relative;
    background: radial-gradient(10px, currentColor 94%, #0000);
}

.loader:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(9px at bottom right, #0000 94%, currentColor) top left,
        radial-gradient(9px at bottom left, #0000 94%, currentColor) top right,
        radial-gradient(9px at top right, #0000 94%, currentColor) bottom left,
        radial-gradient(9px at top left, #0000 94%, currentColor) bottom right;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    animation: l18 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes l18 {
    33% {
        inset: -10px;
        transform: rotate(0deg)
    }

    66% {
        inset: -10px;
        transform: rotate(90deg)
    }

    100% {
        inset: 0;
        transform: rotate(90deg)
    }
}