:root {
    --cont-w: 1420px;
    --cont-p: 20px;

    --large-container-width: 1640px;
    --container-padding-desktop: 120px;
    --container-padding-tablet: 40px;
    --container-padding-mobile: 20px;
    --container-padding-foreword-mobile: 12px;

    /* colors */
    --c-white: #fff;
    --c-text: #383838;
    --c-header-muted: #97bbea;

    --c-blue-900: #003867;
    --c-blue-800: #002b89;
    --c-blue-700: #005eab;
    --c-blue-650: #0e4db3;
    --c-blue-500: #008bff;
    --c-indigo-900: #0c0067;

    --c-blue-dark: #1c3c70;
    --c-blue-dark-hover: #082960;

    --c-orange: #fe8836;
    --c-orange-2: #fe6000;
    --c-red: #f63d3d;

    --c-blue-100: #9eb0ff;

    /* gradients */
    --g-header: linear-gradient(52deg, var(--c-indigo-900) 0%, var(--c-blue-800) 32.24%, var(--c-blue-500) 100%);
    --g-talk-expert: linear-gradient(21deg, var(--c-indigo-900) 0%, var(--c-blue-500) 100%);
    --g-orange: linear-gradient(90deg, var(--c-orange) 0%, var(--c-red) 100%);
    --g-hero-title: linear-gradient(90deg, var(--c-indigo-900) 0%, var(--c-blue-800) 32.24%, var(--c-blue-500) 100%);
    --g-hero-subtitle: linear-gradient(238deg, #f63e3d 0%, var(--c-orange) 100%);
}

body .container.large-container {
    max-width: var(--large-container-width);
    width: calc(100% - var(--container-padding-desktop) * 2);
}

@media screen and (min-width: 1281px) and (max-width: 1600px) {
    body .container.large-container {
        width: calc(100% - var(--container-padding-tablet) * 2);
    }
}

@media screen and (max-width: 1280px) {
    body .container.large-container {
        width: calc(100% - var(--container-padding-mobile) * 2);
    }
}

.container,
.head {
    width: calc(100% - var(--cont-p) * 2);
    max-width: var(--cont-w);
    margin: 0 auto;
    position: relative;
}
/*** GENERAL ***/

html,
body {
    margin: 0;
    padding: 0;
    min-width: 320px;
    width: 100%;
    height: 100%;
}

body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: #fff;
    color: #585858;
    font-family: "Asap";
    font-weight: 400;
    cursor: default;
    overflow-x: hidden;
    overflow-y: auto;
}

.body--fixed {
    overflow: hidden !important;
}

.body--fixed,
.body--fixed .header {
    padding-right: var(--sbW);
}

.clear {
    width: 0;
    height: 0;
    visibility: hidden;
    display: block;
    clear: both;
    position: relative;
    font-size: 0;
    line-height: 0;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

b {
    font-weight: 700;
}

i {
    font-style: italic;
}

a,
.ui-btn {
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.disabled {
    pointer-events: none;
    cursor: default !important;
}

img {
    width: 100%;
    display: block;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
    opacity: 1;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

img[data-src] {
    opacity: 0;
}

picture.lazyLoad img {
    opacity: 0;
}

picture.loaded img {
    opacity: 1 !important;
}

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

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

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

.text-nowrap {
    white-space: nowrap;
}

.display-ib {
    display: inline-block;
}

.display-b {
    display: block;
}

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

.svg-sprite {
    position: absolute;
    left: -99999px;
    top: -99999px;
    width: 0;
    height: 0;
}

svg {
    display: block;
    width: 100%;
    height: 100%;
    shape-rendering: geometricPrecision;
    text-rendering: geometricPrecision;
    image-rendering: optimizeQuality;
}

body.body--menu {
    overflow: hidden;
}

@media screen and (min-width: 769px) {
    .site-main {
        padding-top: 70px;
    }
}

@media screen and (max-width: 768px) {
    .site-main {
        padding-top: 40px;
    }
}

html.popup-open {
    overflow: hidden;
    height: 100%;
}

body.popup-open {
    overflow: hidden;
    height: 100%;
    padding-right: 20px;
}
