@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
}

html body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}



/* nav */
/* header */
header {
    width: 100%;
    padding: 25px;
}

.menu-open {
    font-size: 40px;
    cursor: pointer;
    color: rgb(10, 1, 1);
    float: right;
    padding: 5px;
}

@media (min-width: 800px) {

    header,
    .nav-close {
        display: none;
    }
}

/* header ends */
/* navbar links */
@media only screen and (min-width: 661px) and (max-width: 915px) and (orientation: landscape) {
    .menu-open {
        padding: 0px !important;
    }

    nav a {
        font-size: 20px !important;
    }

    .logo a img {
        max-width: 95px !important;
        max-height: 250px !important;
    }
}

@media (min-width: 801px) {
    nav {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        list-style: none;
        margin: 0;
        text-align: center;
        background-color: #F8F8F8;
    }

    .logo {
        width: 200px;
    }

    .logo a img {
        max-width: 180px;
        margin: 10px;
        padding: 10px;
    }

    nav a {
        display: inline-block;
        padding: 10px;
        min-width: 120px;
        text-decoration: none;
        font-size: 19px;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 500;
        color: rgb(0, 0, 0);
    }

    nav a:hover {
        color: #2460AD;
        transition: all 0.2ms;
    }

}

/* hides untile width is met */
@media(max-width: 801px) {
    .hide {
        visibility: hidden;
    }

    header {
        height: 100px;
        background-color: #F8F8F8;
    }

    .logo {
        display: none;
    }

    nav {
        width: 100%;
        height: 100vh;
        z-index: 1;
        position: fixed;
        left: 0;
        top: 0;
        background-color: #0e0f0f;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    nav a {
        display: block;
        text-decoration: none;
        color: #fff;
        font-size: 25px;
    }

    .nav-links {
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 45px;
        position: relative;
        transition: all 0.3s ease;
        padding: 10px;
    }

    .nav-links::before {
        content: ' ';
        height: 1px;
        width: 0%;
        position: absolute;
        left: 0;
        top: 0;
        transition: all 0.3s ease;
        background-color: rgb(255, 255, 255);
    }

    .nav-links::after {
        content: ' ';
        height: 1px;
        width: 0%;
        position: absolute;
        right: 0;
        bottom: 0;
        background-color: rgb(255, 255, 255);
        transition: all 0.3s ease;
    }

    .nav-links:hover {
        color: #1ca8ff;
    }

    .nav-links:hover::after,
    .nav-links:hover::before {
        width: 55%;
    }

    .nav-links-social {
        display: flex;
        justify-content: center;
    }

    .nav-links-social span {
        padding: 0 25px;
    }

    .nav-links-social span i {
        color: #fff;
        font-size: 20px;
        cursor: pointer;
    }

    .nav-links-social span i:hover {
        color: #EF5350;
        transition: all 0.3s ease;
    }

    .hide {
        visibility: hidden;

    }

    .show {
        visibility: visible;
    }

    .nav-close {
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 45px;
        color: rgb(255, 255, 255);
        cursor: pointer;
        padding: 15px;
    }
}

/* nav links ends */


/* forms */


.form-box {
    display: block;
    margin: 0 auto;
    margin-top: 5%;
    margin-bottom: 5%;
    background-color: rgb(255, 255, 255);
    width: 65%;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.boximage {
    width: 100%;
    height: 300px;
    background-image: url(img/fc/twofriends.jpg);
    background-size: cover;
    border-radius: 5px 5px 0 0;
}

.infotext {
    width: 100%;
    padding: 3%;
    text-align: center;
    color: #162c38;
    font-family: sans-serif;
}

h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8em;
    letter-spacing: 0.2em;
    color: #162c38;
    text-transform: uppercase;
}

form {
    width: 100%;
    padding: 10px;
}

input {
    display: block;
    width: 100%;
    border-bottom: none;
    border-right: none;
    border-left: none;
    margin-bottom: 15px;
    padding: 2%;
    font-size: 0.9em;
    font-family: "Playfair Display", serif;
    letter-spacing: 0.2em;
    color: #050303;
    text-align: left;
}

.form-box button {
    display: block;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: "Abhaya Libre", serif;
    font-size: 24px;
    padding: 5px;
    color: #ffffff;
    background-color: #2560AE;
    cursor: pointer;
    text-align: center;
    transition: all .25s;
    text-decoration: none;
}

.form-box button:hover {
    background-color: #239be6;
}

.form-box label {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 500;
    padding: 5px;
}

.form-box .formOption {
    margin-bottom: 15px;
}

.form-box textarea {
    width: 100%;
    height: 100px;
}

@media(max-width: 800px) {
    .form-box {
        width: 100%;
    }

}

/*form ends  */

/* footer */
.footer {
    background-color: #424656;
    color: white;
    padding: 120px 0px 90px 0px;
}

.leftfoot {
    padding: 5px;
}

.Contact_footer h2 {
    font-family: "DM Serif Text", serif;
    font-size: 25px;
    padding: 10px;
}

.Contact_footer ul {
    padding: 10px;
    list-style: none;
}

.Contact_footer ul li {
    margin: 15px;
}

.footer .Contact_footer a {
    font-size: 17px;
    font-family: "Abhaya Libre", serif;
    text-decoration: none;
    pointer-events: none;
    transition: all .25s;
    text-decoration: none;
    color: #fff;
}

.footer .Contact_footer a:hover {
    color: #5ec1ff;
}

.footerlogo img {
    max-width: 70%;
    height: auto;
}

.single_footer ul {
    margin: 0;
    padding: 5px;
    list-style: none;
}

.single_footer ul li {
    font-size: 17px;
    margin: 10px;
}

.single_footer h2 {
    font-size: 25px;
    font-family: "DM Serif Text", serif;
    padding: 10px;
}

.footer .single_footer a {
    font-size: 19px;
    font-family: "Abhaya Libre", serif;
    text-decoration: none;
    transition: all .25s;
    text-decoration: none;
    color: #fff;
}

.footer .single_footer a:hover {
    color: #5ec1ff;
}

.copyright {
    font-family: "Abhaya Libre", serif;
}

/* footer ends */