* {
    box-sizing: border-box;
    padding: 0;
    text-decoration: none;
    outline: none;
    border: none;
    margin: 0;
    font-family: 'Open Sans',sans-serif;
}

body {
    background-color: #f5f5f5;
    color: black;
    font-size: 18px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 10vh;
    /* overflow-y: hidden; */
}

/* loader */
.loader  {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    background-color: white;
    z-index: 99999999999999;
    position: fixed;
    transition: all .3s linear;
}
.loader span {
    display: block;
    content: "";
    width: calc((1vw + 1vh) *4);
    height: calc((1vw + 1vh) *4);
    border-radius: 4px;
    animation: small_big 5s infinite;
    background-color: #f86624 ;
    transition: all .3s linear;
}
@keyframes  small_big {
    0% {
        transform: rotate(0deg);
        scale: 1;
    }
    50% {
        transform: rotate(360deg);
        scale: 1.3;
    }
    100% {
        transform: rotate(0deg);
        scale: 1;
    }
}

/* static elements */
a {
    color: black;
    transition: all .3s linear;
}
a:hover {
    color: #f86624;
}
h1, h2, h3, h4, h5, h6 {
    /* font-family: 'Montserrat', sans-serif; */
    font-family: 'Roboto', sans-serif;
}

h1 {
    padding: 4vh 0;
    font-size: calc((1vw + 1vh) * 2);
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: calc((1vw + 1vh) * 3);
        text-align: center;
        padding: 4vh 4vw;
    }
}

h2 {
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    /* font-weight: bold; */
}

.page {
    min-height: 82vh;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

/* Header */
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;

    height: 100px;
    padding: 10px 5%;
    width: 100%;
    top: 0;
    z-index: 10;
    /* border-bottom: 2px solid rgb(0,0,0,.05); */
}
.nav__menu {
    display: none !important;
    cursor: pointer;
}
nav .nav__left {
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav__left img {
    width: 64px;
    height: 64px;
}
nav .nav__right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    transition: all .3s linear;
}
.nav__right a {
    font-size: 18px;
    font-weight: 600;
    color: rgb(47, 47, 47);
    transition: all .3s linear;
    position: relative;
}
.nav__right a:hover {
    color: #f86624;
}
.nav__right a::after {
    display: block;
    content: '';
    width: 0%;
    height: 3px;
    background-color: #f86624;
    /* background-color: rgb(0, 0, 0, .4); */
    transition: all .3s linear;
    border-radius: 2px;
    /* position: absolute; */
    /* top: 50%; */
    /* z-index: -1; */

}
.nav__right a:hover:after {
    width: 100%;
}
.nav__right__button__menu {
    cursor: pointer;
}
.nav__right__button__menu:hover:after {
    width: 100%;
}
.nav__right__button__menu:hover .nav__right__menu {
    display: flex;
}
.nav__right__menu {
    position: absolute;

    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;

    background-color: #f5f5f5;
    display: none;
    /* border-radius: 10px; */
    box-shadow: 0 0 5px 1px rgb(0,0,0,.1);
    border-radius: 6px;
    z-index: 10;
}
.nav__right__menu a {
    padding: 8px;
    font-size: 18px;
    width: 100%;
    left: 0;
}
.nav__right__menu a:first-child {
    border-radius: 6px 6px 0 0;
}

.nav__right__menu a:last-child {
    border-radius: 0 0 10px 10px;
}
.nav__right__menu a:hover {
    background-color: rgb(0,0,0,.05);
    color: rgb(47, 47, 47);
}
.nav__right__menu a:hover:after {
    display: none;
    width: 0;
}
.nav__right:first-child {
    display: none;
}
.nav__right__close {
    display: none;
}

a:active, a:hover, a:focus {
    background-color: none;
}
.change__language {
    background-color: transparent;
    padding: 4px 4px;
    border: 2px solid rgb(47, 47, 47);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    color: rgb(47, 47, 47);
    transition: all .3s linear;
    cursor: pointer;
}
.change__language:hover, .change__language:focus {
    border-color: #f86624;
    color: #f86624;
}
.change__language option {
    background-color: white;
    color: #202020;
    padding: 4px 6px; 
}
.change__language option:hover {
    background-color: #f86624;
}
.change__language option:focus {
    background-color: #f86624;
}
.change__language option:active {
    background-color: #f86624;
}

@media screen and (min-width: 600px) and (max-width:1000px) {
    .nav__menu {
        font-size: 100px;
    }
}
@media screen and (max-width:1000px) {
    .nav__menu {
        display: block !important;
        transform: rotateX(180deg)!important;
        transform: rotateY(180deg)!important;
        color: rgb(20,20,20,1);
        z-index: 10 ;
        position: fixed;
        padding: 12px;
        font-weight: bold;
        background-color: #fff;
        border-radius: 10px;
        box-shadow:  0 0 10px rgb(20,20,20,.1);

        top: 3.5vh;
        right: 3vh;
        width: 46px;
        height: 46px;
    }
    .nav__right__button__menu a:first-child {
        padding: 0 20px
    }
    .nav__right:first-child {
        background-color: rgb(0,0,0,.05);
    }
    .nav__right {
        /* display: none !important; */
        display: flex;
        justify-content: start !important;
        align-items: start !important;
        font-size: 28px;
        flex-direction: column;

        position: fixed;
        background-color: #fff;
        z-index: 13;

        width: 80%;
        /* height: 100vh; */
        height: 100%;
        top: 0;
        left: 0;
        /* left: -100%; */
        box-shadow: 0 20vw 0px 20vw rgb(32, 32, 32, .6)
    }
    .nav__right__close__svg {
         /* scale: .6; */
    }
    nav .nav__right {
        gap: 0;
    }
    .nav__link {
        width: 100%;
        border-bottom: 1px solid rgb(0,0,0,.1);
        /* padding: 10px 10px; */
        height: 60px;
    }
    .nav__right a {
        height: 60px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: start;
        padding: 0 20px;
    }
    .nav__right__menu__open {
        padding: 0 20px;
    }
    .nav__right a:hover:after {
        display: none;
    }
    .nav__right__menu {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    .nav__right__close {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 0;
        background-color: #262626;
        padding: 10px 20px;
    }
    .nav__right__close b {
        font-size: 18px;
        color: #f5f5f5;
    }
    .nav__right__close span {
        background-color: #f5f5f5;
        color: #262626 !important;
        color: white;
        border-radius: 100%;
        padding: 4px;
        font-size: 16px;
    }
    .nav__right__menu {
        display: flex;
        justify-content: start !important;
        align-items: start !important;
        font-size: 28px;
        flex-direction: column;

        background-color: #fff;
        z-index: 4;

        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        left: -100%;
        box-shadow: none;
        border-radius: none;
        transition: all .3s linear;
    }
    .nav__right__menu a {
        border-bottom: 1px solid rgb(0,0,0,.05);
        padding: 20px 10px;
    }
    .change__language {
        min-width: 90%;
    }
    #LanguageForm {
        width: 100%;
        min-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-top: 10px;
        position: absolute;
        bottom: 2vh;
        z-index: 100;
    }
}

::selection {
    background-color: #262626;
    color: #fff;
}
::-webkit-scrollbar {
    width: 8px;
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: #262626;
    border-radius: 1px;
    border-radius: 2px;
}

.bg {
    display: flex;
    justify-content: start;
    align-items: start;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    gap: 5vw;
    overflow: hidden;

    background-image: url('/static/main/img/logo/logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-attachment:fixed;
    background-size: cover;
    opacity: .05;

    /* background: rgb(131,58,180, .1); */
    /* background: linear-gradient(90deg, rgba(131,58,180,.1) 0%, rgba(194,43,101,.1) 26%, rgba(253,29,29,.1) 69%, rgba(252,176,69,.1) 100%);  */
}
/* .bg span {
    display: block;
    content: '';
    width: 5vw;
    height: 100vh;
    background-color: rgb(248, 102, 36, .05) ;
    transform: rotate(45deg);
    border-radius: 20px;
} */

footer {
    background-color: #202020;
    position: absolute;
    bottom: 0;
}

.global__messages {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.global__message {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: white;
    color: #202020;
    border: 2px solid rgb(20,20,20,.1);
    box-shadow:  0 0 10px rgb(20,20,20,.1);

    z-index: 9999;
    position: fixed;
    
    width: 60vw;
    padding: 3vh 5vw;
    top: 5vh;
    left: 20vw;
    right: 20vw;
    border-radius: 6px;

}