:root {
    --orange: #f04923;
    --orange-light: #f6512b;
    --orange-light-2: #f7cec5;
    --header-bg-color: #0a1a2f;
    --footer-bg-color: #0a1a2f;
    /*--font-serif: "Ogg", sans-serif;*/
    /*--font-serif: "Cormorant Garamond", sans-serif;*/
    --font-serif: "PT Serif", sans-serif;
}

@font-face {
    font-family: 'Jeko';
    src: url('../fonts/jeko-black-webfont.woff2') format('woff2'),
         url('../fonts/jeko-black-webfont.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jeko';
    src: url('../fonts/jeko-extrabold-webfont.woff2') format('woff2'),
         url('../fonts/jeko-extrabold-webfont.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jeko';
    src: url('../fonts/jeko-bold-webfont.woff2') format('woff2'),
         url('../fonts/jeko-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jeko';
    src: url('../fonts/jeko-medium-webfont.woff2') format('woff2'),
         url('../fonts/jeko-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jeko';
    src: url('../fonts/jeko-regular-webfont.woff2') format('woff2'),
         url('../fonts/jeko-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Ogg';
    src: url('../fonts/oggregular-webfont.woff2') format('woff2'),
         url('../fonts/oggregular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    /*font-family: Jeko, sans-serif;*/
    font-family: 'Manrope', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    text-size-adjust: 100%;
}
p {
    line-height: 1.7;
}
h1, h2, h3, h4 {
    font-family: var(--font-serif);
}
.font-serif {
    font-family: var(--font-serif);
}
.color-orange {
    color: var(--orange);
}
.btn-sqr {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding: 14px 34px;
    color: #000;
    border: 1px solid #000;
    border-radius: 0;
    text-decoration: none;
    outline: 1px solid transparent;
    outline-style: solid;
    transition: outline-color .3s;
    cursor: pointer;
}
.btn-sqr.disabled,
.btn-sqr:disabled {
    opacity: .3;
    cursor: not-allowed;
}
.btn-sqr.btn-big {
    padding: 14px 34px;
    font-size: 1.1rem;
}
.btn-sqr:hover {
    outline-color: #000;
}
.btn-sqr.btn-white {
    color: #fff;
    border-color: #fff;
}
.btn-sqr.btn-white:hover {
    outline-color: #fff;
}
.btn-sqr.btn-gray {
    color: #333;
    border-color: #bbb;
}
.btn-sqr.btn-gray:hover {
    outline-color: #bbb;
}
.btn-sqr.btn-orange {
    color: #fff;
    background-color: var(--orange);
    border: none;
    transition: background-color .2s;
}
.btn-sqr.btn-orange:hover {
    background-color: var(--orange-light);
    border: none;
    outline: none;
}

.inp {
    height: 50px;
    padding: 9px 16px;
    border-radius: 0;
    border: 1px solid #ddd;
}

.zoom-in {
    overflow: hidden;
}
.zoom-in .zoom-src {
    will-change: transform;
    transition: transform .5s;
}
.zoom-in:hover .zoom-src {
    transform: scale(1.1);
}

.main-container {
    width: 100%;
    max-width: 1536px;
    box-sizing: border-box;
}
.main-container.small-container {
    max-width: 1280px;
}

@media (max-width: 1586px) {
    .main-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 1320px) {
    .main-container.small-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ##### HEADER ##### */
header.main-header {
    position: fixed;
    width: 100vw;
    z-index: 1004;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: background-color .5s;
}
header.main-header.scrolled {
    background-color: var(--header-bg-color);
}
header.main-header > .main-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    padding: 0 20px;
    color: #f6f6f6;
}
header.main-header .header-tel {
    font-size: 1.1rem;
}
header.main-header .header-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
header.main-header .header-logo a {
    display: block;
    border: none;
}
header.main-header .header-logo a img {
    display: block;
    width: auto;
    height: 48px;
}
header.main-header .header-menu {
    padding: 10px;
}
header.main-header .header-menu .icon-menu {
    font-size: 1.7rem;
    cursor: pointer;
}


/* ##### FOOTER ##### */
footer.main-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--footer-bg-color);
}
footer.main-footer .footer-logo {
    display: block;
    width: auto;
    height: 48px;
}


/* ##### NAV ##### */
.nav-bg {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1005;
}
.nav-bg.visible {
    display: block;
}
nav.main-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 30px;
    background-color: #0a1a2f;
    z-index: 1006;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}
nav.main-nav > button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    appearance: none;
}
nav.main-nav > button > span {
    display: block;
    padding: 15px;
    color: #fff;
    font-size: 2rem;
}
nav.main-nav.visible {
    display: flex;
}
nav.main-nav > .nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
nav.main-nav > .nav-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 200px;
}
nav.main-nav > ul {
    margin: 40px 0 20px;
    padding: 20px 0;
    list-style: none;
    border-top: 1px solid #152A46;
    border-bottom: 1px solid #152A46;
}
nav.main-nav > ul a {
    display: block;
    padding: 15px 10px;
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
}

/* ##### CHECKBOX ##### */
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #aaa;
    border-radius: 0;
    appearance: none;
    cursor: pointer;
}
input[type="checkbox"]:checked {
    background-color: var(--orange);
    border-color: var(--orange);
    position: relative;
}
input[type="checkbox"]:checked::after {
    font-family: 'lucide' !important;
    content: "\eb3c";
    color: #fff;
    font-size: 0.8rem;
    position: absolute;
    top: 2px;
    left: 2px;
}
/* ##### RADIO ##### */
input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 2px solid #aaa;
    border-radius: 10px;
    appearance: none;
    cursor: pointer;
}
input[type="radio"]:checked {
    background-color: var(--orange);
    border-color: var(--orange);
    position: relative;
}
input[type="radio"]:checked::after {
    font-family: 'lucide' !important;
    content: "\eb3c";
    color: #fff;
    font-size: 0.8rem;
    position: absolute;
    top: 2px;
    left: 2px;
}
hr {
    height: 0;
    margin: .75rem 0;
    padding: 0;
    border: none;
    border-top: 1px solid #ccc;
}
h1 + hr,
h2 + hr,
h3 + hr {
    margin-top: -1.5rem;
    padding-bottom: .75rem;
}

.mce-content-body {
    margin: 10px;
}
.title-2-col {
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.container-2-col {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap;
}
.container-2-col > div {
    width: 100%;
    margin: 0 10px;
}
.container-2-col > div:first-child {
    margin-left: 0;
}
.container-2-col > div:last-child {
    margin-right: 0;
}
.container-2-col > div > img,
.container-2-col > div > p > img {
    display: block;
    width: 100%;
    height: attr(height px);
    object-fit: cover;
}

[contenteditable="true"] .container-2-col > div {
    outline: 1px dotted #000;
}
