@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600&family=Signika+Negative:wght@400;500;600&display=swap');

*, *::after, *::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    --main-dark-1: #03111C;
    --main-dark-2: #092437;
    --main-accent: #30C6FF;
    --main-accent-2: #2788ae;
    --main-text: #FFFFFF; 
    scroll-behavior: smooth;
}

*::selection {
    background: var(--main-accent);
}

html {
    font-size: 14px;
}

body {
    min-height: 100%;
    width: 100%;
    color: var(--main-text);
    font-family: 'Signika Negative', sans-serif;
}

.hide {
    display: none !important;
}

/* ############################################################## */
/* ##########################  HEADER  ########################## */
/* ############################################################## */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 0.1rem 2rem;
    z-index: 10;
}

header .burger {
    display: inline-flex;
    height: 24px;
    width: 24px;
    flex-direction: column;
    justify-content: space-evenly;
    align-self: center;
    display: none;
    z-index: 100;
    cursor: pointer;
}

header .burger .top,
header .burger .middle,
header .burger .bottom {
    width: 24px;
    height: 3px;
    background: var(--main-accent-2);
}


header .logo {
    font-size: 1.4rem;
    padding: 0.5rem 0;
    height: 5rem;
}

header.active {
    /* background: linear-gradient(var(--main-dark-1) 75%, transparent); */
    background: var(--main-dark-1);
}

header nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

header nav ul li a {
    display: flex;
    padding: 1rem;
    color: inherit;
    text-decoration: none;
}    

header nav ul li a:hover {
    color: var(--main-accent);
}    

header nav ul li a.langBtn {
    color: var(--main-accent);
    text-shadow: 0px 0px 10px var(--main-accent);
}

header nav ul li a.langBtn:hover {
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s ease all;
}

/* ############################################################## */
/* ##########################   MAIN   ########################## */
/* ############################################################## */

main section {
    min-height: 100vh;
    width: 100%;
}    

main section .section-title {
    padding: 1rem;
    margin-bottom: 2rem;
    width: 60%;
    font-size: 3rem;
    letter-spacing: 0.6rem;
    border-bottom: 1px solid var(--main-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

main section .section-subtitle {
    margin-top: 5rem;
    padding: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

main section .section-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
    max-width: 1200px;
}


section.seperator {
    max-height: 1rem;
    min-height: 1rem;
    background: linear-gradient(90deg, var(--main-accent-2), var(--main-dark-2));
}

/* ############################################################## */
/* #######################  HOME SECTION  ####################### */
/* ############################################################## */

main section[data-section-home] {
    background: linear-gradient(var(--main-dark-1), var(--main-dark-2));
    /* background: url('../media/portrait.png'), linear-gradient(var(--main-dark-1), var(--main-dark-2));
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    background-origin: border-box;
    background-blend-mode: luminosity; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}    


main section[data-section-home] .container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    font-size: 0;
}

main section[data-section-home] .container .slider {
    height: 100vh;
    width: 200vw;
    padding: 0;
    font-size: 0;
    overflow: hidden;
}

main section[data-section-home] .container .slider .slide {
    display: inline-flex;
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background-position: center center;
    background-size: cover;
    background-color: var(--main-dark-2);
}

main section[data-section-home] .container .slider .slide .slideBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 16, 44, 0.7);
}    

main section[data-section-home] .container .slider .slide .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
    padding: 1rem;
    letter-spacing: 1rem;
    color: var(--main-accent);
}    

main section[data-section-home] .container .slider .slide .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    font-size: 1.8rem;
    padding: 1rem;
    color: var(--main-text);
}   

main section[data-section-home] .container .slider .slide .text li{
    padding: 5px;
}
   


/* ############################################################## */
/* #####################  products SECTION  ##################### */
/* ############################################################## */


main section[data-section-products] {
    background: url('../media/back1.png'), linear-gradient( var(--main-dark-2), var(--main-dark-1));
    background-repeat: no-repeat;
    background-blend-mode: soft-light;
    background-size: cover;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

main section[data-section-products] .section-title {
    margin-bottom: 6rem;
}

main section[data-section-products] .section-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

main section[data-section-products] .products {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 3rem;
    width: 90%;
}

main section[data-section-products] .products .col {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.6rem;
    flex: 1;
}

main section[data-section-products] .products .col .products-title {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    font-size: 2rem;
    border-bottom: 0.1rem solid var(--main-accent);
}


main section[data-section-products] .products .product {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.2rem;
    padding: 1rem;
    /* box-shadow: 3px 5px 10px 0px rgba(255, 255, 255, 0.2); */
    /* background: rgba(255, 255, 255, 0.05); */
    border-radius: 0.4rem;
    /* border: 1px solid var(--main-accent); */
}

main section[data-section-products] .products .product:hover {
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s ease all;
    cursor: pointer;
}

main section[data-section-products] .products .product {
    padding: 1rem 1rem;
    border-left: 3px solid var(--main-accent);
    background: rgba(255, 255, 255, 0.05);
}

main section[data-section-products] .other-product {
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s ease all;
    cursor: pointer;
    margin: 3rem 0 0 0 ;
    font-size: 1.2rem;
    color: var(--main-text);
    border-radius: 0.3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: stretch;
    align-self: center;
}

main section[data-section-products] .other-product span {
    padding: 1rem;
}


main section[data-section-products] .other-product:hover {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

@keyframes products {
    0% {
        display: none;
        opacity: 0;
    }    

    100% {
        display: block;
        opacity: 1;
    }
}



/* ############################################################## */
/* #####################  PARTNERS SECTION  ##################### */
/* ############################################################## */


main section[data-section-partners] {
    background: url('../media/back2.png'), linear-gradient( var(--main-dark-1), var(--main-dark-2));
    background-repeat: no-repeat;
    background-blend-mode: soft-light;
    background-size: cover;
    transition: 0.3s ease all;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

main section[data-section-partners] .partners {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    max-width: 80%;
}


main section[data-section-partners] .partners .partner {
    width: 15rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem;
    font-size: 1.2rem;
    padding: 1rem;
    /*box-shadow: 3px 5px 10px 0px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);*/
    border-radius: 0.4rem;
    border: 1px solid var(--main-accent);
    position: relative;
}

main section[data-section-partners] .partners .partner:hover {
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s ease all;
    cursor: pointer;
}

main section[data-section-partners] .partners .partner:hover span {
    opacity:1;
    transition: 0.3s ease all;
    cursor: pointer;
}

main section[data-section-partners] .partners .partner img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0.8;
    filter: grayscale();
}

main section[data-section-partners] .partners .partner span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 16, 44, 0.5);
    z-index: 2;
    opacity: 0;
}

/* ############################################################## */
/* #####################  TESTIMONIALS SECTION  ##################### */
/* ############################################################## */


main section[data-section-testimonials] {
    background: url('../media/back3.png'), linear-gradient( var(--main-dark-1), var(--main-dark-2));
    background-repeat: no-repeat;
    background-blend-mode: soft-light;
    background-size: cover;
    transition: 0.3s ease all;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
    padding: 1rem;
}

main section[data-section-testimonials] .testimonials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    max-width: 60%;
}

main section[data-section-testimonials] .testimonials .testimonial {
    width: 30rem;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    flex-direction: column;
    margin: 1rem;
    font-size: 1rem;
    padding: 1rem;
    /*box-shadow: 3px 5px 10px 0px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);*/
    border-radius: 0.4rem;
    border: 1px solid var(--main-accent);
}

main section[data-section-testimonials] .testimonials .testimonial .title {
    color: var(--main-accent);
    font-size: 1.1rem;
    padding-bottom: 0.4rem;
    font-weight: 600;
    text-align: left;
}

main section[data-section-testimonials] .testimonials .testimonial .text {
    color: var(--main-text);
    font-size: 1.1rem;
    padding-bottom: 0.4rem;
    font-weight: 400;
    font-style: italic;
}

main section[data-section-testimonials] .testimonials .testimonial .author {
    color: var(--main-text);
    font-size: 0.9rem;
    padding-top: 0.4rem;
    font-weight: 300;
    text-align: right;
    color: var(--main-accent-2);
}

main section[data-section-comments] .comments .comment:hover {
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s ease all;
}

/* ############################################################## */
/* #####################  CONTACT  SECTION  ##################### */
/* ############################################################## */


main section[data-section-contact] {
    background: linear-gradient( var(--main-dark-2), var(--main-dark-1));
    transition: 0.3s ease all;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

main section[data-section-contact] .contacts {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    max-width: 60%;
}

main section[data-section-contact] .contacts .contact {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    flex-direction: column;
    margin: 1rem;
    font-size: 1rem;
    /*box-shadow: 3px 5px 10px 0px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);*/
    border-radius: 0.4rem;
    border: 1px solid var(--main-accent);
}

main section[data-section-contact] .contacts .contact:hover {
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s ease all;
}

main section[data-section-contact] .contacts .contact a {
    font-size: 1rem;
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: stretch;

}

main section[data-section-contact] .contacts .contact a i {
    background: var(--main-accent);
    padding: 1rem;
}

main section[data-section-contact] .contacts .contact a span {
    color: var(--main-text);
    padding: 1rem;
}

main section[data-section-contact] .qrcode {
    width: 20rem;
    margin: 2rem 0;
}

/* ############################################################## */
/* ########################    FOOTER    ######################## */
/* ############################################################## */

footer {
    background-color: var(--main-dark-2);
    padding: 2rem;
}


footer nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 0.1rem 2rem;
}

footer nav .logo {
    height: 8rem;
    padding: 1rem;
    opacity: 0.8;
}

footer nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}


footer nav ul li a {
    display: flex;
    padding: 1rem;
    color: inherit;
    text-decoration: none;
}

footer nav ul li a:hover {
    color: var(--main-accent);
}    

footer nav ul.menu {
    border-bottom: 1px groove var(--main-accent-2) ;
    border-top: 1px groove var(--main-accent-2) ;
    opacity: 0.8;
}

footer nav ul.social {
    opacity: 0.5;
}

footer .copyright {
    padding: 2rem 0 0 0;
    color: var(--main-text);
    font-size: 0.8rem;
    opacity: 0.8;
}

@media screen and (max-width: 1200px) {

    header .logo {
        text-align: center;
    }

    footer .logo {
        text-align: center;
    }

    main section .section-title {
        width: 80%;
        text-align: center;
    }

    main section .section-wrapper {
        width: 80%;
    }
    
    main section[data-section-home] .container .portrait img {
        position: absolute;
        bottom: 0;
        right: 0;
        max-height: 100%;
        max-width: 80%;
        opacity: 0.6;
        mix-blend-mode: luminosity;
    }    

    main section[data-section-partners] .partners .partner {
        width: 12rem;
    }
    


}

@media screen and (max-width: 900px) {

    html {
        font-size: 12px;
    }

    main section .section-title {
        width: 80%;
    }

    main section[data-section-products] .products {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    main section[data-section-products] .products .product {
        justify-content: flex-start;
        text-align: left;
    }


    main section[data-section-partners] .partners .partner {
        width: 12rem;
    }

    main section[data-section-home] .container .counter .countTitle {
        letter-spacing: 1.4rem;
    }    
    
    main section[data-section-home] .container .counter .title {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 5rem;
        font-weight: bold;
        padding: 1rem;
        letter-spacing: 0.6rem;
        color: var(--main-accent);
    }    
        
    main section[data-section-products] .other-product {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        display: flex;
        flex-direction: column;
    }    

    main section[data-section-products] .other-product .button {
        display: none;
    }    

    main section[data-section-products] .other-product span {
        padding: 1rem 0.5rem;
        text-align: center;
    }    

    main section[data-section-products] .other-product .productList {
        position: unset;
        display: block;
        border: none;
    }    
    
    main section[data-section-products] .other-product .productList ul li {
        padding: 0.2rem;
    }    

    
}

@media screen and (max-width: 700px) {

    html {
        font-size: 12px;
    }

    header .menu {
        display: none;
    }

    header.toggled {
        height: 100%;
        width: 100%;
    }

    header.toggled .logo{
        display: none;
    }
    
    header.toggled .menu {
        position: fixed;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        display: flex;
        z-index: 99;
        background: var(--main-dark-1);
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    header.toggled .menu ul {
        display: flex;
        z-index: 99;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    header.toggled .menu a{
        padding: 10px;
        margin: 5px;
        font-size: 1.4rem;
    }
    
    header {
        justify-content: space-between;
        padding: 1rem 3rem;
    }
    
    header .burger {
        display: flex;
    }

    header.toggled .burger {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    header.toggled .burger .top {
        transform: rotate(45deg) translate(2px, 0px);
        transition: 0.3s ease all;
    }

    header.toggled .burger .bottom {
        transform: rotate(-45deg) translate(2px, 0px);
        transition: 0.3s ease all;
    }

    header.toggled .burger .middle {
        display: none;
        transition: 0.3s ease all;
    }



    main section .section-title {
        width: 80%;
    }

    main section[data-section-products] {
        padding: 3rem 0;
    }

    main section[data-section-partners] {
        padding: 3rem 0;
    }

    main section[data-section-partners] .partners .partner {
        width: 14rem;
    }

    main section[data-section-home] .container .counter .countTitle {
        letter-spacing: 0.4rem;
    }    
    
    main section[data-section-home] .container .counter .title {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        word-break: normal;
        font-weight: bold;
        padding: 1rem;
        letter-spacing: 0;
        color: var(--main-accent);
    }
    
}
