.freezone-page .content {
    padding: 150px 0 100px;
}
@media only screen and (max-width: 1200px) {
    .freezone-page .content {
        padding: 135px 0 95px;
    }
}
@media only screen and (max-width: 992px) {
    .freezone-page .content {
        padding: 120px 0 90px;
    }
}
@media only screen and (max-width: 768px) {
    .freezone-page .content {
        padding: 105px 0 85px;
    }
}
@media only screen and (max-width: 576px) {
    .freezone-page .content {
        padding: 90px 0 80px;
    }
}
.freezone__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}
.freezone__title {
    font-weight: 400;
    font-size: 55px;
    line-height: 110%;
    color: #0f1011;
    padding-bottom: 50px;
    border-bottom: 1px solid #c4c4c4;
}
@media only screen and (max-width: 1200px) {
    .freezone__title {
        font-size: 48px;
    }
}
@media only screen and (max-width: 992px) {
    .freezone__title {
        font-size: 41px;
        padding-bottom: 30px;
    }
}
@media only screen and (max-width: 768px) {
    .freezone__title {
        font-size: 36px;
    }
}
@media only screen and (max-width: 576px) {
    .freezone__title {
        font-size: 28px;
        line-height: 120%;
    }
}
.freezone__items {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, 1fr);
    grid-gap: 12px 20px;
    gap: 12px 20px;
}
@media only screen and (max-width: 992px) {
    .freezone__items {
        margin-top: 30px;
        gap: 15px;
        grid-auto-rows: minmax(170px, 1fr);
    }
}
@media only screen and (max-width: 768px) {
    .freezone__items {
        grid-auto-rows: minmax(160px, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 576px) {
    .freezone__items {
        grid-auto-rows: minmax(150px, 1fr);
        grid-template-columns: 1fr;
    }
}
.freezone__item {
    position: relative;
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
    z-index: 1;
    transition: background 0.3s;
}
@media only screen and (max-width: 992px) {
    .freezone__item {
        padding: 20px;
    }
}
.freezone__item-counter {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #909cf8;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}
@media only screen and (max-width: 992px) {
    .freezone__item-counter {
        font-size: 18px;
    }
}
@media only screen and (max-width: 576px) {
    .freezone__item-counter {
        font-size: 16px;
    }
}
.freezone__item--hovered .freezone__item-counter {
    color: #fff;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}
.freezone__item-caption {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #0f1011;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}
@media only screen and (max-width: 992px) {
    .freezone__item-caption {
        font-size: 18px;
    }
}
@media only screen and (max-width: 576px) {
    .freezone__item-caption {
        font-size: 16px;
    }
}
.freezone__item--hovered .freezone__item-caption {
    color: #fff;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}
.freezone__item-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    background: linear-gradient(0deg, rgba(38, 47, 60, 0.8), rgba(38, 47, 60, 0.8));
    transition: all 0.3s;
    z-index: -1;
}
.freezone__item-bg img {
    mix-blend-mode: multiply;
    display: block;
    max-width: 100%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.freezone__item--hovered .freezone__item-bg {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
