:root {
    --main-color: #E30613;
    --main-hover-color: #E83742;
    --secondary-color: #217B3D;
    --success-color: #A2D729;
    --success-hover-color: #B4DF53;
    --disabled-color: #CCCCCC;
    --link-color: #3C91E6;
    --link-hover-color: #62A7EB;
    --text-main-color: #FFFFFF;
    --text-secondary-color: #000000;
}

/* BODY */
body {
    height: 100dvh;
    width: 100vw;
    padding: 0;
    margin: 0;
    font-family: Montserrat;
    font-size: 1rem;
    overflow: hidden;
    cursor: default;
}

    /* HEADER */
    header {
        position: relative;
        display: flex;
        height: 70px;
    }

        /* LOGO */
        #logo {
            width: 200px;
            height: 60px;
            margin-top: 5px;
            margin-left: 10px;
            background-image: url('../../img/logo.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center center;
        }

        /* NAV */
        #nav {
            width: calc(100% - 400px);
        }

            #nav ul {
                display: flex;
                list-style: none;
                padding: 0;
                margin: 0;
                list-style: none;
                align-items: center;
                justify-content: center;
                height: 100%;
                gap: 20px;
            }

                .menus {
                    color: var(--main-color);
                    cursor: pointer;
                }

                    .menus:hover {
                        color: var(--secondary-color);
                    }
                
                    .menus.selected {
                        color: var(--secondary-color);
                    }
        
        #signp {
            width: 160px;
            padding-right: 40px;
            color: var(--main-color);
            line-height: 70px;
            text-align: right;
        }

            #signp span {
                cursor: pointer;
            }
            
                #signp span:hover {
                    color: var(--secondary-color);
                }

                #signin.selected {
                    color: var(--secondary-color);
                }

            #logout {
                margin-left: 20px;
                cursor: pointer;
            }

                #logout:hover {
                    color: var(--main-hover-color);
                }

    /* CONTENT */
    section {
        position: relative;
        /*height: 100%;*/
        height: calc(100% - 70px);
        overflow: hidden;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

        section::-webkit-scrollbar {
            display: none;
        }

        .slides {
            display: flex;
            position: relative;
            width: 100%;
            min-height: 100%;
        }
    
    /* BUTTON TO TOP */
    #totop {
        display: none;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 20px;
        text-align: center;
        font-size: 30px;
        line-height: 40px;
        cursor: pointer;
        border: 1px solid var(--main-color);
        background-color: var(--text-main-color);
        color: var(--main-color);
    }

        #totop:hover {
            border: 1px solid var(--text-main-color);
            background-color: var(--main-color);
            color: var(--text-main-color);
        }

    #slide-f {
        width: 100%;
        height: 700px;
    }
        
        #slide-f-left {
            width: 50%;
            padding-top: 50px;
            background: linear-gradient(180deg, rgba(227,6,19,1) 0%, rgba(232,55,66,1) 35%, rgba(236,94,103,1) 100%);
        }

            #slide-f-pom {
                display: flex;
                width: calc(70% - 40px);
                max-width: calc(100% - 290px);
                flex-direction: column;
                justify-content: center;
                padding-left: 40px;
            }
        
                #slide-f-pom h3 {
                    font-size: 20px;
                    color: var(--text-main-color);
                }
                
                #slide-f-pom span {
                    font-size: 18px;
                    color: var(--text-main-color);
                }
        
                #slide-f-pom button {
                    width: 400px;
                    height: 80px;
                    font-family: Montserrat;
                    font-size: 20px;
                    appearance: none;
                    border: none;
                    padding: 5px 10px;
                    margin-top: 30px;
                    border-radius: 100px;
                    color: var(--main-color);
                    background-color: var(--text-main-color);
                    border: 1px solid var(--main-color);
                    cursor: pointer;
                }

                #slide-f-pom button:hover {
                    background-color: var(--main-color);
                    color: var(--text-main-color);
                    cursor: pointer;
                }

            #slide-f-net {
                color: var(--text-main-color);
            }

            #slide-f-net h3 {
                font-size: 24px;
                text-indent: 40px;
            }

            #slide-f-net div {
                font-size: 18px;
                text-indent: 20px;
                margin-bottom: 10px;
            }

                #slide-f-net div i {
                    margin-right: 10px;
                }

                .network-links {
                    cursor: pointer;
                }

                    .network-links:hover {
                        text-decoration: underline;
                    }
        
        #slide-f-center {
            width: 20%;
            padding-top: 50px;
            color: var(--text-main-color);
            background: linear-gradient(180deg, rgba(227,6,19,1) 0%, rgba(232,55,66,1) 35%, rgba(236,94,103,1) 100%);
        }

            #slide-f-center h3 {
                font-size: 24px;
            }

            #slide-f-center div {
                font-size: 18px;
                margin-top: 10px;
            }

                #slide-f-center div i {
                    margin-right: 10px;
                }

                #slide-f-center div a:hover {
                    text-decoration: underline;
                }

        #slide-f-right {
            width: calc(30% - 60px);
            padding-left: 40px;
            padding-right: 20px;
            padding-top: 80px;
        }
        /* {
               color: var(--main-color) !important;
            }*/

            #slide-f-right .slide-custom-email a {
                color: var(--main-color) !important;
            }



        #slide-f a:not(.footer-link) {
            color: var(--text-main-color);
            
            text-decoration: none;
        }
        #slide-f-right a:not(.footer-link):hover {
    color: var(--main-color) !important;
    text-decoration: underline;
}

#slide-f a:not(.footer-link):hover:not(#slide-f-right a) {
    color: var(--text-main-color) !important;
}


    
        #slide-f-contacts {
            display: flex;
            flex-direction: column;
        }
    
            #slide-f-logo {
                width: 220px;
                height: 60px;
                background-image: url("/img/logo.png");
                background-repeat: no-repeat;
                background-position: center center;
                background-size: cover;
            }

            #slide-f-right span:nth-child(2) {
                font-size: 18px;
                margin-top: 60px;
                color: var(--main-color);
            }

            #slide-f-right span:nth-child(3) {
                font-size: 18px;
                margin-top: 40px;
                margin-bottom: 40px;
                color: var(--main-color);
            }
    
            #slide-f-phone {
                display: none !important;
            }

           

            #slide-f-phone, #slide-f-phone a,
            #slide-f-mail, #slide-f-mail a {
                color: var(--main-color);
                font-size: 18px;
            }
            
            #slide-f-phone a,
            #slide-f-mail a {
                cursor: pointer;
            }

                #slide-f-phone a:hover,
                #slide-f-mail a:hover {
                    text-decoration: underline;
                    color: var(--main-color) !important;
                }

            #slide-f-mail {
                margin-top: 30px;
            }

            .footer-link {
                color: var(--main-color);
                text-decoration: none;
            }

                .footer-link:hover {
                    color: var(--main-color);
                    text-decoration: underline;
                }