/* BASE STUFF */

@font-face {
    font-family: montserrat-regular;
    src: url('../fonts/Montserrat-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: montserrat-regular;
}

main {
    flex: 1;
}

footer {
    margin-top: 200px;
    padding: 30px;
    background-color: #222247;
    color: white;
}

article {
    background-color: rgb(241, 241, 241);
    margin: 10px;
    padding: 30px;
    border-radius: 10px;
    width: 30%;
}

/* Classes */

.nav-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 30px;
    background-color: #222247;
    box-shadow: 0px 5px 10px rgb(131, 131, 131);
}

.nav-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.nav-title img {
    height: 48px;
}

.computer-nav .nav {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: auto;
    list-style: none;
    font-size: 20px;
}

.mobile-nav {
    display: none;
}

.mobile-nav-button-div {
    display: none;
}

#mobile-nav-button, #mobile-nav-button-close {
    cursor: pointer;
}

#mobile-nav-button:hover, #mobile-nav-button-close:hover {
    color: rgb(189, 189, 189);
}

@media (max-width: 1200px) {
    .computer-nav {
        display: none;
    }

    .mobile-nav-button-div {
        display: unset;
    }
}

.mobile-nav .nav {
    display: flex;
    flex-direction: column;
    background-color: #222247;
    gap: 5px;
    padding: 10px;
    font-size: 25px;
}

.mobile-nav .nav li {
    list-style-type: none;
}

.computer-nav .nav li {
    margin: 10px;
}

.nav a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.nav a:hover {
    color: rgb(189, 189, 189);
}

.line {
    display: flex;
    justify-content: center;
}

.line div {
    width: 90%;
    border-bottom-style: solid;
    border-width: 2px;
}

.main-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 200px;
    padding-top: 100px;
    max-width: 1200px;
}

.main-wrapper-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
  

.main-image-wrapper {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1200px) {
    .main-image-wrapper {
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.main-image {
    width: 500px;
    height: 350px;
    border-radius: 30px;
    background-size: cover;
    opacity: 0.8;
    box-shadow: 0px 5px 10px rgb(131, 131, 131);
    transition-duration: 0.2s;
}

.main-image:hover {
    scale: 1.01;
}

.main-title-wrapper {
    display: flex;
    justify-content: center;    
    flex-wrap: wrap;
    align-items: center;
    width: 50%;
}

@media (max-width: 1200px) {
    .main-title-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        margin: 10px;
        margin-bottom: 70px;
        padding-top: 10px;
        padding-bottom: 100px;
        max-width: 500px;
    }
}

.main-title {
    padding-left: 50px;
    padding-right: 50px;
    font-size: 20px;
    border-top-style: solid;
    border-bottom-style: solid;
    padding-top: 100px;
    padding-bottom: 100px;
    border-width: 2px;
    max-width: 500px;
}

@media (max-width: 1200px) {
    .main-title {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 20px;
    }
}

.main-title h1 {
    text-align: center;
}

.main-title p {
    font-size: 18px;
}

.main-title-sub {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 100;
}

.footer-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-wrapper .nav {
    padding: 30px;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
}

@media (max-width: 1200px) {
    .footer-wrapper .nav {
        flex-direction: column;
        text-align: center;
    }
}

#mobile-nav-button-close {
    display: none;
}

.footer-wrapper p {
    border-top-style: solid;
    width: 80%;
    text-align: center;
    padding: 10px;
}

.goto-main {
    text-align: center;
}

.goto-title {
    font-size: 40px;
    margin: 50px;
}

.goto-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
}

.goto-div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #e9e9e9;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
    height: 300px;
    box-shadow: 0px 5px 10px rgb(131, 131, 131);
    width: 400px;
}

.goto-button {
    margin-top: 50px;
} 

.goto-div p {
    width: 70%;
    text-align: center;
}

.goto-div .goto-button {
    width: 100%;
}

.goto-div a {
    padding: 20px 30px;
    background-color: #222247;
    border-radius: 10px;
    color: white;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0px 5px 10px rgb(131, 131, 131);
}

.goto-div a:hover {
    background-color: #222247e1;
}

.kg-width-full {
    width: 100%;
}

.kg-width-wide {
    width: 80%;
}