@charset "UTF-8";
/* CSS Document */

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

body {
	min-height: 100vh;
    background-color: #fbfeff;
    font-family: "Marcellus", serif;
}

.top {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.top::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vh;
    height: 100vh;
    background: radial-gradient(circle, rgba(255,255,255,1) 55%, rgba(136,198,233,1) 100%);
    border-radius: 50%;
    transform-origin: bottom;
    transform: translateX(-50%) scale(4.5);
    z-index: -99;
    
}

.top .content {
    position: relative;
    z-index: 1;
}

.bottom {
    position: relative;
    width: 100%;
    height: 20vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    margin-top: 80px
}

.bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vh;
    height: 100vh;
    background: radial-gradient(circle, rgba(255,255,255,1) 55%, rgba(136,198,233,1) 100%);
    border-radius: 50%;
    transform-origin: top;
    transform: translateX(-35%) scale(3);
    
    z-index: -99;
    
}

.bottom .content {
    position: relative;
    z-index: 1;
}

h1, h2, h3, p {
    color: #004875;
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
}

p a {
    color: #009DEA;
}

p a:hover {
    color: #0057BF;
}

.card {
	border-color: #88C6E9;
    border-width: 2px;
	color: #004875;
    box-shadow: 0px 5px 8px rgba(0,71,127,0.3);
    border-radius: 50px;
    background-color: rgba(255,255,255,0.40);
    background: linear-gradient(0deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.2) 60%, rgba(136,198,233,.4) 100%);
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    
    .card {
        font-size: 1.2rem;
    }
}

@media (min-width: 1140px) {
    
    .card {
        font-size: 1.3rem;
    }
}

.card:hover {
    background: #004875;
    border-color: #88C6E9;
    color: white;
    
}

.card-link {
    text-decoration: none;
    color: #004875;
    
}

.card-link:hover {
    color: white;
    
}

@media (min-width: 768px) {
    
    .card .bd-left {
        border-left-style: solid;
        border-left-color: #88C6E9;
        border-left-width: 1px;
    }
}

.categories {
    margin-top: 10px
}

.categories h3 {
    color: #88C6E9;
}

.categories img {
    filter: drop-shadow(0px 4px 5px rgba(0,71,127,0.3));
}


@media (min-width: 768px) {
.neg-mg {
    margin-top: -35px;
}
}

hr {
    border-color: #004875;
}
