.intro {
    position: relative;
    min-height: 100dvh;
    color: var(--base);
    background-color: var(--text);
    -webkit-box-flex: 1;
    -ms-flex: auto auto auto;
    flex: auto auto auto;
    padding-top: 7rem;
}

.intro.section {
    padding-top: 7rem;
}

.intro.intro-start {
    min-height: 40rem;
}

.intro.intro-start .section-header p {
    max-width: 100%;
}

.intro .container {
    position: relative;
    z-index: 2;
}

.intro .section-header a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: var(--base);
}

.intro-styled {
    min-height: 40rem;
    background-image: url("../../img/intro-bg.svg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    background-color: #d95491;
    padding-top: 7rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.intro-styled.intro-styled-min {
    padding: 3rem 0 !important;
}

.intro-styled.intro-styled-h {
    min-height: 100dvh;
}

.intro-styled.intro-styled-pb0 {
    padding-bottom: 0;
}

.intro-styled::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../../img/intro-bg-grid.svg");
    background-position: left top;
}

.intro-styled .intro-details {
    max-width: 38rem;
    padding-bottom: 2rem;
}

.intro-styled .section-header p {
    color: var(--base);
}

.intro-content {
    max-width: 60rem;
}

.intro-content.center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.intro-content .section-header p {
    max-width: 100%;
}

.intro-details {
    max-width: 43rem;
}

.intro-details.md {
    max-width: 47rem;
}

.intro-details-center {
    max-width: 54rem;
    margin: 0 auto;
}

.intro-details-center.wide {
    max-width: 100%;
}

.intro-discount {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 1rem;
}

.intro-img {
    margin: 0 auto;
}

.intro-img-abs {
    position: relative;
    width: 100%;
    max-width: 30rem;
    padding-left: 0.5rem;
    margin: 3rem 0 0 auto;
    z-index: 1;
}

.intro-img-abs img {
    width: 100%;
}

.intro-bg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.intro-bg,
.intro-bg-item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.intro-bg-item {
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.intro-bg-item.active {
    opacity: 1;
}

@media (min-width: 768px) {
    .intro-discount {
        font-size: 7.5rem;
    }

    .intro-styled .intro-details {
        padding-bottom: 0;
    }

    .intro-img-abs {
        max-width: 36.25rem;
        padding-left: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .intro-styled .intro-discount {
        font-size: 5.5rem;
    }

    .intro-styled .section-header.lg h1, .intro-styled .section-header.lg h2 {
        font-size: 2.875rem;
    }

    .intro-styled .section-header.lg p {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .intro-styled {
        padding-top: 7rem;
    }

    .intro-styled .intro-details {
        padding-bottom: 6rem;
    }

    .intro-img-abs {
        position: absolute;
        right: 0;
        bottom: 3rem;
        max-width: 30rem;
        margin: 0 0 3.125rem 0;
    }
}

@media (min-width: 1200px) {
    .intro-img-abs {
        max-width: 36.25rem;
        margin: 0;
    }
}

@media (min-height: 1024px) {
    .intro {
        min-height: 1024px;
    }

    .intro-styled {
        min-height: 40rem;
    }

    .intro-styled.intro-styled-h {
        min-height: 1024px;
    }
}

.features-item {
    max-width: 18rem;
    margin: 0 auto;
}

.features-item .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 12rem;
    margin: 1.5rem auto 0;
}

.features-item-icon {
    width: 7rem;
    height: 7rem;
    margin: 0 auto 1.25rem;
}

.features-item-icon img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.features-item-heading {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.features-item-heading.sm {
    font-size: 1.25rem;
}

.carousel-brands {
    padding: 0 2rem;
}

.carousel-brands .brands-item {
    width: calc(50% - 0.75rem);
    margin-right: 1.5rem;
}

.brands-item {
    --logo-max-height: 2rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    min-height: 9.375rem;
    -webkit-transition: border-color 0.2s;
    transition: border-color 0.2s;
}

.brands-item:hover {
    border-color: var(--accent);
}

.brands-item img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    max-height: var(--logo-max-height);
}

.brands-item- {
    --logo-max-height: 2rem;
    height: var(--logo-max-height);
}

.brands-item- img {
    display: block;
    width: auto;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    max-height: var(--logo-max-height);
}

@media (min-width: 768px) {
    .carousel-brands .brands-item {
        width: calc(33.3% - 1rem);
    }

    .carousel-brands-lg {
        padding: 0 2.5rem;
    }
}

@media (min-width: 992px) {
    .carousel-brands .brands-item {
        width: calc(25% - 1.125rem);
    }
}

@media (min-width: 1400px) {
    .carousel-brands .brands-item {
        width: calc(20% - 1.25rem);
    }
}

.video-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    width: 100%;
    max-width: 23.25rem;
    margin: 0 auto;
    height: 12.75rem;
    border-radius: 1rem;
    overflow: hidden;
}

.video-item:hover::after {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.video-item::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4rem;
    height: 4rem;
    margin: -2rem 0 0 -2rem;
    background-image: url("../../img/ic-play.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}

@media (min-width: 768px) {
    .video-item {
        margin: 0;
    }
}

.banner {
    color: var(--base);
    background-image: url("../../img/intro-bg.svg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    background-color: #d95491;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../../img/intro-bg-grid.svg");
    background-position: left top;
}

.banner .container {
    position: relative;
    z-index: 1;
}

.banner-footer {
    position: relative;
    margin-top: 5rem;
    z-index: 1;
}

.banner-footer .copyright {
    color: var(--base);
}

.banner-footer .footer-contacts {
    margin-bottom: 3rem;
}

.banner-footer .footer-contact-link {
    color: var(--base);
    fill: var(--base);
}

.banner-footer .footer-contact-link:hover {
    color: var(--base);
    fill: var(--base);
}