@charset "UTF-8";
/* #region First Screen */
.first-screen {
    height: auto;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("/assets/images/background-tire-storage.webp") no-repeat;
    background-size: cover;
    background-position: center center;
}
@media (min-width: 960px) {
    .first-screen {
        height: calc(100dvh - 75px);
    }
}
.first-screen .container {
    display: flex;
    align-items: center;
    height: 100%;
}
.first-screen__content {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin: 80px 0;
}
.first-screen__services {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-weight: 500;
    font-size: 17px;
    list-style-type: "– ";
}
.first-screen__services li{
    padding-bottom: 10px;
}
@media (min-width: 768px) {
    .first-screen__services {
        font-size: 21px;
    }
}

/* #endregion */
/* #region Why Us */
.descriptive-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}
@media (min-width: 960px) {
    .descriptive-cards {
        flex-direction: row;
    }
}
.descriptive-cards__items-wrapper {
    flex: 1;
    display: flex;
    gap: 40px;
}
.descriptive-cards__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}
.descriptive-cards__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #266efb;
    border: 2px solid #266efb;
    font-size: 40px;
    border-radius: 100%;
    height: 80px;
    width: 80px;
}
@media (min-width: 960px) {
    .descriptive-cards__icon {
        height: 100px;
        width: 100px;
        font-size: 50px;
    }
}
.descriptive-cards__description {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-wrap: balance;
}
@media (min-width: 960px) {
    .descriptive-cards__description {
        font-size: 18px;
    }
}

/* #endregion */
/* #region Cena */
.price-section {
    max-width: 1000px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 30px;
    column-gap: 30px;
    margin-bottom: 40px;
    background-color: #ffffff;
}
@media (min-width: 768px) {
    .tabs {
        margin-bottom: 50px;
    }
}
.tabs__input:checked:nth-of-type(1) ~ .tabs__content:nth-of-type(1) {
    position: relative;
    opacity: 1;
    transition: 0.3s opacity ease-in, 0.6s transform ease;
    z-index: 1;
}
.tabs__input:checked:nth-of-type(2) ~ .tabs__content:nth-of-type(2) {
    position: relative;
    opacity: 1;
    transition: 0.3s opacity ease-in, 0.6s transform ease;
    z-index: 1;
}
.tabs__input:checked:nth-of-type(3) ~ .tabs__content:nth-of-type(3) {
    position: relative;
    opacity: 1;
    transition: 0.3s opacity ease-in, 0.6s transform ease;
    z-index: 1;
}
.tabs__input:checked + label {
    background-color: #ffffff;
    border-bottom: 2px solid #266efb;
    cursor: default;
}
.tabs__input:checked + label:hover {
    background-color: #ffffff;
}
.tabs__input + label {
    display: block;
    height: 50px;
    padding: 15px;
    flex-grow: 1;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 2px solid #dddddd;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: 0.3s all ease;
    cursor: pointer;
}
.tabs__input + label:hover {
    background-color: #f0f0f0;
}
.tabs__content {
    position: absolute;
    left: 0;
    width: 100%;
    padding-top: 35px;
    opacity: 0;
    z-index: -1;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 0 20px 0 rgba(136, 136, 136, 0.2);
}
.price-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}
.price-table th {
    font-weight: 600;
}
.price-table th,
.price-table td {
    padding: 12px 16px;
    text-align: start;
    border: 1px solid #dddddd;
}

/* #endregion */
/* #region Texts Section */
.texts-section {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}
.texts-section__item {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
@media (min-width: 960px) {
    .texts-section__item {
        width: 60%;
    }
}
.texts-section__description {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    line-height: 140%;
}

/* #endregion */
/* #region FAQ */
.faq {
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 20px 0 rgba(136, 136, 136, 0.2);
}
@media (min-width: 960px) {
    .faq {
        width: 60%;
    }
}
.faq__item {
    display: block;
}
.faq__title {
    position: relative;
    padding: 20px 80px 20px 30px;
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
    transition: background-color 0.3s;
    cursor: pointer;
}
@media (hover: hover) {
    .faq__title:hover {
        background-color: #f0f0f0;
    }
}
.faq__title:after {
    content: "\e900";
    font-family: "Icons";
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    transform-origin: center;
    transition: transform 0.3s;
}
.faq__content {
    max-height: 0;
    padding: 0;
    transition: max-height 0.3s;
}
.faq__content-wrapper {
    padding: 20px 30px;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.3s;
}
.faq__input:checked + .faq__title {
    background-color: #f5f5f5;
}
.faq__input:checked + .faq__title:after {
    transform: translateY(-50%) rotate(-180deg);
}
.faq__input:checked + .faq__title + .faq__content {
    max-height: 500px;
    border-bottom: 1px solid #dddddd;
}
.faq__input:checked + .faq__title + .faq__content .faq__content-wrapper {
    transform: scaleY(1);
}

/* #endregion */
/* #region Blog */
.blog-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 50px;
}
@media (min-width: 635px) {
    .blog-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 960px) {
    .blog-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1220px) {
    .blog-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.blog-card__image {
    display: flex;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1/1;
    max-height: 260px;
}
.blog-card__image-source {
    width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.blog-card__description {
    margin-top: 10px;
    font-size: 14px;
    color: #888888;
}
.blog-card__button {
    margin-top: auto;
}

/* #endregion */
/* #region Kontakt */
.contacts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px 90px;
}
@media (min-width: 768px) {
    .contacts-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }
}

.contacts {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    text-wrap: nowrap;
}
@media (min-width: 768px) {
    .contacts {
        row-gap: 40px;
    }
}

.contact {
    display: flex;
    -moz-column-gap: 15px;
    column-gap: 15px;
}
.contact__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    width: 48px;
    height: 48px;
    font-size: 22px;
    color: #266efb;
    border-radius: 5px;
    box-shadow: 0 0 20px 0 rgba(136, 136, 136, 0.2);
}
@media (min-width: 768px) {
    .contact__icon {
        min-width: 55px;
        min-height: 55px;
        width: 55px;
        height: 55px;
        font-size: 25px;
    }
}
.contact__description {
    line-height: 140%;
}

.map {
    width: 100%;
}

.section-gray {
    padding: 60px 0;
    position: relative;
    background-color: #f5f5f5;
}

.divider-wrapper {
    margin: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.divider {
    margin: 10px 0;
    height: 1px;
    width: 100%;
    color: #1c5fa8;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(167,166,166,1) 50%, rgba(255,255,255,1) 100%);
}

.divider-time {
    color: #1c5fa8;
    font-weight: bold;
}

/* #endregion *//*# sourceMappingURL=main.css.map */

.contacts-section {
    padding-bottom: 100px;
    margin-bottom: 0px;
}

.errors-list {
    padding: 20px;
    font-family: sans-serif;
    /*max-width: 800px;*/
    width: 60%;
    margin: 0 auto;
}

.errors-list h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.errors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.error-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #ffe5e5;
    padding: 12px;
    border-radius: 8px;
}

.error-item p {
    margin: auto 0;
}
.error-item img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: #ff6f61;
    padding: 6px;
    border-radius: 50%;
}

/* Десктопная версия — 2 колонки */
@media (min-width: 768px) {
    .errors-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 768px) {
    .errors-list {
        width: 80%;
    }
}


.shorts-section {
    max-width: 1200px;
    margin: 0 auto;
}

.shorts-title {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.shorts-title img {
    height: 24px;
    margin-right: 10px;
}

.shorts-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.short-card {
    width: 235px;
    cursor: pointer;
}

.short-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

.short-title {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 4px;
}

.short-views {
    font-size: 14px;
    color: #606060;
}
.nav-footer .nav__item {
    color: #ffffff;
}
.gray{
    background-color: #f5f5f5;
    width: 100%;
    height: 100%;
}