/*Fonts*/

@font-face {
    font-family: "LatoLight";
    src: url("../fonts/Lato-Light.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "LatoBold";
    src: url("../fonts/Lato-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "LatoRegular";
    src: url("../fonts/Lato-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "BebasNeueBold";
    src: url("../fonts/BebasNeue-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

/*
Basic
*/
body {
    font-family: LatoRegular, sans-serif;
    font-size: 20px;
    transition: background-color .5s;
    color: #172547;

    overflow-x: hidden;

}

p {
    font-family: LatoRegular, sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #172547;
    margin-bottom: 45px;

}

h2 {
    font-family: BebasNeueBold, sans-serif;

    text-transform: uppercase;
    text-align: center;
    font-size: 78px;
    color: #fff;
}

h3 {
    font-family: BebasNeueBold, sans-serif;
    margin-bottom: 70px;
    text-transform: uppercase;
    text-align: center;
    font-size: 50px;
    color: #09387d;
}

.main {
    overflow: hidden;
}

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

ul.tabs li {

    cursor: pointer;
}

ul.tabs li.current {

    color: #00f6ff;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;

}

.tab-content.current {
    opacity: 1;
    display: block;
    -webkit-animation: display-none-transition 1s both;
    animation: display-none-transition 1s both;
}

.nowrap {
    white-space: nowrap;
}

@-webkit-keyframes display-none-transition {
    0% {
        opacity: 0;
    }
}

@keyframes display-none-transition {
    0% {
        opacity: 0;
    }
}

/*
top
*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
    max-width: 1330px;
    padding: 45px 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.mobile-nav {
    display: none;
}

.mobile-logo {
    display: none;
}

.mobile-logo img {
    width: 100%;
}

@media (max-width: 1024px) {
    .navbar {
        display: none;
    }

    .mobile-nav {
        z-index: 6;
        display: block;
    }

    .mobile-logo {

        display: block;
        position: absolute;
        top: 42px;
        left: 50px;
        z-index: 4;
        width: 200px;
    }

    .menu-list-mobile {
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        height: 90vh;
        opacity: 0;
       // display: flex;
        position: fixed;
        top: 0;
        z-index: 7;
        width: 100%;
        flex-direction: column;
        justify-content: space-around;

        transform: translateX(100%);
        transition: .3s;
    }

    .menu-list_active {
        transform: translateX(0);
        opacity: 1;
        padding: 5vh 0;
    }

    .menu-item {
        font-family: BebasNeueBold, sans-serif;
        text-transform: uppercase;
        color: #fff;
        text-decoration: none;
margin-bottom: 10vh;
        padding-left: 20px;
        font-size: 55px;
        font-weight: bold;
        transition: .3s;
    }

    .menu-item:hover {
        opacity: 0.6;
    }

    .hamburger {
        position: absolute;
        top: 50px;
        right: 50px;
        width: 25px;
        height: 25px;
        z-index: 100;
        cursor: pointer;
    }

    .logo {
        margin: 50px 0 0 50px;
        cursor: pointer;
    }

    .hamburger span,
    .hamburger span:before,
    .hamburger span:after {
        width: 25px;
        height: 2px;
        background-color: #fff;
        position: absolute;
        content: '';
        transition: .3s;
    }

    .hamburger span:before {
        transform: translateY(8px);
    }

    .hamburger span:after {
        transform: translateY(-8px);
    }

    .hamburger_active span {
        background-color: transparent;
    }

    .hamburger_active span:before {
        transform: rotate(45deg)
    }

    .hamburger_active span:after {
        transform: rotate(-45deg)
    }
}

.menu-list {
    color: #fff;
    display: flex;
}

.menu-item {
    margin-left: 25px;
}

.screen {
    padding-top: 30vh;
    height: 70vh;
    position: relative;

}

.screen-1 {
    background: url(../img/bg-screen_1.jpg) no-repeat;
    background-size: cover;
}

.screen-2 {
    background: url(../img/bg-screen_2.jpg) no-repeat;
    background-size: cover;
}

.screen-3 {
    background: url(../img/bg-screen_3.jpg) no-repeat;
    background-size: cover;
}

.screen-4 {
    background: url(../img/bg-screen_4.jpg) no-repeat;
    background-size: cover;
}

.screen-5 {
    background: url(../img/bg-screen_5.jpg) no-repeat;
    background-size: cover;
}

.arrow {
    cursor: pointer;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.arrow span {
    display: block;
    width: 30px;
    height: 30px;
    border-bottom: 5px solid #fff;
    border-right: 5px solid #fff;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

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

.screen-content {
    padding: 80px 0 160px 0;
}

.screen-content-text {

}

/*
scr
*/
.scr2-circle {
    margin-top: -124px;
}

.scr2-circle img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

/*
scr3
*/
.scr3-content-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.scr3-item {
    width: 30.3%;
    text-align: center;
    margin-bottom: 70px;

}

.scr3-item-icon {
    margin-bottom: 40px;
}

.scr3-item-head {
    font-family: LatoBold, sans-serif;
    font-size: 22px;
    margin-bottom: 30px;
    color: #09387d;
}

.scr3-item-text {
    font-size: 14px;
    line-height: 1.4;
}

/*
scr4
persistent style
*/
.scr4-blur {

    filter: brightness(0.5);
    background-color: aliceblue;
}

#scr4 {
   // padding: 0;
    position: relative;
}

.scr4-content-head {
    color: #fff;
    font-size: 50px;
}

.scr4-content-wrap {
    padding-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.scr4-content-item{
    width: 50%;
    margin-bottom: 100px;

}


.scr4-logos {
    width: 80%;
    display: block;
    margin: 0 auto;
}

/*
scr5
*/
#scr5 {
    background: url(../img/bg-contact.jpg) no-repeat;
    background-size: cover;
}

.contact-wrap {
    color: #fff;
    display: flex;
    justify-content: center;
}
.contact-item:first-child{
    border-left: none;
}

.contact-item {
    padding: 0 22px;
    border-left: 1px solid #fff;
}

.contact-head {

    color: #fff;
}

.contact-item-head {
    font-family: LatoBold, sans-serif;
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-item-descr {
    line-height: 1.7;
}

.contact-item-descr a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 1400px) {
    .logo {
        margin-left: 50px;
    }

    .menu-list {
        margin-right: 50px;
    }
}

@media (max-width: 1024px) {
    .menu-item {

        font-size: 45px;

    }

    .menu-list {
        margin-right: 0;
    }

    .container {
        width: auto;
        padding: 0 50px;
    }

    .screen {
        padding-left: 50px;
        padding-right: 50px;

    }

    h2 {

        line-height: 1.5;
        font-size: 60px;

    }

    .scr2-circle {
        margin-top: -100px;
    }
}

@media (max-width: 700px) {
    p {

        margin-bottom: 25px;
    }

    .screen-content {
        padding: 40px 0 80px 0;
    }

    .menu-item {

        font-size: 35px;

    }

    h2 {
        font-size: 50px;
    }

    h3 {
        font-size: 35px;
        margin-bottom: 40px;
    }

    .scr2-circle {
        margin-top: -100px;
    }

    .scr2-circle {
        margin-top: -70px;
    }

    .scr3-item {
        width: 45.3%;
        text-align: center;
        margin-bottom: 45px;
    }

    .scr3-item-icon {
        margin-bottom: 20px;
    }

    .scr3-item-head {
        font-size: 18px;
        margin-bottom: 15px;

    }
    .scr4-content-wrap{
        padding: 80px 0 40px;
    }
    .scr4-content-item{
        width: 50%;
        margin-bottom: 40px;
    }
    .contact-wrap {

        display: block;
    }

    .contact-item {

        border-left: none;
    }

    .contact-item:first-child {
        margin-bottom: 40px;

    }

    .contact-item-head {

        margin-bottom: 15px;
    }

}

@media (max-width: 500px) {
    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .screen-content {
        padding: 20px 0 40px 0;
    }
}

@media (max-width: 400px) {
    p {

        font-size: 16px;
        line-height: 1.5;

        margin-bottom: 25px;
    }

    .menu-item {
        font-size: 30px;
    }

    .arrow span {

        width: 20px;
        height: 20px;

    }

    .screen {
        padding-left: 25px;
        padding-right: 25px;
    }

    .container {
        width: auto;
        padding: 0 25px;
    }

    .mobile-logo {

        top: 18px;
        left: 25px;

    }

    .hamburger {

        top: 25px;
        right: 25px;

    }

    .scr2-circle {
        margin-top: -55px;
    }
    .scr3-item-head {

        word-spacing: 60px;


    }
}

@media (max-width: 350px) {
    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 26px;
        margin-bottom: 13px;
    }

    p {

        margin-bottom: 15px;
    }

    .scr3-item-text {
        font-size: 12px;
        line-height: 1.1;

    }
}

@media (max-height: 500px) {
    h2 {
        font-size: 40px;
    }
    .menu-item {
        font-size: 25px;
    }
    .arrow span {

        width: 20px;
        height: 20px;

    }
}