@import "https://fonts.googleapis.com/css2?family=Rowdies:wght@300&display=swap";
@import "https://fonts.googleapis.com/css2?family=Cambay&display=swap";
@import "https://fonts.googleapis.com/css?family=Poppins";
@import "https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap";

/************************************************header**********************************************/

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

.title-home {
    text-decoration: none;
    color: black;
}

header {
    position: relative;
}

nav {
    font-family: 'Poppins', sans-serif;
    /*font-family: 'Nanum Gothic', sans-serif;*/
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 11vh;
    background-color: white;
    /*border: solid 1px gray;*/
    position: fixed;
    width: 100%;
    z-index: 10;
}

.logo {
    color: black;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 20px;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 30%;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: black;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 5px;
    transition: all 0.3s ease;
}

.imglogo {
    display: block;
    margin-left: -10%;
    margin-right: -25%;
}

.language {
    border: none;
    background: none;
}

.language:hover {
    cursor: pointer;
}

@media screen and (max-width:1500px) {
    .nav-links {
        width: 40%;
    }
}

@media screen and (max-width:1350px) {
    .nav-links {
        width: 50%;
    }
}

@media screen and (max-width:1024px) {
    .nav-links {
        width: 60%;
    }
    .imglogo {
        display: block;
    }
    .logo {
        display: none;
    }
}

@media screen and (max-width:768px) {
    .imglogo {
        display: block;
        margin-left: 0%;
        margin-right: 40%;
    }
    .logo {
        display: none;
    }
    .nav-links {
        z-index: 100;
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 10vh;
        background-color: rgb(255, 255, 255);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.2s ease-in;
    }
    .nav-links li {
        opacity: 0;
    }
    .burger {
        display: block;
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    form {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.dropbtn {
    color: black;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    cursor: pointer;
    background: none!important;
    border: none;
    padding: 0!important;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {
    background-color: gray;
}

.show {
    display: block;
}


/*******************************************************footer***********************************************/

footer {
    display: block;
    font-family: 'Poppins', sans-serif;
    bottom: 0px;
    width: 100%;
    background-color: black;
    color: white;
}

.main-content {
    display: flex;
}

.main-content a {
    text-decoration: none;
    color: white
}

.left-box {
    text-align: center;
    height: auto;
    width: 50%;
}

.center-box {
    text-align: center;
    height: auto;
    width: 50%;
}

.up {
    margin-top: 2%;
}

.up-R {
    padding: 0.3em 1.2em;
    margin: 0 0.3em 0.3em 0;
    border-radius: 2em;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 300;
    color: #FFFFFF;
    background-color: transparent;
    border: solid 2px transparent;
    text-align: center;
    transition: all 0.2s;
}

.up-R:hover {
    border: solid gray 2px;
}

.submit {
    background-color: transparent;
    border: none;
    color: white;
    text-align: center;
    width: 100px;
    height: 35px;
    margin: 2% 0 0 2%;
    border: solid 0.6px white;
}

.submit:hover {
    cursor: pointer;
    border: none;
    background-color: rgb(255, 255, 255);
    color: black;
}

@media screen and (max-width:768px) {
    .main-content {
        position: relative;
        text-align: center;
        font-size: smaller;
        display: block;
    }
    .left-box {
        text-align: center;
        height: auto;
        width: 100%;
        margin-bottom: 5%;
    }
    .center-box {
        text-align: center;
        height: auto;
        width: 100%;
        margin-bottom: 5%
    }
}