:root {
    --bg: #f3f3f5;
    --text: #161618;
    --muted: rgba(22, 22, 24, .68);
    --soft: rgba(255, 255, 255, .74);
    --red: #c62833;
    --shadow: 0 20px 58px rgba(19, 26, 43, .08);
    --r: 20px;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased
}

*, *:before, *:after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text)
}

button, input, textarea, select {
    font: inherit
}

button {
    border: 0;
    padding: 0;
    background: transparent
}

a {
    color: inherit;
    text-decoration: none;
    position: relative
}

a:not(.button-pill):not(.icon-link):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: .25s
}

a:hover:after {
    width: 100%
}

.site-root {
    min-height: 100vh
}

.page-shell {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 28px
}

.section-space {
    padding: 44px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .6s ease forwards
}

.section-space:nth-child(2) {
    animation-delay: .1s
}

.section-space:nth-child(3) {
    animation-delay: .2s
}

.section-space--hero {
    padding-top: 0
}

.section-space--contact {
    padding-bottom: 80px
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: none
    }
}

.glass-panel {
    background: var(--soft);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, .82);
    box-shadow: var(--shadow)
}

.eyebrow {
    margin: 0 0 16px;
    font-size: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(22, 22, 24, .46);
    font-weight: 600
}

.hero-title, .section-title {
    margin: 0;
    font-weight: 600
}

.hero-title {
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.1;
    letter-spacing: -.03em
}

.section-title {
    font-size: clamp(24px, 2.3vw, 42px);
    line-height: 1.06;
    letter-spacing: -.04em
}

.lead-text {
    font-size: clamp(21px, 2vw, 29px);
    line-height: 1.35;
    color: rgba(22, 22, 24, .74);
    letter-spacing: -.024em
}

.body-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.58;
    color: var(--muted)
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 30;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    background: rgba(243, 243, 245, .88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px)
}

main.index-page {
    padding-top: 110px
}

main.base-page{
    padding-top: 110px;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 28px
}

.site-logo {
    font-size: 26px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -.05em;
    white-space: nowrap
}

.site-nav, .header-socials, .social-row, .slider-controls, .button-row {
    display: flex;
    align-items: center
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(0, 0, 0, .06);
    color: var(--red);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(19, 26, 43, .08)
}

.burger-icon {
    width: 20px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.burger-icon span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: currentColor
}

.mobile-menu {
    display: none
}

.site-nav {
    gap: 32px;
    font-size: 15px;
    color: rgba(0, 0, 0, .68)
}

.site-nav__link {
    transition: .25s;
}

.section-space{
    scroll-margin-top: 80px;
}

.site-nav__link:hover {
    color: var(--red)
}

.header-socials {
    gap: 8px
}

.icon-link, .social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--red);
    transition: .25s
}

.icon-svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
    stroke: none
}

.icon-link, .social-button {
    color: var(--red)
}

.social-button .icon-svg {
    width: 24px;
    height: 24px
}

.icon-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .82);
    box-shadow: 0 10px 30px rgba(19, 26, 43, .06)
}

.icon-link:hover, .social-button:hover, .button-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12)
}

.hero-grid, .about-grid, .contact-grid, .company-block {
    display: grid;
    align-items: stretch;
    gap: 24px
}

.hero-grid {
    grid-template-columns:1.08fr .92fr
}

.about-grid {
    grid-template-columns:.88fr 1.12fr
}

.contact-grid {
    grid-template-columns:420px 1fr
}

.company-block {
    grid-template-columns:.9fr 1.1fr;
    padding: 32px;
    border-radius: var(--r)
}

.hero-card, .services-block, .about-block, .contact-block {
    border-radius: var(--r);
    padding: 32px
}

.hero-lead {
    max-width: 760px;
    margin: 32px 0 0
}

.button-row {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px
}

.button-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: .25s
}

.button-pill--accent {
    background: var(--red);
    color: #fff
}

.button-pill--light {
    background: rgba(255, 255, 255, .85)
}

.frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    min-height: 0;
    height: auto;
    border-radius: var(--r);
    background: linear-gradient(145deg, #fbfbfd, #eceef4, #e0e4ee);
    border: 1px solid rgba(255, 255, 255, .88);
    box-shadow: inset 0 1px rgba(255, 255, 255, .92), 0 24px 80px rgba(15, 23, 42, .08)
}

.frame__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(.94);
    transition: opacity .75s ease
}

.frame__image.is-active {
    opacity: .94
}

.frame--hero, .frame--about, .frame--contact {
    min-height: 0;
    height: auto;
    aspect-ratio: 1/1
}

.frame__caption-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    z-index: 2
}

.frame__caption {
    max-width: 360px;
    padding: 20px;
    border-radius: 16px
}

.frame__caption-text {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.45;
    color: var(--muted)
}

.frame__caption-title {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 600
}

.frame__photo-badge {
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 2;
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--red)
}

.accent-orb {
    position: absolute;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(206, 40, 51, .25), rgba(206, 40, 51, 0));
    filter: blur(6px);
    z-index: 2
}

.accent-orb--left {
    left: 20px;
    bottom: 10px;
    width: 260px;
    height: 260px
}

.accent-orb--right {
    top: 70px;
    right: 40px;
    width: 180px;
    height: 180px;
    opacity: .8
}

.four-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 18px
}

.stat-card {
    border-radius: 16px;
    padding: 28px
}

.stat-card__value {
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: .6s
}

.stat-card__value.visible {
    opacity: 1;
    transform: none
}

.stat-card__text {
    max-width: 240px;
    margin-top: 16px
}

.services-layout {
    display: grid;
    grid-template-columns:.33fr .67fr;
    gap: 40px;
    align-items: start
}

.services-layout > div:first-child {
    position: sticky;
    top: 112px;
    align-self: start
}

.services-title {
    max-width: 520px
}

.services-grid, .about-list {
    display: grid;
    gap: 16px
}

.service-card, .company-pride__item {
    border-radius: 16px;
    padding: 28px;
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(0, 0, 0, .05)
}

.service-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px
}

.service-card__title {
    margin: 0;
    font-size: 26px;
    line-height: 1.08;
    letter-spacing: -.03em;
    font-weight: 500
}

.service-card__text {
    max-width: 720px;
    margin-top: 12px
}

.plus-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(198, 40, 51, .2);
    color: var(--red);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: .25s
}

.plus-toggle span {
    transform: translateY(-1px)
}

.plus-toggle.open {
    transform: rotate(45deg);
    background: var(--red);
    color: #fff
}

.service-extra {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: .35s
}

.service-extra.open {
    max-height: 220px;
    opacity: 1;
    margin-top: 16px
}

.faq-grid {
    display: grid;
    gap: 16px
}

.faq-item {
    border-radius: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(255, 255, 255, .82);
    box-shadow: 0 20px 58px rgba(19, 26, 43, .06)
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    text-align: left;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -.03em;
    font-weight: 500;
    cursor: pointer;
    color: var(--text)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: .35s
}

.faq-answer.open {
    max-height: 220px;
    opacity: 1;
    margin-top: 14px
}

.faq-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(198, 40, 51, .2);
    color: var(--red);
    font-size: 22px;
    transition: .25s
}

.faq-toggle.open {
    transform: rotate(45deg);
    background: var(--red);
    color: #fff
}

.about-block__content, .contact-block__content, .company-content {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.about-list {
    margin-top: 32px;
    font-size: 19px;
    line-height: 1.5;
    color: rgba(0, 0, 0, .78)
}

.company-visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    min-height: 0;
    height: auto;
    border-radius: 18px;
    background: #fff
}

.company-visual__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .9
}

.company-visual__logo {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    display: inline-flex;
    min-width: 210px;
    padding: 18px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    color: var(--red);
    font-size: 28px;
    line-height: 1;
    letter-spacing: -.05em;
    font-weight: 700
}

.company-content__text {
    max-width: 760px;
    margin: 24px 0 0
}

.company-pride {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 14px;
    margin-top: 32px
}

.company-pride__item {
    padding: 22px
}

.company-pride__title {
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -.03em;
    font-weight: 600
}

.company-pride__text {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.45
}

.company-actions {
    margin-top: 30px;
    grid-column: 2
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
}

.card__content {
    padding: 24px
}

.media-placeholder {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    min-height: 0;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=900&q=80') center/cover;
    cursor: pointer
}

.media-placeholder:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(11, 11, 13, .15))
}

.card__title-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 22px;
    line-height: 1.12;
    letter-spacing: -.03em;
    font-weight: 500;
    text-align: left;
    cursor: pointer
}

.card__title-link:hover {
    text-decoration: underline
}

.trust-panel {
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .82);
    box-shadow: 0 20px 58px rgba(19, 26, 43, .06)
}

.slider-wrap {
    overflow: hidden
}

.slider-track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    transition: transform .35s ease;
    will-change: transform
}

.trust-track {
    animation: trustMarquee 8s linear infinite
}

.trust-track:hover {
    animation-play-state: paused
}

@keyframes trustMarquee {
    to {
        transform: translateX(calc(-50% - 10px))
    }
}

.trust-item {
    display: flex;
    flex: 0 0 calc((100% - 100px) / 6)
}

.review-item {
    display: flex;
    flex: 0 0 calc((100% - 40px) / 3)
}

.projects-item{
    display: flex;
    flex: 0 0 calc((100% - 60px) / 4);
}

.logo-card {
    width: 100%;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .04);
    font-size: 22px;
    line-height: 1;
    letter-spacing: -.04em;
    font-weight: 600;
    color: rgba(22, 22, 24, .58);
    overflow: hidden;
    height: 90px;
    width: 180px;
}

.logo-card img{
    object-fit: cover;
    width: 100%;
    padding: 10px;
}

.slider-controls {
    gap: 12px
}

.slider-controls__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    cursor: pointer;
    color: var(--red)
}

#reviews .card {
    width: 100%;
    box-shadow: none
}

.review-video {
    overflow: hidden;
    min-height: 230px;
    background: #111;
    border-radius: 18px 18px 0 0;
    display: block;
    width: 100%;
    height: 230px;
    border: 0
}

/*.review-video iframe {
    display: block;
    width: 100%;
    height: 230px;
    border: 0
}*/

.video-wrap {
    width: min(90vw, 1200px);
    aspect-ratio: 16 / 9;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: 16px;
}


.fancybox__slide.has-close-btn{
    width: 700px;
    margin: 10% auto;
    height: 420px;
}

.contact-block__lead {
    max-width: 720px;
    margin: 24px 0 0
}

.social-row {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px
}

.social-button {
    width: 64px;
    height: 64px;
    font-size: 20px;
    cursor: pointer
}

.site-footer {
    background: #0b0b0d;
    color: #fff
}

.site-footer__content {
    padding: 80px 24px 40px
}

.site-footer__top {
    display: grid;
    grid-template-columns:1.15fr .85fr;
    gap: 56px
}

.site-footer__eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .38)
}

.site-footer__title {
    margin-top: 20px;
    font-size: 32px;
    line-height: 1.04;
    letter-spacing: -.045em;
    font-weight: 600
}

.site-footer__description {
    max-width: 560px;
    margin: 24px 0 0;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .56)
}

.site-footer__nav-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 40px
}

.site-footer__nav-column {
    display: grid;
    align-content: start;
    gap: 16px
}

.site-footer__nav-link, .site-footer__meta-link {
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
    transition: .25s
}

.site-footer__meta-link {
    font-size: 15px
}

.site-footer a:hover {
    color: #fff
}

.site-footer__divider {
    height: 1px;
    margin-top: 64px;
    background: rgba(255, 255, 255, .1)
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, .42)
}

.article-body-section {
    padding: 28px 0 80px;
}

.article-body {
    border-radius: 40px;
    padding: clamp(28px, 5vw, 64px);
}

.article-body a{
    text-decoration: underline;
}

.article-body__inner {
    max-width: 920px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(22, 22, 24, 0.68);
}

.article-body h2 {
    margin: 44px 0 16px;
    font-size: clamp(24px, 2.3vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body p {
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(22, 22, 24, 0.68);
}

.article-note {
    margin: 38px 0;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 21px;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: rgba(22, 22, 24, 0.78);
}

@media (max-width: 1180px) {
    .hero-grid, .about-grid, .contact-grid, .company-block {
        grid-template-columns:1fr
    }

    .services-layout {
        grid-template-columns:1fr
    }

    .four-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .trust-item {
        flex-basis: calc((100% - 40px) / 4)
    }

    .review-item {
        flex-basis: calc((100% - 20px) / 2)
    }

    .projects-item{
        flex-basis: calc((100% - 40px) / 3)
    }

    .company-pride {
        grid-template-columns:1fr
    }

    .company-actions {
        grid-column: auto
    }

    .frame--hero, .frame--about, .frame--contact {
        min-height: 0;
        height: auto;
        aspect-ratio: 1/1
    }

    .review-video{
        min-height: 180px;
        height: 180px;
    }
}

@media (max-width: 760px) {
    main.index-page {
        padding-top: 70px
    }

    main.base-page{
        padding-top: 50px;
    }

    .site-header {
        padding-bottom: 14px
    }

    .hero-grid {
        display: flex;
        flex-direction: column-reverse
    }

    main.index-page {
        padding-top: 82px
    }

    main.base-page{
        padding-top: 50px;
    }

    .frame--hero, .frame--about, .frame--contact, .company-visual, .media-placeholder {
        aspect-ratio: 1/1;
        min-height: 0;
        height: auto
    }

    .frame--hero .frame__image {
        object-position: center top
    }

    .frame__caption-wrap {
        padding: 20px
    }

    .frame__caption {
        max-width: calc(100% - 24px);
        padding: 16px
    }

    .frame__caption-title {
        font-size: 26px
    }

    .frame__caption-text {
        font-size: 14px
    }

    .site-header__inner {
        display: grid;
        grid-template-columns:auto 1fr auto;
        align-items: center;
        gap: 10px;
        padding: 14px 16px 12px
    }

    .site-logo {
        justify-self: start
    }

    .menu-toggle {
        justify-self: end;
        align-self: start;
        margin-top: 0
    }

    .header-socials {
        display: none
    }

    .menu-toggle {
        display: inline-flex
    }

    .mobile-menu {
        position: fixed;
        top: 108px;
        left: 16px;
        right: 16px;
        z-index: 29;
        display: block;
        padding: 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 20px 58px rgba(19, 26, 43, .12);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: .25s
    }

    .mobile-menu.open {
        opacity: 1;
        transform: none;
        pointer-events: auto
    }

    .mobile-menu__nav {
        display: grid;
        gap: 14px
    }

    .mobile-menu__nav a {
        font-size: 17px;
        color: rgba(0, 0, 0, .76)
    }

    .mobile-menu__socials {
        display: flex;
        gap: 10px;
        margin-top: 18px
    }

    .services-layout > div:first-child {
        position: static
    }

    .page-shell {
        padding: 0 16px
    }

    .section-space {
        padding: 28px 0
    }

    .section-space--contact {
        padding-bottom: 48px
    }

    .site-logo {
        font-size: 22px
    }

    .site-nav {
        display: none
    }

    .hero-card, .services-block, .about-block, .contact-block, .company-block {
        border-radius: 18px;
        padding: 22px
    }

    .article-body {
        border-radius: 28px;
        padding: 22px;
    }

    .article-body p {
        font-size: 16px;
    }

    .lead-text {
        font-size: 20px
    }

    .button-row {
        margin-top: 28px
    }

    .button-pill {
        width: 100%;
        padding: 14px 18px
    }

    .four-grid {
        grid-template-columns:1fr
    }

    .trust-item, .review-item,
    .projects-item{
        flex-basis: calc((100% - 16px) / 1.25)
    }

    .stat-card, .service-card, .card__content {
        padding: 22px
    }

    .service-card__title {
        font-size: 22px
    }

    .body-text {
        font-size: 16px
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column
    }

    .media-placeholder {
        min-height: 0;
        aspect-ratio: 1/1
    }

    .site-footer__content {
        padding: 56px 0 32px
    }

    .site-footer__top, .site-footer__nav-grid {
        grid-template-columns:1fr;
        gap: 28px
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column
    }

    .trust-item {
        display: flex;
        flex: 1 1 calc((100% - 20px) / 2);
    }

    .logo-card img{
        padding: 24px;
    }

    .trust-track{
        animation: trustMarquee 15s linear infinite;
        width: max-content;
    }
}

@media (max-width: 520px){
    .review-video {
        min-height: 150px;
        height: 150px;
    }

    .section-space {
        padding: 16px 0;
    }
}