/*
Theme Name: Szkoła Jazdy LUZ
Version: 1.0
Author: KamilWeb - Kamil Leszewicz
Author URI: https://kamilweb.pl/
*/

@font-face {
    font-family: 'Satoshi-Regular';
    src: url('./assets/fonts/Satoshi-Regular.woff2') format('woff2'),
        url('./assets/fonts/Satoshi-Regular.woff') format('woff'),
        url('./assets/fonts/Satoshi-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Medium';
    src: url('./assets/fonts/Satoshi-Medium.woff2') format('woff2'),
        url('./assets/fonts/Satoshi-Medium.woff') format('woff'),
        url('./assets/fonts/Satoshi-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Bold';
    src: url('./assets/fonts/Satoshi-Bold.woff2') format('woff2'),
        url('./assets/fonts/Satoshi-Bold.woff') format('woff'),
        url('./assets/fonts/Satoshi-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

:root {
	--white: #FFFFFF;
	--black: #0D0D0D;
	--black-70: rgba(13, 13, 13, .7);
	--black-50: rgba(13, 13, 13, .5);
    --gray: #F3F4F6;
    --gray-dark: #707070;
    --red: #C12429;
    --blue: #3A3582;
    --green: #29D26C;
}

/* ====================================================
	Common
   ==================================================== */

*, ::before, ::after {
	box-sizing: border-box;
}

html, body {
	margin: 0;
}

body {
	color: var(--black);
	font: 400 14px/22px 'Satoshi-Regular', sans-serif;
}

a,
a:hover, a:active, a:focus {
	color: initial;
	text-decoration: none;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

picture {
	line-height: 0;
}

p {
	margin: 0;
}

strong {
	font-weight: 700;
}

.container {
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
}

.page.content {
    padding-inline: 15px;
}

@media only screen and (min-width: 576px) {

    .container {
        max-width: 546px;
    }
}

@media only screen and (min-width: 992px) {

    .container {
        max-width: 962px;
    }
}

@media only screen and (min-width: 1200px) {
    
    .container {
        max-width: 1170px;
    }
}

@media only screen and (min-width: 1343px) {
    
    .container {
        max-width: 1313px;
    }
}

.img-fluid {
	height: auto;
	max-width: 100%;
}

.grecaptcha-badge {
	visibility: hidden;
}

.d-none, .d-m-none {
	display: none !important;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
	margin: 0;
}

.button, .button:focus, 
.wp-block-button a, .wp-block-button a:focus {
	color: var(--white);
	font: 700 14px/19px 'Satoshi-Bold', sans-serif;
	text-align: center;
    white-space: nowrap;
	display: flex;
	justify-content: center;
	align-items: center;
    width: min-content;
	padding: 14px 20px;
    background-color: var(--red);
	border: 2px solid var(--red);
    border-radius: 0;
	cursor: pointer;
	transition: color .2s, background-color .2s, border-color .2s !important;
}

.button:hover, .button:active,
.wp-block-button a:active {
	color: var(--red);
	background-color: var(--white);
}

.button:disabled {
	cursor: not-allowed;
}

.button__arrow {
    margin-left: 12px;
}

.button__arrow path {
    transition: fill .2s;
}

.button:hover .button__arrow path, .button:active .button__arrow path {
    fill: var(--red);
}

.wp-block-gallery {
    gap: 0 !important;
    max-width: 1920px;
    margin: 0 auto;
}

@media only screen and (min-width: 992px) {

    .button, .button:focus, 
    .wp-block-button a, .wp-block-button a:focus {
        font-size: 17px;
        line-height: 19px;
        padding: 20px 40px;
    }

    .d-m-none {
        display: block !important;
    }
}

/* ====================================================
	Burger menu
   ==================================================== */

.burger-menu {
	display: flex;
}

.burger-menu {
    position: fixed;
    top: 9px;
    right: 15px;
	flex-direction: column;
	justify-content: space-between;
	height: 42px;
	width: 42px;
	border: 1px solid #00000033;
	background-color: transparent;
	padding: 12px 7px;
	z-index: 11;
	cursor: pointer;
}

.burger-menu__bar {
	display: block;
	height: 3px;
	width: 28px;
	background-color: var(--black);
	transition: opacity .2s, transform .2s;
}

.burger-menu--active .burger-menu__bar {
	background-color: var(--black);
    opacity: .8;
}

.burger-menu--active .burger-menu__bar:first-of-type {
	transform: translate(0, 6.5px) rotate(-45deg);
}

.burger-menu--active .burger-menu__bar:nth-of-type(2) {
	opacity: 0;
}

.burger-menu--active .burger-menu__bar:last-of-type {
	transform: translate(0, -6.5px) rotate(45deg);
}

@media only screen and (min-width: 992px) {

    .burger-menu {
        display: none;
    }
}

/* ====================================================
	Info bar
   ==================================================== */

.info-bar {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 101;
}

.info-bar--active {
    display: block;
}

.info-bar__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 0;
}

.info-bar__box {
    display: flex;
    justify-content: center;
    min-width: 50%;
}

.info-bar__box:first-of-type {
    width: 100%;
}

.info-bar__box-social {
    position: fixed;
    top: 18px;
    left: 15px;
    min-width: auto;
    z-index: 101;
    justify-content: flex-start;
}

.info-bar__box p {
    max-width: 220px;
    margin-left: 10px;
}

.info-bar__box-link, .info-bar__box-link:focus {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.info-bar__box-link:hover, .info-bar__box-link:active {
    text-decoration: underline;
}

@media only screen and (min-width: 992px) {

    .info-bar {
        display: block;
        position: sticky;
        top: 0;
        bottom: unset;
        background-color: var(--white);
        z-index: 102;
        border-bottom: 1px solid #0000001F;
    }

    .info-bar__container {
        flex-wrap: unset;
        justify-content: flex-start;
    }
    
    .info-bar__box {
        min-width: auto;
    }

    .info-bar__box:first-of-type {
        width: auto;
    }

    .info-bar__container {
        align-items: center;
        gap: 15px;
        height: 67px;
    }

    .info-bar__box-social {
        position: static;
    }
}

@media only screen and (min-width: 1200px) {

    .info-bar__container {
        gap: 40px;
    }
}

@media only screen and (min-width: 1860px) {

    .info-bar__container {
        height: 46px;
        min-width: 1830px;
    }

    .info-bar__box p {
        max-width: 100%;
    }
}

/* ====================================================
	Navigation
   ==================================================== */

.nav {
	position: sticky;
	top: 0;
	background-color: var(--white);
    box-shadow: 0 15px 15px -15px #00000014;
	z-index: 100;
}

.nav__container {
	display: flex;
	align-items: center;
    justify-content: space-between;
    padding: 9px 15px;
}

.nav__logo {
	line-height: 0;
	display: flex;
	align-items: center;
}

.nav__logo-img {
	height: auto;
    min-width: 89px;
}

.nav__menu {
    display: flex;
    align-items: center;
    margin-inline: 30px;
}

.main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
    height: 100svh;
    width: 100svw;
    background-color: var(--white);
    padding-block: 60px 0;
    overflow-y: scroll;
    z-index: 10;
}

.main-menu--active {
    display: flex;
}

.main-menu a {
    font: 700 15px/19px "Satoshi-Bold", sans-serif;
    text-align: center;
    display: block;
}

.main-menu a:hover, .main-menu a:active {
    text-decoration: underline;
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-right: 52px;
}

.nav__lang {
    position: fixed;
    top: 9px;
    right: 67px;
    display: flex;
    align-items: center;
    height: 42px;
    width: 89px;
    padding-inline: 9px 4px;
    border: 1px solid #00000033;
    cursor: pointer;
}

.nav__lang-wrapper {
    height: 18px;
    width: 76px;
    position: relative;
}

.nav__lang-list {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav__lang-list .lang-item a {
    align-items: center;
}

.nav__lang-list .lang-item span {
    font: 700 14px/1 'Satoshi-Bold', sans-serif;
    text-transform: uppercase;
    margin-left: 8px;
}

.nav__lang-list .current-lang, .nav__lang-list .current-lang a {
    height: 100%;
    width: 76px;
}

.nav__lang-list .current-lang {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    height: 18px;
    margin-bottom: 4px;
    overflow: hidden;
}

.nav__lang-list .current-lang a {
    display: flex;
    justify-content: center;
    line-height: 0;
    position: relative;
}

.nav__lang-list .current-lang a::after {
    content: '';
    display: block;
    height: 19px;
    width: 19px;
    margin-left: 14px;
    background: url(./assets/images/arrow-lang.svg) center no-repeat;
}

.nav__lang-list .current-lang img, .nav__lang-list .lang-item:not(.current-lang) img {
    height: 13px !important;
    width: 19px !important;
    border: 1px solid var(--gray-dark);
    overflow: hidden;
}

.nav__lang-list .lang-item:not(.current-lang), .nav__lang-list .lang-item:not(.current-lang) a {
    align-items: center;
    justify-content: center;
}

.nav__lang-list .lang-item:not(.current-lang) {
    display: none;
    height: 42px;
    width: 76px;
    margin: -4px 0 0 -5px;
    border: 1px solid #00000033;
    background-color: var(--white);
}

.nav__lang-list .lang-item:not(.current-lang) a {
    display: flex;
    height: 100%;
    width: 76px;
}

.nav__lang:hover .lang-item:not(.current-lang) {
    display: flex;
}

.nav__button, .nav__button:focus {
    padding: 9.5px 20px;
}

@media only screen and (min-width: 992px) {

    .nav {
        top: 68px;
    }

    .nav__container {
        padding: 12px 0;
    }

    .nav__menu {
        margin-inline: auto 20px;
    }

    .nav__logo-img {
        min-width: 100px;
    }

    .main-menu {
        display: flex;
        position: static;
        flex-direction: row;
        gap: 10px;
        height: auto;
        width: auto;
        padding-block: 0;
    }
    
    .main-menu a {
        font-size: 14px;
        line-height: 19px;
        padding-block: 20px;
    }

    .nav__right {
        margin-right: 0;
    }

    .nav__button, .nav__button:focus {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media only screen and (min-width: 1200px) {

    .main-menu {
        gap: 20px;
    }

    .main-menu a {
        font-size: 16px;
    }
}

@media only screen and (min-width: 1343px) {

    .nav__lang {
        position: static;
        margin-left: auto;
    }

    .nav__logo-img {
        min-width: 129px;
    }

    .nav__menu {
        margin-right: 30px;
    }

    .main-menu {
        gap: 30px;
    }
    
    .main-menu a {
        font-size: 17px;
    }

    .nav__button, .nav__button:focus {
        font-size: 17px;
        padding: 16px 30px;
    }
}

@media only screen and (min-width: 1860px) {


    .nav__lang {
        height: 35px;
    }

    .nav__lang-list .lang-item:not(.current-lang) {
        margin-top: -7px;
    }

    .nav {
        top: 47px;
    }

    .nav__container {
        min-width: 1830px;
    }

    .nav__menu {
        margin-right: 50px;
    }

    .main-menu {
        gap: 50px;
    }
}

/* ====================================================
	Block: Hero
   ==================================================== */

.block-hero {
    height: 605px;
    position: relative;
}

.block-hero__container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 480px;
    padding: 0 15px 45px 15px;
    position: static;
}

.block-hero__heading {
    color: var(--white);
    font: 400 30px/33px 'Satoshi-Regular', sans-serif;
    margin-bottom: 20px;
}

.block-hero__button:hover, .block-hero__button:active {
    border-color: var(--white);
}

.block-hero__box {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 125px;
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #0000001F;
}

.block-hero__box-content {
    display: flex;
    flex-direction: column;
    margin-left: 25px;
}

.block-hero__box-image {
    max-height: 95px;
    margin-left: auto;
    width: auto;
}

.block-hero__box-heading {
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 15px;
}

.block-hero__box-button, .block-hero__box-button:focus {
    color: var(--red);
    font: 700 15px/19px 'Satoshi-Bold', sans-serif;
    transition: color .2s;
}

.block-hero__box-button:hover, .block-hero__box-button:active {
    text-decoration: underline;
}

.block-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    height: 480px;
    width: 100%;
    z-index: -1;
}

.block-hero__background::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 272px;
    width: 100%;
    background: linear-gradient(to top, var(--black), transparent);
    z-index: -1;
}

.block-hero__background-image {
    height: 480px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
}

@media only screen and (min-width: 992px) {

    .block-hero, .block-hero__background, .block-hero__background-image {
        height: 820px;
    }

    .block-hero__container {
        height: 100%;
        padding-bottom: 90px;
        position: relative;
    }

    .block-hero__heading {
        font-size: 50px;
        line-height: 58px;
        margin-bottom: 38px;
    }
    
    .block-hero__box {
        position: absolute;
        bottom: 90px;
        right: 0;
        left: unset;
        transform: unset;
        display: flex;
        flex-direction: column;
        height: auto;
        width: 265px;
        background-color: var(--white);
        padding: 15px 30px 20px 30px;
        border: unset;
    }
    
    .block-hero__box-image {
        margin-left: 0;
    }
    
    .block-hero__box-heading {
        font-size: 25px;
        line-height: 33px;
        margin-block: 16px 21px;
    }

    .block-hero__box-button {
        font-size: 17px;
        line-height: 19px;
    }
}

@media only screen and (min-width: 1343px) {

    .block-hero__heading {
        font-size: 70px;
        line-height: 78px;
    }

    .block-hero__background::before {
        max-width: 1920px;
    }
}

@media only screen and (min-width: 1825px) {

    .block-hero__container {
        max-width: 1795px;
    }
}

/* ====================================================
	Block: Heading, text and image
   ==================================================== */

.block-heading-text-image {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:    "content"
                            "image";
    padding-inline: 15px;
}

.block-heading-text-image__img {
    border-radius: 20px;
}

.block-heading-text-image__content {
    display: flex;
    flex-direction: column;
    grid-area: content;
}

.block-heading-text-image__heading {
    color: var(--black-50);
    font: 700 14px/25px 'Satoshi-Bold', sans-serif;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.block-heading-text-image__subheading {
    color: var(--black);
    font: 400 26px/30px 'Satoshi-Regular', sans-serif;
    margin-bottom: 20px;
}

.block-heading-text-image__text {
    opacity: .8;
    margin-bottom: 35px;
}

.block-heading-text-image__image {
    grid-area: image;
}

@media only screen and (min-width: 992px) {

    .block-heading-text-image {
        gap: 81px;
        grid-template-columns: 446px auto;
        grid-template-areas: "image content";
        padding: 0;
    }

    .block-heading-text-image__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .block-heading-text-image__heading {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .block-heading-text-image__subheading {
        font-size: 50px;
        line-height: 58px;
        margin-bottom: 40px;
    }

    .block-heading-text-image__text {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 1343px) {

    .block-heading-text-image {
        gap: 131px;
        grid-template-columns: 646px auto;
    }
}

/* ====================================================
	Block: Locations
   ==================================================== */

.block-locations__heading, .block-locations__subheading {
    text-align: center;
}

.block-locations__heading {
    font: 700 14px/25px 'Satoshi-Bold', sans-serif;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: .5;
}

.block-locations__subheading {
    font: 400 26px/30px 'Satoshi-Regular', sans-serif;
    margin-bottom: 30px;
}

.block-locations__locations-single {
    padding: 15px;
    border-top: 1px solid #0000001A;
}

.block-locations__locations-single:last-of-type {
    border-bottom: 1px solid #0000001A;
}

.block-locations__locations-place, .block-locations__locations-place:focus {
    font: 500 18px/24px 'Satoshi-Medium', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.block-locations__locations-place:hover, .block-locations__locations-place:active {
    text-decoration: underline;
}

.block-locations__locations-more {
    display: none;
}

.block-locations__locations-button {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 32px;
    min-width: 32px;
    padding: 0;
    margin-left: 20px;
    border: none;
    background-color: var(--gray);
    cursor: pointer;
    transition: background-color .2s;
}

.block-locations__locations-button--active {
    background-color: var(--black);
}

.block-locations__locations-button-icon {
    height: 12px;
    width: 12px;
    transition: transform .2s;
}

.block-locations__locations-button-icon path:last-child {
    transition: fill .2s;
}

.block-locations__locations-button--active .block-locations__locations-button-icon {
    transform: rotate(-180deg);
}

.block-locations__locations-button--active .block-locations__locations-button-icon path:last-child {
    fill: var(--white);
}

.block-locations__locations-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100svh;
    width: 100svw;
    padding: 30px 15px;
    background-color: var(--white);
    z-index: 102;
}

.block-locations__locations-container--active {
    display: block;
}

.block-locations__locations-city {
    font: 500 18px/33px 'Satoshi-Medium', sans-serif;
    margin-bottom: 15px;
}

.block-locations__locations-description {
    line-height: 20px;
    margin-bottom: 30px;
    opacity: .8;
}

.block-locations__locations-details {
    display: flex;
    align-items: flex-start;
    padding-block: 20px;
    border-top: 1px solid #0000001A;
}

.block-locations__locations-details:last-of-type {
    border-bottom: 1px solid #0000001A;
}

.block-locations__locations-icon {
    height: 52px;
    width: 52px;
    margin-right: 15px;
    padding: 9px;
    background-color: var(--gray);
}

.block-locations__locations-heading {
    color: var(--red);
    font: 700 14px/19px 'Satoshi-Bold', sans-serif;
    margin-bottom: 7px;
}

.block-locations__locations-text {
    line-height: 20px;
    opacity: .8;
}

.block-locations__locations-text a, .block-locations__locations-text a:focus {
    text-decoration: underline;
    transition: color .2s;
}

.block-locations__locations-text a:hover, .block-locations__locations-text a:active {
    color: var(--red);
}

.block-locations__locations-text strong a {
    font-family: 'Satoshi-Medium', sans-serif;
    font-weight: 500;
}

.block-locations__locations-close {
    position: absolute;
    top: 15px;
    right: 15px;
    line-height: 0;
    background-color: transparent;
    padding: 0;
    border: unset;
    cursor: pointer;
    transition: transform .2s;
}

.block-locations__locations-close:hover {
    transform: rotate(180deg);
}

.block-locations__link {
    display: block;
    margin: 30px auto 0 auto;
}

@media only screen and (min-width: 992px) {

    .block-locations__heading {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 15px;
    }

    .block-locations__subheading {
        font-size: 50px;
        line-height: 58px;
        margin-bottom: 50px;
    }

    .block-locations__locations-single {
        padding: 25px 222px;
    }

    .block-locations__locations-place, .block-locations__locations-place:focus {
        font: 500 25px/33px 'Satoshi-Medium', sans-serif;
    }

    .block-locations__locations-more {
        display: block;
        font: 700 17px/19px 'Satoshi-Bold', sans-serif;
        text-decoration: underline;
        margin-left: auto;
    }

    .block-locations__locations-button {
        min-height: 44px;
        min-width: 44px;
    }

    .block-locations__locations-button-icon {
        height: 18px;
        width: 18px;
    }

    .block-locations__locations-container {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: auto;
        width: 868px;
        padding: 52px 110px;
        box-shadow: 0 3px 25px #00000029;
    }

    .block-locations__locations-city {
        font-size: 25px;
        line-height: 33px;
        margin-bottom: 25px;
    }

    .block-locations__locations-description {
        font-size: 18px;
        line-height: 25px;
    }

    .block-locations__locations-icon {
        margin-right: 38px;
    }

    .block-locations__locations-heading {
        font-size: 17px;
        line-height: 19px;
        margin-bottom: 10px;
    }

    .block-locations__locations-text {
        font-size: 18px;
        line-height: 25px;
    }

    .block-locations__link {
        margin-top: 40px;
    }
}

/* ====================================================
	Block: Opinions
   ==================================================== */

.block-opinions__heading, .block-opinions__subheading {
    text-align: center;
}

.block-opinions__heading {
    font: 700 14px/25px 'Satoshi-Bold', sans-serif;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: .5;
}

.block-opinions__subheading {
    font: 400 26px/30px 'Satoshi-Regular', sans-serif;
    margin-bottom: 30px;
}

.block-opinions__wrapper {
    position: relative;
}

.block-opinions__slider-prev, .block-opinions__slider-next {
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(50% - 19px);
    transform: translateY(-50%);
    background-color: var(--white);
    border: 1px solid #0000001A;
    cursor: pointer;
    z-index: 2;
    transition: opacity .2s;
}

.block-opinions__slider-prev:hover, .block-opinions__slider-next:hover {
    opacity: .8;
}

.block-opinions__slider-prev {
    left: -5px;
    rotate: 90deg;
}

.block-opinions__slider-next {
    right: -5px;
    rotate: -90deg;
}

.block-opinions__slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.block-opinions__slider-dots .swiper-pagination-bullet {
    height: 8px;
    width: 29px;
    border-radius: 5px;
    background-color: var(--white);
    margin-inline: 5px;
    opacity: .3;
    transition: opacity .2s;
}

.block-opinions__slider-dots .swiper-pagination-bullet-active {
    opacity: 1;
}

.block-opinions__opinion {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding-inline: 60px;
}

.block-opinions__opinion-blockqoute {
    font-weight: 500;
    text-align: center;
    margin: 15px 0 20px 0;
}

.block-opinions__opinion-footer {
    margin-top: auto;
    opacity: .8;
}

.block-opinions__link, .block-opinions__link:focus {
    color: var(--red);
    font: 700 14px/19px "Satoshi-Bold", sans-serif;
    text-align: center;
    display: block;
    margin-top: 30px;
    transition: color .2s;
}

.block-opinions__link:hover, .block-opinions__link:active {
    color: var(--black);
    text-decoration: underline;
}

.block-opinions__link-icon {
    margin-left: 20px;
}

.block-opinions__link-icon path {
    transition: fill .2s;
}

.block-opinions__link:hover .block-opinions__link-icon path, .block-opinions__link:active .block-opinions__link-icon path {
    fill: var(--black);
}

@media only screen and (min-width: 992px) {

    .block-opinions__heading {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 15px;
    }

    .block-opinions__subheading {
        font-size: 50px;
        line-height: 58px;
        margin-bottom: 60px;
    }

    .block-opinions__opinion {
        align-items: flex-start;
        padding-inline: 35px;
    }

    .block-opinions__slider-prev {
        left: -83px;
    }

    .block-opinions__slider-next {
        right: -83px;
    }

    .block-opinions__slider-prev, .block-opinions__slider-next {
        height: 44px;
        width: 44px;
    }

    .block-opinions__slider-prev svg, .block-opinions__slider-next svg {
        height: 24px;
        width: 24px;
    }

    .block-opinions__opinion-blockqoute {
        font-size: 25px;
        line-height: 33px;
        text-align: left;
        margin-block: 20px 40px;
    }

    .block-opinions__opinion-footer {
        font-size: 18px;
        line-height: 25px;
    }

    .block-opinions__link, .block-opinions__link:focus {
        font-size: 17px;
        line-height: 19px;
        margin-top: 60px;
    }
}

@media only screen and (min-width: 1550px) {

    .block-opinions__slider-prev {
        left: -183px;
    }

    .block-opinions__slider-next {
        right: -183px;
    }
}

/* ====================================================
	Block: Steps
   ==================================================== */

.block-steps__container {
    padding-inline: 15px;
}

.block-steps__heading, .block-steps__subheading {
    text-align: center;
}

.block-steps__heading {
    font: 700 14px/25px 'Satoshi-Bold', sans-serif;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: .5;
}

.block-steps__subheading {
    font: 400 26px/30px 'Satoshi-Regular', sans-serif;
    margin-bottom: 30px;
}

.block-steps__list {
    display: grid;
    gap: 35px;
    counter-reset: steps;
}

.block-steps__item {
    text-align: center;
    position: relative;
    counter-increment: steps;
}

.block-steps__item::before {
    content: counter(steps) '.';
    color: var(--white);
    font: 500 18px/33px 'Satoshi-Medium';
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    height: 44px;
    width: 44px;
    background-color: var(--black);
    margin-bottom: 10px
}

.block-steps__item-heading {
    font: 500 18px/24px 'Satoshi-Medium', sans-serif;
    margin-bottom: 15px;
}

.block-steps__item-text {
    margin-bottom: 20px;
    opacity: .8;
}

.block-steps__item-link, .block-steps__item-link:focus {
    color: var(--red);
    font-weight: 700;
    transition: color .2s;
}

.block-steps__item-link:hover, .block-steps__item-link:active {
    color: var(--black);
    text-decoration: underline;
}

.block-steps__item-link-icon {
    margin-left: 20px;
}

.block-steps__item-link-icon path {
    transition: fill .2s;
}

.block-steps__item-link:hover .block-steps__item-link-icon path, .block-steps__item-link:active .block-steps__item-link-icon path {
    fill: var(--black);
}

@media only screen and (min-width: 992px) {

    .block-steps__heading {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 15px;
    }

    .block-steps__subheading {
        font-size: 50px;
        line-height: 58px;
        margin-bottom: 60px;
    }

    .block-steps__list {
        display: flex;
        flex-direction: row;
        gap: 85px;
    }

    .block-steps__item::before {
        font-size: 25px;
        line-height: 33px;
        height: 60px;
        width: 60px;
        margin-bottom: 30px;
    }

    .block-steps__item:not(:first-of-type)::after {
        content: '';
        position: absolute;
        top: 29px;
        left: -240px;
        height: 2px;
        width: 385px;
        background-image: linear-gradient(to right, black 50%, rgba(255,255,255,0) 0%);
        background-position: bottom;
        background-size: 12px 1px;
        z-index: -1;
    }

    .block-steps__item-heading {
        font-size: 25px;
        line-height: 33px;
        margin-bottom: 25px;
    }

    .block-steps__item-text {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 30px;
    }

    .block-steps__item-link {
        font-size: 17px;
        line-height: 19px;
    }
}

/* ====================================================
	Block: Boxes 3 columns
   ==================================================== */

.block-boxes-3-columns {
    color: var(--white);
    background-color: var(--black);
}

.block-boxes-3-columns__container {
    padding: 45px 15px;
}

.block-boxes-3-columns__heading, .block-boxes-3-columns__text {
    text-align: center;
}

.block-boxes-3-columns__heading {
    font: 400 26px/30px 'Satoshi-Regular', sans-serif;
    margin-bottom: 20px;
}

.block-boxes-3-columns__text {
    margin-bottom: 30px;
    opacity: .7;
}

.block-boxes-3-columns__list {
    display: grid;
    gap: 10px;
}

.block-boxes-3-columns__item {
    padding: 15px 25px;
    border: 1px solid #FFFFFF40;
}

.block-boxes-3-columns__item-content {
    display: none;
}

.block-boxes-3-columns__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #FFFFFF40;
}

.block-boxes-3-columns__item-heading {
    font: 500 16px/20px 'Satoshi-Medium', sans-serif;
    margin-bottom: 10px;
}

.block-boxes-3-columns__item-text {
    opacity: .7;
}

.block-boxes-3-columns__button, .block-boxes-3-columns__button:focus {
    margin-top: 25px;
    margin-inline: auto;
}

.block-boxes-3-columns__button:hover, .block-boxes-3-columns__button:active {
    border-color: var(--white);
}

@media only screen and (min-width: 992px) {

    .block-boxes-3-columns__container {
        padding: 206px 0 140px 0;
    }

    .block-boxes-3-columns__content {
        display: none;
    }

    .block-boxes-3-columns__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .block-boxes-3-columns__item:first-child {
        grid-column: 2;
    }

    .block-boxes-3-columns__item-content {
        display: block;
        margin-top: -66px;
    }

    .block-boxes-3-columns__heading, .block-boxes-3-columns__text {
        text-align: left;
    }

    .block-boxes-3-columns__heading {
        font-size: 50px;
        line-height: 58px;
        margin-bottom: 30px;
    }

    .block-boxes-3-columns__text {
        font-size: 18px;
        line-height: 25px;
    }

    .block-boxes-3-columns__item {
        padding: 25px;
    }

    .block-boxes-3-columns__item-icon {
        margin-bottom: 30px;
    }

    .block-boxes-3-columns__item-heading {
        font-size: 20px;
        line-height: 33px;
        margin-bottom: 15px;
    }

    .block-boxes-3-columns__item-text {
        font-size: 18px;
        line-height: 25px;
    }

    .block-boxes-3-columns__button {
        margin-top: 40px;
    }
}

/* ====================================================
	Block: FAQ
   ==================================================== */

.block-faq__heading, .block-faq__subheading {
    text-align: center;
}

.block-faq__heading {
    font: 700 14px/25px 'Satoshi-Bold', sans-serif;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: .5;
}

.block-faq__subheading {
    font: 400 26px/30px 'Satoshi-Regular', sans-serif;
    margin-bottom: 30px;
}

.block-faq__faqs-single {
    padding: 15px;
    border-top: 1px solid #0000001A;
}

.block-faq__faqs-single:last-of-type {
    border-bottom: 1px solid #0000001A;
}

.block-faq__faqs-question, .block-faq__faqs-question:focus {
    font: 500 18px/24px 'Satoshi-Medium', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.block-faq__faqs-question:hover, .block-faq__faqs-question:active {
    text-decoration: underline;
}

.block-faq__faqs-button {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 32px;
    min-width: 32px;
    padding: 0;
    margin-left: 30px;
    border: none;
    background-color: var(--gray);
    cursor: pointer;
    transition: background-color .2s;
}

.block-faq__faqs-button--active {
    background-color: var(--black);
}

.block-faq__faqs-button-icon {
    height: 18px;
    width: 18px;
    transition: transform .2s;
}

.block-faq__faqs-button-icon path:last-child {
    transition: fill .2s;
}

.block-faq__faqs-button--active .block-faq__faqs-button-icon {
    transform: rotate(-180deg);
}

.block-faq__faqs-button--active .block-faq__faqs-button-icon path:last-child {
    fill: var(--white);
}

.block-faq__faqs-answer {
    max-height: 0;
    overflow: hidden;
}

.block-faq__faqs-answer--active {
    max-height: 100%;
}

.block-faq__faqs-answer > * {
    margin-block: 20px;
}

.block-faq__faqs-answer p {
    color: rgba(13, 13, 13, .8);
}

@media only screen and (min-width: 992px) {

    .block-faq__heading {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 15px;
    }

    .block-faq__subheading {
        font-size: 50px;
        line-height: 58px;
        margin-bottom: 50px;
    }

    .block-faq__faqs-single {
        padding: 25px 222px;
    }

    .block-faq__faqs-question, .block-faq__faqs-question:focus {
        font: 500 25px/33px 'Satoshi-Medium', sans-serif;
    }

    .block-faq__faqs-button {
        min-height: 44px;
        min-width: 44px;
    }

    .block-faq__faqs-button-icon {
        height: 24px;
        width: 24px;
    }

    .block-faq__faqs-answer > * {
        margin-block: 30px;
    }

    .block-faq__faqs-answer p {
        font-size: 18px;
        line-height: 24px;
    }
}

/* ====================================================
	Block: Heading, text, e-mail and image
   ==================================================== */

.block-heading-text-email-image {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:    "content"
                            "image";
    padding-inline: 15px;
}

.block-heading-text-email-image__img {
    border-radius: 20px;
}

.block-heading-text-email-image__content {
    display: flex;
    flex-direction: column;
    grid-area: content;
}

.block-heading-text-email-image__heading {
    color: var(--black-50);
    font: 700 14px/25px 'Satoshi-Bold', sans-serif;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.block-heading-text-email-image__subheading {
    color: var(--black);
    font: 400 26px/30px 'Satoshi-Regular', sans-serif;
    margin-bottom: 10px;
}

.block-heading-text-email-image__text {
    opacity: .8;
    margin-bottom: 35px;
}

.block-heading-text-email-image__text p {
    margin-block: 10px;
}

.block-heading-text-email-image__text li {
    padding: 5px 0 5px 14px;
    position: relative;
}

.block-heading-text-email-image__text li::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    height: 5px;
    width: 5px;
    background-color: var(--black);
    border-radius: 50px;
}

.block-heading-text-email-image__email {
    display: flex;
    flex-direction: column;
    padding-block: 8px;
    border-top: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
}

.block-heading-text-email-image__email-text {
    color: var(--red);
    font: 700 14px/18px 'Satoshi-Bold', sans-serif;
}

.block-heading-text-email-image__email-button {
    font: 500 18px/33px 'Satoshi-Medium', sans-serif;
}

.block-heading-text-email-image__image {
    grid-area: image;
    margin-top: 35px;
}

@media only screen and (min-width: 992px) {

    .block-heading-text-email-image {
        padding: 0;
    }

    .block-heading-text-email-image__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .block-heading-text-email-image__heading {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .block-heading-text-email-image__subheading {
        font-size: 50px;
        line-height: 58px;
        margin-bottom: 40px;
    }

    .block-heading-text-email-image__text {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 0;
    }

    .block-heading-text-email-image__email {
        margin-top: 35px;
        padding-block: 18px;
    }

    .block-heading-text-email-image__email-text {
        font-size: 18px;
        line-height: 24px;
    }

    .block-heading-text-email-image__email-button, .block-heading-text-email-image__email-button:focus {
        font-size: 25px;
        line-height: 33px;
    }

    .block-heading-text-email-image__email-button:hover, .block-heading-text-email-image__email-button:active {
        text-decoration: underline;
    }

    .block-heading-text-email-image {
        gap: 81px;
        grid-template-columns: auto 446px;
        grid-template-areas: "content image";
        margin-top: 0;
    }

    .block-heading-text-email-image__image {
        grid-area: image;
        margin-top: 35px;
    }
}

@media only screen and (min-width: 1343px) {

    .block-heading-text-email-image {
        gap: 131px;
        grid-template-columns: 646px auto;
    }

    .block-heading-text-email-image__email {
        align-items: center;
        flex-direction: row;
    }

    .block-heading-text-email-image__email-button {
        margin-left: 20px;
    }
}

/* ====================================================
	Block: Contact
   ==================================================== */

.block-prices {
    background-color: var(--gray);
}

.block-prices__container {
    padding-inline: 15px;
}

.block-prices__heading, .block-prices__subheading {
    text-align: center;
}

.block-prices__heading {
    color: var(--black-50);
    font: 700 14px/25px 'Satoshi-Bold', sans-serif;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.block-prices__subheading {
    color: var(--black);
    font: 400 26px/30px 'Satoshi-Regular', sans-serif;
    margin-bottom: 10px;
}

.block-prices__cities-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-block: 20px 25px;
}

.block-prices__cities-button, .block-prices__cities-button:focus {
    color: var(--red);
    font: 700 14px/19px 'Satoshi-Bold', sans-serif;
    border: 1px solid var(--red);
    background-color: transparent;
    width: 100%;
    padding-block: 14px;
    cursor: pointer;
}

.block-prices__cities-button--active, .block-prices__cities-button--active:focus {
    color: var(--white);
    background-color: var(--red);
}

.block-prices__cities-content {
    margin-bottom: 10px;
}

.block-prices__cities-city {
    display: none;
}

.block-prices__cities-city--active {
    display: block;
}

.block-prices__city-boxes {
    display: grid;
    gap: 10px;
}

.block-prices__city-box {
    padding: 20px 18px;
    background-color: var(--white);
}

.block-prices__city-box--is-marked {
    border: 1px solid var(--red);
}

.block-prices__city-heading {
    color: var(--red);
    font: 500 18px/33px 'Satoshi-Medium', sans-serif;
    margin-bottom: 10px;
}

.block-prices__city-price {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 15px;
}

.block-prices__city-text {
    color: rgba(13, 13, 13, .7);
}

.block-prices__city-text li {
    margin-block: 10px;
    padding-left: 39px;
    position: relative;
}

.block-prices__city-text li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background: url(./assets/images/check.svg) center no-repeat;
}

.block-prices__list {
    display: flex;
    flex-direction: column;
}

.block-prices__item {
    display: flex;
    justify-content: space-between;
    padding-block: 10px;
    border-bottom: 1px solid rgba(13, 13, 13, .1);
}

.block-prices__item:last-of-type {
    padding-bottom: 0;
    border-bottom: unset;
}

.block-prices__item-name {
    color: rgba(13, 13, 13, .7);
    font-size: 16px;
}

.block-prices__item-price {
    font: 700 16px/25px 'Satoshi-Bold', sans-serif;
    text-align: right;
    min-width: 80px;
}

.block-prices__frame {
    padding: 20px;
    margin-bottom: 10px;
    border: 1px solid var(--red);
}

.block-prices__frame-heading {
    color: var(--red);
    font: 400 18px/33px 'Satoshi-Regular', sans-serif;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.block-prices__frame-icon {
    margin-right: 14px;
}

.block-prices__frame-text {
    font: 500 16px/26px 'Satoshi-Medium', sans-serif;
}

.block-prices__frame-text p::first-line {
    font-size: 18px;
}

.block-prices__content-left {
    line-height: 0;
    margin-bottom: 10px;
}

.block-prices__box {
    padding: 20px 18px;
    background-color: var(--white);
}

.block-prices__box-heading {
    font: 500 18px/26px 'Satoshi-Medium', sans-serif;
}

.block-prices__box-text li {
    color: rgba(13, 13, 13, .7);
    margin-block: 10px;
    padding-left: 39px;
    position: relative;
}

.block-prices__box-text li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background: url(./assets/images/check.svg) center no-repeat;
}

.block-prices__box-image-left, .block-prices__box-image-right {
    display: none;
}

.block-prices__button {
    margin: 20px auto 0 auto;
}

@media only screen and (min-width: 992px) {

    .block-prices__heading {
        font-size: 18px;
        margin-bottom: 0;
    }

    .block-prices__subheading {
        font-size: 50px;
        line-height: 58px;
        margin-bottom: 30px;
    }

    .block-prices__cities-buttons {
        display: flex;
        justify-content: center;
        margin-block: 30px 40px;
    }

    .block-prices__cities-button, .block-prices__cities-button:focus {
        font-size: 17px;
        line-height: 19px;
        width: auto;
        padding: 20px 30px;
    }

    .block-prices__city-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .block-prices__city-box {
        padding: 35px 30px;
    }

    .block-prices__city-heading {
        font-size: 25px;
        line-height: 33px;
        margin-bottom: 15px;
    }

    .block-prices__city-price {
        font-size: 50px;
        line-height: 58px;
        margin-bottom: 30px;
    }

    .block-prices__city-text {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 15px;
    }

    .block-prices__city-text p {
        margin-bottom: 30px;
    }

    .block-prices__city-text li {
        margin-block: 15px;
    }

    .block-prices__item {
        padding-block: 15px;
    }

    .block-prices__item-name, .block-prices__item-price {
        font-size: 18px;
        line-height: 25px;
    }

    .block-prices__item-price {
        min-width: 100px;
    }

    .block-prices__cities-content {
        margin-bottom: 30px;
    }

    .block-prices__frame {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
        padding: 18px 30px;
    }

    .block-prices__frame-heading, .block-prices__frame-text, .block-prices__frame-text p::first-line {
        font-size: 25px;
    }

    .block-prices__frame-heading {
        margin-bottom: 0;
    }

    .block-prices__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .block-prices__content-left {
        margin-bottom: 0;
    }

    .block-prices__content-image {
        height: 100%;
    }

    .block-prices__content-image-img {
        height: 100%;
        object-fit: cover;
    }

    .block-prices__box {
        padding: 30px 48px;
    }

    .block-prices__box-heading {
        font-size: 25px;
        line-height: 33px;
        margin-bottom: 20px;
    }

    .block-prices__box-text {
        font-size: 18px;
        line-height: 24px;
    }

    .block-prices__box-text li {
        margin-block: 12px;
    }
}

@media only screen and (min-width: 1200px) {

    .block-prices__city-boxes {
        grid-template-columns: repeat(3, 1fr);
    }

    .block-prices__frame-text br {
        display: none;
    }
    
    .block-prices__content-right {
        display: grid;
        gap: 20px;
        grid-template-areas:    "box box"
                                "image-left image-right";
    }

    .block-prices__box {
        grid-area: box;
    }

    .block-prices__box-image-left, .block-prices__box-image-right {
        line-height: 0;
        display: block;
    }

    .block-prices__box-image-left {
        grid-area: image-left;
    }

    .block-prices__box-image-right {
        grid-area: image-right;
    }

    .block-prices__button {
        margin-top: 50px;
    }
}

/* ====================================================
	Block: Contact
   ==================================================== */

.block-contact {
    background-color: var(--black);
}

.block-contact__box-top {
    padding: 45px 15px 20px 15px;
}

.block-contact__heading, .block-contact__box-heading, .block-contact__box, .block-contact__box-link, .block-contact__box-link-separator, .block-contact__box-info p,
.block-contact__social-media-link, .block-contact__social-media-link:focus {
    color: var(--white);
}

.block-contact__heading {
    font-size: 26px;
    line-height: 30px;
}

.block-contact__box-heading {
    font-weight: 700;
    line-height: 18px;
    margin-block: 25px 5px;
    opacity: .5;
}

.block-contact__box-link, .block-contact__box-link:focus,
.block-contact__box-link-separator, .block-contact__box-info p {
    font: 500 16px/33px 'Satoshi-Medium', sans-serif;
}

.block-contact__box-link:hover, .block-contact__box-link:active {
    color: var(--white);
    text-decoration: underline;
}

.block-contact__box-link-separator {
    margin-inline: 5px;
}

.block-contact__social-media {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.block-contact__social-media-link, .block-contact__social-media-link:focus {
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    padding: 12px 40px;
    border: 1px solid var(--white);
    transition: color .2s, background-color .2s;
}

.block-contact__social-media-link:hover, .block-contact__social-media-link:active {
    color: var(--black);
    background-color: var(--white);
}

.block-contact__box-bottom {
    padding: 20px 64px 45px 64px;
}

.block-contact__img {
    border-radius: 20px;
}

@media only screen and (min-width: 992px) {

    .block-contact__container {
        display: grid;
        gap: 131px;
        grid-template-columns: 535px auto;
    }

    .block-contact__box-top {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0;
    }

    .block-contact__heading {
        font-size: 50px;
        line-height: 58px;
    }

    .block-contact__box-heading {
        font-size: 18px;
        line-height: 24px;
        margin-block: 50px 15px;
    }

    .block-contact__box-bottom {
        grid-row-start: 1;
        padding: 110px 0;
    }

    .block-contact__box-link, .block-contact__box-link-separator, .block-contact__box-info p {
        font-size: 25px;
        line-height: 33px;
    }

    .block-contact__social-media {
        margin-top: 50px;
    }

    .block-contact__social-media-link, .block-contact__social-media-link:focus {
        font-size: 17px;
        line-height: 19px;
        padding: 20px 40px;
    }
}

/* ====================================================
	Block: Signup
   ==================================================== */

.block-signup__front {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    margin-top: -60px;
    padding-bottom: 120px;
    background-color: var(--white);
    counter-reset: signup;
    position: relative;
    z-index: 102;
}

.block-signup__front--is-disabled {
    display: none;
}

.block-signup__front-container {
    max-width: 546px;
}

.block-signup__logo {
    text-align: center;
    width: 100%;
    margin-top: 9px;
}

.block-signup__heading {
    font: 400 30px/35px 'Satoshi-Regular', sans-serif;
    text-align: center;
    width: 100%;
    margin-block: 25px 10px;
}

.block-signup__logo-img {
    border-radius: 0 !important;
}

.block-signup__box {
    margin-top: 20px;
    padding-block: 20px 10px;
    box-shadow: 0 0 25px #0000001F;
    position: relative;
    counter-increment: signup;
}

.block-signup__box-heading {
    font: 500 18px/24px 'Satoshi-Medium', sans-serif;
    margin: 0 0 15px 15px;
    padding-top: 5px;
    display: flex;
}

.block-signup__box-heading::before {
    content: counter(signup) '.';
    font: 500 18px/33px 'Satoshi-Medium', sans-serif;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    margin: -5px 15px 0 0;
    border-radius: 32px;
    border: 1px solid var(--red);
}

.block-signup__frame {
    color: var(--red);
    display: flex;
    flex-direction: column;
    margin-inline: 15px;
    padding: 15px 20px;
    border: 1px solid var(--red);
}

.block-signup__frame-text {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.block-signup__frame-price {
    font-size: 30px;
    line-height: 35px;
}

.block-signup__info {
    display: flex;
    padding: 15px;
}

.block-signup__info:last-of-type {
    padding-bottom: 10px;
    border-top: 1px solid #0000001A;
}

.block-signup__info-icon {
    margin-right: 9px;
}

.block-signup__info-text {
    color: var(--red);
    font-size: 18px;
    margin-block: 7px 11px;
}

.block-signup__info-subtext {
    font: 500 18px/24px 'Satoshi-Medium', sans-serif;
}

.block-signup__back {
    display: none;
    flex-direction: column;
    align-items: center;
}

.block-signup__front--is-enabled {
    display: flex;
}

.block-signup__back {
    padding: 65px 15px 85px 15px;
}

.block-signup__check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    border-radius: 50px;
    margin-bottom: 22px;
    padding: 22px;
    background-color: var(--green);
}

.block-signup__thanks-header {
    font: 400 30px/58px 'Satoshi-Regular', sans-serif;
    margin-bottom: 15px;
}

.block-signup__thanks-text {
    font: 400 14px/25px 'Satoshi-Regular', sans-serif;
    margin-bottom: 40px;
    opacity: .8;
}

.block-signup__thanks-button {
    width: 100%;
}

@media only screen and (min-width: 992px) {

    .block-signup__front {
        margin-top: -151px;
        padding-bottom: 230px;
        position: relative;
    }

    .block-signup__front::before {
        content: '';
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 200px;
        width: 100svw;
        background-color: var(--white);
        z-index: -1;
    }

    .block-signup__front-container {
        width: 100%;
        max-width: 746px;
        margin-inline: auto;
    }

    .block-signup__logo {
        margin-top: 30px;
    }

    .block-signup__logo-img {
        width: 129px;
    }

    .block-signup__heading {
        font-size: 50px;
        line-height: 58px;
        margin-block: 67px 41px;
    }

    .block-signup__box {
        margin-top: 25px;
        padding-block: 25px;
    }

    .block-signup__box-heading {
        font-size: 25px;
        line-height: 33px;
        margin: 0 0 28px 48px;
    }

    .block-signup__box-heading::before {
        font-size: 25px;
        height: 44px;
        width: 44px;
    }

    .block-signup__frame {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 0 48px;
    }

    .block-signup__frame-text {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 0;
    }

    .block-signup__frame-price {
        font-size: 50px;
        line-height: 58px;
        white-space: nowrap;
    }

    .block-signup__info {
        padding: 20px 48px;
    }

    .block-signup__info:last-of-type {
        padding-bottom: 5px;
    }

    .block-signup__info-text {
        font-size: 25px;
        line-height: 33px;
        margin-block: 0 10px;
    }

    .block-signup__info-subtext {
        font-size: 25px;
        line-height: 33px;
    }

    .block-signup__back {
        padding-block: 109px 131px;
    }

    .block-signup__check {
        margin-bottom: 30px;
    }

    .block-signup__thanks-header {
        font-size: 50px;
        margin-bottom: 25px;
    }

    .block-signup__thanks-text {
        font-size: 18px;
    }

    .block-signup__thanks-button {
        width: auto;
        padding-inline: 43px;
    }
}

@media only screen and (min-width: 1860px) {

    .block-signup__front {
        margin-top: -132px;
    }
}

/* ====================================================
	Forms
   ==================================================== */

.wpcf7-form {
    margin-top: 20px;
    padding-inline: 15px;
}

.wpcf7 > .screen-reader-response, .wpcf7-form br, .hidden-fields-container {
    display: none;
}

.wpcf7-form-control-wrap {
	display: block;
	margin-block: 0 20px;
}

.wpcf7-form-control-wrap[data-name="your-acceptance"] {
    margin-bottom: 10px;
}

.form__input {
	color: var(--black);
	font: 400 14px/25px 'Satoshi-Regular', sans-serif;
	height: 45px;
	width: 100%;
	padding: 14px 15px;
	background-color: #09142A0F;
	border: 1px solid #0000001A;
    border-radius: 0;
	outline: unset;
}

.form__input::placeholder {
	color: var(--black);
	font: inherit;
	opacity: .8;
}

.wpcf7-list-item {
	margin-left: 0 !important;
}

.form__checkbox, .form__checkbox ~ span {
	cursor: pointer;
}

.form__checkbox {
	opacity: 0;
	position: absolute;
	z-index: -100;
}

.form__checkbox ~ span {
	color: rgba(13, 13, 13, .7);
	font: 400 12px/18px 'Satoshi-Regular', sans-serif;
	text-align: left;
	display: block;
	margin-top: 20px;
	padding-left: 35px;
	position: relative;
}

.form__checkbox ~ span::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	border: 1px solid var(--red);
    border-radius: 0;
	background-color: transparent;
	transition: border .2s, max-height .2s, transform .2s;
}

.form__checkbox:checked ~ span::before {
	border-top-color: transparent;
	border-right-color: transparent;
	height: 10px;
	width: 20px;
	background-color: transparent;
	border-width: 2px;
	border-radius: 0;
	border-bottom-color: var(--red);
	border-left-color: var(--red);
	transform: rotate(-45deg);
}

.form__checkbox ~ span a, .form__checkbox ~ span a:focus {
    color: var(--black);
	text-decoration: underline;
	transition: color .2s;
}

.form__checkbox ~ span a:hover, .form__checkbox ~ span a:active {
	color: var(--red);
}

.form__button, .form__button:focus {
    width: calc(100% - 30px);
    position: absolute;
    bottom: -64px;
    left: 15px;
}

.wpcf7-not-valid-tip {
	font-size: 14px !important;
}

.wpcf7 form .wpcf7-response-output {
	color: var(--red);
    font: 500 18px/24px 'Satoshi-Medium', sans-serif;
    text-align: center;
}

.wpcf7-spinner {
    display: none !important;
}

@media only screen and (min-width: 992px) {

    .wpcf7-form {
        padding-inline: 50px;
    }

    .wpcf7-form-control-wrap {
        margin-block: 25px;
    }

    .form__input {
        font-size: 18px;
        line-height: 25px;
        height: 55px;
        padding: 16px 25px;
    }

    .form__checkbox ~ span {
        font-size: 15px;
        line-height: 20px;
    }

    .form__button, .form__button:focus {
        width: 100%;
        bottom: -85px;
        left: 0;
    }
}

/* ====================================================
	Content
   ==================================================== */

.content h2, .content h3, .content h4, .content h5, .content h6 {
	font-family: 'Satoshi-Medium', sans-serif;
	font-weight: 500;
	margin-block: 15px;
}

.content h2 {
	font-size: 50px;
	line-height: 59px;
    margin-bottom: 25px;
}

.content h3 {
	font-size: 30px;
	line-height: 35px;
    margin-block: 60px 24px;
}

.content h4 {
	font-size: 23px;
	line-height: 29px;
}

.content h5 {
	font-size: 20px;
	line-height: 25px;
}

.content h6 {
	font-size: 15px;
	line-height: 20px;
}

.content p:not([class*="block-"]) {
	font: 400 17px/1.53 'Satoshi-Regular', sans-serif;
	margin-block: 25px;
    opacity: .8;
}

.content a:not([class*="block-"]) {
	text-decoration: underline;
}

.content *:not([class*="block-"]) strong {
    font-family: 'Satoshi-Bold', sans-serif;
    font-weight: 700;
}

.content .wp-block-quote {
    margin: 25px 0;
    padding: 26px 40px 26px 25px;
    background-color: #FFFFFF12;
    border: 1px solid #FFFFFF2E;
    border-radius: 20px;
    position: relative;
}

.content .wp-block-quote::before, .content .wp-block-quote::after {
    content: '';
    position: absolute;
    display: block;
}

.content .wp-block-quote::before {
    top: 26px;
    left: 25px;
    height: 16px;
    width: 20px;
    background: url(./assets/images/quote.svg) center no-repeat;
}

.content .wp-block-quote::after {
    top: 49px;
    left: 35px;
    height: calc(100% - 75px);
    width: 1px;
    background-color: var(--white);
}

.content .wp-block-quote p {
	font: 400 italic 17px/26px 'Satoshi-Regular', sans-serif;
    margin: 0 0 0 40px;
}

.content .wp-block-image, .content .wp-block-gallery {
    margin-block: 35px;
}

.content .wp-block-gallery {
    --wp--style--unstable-gallery-gap: 15px !important;
    gap: 15px !important;
}

.content img {
    border-radius: 20px;
    overflow: hidden;
}

.content .wp-block-list li {
    margin-block: 13px;
    padding-left: 14px;
    position: relative;
}

.content .wp-block-list li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    height: 5px;
    width: 5px;
    border-radius: 5px;
    background-color: var(--gray);
}

@media only screen and (max-width: 1100px) {

    .wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image) {
        width: 50%;
    }

    .content h2 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 25px;
    }

    .content h3 {
        font-size: 24px;
        line-height: 30px;
        margin-block: 60px 24px;
    }

    .content h4 {
        font-size: 20px;
        line-height: 26px;
    }

    .content h5 {
        font-size: 18px;
        line-height: 22px;
    }

    .content h6 {
        font-size: 16px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 600px) {

    .content h2 {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 25px;
    }

    .content .wp-block-quote {
        padding: 15px;
    }

    .content p:not([class*="block-"]) {
        font-size: 16px;
        margin-block: 15px;
    }
    
    .content p:not([class*="block-"])[style*="font-size:25px"] {
        font-size: 16px !important;
    }
}

/* ====================================================
	Footer
   ==================================================== */

.footer {
    line-height: 25px;
    text-align: center;
    border-top: 1px solid #0000001F;
}

.footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 50px 30px;
}

.footer__logo-img {
    width: 129px;
    margin-bottom: 25px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: .8;
}

.footer__links-heading {
    color: var(--red);
    font: 500 14px/22px 'Satoshi-Bold', sans-serif;
    margin-bottom: 10px;
}

.footer__links-link {
    margin-block: 10px;
}

.footer__links-link, .footer__link {
    text-decoration: underline;
}

.footer__links-link--is-bold {
    font-weight: 700;
}

.footer__bottom {
    padding-block: 20px 30px;
    border-top: 1px solid #0000001F;
    opacity: .8;
}

.footer__author {
    display: block;
    margin-top: 10px;
}

.footer__author-link:hover, .footer__author-link:active, .footer__author-link:focus {
    text-decoration: underline;
}

@media only screen and (min-width: 992px) {

    .footer__top {
        padding: 40px 0;
        flex-direction: row;
        justify-content: space-between;
    }

    .footer__links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px 25px;
    }

    .footer__links-heading {
        margin: 0 15px 0 0;
    }

    .footer__links-link {
        margin: 0;
    }

    .footer__infos {
        display: flex;
        justify-content: center;
    }

    .footer__copyright {
        margin-left: 10px;
    }

    .footer__link {
        margin-left: 10px;
    }

    .footer__author {
        margin: 0 0 0 50px;
    }
}