.header-menu-overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.20);
    top: 0;
    display: none;
    z-index: 6;
}
body.ov-hid {
    overflow: hidden;
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #1F609C;
    padding-bottom: 12px;
    padding-top: 14px;
}
.header-top .left-side {
    display: flex;
    align-items: center;
    padding-left: 50px;
}
.header-top .left-side #burger {
    cursor: pointer;
}
.header-top .left-side .line {
    margin: 0 40px 0 21px;
}
.header-top .left-side a {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #333333;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
}
.header-top .right-side {
    display: flex;
    align-items: center;
    padding-right: 50px;
}
.header-top .right-side .line {
    margin-left: 30px;
    margin-right: 20px;
}
.header-top .right-side .socials {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-top .right-side .socials a {
    font-size: 0;
}
.header-top .right-side .for-mobile {
    display: none;
}
.header-top .right-side .langs {
    font-size: 12px;
    color: #1F609C;
    font-weight: 700;
}
.all-langs {
    border-radius: 12px;
    background:white;
    box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.25);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 39px;
    right: 3%;
    display: none;
    padding: 2px;
}
.all-langs a {
    font-size: 13px;
    line-height: 24px;
    color: #999999;
    font-weight: 400;
    cursor: pointer;
    padding: 2px 8px;

}
.all-langs a:hover {
    background: #F2F2F2;
    border-radius: 12px;
}
.langs p {
    cursor: pointer;
}
.langs .active-lang  {
    font-size: 13px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F609C;
    font-family: MontserratArm-Medium,'Montserrat', sans-serif;
}
.all-langs.show {
    display: flex;
}
.header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 50px 16px;

}
.online-app-btn {
    padding: 13px 16px;
    border-radius: 52px;
    background-color: #1F609C;
    color: white;
    font-size: 15px;
    line-height: 18px;
}
.header-menu {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #1F609C;
    padding-top: 14px;
    padding-bottom: 50px;
    width: 100%;
    z-index: 22;
    display: none;
}
.close-section {
    border-bottom: 1px solid white;
    padding-left: 50px;
    padding-bottom: 15px;
}
.close-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    cursor: pointer;
    max-width: max-content;
}
.close-section span {
    font-size: 18px;
    line-height: 22px;
    color: white;
}
.logo-section {
    padding-left: 50px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid white;
}
.menu-section {
    padding-top: 44px;
    padding-bottom: 40px;
    border-bottom: 1px solid white;
}
.menu-section nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}
.menu-section nav ul li a {
    font-size: 20px;
    color: white;
    font-family: MontserratArm-Medium;
    font-weight: 500;
    line-height: 24px;
}
.categories-tabs {
    background-color: #EA4B37;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tabs-container{
    max-width: 1290px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    position: relative;
    overflow: hidden;
}
.tab-wrapper-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 20px;
    cursor: pointer;
}
.tab-wrapper-item:first-child {
    position: relative;
}
.tab-wrapper-item:first-child::after {
    content: '';
    width: 50px;
    background-color: white;
    height: 1px;
    transform: rotate(90deg);
    position: absolute;
    right: -25px;
}
.tab-wrapper-item:nth-child(2)::before {
    content: none;
}
.tab-wrapper-item::before {
    content: '';
    width: 50px;
    background-color: white;
    height: 1px;
    transform: rotate(90deg);
    position: absolute;
    left: -25px;
}
.tab-wrapper-item:last-child::after {
    content: '';
    width: 50px;
    background-color: white;
    height: 1px;
    transform: rotate(90deg);
    position: absolute;
    right: -25px;
}
.tab-wrapper-item-desc {
    display: flex;
    align-items: center;
    column-gap: 12px;
}
.tab-wrapper-item-desc img {
    max-width: 40px;
    max-height: 40px;
}
.tab-wrapper-item-desc span {
    font-size: 18px;
    line-height: 22px;
    color: white;
    font-family: MontserratArm-Medium;
    font-weight: 500;
}
.tab-wrapper-item.active {
    background-color: #1F609C;
}
.tab-wrapper-item.active::before {
    content: none;
}
.tab-wrapper-item.active:last-child::after{
    content: none;
}
.tab-wrapper-item.active:first-child::after{
    content: none;
}
.tab-wrapper-item.no-before:before{
    content: none;
}
.tab-wrapper-item.no-after:after{
    content: none;
}
.category-content {
    min-height: 456px;
    background-color: #1F609C;
    border-radius: 0px 0px 30px 30px;
    box-shadow: 0px 3px 32px -12px rgba(0, 0, 0, 0.25);
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 999999999999;
    display: none;
}
.category-content.show {
    display: block;
}

/*footer*/
footer {
    background-color: #F2F2F2;
    padding-top: 60px;
    margin-top: 12px;
}
footer .wrapper {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 166px;
}
footer .wrapper ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    display: flex;
}
.estate-wrapper.about-page .item a:hover {
    color: #EA4B37;
}
footer .wrapper ul li {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}
footer .wrapper ul li svg {
    width: 16px;
}
footer .wrapper ul li a {
    font-family: MontserratArm-Medium;
    font-weight: 500;
    color: #565656;
    line-height: 19px;
    width: 100%;
    word-break: break-word;
    font-size: 16px;
}
footer .wrapper ul li a:hover {
    color: #EA4B37;
}
footer .companies {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 26px;
}
footer .companies a {
    font-size: 0;
}
footer .footer-logo {
    margin-bottom: 26px;
    margin-left: auto;
    display: block;
}
footer .copyright {
    background-color: #1F609C;
    padding: 50px 0 34px;
    margin-top: 60px;
    border-radius: 0 46px 0 0;
}
footer .copyright p {
    color: white;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 26px;
    margin-top: 0;
}
footer .copyright p span {
    font-family: MontserratArm-Medium;
    font-weight: 500;
    display: block;
}
footer .powered-by {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .powered-by span {
    font-size: 11px;
    line-height: 13px;
    font-weight: 500;
    font-family: MontserratArm-Medium;
    color: white;
}
.controled-by {
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    font-family: MontserratArm-Medium;
    margin: 50px 0 60px 0;
}

.title-section {
    background-image: url("../images/title-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    border-bottom-left-radius: 38px;
    min-height: 199px;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 30px;

}

/*news*/
.news-wrapper {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 20px;
}

.news-wrapper .news-item img {
    height: 269px;
    width: 100%;
    border-radius: 18px 18px 0 0 ;
    object-fit: cover;
}
.news-item-img {
    font-size: 0;
}
.news-item-desc {
    border-radius: 0 0 0 18px;
    border:1px solid #D8D8D8;
    border-top: none;
    padding: 20px;
}
.news-wrapper a {
    border-radius: 50px;
    border: 1px solid #EA4B37;
    padding: 13px 32px;
    color: #EA4B37;
    font-size: 15px;
    line-height: 18px;
    font-family: MontserratArm-Medium;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    transition: .5s;
}
.news-wrapper a svg path{
    transition: .5s;
}
.news-wrapper a:hover {
    background-color: #EA4B37;
    color: white;
    transition: .5s;
}
.news-wrapper a:hover svg path {
    fill: white;
    transition: .5s;
}
.see-all-news {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.see-all-news a {
    margin-top: 0;
    border-radius: 50px;
    border: 1px solid #EA4B37;
    padding: 13px 32px;
    color: #EA4B37;
    font-size: 15px;
    line-height: 18px;
    font-family: MontserratArm-Medium;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: .5s;
}
.see-all-news a svg path {
    transition: .5s;
}
.see-all-news a:hover {
    background-color: #EA4B37;
    color: white;
    transition: .5s;
}
.see-all-news a:hover svg path {
    fill: white;
    transition: .5s;
}
.news-item-desc p {
    font-size: 18px;
    color: #1F609C;
    font-weight: 600;
    font-family: MontserratArm-SemiBold;
    margin-top: 39px;
    display: -webkit-box;
    overflow: hidden;
    max-height: 70px;
    text-overflow: ellipsis;
    transition: all 0.2s;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-item-desc span {
    color: #A3A3A3;
    font-size: 16px;
}



/*news single*/
.attachment__caption {
    color: black;
    /* padding-left: 25px; */
}

.file_attachment_change{
    display: flex;
    pointer-events: none;
    align-items: center;
    gap: 25px;
}

span.date {
    color: #1B1B1B;
    font-size: 14px;
    line-height: 20px;
}
.news-single h2 {
    margin-bottom: 12px;
}
.news-single-content {
    margin-top: 32px;
}
.news-single-content img {
    width: 100%;
    border-radius: 0 38px 0 38px;
    height: 444px;
    margin-bottom: 20px;
    object-fit: cover;
    pointer-events: none;
}
.news-single-content p {
    line-height: 24px;
    margin-bottom: 20px;
}


.other-posts {
    margin-top: 50px;
}
.other-posts h2 {
    color: #1F609C;
    margin-bottom: 32px;
}
.share-post {
    display: flex;
    align-items: center;
}

.share-post .socials {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-left: 20px;
}
.share-post .socials a {
    font-size: 0;
    border: 1px solid #F2F2F2;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.share-post .socials a:hover {
    background-color: #EA4B37;
    border: none;
}
.share-post .socials a:hover svg path  {
    fill: white
}
.news-single hr {
    border: 1px solid  #D8D8D8;
    margin-top: 50px;
}
.news-item-image {
    font-size: 0;
}
.updated {
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 120px;
}
.updated p {
    font-size: 14px;
    line-height: 18px;
    color: #1F609C;
}
.news-single-page footer {
    margin-top: 12px;
}
.news-single .other-posts {
    margin-bottom: 120px;
}



/*real estate*/
.estate-wrapper {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.estate-wrapper.about-page .item a{
    padding-left: 0;
}
.estate-wrapper .item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
    border-left: 9px solid #EA4B37;
    cursor: pointer;
}
.estate-inner-desc {
    padding-left: 32px;
}
.estate-inner-desc span{
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 20px;
    color: #1B1B1B;
    display: inline-block;
}
.estate-inner-desc h2 {
    color: #1F609C;
    margin-bottom: 12px;
    line-height: 31px;
    font-size: 22px;
}
.estate-inner-desc p {
    color: black;
    line-height: 24px;
    font-family: MontserratArm-Medium;
    font-weight: 500;
}
.estate-wrapper .item a {
    color: #1F609C;
    font-size: 22px;
    padding-left: 32px;
    line-height: 31px;
    font-weight: 500;
    font-family: MontserratArm-Medium;
    max-width: 85%;
    width: 100%;
}
.estate-wrapper .item a:hover {
    color: #EA4B37;
}
/*404*/
.not-found-page {
    max-width: 564px;
    width: 100%;
    margin:100px auto 120px;
}
.not-found-page img {
    width: 100%;
    height: 219px;
    margin-bottom: 50px;
    object-fit: contain;
}
.not-found-page p {
    color: #EA4B37;
    font-size: 24px;
    line-height: 32px;
    font-family: MontserratArm-Medium;
    font-weight: 500;
    text-align: center;
}
.link-to-home {
    display: flex;
    justify-content: center;
}
.link-to-home a{
    display: flex;
    justify-content: center;
}
.not-found-page a {
    border-radius: 50px;
    padding: 13px 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #EA4B37;
    border: 1px solid #EA4B37;
    margin: 32px auto 0;
    transition: .2s;
}
.link-to-home a:hover {
    color: white;
    background: #EA4B37;;
    transition: .2s;
}
.link-to-home a:hover svg path {
    fill: white;
}
/*contact*/



.contact h2 {
    margin-bottom: 32px;
}
.contact-wrapper {
    display: flex;
    gap: 32px;
}
.contact-informations {
    max-width: 352px;
    width: 100%;
}
.contact-form {
    max-width: 100%;
    width: 100%;
}

.alert-danger {
    color: #db2a27;
    /*background-color: #f2dede;*/
    /*padding: 12px;*/
    margin-top: 5px;
    font-size: 14px;
    /*border: 1px solid #ebccd1;*/
    /*border-radius: 99px;*/
}

.alert-danger p {
    color: #a94442;
    font-size: 16px;
}
.alert-success {
    color: #27db30;
    margin-top: 5px;
    font-size: 14px;
}

.alert-success p {
    color: #27db30;
    font-size: 16px;
}
.contact-form button{
   cursor: pointer;
}
.column {
    display: flex;
    gap: 32px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.row.submit {
    align-self: center;
}
.row.submit .passive  svg path {
    fill:#A3A3A3;
}
.row.submit .active  svg path {
    fill: #EA4B37;
}
.row.submit .active:hover {
    color: white;
    background-color: #EA4B37;
}
.row.submit .active:hover svg path {
    fill:white
}
.contact-informations img.contact-info-big-image {
    width: 100%;
    height: 206px;
    border-radius: 22px;
}
.info-block {
    border-radius: 20px;
    background:white;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.11);
    display: flex;
    flex-direction: column;

    padding: 10px 20px 30px;
    margin-top: 42px;
}
.info-block-item:not(:last-child) {
    margin-bottom: 20px;
}
.info-block-item-inner {
    display: flex;
    gap: 14px;
}
.info-block-item-inner span {
    line-height: 23px;
    color: #1B1B1B;
}
.info-block-item-inner .phones {
    display: flex;
    flex-direction: column;
}
.info-block-item-inner .phones a {
    line-height: 26px;
}
.info-block-item-inner svg {
    width: 24px;
}

.working-hours {
    max-width: 248px;
    width: 100%;
}
.working-hours p {
    line-height: 23px;
    color: #1B1B1B;
}
.working-hours p:first-child {
    margin-bottom: 10px;
}
.info-block .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.info-block .socials a {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    border: 1px solid #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
/*.info-block .socials img {*/
/*    width:unset;*/
/*    height: unset;*/
/*    object-fit: contain;*/
/*}*/

#map {
    margin-top: 50px;
}

#map iframe {
    width: 100%;
    height: 358px;
    border-radius: 28px;
}


/*careers*/
.careers-wrapper {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 20px;
}
.career-item {

    display: flex;
    position: relative;
    border-radius: 22px 22px 0 ;
}
.careers-short-desc {
    line-height: 24px;
    margin-bottom: 50px;

}
.career-item-image {
    font-size: 0;
}
.career-item-image img {
    height: 228px;
    width: 228px;
    object-fit: cover;
    border-radius: 22px 0 22px 0;
}
.career-item-desc {
    padding: 20px;
    background-color: white;
    position: absolute;
    width: 64%;
    right: 0;
    top: 0;
    height: 100%;
    border-top-right-radius: 22px;
    display: flex;
    flex-direction: column;
    border-radius: 22px 22px 0 22px;
    border: 1px solid #999999;
}
.career-item-desc .calendar {
    flex: 1;
    display: flex;
    margin-top: 20px;
    gap: 12px;
}
.career-item-desc .calendar span {
    color: #1E1E1E;
    font-size: 16px;
    line-height: 24px;
}
.see-all-careers {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.see-all-careers a {
    padding: 8px 24px;
    border: 1px solid #EA4B37;
    border-radius: 50px;
    font-family: MontserratArm-Medium;
    font-weight: 500;
    color: #EA4B37;
    display: inline-flex;
    align-items: center;
    align-self: flex-end;
    gap: 12px;
    transition: .5s;
}
.see-all-careers a:hover {
    color: white;
    background-color: #EA4B37;
    transition: .5s;
}
.see-all-careers a:hover svg path {
    fill: white;
    transition: .5s;
}
.career-item-desc a {
    padding: 8px 24px;
    border: 1px solid #EA4B37;
    border-radius: 50px;
    font-family: MontserratArm-Medium;
    font-weight: 500;
    color: #EA4B37;
    display: inline-flex;
    align-items: center;
    align-self: flex-end;
    gap: 12px;
    transition: .5s;
}
.career-item-desc a svg path {
    transition: .5s;
}
.career-item-desc a:hover {
    color: white;
    background-color: #EA4B37;
    transition: .5s;
}
.career-item-desc a:hover svg path {
    fill: white;
    transition: .5s;
}
.career-single-wrapper {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

del{
    text-decoration: unset;
    font-size: 24px;
}

.careers-single .application-procedure ul, .careers-single .application-procedure ol {
    padding-left: 30px;
}

.job-duties ul,.job-duties ol {
    padding-left: 30px;
}

.careers-single .single-desc ul {
    padding-left: 30px;
}

blockquote figure {
    padding-bottom: 20px ;
}

.job-duties li {
    line-height: 28px;
}
.careers-single .job-duties *{
    line-height: 28px;
}
.careers-single .application-procedure * {
    line-height: 28px;
}
.careers-single .single-desc * {
    line-height: 28px;
}

.careers-single h1 {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px !important;
    margin-bottom: 20px;
}

.application-procedure strong {
    line-height: 28px;
}

.career-single-wrapper .single-desc li {
    line-height: 28px;
}
.single-image {
    max-width: 598px;
    width: 100%;
    font-size: 0;
}
.careers-single .single-desc {
    max-width: 58%;
}
.single-image img{
    border-radius: 22px;
    height: 598px;
    width: 100%;
    object-fit: cover;
}
.single-desc span.apply-deadline {
    margin-bottom: 32px;
    display: block;
    color: #1B1B1B;
    line-height: 23px;
    font-family: MontserratArm-Medium;
    font-weight: 500;
}
.job-desc {
    padding-left: 25px;
    margin-top: 20px;
}

.job-desc li {
    list-style-type: disc !important;
    font-size: 16px;
    line-height: 28px;
}

.application-procedure {
    margin-top: 32px;
}
.application-procedure h2 {
    margin-bottom: 20px;
}
.application-procedure p {
    color: black;
    line-height: 28px;
}
.apply-to-work {
    margin-top: 50px;
}
.attach-file {
    display: flex;
    align-items: center;
    gap: 24px;
}
.attach-file label{
    padding: 11px 32px;
    border: 1px solid #1F609C;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 79px;
    cursor: pointer;
}
.job-form textarea {
    width: 100%;
}
.job-form {
    border-radius: 25px;
    border: 1px solid #999999;
    padding: 40px 0;
    margin-top: 20px;
}
.files-info {
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
    font-family: MontserratArm-Regular;
    color: #A3A3A3 !important;
}
#filesError {
    display: none;
    color: #EA4B37;
}

.attach-file span {
    line-height: 19px;
    font-weight: 500;
    font-family: MontserratArm-Medium;
    color: #1F609C;
}

#fileList {
    display: none;
    flex-direction: column;
    gap: 10px;
}
#fileList .uploaded-file {
    border: 1px solid #A3A3A3;
    border-radius: 40px;
    height: 44px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    text-overflow: ellipsis;
    transition: all 0.2s;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.uploaded-file .remove-file-btn {
    font-size: 24px;
    cursor: pointer;
}
#fileList .uploaded-file span:not(.remove-file-btn) {
    text-overflow:ellipsis;
    white-space: nowrap;
    overflow-x: hidden;
    display: inline-block;
    width: 86%;
}

#fileList .uploaded-file span:last-child {
    text-align: right;
}

.accordion-title {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    cursor:pointer;
    max-width: 1021px;
    width: 100%;
}
.accordion-title h2 {
    color: #1F609C !important;
    font-size: 22px !important;
    padding-left: 32px;
}

.accordion-content{
    padding: 15px 0 0 40px;
    display: none;
    max-width: 1328px;
    width: 100%;
}
.accordion-title  {
    border-left: 9px solid #EA4B37;
}
.accordion {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.accordion-title svg {
    min-width: 24px;
    margin-top: 10px;
}
.accordion-title svg.rotate {
    transform:rotate(180deg);
}
/*about*/
.about ul {
    max-width: 1076px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about .container a:hover{
    color: #EA4B37 !important;
}

.about .container {
    line-height: 24px;
}

.about ul li {
    position: relative;
}
.about ul li span {
    line-height: 24px;
}
/*.about ul li::before{*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 8px;*/
/*    height: 8px;*/
/*    border-radius: 100%;*/
/*    background-color: #1F609C;*/
/*    left: -15px;*/
/*    top: 5px;*/
/*}*/



/*service*/
.service-wrapper {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 20px;
}
.service-item {
    border: 1px solid #A3A3A3;
    border-radius: 22px;
    min-height: 260px;
    position: relative;
}
.service-item-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #A3A3A3;
}
.service-item-heading-img {
    min-width: 55px;
    height: 55px;
    border-radius: 100%;
    background: #1F609C;
    display: flex;
    align-items: center;
}
.service-item-heading img {
    width: 38px;
    height: 38px;
    border-radius: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
}
.service-item-heading span {
    font-family: MontserratArm-Medium;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #1F609C;
}
.service-item a .service-item-heading:hover span {
    color: #EA4B37;
}
.service-item-heading:hover .service-item-heading-img {
    background: #EA4B37;
}
.service-item-heading:hover .service-item-heading-img img {
    filter: brightness(0) invert(1);
}
.service-item-body {
    padding: 20px 20px 30px;
    display: flex;
    flex-direction: column;
}
.service-item-body p {
    line-height: 24px;
    color: #1B1B1B;
    display: -webkit-box;
    overflow: hidden;
    max-height: 102px;
    text-overflow: ellipsis;
    transition: all 0.2s;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.service-item-body .credit-from-to {
    flex-grow: 1;
}

.service-item-body .credit-from-to {
color:red;
font-size: 18px;
}

.service-item .service-item-heading:hover span{
    color: #1F609C;
}

.service-item-body .credit-from-to h5 {
    font-size: 18px;
    line-height: 26px;
    color: #EA4B37;
}
.service-item-body a {
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 15px;
    line-height: 18px;
    border: 1px solid #EA4B37;
    color: #EA4B37;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: white;
    transition: .5s;
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-weight: 500;
    font-family: MontserratArm-Medium;
}
.service-item-body a:hover {
    background-color:#EA4B37;
    transition: .5s;
    color: white;
}
.service-item-body a svg path {
    transition: .5s;
}
.service-item-body a:hover svg path {
    fill: white;
    transition: .5s;
}

/*home service*/
.home-services {
    /*margin: 115px 0;*/
}
.home-service-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}
.home-service-item {
    height: 283px;
    border-radius: 22px;
    justify-content: center;
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: column;
    gap: 15px;
    cursor: pointer;
}
.home-service-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto;
}
.home-service-item:hover {
    background: #EA4B37;
    color: white;
}
.home-service-item:hover img{
    filter: brightness(0) invert(1);
}
.home-service-item:hover  span{
    color: white;
}

.home-service-item span{
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: #1F609C;
    font-family: MontserratArm-Medium;
}

.home-service-wrapper a{
    display: flex;
    max-width: 480px;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.tabs{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.tabs li{
    display: inline-block;
    margin:0;
    padding:20px 65px;
    cursor: pointer;
    font-size:20px;
    line-height:28px;
    color:#1F609C;
    font-weight: 500;
    font-family:MontserratArm-Medium;
}
.tabs li.current{
    color: #EA4B37;
    border-radius: 12px 12px 0px 0px;
    background: white;
    box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.25);
    position: relative;
}
.tabs li.current::before {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 100%;
    height: 6px;
    background: #ffffff;
    z-index: 0;
    left: 0;
}
.tab-content{
    display: none;
    background-color: white;
    box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.25);
    padding: 40px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.tab-content.current{
    display: inherit;
}

.about-credit-crads-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4,minmax(0,1fr));
}
.about-credit-crads-item {
    padding: 30px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    border: 1px solid #A3A3A3;
    border-radius: 12px;
}
.about-credit-crads-item h4 {
    font-size: 18px;
    font-family: MontserratArm-Medium;
    font-weight: 500;
    color: #1F609C;
    line-height: 26px;
    margin: 20px 0 25px;
    text-align: center;


}
.about-credit-crads-item {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #EA4B37;
}
.about-credit-crads-item p {
    color: #EA4B37 !important;
    font-weight: 600;
    font-family: MontserratArm-SemiBold;
    text-align: center;
    padding: 0 12px;
}
.about-credit-description {
    font-size: 16px;
    line-height: 24px;
    margin-top: 32px;
    color: #1B1B1B;
}
.service-form form {
    max-width: 1102px;
    width: 100%;
    margin: auto;
}
.service-form form input {
    width: 100%;
}

.service-single-form {
    margin-top: 50px;
    padding: 40px;
    border-radius: 12px;
    background: white;
    box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.25);
}

.form-title {
    margin-bottom: 32px;
}
.form-title h2 {
    margin-bottom: 10px;
}
.agree-for-policy {
    display: flex;
    cursor: pointer;
    gap: 24px;
    position: relative;
}
.agree-for-policy .agree-input {
    min-width: 24px;
    height: 24px;
    border: 2px solid #A3A3A3;
    display: block;
    width: unset;
    margin-right: 20px;
}
.agree-for-policy a {
    max-width: 1016px;
    width: 100%;
    line-height: 24px;
    color: #3F3F3F;
    padding-left: 20px;
}

/*.agree-for-policy .agree-input:checked {*/
/*    background-image: url("/images/new-check.png");*/
/*    width: 24px;*/
/*    height: 24px;*/
/*    border: none;*/
/*}*/
.news-single-content div a {
    color: #1F609C !important;

}
.about div a {
    color: #1F609C !important;

}
.news-single-content ol {
    padding-left: 23px;
}
.about ol {
    padding-left: 23px;
}
.news-single-content ul {
    padding-left: 23px;
}
.about ul {
    padding-left: 23px;
}
table {
    width: 100%;
    border-collapse: separate;
    border-radius: 12px;
    border: 1px solid #A3A3A3;
    border-spacing: 0;
}
table td {
    border: 1px solid #A3A3A3;
    padding: 40px;
    font-size: 16px;
    line-height: 24px;
    color: #1B1B1B;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}
table tbody tr:last-child td {
    border-bottom: 0;
}
/*table td:last-child {*/
/*    border-bottom: 0;*/
/*}*/
td.table-title {
    font-size: 18px;
    line-height: 26px;
    color: #1F609C;
    font-family: MontserratArm-Medium;
    font-weight: 500;
    vertical-align: top;
    border-right: 1px solid #A3A3A3;
}
.additional-documents-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.additional-documents-item {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
}
.additional-documents-item a {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
}
.additional-documents-item span {
    color: #1F609C;
    font-size: 18px;
    line-height: 26px;
    font-family: MontserratArm-Medium;
    font-weight: 500;
    max-width: 80%;
    width: 100%;
}


/*credit calculator*/
.calculated-items {
    width: 100%;
}
.calculated-items-row:first-child {
    margin-bottom: 32px;
}
.select-par {
    width: 100%;
    position: relative;
}
.select-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #A3A3A3;
    border-radius: 99px;
    padding: 0 15px;
    min-height: 48px;
    cursor: pointer;
}
.select-field.disabled, .select-field.disabled:hover {
    background-color: #f5f5f5;
    cursor: not-allowed;
}
.select-field.disabled input {
    pointer-events: none;
}
.select-title {
    font-family: MontserratArm-Medium;
    font-weight: 500;
    line-height: 20px;
    font-size: 16px;
    margin-bottom: 8px;
    color: black;
    display: inline-block;
}
.calculated-items-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.amount-money {
    font-size: 18px;
    line-height: 23px;
    color: #1F609C;
}
.credit-type .select-field {
    position: relative;
}
.credit-type .select-field input[type=number] {
    border: none;
    background: transparent;
    text-align: right;
    padding-right: 5px;
    color: #1F609C;
    height: 48px;
}
.credit-type .select-field input::-webkit-outer-spin-button,
.credit-type .select-field input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.calculator-form form input::-webkit-outer-spin-button,
.calculator-form form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.calculator-form form input {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}
/* Firefox */
.credit-type .select-field input[type=number] {
    -moz-appearance: textfield;
}
.input-placeholder {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    line-height: 17px;
    width: 70%;
}
.amount-money-text {
    font-size: 18px;
    line-height: 22px;
    color: #1F609C;
    width: 100%;
    border: none;
    padding-left: 0;
    background: transparent;
    height: 48px;
    text-align: right;
    transition: .5s;

}

.amount-money-text:hover {
    background: transparent;
    transition: .5s;
}
.deadline-text {
    font-size: 14px;
    line-height: 17px;
    color: #1B1B1B;
}
.deadline {
    font-size: 18px;
    line-height: 22px;
    color: #1F609C;
}
.calculator-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}
.calculated-result {
    border: 1px solid #A3A3A3;
    border-radius: 12px;
    min-height: 140px;
    height: 100%;
    padding: 20px;
    max-width: 384px;
    width: 100%;
    display: flex;
    align-items: center;
}
.calculated-result ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.calculated-result ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calculated-result ul li p {
    font-weight: 500;
    font-family: MontserratArm-Medium;
    line-height: 20px;
    color: black;
    margin-right: 10px;
    word-break: break-word;
    max-width: 55%;
}
.calculated-result ul li span {
    font-weight: 500;
    font-family: MontserratArm-Medium;
    line-height: 20px;
    color: #1F609C;
    white-space: nowrap;
}
.calculated-result ul li .monthly-fee-add-text {
    white-space: normal;
    color: inherit;
}
.details-btn {
    display: flex;
    justify-content: center;
    margin: 50px auto 32px;
    max-width: fit-content;
}
.details-btn a {
    line-height: 20px;
    padding: 14px 26px;
    border-radius: 99px;
    border: 1px solid #EA4B37;
    color: #EA4B37;
    display: flex !important;
    align-items: center;
    gap: 12px;
}
.details-btn a:hover {
    background: #EA4B37;
    color: white;
}
.details-btn a:hover svg path {
    fill:white
}
.calculator-form form input {
    border-color: #1F609C;
}

.calculator-form .alert-danger,.calculator-form .alert-success{
    margin-bottom: 20px;
}

.service-single-form .alert-danger,.service-single-form .alert-success{
    margin-bottom: 20px;
}

.country-select {
    position: relative;
}
.country-select-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0 16px;
    height: 48px;
    border-radius: 25px;
    border: 1px solid #A3A3A3;
    cursor: pointer;
}
.country-select-field:hover {
    background: rgba(163, 163, 163, 0.15);
}
.select-field:hover {
    background: rgba(163, 163, 163, 0.15);

}
.country-select-field svg.rotate {
    transform: rotate(180deg);
}
.country-select-field.border {
    border-bottom: 0;
    border-radius: 25px 25px 0 0;
}
.country-select-field  span{
    font-size: 14px;
    line-height: 17px;
    color: #1B1B1B;
}
.currency-data {
    font-size: 14px;
    line-height: 17px;
}
/* .topic-data {
    font-size: 14px;
    line-height: 17px;
    color: #A3A3A3;
} */
.currency .options-wrapper {
    position: absolute;
    background: white;
    width: 100%;
    border: 1px solid #A3A3A3;
    border-radius:0 0 25px 25px;
    z-index: 1;
    padding-bottom: 20px;
}
.currency .options-wrapper ul li {
    border-bottom: 1px solid #D9D9D9;
    font-size: 16px;
    line-height: 19px;
    color: #1B1B1B;
    padding: 16px;
    cursor: pointer;
}
.currency .options-wrapper ul li:hover {
    background: rgba(163, 163, 163, 0.15);

}

.topic-select-field{
    position: relative;
}

.currency .topic-select-list {
    display: none;
    position: absolute;
    background: white;
    width: 100%;
    border: 1px solid #A3A3A3;
    border-radius:0 0 25px 25px;
    z-index: 1;
    padding-bottom: 20px;
}
.currency .topic-select-list ul li {
    border-bottom: 1px solid #D9D9D9;
    font-size: 16px;
    line-height: 19px;
    color: #1B1B1B;
    padding: 16px;
    cursor: pointer;
}
.currency .topic-select-list ul li:hover {
    background: rgba(163, 163, 163, 0.15);

}

.topic-data-value{
    display: none;
}

.select-field.border {
    border-radius: 25px 25px 0 0 ;
    /* border-bottom: 0; */
}
.select-field.border svg.rotate {
    transform: rotate(-180deg);
}



.detail-select-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:16px;
    border-radius: 30px;
    border: 1px solid #1F609C;
    cursor: pointer;
}
.detail-list li:last-child {
    border-bottom: 0;
}
.detail-select-field svg.rotate {
    transform: rotate(180deg);
}
.detail-select-field.border {
    border-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 16px;
}
.detail-select-field span{
    font-size: 16px;
    line-height: 19px;
    color: #1B1B1B;
}

.select-field svg.rotate {
    transform:rotate(180deg);
}





.deatils-select {
    max-width: 481px;
    width: 100%;
    margin:0 auto 32px;
    position: relative;
}
.currency-toggle-wrapper {
    list-style: none;
}
.country-list {
    display: none;
    border: 1px solid #A3A3A3;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    position: absolute;
    background: white;
    z-index: 2;
    width: 100%;
    padding-bottom: 20px;
    list-style: none;
}
.detail-list {
    display: none;
    border: 1px solid #1F609C;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    position: absolute;
    background: white;
    z-index: 2;
    width: 100%;
}
.country-list li {
    border-bottom: 1px solid #D9D9D9;
    font-size: 16px;
    line-height: 19px;
    color: #1B1B1B;
    padding: 16px;
    cursor: pointer;
}
.country-list li:hover {
    background: rgba(163, 163, 163, 0.15);
}
.detail-list li {
    border-bottom: 1px solid #1F609C;
    font-size: 16px;
    line-height: 19px;
    color: #1B1B1B;
    padding: 16px;
    cursor: pointer;
}


.info-content{
    position: relative;
    height: auto;
    border: 1px solid #A3A3A3;
    border-radius: 25px;
    padding-left: 16px;
    width: 100%;
}

.calc-info-content{
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 15px 15px;
}

/*popups*/
.coockie-popup {
    border-radius: 12px;
    background:white;
    box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.25);
    max-width: 822px;
    position: fixed;
    bottom: 50px;
    left: 50px;
    width: 100%;
    z-index: 9999999999;
}
.coockie-popup .popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #A3A3A3;
}
.coockie-popup .popup-header svg {
    cursor: pointer;
}
.coockie-popup .popup-header h2 {
    color: #1F609C;
}
.coockie-popup .popup-body {
    max-width: 742px;
    width: 100%;
    margin: 20px auto 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.coockie-popup .popup-body span {
    border: 1px solid #EA4B37;
    padding: 13px 31px;
    color:  #EA4B37;
    border-radius: 50px;
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-left: auto;
}
.coockie-popup .popup-body span:hover {
    background: #EA4B37;
    color: white;
}
.coockie-popup .popup-body span:hover svg path {
    fill: white;
}
.coockie-popup .popup-body p {
    color: black;
}
.popup-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid #A3A3A3;
    margin-bottom: 50px;
}
.popup-desc  div {
    padding: 0 10px;
    font-size: 16px;
    line-height: 24px;
    color: #1B1B1B;
    text-align: center;
}
.overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.30);
    left: 0;
    top: 0;
    z-index: 999999;
}
.popup {
    max-width: 822px;
    background: white;
    position: absolute;
    padding: 0 0 50px;
    z-index: 99999999999;
    left: 50%;
    top: 50%;
    border-radius: 22px;
    width: 100%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.popup h2 {
    color: #1F609C;
    font-family: MontserratArm-Medium;
    font-weight: 500;
}
.popup h3 {
    font-size: 24px;
    line-height: 32px;
    color: black;
    font-family: MontserratArm-Medium;
    font-weight: 500;
}
.popup p {
    max-width: 742px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    color: #1B1B1B;
    text-align: center;
    margin-top: 32px;
}
.popup a {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 22px;
    line-height: 26px;
    color: #1B1B1B;
    margin-top: 32px;
}
.table-popup-overlay .table-popup .popup-inner {
    margin: 0 20px;

}
.popup-inner table tbody tr:last-child td {
    border-bottom: none;
}

.range {
    margin-top: 10px;
}

input[type="range"] {
    /* removing default appearance */
    -webkit-appearance: none;
    appearance: none;
    /* creating a custom design */
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 15px;
    border: none;
    padding-left: 0;
    /*  overflow: hidden;  remove this line*/

    /* New additions */
    height: 4px;
    background: #1F609C;
}

/* Thumb: webkit */
input[type="range"]::-webkit-slider-thumb {
    /* removing default appearance */
    -webkit-appearance: none;
    appearance: none;
    /* creating a custom design */
    height: 20px;
    width: 20px;
    background-color: #1F609C;
    border-radius: 50%;
    border: none;

    /* box-shadow: -407px 0 0 400px #f50; emove this line */
    transition: .2s ease-in-out;
}

/* Thumb: Firefox */
input[type="range"]::-moz-range-thumb {
    height: 20px;
    width: 20px;
    background-color:  #1F609C;
    border-radius: 50%;
    border: none;

    /* box-shadow: -407px 0 0 400px #f50; emove this line */
    transition: .2s ease-in-out;
}

.estate-inner-desc h2:hover {
    color: #EA4B37;
}
.values {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.values span {
    font-size: 12px;
    line-height: 15px;
    color: #1F609C;
}
.about-credits {
    display: flex;
    gap: 59px;
    margin-top: 26px;
}
.about-credits .online-application-block {
    max-width: 477px;
    width: 100%;
    min-height: 511px;
    background: url('/images/credit-bg.png') center no-repeat;
    border-radius: 20px 20px 0 20px;
    padding: 38px 36px;
    display: flex;
    align-items: flex-end;
    background-size: cover !important;

}
.online-application-block a {
    border: 1px solid #EA4B37;
    padding: 13px 31px;
    border-radius: 50px;
    color: #EA4B37;
    background: white;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
    font-weight: 500;
    font-family: MontserratArm-Medium;
}
.online-application-block a:hover {
    color: white;
    background:#EA4B37;
    transition: .3s;
}
.online-application-block a svg path {
    transition: .3s;
}
.online-application-block a:hover svg path {
    fill:  white;
    transition: .3s;
}
.banner {
    min-height: 494px;
    width: 100%;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    border-bottom-left-radius: 130px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-banner {
    min-height: 86px;
    display: none;
    width: 100%;
    border-bottom-left-radius: 130px;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
}
.banner-desc {
    max-width: 474px;
    width: 100%;
    text-align: center;
}


.banner-desc h1 {
    font-size: 38px;
    line-height: 48px;
    font-weight: 800;
    font-family: MontserratArm-SemiBold;
    color: #ffffffcc;
    padding-bottom: 38px;
    position: relative;
}
.banner-desc h1::before {
    content: '';
    height: 3px;
    position: absolute;
    background: white;
    width: 80%;
    display: block;
    bottom: 23px;
    left: 50%;
    transform: translateX(-50%);
}
.banner-desc h2 {
    font-size: 38px;
    line-height: 48px;
    font-weight: 800;
    font-family: MontserratArm-SemiBold;
    color:#ffffff66;
}

.consumer-credit {
    border: 2px solid #D8D8D8;
    border-radius: 18px 18px 0 18px;
    width: 100%;
    overflow: hidden;
}
.consumer-credit img {
    border-radius: 18px 18px 0 0;
    height: 362px;
    width: 100%;
    object-fit: cover;
}
.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 38px 0;
}
.slide-content h3 {
    color: #1F609C;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    font-family: MontserratArm-SemiBold;
}
.slide-content a {
    border: 1px solid #EA4B37;
    padding: 13px 31px;
    border-radius: 50px;
    color: #EA4B37;
    background: white;
    display: inline-flex;
    font-family: MontserratArm-Medium;
    font-weight: 500;
    align-items: center;
    gap: 12px;
    transition: .3s;
}
.slide-content a:hover {
    color: white;
    background:#EA4B37;
    transition: .3s;
}
.slide-contenta svg path {
    transition: .3s;
}
.slide-content a:hover svg path {
    fill:  white;
    transition: .3s;
}

.slide-item {

    width: 100%;
}
.slick-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    bottom: -47px;
    left: 38px;
    list-style:none;
}
.slick-active button {
    width: 20px !important;
    background: #EA4B37 !important;
}
.slick-dots button {
    padding: 0;
    font-size: 0;
    width: 7px;
    height: 7px;
    background: #CFCFCF;
    border: none;
}
.category-tabs-wrapper {
    display: flex;
}
.category-tabs-wrapper ul {
    list-style-type: none;}
.category-content .left {
    max-width: 429px;
    width: 100%;
}
.category-content .left li {
    padding: 18px 21px;
    position: relative;
    border-bottom: 1px solid #3A79B4;
    cursor: pointer;
}
.category-content .left li.active {
    position: relative;
}


.category-content .left li::before {
    content: '';
    height: 100%;
    width: 4px;
    background: #EA4B37;
    position: absolute;
    left: 0;
    display: none;
    top: 0;
}

.category-content .left li:hover {
    background: #004686;
}
.category-content .left li:hover::before {
    display: block;
}
.category-content .left li.active::after {
    content: '';
    height: 100%;
    width: 4px;
    background: #EA4B37;
    position: absolute;
    left: 0;
    top: 0;
}
.category-content .left li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 18px;
    line-height: 22px;
    font-family: MontserratArm-Medium;
    font-weight: 500;
}
.category-content .left li a img {
    max-width: 30px;
    max-height: 30px;
}
.category-tabs {
    max-width: 1290px;
    margin: 0 auto;
}
.category-content .right {
    max-width: 100%;
    width: 100%;
    background: #004686;
    min-height: 456px;
    padding: 0x 20px;
}

.category-content .left ul,
.category-content .right ul {
    display: none;
}
.category-content .left ul.active,
.category-content .right ul.active {
    display: block;
}
.category-content .right ul li {
    border-bottom: 1px solid #3A79B4;
    max-width: 374px;
    padding: 18px 20px;
}
.category-content .right ul li a {
    color: white;
    font-size: 16px;
    line-height: 23px;
    width: 100%;
    font-family: MontserratArm-Medium;
    font-weight: 500;
}

.category-content .right ul li a.accordion-link {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.category-content .right ul li a.accordion-link svg.rotate {
    transform: rotate(-180deg);
}
.owl-stage-outer {
    position: relative;
}
.owl-dots {
    display: flex;
    gap: 10px;
    position: absolute;
    z-index: 11111;
    bottom: 0;
}
.owl-dot  {
    width: 10px;
    height: 10px;
    display: block;
    background: red;
}


.our-missions {
    background: #F2F2F2;
    padding: 50px 0;
    margin: 50px 0;
}
.block-desc {
    max-width: 1015px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.block-desc h2 {
    color: #1F609C;
    margin-bottom: 48px;
    position: relative;
}
.block-desc h2::before {
    content: '';
    background: #EA4B37;
    height: 4px;
    width: 95px;
    bottom: -13px;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.block-desc p {
    color: #333333;
    line-height: 24px;
}
.home-news-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: color;
    width: 100%;
    min-height: 322px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.home-news-wrapper {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 22px;
}
.home-news-img:hover {
    background-color: #0000007d;
    transition: .3s;
}

.home-news-desc {
    opacity: 0;
    position: absolute;
    bottom: -100%;
    transition: .3s;
    left: 21px;
}
.home-news-desc span {
    font-size: 14px;
    line-height: 15px;
    color: white;
    font-weight: 700;
    font-family: MontserratArm-Bold;
    margin-bottom: 10px;
    display: block;
}
.home-news-desc h4 {
    font-size: 18px;
    line-height: 21px;
    font-family: MontserratArm-SemiBold;
    font-weight: 600;
    color: white;
    word-break: break-word;
}
.home-news-desc a {
    padding: 13px 31px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #EA4B37;
    color: white;
    transition: .3s;
    margin-top: 15px;
}
.home-news-desc a svg path {
    transition: .3s;
    fill: white;
}
.home-news-desc a:hover {
    color: #EA4B37;
    transition: .3s;
    background: white;
}
.home-news-desc a:hover svg path {
    fill: #EA4B37;
    transition: .3s;
}
.home-news-img:hover .home-news-desc {
    bottom: 20px;
    opacity: 1;
    transition: .3s;
}
.home-news h2 {
    margin-bottom: 32px;
    color: #1F609C;
}



/*calculator*/
.table_popup_container {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.30);
    left: 0;
    top: 0;
    z-index: 999999;
    display: none;
}
.table-popup-overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.30);
    left: 0;
    top: 0;
    z-index: 999999;
}
.table-popup-overlay .table-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 999999999999999;
    background: white;
    border-radius: 22px;
    background: white;
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.30);
}
.popup-inner {
    overflow-y: auto;
    max-height: 50vh !important;
}
.popup-inner::-webkit-scrollbar {
    width: 10px;
    border-radius: 8px;
}
.popup-inner::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
}
.popup-inner::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #BCBCBC;
}

.close-table {
    border: 1px solid #EA4B37;
    background: white;
    color: #EA4B37;
    font-size: 15px;
    line-height: 18px;
    margin: 32px auto 40px;
    font-family: segoeuisb;
    cursor: pointer;
}
.close-table:hover {
    background: #EA4B37;
    color: white;
}
.close-table:hover svg path {
    fill: white;
}
.table-popup .table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #A3A3A3;
    padding:30px 30px 20px;
    margin-bottom: 20px;
}
.table-popup .table-header svg {
    cursor: pointer;
}
.table-popup .table-header h2 {
    color: #1F609C;
}

.category-right-submenu {
    display: none;
}
.category-right-submenu.show {
    display: block;
    margin-top: 10px;
}
.category-content .right ul li .category-right-submenu a {
    color: rgb(255 255 255 / 60%) !important;
    font-size: 16px;
    line-height: 24px;
    /* text-transform: lowercase; */
    padding-left: 20px;
}

.category-content .right ul li .category-right-submenu a:hover {
    color: white !important;
}

#form-errors-info {
    color: #EA4B37;
}

#form-success-info {
    color: #00bb00;
}
.footer-copyright-text{margin-bottom: 30px;}
.footer-copyright-text div{
    color: #FFFFFF;
    font-size: 14px;
    line-height: 20px;
}

@media(min-width: 1440px) {
    .table-popup-overlay .table-popup {
        max-width: 1406px;
        width: 100%;
    }
}
@media(min-width: 992px) {
    .category-content .left li.active {
        background: #004686;
    }
    .category-tabs .left .accordion-link svg {
        display: none;
    }
}

@media(max-width: 1440px) {
    .table-popup-overlay .table-popup {
        max-width: 1366px;
        width: 100%;
    }
    footer .wrapper {
        gap: 80px;
    }
    .container {
        max-width: 1280px;
        padding: 0 15px;
    }
}
@media(max-width: 1366px) {
    .about-credits {
        gap: 32px;
    }
    .table-popup-overlay .table-popup {
        max-width: 1200px;
        width: 100%;
    }
}
@media(max-width: 1201px) {
    footer .wrapper {
        gap: 40px;
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
    .calculator-wrapper {
        gap: 12px;
        flex-direction: column;
    }
    .calculated-result {
        max-width: 100%
    }
    .calculated-items-col {
        gap: 12px;
        flex-direction: column;
    }
    .about-credit-crads-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media(max-width: 1166px) {
    .careers-wrapper {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    .career-item-desc {
        width: 56%;
    }
    .single-image img {
        height: 330px;
    }
    .job-form {
        padding: 20px 0;
    }
    .service-form form {
        max-width: 100%;
        padding:0 10px;
    }
    .tabs li {
        padding: 15px;
    }
}
@media(max-width: 1024px) {

    .category-content .left li:hover {
        background: none;
        color: unset;
    }
    .category-content .left {
        max-width: 100%;
    }
}
@media(max-width: 991px) {
    .category-content .right ul li .category-right-submenu a:hover {
        color: #1F609C !important;
    }
    .breadcrumb li a::after {
        content: url("/images/mobile-arrow.png");
        font-size: 14px;
        right: -10px;
    }
    .breadcrumb {
        gap: 16px;
    }
    .category-content .left img {
        display: none;
    }
    .category-content .left li a {
        color: #1F609C;
    }
    .home-news-item {
        min-width: 100%;
    }
    .home-news-wrapper {
        overflow-x: auto;
        display: flex;
    }
    .home-news-wrapper::-webkit-scrollbar {
        display: none;
    }
    .slide-content {
        padding-bottom: 10px;
    }
    .coockie-popup {
        max-width: 328px;
        left: 50%;
        transform: translateX(-50%);
    }
    .coockie-popup .popup-header {
        padding: 16px;
    }
    .coockie-popup .popup-body {
        padding: 0 10px;
        max-width: 100%;
    }
    .coockie-popup .popup-body span {
        padding: 8px 16px;
    }
    .about-credits {
        flex-direction: column;
        gap: 19px;
    }
    .about-credits .online-application-block {
        max-width: 477px !important;
        margin: auto;
    }
    .back-to-category {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #1F609C;
        height: 54px;
        padding: 0 15px;
    }
    .back-to-category h2 {
        color: white;
    }
    .category-content .right {
        padding: 0;
    }
    .category-content .right ul {
        overflow-y: auto;
        max-height: 717px;
    }
    .category-content .right ul li {
        max-width: 100%;
    }
    .category-content .left ul li a.accordion-link {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
    }

    .accordion-link svg {
        transform: rotate(-90deg);
    }
    .accordion-link svg path {
        fill: #1F609C;
    }
    .category-content .right ul li .category-right-submenu a {
        color: #1F609C !important;
    }
    .category-right-submenu {
        margin-top: 10px;
    }
    .category-content .right ul li a {
        color: #1F609C;
    }
    .category-content .right ul li {
        padding: 14px 15px;
    }
    .category-content .right {
        position: fixed;
        top: 0;
        background: white;
        width: 100%;
        height: 100vh;
        z-index: 11;
    }
    .table-popup-overlay .table-popup {
        max-width: 820px;
    }
    .popup {
        max-width: 600px;
    }
    .popup h2 {
        font-size: 18px;
    }
    .popup p {
        padding: 0 10px;
    }
    h1 {
        font-size: 20px;
        line-height: 29px;
    }
    .page-title {
        padding-top: 22px;
        margin-bottom: 10px;
        font-size: 20px !important;
        line-height: 29px !important;
    }
    .title-section {
        min-height:max-content;
        padding-bottom: 12px;
        margin-bottom: 36px;
    }

    .breadcrumb li {
        font-size: 9px;
        line-height: 13px;

    }

    .breadcrumb li a {
        font-size: 9px;
        line-height: 13px;
    }
    body.ov-hid {
        overflow: hidden;
    }
    .header-menu {
        width: 98%;
        height: 100vh;
    }
    .header-bottom {
        flex-direction: column;
        row-gap: 25px;
        padding-bottom: 25px;
    }
    .online-app-btn {
        font-size: 14px;
        line-height: 17px;
    }
    .header-top .left-side {
        padding-left: 15px;
    }

    .header-top .left-side .phone span{
        display: none;
    }
    .header-top .right-side {
        padding-right: 15px;
        position: relative;
    }
    .header-top .right-side .for-mobile {
        display: block;

    }
    .header-top .right-side .for-mobile .info {
        border-radius: 12px;
        background: #FFF;
        box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.25);
        padding: 12px;
        flex-direction: column;
        row-gap: 21px;
        display: none;
    }
    .share-icon.fill path {
        fill:#EA4B37
    }
    .header-top .right-side .for-mobile .info .info-item a {
        display: flex;
        align-items: center;
        column-gap: 10px;
    }
    .header-top .right-side .for-mobile .info.show {
        display: flex;
        position: absolute;
        right: 4px;
        top: 6%;
    }
    .header-top .right-side .line {
        margin: 0 10px;
    }
    .header-top .right-side .socials {
        display: none;
    }
    .header-top .right-side .socials img {
        width: 22px;
    }
    .header-top .left-side .line {
        margin:  0 15px;
    }
    .close-section {
        padding-left: 15px;
    }
    .logo-section img {
        width: 83px;
    }
    .close-section svg {
        width: 20px;
        height: 20px;
    }
    .logo-section {
        padding-left: 15px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .close-section span {
        display: none;
    }
    .menu-section {
        border-bottom: none;
    }
    .menu-section nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }
    .tab-wrapper-item::before {
        content: none;
    }
    .tab-wrapper-item:first-child::after {
        content: none;
    }
    .tab-wrapper-item:last-child::after {
        content: none;
    }
    .tabs-container {
        grid-template-columns: repeat(1,minmax(0,1fr));
        padding-bottom: 20px;
    }
    .tab-wrapper-item {
        border-bottom: 1px solid white;
        width: 100%;
        margin: auto;
        padding: 20px 15px;
    }
    .category-content .left {
        position: fixed;
        z-index: 22;
        top: 54px;
        height: 90%;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .category-content .left li {
        padding: 14px 15px;
    }
    .about ul li span {
        font-size: 15px;
        line-height: 23px;
    }
    footer {
        padding-top: 28px;

    }
    footer .wrapper {
        gap: 0;
        grid-template-columns: repeat(1,minmax(0,1fr));
    }
    footer .wrapper .wrapper-item {
        order: 0;
        margin-bottom: 16px;
    }
    footer .wrapper .wrapper-item:last-child {
        order: -1;
        margin: 0 auto 40px;
        max-width: 161px;
    }
    footer .wrapper .wrapper-item:nth-child(3) {
        margin-bottom: 0;
    }
    footer .footer-logo {
        width: 115px;
        display: block;
        text-align: center;
        margin:  0 auto 30px;
    }
    footer .copyright {
        padding-top: 40px;
        border-radius: 0;
        margin-top: 50px;
    }
    footer .copyright p {
        margin-bottom: 43px;
    }
    .controled-by {
        margin: 50px 0 0;
        max-width: 330px;
    }
    .career-single-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .single-image {
        max-width: 100%;
    }
    .single-image img {
        object-fit: cover;
    }
    .service-wrapper {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    .about-credit-crads-wrapper {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    .tabs li {
        font-size: 16px;
        line-height: 30px;
    }
    .contact .column {
        flex-wrap: wrap;
    }
    .contact-informations img.contact-info-big-image {
        height: auto !important;
    }
}

@media(max-width: 767px) {
    .agree-for-policy {
        gap: 10px;
    }
    .category-content .left li a {
        font-size: 16px ;
    }
    .home-service-item:hover img {
        filter: none;
    }
    .home-service-item:hover span {
        color: #1F609C;
    }
    .home-service-item:hover {
        color: #1F609C;
    }
    .home-service-wrapper a {
        min-width: 34%;
        max-width: unset;
    }
    .coockie-popup {
        max-width: 328px;
    }
    .table-popup .table-header {
        padding: 16px;
    }
    .table-popup-overlay .table-popup .popup-inner {
        width: 100%;
        overflow-x: auto;

    }
    .popup {
        padding-bottom: 20px;
    }
    .popup-title {
        padding: 10px;
        margin-bottom: 32px;
    }
    .popup h3 {
        font-size: 18px;
        text-align: center;
        padding: 0 10px;
    }
    .popup p {
        font-size: 15px;
        line-height: 18px;
    }
    .popup a {
        font-size: 18px;
        gap: 10px;
    }
    .popup a svg {
        width: 20px;
    }
    h2 {
        font-size: 18px !important;
        line-height: 26px !important;
    }
    p {
        font-size: 15px;
        line-height: 23px;
    }
    .news-wrapper {
        grid-template-columns: repeat(1,minmax(0,1fr));
    }
    .news-wrapper .news-item img {
        height: 122px;
    }
    .news-item-desc p {
        margin-top: 20px;
        font-size: 16px;
    }
    .news-item-desc a {
        margin-top: 20px;
    }
    .news-item-desc {
        padding: 15px;
    }
    .see-all-news {
        margin-top: 32px;
    }
    .news a {
        font-size: 15px;
        padding: 8px 15px;
    }
    .news-item-desc span {
        font-size: 14px;
    }
    .news-single-content img {
        height: 122px;
    }
    .news-item-desc a {
        padding: 8px 16px;
    }
    .updated {
        margin-top: 100px;
    }
    .calculator-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .calculated-items-col {
        grid-template-columns: 100%;
        gap: 20px;
    }
    .calculated-result ul li p {
        max-width: unset;
    }
    .tabs li {
        padding: 11px 15px;
        font-size: 16px;
    }
    .tab-content {
        padding: 20px 10px 20px;
    }
    .column {
        flex-direction: column;
    }
    .details-btn a {
        padding: 8px 16px;
        font-size: 15px;
    }
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .info-block {
        margin-top: 20px;
        padding: 20px 30px 20px 10px;
    }
    .contact-informations img.contact-info-big-image {
        height: 193px;
    }
    .contact h2 {
        margin-bottom: 15px;
    }
    .title-section {
        margin-bottom: 40px;
    }
    .contact-informations {
        max-width: 100%;
    }
    .estate-wrapper .item {
        border-width: 6px;
    }
    .estate-wrapper .item a {
        font-size: 18px;
        line-height: 26px;
        padding-left: 20px;
    }

    .accordion-title {
        border-width: 6px;
        gap: 22px;
    }
    .accordion-title h2 {
        font-size: 18px !important;
        line-height: 26px !important;
        padding-left: 20px;
    }
    .banner {
        display: none;
    }
    .mobile-banner {
        display: flex;
    }

    .about-credits .online-application-block {
        padding: 22px 25px;
        min-height: 353px;
        max-width: 329px !important;
    }
    .online-application-block a {
        font-size: 14px;
        padding: 8px 26px;
    }
    .consumer-credit img {
        height: 265px;
        object-fit: cover;
    }
    .slide-content {
        flex-direction: column;
        gap: 12px;
        padding: 12px 12px 28px;
        align-items: flex-start;
    }

    .home-news-img {
        min-height: 221px;
        background-color: #0000007d;
    }
    .home-news-desc {
        opacity: 1;
        bottom: 14px;
    }

    .home-news-desc span {
        margin-bottom: 8px;
    }
    .home-news-desc a {
        padding: 5px 16px;
        font-size: 15px;
        margin-top: 10px;
    }
    .home-news-desc h4 {
        font-size: 16px;
        line-height: 19px;
    }
    .home-news h2 {
        margin-bottom: 15px;
    }
    .our-missions {
        margin: 40px 0;
        padding: 40px 22px;
    }
    .block-desc h2 {
        margin-bottom: 34px;
    }
    .block-desc p {
        font-size: 15px;
    }
    .slide-content a {
        padding: 8px 26px;
        font-size: 14px;
        margin-left: auto;
    }
    .slick-dots {
        left: 12px;
        bottom: 12px;
    }
    .home-services {
        margin-top: 51px;
    }
    .home-service-wrapper {
        overflow-x: auto;

    }
    .home-service-wrapper::-webkit-scrollbar {
        display: none;
    }
    .home-service-item {
        height: auto;
        min-width: 45%;
        text-align: center;
    }
    .home-service-item img {
        width: 35px;
        height: 35px;
    }
    .home-service-item:hover {
        background: none;
    }

    .home-service-item:hover a span {
        color: initial;
    }
    .home-service-item a {
        gap: 8px;
    }
    .home-service-item span {
        font-size: 10px;
    }
    .about-credits {
        margin-top: 49px;
    }
    .careers-wrapper {
        grid-template-columns: repeat(1,minmax(0,1fr));
    }
    .career-item {

        width: 100%;
    }
    .career-item-desc {
        width: 56%;
        padding: 10px 10px 15px 10px;
    }
    .career-item-image img {
        border-radius: 22px 22px 22px 0;
    }
    .career-item-image img {
        width: 100%;
    }
    .single-desc span.apply-deadline {
        font-size: 14px;
    }
    .single-desc p {
        font-size: 15px;
    }
    .attach-file {
        gap: 12px;
    }
    form {
        gap: 20px;
    }
    .attach-file span {
        font-size: 12px;
        line-height: 16px;
    }
    .attach-file label {
        padding: 6px 17px;
    }
    button {
        padding: 9px 16px;
    }
    .job-form textarea {
        resize: none;
    }
    .estate-inner-desc-description {
        font-size: 15px;
        line-height: 23px;
    }
    .estate-inner-desc {
        padding-left: 22px;
    }

    .estate-inner-desc span {
        margin-bottom: 24px;
        font-size: 14px;
    }
    .estate-inner-desc h2 {
        margin-bottom: 6px;
    }
    .not-found-page {
        margin-top: 0px;
        padding: 0 10px;
    }
    .not-found-page img {
        margin-bottom: 0;
    }
    .not-found-page a {
        padding: 8px 16px;
        font-size: 15px;
        line-height: 18px;
    }
    .column {
        gap: 20px;
    }
    .row.submit {
        margin-top: 10px;
    }
    textarea {
        resize: none;
    }
    .estate-wrapper .item {
        gap: 22px;
    }
    .estate-wrapper .item a {
        font-size: 20px;
        line-height: 28px;
    }
    .service-item-heading span {
        font-size: 18px;
        line-height: 26px;
    }
    .service-wrapper {
        grid-template-columns: repeat(1,minmax(0,1fr));
    }
    .service-item {
        min-height: auto;
    }
    .service-item-body {
        padding: 15px;
    }
    .service-item-heading {
        gap: 14px;
    }

    .service-item-body .credit-from-to h5 {
        font-size: 16px;
        line-height: 24px;
    }
    .service-item-body a {
        padding: 8px 16px;
        position: static;
        margin-top: 20px;
        font-size: 14px;
        max-width: 144px;
        margin-left: auto;
        width: 100%;
        line-height: 17px;
    }
    .service-wrapper {
        gap: 15px;
    }
    .tab-content {
        margin-top: 13px;
        padding: 15px 5px;
        border-radius: 12px;
        box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.17);
    }
    .tabs {
        display: flex;
        align-items: center;
        overflow-x: auto;
    }
    .tabs::-webkit-scrollbar {
        display: none;
    }
    .tab-content {
        overflow-x: auto;
    }
    .tab-content::-webkit-scrollbar {
        display: none;
    }
    .tabs li {
        min-width:fit-content;
    }
    .tabs li.current {
        min-width:fit-content;
        padding: 6px 18px;
        border-radius: 12px;
        box-shadow: 0px 1px 4px -1px rgba(0, 0, 0, 0.25);
    }
    .tabs li.current::before {
        content: none;
    }
    .about-credit-crads-wrapper {

        grid-template-columns: repeat(1,minmax(0,1fr));
    }
    .about-credit-crads-item h4 {
        line-height: 30px;
        font-size: 18px;
        margin: 18px 0 12px;
    }
    .about-credit-crads-item {
        min-height: 200px;
    }

    .additional-documents-item span {
        font-size: 16px;
        line-height: 23px;
    }
    .additional-documents-item {
        gap: 8px;
    }
    .about-credit-crads-item p {
        font-size: 16px;
        line-height: 30px;
    }
    .service-single-form {
        padding: 20px 0;
        margin-top: 40px;
    }
    .form-title {
        padding-left: 10px;
        margin-bottom: 15px;
    }
    .about-credit-description {
        margin-top: 40px;
    }
    .agree-for-policy a {
        font-size: 14px;
        line-height: 23px;
    }
    .service-form .row.submit {
        margin-top: 8px;
    }
    .header-top .right-side .for-mobile .info.show {
        top: 35px;
        width: 190px;
    }
    .info-item span {
        font-size: 15px;
        line-height: 18px;
    }
    #map {
        margin-top: 40px;
    }
    .file_attachment_change {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.file_attachment_change img{
    border-radius: 25px;
}

@media(max-width: 600px) {
    .popup {
        max-width: 360px;
    }
}
