:root {
    --black-color: #000000;
    --white-color: #ffffff;
    --theme-color: #103D70;
    --light-grey: #F7F9FC;
    --font-color: #6F6C6C;
    --font-grey: #BAB9B9;
    --red-color: #AC001B;
    --placeholder: #DFE2E8;
    --placeholder-color: #052244;
    --border-head: #EBEBEB;
    --menu-color: #8A98AE;
}

@font-face {
    font-family: 'Proxima Nova Rg';
    src: url('../fonts/ProximaNova-Bold.eot');
    src: url('../fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Bold.woff2') format('woff2'), url('../fonts/ProximaNova-Bold.woff') format('woff'), url('../fonts/ProximaNova-Bold.ttf') format('truetype'), url('../fonts/ProximaNova-Bold.svg#ProximaNova-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova Lt';
    src: url('../fonts/ProximaNova-Semibold.eot');
    src: url('../fonts/ProximaNova-Semibold.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Semibold.woff2') format('woff2'), url('../fonts/ProximaNova-Semibold.woff') format('woff'), url('../fonts/ProximaNova-Semibold.ttf') format('truetype'), url('../fonts/ProximaNova-Semibold.svg#ProximaNova-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova Rg';
    src: url('../fonts/ProximaNova-Regular.eot');
    src: url('../fonts/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Regular.woff2') format('woff2'), url('../fonts/ProximaNova-Regular.woff') format('woff'), url('../fonts/ProximaNova-Regular.ttf') format('truetype'), url('../fonts/ProximaNova-Regular.svg#ProximaNova-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova Lt';
    src: url('../fonts/ProximaNova-Light.eot');
    src: url('../fonts/ProximaNova-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Light.woff2') format('woff2'), url('../fonts/ProximaNova-Light.woff') format('woff'), url('../fonts/ProximaNova-Light.ttf') format('truetype'), url('../fonts/ProximaNova-Light.svg#ProximaNova-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Proxima Nova Rg';
    margin: 0px;
    padding: 0px;
    color: var(--font-color);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    background: var(--light-grey);
}

h1, h2, h3, h4, h5, h6 {
    padding: 0px;
    margin: 0 0 15px 0;
    color: var(--theme-color);
    font-family: 'Proxima Nova Rg';
    font-weight: 700;
}
.btn {
    font-family: 'Proxima Nova Rg';
}
    h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
        color: var(--red-color);
    }

h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 20px;
}

p {
    margin: 0 0 15px 0;
}

ul, ol {
    padding: 0px;
    margin: 0 0 20px 15px;
}

    ul li, ol li {
        padding: 0px;
        margin: 0 0 0 10px;
    }

a, a:hover, a:focus, a:visited {
    outline: none !important;
    text-decoration: none;
}

a {
    color: var(--red-color);
}

    a:hover {
        color: var(--theme-color);
    }

input, button {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="subject"], textarea, select {
    width: 100%;
    border: 1px solid var(--placeholder);
    height: 50px;
    padding: 0 20px;
    color: var(--placeholder-color);
    font-size: 16px;
    background: transparent;
}

select {
    background: url('../imgaes/drop_arrow.png') no-repeat center center;
    background-position: calc(100% - 20px) center;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

.lbl-check {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .lbl-check input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid var(--placeholder);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

.lbl-check input:checked ~ .checkmark:after {
    display: block;
}

.lbl-check .checkmark:after {
    left: 9px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid var(--red-color);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

::-webkit-input-placeholder {
    color: var(--placeholder) !important;
    opacity: 1 !important;
}

::-moz-placeholder {
    color: var(--placeholder) !important;
    opacity: 1 !important;
}

:-ms-input-placeholder {
    color: var(--placeholder) !important;
    opacity: 1 !important;
}

:-moz-placeholder {
    color: var(--placeholder) !important;
    opacity: 1 !important;
}

section:before, section:after {
    clear: both;
    display: table;
    content: "";
}

section {
    position: relative;
    clear: both;
}

.theme-btn {
    width: auto;
    min-width: 200px;
    color: var(--white-color);
    background: var(--theme-color);
    text-align: center;
    height: 50px;
    font-size: 20px;
    font-family: 'Proxima Nova Lt';
    font-weight: 600;
    border: none;
    box-shadow: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    display: inline-block;
    line-height: 50px;
}

    .theme-btn:hover {
        background: var(--red-color);
        color: var(--white-color);
    }

@media(min-width: 1300px) {
    .container {
        max-width: 1270px;
    }
}

.humbarger-menu {
    display: flex;
    width: auto;
    position: relative;
    z-index: 9999;
    display: none;
}

    .humbarger-menu a {
        display: inline-block;
        width: 40px;
        height: 35px;
    }

.burger {
    height: 3em;
    width: 3em;
    position: relative;
    font-size: 12px;
    cursor: pointer;
    transition: all .2s;
    -webkit-tap-highlight-color: transparent;
}

    .burger::after {
        content: "";
        display: block;
        position: absolute;
        height: 150%;
        width: 150%;
        top: -25%;
        left: -25%;
    }

    .burger.burger-squeeze .burger-lines::after, .burger.burger-squeeze .burger-lines::before {
        width: 2em;
    }

    .burger .burger-lines::after {
        left: 0;
        top: -0.8em;
    }

    .burger .burger-lines::before {
        left: 1em;
        top: 0.8em;
    }

    .burger.burger-squeeze .burger-lines, .burger.burger-squeeze .burger-lines::after, .burger.burger-squeeze .burger-lines::before {
        transition: top .2s .2s,left .1s,transform .2s,background-color .4s .2s;
    }

    .burger .burger-lines, .burger .burger-lines::after, .burger .burger-lines::before {
        pointer-events: none;
        display: block;
        content: "";
        width: 100%;
        border-radius: .25em;
        background-color: var(--theme-color);
        height: .25em;
        position: absolute;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    .burger .burger-lines {
        top: 50%;
        margin-top: -.125em;
    }

    .burger.burger-squeeze .burger-lines::after, .burger.burger-squeeze .burger-lines::before {
        width: 2em;
    }

    .burger.burger-squeeze.open .burger-lines::after {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .burger.burger-squeeze.open .burger-lines::after, .burger.burger-squeeze.open .burger-lines::before {
        left: .5em;
        top: 0;
    }

    .burger.burger-squeeze.open .burger-lines, .burger.burger-squeeze.open .burger-lines::after, .burger.burger-squeeze.open .burger-lines::before {
        transition: background-color .2s,top .2s,left .2s,transform .2s .15s;
    }

        .burger.burger-squeeze.open .burger-lines::before {
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

    .burger.burger-squeeze.open .burger-lines {
        background-color: initial;
    }

.header-part {
    position: relative;
    z-index: 9999;
}

.logo {
    margin-right: auto;
}

.header-inner {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding: 15px 0;
}

.main-menu ul, .main-menu li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.main-menu ul {
    display: flex;
    width: auto;
    flex-wrap: wrap;
}

.main-menu > ul > li {
    margin: 0 15px 0 0;
    padding: 15px 0;
}

.main-menu ul li:last-child {
    margin-right: 0px;
}

.main-menu > ul > li > a {
    display: block;
    padding: 8px 15px;
    background: var(--white-color);
    -webkit-border-radius: 75px;
    -moz-border-radius: 75px;
    border-radius: 75px;
    color: var(--theme-color);
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.main-menu > ul > li:hover > .mega-menu {
    display: flex;
}

.main-menu ul li:hover a, .main-menu ul li.active a {
    background: var(--red-color);
    color: var(--white-color);
}

.main-part {
    min-height: 75vh;
}

.main-menu ul .mega-menu {
    position: absolute;
    top: calc(100% - 15px);
    left: 0px;
    width: 100%;
    background: var(--theme-color);
    padding: 20px 15px;
    justify-content: center;
    display: none;
}

.main-menu ul li .mega-menu a {
    display: block;
    padding: 8px 15px;
    background: var(--white-color);
    -webkit-border-radius: 75px;
    -moz-border-radius: 75px;
    border-radius: 75px;
    color: var(--theme-color);
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.main-menu ul li .mega-menu li {
    margin: 5px 7px;
}

    .main-menu ul li .mega-menu li:hover a {
        background: var(--red-color);
        color: var(--white-color);
    }

.main-menu ul .mega-menu:before {
    content: "";
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    top: 0;
}

.main-menu ul .mega-menu:after {
    content: "";
    position: absolute;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    top: 0;
}

.summary-top h4 {
    font-family: 'Proxima Nova Rg';
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-align: center;
    color: var(--theme-color);
}

.summary-part {
    padding: 50px 0 50px 0;
}

.summary-top-progress {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
}

    .summary-top-progress:after {
        background: #CFD8E2;
        position: absolute;
        left: 1%;
        top: 31px;
        width: 98%;
        content: "";
        height: 8px;
    }

.summary-progress-box {
    max-width: 75px;
    width: 100%;
    position: relative;
    text-align: center;
    font-family: 'Proxima Nova Rg';
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    color: var(--theme-color);
    margin-right: 80px;
    z-index: 2;
}

    .summary-progress-box:last-child {
        margin-right: 0px;
    }

    .summary-progress-box p {
        margin-bottom: 7px;
    }

    .summary-progress-box .summary-progress-year {
        width: 70px;
        height: 70px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        border-radius: 100px;
        color: var(--white-color);
        background: var(--theme-color);
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 7px;
    }

.md-color .summary-progress-year {
    background: #40648D;
}

.lw-color .summary-progress-year {
    background: #708BA9;
}

.summary-progress-lap h4 {
    font-family: 'Proxima Nova Rg';
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 20px;
}

.summary-progress-wrap {
    margin-top: 48px;
}

.lap-progress-main {
    position: relative;
    height: 40px;
    background: #AD9CC1;
}

.lap-progress-percentage {
    background: #716085;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 70%;
    height: 100%;
}

.lap-box-wrap {
    display: flex;
    margin: 0 -5px;
}

.lap-box-col {
    padding: 0 5px;
    max-width: 16.66%;
    flex: 0 0 16.66%;
    line-height: normal;
}

.lap-box-col-main {
    position: relative;
    height: 12px;
    background: #AD9CC1;
    margin-top: 12px;
    margin-bottom: 6px;
}

.lap-box-col-percentage {
    background: #716085;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 70%;
    height: 100%;
}

.lap-box-col span {
   /* font-family: 'Proxima Nova Rg';*/
    font-size: 15px;
    font-style: normal;
   /* font-weight: 500;*/
    line-height: 120%;
    /*color: var(--theme-color);*/
}

.color-1 .lap-progress-main, .color-1 .lap-box-col-main {
    background: #FCCCE6;
}

.color-1 .lap-progress-percentage, .color-1 .lap-box-col-percentage {
    background: #AC7C96;
}

.summary-progress-lap {
    margin-bottom: 35px;
}

.progress-note {
    padding: 17px;
    border: 1px solid #103D70;
    border-left: 4px solid #103D70;
    color: var(--theme-color);
}

.color-2 .lap-progress-main, .color-2 .lap-box-col-main {
    background: #FFB9A6;
}

.color-2 .lap-progress-percentage, .color-2 .lap-box-col-percentage {
    background: #BB6956;
}

.color-3 .lap-progress-main, .color-3 .lap-box-col-main {
    background: #D8FAC7;
}

.color-3 .lap-progress-percentage, .color-3 .lap-box-col-percentage {
    background: #88AA77;
}

.color-4 .lap-progress-main, .color-4 .lap-box-col-main {
    background: #AAD1C6;
}

.color-4 .lap-progress-percentage, .color-4 .lap-box-col-percentage {
    background: #5A8176;
}

.color-5 .lap-progress-main, .color-5 .lap-box-col-main {
    background: #B1DAF2;
}

.color-5 .lap-progress-percentage, .color-5 .lap-box-col-percentage {
    background: #759EB6;
}

.color-6 .lap-progress-main, .color-6 .lap-box-col-main {
    background: #fcb0f3;
}

.color-6 .lap-progress-percentage, .color-6 .lap-box-col-percentage {
    background: #c174b8;
}

.color-7 .lap-progress-main, .color-7 .lap-box-col-main {
    background: #d8b1ef;
}

.color-7 .lap-progress-percentage, .color-7 .lap-box-col-percentage {
    background: #a58ab5;
}

.color-8 .lap-progress-main, .color-8 .lap-box-col-main {
    background: #bfe9aa;
}

.color-8 .lap-progress-percentage, .color-8 .lap-box-col-percentage {
    background: #91ab84;
}

.color-9 .lap-progress-main, .color-9 .lap-box-col-main {
    background: #edb7a1;
}

.color-9 .lap-progress-percentage, .color-9 .lap-box-col-percentage {
    background: #7a6c49;
}


.color-10 .lap-progress-main, .color-10 .lap-box-col-main {
    background: #a0c9d9;
}

.color-10 .lap-progress-percentage, .color-10 .lap-box-col-percentage {
    background: #8aa0a9;
}

.color-11 .lap-progress-main, .color-11 .lap-box-col-main {
    background: #c2e9a5;
}

.color-11 .lap-progress-percentage, .color-11 .lap-box-col-percentage {
    background: #96a58a;
}

.color-12 .lap-progress-main, .color-12 .lap-box-col-main {
    background: #9a9cd3;
}

.color-12 .lap-progress-percentage, .color-12 .lap-box-col-percentage {
    background: #8081a3;
}

.color-13 .lap-progress-main, .color-13 .lap-box-col-main {
    background: #ff5858;
}

.color-13 .lap-progress-percentage, .color-13 .lap-box-col-percentage {
    background: #ffc8c8;
}


.color-14 .lap-progress-main, .color-14 .lap-box-col-main {
    background: #b190ba;
}

.color-14 .lap-progress-percentage, .color-14 .lap-box-col-percentage {
    background: #e8b595;
}

.color-15 .lap-progress-main, .color-15 .lap-box-col-main {
    background: #9fccfa;
}

.color-15 .lap-progress-percentage, .color-15 .lap-box-col-percentage {
    background: #0974f1;
}

.color-16 .lap-progress-main, .color-16 .lap-box-col-main {
    background: #82f4b1;
}

.color-16 .lap-progress-percentage, .color-16 .lap-box-col-percentage {
    background: #30c67c;
}