/* global css */

@font-face {
    font-family: 'FS Elliot Pro';
    src: url('../fonts/FSElliotPro-Bold.eot');
    src: url('../fonts/FSElliotPro-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/FSElliotPro-Bold.woff2') format('woff2'),
    url('../fonts/FSElliotPro-Bold.woff') format('woff'),
    url('../fonts/FSElliotPro-Bold.ttf') format('truetype'),
    url('../fonts/FSElliotPro-Bold.svg#FSElliotPro-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FS Elliot Pro';
    src: url('../fonts/FSElliotPro.eot');
    src: url('../fonts/FSElliotPro.eot?#iefix') format('embedded-opentype'),
    url('../fonts/FSElliotPro.woff2') format('woff2'),
    url('../fonts/FSElliotPro.woff') format('woff'),
    url('../fonts/FSElliotPro.ttf') format('truetype'),
    url('../fonts/FSElliotPro.svg#FSElliotPro') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --ff-fs: 'FS Elliot Pro';
    --fw-400: 400;
    --fw-700: 700;
    --c-white: #fff;
    --c-white-2: #F5F5F7;
    --c-red: #E4002B;
    --c-red-hover: #C8102E;
    --c-dark-title: #0A0A0B;
    --c-dark-sub: #191B1E;
    --c-dark-text: #2E2E2F;
    --c-dark-form: #201E1D;
    --c-dark2: #21272A;
    --c-gray: #545455;
    --c-gray-form: #697077;
    --c-gray-input: #878D96;
    --c-gray-bread: #B6B6B6;
    --c-gray-2: #858585;
    --c-gray-3: #636366;
}

body {
    margin: 0;
    padding: 70px 0 0 0;
    font-family: var(--ff-fs);
    font-weight: var(--fw-400);
}

.main-pages body {
    background-image: none;
}

#site-main {
    padding: 0 !important;
    max-width: 100% !important;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h2 {
    font-size: 42px;
    line-height: 50.4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--c-dark-title);
}

img {
    max-width: 100%;
    width: 100%;
}

.obj-cov {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

.obj-con {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}

a {
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

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

.section-padding {
    padding-left: 20px;
    padding-right: 20px;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.pos-rel {
    position: relative;
    justify-content: space-between;
}

.tr03 {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.text-center {
    text-align: center;
}

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

.d-block {
    display: block;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.w-25 {
    width: 25%;
}

.w-33 {
    width: 33.333%;
}

.w-50 {
    width: 50%;
}

.w-75 {
    width: 75%;
}

.upper {
    text-transform: uppercase;
}

.cursor {
    cursor: pointer;
}

.fw-400 {
    font-weight: var(--fw-400);
}

.fw-700 {
    font-weight: var(--fw-700);
}

.ff-fs {
    font-family: var(--ff-fs);
}

.c-red {
    color: var(--c-red);
}

.c-red-hover {
    color: var(--c-red-hover);
}

.c-dark-sub {
    color: var(--c-dark-sub);
}

.c-dark-text {
    color: var(--c-dark-text);
}

.c-gray {
    color: var(--c-gray);
}

.c-gray-form {
    color: var(--c-gray-form);
}

.c-c-gray-input {
    color: var(--c-gray-input);
}

.c-gray-bread {
    color: var(--c-gray-bread);
}

.c-white {
    color: var(--c-white);
}

.c-dark-title {
    color: var(--c-dark-title);
}

.c-dark-form {
    color: var(--c-dark-form);
}

.c-dark2 {
    color: var(--c-dark2);
}

.c-gray-2 {
    color: var(--c-gray-2);
}

.c-gray-3 {
    color: var(--c-gray-3);
}

.global-btn {
    width: 100%;
}

.global-btn button,
.global-btn a {
    min-width: 180px;
    min-height: 48px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--c-white);
    background-color: var(--c-red);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding: 10px 16px;
    font-family: var(--ff-fs);
    font-size: 16px;
    font-style: normal;
    line-height: 19.2px;
    outline: none;
    border-radius: 8px;
    font-weight: var(--fw-700);
}

.global-btn button:hover,
.global-btn a:hover {
    background-color: var(--c-red-hover);
}

.fs-54 {
    font-size: 54px;
    line-height: 64.8px;
}

.fs-42 {
    font-size: 42px;
    line-height: 50.4px;
}

.fs-32 {
    font-size: 32px;
    line-height: 38.4px;
}

.fs-24 {
    font-size: 24px;
    line-height: 28.8px;
}

.fs-22 {
    font-size: 22px;
    line-height: 26.4px;
}

.fs-18 {
    font-size: 18px;
    line-height: 23.4px;
}

.fs-16 {
    font-size: 16px;
    line-height: 20.8px;
}

.fs-14 {
    font-size: 14px;
    line-height: 16.8px;
}

@media (max-width: 1024px) {
    .fs-54 {
        font-size: 32px;
        line-height: 38.4px;
    }

    .fs-42 {
        font-size: 32px;
        line-height: 38.4px;
    }

    .fs-32 {
        font-size: 24px;
        line-height: 28.8px;
    }

    .fs-24 {
        font-size: 16px;
        line-height: 19.2px;
    }

    .fs-18 {
        font-size: 16px;
        line-height: 20.8px;
    }

    .section-padding {
        padding-left: 39px;
        padding-right: 39px;
    }

    body {
        padding: 48px 0 0 0;
    }

    .global-btn button,
    .global-btn a {
        min-height: 40px;
    }
}

@media (max-width: 767px) {
    body.overflow {
        overflow: hidden;
    }

    .section-padding {
        padding-left: 12px;
        padding-right: 12px;
    }
}