@font-face {
    font-family: EuropeExtBold;
    src: url(../fonts/EuropeExtBold.woff) format("woff"), url(../fonts/EuropeExtBold.woff2) format("woff2");
    font-weight: 700;
    font-style: bold
}

@font-face {
    font-family: Mont;
    src: url(../fonts/Mont-Bold.woff) format("woff"), url(../fonts/Mont-Bold.woff2) format("woff2");
    font-weight: 700;
    font-style: bold
}

@font-face {
    font-family: Mont;
    src: url(../fonts/Mont-Regular.woff) format("woff"), url(../fonts/Mont-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: Mont, sans-serif;
    color: #1a1d23
}

body.active {
    overflow-y: hidden
}

img {
    width: 100%
}

a {
    color: #1a1d23;
    text-decoration: none
}

ul {
    list-style: none
}

button:hover
{
    cursor: pointer;
}

.h2 {
    font-size: 64px;
    font-family: EuropeExtBold, Helvetica, sans-serif;
    text-transform: uppercase;
    line-height: 3.5rem
}

.bl-text {
    color: #21e0d5
}

.object-fit {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.container {
    margin: 0 auto;
    max-width: 1240px
}

header {
    width: 100%;
    padding: 15px 10px;
    background-color: #fff;
    position: fixed;
    z-index: 5;
    top: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

header .burger-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 15
}

header .burger-btn .burger {
    width: 100%;
    height: 2px;
    background-color: #1a1d23;
    position: absolute;
    top: 50%;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

header .burger-btn .burger::after,
header .burger-btn .burger::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #1a1d23;
    position: absolute;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

header .burger-btn .burger::before {
    top: 8px
}

header .burger-btn .burger::after {
    bottom: 8px
}

header .burger-btn .burger.active {
    background-color: transparent
}

header .burger-btn .burger.active::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fff
}

header .burger-btn .burger.active::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #fff
}

header .logo {
    width: 150px
}

header .nav-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden
}

header .nav-bar a {
    margin: 0 35px
}

header .nav-bar a:last-child {
    margin-right: 0
}

header .nav-bar_link {
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    display: inline-block;
    position: relative
}

header .nav-bar_link:hover {
    opacity: .7
}

.btn-black {
    min-width: 180px;
    padding: 15px 10px;
    color: #fff;
    font-family: EuropeExtBold, sans-serif;
    text-align: center;
    text-transform: uppercase;
    border-radius: 3px;
    border: 2px solid transparent;
    background-color: #1a1d23;
    -webkit-transition: .1s ease-in;
    -o-transition: .1s ease-in;
    transition: .1s ease-in
}

.btn-black:hover {
    color: #1a1d23;
    background-color: transparent;
    border-color: #1a1d23
}

.soon {
    padding: 1px 7px;
    color: #fff;
    font-size: 12px;
    background-color: #21e0d5;
    border-radius: 5px;
    position: absolute;
    top: -15px;
    right: -30px
}

.nav-bar_mobile {
    padding-top: 70px;
    padding-left: 30px;
    display: block;
    background-color: #1a1d23;
    width: 300px;
    height: 100%;
    z-index: 10;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    position: fixed;
    top: 0;
    left: -350px
}

.nav-bar_mobile nav a {
    margin-top: 15px;
    font-size: 22px;
    color: #fff
}

.nav-bar_mobile.active {
    left: 0
}


footer {
    margin-top: 90px
}

footer .logo {
    width: 150px;
    margin: 0 auto
}

footer .footer-navnar {
    margin: 0 auto;
    margin-top: 35px;
    max-width: 540px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

footer .footer-navnar a {
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    display: inline-block;
    position: relative
}

footer .footer-navnar a:hover {
    opacity: .7
}

footer .contacts {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

footer .contacts .mail {
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease
}

footer .contacts .mail:hover {
    opacity: .7
}

footer .contacts .social-list {
    margin: 0
}

footer .contacts .subscrube-form {
    position: relative
}

footer .contacts .subscrube-form .subscrube-form-inner {
    position: relative
}

footer .contacts .subscrube-form input {
    padding-right: 40px;
    padding-bottom: 5px;
    border: none;
    border-bottom: 1px solid #cfcfcf;
    font-size: 16px;
    outline: 0;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    font-family: Mont, sans-serif
}

footer .contacts .subscrube-form input:focus {
    border-bottom: 2px solid #1a1d23
}

footer .contacts .subscrube-form button {
    width: 33px;
    height: 14px;
    border: none;
    outline: 0;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    background: center/contain no-repeat url(../img/transfer.png);
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 0
}

footer .contacts .subscrube-form button:focus,
footer .contacts .subscrube-form button:hover {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px)
}

footer .copyright {
    margin-top: 60px;
    border-top: 1px solid #cfcfcf;
    text-align: center;
    font-size: 13px;
    padding: 15px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap
}

footer .copyright>* {
    text-align: left;
    flex-grow: 1
}

footer .copyright .Policy {
    text-align: right;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

footer .copyright .Policy a {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}
footer .copyright .Policy a:last-child:after
{
    display: none;
}

footer .copyright .Policy a:after
{
    content: '|';
    margin: 0 5px;
    position: relative;
}


.social-list {
    margin-top: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 35px
}

.social-list_item {
    margin: 0 17px;
    width: 25px;
    -webkit-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease
}

.social-list_item:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px)
}



@media (min-width:800px) {
    footer .contacts .social-list {
        position: absolute;
        left: 48.5%;
        margin-left: -90px
    }
}


@media (max-width:1080px) {
    .copyright span {
        text-align: center;
        display: block;
        width: 100%
    }
    footer .copyright .Policy {
        text-align: center;
        justify-content: center;
    }
    footer .copyright .Policy a {
        margin: 0 5px
    }
}

@media (min-width:778px) {
    header .burger-btn {
        display: none
    }
}

@media (max-width:960px) {
    header .btn-black {
        padding: 15px 10px;
        min-width: 120px;
        font-size: 14px;
    }
    header {
        padding-left: 0;
        padding-right: 0
    }
    header .nav-bar a {
        margin: 0 17px
    }

    section.main .container .left .social-list {
        display: none
    }
}

@media (max-width:778px) {
    header .btn-black {
        padding: 15px 10px;
        min-width: 120px;
        font-size: 14px;
    }
    header .logo {
        width: 150px;
        margin-left: 45px
    }
    header .nav-bar nav {
        display: none
    }

    footer .copyright .Policy {
        text-align: center;
        justify-content: center;
    }
    footer .copyright .Policy a {
        display: block;
        margin: 5px 0;
        border-top: 1px solid #eee;
        padding-top: 5px
    }
}


@media (max-width:400px) {
    header .btn-black {
        padding: 10px;
        min-width: 100px;
        font-size: 10px;
    }
    header .logo {
        width: 100px;
        margin-left: 45px
    }
}

@media (max-width:800px) {
    footer .footer-navnar {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    footer .footer-navnar a {
        margin: 10px 0
    }
    footer .contacts {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 35px
    }
    footer .contacts .social-list {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
    footer .contacts .mail {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
    footer .contacts .subscrube-form {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin: 35px 0
    }
    footer .copyright {
        margin-top: 45px
    }
}

@media (max-width:1280px) {
    .container {
        max-width: 1040px
    }
}

@media (max-width:1080px) {
    .container {
        max-width: 960px
    }
}

@media (max-width:990px) {
    .container {
        max-width: 90%
    }
}


/* Policy style */
.header_offset
{
    padding-top: 100px;
}

.policy_cont
{
    padding: 50px 0;
}

.policy_cont .container
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.policy_cont .container .left_side
{
    width: 25%;
}

.policy_cont .container .left_side ul li a
{
    background-color: #f4f4f4;
    padding: 15px;
    margin-bottom: 20px;
    display: block;
}

.policy_cont .container .left_side ul li a.active
{
    background-color: #17797d;
    color: #fff;
}

.policy_cont .container .right_side
{
    width: 70%;
}

.policy_cont .container .h2
{
    font-size: 30px;
    padding-bottom: 30px;
}

.policy_cont .container .h4
{
    font-size: 24px;
    padding-bottom: 15px;
}

.policy_cont .container p
{
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 10px;
}

.policy_cont .container .line
{
    padding-bottom: 50px;
}

.policy_cont .container .h5
{
    font-size: 20px;
    padding-bottom: 15px;
}

.policy_cont .container a
{
    color: #17797d;
    transition: 0.5s;
    font-weight: 500;
}
.policy_cont .container a:hover
{
    color: #2a5eff;
}

.policy_cont .container .right_side ul
{
    padding-bottom: 15px;
    margin-left: 20px;
}

.policy_cont .container .right_side ul li
{
    position: relative;
    margin-bottom: 10px;
}

.policy_cont .container .right_side ul li:last-child
{
    margin-bottom: 0;
}

.policy_cont .container .right_side ul li:before
{
    content: '';
    width: 6px;
    height: 6px;
    min-width: 6px;
    position: absolute;
    background-color: #17797d;
    border-radius: 50%;
    left: -10px;
    top: 5px;
}


.policy_cont .container .h6
{
    font-size: 18px;
}


@media (max-width: 767px) {
    .header_offset
    {
        padding-top: 70px;
    }

    .policy_cont .container .left_side
    {
        width: 100%;
    }

    .policy_cont .container .left_side ul li a
    {
        padding: 10px;
        margin-bottom: 15px;
    }

    .policy_cont .container .right_side
    {
        width: 100%;
        margin-top: 20px;
    }

    .policy_cont .container .h2
    {
        font-size: 26px;
        padding-bottom: 20px;
    }

    .policy_cont .container .h4
    {
        font-size: 20px;
        padding-bottom: 10px;
    }

    .policy_cont .container p
    {
        font-size: 14px;
        line-height: 20px;
    }

    .policy_cont .container .line
    {
        padding-bottom: 30px;
    }

    .policy_cont .container .h5
    {
        font-size: 18px;
        padding-bottom: 10px;
    }

    .policy_cont .container .right_side ul
    {
        padding-bottom: 10px;
        margin-left: 10px;
    }

    .policy_cont .container .right_side ul li
    {
        margin-bottom: 5px;
    }

    .policy_cont .container .h6
    {
        font-size: 16px;
    }
}
