@font-face {
    font-family: 'Roboto', sans-serif;
    src: url('../fonts/Roboto-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto', sans-serif;
    src: url('../fonts/Roboto-Thin.ttf');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy', sans-serif;
    src: url('../fonts/GilroyRegular.ttf');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: inherit;
    color: var(--text-color);
}

html,
body {
    background-color: var(--bg-color);
    font-family: 'Roboto', sans-serif;
}

:root {
    --site-color: #FFCC00;
    --bg-color: #fff;
    --text-color: #000;
}

a {
    display: inline-block;
    text-decoration: none;
}

span {
    display: inline-block;
}

li {
    list-style: none;
}

input,
button,
select,
textarea {
    outline: none;
}

header,
section,
footer,
main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
}

section {
    margin-bottom: 90px;
}

.carcas {
    position: relative;
    z-index: 1;
    padding: 230px 0 100px;
    overflow: hidden;
}

.container {
    -ms-flex-preferred-size: 1460px;
    flex-basis: 1460px;
    max-width: 100%;
    padding: 0 10px;
}

.text {
    line-height: 1.4;
}

.img img {
    width: 100%;
    height: 100%;
}

.obj_cover {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.obj_contain {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

header {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    margin: 0;
    z-index: 10;
    transition: top 0.2s linear;
}

header.fixed {
    top: 0;
}

.big-frame {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: var(--bg-color);
    border: 1px solid var(--site-color);
    border-radius: 15px;
    padding: 16px 40px 17px;
}

.logo {
    width: 235px;
    height: 67px;
}

.logo a,
.logo img {
    width: 100%;
    height: 100%;
}

.site-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 130px;
    -moz-column-gap: 130px;
    column-gap: 130px;
}

.site-navigation a {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    border-radius: 40px;
    padding: 5px 10px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.site-navigation a:hover,
.site-navigation a.active {
    background-color: var(--site-color);
}

#about .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#about .content {
    max-width: 710px;
}

h1 {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 1.2;
    margin-bottom: 40px;
}

#about .subtitle {
    font-weight: 300;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 60px;
}

#about .panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.call-us {
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    background-color: var(--site-color);
    border-radius: 30px;
    padding: 15px 30px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.call-us:hover {
    background-color: var(--text-color);
    color: var(--site-color);
}

.call-us:active {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

#about .panel {
    margin-bottom: 90px;
}

#about .panel .img {
    width: 257px;
    height: 60px;
}

.section-title {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
}

#about .img-part {
    margin-left: 50px;
}

#about .img-part img {
    -o-object-position: top;
    object-position: top;
}

#services .cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 40px;
}

.services-card {
    max-width: 420px;
}

.services-card .count {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 1.2;
    border-bottom: 1px solid var(--site-color);
    margin-bottom: 23px;
}

.services-card .card-title {
    font-weight: 300;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
}

#rent {
    position: relative;
    z-index: 1;
}

#rent .figure {
    position: absolute;
    left: 0;
    width: 2400px;
    height: 375px;
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 0.1;
    z-index: -1;
}

#rent .figure1 {
    top: -50px;
    background-color: var(--site-color);
}

#rent .figure2 {
    top: 650px;
    background-color: var(--text-color);
}

#rent .cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 21px;
    -moz-column-gap: 21px;
    column-gap: 21px;
    row-gap: 40px;
    margin-bottom: 40px;
}

.rent-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    max-width: calc(33.33% - 14px);
}

.rent-card .top {
    position: relative;
    height: 300px;
    background-color: var(--bg-color);
    border-radius: 15px;
}

.rent-card .schedule {
    position: absolute;
    top: 16px;
    left: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    background-color: #FFCC0066;
    border-radius: 40px;
    padding: 5px 10px;
    z-index: 1;
}

.rent-card .img {
    width: 100%;
    height: 100%;
}

.rent-card .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    line-height: 1.2;
    background-color: var(--bg-color);
    border-radius: 15px;
    padding: 30px;
    margin-top: 5px;
}

.rent-card .card-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.rent-card ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
    margin-top: auto;
}

.rent-card li {
    font-weight: 300;
    font-size: 30px;
}

.attention {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    background-color: var(--site-color);
    border-radius: 100px;
    padding: 20px 38px;
}

.attention span {
    color: #FF0000;
}

.contacts_wapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.contacts_wapper .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
    min-width: 345px;
}

.contacts-title {
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
}

address {
    font-weight: 300;
    font-size: 30px;
    font-style: normal;
    line-height: 1.2;
}

.contacts_wapper .tels {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
    font-weight: 300;
    font-size: 30px;
    line-height: 1.2;
}

.contacts_wapper .tels a:hover {
    color: var(--site-color);
}

.networks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
    row-gap: 20px;
}

.networks img {
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.networks img:hover {
    -webkit-filter: brightness(0.1);
    filter: brightness(0.1);
}

.map {
    width: 100%;
    height: 424px;
    border-radius: 15px;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 1440px) {
    #services .cards {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media (max-width: 1260px) {
    #rent .cards {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
    .rent-card {
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 1200px) {
    .site-navigation {
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
    }

    #about .content {
        max-width: 580px;
    }

    h1 {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    #about .content {
        max-width: 100%;
    }

    #about .img-part {
        display: none;
    }
    .rent-card .card-title {
        font-size: 30px;
    }
    .rent-card li {
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .big-frame {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px;
    }

    h1,
    #about .subtitle,
    .section-title,
    .services-card,
    .text {
        text-align: center;
    }

    #services .cards {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .services-card .count {
        margin: 0 auto 23px;
    }

    .rent-card .top,
    .rent-card .bottom {
        -webkit-box-shadow: 0 0 6px #00000017;
        box-shadow: 0 0 6px #00000017;
    }
}

@media (max-width: 767px) {
    .contacts_wapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        row-gap: 40px;
    }

    .networks {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    header {
        top: 10px;
    }

    .carcas {
        padding: 200px 0 40px;
    }

    .logo {
        height: 50px;
    }

    .big-frame {
        padding: 8px 10px 9px;
    }

    .site-navigation {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .attention {
        font-size: 30px;
    }
}

@media (max-width: 620px) {
    .rent-card {
        max-width: 100%;
    }
}

@media (max-width: 540px) {
    #about .panel .img {
        width: 110px;
        height: 30px;
    }

    .call-us {
        font-size: 16px;
        padding: 15px 20px;
    }

    h1 {
        font-size: 40px;
    }

    #about .subtitle {
        margin-bottom: 40px;
    }

    #about .subtitle {
        font-size: 20px;
    }

    #about .panel .img {
        height: 50px;
    }

    .section-title {
        font-size: 35px;
        margin-bottom: 30px;
    }

    #about .panel,
    section {
        margin-bottom: 60px;
    }

    .text {
        font-size: 16px;
        row-gap: 20px;
    }

    .services-card .count {
        font-size: 40px;
    }

    .services-card .card-title {
        font-size: 25px;
    }

    .rent-card .card-title {
        font-size: 30px;
    }

    .attention,
    .rent-card li {
        font-size: 20px;
    }

    .contacts-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    address,
    .contacts_wapper .tels {
        font-size: 20px;
    }

    .networks img {
        width: 40px;
        height: 40px;
    }

    .networks {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }

    #about .img-part {
        max-width: 360px;
        display: block;
        margin: 30px auto 0;
    }

    #about .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 470px) {
    .site-navigation {
        max-width: 250px;
        row-gap: 5px;
    }
}