.wrapper {
    max-width: 1770px;
    padding: 0 75px;
    margin: 0 auto;
}

body {
    --primary: #FF4C4C;
    --yellow: #FFF201;
    --blue: #006FFF;
    --black: #212121;
    --white: #FFF;
    --light-gray: #F5F5F5;
    --gray: #ECECEC;
    --dark-gray: #ACACAC;
    --border: #282828;
}

h1 {
    font-size: 66px;
    font-family: 'Inter';
    font-weight: 500;
    text-transform: uppercase;
}

h1.mak, h1 .mak {
    font-family: 'Mak';
    font-weight: 700;
}

h2 {
    font-size: 36px;
    font-family: 'Mak';
    font-weight: 300;
    text-transform: uppercase;
}

h3 {
    font-size: 140px;
    font-family: 'Inter';
    font-weight: 700;
}

h4 {
    font-size: 100px;
    font-family: 'Inter';
    font-weight: 500;
    text-transform: uppercase;
}

h4.mak, h4 .mak {
    font-family: 'Mak';
    font-weight: 300;
}

h5 {
    font-family: 'Inter';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    text-transform: uppercase;
}

h6 {
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}

p {
    font-size: 24px;
    font-family: 'Inter';
    line-height: 140%;
}

.title-mak {
    font-family: 'Mak';
    font-size: 72px;
    font-weight: 700;
    text-transform: uppercase;
}

.subtitle.small {
    font-family: 'Inter';
    font-size: 36px;
    font-weight: 400;
}

.subtitle.big {
    font-family: 'Inter';
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.accent {
    font-size: 300px;
    font-weight: 500;
    text-transform: uppercase;
}

.accent.mak {
    font-family: 'Mak';
    font-weight: 300;
}

.button {
    font-size: 20px;
    font-family: 'Inter';
    font-weight: 500;
    line-height: 140%;
    text-transform: uppercase;
}

.caption {
    font-size: 15px;
    font-family: 'Inter';
    line-height: 120%;
}

.caption.big {
    font-family: 'Mak';
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
}

.cta-button {
    height: 270px;
    width: 270px;
    z-index: 99;
    border-radius: 100%;
}

.cta-button .cta-wrap {
    width: 100%;
    height: 100%;
    transform: scale(1);
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    transition: .3s;
}

.cta-button.blue .cta-wrap {
    background: var(--blue);
}

.cta-button p {
    color: var(--white);
    width: min-content;
}

.cta-button img {
    transition: .3s;
}

.cta-button:hover .cta-wrap {
    /* animation: .6s linear 0s ctaAnimation; */
    transform: scale(0.7);
}

.cta-button:hover img {
    transform: rotate(45deg);
}



@keyframes ctaAnimation {
    0% {
        transform: scale(1);
    }
    33% {
        transform: scale(0.7);
    }
    66% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}
