@import url('https://fonts.googleapis.com/css2?family=Monda:wght@400..700&display=swap');

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: #363e91;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #113180;
}

html {
    scrollbar-color: #363e91 #eceadf;
    scrollbar-width: thin;
}

body {
    background: #363e91 url(../Media/Images/background.jpg) no-repeat top center;
    background-size: contain;
    font-family: "Monda", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body.home {
}

body.page {
}

section {
    font-size: 1rem;
}

.top-bg {
    color: #111111;
    background: #ffffff;
}

@media (max-width: 1200px) {
    .container {
        width: 100%;
    }
}

.bg-blue {
    background-color: #363e91;
}

.bg-ecre {
    background-color: #eceadf;
}

.bg-white {
    background-color: #ffffff;
}

.bg-dark {
    background-color: #222222;
}

.bg-white-blue {
    background: -webkit-linear-gradient(left, #ffffff 50%, #363e91 50%);
    background: -moz-linear-gradient(left, #ffffff 50%, #363e91 50%);
    background: -o-linear-gradient(left, #ffffff 50%, #363e91 50%);
    background: linear-gradient(to right, #ffffff 50%, #363e91 50%);
}

.bg-blue-white {
    background: -webkit-linear-gradient(left, #363e91 50%, #ffffff 50%);
    background: -moz-linear-gradient(left, #363e91 50%, #ffffff 50%);
    background: -o-linear-gradient(left, #363e91 50%, #ffffff 50%);
    background: linear-gradient(to right, #363e91 50%, #ffffff 50%);
}

.text-blue {
    color: #363e91;
}

.text-ecre {
    color: #eceadf;
}

@media (max-width: 768px) {
    .sm-no-border {
        border: none !important;
    }
}

.fullvh {
    height: 100vh;
}

.mh50vh {
    min-height: 50vh;
}

.mh80vh {
    min-height: 80vh;
}

div.main-menu-container {
    display: flex;
}

ul.main-menu {
    display: flex;
    list-style: none;
    padding: 0;
    width: 100%;
    margin-top: 1rem;
    margin-left: auto;
    justify-content: flex-end;
}

ul.main-menu li a {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 1.15rem;
    padding: 2px 15px;
    border-right: 2px solid #ffffff;
    text-shadow: -0.5px -0.5px 0 black;
}

ul.main-menu li:last-of-type a {
    border-right: 0;
}

ul.main-menu li a:hover,
ul.main-menu li a:focus,
ul.main-menu li a.active {
    color: #ffffff;
    font-weight: 600;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

.z-4 {
    z-index: 4;
}

.z-5 {
    z-index: 5;
}

.page-content {
    background-color: #ffffff;
    padding: 4rem 2rem;
    min-height: 100vh;
}

.page-content h1.h2 {
    color: #363e91;
}

.welcome-container {
    text-align: center;
    color: #ffffff;
    height: 78vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 1.2rem;
}

.arrow-left {
    background: url(../Media/Images/arrow-left.png) center center no-repeat;
}

.arrow-right {
    background: url(../Media/Images/arrow-right.png) center center no-repeat;
}

@media (max-width: 768px) {
    .welcome-container {
    	height: auto;
    }

    .arrow-left {
        background-image: none;
    }
    
    .arrow-right {
        background-image: none;
    }

    .bg-white-blue {
        background: #ffffff;
    }
    
    .bg-blue-white {
        background: #363e91;
        color: #ffffff;
    }    
}