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


:root {
    --primary-color: #001360;
    --secondary-color: #98B8E9;
    --hover-color: #001978;
    --bg-color: #FBFBFB;
    --border-color: #E3EAF3;
    --light-blue: #5CA8FF;
}

.wrapper {
    overflow-x: hidden;
}

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

.content {
    display: flex;
    width: 100%;
    max-width: 918px;
}

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

/*** 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-floating > .form-control {
    min-height: unset !important;
}

.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;
}
/* **************************************** */

/* side nav */
.sidenav {
    background-image: url('../images/sidenav-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    width: 354px;
    height: 100vh;
    padding: 40px 50px 0;
    overflow: auto;
}

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

/* Firefox */
@-moz-document url-prefix() {
    .sidenav {
        scrollbar-width: thin;
        scrollbar-color: var(--secondary-color) #F1F1F1;
    }
}

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

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

.logos {
    cursor: pointer;
    position: relative;
    width: 83px;
    height: 83px;
    /* perspective: 1000px; */
    margin: 0 auto 53px;
}

.logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* backface-visibility: hidden; */
    transition: all 0.4s ease;
}

.front {
    z-index: 2;
}

/* .back {
    transform: rotateY(180deg);
    z-index: 1;
    opacity: 0;
} */

/* .logos:hover .front {
    transform: rotateY(180deg);
    opacity: 0;
}

.logos:hover .back {
    transform: rotateY(0deg);
    opacity: 1;
} */

/* login form */
.login-form p:first-child {
    color: white;
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.login-form div {
    position: relative;
}

.login-form div:first-of-type {
    margin-bottom: 10px;
}

.login-form img {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.login-form input {
    background: transparent;
    border: 1px solid white;
    border-radius: 10px;
    color: white;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    height: 50px;
    width: 100%;
    padding: 0 10px 0 52px;
}

.login-form input:focus {
    outline: none;
}

.login-form input::placeholder {
    color: white;
}

.password-recovery {
    color: white;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    text-align: end;
    margin: 15px 0 30px;
    display: flex;
    justify-content: flex-end;
    text-decoration: none;
}

.login-btn {
    background: white;
    border: none;
    border-radius: 23px;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: 100%;
    height: 45px;
    margin-bottom: 27px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: var(--hover-color);
    color: white;
}

.register-link {
    color: white;
    display: flex;
    justify-content: center;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
}

.register-link:nth-of-type(1) {
    margin-bottom: 53px;
}

.register-link:nth-of-type(2) {
    margin-bottom: 73px;
}

.policy {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 40px;
}

.policy a {
    color: white;
    text-decoration: none;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
}

.social-media {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 30px;
}

.social-media a {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.copyright {
    color: white;
    font: 12px 'BPG Arial 2009';
    line-height: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.copyright p {
    margin: 0;
}

.copyright a {
    color: var(--light-blue);
    text-decoration: none;
}

/* main content */
.main-content {
    /* width: calc(100vw - 371px); */
    margin-left: 354px;
}

header {
    background: white;
    filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.16));
    min-height: 100px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.menu a {
    color: black;
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.menu a:hover,
.menu a.active {
    color: var(--hover-color);
}

.menu a:hover::after,
.menu a.active::after {
    background: var(--hover-color);
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -42px;
    width: 100%;
    min-width: 60px;
    height: 10px;
} 

.actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.user {
    background: rgba(19, 84, 184, 0.18);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    display: grid;
    place-content: center;
    width: 40px;
    height: 35px;
    transition: all 0.3s ease;
}

.user svg {
    fill: #7c9ed1;
    transition: all 0.3s ease;
}

.user:hover {
    background: var(--primary-color)
}

.user:hover svg {
    fill: white;
}

.language-change {
    position: relative;
}

.language-change > a {
    color: var(--primary-color);
    text-decoration: none;
    font: 12px "BPG Mrgvlovani Caps 2010";
    line-height: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.language-change > a i {
    color: black;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-change a.active i {
    transform: rotate(180deg);
}

.language-change ul {
    display: none;
    list-style: none;
    padding-left: 0;
    position: absolute;
    top: 100%;

    li { display: flex; }
}

.language-change ul a {
    color: var(--primary-color);
    text-decoration: none;
    font: 12px "BPG Mrgvlovani Caps 2010";
    line-height: 16px;
}

.mobile-logo, .show-menu { display: none; }

.mobile-menu {
    background: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    top: 100px;
    right: -320px;
    height: 100vh;
    width: 320px;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1001;
    padding: 40px 20px;
    &.active {
        right: 0;
    }

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

/* main page banner */
.banner-swiper {
    height: 470px;
    margin-bottom: 56px;
}

.banner-slide::before {
    background: rgba(0, 0, 0, 0.6);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
}

.banner-slide img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.banner-text {
    position: absolute;
    top: 117px;
    left: 50%;
    transform: translate(-50%);
    z-index: 22;
    text-align: center;
    width: 100%;
    max-width: 713px;
    padding: 0 20px;
}

.banner-text p:first-child {
    color: #ABDDFF;
    font: 30px 'Gilroy GEO';
    line-height: 39px;
    margin-bottom: 25px;
}

.banner-text div {
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 34px 'DM Giorgi Khorguashvili';
    line-height: 61px;
    margin-bottom: 50px;
}

.banner-text button {
    background: var(--primary-color);
    border: none;
    border-radius: 23px;
    color: white;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: 210px;
    height: 45px;
    transition: all 0.3s ease;
}

.banner-text button:hover {
    background: white;
    color: black;
}

.banner-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 40px !important;
}

.banner-swiper .swiper-pagination-bullet {
    background: white;
}

.banner-swiper .swiper-pagination-bullet,
.working-process-swiper .swiper-pagination-bullet  {
    width: 10px;
    height: 10px;
    margin: 0 5px;
}

/* about platform preview */
.platform-preview-container {
    margin-bottom: 70px;
}

.platoform-preview > .title {
    margin-bottom: 22px;
}

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

.title1 {
    font: 30px 'Gilroy GEO';
    line-height: 39px;
}

.title2 {
    color: var(--light-blue);
    font: 30px 'DM Giorgi Khorguashvili', "BPG Mrgvlovani";
    line-height: 55px;
}

.platform-preview > p:nth-child(2) {
    font: 14px 'BPG Mrgvlovani';
    line-height: 26px;
    margin-bottom: 50px;
}

.preview-buttons {
    display: flex;
    gap: 20px;
}

.preview-buttons button,
.about-heading button {
    border: none;
    border-radius: 23px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    transition: all 0.3s ease;
    height: 45px;
}

.preview-buttons button:first-child {
    background: black;
    color: white;
    width: 160px;
}

.preview-buttons button:first-child:hover {
    background: var(--primary-color);
}

.preview-buttons button:last-child,
.about-heading button {
    border: 1px solid black;
    background: white;
    color: black;
    width: 210px;
}

.preview-buttons button:last-child a,
.about-heading button a {
    color: white;
    text-decoration: none;
    display: none;
}

.preview-buttons button:last-child:hover,
.about-heading button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.preview-buttons button:last-child:hover span,
.about-heading button:hover span {
    display: none;
}

.preview-buttons button:last-child:hover a,
.about-heading button:hover a {
    display: block;
}

/* why SH section */
.why-SH {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    padding-left: calc((100% - 924px) / 2);
}

.why-SH .title {
    margin-bottom: 53px;
}

.why-SH-reasons {
    width: 49.27%;
}

.reasons div {
    display: flex;
    align-items: center;
    gap: 30px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
}

.reasons hr {
    border-color: #E3E3E3;
    opacity: 1;
    margin: 27px 0;
}

.why-SH > img:last-child {
    width: 48.45%;
    height: 588px;
    object-fit: cover;
}

/* SH working process */
.working-process-container {
    padding-top: 68px;
    padding-bottom: 50px;
    background: var(--bg-color);
}

.working-process-content > .title {
    justify-content: center;
    margin-bottom: 30px;
}

.working-process-content hr {
    border: 3px solid #302E2F;
    opacity: 1;
    margin: 0 0 84px;
}

.working-process-swiper {
    width: 81.15%;
    padding-bottom: 50px !important;
}

.working-process-swiper .swiper-pagination-bullet {
    background: var(--hover-color);
}

.working-process-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
}

.process-slide {
    position: relative;
    min-height: 198px;
}

.slide-num {
    background: var(--hover-color);
    border-radius: 10px;
    color: white;
    font: 20px "BPG LE Studio 02 Caps";
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    position: absolute;
    z-index: 2;
    left: 31px;
}

.process-desc {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 43px 25px 48px 31px;
    position: absolute;
    z-index: 1;
    top: 20px;
    min-height: 178px;
}

.process-desc > p:first-child {
    font: 18px 'Gilroy GEO';
    line-height: 23px;
    margin-bottom: 14px;
}

.process-desc > p:nth-child(2) {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 64px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0;
}

/* what SH offers container */
.offers-container {
    background-image: url('../images/ai-image1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 501px;
    padding-top: 110px;
}
    
.offers-container::before {
    background: linear-gradient(180deg, #000000 0.00%, rgba(84, 84, 84, 0) 100.00%);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.offers-container > * {
    z-index: 3;
}

.offers-content {
    width: 100%;
}

.offers-content .title {
    justify-content: center;
}

.offers-content .title span:first-child {
    color: white;
}

.offers-swiper {
    width: 100%;
}

.offer-slide {
    position: relative;
    min-height: 168px;
}

.offer-name {
    background-image: url('../images/offer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px 5px 5px 0;
    color: white;
    font: 18px 'Gilroy GEO';
    display: flex;
    align-items: center;
    padding-left: 20px;
    line-height: 23px;
    height: 47px;
    width: 86%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.offer-name::before {
    background: rgba(0, 19, 96, 0.77);
    border-radius: 5px 5px 5px 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

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

.offer-desc {
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    padding: 41px 40px 26px 20px;
    min-height: 148px;
    position: absolute;
    z-index: 1;
    top: 20px;
}

/* prices section */
.price-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.price-content > p:first-child {
    color: var(--light-blue);
    font: 30px 'Gilroy GEO';
    line-height: 39px;
    margin-bottom: 40px;
    text-align: center;
}

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

.prices .price-card {
    border-radius: 10px;
    filter: drop-shadow(0px 8px 17px rgba(0, 0, 0, 0.09));
    padding: 35px 46px 46px;
    min-height: 418px;
    width: 50%;
}

.offer-num {
    font: 30px 'Gilroy GEO';
    line-height: 39px;
    margin-bottom: 15px;
}

.offer-price {
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 25px;
    height: 44px;
    max-width: 271px;
}

.buy-offer {
    border: none;
    border-radius: 5px;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 220px;
    height: 45px;
    transition: all 0.3s ease;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.benefits div {
    display: flex;
    align-items: center;
    gap: 16px;
    font: 10px 'BPG Mrgvlovani Caps 2010';
    line-height: 13px;
}

.price-card {
    background-image: url('../images/price-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
}

.price-card .offer-num,
.price-card .offer-price,
.price-card .benefits {
    color: white;
}

.price-card .buy-offer {
    background: white;
}

.price-card .buy-offer:hover {
    background: var(--primary-color);
    color: white;
}

/* valid certificate section */
.certificate-container {
    margin-bottom: 95px;
}

.certificate-container .title {
    justify-content: center;
    margin-bottom: 30px;
}

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

.certificates div {
    border: 1px solid var(--hover-color);
    border-radius: 10px;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    width: 48.5%;
}

.certificates div img {
    width: 100%;
    height: 343px;
    object-fit: contain;
}

/* faq preview section */
.faq-preview-container {
    margin-bottom: 80px;
}

.faq-preview-container .title {
    justify-content: center;
}

.faq-preview-container hr {
    border: 3px solid #302E2F;
    opacity: 1;
    margin: 30px 0 47px;
}

.questions-preview {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 56px;
}

.question-card {
    position: relative;
    cursor: pointer;
    width: calc((100% - 18px) / 2);
    min-height: 136px;
}

.qmark {
    background: var(--hover-color);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 43px;
    height: 38px;
    position: absolute;
    z-index: 2;
    left: 10px;
}

.question-text {
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 18px;
    padding: 39px 20px 0;
    min-height: 114px;
    position: absolute;
    top: 22px;
    z-index: 1;
    transition: all 0.3s ease;
}

.question-text:hover {
    min-height: 150px;
}

.question-text:hover a {
    opacity: 1;
}

.question-text p {
    height: 54px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0;
}

.question-text a {
    color: var(--hover-color);
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 21px;
}

.see-all {
    border: 1px solid #4E4E4E;
    border-radius: 23px;
    color: black;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: 160px;
    height: 45px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.see-all:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* customer review slide */
.customer-review-container {
    background: var(--bg-color);
    padding-top: 70px;
    padding-bottom: 55px;
    margin-bottom: 90px;
}

.customer-review-container .title {
    justify-content: center;
    margin-bottom: 50px;
}

.review-swiper-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    width: 100%;
    padding: 0 52px 0 58px;
}

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

.review-button {
    background: var(--primary-color);
    border: 3px solid #FBFBFB;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
}

.review-button:hover {
    background: var(--hover-color);
    border-color: var(--hover-color);
}

.review-slide {
    background: white;
    padding: 21px 29px 33px 43px;
}

.review-slide > img:first-child {
    display: inline-block;
    margin: 0 0 9px 10px;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.review-text {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    text-align: center;
    margin-bottom: 27px;
    height: 48px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.author {
    color: #818181;
    display: flex;
    flex-direction: column;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
}

.author span:first-child {
    color: var(--hover-color);
}

.review-swiper .swiper-pagination-bullet {
    background: var(--hover-color) !important;
}

.review-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
}

/* partners */
.partners-container {
    margin-bottom: 50px;
}

.partners-container .title {
    justify-content: center;
}

.partners-container hr {
    border: 3px solid #302E2F;
    opacity: 1;
    margin: 30px 0 50px;
}

.partners-swiper {
    width: 100%;
}

.partner-slide {
    background: var(--hover-color);
    height: 146px;
    min-height: 146px;
}

.partner-slide img {
    width: 100%;
    height: 146px;
    object-fit: contain;
}

/* footer */
footer {
    background: var(--bg-color);
    min-height: 345px;
    padding-top: 74px !important;
}

.footer-content {
    justify-content: space-between;
    align-items: flex-start;
    padding-right: 91px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu a {
    color: black;
    text-decoration: none;
}

.footer-contact {
    max-width: 290px;
}

.footer-contact > p:first-child {
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    margin-bottom: 15px;
}

.footer-contact > div {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 11px;
}

.footer-contact > div:last-child {
    margin-bottom: 0;
}

.footer-contact div span,
.footer-contact div a {
    color: black;
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    max-width: 241px;
}

.footer-contact div div {
    background: var(--hover-color);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    width: 29px;
    height: 29px;
}

.digital-payments {
    display: flex;
    align-items: center;
    gap: 24px;
}


/* about us page */
.about-container {
    padding-right: 0;
    padding-top: 65px;
}

.about-heading {
    display: flex;
    align-items: center;
    gap: 41px;
    margin-bottom: 22px;
}

.about-heading .title {
    margin-bottom: 0;
}

.about-text {
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
}

.about-content {
    background-image: url(../images/about-bg.png);
    background-repeat: no-repeat;
    background-position: right bottom; 
    background-size: auto; 
    padding-bottom: 165px;
}

.about-content > p:nth-child(2) {
    margin-bottom: 50px;
}

.about-content > p:nth-child(3) {
    font: 20px 'Gilroy GEO';
    line-height: 26px;
    margin-bottom: 30px;
}

.about-content > p:last-child {
    max-width: 66%;
}

/* certificate page */
.file {
    background: var(--hover-color);
    border-radius: 5px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 50px;
    padding: 0 42px 0 22px;
    transition: all 0.3s ease;
    margin: 50px 0;
}

.file-title {
    display: flex;
    align-items: center;
    gap: 29px;
}

.file-title p:first-child {
    font: 13px 'GL Tatishvili';
    line-height: 15px;
    margin-bottom: 0;
}

.file-title p:last-child {
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    margin-bottom: 0;
}

.file-title > p:first-child {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 27px;
}

.file-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.file-actions svg {
    fill: white;
    transition: all 0.3s ease;
}

.file-actions svg:hover {
    fill: var(--primary-color);
}

/* FAQ page */
.main-faq-container {
    padding-top: 50px;
    padding-bottom: 250px;
}

.main-faq-container .title {
    margin-bottom: 30px;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 27px;
    min-height: 50vh;
}

.question {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    font: 16px 'BPG Mrgvlovani';
    line-height: 22px;
}

.question p {
    margin-top: -4px;
}

.question .toggle-icon.minus {
    display: none;
}

.answer {
    background: #FAFAFA;
    border-radius: 10px;
    color: #4F4F4F;
    font: 14px 'BPG Mrgvlovani';
    line-height: 20px;
    overflow: hidden;
    height: 0;
    transition: all 0.3s ease;
}

.answer-content {
    padding: 27px 30px 39px;
}

/* contact page */
.contact-container {
    padding: 55px 50px 158px 44px;
}

.page-title {
    font: 30px 'Gilroy GEO';
    line-height: 39px;
    margin-bottom: 30px;
}

.contact-page {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 26px;
}

.contact-page > div {
    width: 48.5%;
}

.info-card {
    background: #F9F9F9;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 21px 30px;
    min-height: 85px;
    margin-bottom: 20px;
}

.info-card > p:first-child {
    font: 12px 'Gilroy GEO';
    line-height: 15px;
    margin-bottom: 0;
}

.info-card > div:last-child {
    color: #6B6B6B;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-card > div:last-child a {
    color: #6B6B6B;
    text-decoration: none;
}

.contact-left-side .info-card:nth-of-type(2) {
    margin-bottom: 30px;
}

/* contact form */
.contact-form > p:first-child {
    color: var(--hover-color);
    font: 18px 'Gilroy GEO';
    line-height: 23px;
    margin-bottom: 20px;
}

.contact-form label, 
.contract-form label {
    color: #8D8D8D;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
}

.contact-form > div {
    margin-bottom: 15px;
}

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

.contact-form .invalid-feedback span,
.register-form .invalid-feedback span,
.recovery-form .invalid-feedback span,
.account-form .invalid-feedback span,
.change-password .invalid-feedback span,
.contract-form .invalid-feedback span {
    color: #D90236;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    padding-left: 5px;
}

.contact-form .form-floating > label,
.contact-form .form-floating > .form-control  {
    padding-left: 17px !important;
}

.contact-comment {
    margin-bottom: 20px !important;
}

.contact-comment > textarea {
    height: 150px !important;
    resize: none;
}

.send-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: white;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: 214px;
    height: 45px;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: var(--hover-color);
}

.contact-right-side iframe {
    border-radius: 10px;
    width: 100%;
    height: 553px;
}

/* registration page */
.register-container {
    padding: 55px 50px 100px 44px;
}

.form-title {
    color: var(--primary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 20px;
}

.register-form, .recovery-form {
    width: 76%;
    min-width: 680px;
}

.register-form label,
.recovery-form label,
.account-form label,
.change-password label {
    color: #8D8D8D;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.register-form input,
.recovery-form input,
.account-form input,
.change-password input,
.contract-form input {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: black;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 50px !important;
    padding-left: 21px !important;
}

.register-form .form-floating > label,
.register-form .form-floating > .form-control,
.recovery-form .form-floating > label,
.recovery-form .form-floating > .form-control,
.account-form .form-floating > label,
.account-form .form-floating > .form-control ,
.change-password .form-floating > label,
.change-password .form-floating > .form-control,
.contract-form .form-floating > label,
.contract-form .form-floating > .form-control {
    padding-left: 21px !important;
}

.fullname {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
}

.fullname > div {
    width: 48.5%;
}

.register-email {
    margin-bottom: 20px;
}

.register-pass {
    margin-bottom: 10px;
}

.confirm-pass {
    margin-bottom: 30px;
}

.agree-terms {
    margin-bottom: 40px;
}

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

.agree-terms .form-check,
.reminder .form-check {
    padding-left: 20px !important;
    margin-bottom: 0 !important;
}

.agree-terms label, 
.reminder label {
    color: black;
    font-size: 10px;
    line-height: 13px;
    margin-top: -2px;
    font-family: "BPG Mrgvlovani";
}

.agree-terms input {
    margin: 6px 10px 0 0;
    background: transparent;
    border: 1px solid #E5E5E5 !important;
    border-radius: 3px !important;
    cursor: pointer;
    appearance: none !important;
    -webkit-appearance: none !important;
    transition: all 0.3s ease;
    position: relative;
}

.agree-terms input:checked,
.reminder input:checked {
    background: var(--primary-color);
    border-color: var(--primary-color) !important;
}

.agree-terms input:checked::after,
.reminder 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);
}

.agree-terms .invalid-feedback {
    margin-left: -20px;
}

.agree-terms label a {
    color: var(--primary-color);
}

/* password recovery page */
.recovery-container,
.recovery-success {
    padding: 55px 50px 365px 44px;
}

.recovery-email {
    margin-bottom: 40px;
}

.recovery-passwords {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.recovery-passwords > div {
    width: 48.5%;
}

/* password recovery success */
.recovery-success .page-title {
    margin-bottom: 24px;
}

.recovery-success p:nth-child(2) {
    color: var(--primary-color);
    font: 18px 'BPG Mrgvlovani';
    line-height: 25px;
    margin-bottom: 40px;
}

.recovery-success .send-btn {
    width: 300px;
}

/* personal page side nav */
.personal-sidenav .logos {
    margin-bottom: 50px;
}

.user-name {
    color: white;
    display: flex;
    align-items: center;
    gap: 11px;
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 28px;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 121px;
}

.account-nav a {
    background: rgba(249, 249, 249, 0.23);
    border-radius: 5px;
    color: white;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 45px;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.account-nav a.active,
.account-nav a:hover {
    background: var(--hover-color);
}

/* personal cabinet page */
.cabinet-container {
    padding: 55px 33px 107px 40px;
}

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

.account-forms {
    width: 67%;
}

.account-form {
    width: 100%;
    margin-bottom: 50px;
}

.account-email {
    margin-bottom: 15px;
}

.phone-input {
    margin-bottom: 10px;
}

.phone-input > span:first-child {
    color: #8D8D8D;
    font: 9px 'BPG Mrgvlovani';
    line-height: 12px;
}

.phone-input .edit-phone {
    width: 80%;
}

.phone {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.phone button {
    background: transparent;
    border: 1px solid #DBDBDB;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'BPG Mrgvlovani' !important;
    line-height: 19px;
    height: 50px;
    width: 124px !important;
}

.phone .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 124px !important;
}

.phone .bootstrap-select .dropdown-menu {
    min-width: 220px;
}

.phone button:hover {
    border-color: #DBDBDB;
    background: transparent;
}

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

.account-form select {
    color: black;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px !important;
    padding-left: 19px;
    height: 50px !important;
    min-height: 50px !important;
    padding-top: 22px !important;
}

.edit-city {
    margin-bottom: 10px;
}

.edit-address {
    margin-bottom: 30px;
}

.change-password > p:first-of-type {
    color: var(--primary-color);
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 20px;
}

.change-password > div {
    margin-bottom: 10px;
}

.change-password > div:last-of-type {
    margin-bottom: 30px;
}

.package-info {
    width: 29.8%;
}

.balance {
    background: var(--hover-color);
    border-radius: 5px;
    color: white;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    margin-bottom: 15px;
}

.balance p {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    height: 76px;
}

.balance p:first-child {
    background: var(--primary-color);
    border-radius: 5px;
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    padding-left: 40px;
}

.balance p:last-child {
    background: var(--hover-color);
    border-radius: 0 5px 5px 0;
    font: 24px 'BPG Mrgvlovani Caps 2010';
    line-height: 33px;
    padding-left: 21px;
}

.cover-balance {
    background: black;
    border: none;
    border-radius: 5px;
    color: white;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: 100%;
    height: 45px;
    transition: all 0.3s ease;
}

.cover-balance:hover {
    background: #202020
}

.package-info hr {
    border-color: #D9D9D9;
    opacity: 1;
    margin: 20.5px 0;
}

.active-package-title {
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 18px;
}

.active-package {
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    padding: 30px 33px 40px;
    margin-bottom: 10px;
}

.active-package p:first-child {
    color: var(--hover-color);
    font: 30px 'Gilroy GEO';
    line-height: 39px;
    margin-bottom: 15px;
}

.package-price {
    margin-bottom: 30px;
}

.package-price span:first-child {
    color: #313131;
    font: 20px 'BPG Mrgvlovani Caps 2010';
    line-height: 28px;
}

.package-price span:last-child,
.package-benefits span {
    color: #888888;
    font: 10px 'BPG Mrgvlovani Caps 2010';
    line-height: 13px;
}

.package-benefits {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.package-benefits > div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.change-package {
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    text-align: end;
}

.change-package a {
    color: var(--primary-color);
    text-decoration: none;
}

/* payment details page */
.package-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.details-card {
    border: 1px solid var(--hover-color);
    border-radius: 10px;
    padding: 22px 0 22px 30px;
    width: 32.68%;
    min-height: 135px;
}

.details-card:nth-child(2) {
    border-color: #D9D9D9;
}

.details-card > p:first-child {
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    margin-bottom: 15px;
}

.details-card > .details {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
}

.details span:first-child, .time-left {
    font: bold 12px 'Helvetica';
    line-height: 15px;
}

.details span:last-child {
    color: #8D8D8D;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
}

.time-left {
    color: var(--hover-color);
}

.reminder label {
    color: #8D8D8D;
    margin-left: 10px;
}

.reminder input {
    background: transparent;
    border: 1px solid #E5E5E5 !important;
    border-radius: 3px !important;
    cursor: pointer;
    appearance: none !important;
    -webkit-appearance: none !important;
    transition: all 0.3s ease;
    position: relative;
}

.balance-container {
    width: 29.74%;
}

/* filter form */
.filter-form {
    background: #F9F9F9;
    border-radius: 5px;
    padding: 24px 26px 32px 20px;
    margin-bottom: 25px;
}

.filter-form > p:first-child {
    color: var(--primary-color);
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin-bottom: 15px;
}

.filter-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

/* start-end date */
.datepicker {
    position: relative;
    width: 25.8%;
}

.datepicker span {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font: bold 10px "Helvetica";
    line-height: 12px;
}

#startDate, #endDate, .contract-dates,
.trustee-date {
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    color: black;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    height: 35px;
    width: 100%;
    padding-left: 120px;
}

.contract-dates, .trustee-date {
    font-size: 12px;
    line-height: 16px;
    height: 50px;
    padding-left: 14px !important;
}

.contract-dates::placeholder,
.trustee-date::placeholder {
    font-size: 10px;
    line-height: 13px;
}

#startDate:focus, #endDate:focus, .contract-dates:focus,
.trustee-date:focus {
    outline: none;
}

.filter-form select {
    color: black;
    font: bold 10px 'BPG Mrgvlovani';
    line-height: 12px !important;
    padding-left: 20px;
    height: 35px !important;
    min-height: 35px !important;
    width: 25.8%;
}

.filter-btn {
    width: 17.9%;
    height: 35px;
}

.payment-table, .history-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-table-head, .history-table-head {
    background: var(--hover-color);
    border-radius: 5px;
    color: white;
    font: bold 12px 'Helvetica';
    line-height: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 88px 0 35px;
    height: 45px;
}

.history-table-head {
    padding: 0 20px;
}

.payment-row, .history-row {
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 55px;
    padding: 0 115px 0 35px;
}

.history-row { 
    padding: 0 20px; 
    height: 100px;
}

.status-checkboxes {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.agreement-actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.payment-table-head > span:first-child,
.payment-row > span:first-child {
    min-width: 70px;
}

.payment-table-head > span:nth-child(2),
.payment-row > span:nth-child(2) {
    min-width: 82px;
}

.payment-table-head > span:nth-child(3),
.payment-row > span:nth-child(3) {
    min-width: 38px;
}

.payment-table-head > span:nth-child(4),
.payment-row > span:nth-child(4) {
    min-width: 104px;
}

.payment-table-head > span:last-child,
.payment-row > span:last-child {
    min-width: 70px;
}

.payment-row .success {
    color: #3EAA00;
}

.payment-row .fail {
    color: #DC001E;
}

/* contracts main page */
.choose-contract {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.choose-contract > p:first-child {
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 10px;
}

.choose-contract > p:nth-child(2) {
    color: var(--primary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 35px;
}

.contract-grid {
    color: white;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    font: 20px 'BPG Mrgvlovani Caps 2010';
    line-height: 28px;
}

.contract-card {
    background-color: var(--hover-color); 
    border-radius: 10px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 50px;
    min-height: 305px;
    transition: background-color 0.3s ease, background-position 0.3s ease;
    background-size: 100% auto; 
    background-position: left center; 
}

.contract-card:hover {
    background-color: var(--primary-color); 
    background-image: url('../images/contracts-hover.png'); 
    background-size: 100% auto, cover; 
    background-position: right center, center; 
}

/* contract history */
.filter-contract-items {
    display: flex;
    align-items: center;
    gap: 36px;
}

.filter-contract-items .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
    row-gap: 8px;
    width: 79.5%
}

.filter-contract-items .items > * {
    width: 100%;
}

.filter-contract-items .items > input {
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    font: 10px "BPG Mrgvlovani";
    line-height: 13px;
    padding-left: 20px;
    height: 35px;
}

.filter-contract-items .items > input:focus {
    outline: none;
}

.filter-contract-items .items > input::placeholder {
    color: black;
    font: bold 10px "Helvetica";
    line-height: 12px;
    opacity: 1;
}

.filter-btn1 {
    width: 15%;
    height: 35px;
}

.history-table-head > span:first-child,
.history-row > span:first-child {
    min-width: 70px;
}

.history-table-head > span:nth-child(2),
.history-row > span:nth-child(2) {
    min-width: 150px;
}

.history-table-head > span:nth-child(3),
.history-row > span:nth-child(3) {
    min-width: 200px;
}

.history-table-head > span:nth-child(4),
.history-row > span:nth-child(4) {
    min-width: 40px;
}

.history-table-head > span:nth-child(5),
.status-checkboxes {
    min-width: 125px;
}

.history-table-head > span:last-child,
.agreement-actions {
    min-width: 98px;
}

.agreement-actions > * {
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    transition: all 0.3s ease;
    width: 70px;
}

.save-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.history-row > a:last-child:hover {
    background: var(--hover-color);
}

.go-back {
    color: var(--hover-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    position: relative;
    display: inline-block;
    width: 140px;
    height: 19px;
    transition: color 0.3s ease;
}

.go-back:hover {
    color: var(--hover-color);
    text-decoration: none;
}

.go-back i {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 6px;
    font-size: 10px;
    transition: all 0.3s ease;
}

.go-back span {
    position: absolute;
    right: 0;
    transition: all 0.3s ease;
}

.go-back:hover i {
    opacity: 1;
    left: -10px;
}

.contract-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.contract-heading .page-title {
    margin-bottom: 0;
}

/* contract form  */
.contract-form {
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    padding: 40px 69px 65px;
}

.contract-form > p:first-child, .sides-title {
    color: var(--primary-color);
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 42px;
    text-align: center;
}

.form-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-field {
    margin-bottom: 15px;
}

.trustee-info-title {
    color: var(--hover-color);
    font: 16px 'BPG Mrgvlovani';
    line-height: 20px;
    margin-bottom: 20px;
}

.contract-form > .form-field:nth-of-type(4) {
    margin-bottom: 50px;
}

.form-field span {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.form-field div {
    width: 59.8%;
}

.borrower, .lender {
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font: bold 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    margin-bottom: 50px;
}

.lender {
    margin: 65px 0 50px;
    justify-content: unset;
}

.borrower button, .lender button {
    background: white;
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    color: #8D8D8D;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: 26.4%;
    height: 45px;
    transition: all 0.3s ease;
}

.borrower button.active,
.borrower button:hover,
.lender button.active,
.lender button:hover {
    background: var(--hover-color);
    border-color: var(--hover-color);
    color: white;
}

.rules-preview, .contract-subject-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    gap: 20px;
    margin: 50px 0;
}

.rules-preview > div {
    width: 36.9%;
}

.contract-subject > p:first-child,
.other-contract-info > p:first-child,
.interest-rate > p:first-child, 
.contract-rights > p:first-child {
    font: bold 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    margin-bottom: 30px;
}

.other-contract-info > p:first-child {
    margin-top: 30px;
}

.other-contract-info > p {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.contract-subject p {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.contract-subject-form {
    margin: 0 0 30px;
}

.contract-subject-form > div {
    width: 35.7%;
}

.contract-field, .interest-rate-field {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    gap: 20px;
    margin-bottom: 14px;
}

.contract-field > div {
    width: 33%;
}

.contract-field1 > div:first-of-type {
    width: 19%;
}

.contract-field1 > input {
    width: 58px;
}

.interest-rate-field > div {
    width: 37%;
}

.contract-rights {
    font: 12px "BPG Mrgvlovani";
    line-height: 16px;
    margin-bottom: 65px;
}

.contract-rights  textarea {
    height: 307px !important;
    resize: none;
}

/* upload multiple files */
.file-upload-container {
    background: black;
    border-radius: 5px;
    color: white;
    margin-bottom: 20px;
    width: 206px;
    height: 62px;
}

.file-input {
    display: none;
}
    
.custom-file-upload {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 18px 40px;
}

.custom-file-upload > p {
    color: white;
    font: 10px 'BPG Mrgvlovani Caps 2010';
    line-height: 13px;
    margin: 0;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.file-item {
    background: var(--primary-color);
    border-radius: 5px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    width: 100%;
    height: 62px;
}

.delete-file {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 13px;
    height: 15px;
    transition: all 0.3s ease;
}

.delete-file {
    background-image: url('../images/trash.svg');
    transition: all 0.3s ease;
}

.delete-file:hover {
    background-image: url('../images/trash1.svg');
}

canvas {
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    width: 100%;
    height: 200px;
    margin-bottom: 40px;
}

#clearButton {
    background: black;
    border: none;
    border-radius: 5px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: 333px;
    height: 45px;
    padding: 0 30px;
    margin-bottom: 80px;
    transition: all 0.3s ease;
}

#clearButton:hover {
    background: #242424;
}

.create-contract-btn {
    display: flex;
    justify-content: center;
}

.create-contract-btn button {
    width: 333px;
}

.test-mode {
    background: var(--hover-color);
    color: white;
    font: 16px "BPG Mrgvlovani Caps 2010";
    line-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    height: 50px;
}

.contract-buttons {
    display: flex;
    gap: 14px;
}

.contract-buttons button {
    background: #F1F1F1;
    border: none;
    border-radius: 40px;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    padding: 18px 28px;
    position: relative;
}

.contract-buttons button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;
    width: 14px; 
    height: 1px;
    background: #D1D1D1;
    z-index: 1;
}

.contract-buttons button:last-child:after {
    content: none;
}

.contract-buttons button.active {
    background: #369CE8;
    color: white;
}

.contract-price, .pay-price {
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px 70px;
}

.contract-price > p:first-child,
.pay-price > p:first-child {
    font: 20px "Gilroy GEO";
    line-height: 26px;
    margin-bottom: 50px;
}

.contract-price > p:nth-child(2) {
    font: 18px 'BPG Mrgvlovani';
    line-height: 25px;
    max-width: 453px;
    text-align: center;
    margin-bottom: 89px;
}

.contract-price > p:nth-child(2) > span {
    color: #369CE8;
    font: 26px 'Gilroy GEO';
    line-height: 33px;
}

.contract-price button {
    background: #F6F6F6;
    border: none;
    border-radius: 5px;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 220px;
    height: 45px;
    transition: all 0.3s ease;
}

.contract-price button:hover {
    background: var(--hover-color);
    color: white;
}

.pay-price > p:first-child {
    margin-bottom: 16px;
}

.pay-price > p:nth-child(2) {
    color: #302E2F;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 75px
}

.terminals {
    display: flex;
    justify-content: space-between;
    height: 93px;
}

.terminals > div {
    flex: 1 1 auto;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16.5px;
}

.terminal-tbc + .terminal-bog {
    border-left: solid 1px #D8D8D8;
}
/*
.terminal-tbc {
    padding-right: 60px;
}*/

.terminal-bog {
    padding-left: 60px;
}

.terminals button {
    border: none;
    border-radius: 5px;
    color: white;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 250px;
    height: 40px;
}

.terminal-tbc button:first-of-type {
    background: #00ADF1;
}

.terminal-bog button:last-of-type {
    background: #FD671A;
}

.terminals button img {
    margin-right: 8px;
}

.terminal-tbc div, 
.terminal-bog div {
    display: flex;
    align-items: center;
    gap: 7px;
}

#borrower_physical_IDnum { width: calc(100% - 100px); }
.check-id-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: white;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-left: 10px;
    width: 90px;
    height: 50px;
    transition: all 0.3s ease;
}

.check-id-btn:hover {
    background: #369CE8;
}

.alert-success, .alert-danger {
    font: 12px 'BPG Mrgvlovani' !important;
    line-height: 19px !important;
    text-align: center;
    padding: 10px !important;
}

.alert-success ul, .alert-danger ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contract-lang {
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 30px;
}

.contract-langs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

.contract-langs button {
    background: #F1F1F1;
    border: none;
    border-radius: 3px;
    color: grey;
    padding: 5px;
}

.contract-langs button.active { background: var(--light-blue); color: white; }

.check1 {
    border: 1px solid var(--primary-color);
    background: transparent;
    border-radius: 3px;
    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;
}
.check1:checked { background: var(--primary-color); }

.check1: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);
}

.contract-form .check1 {
    border-color: var(--primary-color);
    width: 20px !important;
    height: 20px !important;
    padding-left: unset !important;
}

.contract-form .form-check {
    padding: 0 !important;
    margin: 0 !important;
    min-height: unset !important;
}

.eng-input, .rus-input {
    display: none;
}

.contract-warning {
    color: rgb(190, 9, 9);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 10px;
}