.site-logo {
    position: fixed;
    height: 160px;
    z-index: 3;
}

.site-logo img {
    height: 100%;
}

header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
}

header .background {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: -1;
}

header .background img {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

header .background .gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(6, 4, 29, 0.507), rgba(0, 0, 0, 0.85) 90%);
}

header .logo {
    width: 120%;
    max-width: 800px;
    border-radius: 0px 0px 4px 0px;
    margin-top: 2em;
}

header .logo img {
    width:  100%;
    height: 100%;
}

header .tagline {

    color: white;
    text-align: center;
    font-size: 2em;
    font-weight: 100;
}

.menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    background-color: rgba(0, 0, 0, 0);
    z-index: 2;
    text-align: right;
    gap: 1em;
    padding-top: 1em;
}

.menu .icon {
    display: hidden;
}

.menu .divider {
    width: 1px;
    height: 40%;
    background-color: grey;
    border-radius: 100%;
}

.menu .item {
    position: relative;
    cursor: pointer;
}

.menu .item a {
    color: white;
    font-weight: 200;
    font-size: 1.5em;
    text-decoration: none;
    transition: color 0.3s;
}

.menu .item a:hover {
    color: coral;
}

.menu .item a:active {
    color: darkslategray;
}

main {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    width: 100%;
    background-color: rgb(231, 224, 215);
}

.content-page {
    max-width: 1200px;
    width: 100%;
    padding: 50px 0px 50px 0px;
}

.content-header {
    text-align: center;
    margin: 0px 0px 100px 0px;
    font-size: 36px;
}

.content-block {
    display: flex;
    position: relative;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
}

.image-container {
    position: relative;
    max-width: 500px;
    box-sizing: border-box;
    flex-basis: 50%;
    flex-grow: 1;
    aspect-ratio: 1;
    border-radius: 4px;
}

.collage {
    position: relative;
    width: 100%;
    height: 100%;
}

.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.collage-img {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: .4s;
    animation-name: fade-in-out;
    animation-iteration-count: infinite;
    animation-duration: 20s;
}

.collage-img.img-1 {
    animation-delay: 0s;
}

.collage-img.img-2 {
    animation-delay: 5s;
}

.collage-img.img-3 {
    animation-delay: 10s;
}

.collage-img.img-4 {
    animation-delay: 15s;
}

@keyframes fade-in-out {
    0% {
        opacity: 1;
    }
    15% {
        opacity: 1;
    } 
    25% {
        opacity: 0;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.description-container {
    width: auto;
    max-width: 600px;
    height: 100%;
    box-sizing: border-box;
    padding: 20px;
    color: black;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}

#about-us-header {
    width: 100%;
}

.description-container .content-header {
    text-align: left;
}

#about-us-facilities {
    margin-top: 80px;
}

#about-us-facilities .description-container div {
    text-align: right;
}

.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

.row-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: center;
    justify-content: space-between;
    margin: 30px 0px 40px 0px;
    border-radius: 3px;
    gap: 20px;
}

.row-container .row-title {
    position: absolute;
    width: 200px;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -60%);
    text-align: center;
    background-color: rgb(202, 156, 71);
    z-index: 99;
    animation-name: fade-in-down;
    animation-duration: 1.4s;
}

.row-block {
    position: relative;
    background-color: white;
    padding: 30px;
    z-index: 98;
    flex-grow: 1;
}

#lesson-reminder {
    text-align: center;
    font-style: italic;
    background-color: rgb(220, 237, 253);
}

#extras .row-block {
    padding: 20px;
    width: 100px;
    height: 160px;
    box-sizing: border-box;
}

.title-price {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.price {
    position: absolute;
}

.price h4 {
    margin: 0px;
}

#training-packages .price {
    top: 20px;
    right: 50px;
}

#training-packages .row-block{
    width: 200px;
}

#lesson-packages .price {
    top: 20px;
    right: 50px;
}

#extras .price {
    position: absolute;
    top: auto;
    bottom: 10px;
    right: 20px;
}

footer {
    position: relative;
    width: 100%;
    min-height: 880px;
    background-color: rgb(29, 28, 28);
    padding-top: 50px;
    color: white;
}

#contact-us-header h1 {
    margin: 0px;
    padding: 0px 10px 0px 10px;
}

.contact-flex-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 0px 40px 20px 40px;
    gap: 30px;
    text-align: left;
    box-sizing: border-box;
}

.contact-flex-container h4 {
    margin-top: 0px;;
}

footer .contact-block {
    font-weight: 200;
    font-size: 1.2em;
}

footer .contact-block img {
    max-width: 100%;
}

footer .bottom-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 180px;
    width: 100%;
    margin-top: 2em;
}

footer .bottom-flex-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1em;
    box-sizing: border-box;
}

footer .logo {
    width: fit-content;
    height: 120px;
}

footer .logo img {
    height: 100%;
}

footer .copyright {
    color: white;
    font-size: 1em;
    font-weight: 100;
}

footer .social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: 2em;
}

footer .social-links .rounded-link-button {
    width: 28px;
    height: 28px;
    background-color: white;
    border-radius: 23px;
    padding: 9px;
    transition: .2s;
    cursor: pointer;
}

footer .social-links .rounded-link-button:hover {
    background-color: rgb(170, 170, 170);
}

footer .social-links .rounded-link-button img {
    width: 100%;
    height: 100%;
}

p {
    font-size: 1em;
}