/* open-sans-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/open-sans-v34-latin-regular.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
    /* Legacy iOS */
}

/* open-sans-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/open-sans-v34-latin-700.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
    /* Legacy iOS */
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans';
    color: #2a2c38;
    line-height: 1.5;
    font-size: 16px;
    background: #c4344b;
}

a {
    color: #c4344b;
}

h1 {
    font-size: 2rem;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

h1 span {
    display: block;
}

h2 {
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
    font-weight: 400;
}

h3 {
    font-size: 1.26rem;
    letter-spacing: -0.025em;
    color: #c4344b;
}

.phone {
    font-size: 1.66rem;
    letter-spacing: -0.025em;
    font-weight: 700;
}

.phone span {
    color: #c4344b;
}

.phone a {
    color: #2a2c38;
}

.footer a {
    color: #2a2c38;
}

.small {
    font-size: .6em;
}

.p {
    padding: 40px 0;
}

.bg-white {
    background: #ffffff;
}

.wrapper {
    margin: 0 auto;
    padding: 0 20px;
}


.right {
    text-align: right;
}

.center {
    text-align: center;
}



.row img {
    width: 100%;
    height: auto;
}

.box {
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 14px -2px rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border: 5px solid #2a2c38;
}

input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.accordion {
    margin: 10px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 14px -2px rgba(0, 0, 0, 0.5);
}

.accordion-label {
    display: flex;
    justify-content: space-between;
    padding: 1em;
    font-weight: bold;
    cursor: pointer;
    background: #2a2c38;
    color: #fff;
}

.accordion:hover .accordion-label {
    background: #333543;
}

.accordion-content {
    max-height: 0;
    padding: 0 1em;
    background: #ffffff;
    transition: all 0.35s;
}

input:checked~.accordion-content {
    max-height: 100vh;
    padding: 2em 1em;
}

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

    html,
    body {
        margin: 0;
        padding: 0;
        font-family: 'Open Sans';
        color: #2a2c38;
        line-height: 1.5;
        font-size: 18px;
        background: #c4344b;
    }

    h1 {
        font-size: 3rem;
        letter-spacing: -0.05em;
        line-height: 1.1;
    }

    h1 span {
        display: block;
    }

    h2 {
        font-size: 2.5rem;
        letter-spacing: -0.025em;
        line-height: 1.2;
        font-weight: 400;
    }

    h3 {
        font-size: 1.66rem;
        letter-spacing: -0.025em;
        color: #c4344b;
    }

    .lg-right {
        text-align: right;
    }

    .logo img {
        width: 350px;
        height: auto;
    }

    .row {
        display: flex;
        align-items: center;
    }

    .col-2 {
        flex: 1 1 auto;
        width: 50%;
    }

}

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

    .wrapper {
        margin: 0 auto;
        width: 1200px;
        padding: 0;
    }

}