@import "reset.css";
@import "variables.css";
@import "serve/fonts.css";
@import "components/pagination.css";
@import "components/first-screen-slider.css";
@import "components/running-line.css";
@import "components/quote.css";
@import "components/callback-form.css";
@import "components/map.css";

body {
    font-family: "Raleway", sans-serif;
}

div {
    box-sizing: border-box;
}

span, p, h1, h2, h3, h4, h5, h6, a {
    font-feature-settings: 'pnum' on, 'lnum' on;
}

.w-full {
    width: 100%;
}

.mt-3 {
    margin-top: 60px;
}
.mb-3 {
    margin-bottom: 60px;
}

.mb-0 {
    margin-bottom: 0 !important;
}
.text-center {
    text-align: center;
}

.fullscreen-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-bottom: 60px;
}

#first_screen {
    padding-top: 50px;
    margin-top: -50px;
}

.content {
    width: 1110px;
}

.one-col-grid {
    display: grid;
    margin-bottom: 30px;
    grid-template-columns: 1fr;
    gap: 30px;
}

.two-column-grid {
    display: grid;
    margin-bottom: 30px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(270px, max-content);
    gap: 30px;
}

.video-content {
    overflow: hidden;
    border-radius: 12px;
}

.video-content * {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}

.btn {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    cursor: pointer;
    transition: 200ms;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--color-gray);
    border: 1px solid var(--color-primary-light-alpha);
    border-radius: 6px;
    background: var(--color-white-button);
}

.btn.disabled {
    cursor: not-allowed;
    color: #a4a4a4;
    border: 1px solid rgba(33, 33, 33, 0.2);
    background: #dedede;
}

.btn:hover {
    border: 1px solid rgba(33, 33, 33, 0.2);
    background: var(--color-white);
}

.btn:hover.disabled {
    cursor: not-allowed;
    color: #a4a4a4;
    border: 1px solid rgba(33, 33, 33, 0.2);
    background: #dedede;
}

.btn:hover svg path {
    stroke: var(--color-gray);
}

.btn.btn-rounded {
    font-size: 14px;
    line-height: 16px;
    height: 30px;
    text-transform: unset !important;
    color: var(--color-white);
    border: unset;
    border-radius: 50px;
    background: var(--color-pink-button);
    gap: 8px;
}

.btn > * {

    padding: 0 20px;
}

.btn.btn-rounded > * {
    padding: 0;
}

.btn.btn-lg {
    height: 70px;
}

.btn.btn-sm {
    height: 30px;
    border-radius: 4px;
}

.button_out-space {
    margin: calc(-1 * var(--var-button-outer-space));
    padding: var(--var-button-outer-space);
}

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

.link-with-arrow {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    display: flex;
    margin: 0 auto;
    text-decoration: none;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-black-color);
    gap: 20px;
}

.text_header {
    font-family: "Raleway", sans-serif;
    font-size: 32px;
    font-weight: 700;

    line-height: 48px;
    position: relative;
    display: flex;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 8px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.text-transform-lowercase {
    text-transform: unset;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.text_header:after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 86px;
    height: 2px;
    content: '';
    background: var(--color-primary);
}

.text-primary {
    color: var(--color-primary);
}

.go-to-back {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
}

.go-to-back a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 30px;
}

.go-to-back a span {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
}

.date {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.06em;
}

.text {
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.07em;
    color: rgba(79, 79, 79, 1);
}

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

.text strong {
    font-weight: 600;
}
.text u, .text a {
    font-size: inherit !important;
}

.text em {
    font-style: italic;
}

.text ul {
    margin-left: 30px;
}

.text ol {
    margin-left: 30px;
    list-style-position: outside;
    list-style-type: decimal;
    margin-bottom: 30px;
}

.text h1 {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
    list-style-type: decimal;
}

.text h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

.text ul li {
    list-style-position: outside;
    list-style-type: initial;
}

.subheader-text {
    width: 100%;
    max-width: 825px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 19px;
}

#back-to-top {
    position: fixed !important;
    z-index: 7;
    right: 57px;
    bottom: 85px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: 200ms;
    border-radius: 50%;
    background: var(--color-primary);
}

#back-to-top:hover {

    background: var(--color-primary-light);
}

#back-to-top div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

@media (max-width: 1200px) {
    .content {
        width: 100%;
        padding: 0 50px;
    }
}
@media (max-width: 1110px) {
    .content {
        padding: 0 25px;
    }
}

@media (max-width: 600px) {
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .fullscreen-section {
        margin-bottom: 40px;
    }

    .button_out-space {
        margin: calc(-1 * var(--var-button-outer-space-sm));
        padding: var(--var-button-outer-space-sm);
    }

    .btn {
        font-size: 12px;
    }

    .btn.btn-lg {
        font-size: 12px;
        justify-content: space-between;
        height: 50px;
    }

    .btn.btn-lg img {
        width: 32px;
    }

    .video-content * {
        width: 100%;
        height: 270px;
    }

    .text_header {
        font-size: 20px;
        line-height: 23px;
        margin-bottom: 25px;
        padding-bottom: 10px;
        text-transform: unset;
    }

    .text_header:after {
        width: 60px;
    }

    .link-with-arrow {
        font-size: 14px;
    }

    .go-to-back {
        justify-content: space-between;
        width: 100%;
    }

    .go-to-back a {
        justify-content: space-between;
        width: 100%;
    }

    .date {
        font-size: 20px;
        line-height: 23px;
    }

    .text {

        font-size: 12px;
        line-height: 14px;
    }

    #back-to-top {
        right: 7px;
        bottom: 54px;
        width: 35px;
        height: 35px;
    }

    #back-to-top div svg {
        width: 10px;
        height: 5px;
    }
}
