body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    background: fixed url('../img/bg2.jpg');
}

body.lock{
    overflow: hidden;
}



h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.contactBall.active{
    max-width: 150px;
    max-height: 110px;
    border-radius: 15px;
}

.contactBall{
    z-index: 10000;
    position: fixed;
    max-width: 50px;
    max-height: 50px;
    width: 100%;
    height: 100%;
    bottom: 50px;
    right: 20px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 7px rgb(153, 153, 153);

}

.contactBall__inner{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.contactBall__item.active{
    display: block;
    margin-top: 10px;

}

.contactBall__item{
    display: none;
}
.contactBall__item a{
    color: #000;
    text-decoration: wavy;
}

.contactBall__inner img{
    width: 35px;
    height: 35px;
}

/*HEADER
==================*/


.header.fixed{
    position: fixed;
    z-index: 100;
    transition: all .3s linear;
}

.header{
    z-index: 100;
    position: relative;
    width: 100%;
    height: 75px;
    top: 0;
    background-color: #6376FF;
    transition: all .3s linear;
}



.herder__inner{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    color: #fff;
    
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    
    font-size: 16px;
}



.header__logo{
    font-size: 16px;
    position: relative;
    margin-right: 35px;
    color: #fff;
    
}

.header__logo a{
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

.header__logo::after{
    display: block;
    content: "";
    position: absolute;
    
    opacity: 0;
    z-index: 1000;
    top: 20px;
    width: 100%;
    height: 2.5px;
    background-color: #fff;
    border-radius: 5px;
    transition: all .2s linear;
}

.header__logo:hover::after{
    opacity: 1;
}





.burger{
    display: none;
    position: relative;

    height: 25px;
    width: 35px;
}

.burger.active span{
    transform: scale(0);
}


.burger.active::before{
    transform: rotate(45deg) translateY(13.5px);
}

.burger.active::after{
    transform: rotate(-45deg) translateY(-13.5px);
}


.burger span{
    display: block;
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    background-color: #fff;

    top: 10px;

    transition: all .2s linear;
    border-radius: 5px;
}

.burger::after{
    display: block;
    position: absolute;
    content: "";

    transition: all .2s linear;

    border: none;
    top: 20px;
    width: 35px;
    height: 2px;
    background-color: #fff;
    border-radius: 5px;
}

.burger::before{
    display: block;
    position: absolute;
    content: "";

    transition: all .2s linear;

    border: none;
    top: 0px;
    width: 35px;
    height: 2px;
    background-color: #fff;
    border-radius: 5px;
}

.menu.active{
    display: block;
}


.menu{
    position: absolute;
    display: none;
    width: 100%;
    height: 100vh;
    background-color: rgb(231, 231, 231);
}

.menu__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.menu__item { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #000;
    font-size: 24px;
    font-weight: 600;

    margin-top: 25px;
}

.menu__item:last-child{
    height: 20%;
}


.menu__contacts{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
}


.menu__contacts div{
    margin-top: 10px;
}


.menu__link{
    position: relative;
    color: rgb(49, 49, 49);
    font-weight: 500;
    font-size: 25px;

    text-decoration: none;
    margin-top: 20px;
}

.menu__link::after{
    content: "";
    display: block;
    position: absolute;
    width: 75px;
    height: 3px;
    border-radius: 5px;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);

    background-color: #6376FF;
}



.menu__link text{
    text-decoration: none;
}


/*NAV*/
.nav{
    display: flex;
    font-weight: 500;
    
}

.nav__link{
    position: relative;
    margin-right: 35px;
    color: #fff;
}

.nav__link a{
    text-decoration: none;
    color: #fff;
}


.nav__link_c{
    position: relative;
    color: #fff;
    cursor: pointer;
}







.nav__link::after{
    display: block;
    content: "";
    position: absolute;
    
    opacity: 0;
    z-index: 1000;
    top: 20px;
    width: 100%;
    height: 2.5px;
    background-color: #fff;
    border-radius: 5px;
    transition: all .2s linear;
}


.nav__link:hover::after{
    opacity: 1;
}




.contacts {
    display: none;
    position: absolute;
    z-index: 2000;
    background-color: #E3E7FF;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;

    top: 75px;
    height: 250px;
    width: 300px;
    right: 35px;
}
.contacts.active{
    display: block;
}



.contact__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact__item {
    display: flex;
    flex-wrap: wrap;
    color: #000;
    font-weight: 600;
    margin-top: 20px;

    font-size: 15px;

}

.icos__contact{
    margin-top: 10px;
}

.contact__ico{
    max-width: 25px;
    max-height: 25px;
    margin: 0 10px;
}





/*INTRO
=================*/


.intro {
    z-index: 30;
    width: 100%;
    height: 100vh;
    background-color: rgb(211, 211, 211);
    background: url('../img/intro_bg2.jpg') center no-repeat;
    background-size: cover  ;
}

.intro__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    color: #fff;
    height: 100%;

    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    
    justify-content: center;
    align-items: center;
    text-align: center;
}

.intro__title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
}

.intro__about{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    color: #fff;

    font-weight: 500;
    text-align: center;
    font-size: 17px;
    line-height: 22px;
    max-width: 75%;
    margin-bottom: 100px;
}

.intro__about p{
    text-align: center;
}

.intro__subtitle {
    opacity: 0;
    position: absolute;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;

    bottom: 7px;
    text-align: center;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
}







.intro__item {
    width: 150px;
    height: auto;

    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 20px;

}
.intro__item img{
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
}



.intro__btn{
    position: absolute;
    display: block;
    color: #000;
    cursor: pointer;

    right: 3%;
    top: 80%;
    border-radius: 45px;
    font-size: 18px;
    font-weight: 600;
    background-color: #fff;
    padding: 15px 45px;
    transition: all .2s linear;
}

.intro__btn:hover{
    background-color: #000;
    color: #fff;
}




/*Section
===================*/

.section {
    width: 100%;
    margin: 100px 0;
    display: flex;
    justify-content: center;
}


.section__title.anim-play{
    opacity: 1;
}


.section__title {
    opacity: 0;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    transition: all 1s linear;
}


/*OFFER
=================*/

.offer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    min-height: 450px;
    background-color: #d4d4d4;
    margin-bottom: 150px;
}
.offer__inner {
    display: flex;
    height: 100%;

    align-items: center;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.offer__item {
    width: 55%;
    height: 70%;
    margin-right: 20px;
}


.offer__title.anim-play{
    opacity: 1;
    margin-top: 20px;
    transform: translateY(-10%);
}
.offer__text.anim-play{
    opacity: 1;
    transform: translateY(-10%);
    
}

.offer__title {
    opacity: 0;
    transform: translateY(10%);
    font-size: 34px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: all .5s linear;
}

.offer__text {
    opacity: 0;
    transform: translateY(10%);
    margin-bottom: 20px;
    font-size: 18px;
    margin-top: 40px;
    transition: all .5s linear;
}


.offer__btn.anim-play{
    opacity: 1;
}

.offer__btn {
    opacity: 0;
    font-size: 22px;
    font-weight: 600;

    color: #000;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    padding: 19px 22px;

    border-radius: 15px;
    background-color: transparent;
    border: 3px solid #000;
    transition: all .2s linear, opacity .5s linear;
}

.offer__btn text{
    color: #000;
    text-decoration: none;
}

.offer__btn:hover{
    background-color: #000;
    border: 2px solid rgba(0, 0, 0, 0);
    color: #fff;
}


.offer__item_2 {
    width: 43%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.offer__title_2.anim-play{
    opacity: 1;
}

.offer__title_2{
    opacity: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 500;
    transition: all 1s linear;
}

.offer__img.anim-play{
    opacity: 1;
}



.offer__img {
    opacity: 0;
    max-height: 130px;
    max-width: 45%;
    display: block;
    cursor: pointer;
    margin: 10px;
    border-radius: 15px;
    background: linear-gradient(#ffffff, #cfcfcf);
    transition: opacity .5s linear;
}

.offer__img img{
    border-radius: 15px;

    width: 100%;
    height: 100%;
}


.offer__img.opened{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 2;
    max-width: 100%;
    max-height: 100%;
    background: none;
    margin: 0;

    border-radius: 0px;
    background-color: rgba(0, 0, 0, 0.7);
}

.offer__img.opened img{
    width: 65%;
    height: auto;
    
}


/*ABOUT
==============*/


.about {
    width: 100%;
    min-height: 250px;
    height: auto;
    background-color: #A7B2FF;
    margin-bottom: 100px;
    margin-top: 150px;
}

.about__inner {
    display: flex;
    min-height: 250px;
    height: 100%;
    width: 100%;
}

.about__item.anim-play{
    opacity: 1;
    transform: scale(1);
    border-right: 1px solid #CED4FF;
}


.about__item {
    display: flex;
    opacity: 0;
    transform: scale(.5);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    width: 320px;
    
    border-right: 0px none #CED4FF;
    min-height: 100%;
    transition: all .5s linear, border .2s linear .5s;
}

.about__item:last-child{
    border-right: none;
}

.about__img {
    max-width: 50px;
    max-height: 50px;

    height: 100%;
    width: 100%;
}

.about__img img{
    height: 100%;
    width: 100%;
}

.about__text {
    margin-top: 40px;
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    max-width: 250px;
}





/*FOOTER
==================*/


.footer {
    width: 100%;
    height: 150px;
    background-color: #888888;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__text {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;

    text-align: center;
}






@media (max-width:992px){
    .burger{
        display: none;
    }

    .container{
        max-width: 920px;
    }
    .header{
        height: 75px;
    }


    .offer__item_2{
        max-width: 40%;
    }



}





@media(max-width:768px){

    .container{
        max-width: none;
    }

    .header{
        height: 60px;
    }

    .herder__inner{
        justify-content: space-around;
    }

    .nav__link_c,
    .nav__link{
        display: none;
    }

    .burger{
        display: block;
    }


    /*INTRO*/



    .intro__subtitle {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    
        text-align: center;
        align-items: center;
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 0;
    }



    .intro__about{
        font-size: 14px;
        margin-bottom: 50px;
    }

    .intro__title{
        font-size: 28px;
    }


    /*OFFER*/


    .offer__title {
        margin-top: 25px;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 15px;
        text-align: center;
    }


    .offer__text {
        margin-bottom: 20px;
        font-size: 16px;
        text-align: center;
    }
    
    .offer__btn {
        font-size: 22px;
        font-weight: 600;
    
        margin: 0 auto;
        color: #000;
        text-decoration: none;
        cursor: pointer;
        text-align: center;
        display: inline-block;
        padding: 14px 18px;
    
        border-radius: 15px;
        background-color: transparent;
        border: 3px solid #000;
        transition: all .2s linear;
    }


    .offer__item {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 70%;
        margin-right: 0;
        padding-bottom: 15px;
    }


    .offer__item_2 {
        margin-top: 20px;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        flex-direction: row;
    }
    
    .offer__title_2{

        margin-bottom: 15px;
        font-size: 20px;
        font-weight: 600;
    }
    
    .offer__img {
        display: block;
        max-width: 80%;
        max-height: 20%;
        cursor: pointer;
        margin: 10px;
        border-radius: 15px;
        background: linear-gradient(#131313, #000000);
        transition: all .2s linear;
    }
    
    .offer__img img{
        height: 100%;
        width: 100%;
    }




    .offer__img.opened{
        display: block;
        max-width: 80%;
        max-height: 20%;
        cursor: pointer;
        margin: 10px;
        border-radius: 15px;
        background: linear-gradient(#131313, #000000);
        transition: all .2s linear
    }
    
    .offer__img.opened img{
        height: 100%;
        width: 100%;
    }

    /*ABOUT
    ================*/



    .about__inner {
        display: flex;
        flex-wrap: wrap;
        min-height: 400px;
        width: 100%;
        justify-content: center;
    }
    
    .about__item.anim-play{
        opacity: 1;
        transform: scale(1);
        border-right: none;
    }


    .about__item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        
        width: 320px;
        border-right: none;
        height: auto;
        margin-top: 20px;
        margin-bottom: 50px;
    }



    .about__img {
        max-width: 75px;
        max-height: 75px;
    
        height: 100%;
        width: 100%;
    }
    
    
    .about__text {
        margin-top: 20px;
        color: #fff;
        font-size: 24px;
        font-weight: 600;
        max-width: 250px;
    }

}


@media(max-width:750px){
    .intro__subtitle{
        display: none;
    }
    .intro__about{
        margin-bottom: 20px;
    }
}




@media(max-width:376px){
    .intro__title {
        font-size: 26px;
        font-weight: 600;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .intro__about{
        font-size: 12px;
    }

    .intro__title{
        font-size: 24px;
    }


    .intro__about{
        margin-bottom: 25px;
    }

}




