@charset "UTF-8";

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('../fonts/IBMPlexSansArabic/IBMPlexSansArabic-Bold.woff2') format('woff2'),
        url('../fonts/IBMPlexSansArabic/IBMPlexSansArabic-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('../fonts/IBMPlexSansArabic/IBMPlexSansArabic-Medium.woff2') format('woff2'),
        url('../fonts/IBMPlexSansArabic/IBMPlexSansArabic-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('../fonts/IBMPlexSansArabic/IBMPlexSansArabic-Light.woff2') format('woff2'),
        url('../fonts/IBMPlexSansArabic/IBMPlexSansArabic-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('../fonts/IBMPlexSansArabic/IBMPlexSansArabic-ExtraLight.woff2') format('woff2'),
        url('../fonts/IBMPlexSansArabic/IBMPlexSansArabic-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('../fonts/IBMPlexSansArabic/IBMPlexSansArabic-Thin.woff2') format('woff2'),
        url('../fonts/IBMPlexSansArabic/IBMPlexSansArabic-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('../fonts/IBMPlexSansArabic/IBMPlexSansArabic-Regular.woff2') format('woff2'),
        url('../fonts/IBMPlexSansArabic/IBMPlexSansArabic-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('../fonts/IBMPlexSansArabic/IBMPlexSansArabic-SemiBold.woff2') format('woff2'),
        url('../fonts/IBMPlexSansArabic/IBMPlexSansArabic-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


a {
    transition: all 0.3s ease-in-out;
}

a:hover {
    transition: all 0.3s ease-in-out;
}


body {
    direction: rtl;
    padding: 0;
    margin: 0;
    background: #F3F4F64D;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-weight: 400;
    color: #17375E;
    text-align: start;
}

.container {
    max-width: 1200px !important;
}

header {
    background: #fff;
    position: sticky;
    top: 0;
    min-height: 72px;
    border-bottom: 1px solid #D2D6DB;
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    z-index: 99;
}

header .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

header .container img {
    height: 55px;
    width: auto;
}

header .container .menu {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    margin-inline-start: 0;
    margin-inline-end: auto;
}

header .container .menu ul {
    list-style: none;
    outline: none;
    margin: 0;
    padding: 0;
    display: flex;
}

@media only screen and (max-width: 768px) {
    header .container .menu {
        padding: 25px;
        position: fixed;
        right: -300px;
        top: 72px;
        bottom: 0;
        width: 250px;
        background: #fff;
        transition: all 0.5s ease 0s;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .open {
        right: 0 !important;
        transition: all 0.5s ease 0s;
    }

    header .container .menu ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

header .container .menu ul li {
    position: relative;
}

header .container .menu ul li a {
    color: #848484;
    font-weight: 500;
    text-decoration: none;
    outline: none;
    display: block;
    padding: 15px 15px;
    min-height: 71px;
    display: flex;
    align-items: center;
}

header .container .menu ul li.active a {
    color: #17375E !important;
    background: #EFFAFA;
}

@media only screen and (max-width: 768px) {
    header .container .menu ul li a {
        min-height: initial;
    }

    header .container .menu ul li.active a {
        color: #17375E !important;
        background: initial;
    }
}

header .container .menu ul li a:hover {
    color: #17375E;
}

header .container .icon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

header .container .icon a {
    padding: 0 15px;
    color: #17375E;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    align-items: center;
    text-decoration: none;
    outline: none;
}

header .container .icon a:hover {
    color: #848484;
}

header .container .icon i {
    font-size: 24px !important;
    margin-inline-end: 5px;
    cursor: pointer;
}

header .container .icon .bi-list {
    display: none;
}

@media only screen and (max-width: 768px) {
    header .container .icon a {
        font-size: 0;
    }

    header .container .icon i {
        margin-inline-end: 0 !important;
    }

    header .container .icon .bi-list {
        display: block;
    }
}


section {
    padding: 60px 0;
    position: relative;
    clear: both;
}

/* loginpage */
.loginpage {
    padding: 60px 20px;
    min-height: calc(100% - 72px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.loginpage .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.blocklogin {
    background-color: #fff;
    box-shadow: 6px 6px 6px 0px #6262621A;
    border-radius: 40px;
    padding: 40px 40px;
    border: 1px solid #D9D9D9
}

.blocklogin h1 {
    color: #17375E;
    font-size: 36px;
    margin: 0 0 10px;
    text-align: center;
    width: 100%;
    font-weight: bold;
}

form {
    display: flex;
    flex-wrap: wrap;
}

.group {
    position: relative;
    margin: 0 0 15px;
}

form label {
    width: 100%;
    margin-bottom: 4px;
    color: #17375E;
    font-weight: 600;
    font-size: 14px;
}

form label i {
    color: #B42318;
    font-style: inherit;
}

form input,
.input,
select {
    width: 100%;
    padding: 0 15px;
    min-height: 40px;
    border: 1px solid #9DA4AE;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-align: right;
    outline: none;
}

form select,
.select {
    background-color: #F3F4F6;
    border: 1px solid #F3F4F6;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../images/down2.svg);
    background-repeat: no-repeat;
    background-position: left 15px center;
}

form input#phone {
    padding-inline-end: 80px;
}

form input#phone~.key {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #17375E;
    border-left: 1px solid #A2AFBF;
    min-height: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    direction: ltr;
    width: 66px;
}

.input:focus,
form input:focus {
    transition: all 0.3s ease-in-out;
    border: 1px solid #17375E;
    outline: none;
}

.forget a {
    text-decoration: none;
    outline: none;
    color: #17375E;
    font-weight: bold;
    margin: 0 0 15px;
    display: inline-flex;
    transition: all 0.3s ease-in-out;
}

.forget a:hover {
    transition: all 0.3s ease-in-out;
    color: #F5B160;
}

form button {
    width: 100%;
    padding: 0 0 4px;
    transition: all 0.3s ease-in-out;
    background: #F5B160;
    color: #17375E;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

form button:hover {
    transition: all 0.3s ease-in-out;
    color: #fff;
    background: #17375E;
}

/*  */
.sliderhome {
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sliderhome .item {
    position: relative;
    padding: 0;
    margin: 0;
    direction: rtl;
}

.sliderhome .item img {
    width: 100%;
    height: 490px;
    object-fit: cover;
}

.sliderhome .item .text {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    background: linear-gradient(263.94deg, rgba(94, 204, 201, 0.8) 0%, rgba(23, 55, 94, 0.8) 93.66%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 20px;
    padding: 10px;
}

.sliderhome .item .text .container {}

.sliderhome .item .text .container h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
}

.sliderhome .item .text .container p {}

.sliderhome .item .text .container a {
    color: #F5B160;
    background: #FEF6EC;
    border-radius: 4px;
    height: 40px;
    width: 70px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.sliderhome .item .text .container a:hover {
    transition: all 0.3s ease-in-out;
    background: #F5B160;
    color: #fff;
}

.owl-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    bottom: 55px;
    left: 0;
    right: 0;
    z-index: 10;
}

.owl-pagination .owl-page {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #E8EBEF;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.owl-pagination .owl-page.active {
    background-color: #17375E;
    transition: all 0.3s ease-in-out;
}

/*  */
.search-box {
    margin: -45px 0 0;
    z-index: 50;
    position: relative;
    padding: 0 15px;
}

.search-box .container {
    background-color: #fff;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0px 0px 16px 8px #66666629;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 90px;
}

.search-box .container .block {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 10px;
    border-left: 1px solid #D2D6DB;
    color: #17375E;
    font-size: 16px;
    font-weight: 500;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .search-box .container .block {
        border: none;
        padding: 15px 10px;
        border-bottom: 1px solid #D2D6DB;
    }
}

.search-box .container .block:last-child {
    border: none;
}

.search-box .container .block div {
    padding: 0 3px;
}

.search-box .container .block label {
    width: 100%;
    color: #74879E;
    font-size: 14px;
    padding: 0 5px;
    font-weight: 500;
    margin: 0 0 5px;
}

.search-box .container .block select {
    border: none;
    outline: none;
    width: 100%;
    padding: 0 5px;
    font-size: 16px;
    font-weight: 400;
    color: #17375E;
    background-image: url(../images/down.svg);
    background-repeat: no-repeat;
    background-position: left 5px center;
    appearance: none;
    -webkit-appearance: none;
    /* Chrome, Safari */
    -moz-appearance: none;
    /* Firefox */
}

.search-box .container .block input {
    width: 100%;
    border: none;
    outline: none;
    text-align: right;
}

.search-box .container .block button {
    background-color: #FEF6EC;
    border: none;
    outline: none;
    height: 48px;
    width: 48px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-image: url("../images/s.svg");
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 0 0;
}

@media only screen and (max-width: 768px) {
    .search-box .container .block button {
        width: 100%;
        margin-top: 15px;
    }
}

.search-box .container .block button:hover {
    background-color: #F5B160;
    transition: all 0.3s ease-in-out;
}

/*  */
.aqar {}

.aqar .container {
    display: flex;
    flex-wrap: wrap;
}

.aqar .container h1 {
    color: #17375E;
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 30px;
    width: 100%;
}

.aqar-slider {
    width: 100%;
    overflow: hidden;
}

.aqar-slider .item {
    padding: 15px;
}

.aqar-slider .item a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #17375E;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    outline: none;
    flex-direction: column;
    align-items: center;
}

.aqar-slider .item a:hover {
    color: #FFA11C;
}

.aqar-slider .item a img {
    width: auto;
    max-height: 57px;
    margin: 0 0 10px;
}

.owl-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
    background-color: #FEF6EC;
    background-image: url("../images/l.svg");
    background-position: center center;
    background-repeat: no-repeat;
    font-size: 0;
    cursor: pointer;
    border-radius: 4px;
}

.owl-prev:hover {
    background-color: #F5B160;
    transition: all 0.3s ease-in-out;
}

.owl-next {
    position: absolute;
    right: 0;
    transition: all 0.3s ease-in-out;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #FEF6EC;
    background-image: url("../images/r.svg");
    background-position: center center;
    border-radius: 4px;
    background-repeat: no-repeat;
    font-size: 0;
    cursor: pointer;
}

.owl-next:hover {
    background-color: #F5B160;
    transition: all 0.3s ease-in-out;
}

/*  */
.how {
    padding-left: 10px;
    padding-right: 10px;
}

.how .container {
    display: flex;
    flex-wrap: wrap;
}

.how .container h1 {
    color: #17375E;
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
    width: 100%;
}

.how .container p {
    color: #17375E;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 30px;
    width: 100%;
}

.how .container .block-all {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
}

.how .container .block-all .block {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

.how .container .block-all .block span {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #FEF6EC;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.how .container .block-all .block span img {
    height: 50px;
    width: auto;
}

.how .container .block-all .block h2 {
    margin: 30px 0 15px;
    color: #17375E;
    font-weight: 700;
    font-size: 28px;
}

.how .container .block-all .block p {
    color: #74879E;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

/*  */
.services .block-all {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.how .container .block-all .block p {
    color: #17375E;
}

/*  */

.app {
    padding-right: 10px;
    padding-left: 10px;
}

.app .container {
    background: linear-gradient(262.07deg, #5ECCC9 3.65%, #17375E 91.82%);
    border-radius: 40px;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-direction: row-reverse;
}

.app .container .block {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.app .container .block img {
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.app .container .block h1 {
    font-size: 4.4vw;
    font-weight: 700;
    width: 100%;
    margin: 0 0 15px;
}

.app .container .block p {
    width: 100%;
    margin: 0 0 20px;
    font-size: 2.2vw;
}

.app .container .block a {
    margin-inline-end: 5px;
}

.app .container .block a img {
    width: 12.7vw;
}

@media only screen and (max-width: 768px) {
    .app .container .block a img {
        width: 18vw;
    }

    .app .container .block p {
        margin: 0 0 10px;
    }

}

/* footer */
footer {
    padding: 50px 10px;
    background-color: #E8EBEF;
    clear: both;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
}

footer .container .foot {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
}

footer .container .foot h4 {
    color: #17375E;
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0 15px;
    padding: 0 0 15px;
    border-bottom: 1px solid #17375E4D;
    width: 100%;
}

footer .container .foot ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .container .foot ul li {
    width: 100%;
    padding: 5px 0;
}

footer .container .foot ul li a {
    color: #17375E;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    outline: none;
}

footer .container .foot ul li a:hover {
    color: #000;
}

footer .container .foot .media {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

footer .container .foot .media a {
    width: 32px;
    height: 32px;
    margin: 3px;
    border: 1px solid #17375E4D;
    color: #17375E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    outline: none;
}

footer .container .foot .media a:hover {
    background: #17375E;
    color: #fff;
}

.copy {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 40px 0 10px;

}

.copy img {
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 0 10px;
}

.copy strong {
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.copy span {
    color: #17375E;
}

/*  */
.head {
    background-color: #EFFAFA;
    padding: 50px 15px;
}

.head .container {
    display: flex;
    flex-wrap: wrap;
}

.head .container h1 {
    font-size: 48px;
    color: #17375E;
    font-weight: 600;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .head .container h1 {
        font-size: 30px;
    }
}

/*  */
.contact {
    background-color: #FFFFFF;
}

.contact .container {
    display: flex;
    flex-wrap: wrap;
}

.contact .container h1 {
    color: #17375E;
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 30px;
    width: 100%;
}

.contact .container form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.contact .container form .group {
    padding: 10px 10px 0;
}

.contact .container form input#phone~.key {
    right: 10px;
}

.contact .container form input.file {
    border: none;
    padding: 0;
    border-radius: 0;
}

.contact .container form p {
    font-size: 12px;
    font-weight: 400;
    color: #74879E;
}

textarea {
    width: 100%;
    padding: 0 15px;
    height: 120px;
    border: 1px solid #9DA4AE;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-align: right;
    outline: none;
}

.contact .container form button {
    width: 200px;
    background-color: #5ECCC9;
    color: #fff;
    margin-inline-start: auto;
    margin-inline-end: 0;
}

.contact .container form button:hover {
    width: 200px;
    background-color: #17375E
}

/* faq */
.faq {
    background-color: #fff;
}

.faq .container {}

.faq .container form {}

.faq .container form .group {}

.faq .container form .group input {
    padding: 0 45px;
    color: #17375E;
}

.faq .container form .group .bi-search {
    position: absolute;
    right: 15px;
    bottom: 50%;
    transform: translateY(17px);
    color: #17375E;
    font-size: 20px;
}

.faq .container form .group .bi-mic {
    position: absolute;
    left: 15px;
    bottom: 50%;
    transform: translateY(16px);
    color: #17375E;
    font-size: 20px;
    cursor: pointer;
}

.faq .container form .group button {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 10px;
    width: 130px;
    max-width: 100%;
    color: #fff;
    background: #17375E;
    display: flex;
    justify-content: space-evenly;
}

.faq .container form .group button:hover {
    background: #5ECCC9;
}

/*  */
.accordion {
    margin: 25px 0;
    color: #17375E;
}

.accordion-item {
    border: none !important;
    border-bottom: 1px solid #E8EBEF !important;
    margin: 10px 0;
}

.accordion-button {
    display: flex;
    flex-wrap: wrap;
    color: #17375E;
    background: #fff !important;
    outline: none !important;
    font-weight: 600;
    box-shadow: none !important;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    display: flex;
    flex-wrap: wrap;
    background: #fff !important;
    color: #17375E;
    outline: none !important;
    font-weight: 600;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #fff !important;
    box-shadow: none !important;
    outline: none !important;

}

.accordion-button::after {
    margin: 0 auto 0 0;
}

.accordion-body {
    color: #17375E;
}

/*  */
.add textarea {
    background: #F3F4F6;
    border-color: #F3F4F6;
}

.add select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../images/down2.svg");
    background-repeat: no-repeat;
    background-position: left 15px center;
}

/* properties */
.properties {
    background-color: #fff;
    min-height: 60vh;
}

.properties .container {}

.properties .container form {
    display: flex;
    flex-wrap: wrap;
}

.properties .container form .group-filter {
    background-color: #fff;
    border: 1px solid #E8EBEF;
    border-radius: 8px;
    min-height: 48px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    color: #17375E;
    font-size: 16px;
    font-weight: bold;
}

.properties .container form .group-filter i {
    font-size: 22px;
}

.properties .container form .group-filter i {
    margin-inline-end: 0;
}

.properties .container form .group-filter * {
    border: none !important;
    background: #fff !important;
    padding: 0 7px;
}

.properties .container form .group-filter div {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    padding: 0 10px;
}

.properties .container form .group-filter div:nth-child(2) {
    border-right: 1px solid #E8EBEF !important;
    border-left: 1px solid #E8EBEF !important;
}


.properties .container form .group button {
    height: 52px;
    width: 96%;
    background-color: #E8EBEF;
    border-radius: 8px;
    border: none;
    background-image: url("../images/map.svg");
    background-position: center right 15px;
    background-repeat: no-repeat;
    cursor: pointer;
    padding-inline-start: 25px;
    margin: 0 2%;
}

.properties .container form .group button:hover {
    background-color: #F5B160
}

.properties .container form .block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.properties .container form .block .box {
    position: relative;
    padding: 0 3px;
    margin: 3px 0;
}

@media only screen and (min-width: 768px) {
    .properties .container form .block .box {
        width: 14% !important;
        margin: 2px 0;
        padding: 0;
        display: flex;
    }
}

@media only screen and (max-width: 768px) {
    .properties .container form .block .box:last-child {
        width: 100% !important;
    }
}



.properties .container form .block .box select {
    background-color: initial !important;
    border: 1px solid #A2AFBF;
    border-radius: 4px;
    padding-inline-start: 36px;
}

.properties .container form .block .box .ico {
    width: 26px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 5px;
    top: 0;
    height: 40px;
}

.properties .container form .block .box select.custom-select.active {
    background-color: #DFF5F4 !important;
    border-color: #5ECCC9 !important;
}

/*  */
.contracts {
    min-height: 80vh;
}

.contracts .container {
    display: flex;
    flex-wrap: wrap;
}

.contracts .container h1 {
    color: #17375E;
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
    width: 100%;
}

.contracts .container p {
    color: #17375E;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 30px;
    width: 100%;
}

.type {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.type .box {
    padding: 10px;
}

.type .box a {
    display: flex;
    background-color: #EFFAFA;
    border-radius: 16px;
    padding: 25px;
    text-decoration: none;
    outline: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #EFFAFA;
}

.type .box a:hover {
    border: 1px solid #5ECCC9;

}

.type .box a img {
    margin: 0 0 15px;
}

.type .box a h3 {
    color: #17375E;
    font-weight: 700;
    font-size: 24px;
    margin: 0 0 15px;
    text-align: center;
}

.type .box a span {
    color: #74879E;
    font-size: 15px;
    font-weight: 400;
}

/*  */

.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 2px solid #e8ebef;
    padding-bottom: 30px;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 65%;
    width: 70%;
    height: 3px;
    background: #E8EBEF;
    z-index: -1;
}

.step:last-child::after {
    display: none;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #EFFAFA;
    margin: auto;
    line-height: 40px;
    font-weight: bold;
    border: 1px solid #5ECCC9;
}

.step.active .step-circle {
    background: #5ECCC9;
    color: #fff;
}

.step.completed .step-circle {
    background: #5ECCC9;
    color: #fff;
}

.step.completed::after {
    background: #5ECCC9 !important;
}

.step-title {
    margin-top: 5px;
    font-size: 15px;
    color: #D1D7DF;
    font-weight: 500;
}

.active .step-title,
.completed .step-title {
    color: #5ECCC9;
}

.step-content {
    display: none;
}

.step-content.active {
    display: flex;
    flex-wrap: wrap;
}

.step-content h4 {
    border-bottom: 2px solid #e8ebef;
    color: #17375E;
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    padding: 0 0 35px;
    margin: 0 0 20px;
}

.dinger {
    color: #B42318;
    width: 100%;
    margin: 0 0 20px;
}

.step-content .group {
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
}

.step-content .group label {
    width: 100%;
    margin-bottom: 4px;
    color: #000;
    font-weight: 600;
    font-size: 14px;
}

.step-content .group label i {
    color: #B42318;
    font-style: inherit;
}

.step-content .group select {
    width: 100%;
    padding: 0 15px;
    min-height: 40px;
    border: 1px solid #9DA4AE;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-align: right;
    outline: none;
    background-color: #F3F4F6;
    border: 1px solid #F3F4F6;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../images/down2.svg);
    background-repeat: no-repeat;
    background-position: left 15px center;
}

.step-content input {
    width: 100%;
    padding: 0 15px;
    min-height: 40px;
    border: 1px solid #9DA4AE;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-align: right;
    outline: none;
    text-align: start !important;
    justify-content: flex-end;
}

.step-content .file {
    border: none;
    padding: 0;
}

/*  */
.step-content .group .radio {
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 40px;
    margin: 8px 0;
}

.step-content .group .radio input {
    width: 400px;
    height: 400px;
    opacity: 0;
    z-index: 99;
    position: absolute;
    top: 0;
    right: 0;
}

.step-content .group .radio span {
    height: 40px;
    width: 99%;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    color: #6C737F;
    font-size: 20px;
    border: 1px solid #9DA4AE;
}

.step-content .group .radio input:checked~span {
    background: #5ECCC9;
    color: #fff;
    border-color: #5ECCC9;
}





#nextBtn {
    color: #fff;
    background-color: #5ECCC9;
    width: 80px;
}

#nextBtn:hover {
    background-color: #17375E;
}

#prevBtn {
    color: #fff;
    background-color: #17375E;
    width: 80px;
    margin: 0 10px;
}

#prevBtn:hover {
    background-color: #F5B160;
    color: #fff;
    border-color: #F5B160;
}

#but {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin: 40px 0 0;
    padding: 0 10px;
}

/*  */
.checkbox {
    position: relative;
    width: 50px;
    height: 28px;
    background-color: #E8EBEF;
    border-radius: 40px;
    margin-inline-end: 10px;
    padding: 4px;
    display: block;
}

.checkbox input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.checkbox span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    float: right;
    background: #17375E;
    margin: 0 0 0 auto;
}

.checkbox input:checked~span {
    float: left;
    transition: all 0.3s ease-in-out;
    margin: 0 auto 0 0;
    background: #5ECCC9;

}





@media only screen and (max-width: 768px) {}

.owl-carousel {
    direction: ltr;
}