@import './font.css';

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

:root {
    --fontAkro: 'Akrobat';
    --fontAlet: 'Alethiapro';
    --fontInter: 'Inter';
    --fontManrope: 'Manrope';
    --fontLato: 'Lato';
    --darkBlue: #071C35;
    --bg: #ffffff;
    --white: #ffffff;
    --gray: #777777;
}

a {
    text-decoration: none;
}

ul,
ol,
li {
    list-style: none;
}

img {
    display: block;
}

body {
    background: var(--bg);
}

.container {
    max-width: 1330px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* header section >>> */

.header__content {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 810px;
}

.header__content-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header__content-items {
    max-width: 382px;
    width: 100%;
    padding: 30px 30px 50px;
    margin-left: 70px;
    margin-bottom: 70px;
    background: rgba(7, 28, 53, 0.5);
    backdrop-filter: blur(7.5px);
}

.header__content-items>img {
    margin-bottom: 30px;
}

.header__content-title {
    padding-top: 30px;
    position: relative;
    max-width: 215px;
    font-family: var(--fontAlet);
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
    color: var(--white);
}

.header__content-title::before {
    content: "";
    width: 100px;
    height: 1px;
    background: var(--white);
    position: absolute;
    top: 0;
    left: 0;
}

.header__content-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 30px 0 50px;
}


.header__content-sub {
    font-family: var(--fontAlet);
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    text-transform: uppercase;
    color: var(--white);
}

.header__content-text {
    max-width: 55px;
    font-family: var(--fontLato);
    font-weight: 400;
    line-height: 19px;
    color: #C4C4C4;
}

.header__content-btn {
    display: block;
    max-width: 164px;
    position: relative;
    font-family: var(--fontLato);
    font-weight: 500;
    line-height: 24px;
    color: var(--white);
}

.header__content-btn::before {
    content: url(../images/header-arrow.svg);
    position: absolute;
    top: 0;
    right: -5px;
}

/* <<< header section end */

/* main section >>> */

.main {
    position: relative;
}

/* MAIN LINE >>> */

.main__memo {
    max-width: 902px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    padding: 0 15px;
    display: flex;
    justify-content: center;
}

.main__memo-line {
    width: 1px;
    height: 100%;
    background: #071c350d;
}

.main__memo-line::before,
.main__memo-line::after {
    content: "";
    width: 1px;
    height: 100%;
    background: #071c350d;
    position: absolute;
    top: 0;
    left: 0;
}

.main__memo-line::after {
    right: 0;
    left: auto;
}

/* <<< MAIN LINE */

/* SALE SECTION >>> */
.main__sale {
    padding: 153px 0 185px;
    display: flex;
    align-items: center;
    column-gap: 60px;
}

.main__sale-image {
    position: relative;
    max-width: 500px;
    width: 100%;
    height: 547px;
}

.main__sale-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main__sale-shadow {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.main__sale-title {
    font-family: var(--fontAlet);
    font-weight: 400;
    font-size: 44px;
    line-height: 53px;
    color: var(--darkBlue);
}

.main__sale-text {
    max-width: 620px;
    font-family: var(--fontLato);
    font-weight: 300;
    line-height: 24px;
    color: var(--gray);
    margin: 30px 0 50px;
}

.main__sale-catalog {
    max-width: 650px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.main__sale-sub {
    font-family: var(--fontAlet);
    font-weight: 400;
    font-size: 44px;
    line-height: 44px;
    color: var(--darkBlue);
}

.main__sale-name {
    text-transform: uppercase;
    font-family: var(--fontLato);
    font-weight: 300;
    color: var(--gray);
    margin-top: 10px;
}

.main__sale-btn {
    padding: 10px 60px;
    background: var(--darkBlue);
    border: none;
    outline: none;
    text-transform: uppercase;
    font-family: var(--fontLato);
    font-weight: 400;
    line-height: 19px;
    color: var(--white);
    cursor: pointer;
}

/* <<< SALE SECTION */
/* PROJECT SECTION >>> */

.main__project-title {
    text-transform: uppercase;
    text-align: center;
    font-family: var(--fontAlet);
    font-weight: 400;
    font-size: 54px;
    line-height: 40px;
    color: var(--darkBlue);
    margin-bottom: 52px;
}

.main__project-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
}

.main__project-item {
    border: 1px solid #071c351a;
    padding: 15px;
    max-width: 420px;
    transition: 0.5s;
}

.main__project-item:hover {
    transform: scale(1.05);
}

.main__project-el {
    position: relative;
}

.main__project-el>img {
    width: 100%;
    height: 100%;
}

.main__project-sub {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 22px 15px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(7.5px);
}

.main__project-name {
    text-transform: uppercase;
    font-family: var(--fontAlet);
    font-weight: 400;
    font-size: 25px;
    line-height: 25px;
    color: var(--darkBlue);
}

.main__project-text {
    margin-top: 7px;
    text-transform: uppercase;
    font-family: var(--fontLato);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--darkBlue);
}

.main__project-text>span {
    font-size: 20px;
}

/* <<< PROJECT SECTION */

.main__location {
    display: flex;
    justify-content: flex-end;
    margin-top: 110px;
    background: var(--bg);
}

.main__location-title {
    max-width: 457px;
    text-transform: uppercase;
    font-family: var(--fontAlet);
    line-height: 52px;
    font-size: 44px;
    font-weight: 400;
    color: var(--darkBlue);
    position: absolute;
    top: 268px;
    left: -21px;
}

.main__location-wrapper {
    position: relative;
}

.main__location-wrapper>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main__location-el {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main__location-item {
    width: 200px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 12px;
    left: calc(50% - 100px);
    transition: 0.4s ease-out;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.main__location-item.active {
    opacity: 1;
    height: 200px;
    z-index: 99;
}

.main__location-item>img {
    width: 100%;
    height: 120px;
}

.main__location-info {
    position: relative;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main__location-name {
    max-width: 135px;
    font-family: var(--fontLato);
    font-weight: 500;
    line-height: 19px;
    color: var(--darkBlue);
    text-align: center;

}

#element-1 {
    left: 49%;
    bottom: 68%;

}

#element-2 {
    left: 40%;
    bottom: 53%;
}

#element-3 {
    left: 28%;
    bottom: 14%;
}

.main__location-dot {
    margin-top: 10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--darkBlue);
    border: 5px solid var(--white);
    position: relative;
    cursor: pointer;
}

.main__location-dot::before {
    content: '';
    width: 31px;
    height: 31px;
    position: absolute;
    top: calc(50% - 15.5px);
    left: calc(50% - 15.5px);
    border-radius: 50%;
    border: 5px solid var(--darkBlue);
    transition: 0.5s ease-in-out;
    transform: scale(0);
}

.main__location-dot:hover::before {
    transform: scale(1);
}

/* <<< LOCATION SECTION */
/* CATALOG SECTION >>>*/
.main__catalog {
    height: 1155px;
    margin: 36px 0 186px;
}

.main__catalog-content {
    display: flex;
    justify-content: space-between;
    height: 100%;
    column-gap: 20px;
}

.main__catalog-bar {
    max-width: 310px;
    width: 100%;
    height: 358px;
    background: var(--white);
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 14px 3px rgba(0, 0, 0, 0.03);
}

.main__catalog-name {
    text-transform: uppercase;
    font-family: var(--fontLato);
    font-weight: 500;
    font-size: 20px;
    color: var(--darkBlue);
    line-height: 24px;
    margin-bottom: 12px;
}

.main__catalog-markers {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.main__catalog-list:nth-child(1) {
    margin-bottom: 30px;
}

.main__catalog-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    color: var(--gray);
    font-family: var(--fontLato);
    font-weight: 500;
}

.main__catalog-btn.active {
    color: var(--darkBlue);
}

.main__catalog-btn.active .main__catalog-radio {
    background: var(--darkBlue);
}

.main__catalog-radio {
    width: 10px;
    height: 10px;
    border: 2px solid var(--white);
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
    transition: 0.3s;
}

.main__catalog-radio::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--darkBlue);
    position: absolute;
    top: calc(50% - 6px);
    left: calc(50% - 6px);
}

.main__catalog-controls {
    position: relative;
    max-width: 970px;
    width: 100%;
}

.main__catalog-views {
    padding: 25px 25px 50px;
    border: 1px solid rgba(7, 28, 53, 0.1);
    background: var(--bg);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s;
}

.main__catalog-views.active {
    opacity: 1;
    z-index: 99;
}

.main__catalog-info {
    position: relative;
}

.main__catalog-info>img {
    width: 100%;
}

.main__catalog-sub {
    padding: 28px 47px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(7.1134px);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.main__catalog-title {
    font-family: var(--fontAlet);
    font-weight: 400;
    font-size: 28px;
    line-height: 22px;
    color: var(--darkBlue);
    margin-bottom: 10px;
}

.main__catalog-text {
    font-family: var(--fontLato);
    font-weight: 300;
    font-size: 15px;
    color: var(--darkBlue);
    line-height: 22px;
    max-width: 825px;
}

.main__catalog-slider {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    max-width: 750px;
    width: 100%;
}

.slider__info-name {
    font-family: var(--fontAlet);
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    color: var(--darkBlue);
}

.slider__info-num {
    font-size: 30px;
    line-height: 40px;
}

.slide__info-version {
    font-family: var(--fontAlet);
    font-weight: 400;
    color: var(--darkBlue);
}

.slide__info-length {
    font-family: var(--fontLato);
    font-weight: 300;
    color: var(--gray);
}


.slider__inner {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.slider__line {
    height: 400px;
    max-width: 750px;
    width: 100%;
}

.slider__slide {
    display: flex;
    justify-content: space-between;
    background: var(--white);
    filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.07));
    border: 1px solid rgba(7, 28, 53, 0.1);
}

.slider__slide-sub {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slider__slide-title {
    text-transform: uppercase;
    font-family: var(--fontAlet);
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    color: var(--darkBlue);
}

.slider__slide-room {
    display: flex;
    align-items: center;
    font-family: var(--fontLato);
    font-weight: 400;
    line-height: 19px;
    color: var(--darkBlue);
    margin: 17px 0 17px;
}

.slider__slide-room>img {
    margin-right: 10px;
}

.slider__slide-text {
    font-family: var(--fontLato);
    font-weight: 300;
    line-height: 24px;
    color: var(--gray);
}

.slider__slide-price {
    font-family: var(--fontLato);
    font-weight: 400;
    line-height: 40px;
    color: var(--darkBlue);
    font-size: 16px;
    margin-bottom: 14px;
}

.slider__slide-price>span {
    font-size: 20px;
}

.slider__slide-btn {
    max-width: 250px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--darkBlue);
    border: none;
    outline: none;
    cursor: pointer;
    text-transform: uppercase;
    font-family: var(--fontLato);
    font-size: 14px;
    color: var(--white);
}

.slider__controls {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.slider__controls button {
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
}

.main__option-item {
    position: relative;
    padding-bottom: 100px;
}

.option__item-top {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 150px ;
}

.option__item-bottom {
    display: flex;
    justify-content: flex-end;
}

.main__option-sub {
    padding: 50px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(7.5px);
    position: absolute;
}

.option__sub-one {
    top: 213px;
    right: 100px
}

.option__sub-two {
    top: 171px;
     left: 100px;
}

/* hali bitmadi */

.main__option-title {
    max-width: 500px;
    font-family: var(--fontAlet);
    font-weight: 400;
    font-size: 50px;
    line-height: 60px;
    color: var(--darkBlue);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.main__option-title::before {
    content: '';
    position: absolute;
    width: 236px;
    height: 1px;
  
    background: var(--darkBlue);
    opacity: 0.1;
    left: 0;
    bottom: 0;
}

.main__option-text {
    font-family: var(--fontLato);
    font-weight: 300;
    line-height: 24px;
    color: var(--darkBlue);
    margin-top: 30px;
}

.option__sub-one .main__option-text{
    max-width: 510px ;
}

.option__sub-two .main__option-text {
    max-width: 540px;
}

.main__option-btn {
    margin-top: 26px;
    border: 1px solid rgba(7, 28, 53, 0.15);
    padding: 12px 30px;
    cursor: pointer;
    background: transparent;
    text-transform: uppercase;
    color: var(--darkBlue);
    font-size: 14px;
    font-weight: 400;
}

.main__form {
    margin: 150px 0 50px;
}

.main__form-content {
    display: flex;
    justify-content: flex-end;
}

.main__form-title {
    font-family: var(--fontAlet);
    font-weight: 400;
    font-size: 44px;
    line-height: 40px;
    color: var(--darkBlue);
}

.main__form-sub {
    display: flex;
    align-items: center;
    margin: 26px 0 46px;
}

.main__form-subtitle {
    font-family: var(--fontLato);
    font-weight: 500;
    color: var(--darkBlue);
    line-height: 24px;
    position: relative;
    padding-left: 16px;
}

.main__form-subtitle::before {
    content: '';
    width: 50px;
    height: 50px;
    background: #85DF99;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    top: calc(50% - 25px);
    left: 0;
}

.main__form-text {
    max-width: 434px;
    font-family: var(--fontLato);
    font-weight: 300;
    color: var(--gray);
    line-height: 24px;
    margin-left: 35px;
}

.main__form-doc {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.main__form-doc > input {
    width: 200px;
    border: none;
    outline: none;
    padding: 10px 12px ;
    border-bottom: 1px solid rgba(7, 28, 53, 0.1);
    font-family: var(--fontLato);
    font-size: 16px;
    font-weight: 300;
    color: var(--darkBlue);
    margin-right: 20px;
}


.main__form-doc > input::placeholder {
    color: var(--darkBlue);
}

.main__form-btn {
    padding: 12px 44px;
    border: 1px solid rgba(7, 28, 53, 0.15);
    background: transparent;
    outline: none;
    cursor: pointer;
    text-transform: uppercase;
    font-family: var(--fontLato);
    font-size: 14px;
    font-weight: 400;
    background: var(--white);
}

/* FOOTER SECTION >>> */
.footer {
    background: var(--darkBlue);
    position: relative;
    padding: 80px 0;
}

.footer__image {
    position: absolute;
    left: 112px;
    bottom: 0;
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 85px;
}

.footer__content-list {
    display: flex;
    align-items: center;
}

.footer__content-link {
    font-family: var(--fontLato);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--white);
    text-transform: uppercase;
}

.footer__content-list li:not(:last-child) {
    margin-right: 30px;
}

.footer__content-list:first-child {
    margin-bottom: 30px;
}

.footer__content-linknum {
    font-family: var(--fontLato);
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
}

.footer__content-linknum > span {
    color: #C3C3C3;
}

.footer__content-social {
    display: flex;
    align-items: center;
    font-family: var(--fontLato);
    font-weight: 400;
    color: #C3C3C3;
}

.footer__content-social > img {
    margin-left: 10px;
}