@font-face {
  font-family: "Nunito Black";
  src: url("../fonts/Nunito-Black.ttf");
}
@font-face {
  font-family: "Nunito Bold";
  src: url("../fonts/Nunito-Bold.ttf");
}
@font-face {
  font-family: "Nunito Light";
  src: url("../fonts/Nunito-Light.ttf");
}
@font-face {
  font-family: "RobotoSlab Light";
  src: url("../fonts/RobotoSlab-Light.ttf");
}
@font-face {
  font-family: "TenorSans";
  src: url("../fonts/TenorSans-Regular.ttf");
}
@font-face {
  font-family: "RobotoSlab Bold";
  src: url("../fonts/RobotoSlab-Bold.ttf");
}

*{
    margin: 0;
    padding: 0;
    font-family: "RobotoSlab Light", sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

}
body._lock{
    overflow: hidden;
}

::-webkit-scrollbar{
    width: 0;
}

.logo{
    margin: 0 50px;
    font-size: 20px;
    font-family: "Nunito Light", sans-serif;
    /*font-weight: bold;*/
    cursor: pointer;
    color: white;
    opacity: 0;

    animation: slide_left 0.5s linear forwards;
    animation-delay: 0.2s;
}
@keyframes slide_left {
    0%{
        transform: translateX(-100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}
@media(max-width: 992px) {
    .logo {
        font-size: 40px;
    }
}
@media(max-width: 767px) {
    .logo{
        font-size: 20px;
    }
}



nav{
    width: 85%;
    margin: 0 7%;
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;

    z-index: 1000;
    transition: width 0.3s linear;
}
nav._hidden{
    margin: 0;
    position: fixed;
    opacity: 0;
    top: -100%;
    left: 0;
    width: 100%;

    transition: top .3s linear, opacity .3s linear,
                background .5s linear;
}
nav._active{
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.1);

    backdrop-filter: blur(5px);
}
nav._activeBlack{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    background: rgba(0, 0, 50, 0.75);

    backdrop-filter: blur(5px);
}

.lis{
    font-family: "Nunito Black", sans-serif;
    list-style: none;
    display: inline-block;
    margin: 0 15px;
    cursor: pointer;

    padding: 4px 10px;
    text-decoration: none;
    text-transform: uppercase;
    color: white;

    font-size: 11px;
    font-weight: 300;
    border-radius: 20px;


    transition: background-color .4s linear,
                color .4s linear;
    -moz-transition: background-color .3s linear,
                color .3s linear;
    -webkit-transition: background-color .3s linear,
                color .3s linear;
    opacity: 0;

    animation: slide_top 0.5s linear forwards;
    animation-delay: calc(0.2s * var(--i));
}
@media (max-width: 992px) {
    .lis{
        font-size: 1.5em;
        margin: 20px 100px;
        transform: none;
    }
}
@media (max-width: 767px) {
    .lis{
        font-size: 1.2em;
        margin: 20px 0;
        transform: none;
    }
}

.lis._active{
    color: black;
    background-color: white;
}

.lis:hover{
    color: black;
    background-color: white;
}


@media(max-width: 1050px) {
    nav{
        width: 100%;
        margin: 0;
        overflow-x: clip;
    }

    nav ul{
        position: fixed;
        top: 0;
        right: 0;
        opacity: 0;

        z-index: 1020;

        transition: 0.5s all linear;
        display: inline-flex;
        background-color: rgba(0, 0, 0, 0.6);
        border-left: 1px solid rgba(255, 255, 255, 0.5);

        align-self: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        width: 100%;
        height: 100vh;

        transform: translateX(100%);

        backdrop-filter: blur(20px);
    }

    nav ul._active{
        opacity: 1;
        transform: translateX(0);
    }

    .burger{
        z-index: 5001;
        cursor: pointer;
        margin-right: 20px;

        position: fixed;
        right: 0;
        align-self: center;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        background-color: rgba(0, 0, 50, 0.75);
        /*border: rgba(0, 0, 50, 0.75) solid 3px;*/
        /*background-color: transparent;*/

        border-radius: 10px;
        width: 50px;
        height: 50px;
    }
    .burger span{
        content: "";
        background-color: white;
        display: block;
        width: 30px;
        height: 3px;
        margin: 3px 0;
        transition: all 0.3s ease 0s;

        transform: scale(1) translate(0px, -50%);
    }

    .burger._active{
        background-color: red;
    }

    .burger._active span.second{
        transform: scale(0);
    }
    .burger._active span:first-child{
        transform: rotate(-45deg) translate(-5px, 5px);
    }
    .burger._active span:last-child{
        transform: rotate(45deg) translate(-7px, -7px);
    }

    nav._activeBlack{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;

        box-shadow: 0 5px 25px rgba(0,0,0,0.5);
        background: rgba(0, 0, 50, 0.75);

        backdrop-filter: blur(5px);
    }

    .lis._active{
        color: white;
        background-color: transparent;
    }

}







.location {
    display: inline-flex;
    font-family: "Nunito Black", sans-serif;

    justify-content: space-between;
    width: max-content;
    color: white;
    font-size: 11px;
    font-weight: 300;
    align-items: center;

    cursor: pointer;
    text-align: center;
    opacity: 0;
    /*margin-right: 20px;*/
    animation: slide_top_for_location 0.5s linear forwards;
    animation-delay: calc(0.2s * var(--i));
}
.location:hover{
    text-decoration: underline white;
}
.location img {
    width: 23px;
    height: 23px;
    margin-right: 2px;
}
@keyframes slide_top {
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}
@keyframes slide_top_for_location{
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(6px);
        opacity: 1;
    }
}

.location .location_text{
    position: relative;
    overflow: hidden;
    width: 0;
    height: 20px;

    transition: all .4s linear;
}
.location .location_text._active{
    position: relative;

    width: 180px;
    transition: all .4s linear;
}
.location .location_text span{
    position: absolute;
    left: 0;
    width: 180px;
}
.location .location_text span:hover{
    text-decoration: underline;
}







/*////////////////TRANSLATION///////////////*/

.li__translation{
    display: inline-flex;
    position: relative;
    /*justify-self: center;*/
    opacity: 0;
    outline: none;
    cursor: pointer;
    width: 50px;
    height: 20px;

    animation: slide_top_for_location 0.5s linear forwards;
    animation-delay: calc(0.2s * var(--i));

    padding: 4px 10px;
}
@media(max-width: 1050px) {
    .li__translation{
        position: fixed;
        top: 20px;
        left: 20px;
    }
}

.language__list._hidden{
    overflow: hidden;
    cursor: auto;
    transition: all .2s linear;
}
.language__list._active{
    background: rgba(0, 0, 50, 0.75);

    transition: all .2s linear;
    padding: 2px 5px;

    border-radius:  5px 5px 15px 15px;
    overflow: hidden;
}

.language button{
    width: max-content;
    height: max-content;
    padding: 0;
    margin: 2px 0;
    background-color: transparent;
    border: none;

    position: relative;
    /*overflow: hidden;*/
    border-radius: 0;
}
#button_selected{
    z-index: 10;
    position: relative;
}
#button_selected span{
    top: 5px;
    left: 35px;
    width: auto;
    overflow: initial;
    z-index: -1;

    transition: .3s linear;
}

@media(max-width: 1050px) {
    #button_selected span{
        left: 50px;
        top: 10px;
    }
}

#button_selected span._hidden{
    left: 0;
}
#button_selected span::after{
    content: "";
    display: block;
    width: 7px;
    height: 2px;
    background-color: white;
    border-radius: 200px;
    transform: rotate(45deg) translate(4px,1px);

    transition: all .3s linear;

}
#button_selected span::before{
    content: "";
    display: block;
    width: 7px;
    height: 2px;
    background-color: white;
    border-radius: 200px;

    transform: rotate(-45deg) translate(0px,8px);

    transition: all .3s linear;
}

#button_selected span._open::after{
    transform: rotate(-45deg) translate(-1px, 4px);

    transition: all .3s linear;

}
#button_selected span._open::before{
    transform: rotate(45deg) translate(8px, 0px);
    transition: all .3s linear;

}
/*#button_selected span{*/
/*    position: absolute;*/
/*    top: 5px;*/
/*    right: 10px;*/

/*    width: 20px;*/
/*    height: 20px;*/
/*    background-color: #CC3434;*/
/*}*/


.language__list button._hidden{
    transform: translateY(-150px);
    opacity: 0;
    transition: all .4s linear;
}
.language__list button{
    opacity: 1;
    transform: translateY(0);

    transition: all .4s linear;
}
.language button:hover{
    background-color: transparent;
}

.language button img.flag{
    width: 25px;
    /*position: fixed;*/
    transition: width .3s linear;
}


.language button:hover img.flag{
    width: 30px;
    transition: width .2s linear;
}
.language button#button_selected:hover img.flag{
    width: 25px;
}
@media(max-width: 1050px) {
    .language button img.flag{
        width: 35px;
    }
    .language button:hover img.flag{
        width: 40px;
    }
    .language button#button_selected:hover img.flag{
        width: 35px;
    }

}

.language button span{
    position: absolute;
    left: 40px;
    top: 6px;
    color: white;

    width: 0;
    overflow: hidden;

    transition: width .3s linear;
}
.language button:hover span{
    transition: width .2s linear .25s;
}
.language button:hover span.be_label{
    width: 78px;
}
.language button:hover span.ru_label{
    width: 57px;
}
.language button:hover span.en_label{
    width: 48px;
}
.language button:hover span.pl_label{
    width: 38px;
}
.language button:hover span.uk_label{
    width: 75px;
}
@media(max-width: 1050px) {
    .language button span.be_label._active{
        width: 78px;
    }
    .language button span.ru_label._active{
        width: 57px;
    }
    .language button span.en_label._active{
        width: 48px;
    }
    .language button span.pl_label._active{
        width: 38px;
    }
    .language button span.uk_label._active{
        width: 75px;
    }

}









.background{
    position: fixed;
    background: linear-gradient(rgba(0, 0, 25, 0.7), rgba(0, 0, 25, 0.7)), url("../img/12.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;

    z-index: -1;
}
.landing{


    width: 100%;
    height: 100vh;

    color: white;
}
.landing._hidden{
    position: relative;
}
@media(max-width: 992px) {
    .background{
        background-position: left;
        background-size: cover;
        animation: background_slide 120s linear infinite;
        animation-delay: .2s;
    }
    @keyframes background_slide {
    0%{
        background-position: left;
    }
    50%{
        background-position: right;
    }
    100%{
        background-position: left;
    }
}

}


.container{
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}
@media (max-width: 1200px) {
    .container{
        max-width: 970px;
    }
}
@media (max-width: 992px) {
    .container{
        max-width: 750px;
    }
}
@media (max-width: 767px) {
    .container{
        max-width: none;
        width: auto;
    }
}

.landing .container .content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;

    height: 100vh;

    opacity: 0;
    animation: fade_in 1.1s linear forwards;
    animation-delay: 1s;
}
@keyframes fade_in {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.landing .content .title{
    text-align: center;
    justify-content: center;
    font-family: "TenorSans", sans-serif;
    text-transform: uppercase;

    font-size: 3.2em;
    letter-spacing: 2px;
}
.landing .content .subtitle{
    text-align: center;
    justify-content: center;
    font-size: 1.15em;

    font-family: "RobotoSlab Light", sans-serif;
}
@media(max-width: 992px) {

    .landing .content .title{
        font-size: 4.2em;

    }
    .landing .content .subtitle{
        font-size: 1.5em;
    }
}
@media(max-width: 767px) {
    .landing .content .title{
        font-size: 2.1em;
    }

    .landing .content .subtitle{
        font-size: .75em;
    }
}

.landing .container .anim__arrow:after{
    content: "";
    display: block;
    height: 6px;
    width: 30px;
    background-color: white;
    border-radius: 20px;

    position: absolute;
    bottom: 70px;
    left: 50%;
    right: -50%;

    transform: rotate(-45deg) translate(12px, 0);

    animation: light 2s linear infinite;

    cursor: pointer;
}
@keyframes light {
    0%{
        opacity: .2;
        /*background: rgba(255, 255, 255, .4);*/
        box-shadow: 0 0 15px rgba(255, 255, 255, .7);
    }
    50%{
        opacity: 1;
        /*background: white;*/
        box-shadow: 0 0 30px rgba(255, 255, 255, .7);

    }
    100%{
        opacity: .2;
        /*background: rgba(255, 255, 255, .4);*/
        box-shadow: 0 0 15px rgba(255, 255, 255, .7);

    }
}
.landing .container .anim__arrow:before{
    content: "";
    display: block;
    height: 6px;
    width: 30px;
    background-color: white;
    border-radius: 20px;

    position: absolute;
    bottom: 70px;
    left: 50%;
    right: -50%;

    transform: rotate(45deg) translate(-12px, 0);

    animation: light 2s linear infinite;

    cursor: pointer;

}






.frankpol-content{
    background-color: white;
    z-index: -1;
}
/* ABOUT SECTION */
.about{
    overflow: hidden;
    height: max-content;
    width: 100%;

    background: white;
    padding: 50px 0 70px;
}
@media(max-width: 767px) {
    .about{
        padding: 30px 0;
    }
}

h2.title{
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.4em;

    opacity: 0;
    transform: translateY(120%);

    transition: all 0.8s ease 0s;
}
h2.title._active{
    transform: translateY(0);
    opacity: 1;
}

h2.title::after{
    content: "";
    display: block;
    margin: 10px auto 20px;
    width: 55px;
    height: 2px;
    background-color: rgba(0, 0, 50, 0.75);
}
@media (max-width: 1200px) {
    h2.title{
        font-size: 2.2em;
    }
    h2.title::after{
        width: 60px;
        height: 3px;
    }
}
@media (max-width: 992px) {
    h2.title{
        font-size: 2em;
    }
    h2.title::after{
        width: 50px;
        height: 2px;
    }
}
@media (max-width: 767px) {
    h2.title{
        font-size: 1.7em;
    }
    h2.title::after{
        width: 40px;
        height: 2px;
    }
}

p.content{
    max-width: 80%;
    margin: auto;
    font-size: .95em;
    /*padding: 10px 0 70px 0;*/
    text-align: justify;
    text-indent: 2.5em;
    transform: translateY(120%);
    opacity: 0;

    transition: all 0.8s ease 0s;
}
._active p.content{
    transform: translateY(0);
    opacity: 1;
}
@media (max-width: 1200px) {
    p.content{
        font-size: 0.9em;
        max-width: none;
    }
}






/* /////////////// SERVICES ///////////////*/

.services{
    height: max-content;
    background-color: rgba(0, 0, 50, 0.75);
    padding: 50px 0;
}

.services h2.title{
    color: white;
}
.services h2.title:after{
    height: 4px;
}
@media(max-width: 767px) {
    .services h2.title{
        margin-bottom: 0;
    }

}

.products{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    /*min-height: 100vh;*/
    flex-wrap: wrap;
    z-index: 1;

    transform: scale(0);
    transition: all 0.8s ease 0s;
}
.products._active{
    transform: scale(1);
}


.slider{
    display: flex;
    width: 840px;
    overflow-x: clip;
    position: relative;
}
/*@media(max-width: 960px) {*/
/*    .slider{*/
/*        width: 560px;*/
/*    }*/
/*}*/
@media(max-width: 992px) {
    .slider{
        width: 560px;
    }
    .slider._active{
        width: 100%;
    }
}
@media(max-width: 767px) {
    .slider{
        width: 288px;
        transform: translateX(10px);
    }
    .slider._active{
        width: 100%;
    }
}

.slider._active .wrapper{
    width: max-content;
}

.wrapper{
    display: flex;
    justify-content: start;
    transition: 0.2s linear;
}

.card{
    position: relative;
    min-width: 224px;
    width: 224px;
    min-height: 320px;
    margin: 25px;
    box-shadow: 16px 16px 24px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);

    transition: width .4s linear, opacity .4s linear;
}

.card .content{
    padding: 16px;
    text-align: center;
    transition: 0.5s;

    transform: translateY(100px);
    opacity: 0;
    position: relative;
}
.content._active{
    transform: translateY(0px);
    opacity: 1;
}

.card .content h2{
    position: absolute;
    opacity: .5;
    top: -56px;
    right: 24px;
    font-size: 6.4em;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}
.card .content h3{
    font-size: 1.44em;
    color: white;
    z-index: 1;
    margin-bottom: 12px;

    font-family: "TenorSans", sans-serif;
}

.card .content img{
    max-width: 160px;
    max-height: 112px;
    border-radius: 15px;
    /*border: 3px solid rgba(0,0,0,0.5);*/
}
.card .read_more{
    display: none;
}
.read_more_text.price{
    margin-top: 16px;
    color: deepskyblue;
}
.read_more_text.price .link_to_contact{
    font-weight: bold;
    cursor: pointer;

    transition: .2s;
}
.read_more_text.price .link_to_contact:hover{
    color: white;
}


.card .content button{
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    margin-top: 12px;
    background: white;
    color:black;
    border-radius: 20px;
    font-weight: 800;
    font-family: "RobotoSlab Bold", sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0, 0.2);

    cursor: pointer;
}


.products img.arrow{
    width: 50px;
    position: absolute;
    top: 160px;
    filter: invert(1);
    z-index: 1000;

    cursor: pointer;
}
.products img.arrow._hidden{
    display: none;
}

.products  img.arrow:hover{
    width: 3.44em;
}
.products  img.arrow.right{
    right: 0;
}
.products img.arrow.left{
    left: 0;
    transform: scale(-1, 1);
}
@media(max-width: 767px) {
    .products img.arrow{
        display: none;
    }
}




.card._active{
    position: absolute;
    width: 780px;
    z-index: 100;
}
.card._hidden{
    opacity: 0;
    transform: scale(0);
}


.card._active .content{
    width: 100%;
    height: 100%;
}


.card._active .read_more{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position-y: bottom;
}
.card._active .content button{
    display: none;
}
.card._active .content img{
    display: none;
}
.card._active .content h2 {
    top: -25.6px;
}

.card .content .read_more_text{
    display: none;
}
.card._active .content .read_more_text {
    display: block;
}
@media(max-width: 1200px) {
    .card._active{
        width: 93%;
    }
}
@media(max-width: 767px) {
    .card._active{
        width: 90vw;
        margin: 30px auto;
    }
}
@media(max-width: 550px){
    .card._active{
        position: relative;
    }
    .card._active .content{
        margin: 80px 0;
        align-self: end;
        height: auto;
    }
}

.read_more_text{
    color: white;
    font-size: 1em;
}



.read_more .close_arrow span{
    position: absolute;
    left: 8px;
    top: 32px;
    cursor: pointer;
    z-index: 105;

    padding: 8px;
    border-radius: 100%;
}
.read_more .close_arrow span:hover::after{
    background-color: deepskyblue;
}
.read_more .close_arrow span:hover::before{
    background-color: deepskyblue;
}
.read_more .close_arrow span::after{
    content: "";
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 40%;
    background-color: white;
    transform: rotate(30deg) translate(9px,0);

}
.read_more .close_arrow span::before{
    content: "";
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 40%;
    background-color: white;
    transform: rotate(-30deg) translate(9px,0);
}











/* CONTACTS SECTION ////////////////*/
.contact_us{
    overflow: hidden;
}
.email_box{
    width: 80%;
    overflow: hidden;
    max-width: 1200px;
    margin: 50px auto;
    min-height: 360px;
    display: flex;
    align-items: center;
    z-index: 2;
    /*flex-direction: column;*/
    justify-content: center;

    flex-wrap: wrap;
    padding: 32px;
    border-radius: 30px;
    color: white;
    box-shadow: 16px 32px 40px rgba(0,0,0,0.6);

    background-color: rgba(0, 0, 50, 0.75);
    /*transform: translateY(120%);*/
    opacity: 0;

    transition: all 0.8s ease 0s;
}
@media(max-width: 767px) {
    .email_box{
        max-width: 300px;
    }
}
.email_box._active{
    /*transform: translateY(0);*/
    opacity: 1;
}
.email_box._active .send_box{
    transform: translateY(0);
    opacity: 1;
}

.email_box .contacts{
    display: block;
    width: 40%;
    height: 100%;
    opacity: 0;

    /*transform: translateX(-100%);*/
    transition: all .5s ease-in .4s;
}
.email_box._active .contacts{
    opacity: 1;
    /*transform: translateX(0);*/
}

.email_box .contacts .contacts_title{
    margin: 10px auto 20px;
    text-align: center;
    font-size: 1.44em;
    text-decoration: underline;
}
@media(max-width: 1350px) {
    .email_box .contacts {
        width: 550px;
        margin: 0 auto;
        max-height: 50px;
        overflow: hidden;
        transition: height .5s linear;
    }
    .email_box .contacts .contacts_title{
        cursor: pointer;
    }
    .email_box .contacts._active{
        max-height: 360px;
        margin-bottom: 30px;
    }

    .email_box .contacts .contacts_title{
        text-align: center;
        text-decoration: none;
        font-size: 1.4em;
        font-weight: 300;

        position: relative;
    }
    .email_box .contacts .contacts_title::after{
        content: "";
        width: 20px;
        height: 4px;
        background-color: white;
        display: inline-block;

        position: absolute;
        right: 25px;
        top: 15px;

        border-radius: 10px;

        transform: rotate(-45deg);

        z-index: 10;
        transition: transform 0.5s linear;
    }
    .email_box .contacts .contacts_title::before{
        content: "";
        width: 20px;
        height: 4px;
        background-color: white;
        display: inline-block;

        position: absolute;
        right: 37px;
        top: 15px;

        border-radius: 10px;

        transform: rotate(45deg);
        z-index: 10;

        transition: transform 0.5s linear;
    }

    .email_box .contacts._active{
        border-bottom: 1px solid white;
    }
    .email_box .contacts._active .contacts_title::after{
        transform: rotate(-135deg);
    }
    .email_box .contacts._active .contacts_title::before{
        transform: rotate(135deg);
    }
}
@media(max-width: 767px) {
    .email_box .contacts .contacts_title{
        font-size: 19px;
    }

    .email_box .contacts .contacts_title::after{
        width: 15px;
        height: 3px;

        right: 15px;
        top: 15px;
    }
    .email_box .contacts .contacts_title::before{
        width: 15px;
        height: 3px;

        right: 24px;
        top: 15px;
    }
}

.email_box .contacts ul{
    margin: 0 auto;
    width: 85%;
    max-width: 350px;
}

.email_box .contacts li{
    display: grid;
    grid-template-columns: 1fr 1.2fr;

    margin: 20px 0;
    list-style: none;
    font-weight: bold;
    font-size: .9em;

    /*margin: 10px auto;*/
}
@media(max-width: 1200px) {
    .email_box .contacts ul li{
        font-size: 1.2em;
    }
}
@media(max-width: 992px) {
    .email_box .contacts ul li{
        font-size: 1em;
    }
}
@media(max-width: 787px) {
    .email_box .contacts ul li{
        font-size: .8em;
    }
}

.email_box .contacts li span{
    text-indent: 0;
    font-weight: normal;
    text-align: center;
}

.messengers {
  margin-top: 12px;
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.messengers img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform .15s ease, box-shadow .15s ease;
}

.messengers img:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .messengers {
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 22px;
  }
  .messengers img {
    width: 22px;
    height: 22px;
  }
  .email_box .contacts._active {
    max-height: 380px;  
  }
}

@media (max-width: 480px) {
  .messengers img {
    width: 20px;
    height: 20px;
  }
  .email_box .contacts._active {
    max-height: 400px;
  }
}

.successful_sending{
    position: absolute;
    background-color: white;
    border-radius: 20px;
    /*z-index: 0;*/
    color: black;
    text-align: center;
    padding: 30px;

    font-weight: 1000;
    opacity: 0;
    z-index: -1;
    /*transform: translateX(150%);*/

    transition: all 1s linear;
}
.successful_sending._active{
    animation: from_background 4.5s linear forwards;
    animation-delay: 0.2s;
}
@keyframes from_background {
    0%{
        opacity: 0;
        z-index: 5;
        /*transform: translateX(150%);*/
    }
    15%{
        opacity: 1;
        z-index: 5;
        /*transform: translateX(0);*/

    }
    70%{
        opacity: 1;
        z-index: 5;
        /*transform: translateX(0);*/
    }

    100%{
        /*transform: translateX(0);*/
        opacity: 0;
        z-index: -1;
    }
}





.loading{
    right: 30%;
    position: absolute;
    opacity: 0;
    z-index: -1;

    transition: all .4s linear;
}
.loading._active{
    opacity: 1;
    z-index: 1;
    transition: all .4s linear .5s;
}
@media(max-width: 1350px) {
    .loading{
        right: auto;
    }
}

.send_box{
    position: relative;
    transform: translateY(120%);

    transition: all .5s linear;
}
.email_box._active .send_box._active{
    transform: translateX(100%);
    opacity: 0;
}
@media(max-width: 1350px){
    .send_box{
        /*width: 650%;*/
        margin: 0 auto;
    }
}
@media(max-width: 767px) {
    .send_box{
        /*display: ;*/
    }
}
.send_box .email-title{
    color: white;
    font-size: 2em;
    letter-spacing: 5px;
    font-weight: bolder;
    margin: 0 0 40px;
}
.send_box input{
    padding: 5px 10px;
    border-radius: 10px;
    border: none;
    outline: none;


    height: 25px;
    width: 220px;

    font-size: .8em;

    transition: border .2s linear;
}
.send_box input._active{
    border: 3px solid red;
}
.send_box textarea._active{
    border: 3px solid red;

}
.send_box textarea{
    display: block;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid white;
    color: white;

    margin: 0 0 20px;
    width: 500px;
    /*text-align: center;*/
    padding: 10px;

    max-width: 500px;
    min-width: 500px;
    min-height: 20px;
    font-size: .8em;

    outline: none;

    transition: border .5s linear;
}
.suptitle{
    padding: 5px;
}
.suptitle.message{
    margin-top: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}
#name_input{
    background: white url("../img/whiteuser.png") no-repeat;
    background-position: 210px center;
    background-size: 20px;

    margin-right: 20px;

}
#email_input{
    background: white url("../img/email.png") no-repeat;
    background-position: 210px center;
    background-size: 20px;
}


.send_box p{
    display: none;
    position: absolute;
    opacity: 0;
    font-size: 12px;
    font-family: "Nunito Black", sans-serif;
    color: red;
    font-weight: 700;

    transition: opacity 0.5s linear;
}
.send_box p._active{
    opacity: 1;
    display: block;
}

#error_content_input{
    transform: translateY(-20px);
}
#error_email_input._active{
    left: 52.5%;
}
@media(max-width: 767px) {
    #error_content_input{
        left: initial;
        transform: translate(4px, 152px);
    }
    #error_email_input{
        transform: translate(-86px, 37px);
        width: max-content;
    }
    #error_name_input{
        transform: translate(-1px, -30px);
    }

}

#error_send{
    top: 0;
    left: 0;

    opacity: 0;

    width: 100%;
    height: 100%;

    display: flex;
    background: rgba(182, 5, 32, 0.97);
    border: 2px solid white;
    padding: 10px;
    position: absolute;
    justify-content: center;
    align-items: center;

    line-height: 30px;
    font-size: 1.2em;

    text-align: center;
    border-radius: 25px;
    z-index: -1;

    transition: all .3s linear;
}
#error_send._active{
    opacity: 1;
    z-index: 3;

    transition: all .5s linear;
}
@media(max-width: 767px) {
    #error_send{
        font-size: 1em;
        width: 90%;
    }

}

button{
    display: block;
    margin: 0 auto;

    border-radius: 20px;
    background-color: white;
    outline: none;
    color: black;
    padding: 5px 15px;
    font-weight: bolder;

    /*border: 3px solid rgba(0, 0, 50, 1);*/

    cursor: pointer;
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);*/

    transition: all 0.2s linear 0s;
}
button:hover{
    background-color: black;
    color: white;
}

@media(max-width: 767px){
    .send_box{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .send_box .suptitle-email{
        color: white;
        font-size: 1.6em;
        letter-spacing: 5px;
        font-weight: bolder;
        margin-bottom:40px;
    }
    .send_box .email-title{
        display: none;
    }
    .send_box input{
        width: 80%;
    }
    #name_input{
        margin: 0;
        background-position: 95%;
    }
    #email_input{
        margin-top: 20px;
        background-position: 95%;
    }
    .send_box textarea{

        margin: 0 0 20px;
        width: 200px    ;
        padding: 10px;

        max-width: 250px;
        min-width: 200px;
        min-height: 20px;
        font-size: .8em;

        outline: none;
    }
}





@keyframes ldio-hmaz2hxgtfb {
  0% { opacity: 1 }
  100% { opacity: 0 }
}
.ldio-hmaz2hxgtfb div {
  left: 94px;
  top: 48px;
  position: absolute;
  animation: ldio-hmaz2hxgtfb linear 1.4492753623188404s infinite;
  background: #ffffff;
  width: 12px;
  height: 24px;
  border-radius: 6px / 12px;
  transform-origin: 6px 52px;
}.ldio-hmaz2hxgtfb div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.328502415458937s;
  background: #fff;
}.ldio-hmaz2hxgtfb div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1.2077294685990336s;
  background: #fff;
}.ldio-hmaz2hxgtfb div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -1.0869565217391304s;
  background: #fff;
}.ldio-hmaz2hxgtfb div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.9661835748792269s;
  background: #fff;
}.ldio-hmaz2hxgtfb div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.8454106280193235s;
  background: #fff;
}.ldio-hmaz2hxgtfb div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.7246376811594202s;
  background: #fff;
}.ldio-hmaz2hxgtfb div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.6038647342995168s;
  background: #fff;
}.ldio-hmaz2hxgtfb div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.48309178743961345s;
  background: #fff;
}.ldio-hmaz2hxgtfb div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3623188405797101s;
  background: #fff;
}.ldio-hmaz2hxgtfb div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.24154589371980673s;
  background: #fff;
}.ldio-hmaz2hxgtfb div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.12077294685990336s;
  background: #fff;
}.ldio-hmaz2hxgtfb div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
  background: #fff;
}
.loadingio-spinner-spinner-a32hsdb9b6c {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden;
}
.ldio-hmaz2hxgtfb {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0; /* see note above */
}
.ldio-hmaz2hxgtfb div { box-sizing: content-box; }
/* generated by https://loading.io/ */







.footer{
    height: max-content;
    padding: 35px 0;
    background: rgba(0, 0, 50, 0.9);
    text-align: center;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

    overflow: hidden;
}
.footer .footer__info{
    display: flex;
    justify-content: center;
    align-items: center;
}
@media(max-width: 767px) {
    .footer .footer__info{
        margin-top: 30px;
    }
}
@media(max-width: 500px) {
    .footer .footer__info{
        margin-top: 150px;
        flex-direction: column;
    }
}
.footer .footer__info .company__name{
    font-size: 1.5em;
    padding: 0 20px;
    min-width: max-content;
}
@media(max-width: 500px) {
    .footer .footer__info .company__name{
        padding-bottom: 10px;
    }
}
.footer .footer__info .copyright{
    padding: 20px 5px 20px 20px;
    border-left: 1px solid gray;
    max-width: 370px;
    font-size: .7em;
    text-align: left;

    position: relative;
}
.copyright__text{
    transition: all .4s linear;
}
.footer .footer__info .copyright._active .copyright__text{
    opacity: 0;
}
@media(max-width: 767px) {
    .footer .footer__info .copyright{
        padding: 10px;
    }
}
@media(max-width: 600px) {
    .footer .footer__info .copyright{
        padding: 5px;
        width: 80%;

    }
}
@media(max-width: 500px) {
    .footer .footer__info .copyright{
        border-top: 1px solid gray;
        padding-top: 10px;
        border-left: none;
        text-align: center;
        width: 80%;
    }
}



.mikepolo__links{
    position: absolute;
    top: 100%;
    opacity: 0;
    height: max-content;

    transition: all .3s linear;
}
.copyright._active .mikepolo__links{
    top: 28%;
    opacity: 1;

    transition: all .3s linear;
    transition-delay: .4s;
}
@media(max-width: 500px) {
    .copyright._active .mikepolo__links{
        left: -50%;
        right: -50%;
    }
}
.mikepolo__link{
    display: inline-block;
    cursor: pointer;
    margin: 0 5px;
}
.mikepolo__link img{
    width: 40px;
    height: 40px;

    border-radius: 50%;

    transition: all .2s linear;
}
.mikepolo__link.linkedin img:hover {
    background-color: #0077b5;
    padding: 4px;

}
.mikepolo__link.telegram img:hover{
    background-color: deepskyblue;
    padding: 4px;
}
.mikepolo__link.gmail img:hover{
    background-color: #CC3434;
    padding: 4px;

}





.footer__nav{
    /*flex-direction: column;*/

    margin-left: 50px;
}
@media(max-width: 1199px) {
    .footer__nav{
        margin-left: 0;
    }
}
@media(max-width: 767px) {
    .footer__nav{
        position: absolute;
        top: 10%;
    }
}

.footer__nav li{
    display: inline-flex;
    margin: 7px;
    animation: none;
    opacity: 1;
    font-size: 11px;
    font-weight: normal;
    text-align: left;
    cursor: pointer;
    position: relative;

}
@media(max-width: 500px) {
    .footer__nav li{
        display: block;
        text-align: center;
    }
    .footer__nav li.location{
        display: inline-flex;
    }
}
.footer__nav li::after{
    position: absolute;
    bottom: 0;

    content: "";
    display: block;
    background-color: #d7d7d7;
    width: 0;
    height: 1px;
    transition: .3s all linear;

}

.footer__nav li:hover::after{
    width: 100%;
}

.footer__nav li img{
    width: 10px;
    height: 10px;
}

.footer__nav .location:hover{
    text-decoration: none;
    /*transform: translate(-5px, -2px);*/
}
.footer__info .copyright span{
    cursor: pointer;

    transition: color .3s ease-out;
}
.footer__info .copyright span:hover{
    color: white;
}

