html {
    box-sizing: border-box;
}

*, *::after, *::before {
    box-sizing: inherit;
}

a {
    text-decoration: none;
}
input{
    outline: 0;
    outline-offset: 0;
}

.container {
    max-width: 1220px;
    padding: 0 10px;
    margin: 0 auto;
}

body {
    color: #1b1818;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    /*font-family: 'Fira Sans', sans-serif;*/
    font-family: 'Roboto Condensed', sans-serif;
}

.header {
    background-color: #313454;
    position: fixed;
    width: 100%;
    z-index: 3;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo__link {
    width: 70px;
    height: 70px;
}

.menu__list {
    display: flex;
}

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

.menu__list-link {
    text-transform: uppercase;
    color: #FEFEFE;
    font-size: 18px;
    line-height: 21px;
    padding-bottom: 5px;
    transition: all 0.5s;
    border-bottom: 1px solid transparent;
}

.menu__list-link::before {
    content: "";
    position: absolute;
    width: 0;
    left: auto;
    background-color: #FEFEFE;
    height: 3px;
    bottom: -3px;
    transition: all .3s;
    right: 0;
}

.menu__list-link:hover {
    color: #FEFEFE;
}

.menu__list-link:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.phone {
    color: #FEFEFE;
    font-size: 18px;
    line-height: 21px;
}

.top {
    padding-bottom: 10px;
}

.top__heading {
    text-align: center;
    padding: 50px 0 30px;
}

.top__title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 58px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0 auto 20px;
    width: 650px;
}

.application-btn {
    width: 205px;
    height: 50px;
    font-size: 16px;
    color: #FEFEFE;
    text-transform: uppercase;
    line-height: 19px;
    text-align: center;
    background: #C5AC2D;
    padding: 16px 19px 15px;
    transition: all 0.5s;
    border: 1px solid transparent;
    display: inline-block;
}

.application-btn:hover {
    background: #FEFEFE;
    color: #C5AC2D;
    border: 1px solid #C5AC2D;
}

.top__content {
    text-align: center;
    padding-top: 120px;
    width: 100%;
}

.top__text {
    font-size: 24px;
    line-height: 28px;
    margin: 0 auto 60px;
    width: 650px;
}

.top__slider-images {
    max-width: 500px;
    height: 350px;
    padding-right: 0;
}

.top__slider .slick-dots {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.top__slider-text {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    padding-right: 100px;
    text-align: right;
}

.top__slider-text span+span {
    padding-left: 12px;
}

.top__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.top__items {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.top__item {
    border: 1px solid #1b1818;
    width: 150px;
    height: 150px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.5s;
}

.features {
    display: flex;
    flex-wrap: wrap;
    margin: 70px 0;
}

.features__item {
    width: 33.33333%;
    padding: 0 40px;
    margin: 25px 0;
    text-align: center;
    transition: all 0.5s;

}
.features__anim-1{
    animation-name: features__anim-1;
    animation-duration: 1s;

}

@keyframes features__anim-1{
    0% {
        transform: translateY(1000px);
    }
    100% {
        transform: translateY(0);
    }
}
.features__anim-2{
    animation-name: features__anim-2;
    animation-duration: 1.5s;
}
@keyframes features__anim-2{
    0% {
        transform: translateY(1000px);
    }
    100% {
        transform: translateY(0);
    }
}
.features__anim-3{
    animation-name: features__anim-1;
    animation-duration: 2s;
}
@keyframes features__anim-3{
    0% {
        transform: translateY(1000px);
    }
    100% {
        transform: translateY(0);
    }
}

.features__item:hover {
    transform: scale(1.25);
}

.features__icon {
    margin-bottom: 25px;
    max-width: 170px;
}

.features__title {
    margin-bottom: 20px;
    font-size: 14px;
    color: #2d3033;
    font-weight: 700;
    text-transform: uppercase;
}

.features__text {
    font-size: 14px;
    line-height: 1.5;
    color: #6c7279;
}

.company {
    background-color: #313454;
    color: #FEFEFE;
    margin-bottom: 100px;
 

}

.company__title {
    font-size: 24px;
    line-height: 29px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    margin-bottom: 60px;
    padding-top: 105px;
}

.company__text {
    width: 500px;
    padding-bottom: 120px;

}

.company__inner {
    display: flex;

}



.company__inner-left {
    width: 50%;
    animation-name: company;
    animation-duration: 2s;
}
@keyframes company {
    0% {
        transform: translateX(-1000px);
    }
    100% {
        transform: translateX(0);
    }
}


.company__inner-right {
    width: 50%;
    height: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
    animation-name: map;
    animation-duration: 2s;
}
@keyframes map {
    0% {
        transform: translateX(1000px);
    }
    100% {
        transform: translateX(0);
    }
}


.map__text {
    font-size: 18px;
    line-height: 29px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
}

.works {
    display: flex;
    flex-wrap: wrap;
    margin-right: 170px;
    margin-left: 170px;
    padding-bottom: 100px;
}

.works__item {
    width: 25%;
    height: 350px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    position: relative;
    overflow: hidden;
}

.works__item:hover .works__content {
    opacity: 1;
}

.works__photo {
    min-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate3d(-50%, -50%, 0);
}

.works__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #C5AC2D;
    ;
    opacity: 0;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: opacity .2s linear;
}

.works__title {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.works__text {
    font-size: 14px;
    color: #fff;
}

.benefits {
    padding: 100px 0;
}

.benefits__title {
    font-size: 24px;
    line-height: 29px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    margin-bottom: 50px;
}

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

.benefits__list {
    width: 300px;
    list-style: none;
}

.benefits__list-item {
    margin-bottom: 27px;
    padding-right: 26px;
    position: relative;
    text-align: right;
}

.benefits__list-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #332208;
    right: 0;
    top: 3px;
}

.benefits__list-item:nth-child(1), .benefits__list-item:nth-child(7) {
    margin-right: 10px;
}

.benefits__list-item:nth-child(2), .benefits__list-item:nth-child(6) {
    margin-right: 60px;
}

.benefits__list-item:nth-child(3), .benefits__list-item:nth-child(5) {
    margin-right: 110px;
}

.benefits__list-item:nth-child(4) {
    margin-right: 155px;
}

.benefits__content {
    width: 300px;
    text-align: right;
}

.benefits__text {
    margin-bottom: 30px;
    text-align: right;
}

.benefits__text+.benefits__text {
    width: 267px;
    margin-left: auto;
}

.reviews {
    padding: 100px 0;
    background-color: #313454;
    color: #FEFEFE;
}

.reviews__title {
    font-size: 24px;
    line-height: 29px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    margin-bottom: 70px;
}

.slick-initialized .reviews__item {
    display: flex;
}

.reviews__item {
    border: 1px solid #C5AC2D;
    width: 350px;
    min-height: 300px;
    padding: 45px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    margin-right: 30px;
}

.reviews__item-name {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
}

.reviews__item-text {
    text-align: center;
    width: 209px;
    font-size: 16px;
    line-height: 19px;
}

.reviews__slider .slick-dots button {
    background-color: #C5AC2D;
}

.reviews__slider .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
}

.reviews__slider button {
    margin: 0 5px;
    line-height: 12px;
}

.slick-dots {
    position: absolute;
    margin-top: 30px;
    left: 0;
    right: 0;
    text-align: center;
}

.slick-dots li {
    display: inline-block;
    padding: 0 5px;
}

.slick-dots button {
    padding: 0;
    font-size: 0;
    margin: 0;
    width: 11px;
    height: 11px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background-color: transparent;
    outline: none;
}

.slick-active button {
    background-color: #ffffff;
}

.fedback {
    display: flex;
}

.feedback__inner {
    display: flex;
    align-items: center;
    margin: 100px;
}

.feedback__images {
    width: 50%;
}

.map__adress {
    height: 720px;
}



.feedback__inner-img{
    width: 50%;
    margin-right: 70px;
    
}

.feedback__form {
    width: 430px;
    
}

.feedback__title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 5px;
}

.feedback__text {
    margin-bottom: 30px;
}

.feedback__input {
    display: block;
    padding: 20px 0;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.feedback__input::placeholder {
    color: #1B1818;
    font-size: 16px;
    line-height: 19px;
}

.feedback__btn {
    width: 205px;
    height: 50px;
    background-color: #C5AC2D;
    color: #FEFEFE;
    text-transform: uppercase;
    border: none;
    display: inline-block;
    padding: 16px 36px 15px;
    margin-top: 50px;
    font-size: 16px;
    line-height: 19px;
    font-family: 'Roboto Condensed', sans-serif;
    border: 1px solid transparent;
    transition: all 0.5s;
}

.feedback__btn:hover {
    background: #FEFEFE;
    color: #C5AC2D;
    border: 1px solid #C5AC2D;
    display: inline-block;
}

.footer {
    background-color: #313454;
    padding: 100px 0 24px;
}
.footer__img svg{
    fill: #FEFEFE;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 21px;
}

.location {
    width: 70px;
    color: #FEFEFE;
    font-size: 16px;
    line-height: 19px;
    font-family: 'Roboto Condensed', sans-serif;
}

.footer__social {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__social-link {
    margin: 0 15px;
}

.menu__btn {
    display: none;
}

@media(max-width:1250px) {
    .benefits__images {
        width: 40%;
    }
}

@media(max-width:1140px) {
    .rent__inner {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .rent__content {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media(max-width:1000px) {
    .top__heading {
        display: block;
    }
    .top__content {
        width: 100%;
        padding-top: 30px;
    }
    .top__slider {
        width: 100%;
    }
    .top__bottom {
        display: block;
    }
    .top__links {
        padding-right: 0;
        padding-top: 50px;
        text-align: center;
    }
    .top__items {
        width: 100%;
    }
    .benefits__content {
        width: 100%;
        margin-top: 30px;
    }
    .benefit__items {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .benefits__text+.benefits__text {
        width: 100%;
    }
}

@media(max-width:860px) {
    .menu {
        order: 1;
    }
    .menu__list {
        display: block;
        position: absolute;
        top: 100px;
        background-color: #332208;
        left: 0;
        right: 0;
        text-align: center;
        padding: 20px 0;
        transform: translateY(-500px);
        transition: all 0.5s;
    }
    .menu__list.menu__list--active {
        transform: translateY(0)
    }
    .menu__list-link {
        padding: 20px 0;
        display: block;
    }
    .menu__btn {
        display: block;
        width: 35px;
        height: 24px;
        border: none;
        cursor: pointer;
        border-top: 2px solid #FEFEFE;
        border-bottom: 2px solid #FEFEFE;
        background-color: transparent;
        position: relative;
    }
    .menu__btn::before {
        content: '';
        position: absolute;
        width: 35px;
        height: 2px;
        background-color: #FEFEFE;
        left: 0;
        top: 9px;
    }
    .rent__item {
        margin: 30px;
    }
}

@media(max-width:650px) {
    .rent__item {
        width: 100%;
        min-height: 245px;
    }
    .rent__item-title {
        margin-bottom: 20px;
    }
    .rent__content {
        text-align: center;
    }
}

@media(max-width:525px) {
    .top__items {
        flex-wrap: wrap;
    }
    .top__item {
        margin: 20px;
    }
    .top__slider-text {
        padding-right: 0;
    }
    .benefits__images {
        width: 70%;
    }
    .benefits__list-item {
        margin-right: 0;
        text-align: left;
        padding-right: 0;
        padding-left: 26px;
    }
    .benefits__list-item::after {
        right: auto;
        left: 0;
    }
    .benefits__list {
        width: 100%;
    }
    .benefits__list-item:nth-child(4) {
        margin-right: 0;
    }
}

@media(max-width:410px) {
    .top__item {
        width: 100%;
    }
    .top__links {
        text-align: center;
    }
    .top__link {
        margin: 10px 15px;
        display: inline-block;
    }
    .top__link+.top__link {
        margin-left: 0;
    }
    .top__slider-text {
        text-align: right;
    }
    .top__slider-text span {
        display: block;
        margin: 10px 0;
    }
    .rent__content {
        margin: 30px 0;
    }
    .rent__item {
        margin: 30px 0;
    }
}