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

body.no-scroll { overflow: hidden; }

@-moz-document url-prefix() {
    html, #short-desc, .locations-body {
        scrollbar-width: thin;
        scrollbar-color: #D5D5D5 #F1F1F1;
    }
}

html::-webkit-scrollbar, .locations-body::-webkit-scrollbar {
    width: 5px; 
}

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

:root {
    --primary-color: #020E5A;
    --secondary-color: #FFA25C;
    --tertiary-color: #19289D;
    --light-blue: #4C5CDC;
    --text-color: #2E2E2E;
    --border-color: #EAEBF3;
    --warning: #A30000;
    --light-purple: #F4F4FB;
    --select-color: #302E2F;
    --whatsapp: #25D366;
    --telegram: #28A9EA;
    --signal: #3A76F0;
}

.Container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

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

.side-contact {
    position: fixed;
    top: 175px;
    right: 0;
    z-index: 1000;
    a {
        border-radius: 5px 0 0 5px;
        color: unset;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
    }
}

.review-link {
    background: var(--border-color);
    gap: 5px;
    padding: 0 19px 0 15px;
    margin-bottom: 10px;
    > img:first-child {
        width: 17px;
        height: 17px;
    }
    span {
        font: 13px 'BPG Banner Caps';
        line-height: 16px;
    }
    div {
        display: inline-flex;
        img {
            width: 8.4px;
            height: 8px;
            object-fit: contain;
        }
    }
}

.side-contact > a:nth-child(2) {
    background: var(--light-blue);
    color: white;
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
    padding-left: 20px;
    transition: all 0.3s ease;
    &:hover { background: #6A7AF3; }
}

.apps {
    position: absolute;
    top: 120px;
    right: 0;
    width: 70px;
    height: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
    &:hover {
        width: 280px;
        height: 250px;
    }
    > a {
        background: var(--primary-color);
        color: white;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        gap: 40px;
        padding: 0 50px 0 20px;
        position: absolute;
        width: 280px;
        right: -210px;
        transition: all 0.3s ease;
    }
}
.apps:hover > a { right: 0; }

.other-apps {
    display: none;
    flex-direction: column;
    position: absolute;
    gap: 10px;
    top: 60px;
    right: 0;
    a { width: 70px; }
    a:first-child { background: var(--whatsapp); }
    a:nth-child(2) { background: var(--telegram); }
    a:nth-child(3) { background: var(--signal); }
}
.apps:hover .other-apps { display: flex; }

.side-mail {
    background: var(--secondary-color);
    color: white !important;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    gap: 40px;
    padding: 0 50px 0 20px;
    position: absolute;
    z-index: 1;
    top: 180px;
    right: 0;
    width: 280px;
    right: -210px;
    transition: all 0.3s ease; 
    &:hover { right: 0; }
}

/*** 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-circle-fill.svg) !important;
    background-size: 16px 16px !important;
    background-position: right 22px center !important;
    background-repeat: no-repeat !important;
}

.invalid-feedback span {
    color: var(--warning);
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    padding-left: 5px;
}

.see-all-link {
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
}

header {
    background: var(--primary-color);
    min-height: 152px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    padding-top: 7.5px;
    gap: 27.5px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo, .footer-logo {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 18px;
    div {
        display: flex;
        flex-direction: column;
        gap: 7px;
        span:last-child {
            font: 8px 'Mersad';
            line-height: 9px;
        }
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    > a {
        border-radius: 23px;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
        height: 45px;
        transition: all 0.3s ease;
        padding-top: 0.1px;
    }
    > a:first-child {
        border: 1px solid white;
        width: 220px;
        display: none;
        &:hover { 
            background: var(--tertiary-color);
            border-color: var(--tertiary-color); 
        }
    }
    > a:nth-child(2) {
        background: var(--light-blue);
        width: 130px;
        &:hover { background: var(--tertiary-color); }
    }
}

.lang-change {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    height: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    &:hover { height: 64px; }
    a {
        color: var(--tertiary-color);
        text-decoration: none;
        transition: all 0.3s ease;
        &:hover, &.active { color: var(--secondary-color); }
    }
}

.mobile-language-change {
    margin: 20px 0 50px;
    display: flex;
    gap: 20px;

    a.active { color: var(--secondary-color); }
}

.menu {
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5px;
    height: 47px;
}

.menu-item {
    cursor: pointer;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    &:hover > ul { display: flex; }
    > a {
        color: white;
        text-decoration: none;
        font: 16px 'Dejavu Sans';
        line-height: 19px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        height: 100%;
    }

    > ul {
        background: #F6F7F9;
        border-radius: 0 0 5px 5px;
        display: none;
        flex-direction: column;
        gap: 25px;
        list-style: none;
        padding: 27px 29px 34px 40px;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        width: 275px;
        li { display: inline-flex; }
        a {
            color: unset;
            text-decoration: none;
            display: inline-flex;
            font: 14px 'BPG Mrgvlovani';
            line-height: 19px;
            width: 100%;
        }
    }
}

.menu-item.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary-color);
}

.menu-item > ul::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 275px;
    height: 8px;
    background: var(--secondary-color);
}

#menu-toggle-button { display: none; }

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

.dropdownMenu hr {
    border: 1px solid rgba(255, 255, 255, 0.27);
    opacity: 1;
    margin: 0 -20px;
}

.dropdownMenu a {
    color: white;
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 55px;
}

.mobile-menu-children {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    > a {
        padding: 0;
        font: 12px "BPG Mrgvlovani";
        line-height: 16px;
    }
    > a:last-child { padding-bottom: 20px; }
}

.mobile-menu-children.visible { max-height: 1000px; }
.mobile-search { display: none; } 

.banner-container {
    background: url('../images/main-img.png') no-repeat center center / cover;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 816px;
    position: relative;
    z-index: 1;
    top: -152px;
    > * {
        position: relative;
        z-index: 2;
    }
    img {
        width: 500px;
        height: 24px;
        margin-bottom: 18px;
    }
    p {
        font: 21px 'Mersad';
        line-height: 24px;
        margin-bottom: 23px;
    }
    div {
        border: 1px solid white;
        border-radius: 10px;
        font: 30px 'Gilroy GEO';
        line-height: 32px;
        height: 32px;
        text-overflow: ellipsis;
        overflow: hidden;
        padding: 0 10px;
        width: 640px;
        height: 90px;
    }
}

.inner-banner {
    background: url('../images/main-img.png') no-repeat top center / cover;
    color: white;
    font: 30px 'Dejavu Sans';
    line-height: 35px;
    position: relative;
    z-index: 1;
    top: -152px;
    min-height: 400px;
    > * {
        position: relative;
        z-index: 2;
    }
    p {
        text-align: center;
        position: absolute;
        margin-bottom: 0;
        bottom: 80px;
        width: 100%;
    }
}

.banner-container::before, .inner-banner::before, 
.success-numbers::before {
    background: rgba(0,0,0,0.13);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
}
.inner-banner::before { background: rgba(0,0,0,0.47); }

.banner-menu-cont { 
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; 
}

.middle-menu {
    position: absolute;
    bottom: 110px;
    z-index: 2;
    display: flex;
    gap: 23px;
    max-width: 1090px;
    a {
        background: var(--light-blue);
        color: white;
        text-decoration: none;
        display: inline-flex;
        flex: 1;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        height: 100px;
        padding: 28px 10px 0 30px;
        transition: all 0.3s ease;
        &:hover {
            background: var(--secondary-color);
            transform: translateY(-30px)
        }
    }
}

footer {
    background: var(--primary-color);
    padding: 100px 20px 35px !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    &::before {
        background: url('../images/footer-decor.svg') no-repeat center center / cover;
        content: '';
        position: absolute;
        top: 86px;
        right: 0;
        z-index: 2;
        width: 323px;
        height: 248px;
    }

    .content1 hr {
        border-color: rgba(255,255,255,0.48);
        opacity: 1;
        margin: 50px 0 25px;
        margin-left: calc((1090px - 100vw) / 2);
        margin-right: calc((1090px - 100vw) / 2);
    }
}

.footer-top {
    display: flex;
    align-items: flex-start;
    gap: 140px;
}

.footer-logo {
    gap: 23px;
    margin-bottom: 28px;
    > img {
        width: 80px;
        height: 55px;
    }
}

.socials {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    a {
        background: rgba(213,213,213,0.28);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        transition: all 0.3s ease;
        &:hover { background: var(--secondary-color); }
    }
}

.copyright {
    color: #ADB1C8;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font: 12px 'BPG Arial';
    line-height: 14px;
    a { color: var(--secondary-color); text-decoration: none; }
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 17px;
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
    a {
        color: white;
        text-decoration: none;
    }
}

.footer-bottom {
    color: rgba(255,255,255,0.61);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    p { 
        text-align: center; 
        max-width: 1000px; 
        margin: 0 auto;
    }
}

.development-cont { padding: 70px 20px; }
.development-header {
    display: flex;
    align-items: center;
    gap: 133px;
    margin-bottom: 55px;
    span {
        font: 30px 'BPG LE Studio 02 Caps';
        line-height: 40px;
        margin-left: auto;
    }
}

.development-sliders {
    display: flex;
    gap: 20px;
}
  
.development-slide {
    position: relative;
    height: 445px;
    display: flex;
    flex: 0 0 calc(50% - 10px);
    max-width: 50%;
    transition: all 0.4s cubic-bezier(0.64, 0, 0.78, 1);;
    overflow: hidden;

    &.is-open {
        flex: 0 0 calc(75% - 10px);
        max-width: calc(75% - 10px);
    }

    &.next-slide {
        flex: 0 0 calc(25% - 10px);
        max-width: calc(25% - 10px);
    }
}

.hidden-info {
    background: #F5F6FE;
    border-radius: 15px;
    padding: 50px 50px 0 42px;
    position: absolute;
    z-index: 1;
    width: 450px;
    height: 445px;

    .title {
        color: black;
        -webkit-text-stroke: 1px black;
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 26px;
        margin-bottom: 35px;
    }

    > div {
        font: 10px 'BPG Mrgvlovani';
        line-height: 13px;
        margin-bottom: 30px;
        max-width: 360px;
    }
}

.slide-overlay {
    position: absolute;
    z-index: 2;
    left: auto;
    right: 0;
    overflow: hidden;
    height: 445px;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.64, 0, 0.78, 1);

    img {
        border-radius: 15px;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        object-fit: cover;
    }

    .title {
        color: white;
        font: 30px 'Gilroy GEO';
        line-height: 39px;
        margin-bottom: 0;
        left: 30px;
        bottom: 30px;
        position: absolute;
        z-index: 2;
    }

    &::before {
        content: '';
        background: linear-gradient(180deg,  rgba(2,14,90,0 ) 0.00%, #000312 100.00%);
        border-radius: 0 0 15px 15px;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
}

.development-slide:hover .slide-overlay {
    width: 368px;
    right: 0;
}

.development-slide:last-child .slide-overlay::before {
    background: linear-gradient(180deg, rgba(255,162,92,0 ) 0.00%, #a14500 100.00%);
}

.services-cont {
    background-image: linear-gradient(to right, transparent 36%, var(--light-purple) 36%), url('../images/decor.svg');
    background-repeat: no-repeat;
    padding: 100px 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    &::after {
        background-color: var(--primary-color);
        opacity: 0.76;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 36%;
        z-index: 2;
    }

    .content1 { 
        position: relative;
        z-index: 3;
        align-items: center; 
        > p:first-child {
            font: 20px 'BPG Mrgvlovani Caps 2010';
            line-height: 28px;
            margin-bottom: 0;
        }
    }
}

.services-swiper, .mobile-service-list, 
.mobile-needs-list { display: none !important; }

.services-content {
    display: flex;
    width: 100%;
}

.service-items {
    position: relative;
    width: 50%;
    height: 521px; 
    > div:first-child { top: 50%; left: 0; transform: translateY(-50%); }
    > div:nth-child(2) { top: 25%; left: 25%; transform: translate(-50%, -50%); }
    > div:nth-child(3) { top: 0; left: 50%; transform: translateX(-50%); }
    > div:nth-child(4) { top: 25%; right: 25%; transform: translate(50%, -50%); }
    > div:nth-child(5) { top: 50%; right: 0; transform: translateY(-50%); }
    > div:nth-child(6) { bottom: 25%; right: 25%; transform: translate(50%, 50%); }
    > div:nth-child(7) { bottom: 0; left: 50%; transform: translateX(-50%); }
    > div:nth-child(8) { bottom: 25%; left: 25%; transform: translate(-50%, 50%); }

    > div:hover {
        width: 156px;
        height: 156px;
        div { background: var(--light-blue); color: white; }
    }
    > div:nth-child(1):hover { left: -14px; }
    > div:nth-child(3):hover { top: -14px; }
    > div:nth-child(5):hover { right: -14px; }
    > div:nth-child(7):hover { bottom: -14px; }

    img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

.service-items > div {
    border: 6px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    width: 126px;
    height: 126px;
    transition: all 0.3s ease;
    div {
        background: white;
        border: 1px solid rgba(25, 40, 157, 0.34);
        border-radius: 50%;
        color: var(--text-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font: 12px 'Dejavu Sans';
        line-height: 16px;
        text-align: center;
        padding: 0 9px;
        width: 100%;
        height: 100%;
        span { display: inline-flex; max-width: 100px; }
    }
}

.service-slide {
    background: white;
    color: var(--light-blue);
    display: flex;
    align-items: center;
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 16px;
    width: 100%;
    min-height: 50px !important;
    padding: 10px 10px 10px 20px;
}
.service-slide:nth-child(2), .service-slide:nth-child(3), 
.service-slide:nth-child(6), .service-slide:nth-child(7) { background: whitesmoke; }

.service-lists {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    width: 50%;

    &::after, &::before  {
        content: '';
        background: #D1D1D1;
        position: absolute;
        z-index: 1;
        top: -200px;
        width: 1px;
        height: 200vh;
    }
    &::after { left: 52.5%; }
    &::before { right: 43.5%; }
}

.service-list {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    column-gap: 60px;
}

.service-list a { 
    color: #2B2B2B;
    text-decoration: none;
    display: inline-flex; 
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
    position: relative;
    max-height: 45px;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
    &:hover { 
        color: var(--light-blue);
        &::after { background: var(--light-blue); }
    }

    &::after {
        content: '';
        background: #2B2B2B;
        border-radius: 50%;
        width: 4px;
        height: 4px;
        position: absolute;
        z-index: 3;
        right: -22px;
        top: 45%;
        transform: translateY(-50%);
        transition: all 0.3s ease;
    }
}
.service-list div:nth-child(odd) { text-align: end; a:hover { padding-right: 10px; } }
.service-list div:nth-child(even) { 
    margin-top: 15px; 
    a::after { right: 0; left: -22px; }
    a:hover { padding-left: 10px; }
}

.why-us-prev, .blog-preview {
    display: flex;
    > img { 
        width: 50%;
        height: 715px;
        object-fit: cover;
        object-position: top;
    }
}

.why-us-list {
    padding: 40px 35px 0 0;
    padding-left: calc((100% - 1090px) / 2);
    width: 50%;
    p:first-child {
        font: 30px 'BPG LE Studio 02 Caps';
        line-height: 40px;
        margin-bottom: 30px;
    }

    ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        list-style: 0;
        padding: 0;
        margin: 0;
    }

    li {
        border-bottom: 1px solid #E3E3E3;
        display: flex;
        align-items: center;
        gap: 18px;
        padding-bottom: 15px;
    }

    li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.blog-preview-cont {
    padding: 70px calc((100% - 1090px) / 2) 0 70px;
    width: 50%;
    > p:first-child {
        font: 30px 'BPG LE Studio 02 Caps';
        line-height: 40px;
        margin-bottom: 15px;
    }
    > a {
        display: inline-flex;
        margin-bottom: 50px;
    }
    hr {
        border-color: #E3E3E3;
        opacity: 1;
        margin: 27.5px 0;
    }
}

.blog-prev-item {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.blog-prev-img {
    position: relative;
    width: 162px;
    height: 104px;
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.tag {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 10px 'BPG LE Studio 02 Caps';
    line-height: 13px;
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 25px;
}
.tag-b { background: var(--primary-color); }
.tag-v { background: var(--secondary-color); }

.blog-prev-info {
    width: calc(100% - 202px);
    transition: all 0.3s ease;
    .date {
        color: #9A9A9A;
        font: 10px 'BPG LE Studio 02 Caps';
        line-height: 13px;
        margin-bottom: 8px;
    }

    .title {
        display: flex;
        align-items: center;
        gap: 25px;
        margin-bottom: 13px;
        transition: all 0.3s ease;
        p {
            font: 14px 'BPG Mrgvlovani Caps 2010';
            line-height: 19px;
            margin-bottom: 0;
            max-width: 227px;
            height: 57px;
            text-overflow: ellipsis;
            overflow: hidden;
        }
    }

    .author {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #9A9A9A;
        font: 10px 'BPG LE Studio 02 Caps';
        line-height: 13px;
        img { margin-top: -2px; }
    }
}

.blog-prev-item:hover .title { color: var(--light-blue); gap: 45px; }
.blog-prev-item:hover .blog-prev-info { width: calc(100% - 182px); }

.news-swiper-cont {
    background: var(--light-purple);
    padding: 95px 20px;
    .content1 > p:first-child {
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 26px;
        text-align: center;
        margin-bottom: 50px;
    }

    .content1 > a {
        background: var(--light-blue);
        color: white;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
        margin: 0 auto;
        width: 270px;
        height: 50px;
        transition: all 0.3s ease;
        &:hover { background: var(--secondary-color); }
    }
}

.news-swiper { 
    width: 100% !important; 
    padding-bottom: 50px !important; 
    margin-bottom: 40px;
}

.news-card {
    cursor: pointer;
    filter: drop-shadow(0px 3px 35px rgba(0, 0, 0, 0.07));
    position: relative;
    > img {
        width: 100%;
        height: 225px;
        object-fit: cover;
    } 

    > div:nth-child(2) {
        background: white;
        border-bottom: 1px solid var(--border-color);
        padding: 30px 30px 20px;
    }

    .name {
        font: 12px 'BPG Mrgvlovani Caps 2010';
        line-height: 16px;
        margin-bottom: 20px;
        height: 48px;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .intro {
        color: #818181;
        font: 8px 'BPG Mrgvlovani';
        line-height: 11px;
        height: 22px;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .date {
        background: white;
        padding-left: 30px;
        color: #9A9A9A;
        font: 10px 'BPG LE Studio 02 Caps';
        line-height: 13px;
        min-height: 38px;
        padding-top: 12.5px;
    }
}

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

.google-rev-cont {
    background: var(--border-color);
    padding: 110px 20px 80px;
    .content1 { align-items: center; }
    .content1 > img:first-child { margin-bottom: 10px; }
}

.score {
    display: flex;
    align-items: center;
    gap: 28px;
    font: 35px 'BPG Banner Caps';
    line-height: 43px;
    margin-bottom: 10px;
    div {
        display: flex;
        gap: 10px;
    }
}

.review-num {
    color: #A1A1A1;
    display: inline-flex;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    margin-bottom: 50px;
}

.google-review-swiper { 
    padding-bottom: 50px !important;
    width: 100% !important; 
}

.lawyer-cont { padding: 100px 20px; }

.page-title {
    font: 30px 'BPG LE Studio 02 Caps';
    line-height: 40px;
    margin-bottom: 40px;
}

.lawyer {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    > img:first-child {
        width: 40%;
        height: 438px;
        object-fit: cover;
    }
}

.lawyer-info {
    width: calc(60% - 80px);
    > p:first-child {
        color: var(--secondary-color);
        display: inline-block;
        font: 14px 'BPG Mrgvlovani Caps 2010';
        line-height: 19px;
        margin-bottom: 20px;
        position: relative;
        &::before, &::after {
            content: '';
            background: var(--secondary-color);
            position: absolute;
            top: 20px;
            left: 0;
            width: 100%;
            height: 1px;
        }
        &::after { top: 26px; }
    }

    .name {
        font: 40px 'Dejavu Sans';
        line-height: 60px;
        margin-bottom: 23px;
    }
    
    .desc, .desc * {
        font: 12px 'BPG Mrgvlovani' !important;
        line-height: 16px !important;
    }
    .desc { margin-bottom: 40px; }

    .socials a { color: var(--text-color); }
}

.lawyer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    a {
        color: black;
        text-decoration: none;
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
        img { margin-right: 10px; }
    }
}

.plan-consultation-btn {
    background: var(--light-blue);
    border: none;
    color: white;
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
    width: 270px;
    height: 50px;
    transition: all 0.3s ease;
    &:hover { background: var(--secondary-color); }
}

.lawyer-form {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: none;
    position: absolute;
    padding: 60px 80px;
    top: 73px;
    right: 80px;
    width: 640px;
    &.active { display: block; }

    > p:first-child {
        color: #343434;
        display: flex;
        justify-content: space-between;
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 26px;
        margin-bottom: 25px;
        span:last-child { cursor: pointer; }
    }

    > div { margin-bottom: 15px; }
    > button {
        background: var(--light-blue);
        border: none;
        border-radius: 5px;
        color: white;
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        width: 100%;
        height: 50px;
        transition: all 0.3s ease;
        &:hover { background: var(--primary-color); }
    }
}

.site-form label {
    color: #8D8D8D !important;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.site-form input {
    border: 1px solid var(--border-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 45px !important;
    padding-left: 26px !important;
}

.site-form textarea {
    border: 1px solid var(--border-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    resize: none;
    height: 100px;
    padding: 16px 0 0 26px;
}

.main-services-cont .content1 {
    align-items: unset;
    > p:first-child {
        color: white;
        font: 30px 'BPG LE Studio 02 Caps';
        line-height: 40px;
        margin-bottom: 55px;
    }
}


.needs-container, .quali-container, .other-services-cont { padding: 0; }
.needs-content, .quali-content, .other-services-content {
    padding: 100px 40px 160px calc((100vw - 1090px) / 2);;
    width: 68%;
    > div:first-child { max-width: 765px; }
}

.needs-menu {
    background: var(--light-purple);
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 50px 10px 80px 47px;
    width: 32%;
    > a {
        color: black;
        text-decoration: none;
        display: inline-flex;
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
        max-width: 236px;
        transition: all 0.3s ease;
        &:hover { color: var(--light-blue); }
        &.current { 
            color: var(--primary-color); 
            -webkit-text-stroke: 0.5px var(--primary-color);
        }
    }

    p {
        color: var(--tertiary-color);
        font: 14px 'Dejavu Sans';
        line-height: 16px;
        margin-bottom: 0;
    }
}

.inner-page-title, .inner-page-title1 {
    display: inline-block;
    font: 30px 'BPG Mrgvlovani Caps 2010';
    line-height: 40px;
    position: relative;
    margin-bottom: 70px;
    &::before {
        content: '';
        background: var(--primary-color);
        position: absolute;
        bottom: -25px;
        width: 122px;
        height: 5px;
    }
}

.inner-page-title1 {
    font: 25px 'BPG Mrgvlovani Caps 2010';
    line-height: 31px;
}

.content-text {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 45px;
}

.quali-menu {
    background: url('../images/decor.svg') no-repeat center center / cover;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px 0 80px 47px;
    position: relative;
    z-index: 1;
    width: 32%;
    &::before {
        content: '';
        background: rgba(3, 15, 94, 0.87);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
    * {
        position: relative;
        z-index: 3;
    }

    > a {
        color: white;
        display: inline-flex;
        text-decoration: none;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        max-width: 236px;
        &.current {
            color: var(--secondary-color);
            -webkit-text-stroke: 0.5px var(--secondary-color);
        }
    }
}

.quali-categories {
    max-width: 240px;
    > div {
        color: white;
        text-decoration: none;
        cursor: pointer;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        img { transition: all 0.3s ease; }
    }

    > div.visible img { transform: rotate(180deg); }
}

.quali-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.quali-categories ul.visible { max-height: 1000px; }

.quali-categories ul li { margin-bottom: 10px; display: flex; }
.quali-categories ul li:first-child { margin-top: 15px; }
.quali-categories ul li:last-child { margin-bottom: 0; }

.quali-categories ul a {
    color: rgba(255,255,255,0.8);
    display: inline-flex;
    align-items: center;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    text-decoration: none;
    width: 100%;
}

.other-services-content .page-title { margin-bottom: 0; }
.other-services-title {
    color: var(--light-blue);
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    margin-bottom: 35px;
}

.media-container, .legislation-container, .faq-container,
.contact-container { padding: 95px 20px 150px; }

.media-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    > span {
        font: 30px 'BPG LE Studio 02 Caps';
        line-height: 40px;
    }

    > div {
        display: flex;
        gap: 10px;
    }
}

.search-form {
    position: relative;
    width: 445px;
    input {
        background: #F9F9F9;
        border: none;
        border-radius: 5px;
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
        padding: 0 40px 0 20px;
        width: 100%;
        height: 45px;
        &:focus { outline: none; }
    }
    button {
        background: transparent;
        border: none;
        position: absolute;
        right: 20px;
        top: 45%;
        transform: translateY(-50%);
    }
}

.datepicker { position: relative; }
.datepicker svg {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.range-date {
    background: #F9F9F9;
    border: none;
    border-radius: 5px;
    color: var(--text-color);
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
    width: 265px;
    height: 45px;
    padding-left: 20px;
}
.range-date:focus {  outline: none; }

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

.pagination {
    display: flex;
    justify-content: center;
    gap: 17px;

    > button {
        background: #C8C8C8;
        border: none;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        width: 26px;
        height: 26px;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        &:hover { background: var(--light-blue); }
        i { font-size: 10px; }
    }
}

.pagination-buttons {
    display: flex;
    gap: 17px;

    button {
        background: transparent;
        border: none;
        color: #929395;
        cursor: pointer;
        font: 13px 'BPG Mrgvlovani Caps 2010';
        line-height: 18px;
        &.active { color: var(--primary-color); }
    }
}

.first-page, .last-page {
    background: #C8C8C8;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media {
    display: flex;
    align-items: flex-start;
    gap: 37px;
}

.current-media { width: 65%; }
.media-preview { 
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    > img {
        width: 297px;
        height: 192px;
        object-fit: cover;
    }
    > div:nth-child(2) {
        background: #F8F8F8;
        border-radius: 0 5px 5px 0;
        padding: 30px 24px 30px 30px;
        height: 192px;
    }
    .title {
        font: 16px 'BPG Mrgvlovani Caps 2010';
        line-height: 22px;
        height: 85px;
        text-overflow: ellipsis;
        overflow: hidden;
        margin-bottom: 30px;
    }
    .date {
        color: var(--light-blue);
        font: 12px 'BPG Mrgvlovani Caps 2010';
        line-height: 16px;
        margin-bottom: 0;
    }
}

.media-text, .legislation-text {
    background: #F8F8F8;
    border-radius: 5px;
    font: 14px 'BPG Mrgvlovani' !important;
    line-height: 19px !important;
    margin-bottom: 30px;
    padding: 30px 22px 55px;
    * {
        font: 14px 'BPG Mrgvlovani' !important;
        line-height: 19px !important;
    }
}

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

.go-back {
    color: #A4A4A4;
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    transition: all 0.3s ease;
    &:hover { color: var(--secondary-color); }
}

.share-links {
    display: flex;
    align-items: center;
    gap: 15px;
    span {
        color: var(--primary-color);
        font: 14px 'BPG Mrgvlovani';
        line-height: 19px;
        margin-right: 5px;
    }
    div {
        background: #F2F2F2;
        border-radius: 50%;
        color: var(--text-color);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }
}

.other-media { 
    width: 32%; 
    > p {
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 24px;
        margin-bottom: 30px;
    }
}

.other-media-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.success-form .select2-container {
    width: 270px !important;
    height: 50px !important;
}

.blog-form .select2-container .select2-selection--single { 
    background: #F9F9F9 !important;
    border: none !important;
    border-radius: 5px !important;
    height: 45px !important;
}

.success-form .select2-container .select2-selection--single { 
    background: var(--light-blue) !important;
    border: none !important;
    border-radius: 0 !important;
    height: 50px !important;
}

.blog-form .select2-container .select2-selection--single .select2-selection__rendered {
    color: var(--select-color) !important;
    display: flex !important;
    align-items: center;
    font: 12px 'BPG LE Studio 02 Caps' !important;
    line-height: 15px !important;
    padding: 15px 18px 0 !important;
}

.success-form .select2-container .select2-selection--single .select2-selection__rendered {
    color: white !important;
    display: flex !important;
    align-items: center;
    font: 16px 'Dejavu Sans' !important;
    line-height: 19px !important;
    padding: 15px 18px 0 !important;
}

.blog-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    background: url(../images/select-arrow.svg) no-repeat center center;
    background-size: contain;
    width: 6.6px !important;
    height: 4px !important;
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%);
}

.success-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    background: url(../images/select-arrow1.svg) no-repeat center center;
    background-size: contain;
    width: 11px !important;
    height: 11px !important;
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%);
}
  
.select2-container--default .select2-selection--single .select2-selection__arrow b { display: none !important; }
.select2-dropdown {
    background: #F9F9F9 !important;
    border: none !important;
}

.select2-results {
    color: var(--select-color);
    font: 10px 'BPG LE Studio 02 Caps';
    line-height: 13px;
}

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

.select2-container--default .select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: #F9F9F9 !important;
    color: var(--primary-color) !important;
}
.select2-results__option--disabled { display: none !important; }

.blogs-container { padding: 50px 20px 160px; }
.blog-form {
    display: grid;
    grid-template-columns: 210fr 265fr 228fr 348fr;
    gap: 13px;
    margin-bottom: 30px;
}

.blog-search {
    position: relative;
    width: 100%;
    height: 45px; 
    input {
        background: #F9F9F9;
        border: none;
        border-radius: 5px;
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
        width: 100%;
        height: 45px;
        padding: 0 45px 0 20px;
        &:focus { outline: none; }
    }
    button {
        background: transparent;
        border: none;
        position: absolute;
        top: 45%;
        right: 20px;
        transform: translateY(-50%);
    }
}

.media-video {
    width: 100%;
    margin-bottom: 30px;
    iframe {
        width: 100%;
        height: 450px;
    }
}

.legislation-text { 
    padding: 30px 23px 55px 40px; 
    margin-bottom: 40px;
}

.legislation-links {
    background: #FBFBFB;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 35px 50px;
    margin-bottom: 50px;
}

.link {
    background: white;
    border-radius: 5px;
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    padding: 0 35px 0 30px;
    height: 50px;
    transition: all 0.3s ease;
    &:hover {
        background: var(--light-blue);
        color: white;
        i { color: white; }
    }

    i { 
        color: #A4A4A4;
        transition: all 0.3s ease;
        &:hover { color: var(--secondary-color); }
    }
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.question {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 21px;

    /* p { margin-bottom: 0; } */
    .toggle-icon { margin-top: 3px; }
    .toggle-icon.minus { display: none; }
}

.answer {
    overflow: hidden;
    height: 0;
    transition: all 0.3s ease;
}

.answer-content { 
    background: #FAFAFA;
    color: #4F4F4F;
    font: 14px 'BPG Mrgvlovani';
    line-height: 20px;
    padding: 24px 58px 35px 30px;
}

.contact-page {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.contact-page-content { width: 59%; }
.contact-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 18px;
    row-gap: 15px;
    margin-bottom: 50px;
}

.contact-item {
    background: #F9F9F9;
    border-radius: 5px;
    padding: 32px 30px;
    &:last-child { grid-column: 1 / 3; }
    > p:first-child {
        font: 12px 'BPG Mrgvlovani Caps 2010';
        line-height: 16px;
        margin-bottom: 5px;
    }
    > div * {
        color: #6B6B6B;
        text-decoration: none;
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        margin-bottom: 0;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;

    > p:first-child {
        font: 18px 'BPG Mrgvlovani Caps 2010';
        line-height: 25px;
        margin-bottom: 5px;
    }

    button {
        background: var(--light-blue);
        border: none;
        color: white;
        font: 14px 'BPG Mrgvlovani Caps 2010';
        line-height: 19px;
        width: 215px;
        height: 45px;
        transition: all 0.3s ease;
        &:hover { background: var(--primary-color); }
    }
}

.map {
    width: calc(41% - 30px);
    iframe {
        border-radius: 10px;
        width: 100%;
        height: 530px;
    }
}

.consultation-cont {
    background: #FBFBFB;
    padding: 40px 20px 150px;
    .content1 { padding-right: 100px; }
    .page-title1 { margin-bottom: 0; }
    hr {
        border-color: #D5D5D5;
        opacity: 1;
        margin: 35px 0 55px;
    }
}

.page-title1 {
    color: black;
    -webkit-text-stroke: 1px black;
    font: 24px 'BPG LE Studio 02 Caps';
    line-height: 32px; 
    margin-bottom: 50px;
}

.consultation-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.contact-us {
    max-width: 340px;
    p:first-child {
        color: #343434;
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 26px;
        margin-bottom: 50px;
    }

    .socials a { background: var(--primary-color); }
}

.consultation-contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
    > * {
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 20px;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;

        div {
            background: var(--light-blue);
            border-radius: 50%;
            font-size: 10px;
            width: 29px;
            height: 29px;
        }

        span {
            color: black;
        }
    }
}

.contact-apps {
    text-decoration: none;
    display: flex;
    gap: 10px;
    a {
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 50px;
    }
    a:first-child { background: var(--whatsapp); }
    a:nth-child(2) { background: var(--telegram); }
    a:nth-child(3) { background: var(--signal); }
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 475px;

    p:first-child {
        color: #343434;
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 26px;
        margin-bottom: 25px;
    }

    button {
        background: var(--light-blue);
        border: none;
        border-radius: 5px;
        color: white;
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        height: 50px;
        transition: all 0.3s ease;
        &:hover { background: var(--primary-color); }
    }
}

.development-center { padding: 50px 20px 150px; }

.development-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 11px;
    row-gap: 40px;
    margin-bottom: 50px;
}

.development-item {
    color: black;
    text-decoration: none;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 21px;
    width: 100%;

    div {
        position: relative;
        z-index: 2;
        overflow: hidden;
        height: 290px;
        width: 100%;
        img {
            border-radius: 15px;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            object-fit: cover;
        }
        &::before {
            content: '';
            background: linear-gradient(180deg,  rgba(2,14,90,0 ) 0.00%, #000312 100.00%);
            border-radius: 0 0 15px 15px;
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 2;
        }
    }

    span {
        -webkit-text-stroke: 1px black;
        font: 18px 'BPG LE Studio 02 Caps';
        line-height: 24px;
        text-align: center;
    }
}

.training {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 120px;

    > img:last-child {
        border-radius: 15px;
        width: calc(45% - 30px);
        height: 420px;
        object-fit: cover;
    }
}

.current-training {
    width: 55%;
    > p:first-child {
        font: 18px 'BPG LE Studio 02 Caps';
        line-height: 24px;
        margin-bottom: 20px;
    }

    .text {
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        margin-bottom: 30px;
    }
}

.training-title {
    color: black;
    -webkit-text-stroke: 0.5px black;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 20px;
}

.training-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    p { margin-bottom: 0; }
}

.discount-info {
    border: 1px solid var(--light-blue);
    border-radius: 5px;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    padding: 20px;
    span { color: var(--secondary-color); }
}

.original {
    text-decoration: line-through;
    font: 19px 'BPG Mrgvlovani';
    line-height: 26px;
}

.discount {
    span:first-child {
        color: var(--secondary-color);
        font: 38px 'BPG Mrgvlovani';
        line-height: 40px;
    }
    span:last-child {
        font: 23px 'BPG Mrgvlovan';
        line-height: 31px;
    }
}

#register-btn {
    background: var(--light-blue);
    border: none;
    border-radius: 5px;
    color: white;
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
    width: 270px;
    height: 50px;
    transition: all 0.3s ease;
    &:hover { background: var(--secondary-color); }
}

.training-form {
    display: none;
    flex-direction: column;
    gap: 15px;
    &.active { display: flex; }

    > p:first-of-type {
        color: #343434;
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        margin-bottom: 0;
    }

    button {
        background: var(--light-blue);
        border: none;
        border-radius: 5px;
        color: white;
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        width: 270px;
        height: 50px;
        transition: all 0.3s ease;
        &:hover { background: var(--primary-color); }
    }

    hr {
        border-color: var(--border-color);
        opacity: 1;
        margin: 0 0 15px;
    }

    .training-title, .training-price { margin-bottom: 0; }
}

.birthdate-cont {
    display: flex;
    flex-direction: column;
}

.birthdate {
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    padding-left: 26px;
    position: relative;
    margin-bottom: 20px;

    input {
        border-radius: 5px;
        border: none;
        padding-left: 0 !important;
        width: calc(100% - 150px);
        &:focus { outline: none; }
    }

    label { color: var(--primary-color) !important; }

    div:first-of-type {
        background: white;
        position: absolute;
        right: 2px;
        top: 0;
        width: 20px;
        height: 43px;
    }

    .invalid-feedback {
        position: absolute;
        left: 0;
    }
}

.service-agreement {
    color: var(--light-blue);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.agree-terms {
    input {
        width: 20px !important;
        height: 20px !important;
        padding-left: unset !important;
    }

    .form-check {
        padding-left: 20px !important;
        margin-bottom: 0 !important;
    }
    
    label {
        color: var(--text-color);
        font-size: 10px;
        line-height: 13px;
    }

    input {
        margin: 6px 10px 0 0;
        background: transparent;
        border: 1px solid var(--border-color) !important;
        border-radius: 3px !important;
        cursor: pointer;
        appearance: none !important;
        -webkit-appearance: none !important;
        transition: all 0.3s ease;
        position: relative;
        &:checked {
            background: var(--primary-color);
            border-color: var(--primary-color) !important;
        }
    }

    input:checked::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 6px;
        width: 6px;
        height: 12px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }
}

.other-training-swiper > p {
    font: 18px 'BPG LE Studio 02 Caps';
    line-height: 24px;
    margin-bottom: 25px;
}

.other-trainings { padding-bottom: 50px !important; }

.reviews-cont { padding: 50px 20px; }
.review-content {
    display: flex;
    gap: 20px;
}

.review-number {
    background: url('../images/review-bg.png') no-repeat center center / cover;
    border-radius: 15px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 45%;
    height: 450px;
    position: relative;
    > * {
        position: relative;
        z-index: 2;
    }

    > p:first-child {
        font: 91px 'BPG LE Studio 02 Caps';
        line-height: 100px;
        margin-bottom: 18px;
    }

    > p:nth-child(2) {
        font: 48px 'BPG LE Studio 02 Caps';
        line-height: 51px;
        margin-bottom: 27px;
    }

    div {
        display: flex;
        gap: 10.5px
    }
}

.review-number::before, .advice-img::before {
    background: rgba(2, 14, 90, 0.67);
    border-radius: 15px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

.review-swiper {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    width: calc(55% - 20px);
}

.review-slide {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    padding: 95px 60px 0;
    > p:first-of-type {
        font: 33px 'BPG Banner Caps';
        line-height: 44px;
        margin-bottom: 0;
    }
    > div {
        font: 14px 'BPG Mrgvlovani';
        line-height: 19px;
        height: 76px;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}

.review-pagination { bottom: 45px !important; }
.review-swiper .swiper-pagination-bullet-active { background: var(--secondary-color) !important; }

.about-us-cont { 
    margin-top: -90px; 
    padding-bottom: 120px;
    .content { gap: 40px; align-items: flex-start; }
    .page-title { margin-bottom: 25px; }
}

.about-content {
    padding-top: 100px;
    width: 39%;
    > p:first-child {
        color: var(--primary-color);
        font: 40px 'BPG LE Studio 02 Caps';
        line-height: 45px;
        margin-bottom: 20px;
    }
    .text {
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
    }
}

.about-images {
    position: relative;
    min-height: 625px;
    width: calc(61% - 40px);
    > img { position: absolute; object-fit: cover; }
    img:first-child { 
        width: 360px;
        height: 410px;
        top: 75px; 
        left: 0; 
    }
    img:nth-child(2) { 
        width: 360px;
        height: 410px;
        bottom: 0; 
        right: 0; 
    }
    img:last-child {
        width: 220px;
        height: 190px;
        top: 0;
        right: 20px;
    }
}

.career-text {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    * {
        font: 12px 'BPG Mrgvlovani' !important;
        line-height: 16px !important;
    }
    margin-bottom: 30px;
}

.careers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
 
.careers-list-head {
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    gap: 45px;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    height: 60px; 
    padding: 0 54px 0 40px;
    p { margin-bottom: 0; }
    p:first-child { width: 66.5%; }
}

.career-item {
    border: 1px solid #D9D9D9;
    display: flex;
    align-items: center;
    gap: 45px;
    padding: 25px 55px 25px 40px;

    .name {
        font: 14px 'BPG Mrgvlovani Caps 2010';
        line-height: 19px;
        height: 38px;
        text-overflow: ellipsis;
        overflow: hidden;
        margin-bottom: 0;
        width: 66.5%;
    }

    .date {
        font: 14px 'BPG Mrgvlovani';
        line-height: 19px;
        margin-bottom: 0;
    }

    a { margin-left: auto; }
}

.current-career {
    .careers-list-head { margin-bottom: 20px; }
    .career-item { border-radius: 5px 5px 0 0; }
}

.career-desc {
    border: 1px solid #D9D9D9;
    border-top: none;
    border-radius: 0 0 5px 5px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    padding: 22px 54px 40px 40px;
    margin-bottom: 20px;

    a {
        color: var(--light-blue) !important;
        text-decoration: none;
    }
}

.advice-cont { padding: 50px 20px 150px; }
.advice-content {
    display: flex;
    align-items: flex-start;
    gap: 40px; 
}

.advice-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 53%;
}

.advice {
    > p {
        font: 18px 'BPG LE Studio 02 Caps';
        line-height: 24px;
        margin-bottom: 15px;

        span:first-child {
            color: var(--secondary-color);
            -webkit-text-stroke: 1px var(--secondary-color);
            font-size: 24px;
            line-height: 32px;
            margin-right: 20px;
        }
    }

    div {
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
    }
}

.advice-img {
    background: url('../images/advice.png') no-repeat center center / cover;
    border-radius: 15px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(47% - 40px);
    height: 450px;
    position: relative;
    > * {
        position: relative;
        z-index: 2;
    }

    > p {
        font: 30px 'BPG LE Studio 02 Caps';
        line-height: 40px;
        margin-bottom: 18px;
    }

    a {
        border: 1px solid white;
        border-radius: 23px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
        text-decoration: none;
        width: 220px;
        height: 45px;
        transition: all 0.3s ease;
        &:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
        }
    }
}

.successful-cases-cont { 
    padding: 50px 20px 90px; 
    .intro {
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        * {
            font: 12px 'BPG Mrgvlovani' !important;
            line-height: 16px !important;
        }
    }
    
    .link {
        background: var(--border-color);
        &:hover { background: var(--light-blue); }
    }
}

.success-numbers {
    background: url('../images/decor.svg') no-repeat center center / cover;
    align-items: center;
    color: white;
    min-height: 340px;
    position: relative;
    &::before { background: rgba(3, 15, 94,0.87); }
    .content { 
        justify-content: space-between;
        position: relative;
        z-index: 2;
    }
}

.success-num {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-bottom: 0;
    max-width: 220px;
    min-width: 184px;

    span:first-child {
        font: 50px 'BPG LE Studio 02 Caps';
        line-height: 55px;
    }

    span:last-child {
        text-align: center;
        font: 16px 'Dejavu Sans';
        line-height: 19px;
    }
}

.success-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.success-item {
    border: 1px solid var(--light-blue);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 0;
    padding: 30px;
    span {
        color: black;
        -webkit-text-stroke: 1px black;
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 26px;
        max-width: 80%;
    }
    a {
        color: var(--light-blue);
        -webkit-text-stroke: 1px var(--light-blue);
        text-decoration: none;
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
    }
}

.current-case {
    border: 1px solid var(--light-blue);
    border-radius: 5px;
    padding: 30px 40px 30px 30px;
    margin-bottom: 35px;
    > p:first-child {
        color: black;
        -webkit-text-stroke: 1px black;
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 26px;
        margin-bottom: 40px;
    }

    .title {
        color: var(--light-blue);
        -webkit-text-stroke: 1px var(--light-blue);
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        margin-bottom: 20px;
    }

    .text, .text * {
        font: 12px 'BPG Mrgvlovani' !important;
        line-height: 16px !important;
    }
}

.case-video {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 30px;
}

.case-catalogue {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    > img {
        border-radius: 10px;
        width: 133px;
        height: 150px;
        object-fit: cover;
    }

    > div {
        width: calc(100% - 153px);
        .link { margin-bottom: 20px; }
        .text, .text * {
            font: 12px 'BPG Mrgvlovani' !important;
            line-height: 16px !important;
        }
    }
}

.address-cont {
    padding: 50px 20px 150px;
    .intro {
        color: #4F4F4F;
        font: 14px 'BPG Mrgvlovani';
        line-height: 19px;
        margin-bottom: 50px;
    }
}

.location-filter {
    display: flex;
    gap: 22px;
    margin-bottom: 30px;

    > div { width: calc(50% - 11px); }

    label {
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        margin-bottom: 17px;
    }

    select {
        appearance: none;
        --bs-form-select-bg-img: none !important;
        background: #F5F5F5;
        border: 1px solid #DBDBDB;
        border-radius: 0 !important;
        font: 14px 'BPG Mrgvlovani';
        line-height: 19px;
        padding-left: 26px;
        height: 50px;
    }
}

.location-content {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.map-container {
    border-radius: 10px;
    width: calc(50% - 11px);
    height: 530px;
}

.locations-body {
    background: white;
    border: 1px solid #DBDBDB;
    overflow: auto;
    padding: 23px 20px;
    width: calc(50% - 11px);
    height: 530px;
}

.location-item {
    cursor: pointer;
    gap: 20px;
    padding: 18px 10px 18px 28px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    &:hover { background: #ECECEC; }
    p:first-child {
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        max-width: 420px;
        margin-bottom: 0;
    }

    p:last-child {
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        margin-bottom: 0;
    }   
}

.needs-text {
    font: 18px 'BPG Mrgvlovani';
    * { font-family: 'BPG Mrgvlovani' !important; }
    h5 {
        font: 700 20px 'BPG Mrgvlovani';
        line-height: 24px;
        margin-bottom: 0;
        position: relative;
        &::after {
            content: '';
            background: linear-gradient(135deg, transparent 0 12%, var(--primary-color) 12% 88%, transparent 88% 100%);
            position: absolute;
            width: 2.5cm; height: 6px;
            bottom: -20px; left: 0;
        }
    }
    hr {
        width: 3.2cm; height: 4px;
        margin: 20px auto;
        border: 0;
        background: #FFA85C;
        clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
        opacity: 1;
    }
    ul { 
        list-style: none; 
        padding: 0;
        margin: 0;
    }
    li {
        background: no-repeat 0 .35em / 22px 22px url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFA85C" d="M5 4 13 12 5 20 3 18 9 12 3 6 5 4zM11 4l8 8-8 8-2-2 6-6-6-6 2-2z"/></svg>');
        padding: 3px 0 0 25px;
    }
}