/* ********** */
/* TYPOGRAPHY */
/* ********** */
body {
    font-size: 16px;
    line-height: 24px;
}
.text-body-2 {
    font-size: 14px;
    line-height: 20px;
}
body * {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
}
h1, h2, h3, h4,
.h1, .h2, .h3, .h4 {
    font-weight: 900;
}
h1, .h1 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: calc(var(--space-standard) * 2);
}
h2, .h2 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: calc(var(--space-standard) * 2);
}
h3, .h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: calc(var(--space-standard) * 2);
}
h4, .h4 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: calc(var(--space-standard) * 2);
}
h5, .h5 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: calc(var(--space-standard) * 2);
}
p {
    margin-bottom: calc(var(--space-standard) * 2);
}
body strong {
    font-weight: 700;
    color: inherit;
}
.subtitle {
    font-size: 14px;
    line-height: 24px;
}
.subtitle-small {
    font-size: 12px;
    line-height: 16px;
}
.subtitle-text-descr {
    font-size: 10px;
    line-height: 16px;
}

/* shadows */
.has-shadow-big {
    box-shadow: 0px 38px 33px rgba(2, 1, 50, 0.01), 0px 29px 23px rgba(2, 1, 50, 0.05), 0px 29px 29px rgba(2, 1, 50, 0.09), 0px 10px 22px rgba(2, 1, 50, 0.1), 0px 0px 0px rgba(2, 1, 50, 0.1);
}
.has-shadow-med {
    box-shadow: 0px 38px 22px rgba(0, 0, 0, 0.01), 0px 29px 18px rgba(0, 0, 0, 0.05), 0px 14px 14px rgba(0, 0, 0, 0.09), 0px 3px 7px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
}
.has-shadow-small {
    box-shadow: 0px 38px 21px rgba(0, 0, 0, 0.01), 0px 29px 18px rgba(0, 0, 0, 0.02), 0px 13px 13px rgba(0, 0, 0, 0.04), 0px 3px 7px rgba(0, 0, 0, 0.04), 0px 0px 0px rgba(0, 0, 0, 0.04);
}

/* buttons */
button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.btn {
    text-decoration: none;
    background-color: transparent;
    border-style: solid;
    border-color: var(--black);
    border-radius: 40px;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    cursor: pointer;
    transition: border-color .2s ease-in, background-color .2s ease-in;
}
.btn-white {
    color: var(--white);
    border-color: var(--white);
}
.btn:disabled {
    pointer-events: none;
    opacity: .5;
}
.btn-large {
    font-size: 18px;
    line-height: 23px;
    min-width: 180px;
    min-height: 43px;
    border-width: 2px;
}
.btn-medium {
    font-size: 14px;
    line-height: 18px;
    min-width: 140px;
    min-height: 37px;
    border-width: 1.51111px;
}
.btn-small {
    font-size: 13px;
    line-height: 16px;
    min-width: 104px;/*124px;*/
    min-height: 36px;
    border-width: 1.5px;
}
.btn-hover-blue-fluo:hover {
    background-color: var(--blue-fluo);
    border-color: var(--blue-fluo);
}
.btn-hover-yellow:hover {
    background-color: var(--yellow);
    border-color: var(--yellow);
}
.btn-hover-strawberry:hover {
    background-color: var(--strawberry);
    border-color: var(--strawberry);
}
.btn-hover-violet:hover {
    color: var(--white);
    background-color: var(--violet);
    border-color: var(--violet);
}
.btn-hover-green:hover {
    background-color: var(--green);
    border-color: var(--green);
}
.btn-hover-raspberry:hover {
    color: var(--white);
    background-color: var(--raspberry);
    border-color: var(--raspberry);
}
.btn-hover-success:hover {
    background-color: var(--green-success);
    border-color: var(--green-success);
}

.text-center {text-align: center;}
.text-start {text-align: left;}
.text-end {text-align: right;}
.text-justify {text-align: justify;}

@media (min-width: 768px) {
    h1, .h1 {
        font-size: 48px;
        line-height: 52px;
    }
    h2, .h2 {
        font-size: 32px;
        line-height: 36px;
    }
    h3, .h3 {
        font-size: 24px;
        line-height: 28px;
    }
    h4, .h4 {
        font-size: 20px;
        line-height: 24px;
    }
    h5, .h5 {
        font-size: 16px;
        line-height: 24px;
    }
    
    .text-tab-center {text-align: center;}
    .text-tab-start {text-align: left;}
    .text-tab-end {text-align: right;}
    .text-tab-justify {text-align: justify;}
}
@media (min-width: 1440px) {
    body {
        font-size: 18px;
        line-height: 24px;
    }
    .text-body-2 {
        font-size: 16px;
        line-height: 24px;
    }
    h1, .h1 {
        font-size: 56px;
        line-height: 64px;
    }
    h2, .h2 {
        font-size: 48px;
        line-height: 52px;
    }
    h3, .h3 {
        font-size: 32px;
        line-height: 36px;
    }
    h4, .h4 {
        font-size: 24px;
        line-height: 28px;
    }
    h5, .h5 {
        font-size: 20px;
        line-height: 24px;
    }
    
    .text-desk-center {text-align: center;}
    .text-desk-start {text-align: left;}
    .text-desk-end {text-align: right;}
    .text-desk-justify {text-align: justify;}
}
/* ************** */
/* TYPOGRAPHY end */
/* ************** */