/*Fonts*/


/* urbanist-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/urbanist-v15-latin-700italic.woff2') format('woff2');
}

/* urbanist-700italic - latin */
@font-face {
    font-display: swap;
    font-family: 'Urbanist';
    font-style: italic;
    font-weight: 700;
    src: url('/assets/fonts/urbanist-v15-latin/urbanist-v15-latin-regular.woff2') format('woff2');
}


:root {

    /*Colors*/

    /*Primary*/
    --primary-background: #070E0E;
    --primary-blue: #007AC1;

    /*Secondary*/
    --secondary-white: #383D3D;

    /*Basic*/
    --white: #ffff;
}

body {
    background-color: var(--primary-background);
    margin: 10px;
}


/*Nav*/

.nav-container {
    margin-right: 99%;
    user-select: none;
}

.nav {
    cursor: pointer;
    color: var(--white);
    font-size: 50px;
}

.navline {
    height: 2px;
    width: 1.5%;
    margin: auto;
    border-radius: 20px;
    background-color: var(--white);
    margin-bottom: 7px;
}

@media only screen and (max-width: 600px) {
    .nav {
        display: none;
    }
}


/*Nav Menu*/

.nav-wrap {
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-bg {
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 100px;
}

.nav-menu {
    visibility: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    margin: 15% auto;
    width: 30%;
    z-index: 1;
    height: fit-content;
    border: 1px solid var(--secondary-white);
    border-radius: 10px;
    background-color: var(--primary-background);
}





/*Hero*/
.hero {
    text-align: center;
}

.hero-text1 {
    font-size: 60px;
    color: var(--white);
    font-family: 'Urbanist', normal;
}

.hero-divide-line {
    height: 2px;
    width: 5%;
    margin: auto;
    border-radius: 20px;
    background-color: var(--secondary-white);
    margin-bottom: 20px;
}

.hero-text2 {
    font-size: 150px;
    color: var(--white);
    font-family: 'Urbanist', normal;
}

@media only screen and (max-width: 600px) {
    .hero-text1 {
        font-size: 50px;
    }

    .hero-divide-line {
        width: 25%;
    }

    .hero-text2 {
        font-size: 70px;
    }
}


/*Boxs*/
.sec-box {
    margin: auto;
    margin-top: 2%;
    height: fit-content;
    width: 40%;
    border: 1px solid var(--secondary-white);
    border-radius: 20px;
}

.img-box {
    margin-top: 6%;
}

.tag {
    font-size: 30px;
    color: var(--white);
    font-family: 'Urbanist', normal;
    height: fit-content;
    width: fit-content;
    border: 1px solid var(--secondary-white);
    border-radius: 20px;
    padding: 5px 6px 5px 6px;
    margin-left: 2%;
    margin-top: 1%;
}

.divide-line {

    height: 2px;
    width: 100%;
    margin: auto;
    margin-top: 2%;
    border-radius: 20px;
    background-color: var(--secondary-white);
}


p {
    color: var(--white);
    font-family: 'Urbanist', normal;
    font-size: 25px;
    padding-left: 2%;
    padding-right: 2%;
}


/*image*/
.img-row {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    grid-gap: 100px;
}

.img {
    object-fit: cover;
    width: 260px;
    height: 200px;
    border-radius: 10px;
}

.credit {
    color: var(--white);
    font-family: 'Urbanist', normal;
    font-size: 10px
}

.img-box-content {
    height: fit-content;
    width: 20%;

}



@media only screen and (max-width: 600px) {

    .history-box,
    .img-box {
        margin-top: 9%;
        width: 80%;
    }

    p.p-history {
        font-size: 17px;
    }

    .img {
        margin-left: 10%;
        margin-bottom: 5%;
        height: 200px;
        width: 200px;
    }

    .img-box-content {
        margin-top: 5%;
        padding-left: 20%;
        width: 50%;
    }

    .img-row {
        display: inline;
    }
}


/*Navigation*/
button{
    font-family: 'Urbanist', normal;
    color: var(--white);
    background-color: var(--primary-blue);
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    margin: auto 20px;
}

.btn-row{
    margin: 10px;
}

/*Contact*/
.contact-title {
    color: var(--white);
    font-family: 'Urbanist', normal;
    font-size: 20px;
    margin-left: 2%;
    margin-top: 1%;
    height: fit-content;
    width: fit-content;
    border: 1px solid var(--secondary-white);
    border-radius: 20px;
    padding: 5px 6px 5px 6px;
}

input[type=text],
select,
textarea {

    width: 50%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}



.submit-btn {
    background-color: var(--primary-blue);
    /* Green */
    border: none;
    color: white;
    padding: 10px 30px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}


/*Footer*/
footer {
    color: var(--white);
    font-family: 'Urbanist', normal;
    font-size: 15px;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

#footer_a {
    text-decoration: none;
    color: var(--primary-blue);

}

.footer__box {
    display: inline-flex;
    height: fit-content;
    width: fit-content;
    border: 1px solid var(--secondary-white);
    padding: 5px 6px 5px 6px;
    border-radius: 20px;
    cursor: pointer;
}

.footer__box-img {
    margin: auto;
    margin-left: 5px;
    height: 20px;
    width: 20px;
    border-radius: 50px;
    border: 1px solid var(--secondary-white);
}

@media only screen and (max-width: 600px) {
    footer {
        font-size: 15px;
    }
}