body {
    font-family: 'Mitr', sans-serif;
    overflow-x: hidden !important;
    background-color: #fff;
    color: #6A6A6A;
    position: relative;
    min-height: 100vh;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5em;
}

a {
    color: #fff;
    list-style: none;
    display: inline-block;
    position: relative;
    z-index: 100;
}

a:hover {
    color: #BF0000;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: #fff;
    outline: none;
}

p {
    margin: 0;
}

img {
    max-width: 100%;
}

.bg-red {
    background: #A20000;
    color: #000;
}


/* navbar */
.top-menu {
    width: 100%;
    text-align: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, -0%);
    z-index: 1000;
}

.navbar-brand {
    position: relative;
    border-radius: 10px;
}

.main-logo img {
    height: 60px;
}

.navbar {
    width: 100%;
    margin: 0 auto;
    border-radius: 0 0 0px 0px;
    background: #5dc5dd;
    color: #fff;
    box-shadow: 0 0 18px -7px #df00005e;
}

.navbar .btn-icon {
    font-size: 20pt;
}


.tooltip-inner {
    background-color: rgba(186, 0, 0, 0.653) !important;
    color: #fff;
    z-index: 100;
    font-family: 'Montserrat', 'Prompt', sans-serif;
}

.tooltip-arrow {
    opacity: 0;
}

.dropdown-menu {
    padding: 0px;
    left: -2px;
    top: 104%;
    color: #1c1c1c;
}

.dropdown .btn {
    font-weight: 400;
    font-size: 1.4em;
}

.language a {
    border: none;
    padding: 0;
}

.language a:hover {
    border: none;
}

.language .btn-check:active+.btn,
.language .btn-check:checked+.btn,
.language .btn.active,
.language .btn.show,
.language .btn:active,
.language .btn:focus {
    border: none;
}


.language .dropdown-menu.show {
    background: transparent;
    border: none;
    display: flex;

}

.dropdown-item {
    text-decoration: none;
    color: #fff;
}
.dropdown-menu.show{
    background:#006ab6 ;
    border: none;
    padding: 10px 5px;
}


.language .dropdown-menu.show a, .dropdown-menu.show a {
     background:#006ab6 ;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 13pt;
    transition: all 0.5s;
}

.top-menu .dropdown-menu li{
    padding: 0;
}
.language .dropdown-menu.show a:hover, .dropdown-menu.show a:hover {
    background-color: #3293ff;
}

.dropdown-item:hover {
    background: #fff;
    border-radius: 7px;
    color: #fff;
}

button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

.i-social {
    background: #fff;
    height: 30px;
    width: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 0 3px;
    font-size: 1.4em;
    line-height: 1.37em;
}

.i-social i {
    color: #043C87;
    vertical-align: middle;
}


.navbar-toggler{
    padding: 2px;
}
.nav-link p.border-start{
    border: none !important;
}

/* ham menu */
#ham-menu {
    display: none;
}

label[for="ham-menu"] {
    display: block;
    top: 24px;
    left: 20px;
    z-index: 999;
    width: 33px;
    height: 33px;
    background-color: transparent;
    border-radius: 4px;
    /* border: 2px solid #9e9e9e; */
    padding-top: 3px;
}

#ham-menu:checked+label {
    background-color: transparent;
    border-color: rgb(13 57 121);
}

#ham-menu:checked~div.ham-menu {
    transform: translate(0px);
    visibility: visible;
}

#ham-menu:checked~div.full-page-green {
    display: block;
    opacity: 1;
    visibility: visible;
}

[for="ham-menu"]>div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column wrap;
    align-content: center;
    align-items: center;
}

.menu-line {
    display: block;
    width: 12px;
    height: 2px;
    margin: 3px 0 3px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    background-color: #fff;
    transition: 500ms;
    transform-origin: right center;
}

[for="ham-menu"]>div>span:nth-child(4),
[for="ham-menu"]>div>span:nth-child(5),
[for="ham-menu"]>div>span:nth-child(6) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    transform-origin: left center;
}


#ham-menu:checked+label span:nth-child(2),
#ham-menu:checked+label span:nth-child(5) {
    transform: scale(0);
}

#ham-menu:checked+label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

#ham-menu:checked+label span:nth-child(4) {
    transform: translateY(8px) rotate(-45deg);
}

#ham-menu:checked+label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

#ham-menu:checked+label span:nth-child(6) {
    transform: translateY(-8px) rotate(45deg);
}

.navigation {
    margin-top: 50px;
}

.bottom-menu {
    background: rgb(48, 116, 193);
    background: linear-gradient(180deg, rgba(48, 116, 193, 1) 0%, rgba(0, 38, 122, 1) 100%);
    width: 95%;
    height: 60px;
    border-radius: 6px;
    padding: 0 5px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 1000;
    font-size: 0.7em;
    line-height: 1em;
}



.bottom-menu a {
    width: 14%;
    text-align: center;
    padding: 5px;
}

.bottom-menu a.invite {
    width: 18%;
}

.bottom-menu img {
    width: 25px;
    margin: 0 auto;
    text-align: center;
    display: block;
    margin-bottom: 4px;
}

.bottom-menu .logo {
    width: 190px;
    max-width: 200%;
}

a.menu-register {
    width: 40%;
    position: relative;
    height: 60px;
}

a.menu-register img {
    position: absolute;
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translate(-50%, 0%);
}




footer {
    text-align: center;
    font-size: 0.8em;
    padding: 2px 15px;
    bottom: 0;
    width: 100%;
    background: #fff;
    position: relative;
    color: #00267A;
    padding-top: 20px;
}

.custom-border {
    position: relative;
}

.custom-border:after {
    content: " ";
    position: absolute;
    border-left: 1px #ffffff solid;
    top: 17%;
    right: 0;
    height: 3em;
    margin-top: auto;
    margin-bottom: auto;
}

@media (min-width: 450px) {
    .bottom-menu {
        padding: 0 10px;
        font-size: 0.8em;
    }

    .bottom-menu .logo {
        width: 204px;
        max-width: 200%;
    }

    a.menu-register img {
        position: absolute;
        position: absolute;
        bottom: 0px;
    }
}

@media (min-width: 511px) {}

@media (min-width: 585px) {

    .main-logo img {
        max-width: 180px;
        top: -7px;
    }

    .bottom-menu {
        width: 600px;
        height: 70px;
        font-size: 1em;
        padding: 0 5px;
    }

    a.menu-register {
        height: 70px;
    }

    .bottom-menu .logo {
        width: 241px;
        max-width: 200%;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        flex-basis: 100%
    }

    .navbar {
        width: 100%;
        margin: 0 auto;
    }

    .nav-item i {
        display: none;
    }
    .nav-link p.border-start{
        border-left: 1px solid #fff !important;
    }

    .top-menu li {
        padding: 15px 0;
        font-size: 1.4em;
    }

    .main-logo img {
        height: 100px;
        margin-top: -20px;
    }

    .download .dropdown-toggle::after {
        display: block;
    }

    .dropdown-menu.show {
        left: -10px;
    }

    .cookies-banner {
        padding: 3%;
    }

    footer {
        padding: 10px;
        font-size: 1em;
    }

}