* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body > * {
    position: relative;
    z-index: 10;
}

body.no-scroll {
    overflow: hidden;
}

body { overflow-x: hidden; }

:root {
    --primary-color: #A892FF;
    --secondary-color: #1C1C3D;
    --brand-green: #C8D37D;
    --brand-red: rgb(228, 4, 4);
    --text-color: #4A4A4A;
    --text-color1: #6A6A6A;
}

.Container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}
.other-cont { margin-top: 180px; }

.content, .content1 {
    display: flex;
    width: 100%;
    max-width: 1208px;
}
.content1 { flex-direction: column; }

/* Firefox */
@-moz-document url-prefix() {
    html {
        scrollbar-width: thin;
        scrollbar-color: #D5D5D5 #F1F1F1;
    }
}

/* scrollbar styles */
html::-webkit-scrollbar {
    width: 5px; 
}

html::-webkit-scrollbar-thumb {
    background: #E6E6E6; 
    height: 87px;
    border-radius: 3px;
}

/*** Remove valid/invalid feedback effects ***/
.was-validated .form-control:valid,
.was-validated .form-control:invalid {
    background-image: none !important;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid,
.was-validated .bootstrap-select select:valid+.dropdown-toggle {
    border-color: var(--border-color) !important;
}

.was-validated .form-control:valid:focus,
.was-validated .form-select:valid:focus {
    box-shadow: none !important;
}

.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple]):not([size]) {
    --bs-form-select-bg-icon: none !important;
}

.form-select {
    --bs-form-select-bg-img: none !important;
    background-image: url(../images/arrow-down-l.svg) !important;
    background-size: 8px 5px !important;
    background-position: right 22px center !important;
}

.form-floating > .form-control {
    min-height: unset !important;
}

.invalid-feedback span {
    color: var(--brand-red);
    font: 10px 'Poppins';
    line-height: 13px;
    padding-left: 5px;
}

.form-floating > label,
.form-floating > .form-control {
    padding-left: 21px !important;
}
/***************************************/

/* intro animation */
.intro {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100vh;
}

.intro-decor1 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.intro-decor2 {
    position: absolute;
    top: 0;
    right: 0;
}

.hidden-intro, .hidden {
    display: none !important;
    opacity: 0;
}

.hidden-intro.show {
    display: block;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.intro-decor1 path, .intro-decor2 path {
    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes drawPath {
    from {
      stroke-dashoffset: var(--path-length);
    }
    to {
      stroke-dashoffset: 0;
    }
}

.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    overflow: hidden;
}

.title > p:last-child {
    color: var(--primary-color);
    font: 37px 'Poppins Semibold';
    line-height: 43px;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeAndSlide 2s ease-out forwards;
    animation-delay: 0.3s;
    transform: translateY(50%);
}

.intro .title img {
    opacity: 0;
    animation: fadeAndSlide 2s ease-out forwards;
}

.hidden-intro, .hidden {
    display: none !important;
    opacity: 0;
}

.hidden-intro.show {
    display: block;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeAndSlide {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* page decors */
.decor {
    position: absolute;
    z-index: 4;
}

.decor:first-of-type, .main-decor1 { top: -2px; right: -2px; }
.main-decor2 { bottom: 0px; left: 0px; }

header {
    min-height: 100px;
    position: fixed;
    top: 50px;
    z-index: 1000;
}

.header-content {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    filter: brightness(0.5);
    display: flex;
    gap: 24px;
    align-items: center;
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.07));
    filter: blur(60%);
    gap: 30px;
    width: 100%;
    padding: 0 60px;
    max-width: 1206px;
}

.logo {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font: 12px 'Poppins Semibold';
    line-height: 14px;
}

.logo img {
    width: 44px;
    height: 38px;
    object-fit: contain;
}

.menu, .solution-category-menu {
    border-radius: 30px;
    display: flex;
    align-items: center;
    margin: 0 9px 0 auto;
    position: relative;
    transition: all 0.3s ease;
}

.solution-category-menu { margin: unset; margin-bottom: 30px; }

.menu a, .solution-category-menu a {
    border-radius: 30px;
    color: unset;
    text-decoration: none;
    font: 14px 'Poppins';
    line-height: 19px;
    padding: 15px 17px;
    transition: all 0.3s ease;
}

.menu-border {
    position: absolute;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
  
.login-link {
    background: var(--primary-color);
    border-radius: 25px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'Poppins Medium';
    line-height: 19px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 140px;
    height: 50px;
}
.login-link:hover { background: var(--brand-green); }
.login-link i, #menu-toggle-button { display: none; }

/* lanuage changer */
.language-change {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-change > span:first-of-type {
    color: var(--primary-color);
    font: 12px 'Poppins';
    line-height: 18px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 31px;
    height: 18px;
}
  
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
  
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
  
.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 3px;
    background: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
  
input:checked + .slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
}
  
/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}
  
.slider.round:before {
    border-radius: 50%;
}

.dropdownMenu {
    background: transparent;
    color: white;
    padding: 0 30px;
    position: absolute;
    top: 110%;
    width: 100%;
    height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: height 0.5s ease;
}
  
.dropdownMenu.visible, .dropdownMenu.active { height: calc(100vh - 80px); }

.mobile-menu {
    background: white;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0px 3px 8px rgba(168, 146, 255 , 0.6); 
    padding: 25px 20px 100px;
    margin-bottom: 10px;
}

.mobile-menu > a {
    border: 1px solid var(--primary-color);
    border-radius: 36px;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding-left: 55px;
    width: 100%;
    height: 70px;
    font: 18px 'Poppins';
    line-height: 25px;
    transition: all 0.3s ease;
    &:hover {
        background: var(--primary-color);
        color: white;
    }
}

.mobile-socials {
    background: white;
    box-shadow: 0px 3px 8px rgba(168, 146, 255 , 0.6); 
    border-radius: 40px;
    color: black;
    padding: 30px 20px;
    display: flex;
    gap: 30px;
    max-height: 90px;
    margin-bottom: 170px;
    a {
        color: #CECECE;
        text-decoration: none;
        font: 14px 'Campton Medium';
        line-height: 19px;
    }
    .language-change { display: flex !important; }
}

footer {
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    padding: 30px 20px;
    position: relative;
    width: 100%;
    min-height: 496px;
    z-index: 10;
}

.footer-content, .footer-top, .footer-bottom, .socials {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-content {
    max-width: 1326px;
    width: 100%;
}

.footer-logo {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font: 21px 'Poppins Semibold';
    line-height: 25px;
}

.footer-logo img {
    width: 76px;
    height: 66px;
    object-fit: contain;
}

.footer-left {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0 40px;
    width: 32.3%;
    min-height: 100%;
}

.copyright {
    color: rgba(255, 255, 255, 0.47);
    display: flex;
    flex-direction: column;
    gap: 5px;
    font: 10px 'Poppins';
    line-height: 16px;
}
.copyright a { color: unset; text-decoration: none; }

.footer-right, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-right { width: 67.7%; }

.footer-top {
    min-height: 213px;
    width: 100%;
}

.footer-menu {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 19px);
    row-gap: 10px;
    padding: 65px 0 0 50px;
    width: 38%;
    min-height: 213px;
}

.footer-menu a {
    display: flex;
    color: white;
    text-decoration: none;
    font: 14px 'Poppins';
    line-height: 19px;
}

.subscription {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    padding: 65px 0 0 40px;
    width: calc(62% - 10px);
    min-height: 213px;
}

.subscription p {
    color: white;
    font: 14px 'Poppins';
    line-height: 19px;
    margin-bottom: 15px;
}

.subscription div { position: relative; width: 365px; }
.subscription input {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 23px;
    border: 23px;
    color: rgba(255, 255, 255, 0.53);
    font: 12px 'Poppins';
    line-height: 16px;
    padding: 0 100px 0 20px;
    width: 365px;
    height: 45px;
}
.subscription input:focus { outline: none; }

.subscription button {
    background: rgba(255, 255, 255, 0.09);
    border: none;
    border-radius: 23px;
    width: 85px;
    height: 45px;
    position: absolute;
    right: 0;
    transition: all 0.3s ease;
}
.subscription button:hover { background: var(--primary-color); }
.subscription button svg { margin-top: -5px; }

.footer-bottom { width: 100%; }
.footer-bottom .copyright { display: none; }
.footer-info {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    padding: 65px 25px 0 40px;
    width: 28.5%;
    min-height: 213px;
}

.footer-info p:first-child {
    color: white;
    font: 14px 'Poppins';
    line-height: 19px;
    margin-bottom: 20px;
}

.footer-info > p:nth-child(2), .footer-info a {
    display: flex;
    color: #D4D4DB;
    text-decoration: none;
    font: 12px 'Poppins';
    line-height: 16px;
    margin-bottom: 0;
}

.footer-contact { width: calc(43% - 10px); }

.footer-contact > .footer-info {
    width: 100%;
    min-height: 138px;
    padding-top: 47px;
}

.socials a {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    width: calc(20% - 8px);
    height: 65px;
}

.banner-container {  
    min-height: 100vh; 
    position: relative;
}

.banner-container > div:first-child {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc((100% - 1088px) / 2);
    max-width: 520px;

    > p:first-child {
        font: 54px 'Poppins Semibold';
        line-height: 58px;
        margin-bottom: 10px;
        span:last-child { color: var(--primary-color); }
    }

    > p:nth-child(2) {
        color: var(--text-color);
        font: 16px 'Poppins Medium';
        line-height: 18px;
        margin-bottom: 20px;
    }

    > div {
        display: flex;
        gap: 18px;
        a {
            border-radius: 23px;
            color: unset;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font: 12px 'Poppins Medium';
            line-height: 18px;
            width: 180px;
            height: 45px;
            transition: all 0.3s ease;
            &:hover {
                background: var(--primary-color) !important;
                color: white !important;
            }
        }
        a:first-child {
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
        }
        a:last-child {
            background: var(--text-color);
            color: white;

        }
    }
}

.social-media {
    display: none;
    gap: 30px;
    position: absolute;
    left: calc((100% - 1210px) / 2 - 45px);
    bottom: 40%;
    rotate: -90deg;
    width: 20px;
}

.social-media a {
    color: #CECECE;
    text-decoration: none;
    font: 14px 'Campton Medium';
    line-height: 18px;
    position: relative;
    transition: all 0.3s ease;
}
.social-media a:hover { color: var(--primary-color); }

.banner-decor {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 150px;
    left: 50%;
}

.banner-decor > div:first-child {
    background: linear-gradient(0deg, var(--primary-color) 0.00%, rgba(168,146,255,0) 100.00%);
    width: 2px;
    height: calc(100vh - 250px);
}

.circle {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19.5px;
    height: 19.5px;
    position: relative;
    margin-top: -10px;

    div {
        background: var(--primary-color);
        border-radius: 50%;
        width: 9.5px;
        height: 9.5px;
    }

    &::after, &::before{
        content: "";
        display: block;
        position: absolute;
        width: 9px;
        height: 9px;
        background: rgba(168, 146, 255, 0.47);
        border-radius: 50%;
        z-index: -1;
        animation: grow 2s ease-in-out infinite;
    }
    &::after {
        background: var(--primary-color);
        &::before {
            content: "";
            display: block;
            position: absolute;
            width: 9px;
            height: 9px;
            background: var(--primary-color);
            border-radius: 50%;
            z-index: -1;
            animation: grow 1.5s ease-in-out infinite;
        }
    }
    &::before{
        background: var(--primary-color);
        animation-delay: 1s;
    }
}

.reasons .reason-decor .circle {
    &::after, &::before{
        animation: none;
    }
    &::after {
        &::before {
            animation: none;
        }
    }
}

.reasons .reason:hover .reason-decor .circle {
    &::after, &::before{
        animation: grow 2s ease-in-out infinite;
    }
    &::after {
        &::before {
            animation: grow 1.5s ease-in-out infinite;
        }
    }
    &::before{
        animation-delay: 1s;
    }
}

@keyframes grow {
    0% {
        transform: scale(1, 1);
        opacity: 1;
    }
    100% {
        transform: scale(5, 5);
        opacity: 0.47;
    }
}

/* login-form */
.login-cont, .contact-cont { margin-bottom: 90px; }
.login-content, .contact {
    background: var(--secondary-color);
    border-radius: 50px;
    padding: 100px 20px;
    min-height: 600px;
    justify-content: center;
    color: white;
    position: relative;
}

.login-content > img:first-child, .contact > img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 260px;
    height: 180px;
    z-index: 1;
}

.login-content > img:nth-child(2), .contact > img:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 260px;
    z-index: 1;
    opacity: 0.03;
}

.login-content > img:nth-child(3), .contact > img:nth-child(3) {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 260px;
    z-index: 1;
    opacity: 0.03;
}

.login-content > img:nth-child(4), .contact > img:nth-child(4) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 310px;
    height: 420px;
    z-index: 1;
}

.login-form {
    position: relative;
    z-index: 2;
    width: 370px;
}

.login-form > p {
    font: 40px 'Poppins Semibold';
    line-height: 60px;
    margin-bottom: 50px;
    text-align: center;
}

.login-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255, 0.3);
    color: white;
    font: 12px "Poppins";
    line-height: 16px;
    width: 100%;
}
.login-form input:focus { outline: none; }
.login-form input:-webkit-autofill,
.login-form input:-webkit-autofill:hover, 
.login-form input:-webkit-autofill:focus {
  background: transparent !important;
  color: white !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  box-shadow: 0 0 0px 1000px transparant inset !important;
  transition: all 5000s ease-in-out 0s;
}

.login-form > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font: 14px "Poppins";
    line-height: 18px;
    margin-bottom: 30px;
}

.login-form > div a {
    color: rgba(255,255,255,0.56);
    text-decoration: none;
    font-size: 10px;
    line-height: 13px;
    transition: all 0.3s ease;
}
.login-form > div a:hover { color: var(--brand-green); }

.auth-btn, .register-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 23px;
    color: var(--primary-color);
    font: 14px 'Poppins Medium';
    line-height: 19px;
    height: 45px;
    width: 100%;
    margin-bottom: 45px;
    transition: all 0.3s ease;
}
.auth-btn:hover, .register-btn:hover {
    background: var(--primary-color);
    color: white;
}

.login-form > a:last-child {
    color: white;
    display: flex;
    justify-content: center;
    font: 14px 'Poppins';
    line-height: 19px;
    transition: all 0.3s ease;
}
.login-form > a:last-child:hover { color: var(--brand-green); }

/* register page */
.register-form {
    width: 100%;
    max-width: 930px;
}

.register-form > p:first-child {
    font: 40px 'Poppins Semibold';
    line-height: 60px;
    -webkit-text-stroke: 1px black;
    text-align: center;
    margin-bottom: 50px;
}

.data-title {
    font: 20px 'Poppins Semibold';
    line-height: 30px;
    margin-bottom: 30px;
}

.register-form label {
    color: black;
    font: 14px 'Poppins';
    line-height: 18px;
}

.register-form input {
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    font: 12px "Poppins";
    line-height: 16px;
    padding-left: 0;
    height: 22px;
}
.register-form .form-control:focus {
    box-shadow: 0 0 0 .25rem rgba(168,146,255,0.25);
    border-color: var(--primary-color);
}

.form-group, .form-group1, .form-group2 {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}
.form-group2 { flex-direction: column; gap: 20px; }
.form-group > div, .form-group2 > div { width: calc(50% - 15px); }
.form-group1 > div { width: calc((100% - 60px) / 3); }

.register-form .form-check { padding: 0 !important; }
.check {
    border: 1px solid rgba(0,0,0,0.3) !important; 
    background: transparent;
    border-radius: 3px !important;
    cursor: pointer;
    vertical-align: middle;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    position: relative;
    margin-right: 7px;
    width: 20px !important;
    height: 20px !important;
    transition: all 0.3s ease;
}
.check:checked {
    background: var(--brand-green) !important;
    border-color: var(--brand-green) !important;
}

.check:checked::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 7px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.register-btn { width: 450px; }

.phone > div {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 4px;
}

.phone button {
    background: transparent;
    border: 1px solid var(--border-color);
    font: 14px 'Poppins' !important;
    line-height: 19px;
    padding: 0 !important;
    height: 20px !important;
    width: 50px !important;
}

.phone .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) { width: 50px !important; height: 20px !important; }
.phone .bootstrap-select .dropdown-menu {  min-width: 220px; }
.phone button:hover {
    border-color: var(--border-color);
    background: transparent;
}

.phone .bootstrap-select .dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

.country-codes { font: 14px 'Poppins'; }

/* custom select */
.register-form .select2  { margin-bottom: 30px !important; }
.register-form .select2-container {
    height: 42.5px !important;
    width: 100% !important;
}

.register-form .select2-container .select2-selection--single { 
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 0 !important;
    height: 42.5px !important;
}

.register-form .select2-container .select2-selection--single .select2-selection__rendered {
    color: black !important;
    display: flex !important;
    align-items: center;
    font: 14px 'Poppins' !important;
    line-height: 19px !important;
    padding-left: 0px !important;
}

.register-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    background: url(../images/select-arrow.svg) no-repeat center center;
    background-size: contain;
    width: 14.5px !important;
    height: 7.5px !important;
    right: 0 !important;
    top: 30% !important;
    transform: translateY(-50%);
}
  
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none !important;
}

.select2-dropdown {
    background: white !important;
    border: none !important;
}

.select2-results {
    font: 12px 'Poppins';
    line-height: 16px;
}

.select2-results__option {
    padding: 17px 0 17px 20px !important;
}

.select2-container--default .select2-results__option--selected {
    background: var(--primary-color) !important;
    color: white !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--brand-green) !important;
    color: white !important;
}

.select2-results__option--disabled { display: none !important; }

/* contact page */
.contact {
    justify-content: unset;
    align-items: flex-end;
    gap: 85px;
    padding: 115px 60px;
}

.contact > * {
    position: relative;
    z-index: 3;
}

.contact-info {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    color: white;
    padding: 53px 70px 100px;
    width: 320px;
}

.contact-info > p:first-child {
    font: 40px 'Poppins Semibold';
    line-height: 60px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 50px;
}

.contact-item > span:first-child {
    font: 14px 'Poppins';
    line-height: 19px;
}

.contact-item > span:last-child, .contact-item > a {
    color: #D4D4DB;
    text-decoration: none;
    font: 12px 'Poppins';
    line-height: 19px;
    transition: all 0.3s ease;
}

.contact-item > span:last-child:hover, .contact-item > a:hover {  color: var(--primary-color); }

.contact-form { width: 370px; }
.contact-form > p:first-child { display: none; }
.contact-form > div { margin-bottom: 20px; }
.contact-form label {
    color: white;
    font: 14px 'Poppins';
    line-height: 18px;
}

.contact-form input, .contact-form textarea {
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: white !important;
    font: 12px "Poppins";
    line-height: 16px;
    padding-left: 0;
    height: 22px;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 .25rem rgba(168,146,255,0.25);
    border-color: var(--primary-color);
    background: transparent;
}

.contact-form textarea {
    height: 130px;
    resize: none;
}

.contact-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 23px;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: 14px 'Poppins Medium';
    line-height: 19px;
    padding: 0 30px 0 50px;
    position: relative;
    overflow: hidden;
    width: 140px;
    height: 45px;
    transition: all 0.3s ease;
}

.contact-btn svg {
    position: absolute;
    right: -16px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-color);
    color: white;
    width: 100%;
}
.contact-btn:hover svg { right: 30px; }

/* why us */
.why-us { margin-bottom: 100px; }
.info-group, .info-group1 {
    display: grid;
    grid-template-columns: 524fr 624fr;
    gap: 10px;
    margin-bottom: 10px;
}
.info-group1 { grid-template-columns: 316fr 316fr 524fr; }

.info-block {
    background: rgba(245, 245, 245, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid #E6E6E6;
    border-radius: 50px;
    height: 300px;
    transition: all 0.3s ease;
    &:hover {
        box-shadow: 0px 3px 8px rgba(168, 146, 255 , 0.6); 
        transform: translate(-20px, -20px);
    }
}

.info-title {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 30px;
}

.info-title span:first-child {
    color: var(--text-color1);
    font: 21px 'Poppins Semibold';
    line-height: 24px;
}

.info-title span:last-child {
    color: var(--primary-color);
    font: 50px 'Poppins Semibold';
    line-height: 40px;
}

.info-group .info-block:first-child { position: relative; overflow: hidden; }
.info-group  .info-block:first-child img {
    position: absolute;
    top: 0;
    right: 0;
}
.info-group .info-block:first-child p {
    color: var(--text-color);
    font: 30px 'Poppins Medium';
    line-height: 40px;
    max-width: 400px;
    position: absolute;
    left: 65px;
    bottom: 35px;
    margin-bottom: 0;
}

.info-group .info-block:nth-child(2) {
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font: 40px 'Poppins Medium';
    line-height: 40px;
    padding: 0 55px;
}
.info-group .info-block:nth-child(2) img {
    width: 70px;
    height: 62px;
    object-fit: contain;
}
.info-group .info-block:nth-child(2) p { text-align: center; margin-bottom: 0; }

.info-group1 .info-block:first-child {
    color: var(--brand-green);
    display: flex;
    justify-content: center;
    font: 30px 'Poppins Medium';
    line-height: 40px;
    padding-top: 70px;
}
.info-group1 .info-block:first-child p { max-width: 215px; margin-bottom: 0; }

.info-group1 .info-block:nth-child(2) {
    border: none;
    overflow: hidden;
}
.info-group1 .info-block:nth-child(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-group1 .info-block:last-child { 
    padding: 60px 0 0 40px;
    position: relative; 
    overflow: hidden;
}

.info-group1 .info-block:last-child img {
    border-radius: 50px;
    position: absolute;
    bottom: 0;
    right: -100px;
}

.info-group1 .info-block:last-child p {
    color: var(--text-color);
    font: 30px 'Poppins Medium';
    line-height: 40px;
    max-width: 220px;
}

/* advantage */
.advantage-container {
    background: #fbfbfb;
    box-shadow: inset 0px -3px 8px rgba(0, 0, 0, 0.13);
    padding: 80px 20px 90px;
}

.advantage-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    p:first-child {
        color: var(--primary-color);
        text-align: center;
        font: 50px 'Poppins Semibold';
        line-height: 51px;
        margin-bottom: 0;
    }
    p:last-child {
        color: var(--text-color1);
        text-align: center;
        font: 20px 'Poppins';
        line-height: 30px;
        max-width: 815px;
    }
}

.advantage-cont {
    background: rgba(245, 245, 245, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid #E6E6E6;
    border-radius: 50px;
    width: 100%;
    padding: 60px 60px 30px;
}

.advantage-table {
    --bs-table-bg: unset !important;
    border-collapse: separate;
    border-spacing: 0 20px;
    position: relative;
    margin: 0 !important;
}

.advantage-table:after {
    content: '';
    background: rgba(168, 146, 255, 0.17);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    position: absolute;
    top: -8px;
    left: 40%;
    transform: translateX(-50%);
    width: 310px;
    height: 100%;
    z-index: 1;
}

.advantage-table thead th {
    color: var(--text-color);
    font: 20px 'Poppins Semibold';
    line-height: 40px;
}

.advantage-table tbody td {
    color: var(--text-color);
    font: 18px 'Poppins Medium';
    line-height: 40px;
}

.advantage-table tbody tr td {
    background: white;
    padding: 10px;
}

.advantage-table tbody tr td:first-child { border-radius: 20px 0 0 20px; }
.advantage-table tbody tr td:last-child { border-radius: 0 20px 20px 0; }

/* partners */
.partner-cont { margin-bottom: 100px; }
.partner-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;
    margin-top: 20px;
}

/* testimonials */
.testimonials {
    background: linear-gradient(102deg, #f5f5f5 0.00%, #e6dfff 100.00%);
    padding: 50px 30px 100px;
}

.testimonials-cont { max-width: 720px; }
.testimonials-cont > p:first-child {
    color: var(--primary-color);
    font: 30px 'Poppins Semibold';
    line-height: 40px;
    margin-bottom: 50px;
}

.testimonial-swiper { width: 100% !important; padding-bottom: 30px !important; }
.testimonial-swiper .swiper-pagination-bullet {
    background: #E6E6E6;
    border-radius: 50%;
    color: white;
    width: 10px;
    height: 10px;
    opacity: 1;
}

.testimonial-swiper .swiper-pagination-bullet-active {  background: var(--primary-color); }
.testimonial-swiper .swiper-horizontal > .swiper-pagination-bullets {
    left: -110px !important;
}

.testimonial {
    display: flex !important;
    align-items: flex-start;
    gap: 40px;
}

.author {
    background: rgba(245, 245, 245, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid #E6E6E6;
    border-radius: 50px;
    padding: 45px 25px;
    width: 195px;
}

.author img {
    border-radius: 50%;
    width: 69px;
    height: 69px;
    object-fit: cover;
    margin-bottom: 15px;
}

.author .name {
    color: var(--text-color);
    font: 16px 'Poppins Light';
    line-height: 22px;
    margin-bottom: 0;
}

.author .position {
    color: var(--text-color1);
    font: 12px 'Poppins Light';
    line-height: 16px;
    margin-bottom: 0;
}

.quote { width: calc(100% - 235px); }
.quote img { margin-bottom: 18px; }
.quote div {
    color: var(--text-color);
    font: 16px 'Poppins Light';
    line-height: 22px;
    height: 154px;
    text-overflow: ellipsis;
    overflow: hidden;
}
.quote div * {
    font: 16px 'Poppins Light' !important;
    line-height: 22px !important;
}

/* overview page */
.overview-cont { margin-bottom: 100px; }
.overview {
    background: var(--secondary-color);
    border-radius: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 90px 20px 140px;
}
.overview .banner-decor { 
    position: unset;
    margin-bottom: 50px; 
    transform: unset;
}
.overview::after {
    content: '';
    background-image: url('../images/form-br.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    position: absolute;
    width: 311px;
    height: 419px;
    left: 0;
    bottom: 0;
}
.overview .banner-decor > div:first-child { height: 170px; }
.overview .banner-decor > div:nth-child(2) { background: transparent; }

.overview-content { max-width: 600px; }

.overview-content > p:first-child {
    font: 54px 'Poppins Semibold';
    line-height: 58px;
    text-align: center;
    margin-bottom: 40px;
}

.overview-content > p:first-child span { color: var(--primary-color); }

.overview-block { margin-bottom: 40px; }
.overview-block:last-of-type { margin-bottom: 0; }
.overview-block > p {
    font: 40px 'Poppins Semibold';
    line-height: 40px;
    margin-bottom: 10px;
}

.overview-block > div, .overview-block > div * {
    font: 14px 'Poppins' !important;
    line-height: 16px !important;
}

/* have more questions */
.questions { 
    background: white; 
    padding: 25px 30px 70px; 
    position: relative;
    z-index: 10;
}

.questions .banner-decor > div:first-child { height: 140px;}
.questions .banner-decor { top: -40px; }

.questions-content {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 20px;
    min-height: 500px;
}

.questions-text {
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    flex-direction: column;
    gap: 50px;
    width: 100%;
}

.questions-text > p {
    font: 50px 'Poppins Semibold';
    line-height: 58px;
    text-align: center;
    max-width: 390px;
    margin-bottom: 0;
}
.questions-text > p span { color: var(--primary-color); }
.questions-text > a {
    border: 1px solid var(--primary-color);
    border-radius: 23px;
    color: var(--primary-color);
    text-decoration: none;
    font: 14px 'Poppins';
    line-height: 18px;
    width: 140px;
    height: 45px;
    transition: all 0.3s ease;
}
.questions-text > a:hover { background: var(--primary-color); color: white; }

/* inner solutions */
.curr-solution { position: relative; }
.curr-solution .banner-decor { left: 100px; top: -180px; z-index: 2; }
.curr-solution .banner-decor > div:first-child { height: 270px; }

.solutions-heading {
    background: var(--secondary-color);
    border-radius: 50px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 60px 0 150px;
    width: 100%;
    min-height: 180px;
    margin-bottom: 30px;
}

.solutions-heading::after {
    content: '';
    background-image: url('../images/form-tl.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 260px;
    height: 180px;
    left: 0;
    z-index: 1;
}
.solutions-heading > * { position: relative; z-index: 2; }

.solutions-heading p {
    font: 40px 'Poppins Semibold';
    line-height: 40px;
    margin-bottom: 0;
}

.go-back {
    background: rgba(255, 255, 255, 0.27);
    border-radius: 23px;
    color: white;
    text-decoration: none;
    font: 10px 'Poppins Light';
    line-height: 13px;
    position: relative;
    width: 85px;
    height: 45px;
    transition: all 0.3s ease;
}

.go-back svg {
    position: absolute;
    top: 15px;
    right: 30px;
    transition: all 0.3s ease;
}

.go-back span {
    position: absolute;
    top: 15px;
    right: 30px;
    opacity: 0;
    min-width: 40px;
    transition: all 0.3s ease;
}

.go-back:hover span { opacity: 1; }
.go-back:hover svg { transform: scale(0.6); top: 16px; right: 80px; }
.go-back:hover { background: var(--primary-color); width: 120px; }

.curr-solution-text {
    background: #F5F5F5;
    border-radius: 50px;
    filter: drop-shadow(0px 3px 7px rgba(0,0,0,0.16 ));
    padding: 45px 60px 30px;
    margin-bottom: 60px;

    .name {
        color: var(--primary-color);
        -webkit-text-stroke: 0.5px var(--primary-color);
        font: 30px 'Poppins';
        line-height: 35px;
        margin-bottom: 30px;
    }

    .text, .text * {
        color: #404040;
        font: 16px 'Poppins Light' !important;
        line-height: 25px !important;
    }

    hr {
        opacity: 1;
        border-color: #EAEAEA;
        margin: 20px 0;
    }
}

.pricing-container { margin-bottom: 150px; }
.pricing > p:first-child {
    color: var(--primary-color);
    text-align: center;
    font: 50px 'Poppins Semibold';
    line-height: 58px;
    margin-bottom: 50px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.price {
    background: rgba(245, 245, 245, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid #E6E6E6;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
}

.most-popular {
    background: var(--primary-color);
    border-radius: 30px 30px 0 0;
    color: white;
    font: 16px 'Poppins';
    line-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 19px 10px;
    margin-bottom: 35px;
    width: 100%;
}

.price .name {
    color: var(--text-color);
    font: 26px 'Poppins Semibold';
    line-height: 34px;
    margin-bottom: 30px;
}

.price .quantity {
    color: var(--primary-color);
    margin-bottom: 40px;
}
.price .quantity span:first-child {
    font: 36px 'Poppins';
    line-height: 40px;
    margin-right: 10px;
}
.price .quantity span:last-child {
    font: 26px 'Poppins';
    line-height: 34px;
}

.price .desc {
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 13px;
    list-style: none;
    font: 16px 'Poppins';
    line-height: 22px;
    padding: 0;
    margin-bottom: 60px;
}
.price .desc span { font-family: 'Poppins Semibold'; }
.price button {
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 23px;
    color: var(--primary-color);
    font: 14px 'Poppins Medium';
    line-height: 19px;
    width: 140px;
    height: 45px;
    transition: all 0.3s ease;
}
.price button:hover {
    background: var(--primary-color);
    color: white;
}

.solutions-preview { margin-bottom: 100px; }
.solutions-prev-content { position: relative; max-width: 1306px; }
.solutions-prev-content > p:first-child {
    color: var(--primary-color);
    text-align: center;
    font: 50px 'Poppins Semibold';
    line-height: 58px;
    margin-bottom: 35px;
}

.solutions-list {
    background: var(--secondary-color);
    border-radius: 50px;
    color: white;
    width: 100%;
    padding: 50px 70px 50px 0;
    position: relative;
    > * {
        position: relative;
        z-index: 1;
    }

    &::after {
        content: '';
        background: url('../images/solution-top.svg') no-repeat top left / cover;
        position: absolute;
        width: 311px;
        height: 270px;
        left: 0px;
        top: 0;
    }
}

.solution-decor {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    left: 10%;
}

.solution-decor > div:first-child {
    background: linear-gradient(0deg, var(--primary-color) 0.00%, rgba(168,146,255,0) 100.00%);
    width: 2px;
    height: 135px;
}

.solution-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 915px;
    margin-left: auto;
    padding: 55px 40px 0 70px;
    min-height: 165px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.solution-item.active { 
    background: var(--primary-color); 
    border-color: var(--primary-color);
    min-height: 320px;
}
.solution-item.active .solution-categories { max-height: 104px; }

.solution-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    span {
        font: 40px 'Poppins Medium';
        line-height: 40px;
    }
    a {
        border: 1px solid white;
        border-radius: 23px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 88px;
        height: 45px;
    }
}

.solution-categories {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    column-gap: 80px;
    row-gap: 10px;
    max-height: 0;
    overflow: hidden;
    width: 440px;
    max-width: 100%;
    a {
        color: white;
        text-decoration: none;
        font: 16px 'Poppins Medium';
        line-height: 18px;
    }
}

.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 100px;
}

.features-head {
    display: flex;
    align-items: center;
    gap: 15px;
    
    button {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.38);
        border-radius: 23px;
        width: 30px;
        height: 45px;
        transition: all 0.3s ease;

        svg {
            margin: -2px 0 0 2px;
            stroke: rgba(255, 255, 255, 0.38);
            transition: all 0.3s ease;
            path { transform: translate(17.061px, -3.25px) rotate(90deg); }
        }

        &:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            svg { stroke: white; }
        }

        &.active svg { transform: rotate(180deg); }
    }
}

.glass-text {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.glass-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-20deg);
    opacity: 0;
    transition: left 1.5s ease, opacity 0.3s ease;
    pointer-events: none;
}

.glass-text.animate-glass::before {
    left: 130%;
    opacity: 1;
}

.feature-list {
    max-height: 0;
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    &.active { max-height: 275px; }

    span {
        font: 14px 'Poppins Light';
        line-height: 15px;
    }
}

.feature-list-body {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    column-gap: 45px;
    row-gap: 8px;
    padding-top: 40px;
    max-height: 275px;
}

/* blogs */
.blog-content { max-width: 1088px; }
.blog-content > p:first-child {
    font: 30px 'Poppins Semibold';
    line-height: 40px;
    -webkit-text-stroke: 1px black;
    text-align: center;
    margin-bottom: 40px;
}

.latest-blogs {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 50px;
}

.latest-blog { 
    position: relative;
    width: 68%;
}

.latest-blog::after {
    content: '';
    background: #EAEAEA;
    position: absolute;
    top: 0;
    right: -30px;
    height: 100%;
    width: 2px;
    z-index: 1;
}

.latest-blog > img:first-child {
    border-radius: 5px;
    width: 100%;
    height: 470px;
    object-fit: cover;
    margin-bottom: 22px;
}

.date {
    color: var(--primary-color);
    font: 14px 'Poppins';
    line-height: 19px;
    margin-bottom: 17px;
}

.latest-blog .name {
    font: 18px 'Poppins Medium';
    line-height: 27px;
    margin-bottom: 10px;
}

.latest-blog .text {
    color: var(--text-color1);
    font: 12px 'Poppins Medium';
    line-height: 18px;
    margin-bottom: 25px;
}

.see-more {
    border: 1px solid #CCCFD2;
    border-radius: 23px;
    color: #CCCFD2;
    text-decoration: none;
    display: flex;
    align-items: center;
    font: 14px "Poppins";
    line-height: 21px;
    overflow: hidden;
    padding-left: 10px;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.see-more:hover { 
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    width: 172px;
}

.see-more .text1 {
    color: white;
    opacity: 0;
    white-space: nowrap;
    margin-left: 20px;
    transition: opacity 0.3s ease;
}

.see-more:hover .text1 { opacity: 1; }
.plus { margin: 2px 0 0 4px; font-size: 20px; }

.other-latests { 
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 24.4%; 
}

.other-latests hr {
    opacity: 1;
    border-color: #EAEAEA;
    margin: 0;
}

.other-latest > img {
    border-radius: 5px;
    width: 100%;
    height: 170px;
    margin-bottom: 10px;
}

.other-latest .text {
    font: 14px 'Poppins Medium';
    line-height: 21px;
    height: 63px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 18px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 35px;
    row-gap: 30px;
    margin-bottom: 60px;
}

.blog {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.blog > img:first-child {
    border-radius: 5px 5px 0 0;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.blog > div {
    background: #F5F5F5;
    border-radius: 0 0 5px 5px;
    padding: 30px 20px 20px 30px;
}

.blog .text {
    font: 14px 'Poppins Medium';
    line-height: 18px;
    height: 36px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 35px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.prev-page, .next-page {
    background: #C7C7C7;
    border: none;
    border-radius: 50%;
    color: white;
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

.prev-page:hover, .next-page:hover {
    background: var(--primary-color);
}
.pagination-buttons {
    display: flex;
    gap: 14px;
}

.pagination-buttons button {
    background: none;
    border: none;
    color: #929395;
    font: 13px 'BPG Mrgvlovani Caps 2010';
    line-height: 18px;
}

.pagination-buttons button.active { color: var(--primary-color); }

/* inner blogs */
.blogs-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 40px;
}
.blogs-heading > span {
    font: 30px 'Poppins Semibold';
    line-height: 40px;
    -webkit-text-stroke: 1px black;
}
.blogs-heading .go-back { background: rgba(168, 146, 255, 0.27);}
.blogs-heading .go-back:hover { background: var(--primary-color); }

.blog-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.current-blog {  width: 65%; }
.current-blog > img:first-child {
    border-radius: 5px;
    width: 100%;
    height: 480px;
    object-fit: cover;
    margin-bottom: 20px;
}

.current-blog-info {
    background: #F5F5F5;
    border-radius: 10px;
    padding: 25px 30px 30px;
}

.current-blog-info .name {
    font: 20px 'Poppins';
    line-height: 24px;
    -webkit-text-stroke: 0.5px black;
    margin-bottom: 20px;
}

.current-blog-info .text, .current-blog-info .text > * {
    font: 12px 'Poppins' !important;
    line-height: 18px !important;
}
.current-blog-info .text { margin-bottom: 0; }
.current-blog-info hr {
    opacity: 1;
    border-color: #EAEAEA;
    margin-bottom: 35px 0 20px;
}

.share-blog {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.share-blog > a {
    color: unset;
    text-decoration: none;
    font: 12px 'Poppins';
    line-height: 18px;
    transition: all 0.3s ease;
}

.share-blog > a:hover {
    color: var(--primary-color);
    font: 14px 'Poppins Semibold';
    line-height: 21px;
}

.share-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-links span {
    color: #2B2B2B;
    font: 12px 'Poppins Medium';
    line-height: 18px;
    margin-right: 10px;
}

.share-links div {
    background: #ECECEC;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.share-links div:hover {
    background: var(--secondary-color);
    color: white;
}

.other-blogs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 31.2%;
}

.other-blogs > span {
    font: 20px 'Poppins Light';
    line-height: 30px;
    -webkit-text-stroke: 1px black;
}

.other-blogs > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-cloud {
    background: url('../images/smoke-background.png') no-repeat center center / cover;
    min-height: 700px;
    margin-bottom: 50px;
    position: relative;
    padding-top: 85px;

    > * {
        position: relative;
        z-index: 2;
    }

    &::after {
        content: '';
        background: rgba(71, 62, 109, 0.65);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
    }

    .info-title { margin-bottom: 60px; }
    .info-title span:first-child,
    .info-title span:last-child { color: white; }
}

.why-cloud > a:last-child, .subscibe-btn > button,
.georgian-cloud > a, .get-started .content1 > a, .choose-cloud-links > a {
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 23px;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 12px 'Poppins Medium';
    line-height: 16px;
    margin: 0 auto;
    width: 180px;
    height: 45px;
    transition: all 0.3s ease;
    &:hover {
        background: var(--primary-color);
        color: white;
    }
}

.reasons {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 270px;
    margin-bottom: 85px;

    &::before {
        content: '';
        background: var(--primary-color);
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        top: 130px;
    }
}

.reason {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 215px;
    position: absolute;
    > p {
        color: white;
        display: flex;
        align-items: center;
        gap: 30px;
        margin-bottom: 0;
        span:first-child {
            font: 30px 'Poppins Semibold';
            line-height: 35px;
        }
        span {
            font: 16px 'Poppins Medium';
            line-height: 18px;
        }
    }
}

.reason:nth-child(even) { 
    flex-direction: column-reverse; 
    .reason-decor { 
        flex-direction: column-reverse; 
        > div:first-child {
            background: linear-gradient(0deg, rgba(168,146,255,0) 0.00%, var(--primary-color) 100.00%);
            margin-top: -10px;
        }
    }
}

.reason:first-child { top: 12px; left: 14%; }
.reason:nth-child(2) { top: 130px; left: 23%; }
.reason:nth-child(3) { top: 30px; left: 40%; }
.reason:nth-child(4) { top: 130px; left: 49%; }
.reason:nth-child(5) { top: 30px; left: 65%; }
.reason:last-child { top: 130px; left: 76%; }

.reason-decor {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reason-decor > div:first-child {
    background: linear-gradient(0deg, var(--primary-color) 0.00%, rgba(168,146,255,0) 100.00%);
    width: 2px;
    height: 65px;
}

.subscribe-content {
    display: flex;
    align-items: flex-start;
    max-width: 1262px;
    padding-left: 85px;
    position: relative;
    > img {
        position: absolute;
        left: 35%;
    }

    &::after, &::before {
        content: '';
        background: url('../images/sub-top.svg') no-repeat center center / contain;
        position: absolute;
        width: 311px;
        height: 365px;
        left: -110px;
        top: 0;
    }
    &::before {
        transform: scale(-1);
        top: unset; left: unset;
        right: -30px;
        bottom: 0;
    }
}

.subscribe-text {
    width: 42.5%;
    padding-top: 40px;
    position: relative;
    z-index: 2;
    > p:first-child {
        color: var(--text-color1);
        font: 21px 'Poppins Semibold';
        line-height: 25px;
        margin-bottom: 0;
    }
    > p:nth-of-type(2) {
        color: var(--primary-color);
        font: 50px 'Poppins Semibold';
        line-height: 51px;
        max-width: 317px;
        margin-bottom: 10px;
    }
    .text {
        color: var(--text-color1);
        font: 16px 'Poppins';
        line-height: 22px;
        margin-bottom: 20px;
    }
}

.subscibe-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    p {
        display: flex;
        flex-direction: column;
        max-width: 275px;
        span:first-child {
            color: var(--text-color1);
            font: 21px 'Poppins Semibold';
            line-height: 25px;
        }
        span:last-child {
            color: var(--primary-color);
            font: 30px 'Poppins Semibold';
            line-height: 31px;
        }
    }
}

.industries-cont {
    background: #f7f7f7;
    box-shadow: inset 0px 3px 8px rgba(0,0,0,0.13);
    padding: 65px 20px;
    .content {
        align-items: center;
        max-width: 1088px;
        gap: 40px;
    }
}

.industry-services { padding: 190px 20px 65px; }

.industries-prev-cont {
    width: 395px;
    > p:first-child {
        color: var(--primary-color);
        font: 50px 'Poppins Semibold';
        line-height: 55px;
        margin-bottom: 10px;
    }
    > p:nth-child(2) {
        color: var(--text-color1);
        font: 16px 'Poppins';
        line-height: 18px;
        margin-bottom: 20px;
    }
    .text {
        color: var(--text-color1);
        font: 12px 'Poppins';
        line-height: 16px;
        padding-left: 35px;
        span { color: var(--primary-color); }
    }
}

.industries-swiper {
    width: calc(100% - 435px);
    padding-bottom: 40px !important;
    height: 610px !important;
}

.industries-card {
    background: white;
    border-radius: 30px;
    color: unset;
    text-decoration: none;
    filter: drop-shadow(0px 3px 5px rgba(0,0,0,0.03));
    padding: 75px 35px 0 40px;
    height: 250px !important;
    transition: all 0.3s ease !important;
    &:hover {
        background: var(--primary-color);
        p { color: white !important; }
    }

    p { transition: all 0.3s ease; }
    p:first-child {
        color: var(--primary-color);
        font: 18px 'Poppins Semibold';
        line-height: 22px;
        margin-bottom: 30px;
    }

    p:last-child {
        color: var(--text-color1);
        font: 12px 'Poppins Light';
        line-height: 16px;
        margin-bottom: 0;
    }
}

.industries-card:nth-child(4n + 1) { margin-top: 40px !important; }

.swiper1 .swiper-pagination-bullet {
    background: #DEDEDE;
    border-radius: 50%;
    color: white;
    width: 10px;
    height: 10px;
    opacity: 1;
}
.swiper1 .swiper-pagination-bullet-active { background: var(--primary-color); }

.georgian-cloud {
    flex-direction: column;
    align-items: center;
    height: 818px;
    position: relative;
    overflow: hidden;
    > * {
        position: relative;
        z-index: 2;
    }

    &::after, &::before {
        content: '';
        position: absolute;
        z-index: 1;
    }
    &::after {
        background: url('../images/ink2.svg') no-repeat top right / cover;
        width: 575px;
        height: 100%;
        right: 0;
        top: 0;
    }
    &::before {
        background: url('../images/ink1.svg') no-repeat center center / cover;
        width: 478px;
        height: 551px;
        left: 0;
        top: 130px;
        z-index: 2;
    }

    p:first-child {
        color: var(--text-color1);
        font: 42px 'Poppins Medium';
        line-height: 45px;
        margin-bottom: 0;
    }

    p:nth-child(2) {
        color: var(--primary-color);
        font: 22px 'Poppins Medium';
        line-height: 25px;
        margin-bottom: 30px;
    }
}

.main-why-cloud {
    background: var(--secondary-color);
    border-radius: 50px 50px 0 0;
    min-height: 860px;
    filter: drop-shadow(0px 9px 5.5px rgba(0,0,0,0.39));
    position: relative;
    padding-top: 85px;
    max-width: 1306px;
    width: 100%;

    > * {
        position: relative;
        z-index: 2;
    }

    &::after, &::before {
        border-radius: 50px 50px 0 0;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
    &::before {
        border-radius: 50px 50px 0 0;
        height: 28%;
        background: url('../images/smoke-background.png') no-repeat center center / cover;
        z-index: 1;
    }
    &::after {
        height: 28%;
        background: rgba(168, 146, 255, 0.26);
        z-index: 1;
    }

    .info-title { margin-bottom: 30px; }
    .info-title span:first-child,
    .info-title span:last-child { color: white; }

    > .reason-decor {
        margin-bottom: 25px;
        > div:first-child { height: 140px; }
    }

    > p:nth-of-type(2) {
        color: white;
        font: 30px 'Poppins Semibold';
        line-height: 35px;
        margin-bottom: 100px;
        text-align: center;
    }
}

.why-local-cloud {
    background: #FBFBFB;
    padding: 50px 20px 65px;
    .content {
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        max-width: 1088px;
    }
}

.why-local {
    width: 365px;
    .info-title { justify-content: flex-start; }
    > p:last-child {
        color: var(--text-color1);
        font: 30px 'Poppins Light';
        line-height: 40px;
    }
}

.why-local-reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 20px;
    width: calc(100% - 435px);

    > .industries-card:last-child { margin-top: -40px; }
}

.main-subscribe {
    box-shadow: inset 0px 3px 8px rgba(0, 0, 0, 0.13);
    padding: 80px 20px;
}

.business-cont {
    background: #fbfbfb;
    filter: drop-shadow(0px 3px 9.5px rgba(0,0,0,0.16));
    padding: 90px 20px;
    .content1 { max-width: 1088px; align-items: center; }
    .text {
        color: var(--text-color1);
        font: 16px 'Poppins';
        text-align: center;
        line-height: 22px;
        max-width: 550px;
        margin-bottom: 55px;
    }
}

.business-swiper { width: 100%; }
.business-card, .benefit-card {
    background: white;
    border-radius: 30px;
    color: unset;
    text-decoration: none;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    filter: drop-shadow(0px 3px 5px rgba(0,0,0,0.03));
    padding: 80px 35px;
    transition: all 0.3s ease !important;
    p { margin-bottom: 0; text-align: center; transition: all 0.3s ease; }
    p:first-child {
        color: var(--primary-color);
        font: 16px 'Poppins Semibold';
        line-height: 20px;
    }
    p:last-child {
        font: 14px 'Poppins Medium';
        line-height: 19px;
    }

    &:hover {
        background: var(--primary-color);
        p { color: white !important; }
    }
}

.benefits-cont {
    padding: 90px 20px;
    .content {
        align-items: center;
        justify-content: space-between;
        max-width: 1088px;
    }
}

.benefits-txt {
    p {
        font: 80px 'Poppins Semibold';
        line-height: 50px;
    }
    p:first-child { color: var(--primary-color); }
    p:nth-child(2) { color: var(--primary-color); opacity: 0.62; }
    p:last-child { color: #765BDF; }
}

.benefits {
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-card {
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: unset;
    padding-left: 45px;
    min-height: 100px;
}

.usage-cont {
    background: var(--primary-color);
    box-shadow: inset 0px 18px 8.5px rgba(0,0,0,0.16); 
    color: white;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;

    > * {
        position: relative;
        z-index: 2;
    }

    &::after, &::before {
        background: url('../images/usage-decor.svg') no-repeat center center / cover;
        content: '';
        width: 450px;
        height: 393px;
        position: absolute;
        z-index: 1;
    }
    &::after { left: -69px; top: -145px; }
    &::before { right: -187px; top: 141px; }

    .content1 {
        align-items: center;
        max-width: 1088px;
    }
}

.usage-head {
    p { text-align: center; }
    p:first-child {
        font: 30px 'Poppins Medium';
        line-height: 30px;
        margin-bottom: 0;
    }

    p:nth-child(2) {
        font: 50px 'Poppins Semibold';
        line-height: 55px;
        margin-bottom: 10px;
    }

    p:last-child {
        color: #ECE7FF;
        font: 16px 'Poppins';
        line-height: 22px;
        margin-bottom: 100px;
    }
}

.usage-swiper { width: 100%; max-width: 920px; }
.usage-slide {
    display: flex !important;
    flex-direction: column;
    gap: 35px;

    div {
        background: rgba(255,255,255,0.2);
        border-radius: 20px;
        font: 30px 'Poppins Semibold';
        line-height: 35px;
        width: 100px;
        height: 85px;
    }

    p:first-of-type {
        font: 30px 'Poppins Semibold';
        line-height: 35px;
        margin-bottom: 0;
    }

    p:last-child {
        font: 20px 'Poppins Medium';
        line-height: 30px;
        height: 90px;
        max-width: 393px;
        overflow: hidden;
    }
}

.scaling-cont {
    justify-content: flex-end;
    padding: 200px calc(50% - 415px) 200px 20px;
    position: relative;
    overflow: hidden;

    > * {
        position: relative;
        z-index: 2;
    }

    &::after, &::before {
        content: '';
        position: absolute;
        width: 950px;
        height: 845px;
        z-index: 1;
    }
    &::after { 
        background: url('../images/scale-decor1.svg') no-repeat center center / contain;
        left: -463px; top: -90px;
    }

    &::before {
        background: url('../images/scale-decor2.svg') no-repeat center center / contain;
        right: -636px; top: 195px;
    }
}

.scaling {
    max-width: 550px;
    
    p:last-child {
        color: var(--text-color1);
        font: 20px 'Poppins';
        line-height: 30px;
        text-align: center;
    }
}

.main-solutions {
    box-shadow: inset 0px -18px 8.5px rgba(0,0,0,0.16) ;
    position: relative;
    overflow: hidden;
    padding-bottom: 180px;
    margin-bottom: 50px;
    .content1 {
        max-width: 675px;
        > p:first-child {
            color: var(--primary-color);
            font: 50px 'Poppins Semibold';
            line-height: 50px;
            margin-bottom: 50px;
            text-align: center;
        }

        div:first-of-type {
            color: var(--text-color1);
            font: 16px 'Poppins';
            line-height: 22px;
            margin-bottom: 35px;
        }
    }

    &::after {
        background: url('../images/scale-decor2.svg') no-repeat center center / contain;
        content: '';
        position: absolute;
        left: -463px; top: 130px;
        width: 950px;
        height: 845px;
        z-index: 1;
    }
}

.sol-texts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 17.5px;
    img:nth-child(4), img:nth-child(5), img:nth-child(6) { display: none; } 
}

.get-started {
    padding-bottom: 45px;
    .content1 {
        max-width: 825px;
        align-items: center;

        > img { margin-bottom: 30px; }
        > img:nth-of-type(2) { display: none; }
    }

    .text {
        color: var(--text-color1);
        text-align: center;
        font: 20px 'Poppins';
        line-height: 28px;
        margin-bottom: 30px;
        span { color: var(--primary-color); }
    }
}

.main-industries-page {
    max-width: 995px;
    align-items: center;

    > p:first-child {
        color: var(--primary-color);
        font: 50px 'Poppins Semibold';
        line-height: 55px;
        margin-bottom: 10px;
        max-width: 600px;
        text-align: center;
    }
    
    > p:nth-child(2) {
        color: var(--text-color1);
        text-align: center;
        font: 16px 'Poppins';
        line-height: 22px;
        max-width: 742px;
        margin-bottom: 20px;
    }

    .text {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 40px;
        row-gap: 20px;
        max-width: 742px;
        margin-bottom: 60px;
        p {
            color: var(--text-color1);
            font: 12px 'Poppins';
            line-height: 16px;
            margin-bottom: 0;
            span { 
                color: var(--primary-color); 
                font-family: 'Poppins Medium';
            }
        }
    }
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    .industries-card {
        background: var(--primary-color);
        p { color: white; }

        &:hover {
            background: white;
            p:first-child { color: var(--primary-color) !important; }
            p:last-child { color: var(--text-color1) !important; }
        }
    }

    .industries-card:nth-child(4n + 1) { margin-top: 0 !important; }
}

.curr-industry > p:first-child {
    color: var(--primary-color);
    font: 50px 'Poppins Semibold';
    line-height: 55px;
    padding-left: 60px;
    margin-bottom: 40px;
}

.curr-industry-head {
    background: var(--primary-color);
    border-radius: 40px;
    color: white;
    font: 30px 'Poppins Semibold';
    line-height: 35px;
    padding-left: 60px;
    height: 80px;
    margin-bottom: 20px;
}

.industry-info {
    background: white;
    border-radius: 40px;
    filter: drop-shadow(0px 3px 5px rgba(0,0,0,0.03));
    padding: 40px 90px 50px 60px;
    margin-bottom: 30px;

    .name {
        color: var(--primary-color);
        font: 26px 'Poppins Semibold';
        line-height: 30px;
        margin-bottom: 30px;
    }
}
.industry-info:last-of-type { margin-bottom: 100px; }

.industry-info .text {
    color: black;
    font: 16px 'Poppins';
    line-height: 26px;
}

.industry-info .text ul {
    margin: 0;
    padding: 0 0 0 15px;
}

.choose-cloud {
    display: flex;
    flex-direction: column;
    align-items: center;
    > p:first-child {
        color: var(--primary-color);
        text-align: center;
        font: 30px 'Poppins';
        line-height: 35px;
        -webkit-text-stroke: 0.5px var(--primary-color);
        margin-bottom: 0;
    }

    > p:nth-child(2) {
        color: var(--text-color1);
        text-align: center;
        font: 30px 'Poppins';
        line-height: 35px;
        margin-bottom: 25px;
    }

    > p:nth-child(3) {
        color: var(--text-color1);
        font: 18px 'Poppins Light';
        line-height: 24px;
        margin-bottom: 30px;
    }
}

.choose-cloud-links {
    display: flex;
    gap: 20px;
    a { margin: unset; }
    a:last-child {
        background: var(--text-color);
        border-color: var(--text-color);
        color: white;
        width: 250px;
        &:hover { border-color: var(--primary-color); }
    }
}

.solution-mob-links { 
    display: none !important;
    margin-bottom: 30px !important;
    width: 100% !important; 
}
.sol-link-slide {
    color: unset;
    text-decoration: none;
    font: 14px 'Poppins';
    line-height: 18px;
    padding: 15px 20px;
    width: auto !important;
}
.sol-link-slide.active {
    border: 1px solid var(--primary-color);
    border-radius: 30px;
}