* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html, body {
    height: 100%;
    width: 100%;
}

::-webkit-scrollbar {
    display: none;
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

.page-wrapper {
    position: relative;
    /* background-image: url("../images/background.jpg"); */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-wrapper, .body-wrapper, .body-wrapper>.container-fluid {
    /* height: 100%; */
}

.body-wrapper>.container-fluid,.body-wrapper>.container-lg,.body-wrapper>.container-md,.body-wrapper>.container-sm,.body-wrapper>.container-xl,.body-wrapper>.container-xxl {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 15px 50px;
    transition: .2s ease-in;
}

.logo {
    height: 6vh;
}
.logo-wrapper .text{
    font-weight: bold;
    color: #226F79;
    line-height: 1.3;
}

.slider-text{
    bottom: 6vh;
    right: 18vw;
    left: 18vw;
}

.tiles-group .tile {
    /* background-color: unset; */
    padding: 20px 35px;
    margin-bottom: 15px;
	border-radius: 15px;
}
.tiles-group .tile img {
    width: 65px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.tiles-group .tile a:hover {
    /* transform: scale(1.1); */
    animation: bounce 0.6s infinite;
}
.tiles-group .tile a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Adjust height of bounce here */
    }
}

.tiles-group .tile.tile-1 { background-color: #0048BE; }
.tiles-group .tile.tile-2 { background-color: #11B1FB; }
.tiles-group .tile.tile-3 { background-color: #6BB942; }
.tiles-group .tile.tile-4 { background-color: #00ABB9; }
.tiles-group .tile.tile-5 { background-color: #D83955; }
.tiles-group .tile.tile-6 { background-color: #EFAC27; }
.tiles-group .tile.tile-7 { background-color: #B88E66; }
.tiles-group .tile.tile-8 { background-color: #463DCE; }

.nav-pills{
    --bs-nav-pills-link-active-bg: #226F79;
}
.nav-link{
    color: #555;
}
.nav-link:focus, .nav-link:hover{
    color: #226F79;
    font-weight: 600;;
}
.nav-link.active{
    font-weight: 600;;
}
.tab-content>.active {
    border-radius: 5px;
    -webkit-box-shadow: 0px 10px 10px -7px #555555; 
    box-shadow: 0px 10px 10px -7px #555555;
}
.tab-content .title{
    color: #226F79;
    font-weight: 800;
    flex: 0 0 200px;
}

@media (max-width: 576px) {
    .logo {
        /* width: 60vh; */
    }
}

@media (max-width: 767.98px) {
    .tiles-group {
        height: 40vh;
    }
    .tab-content .title{
        flex: 0 0 100px;
    }
}