@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 */

/* banner */

#banIntro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 857px;
    width: 100%;
    padding: 1em;
    background: linear-gradient(to top, rgb(55, 148, 255), rgba(51, 151, 243, 0.52), rgba(52, 151, 243, 0.52)), url(img/banner/laptop.jpg) center / cover no-repeat;
    /* background: url(img/banner/laptop.jpg) center / cover no-repeat; */
}

.introText h3 {
    font-size: 3.8rem;
    letter-spacing: 0.11em;
    font-style: oblique;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bolder;
    color: #fff;
}

.introText p {
    margin: 10px;
    font-size: 35px;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
}

.introLink {
    margin-top: 20px;
    padding: 15px;
}

.introLink a {
    width: 13em;
    height: 1.5em;
    padding: 1em;
    border-radius: 20px;
    color: #fff;
    background-color: rgb(18, 18, 19);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.introLink a:hover {
    background-color: #e9e9e9;
    color: #0e0f0f;
}

@media(max-width: 767px) {
    .introText {
        top: none;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .introText h3 {
        font-size: 3em;
    }

    .introText p {
        font-size: 18px;
    }

    /* header adjusted */
    header {
        height: 100px !important;
    }

    .introLink a {
        width: 10em;
        height: 1em !important;
    }

    .introLink a {
        width: 12em;
        height: 1em;
        padding: 10px;
    }
}

/* banner ends */

/* welcome to FC25 */
.fc {
    margin: 170px 0px 100px 0px;
}

.welcomeImg {
    padding: 13px;
}

.welcomeImg img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    margin-bottom: 2.5em;
}

.diamond-image {
    width: 600px;
    height: 600px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    /* Diamond shape */
    object-fit: cover;
    /* Ensure the image covers the area without distortion */
    border: 5px solid #333;
}

.welcomeText {
    padding: 5px;
    margin-bottom: 4em;
}

.welcomeText h4 {
    font-size: 1.5em;
    font-family: "DM Serif Text", serif;
    font-style: normal;
    color: rgb(55, 148, 255);
    margin: 5px;
}

.welcomeText h2 {
    font-size: 2.3em;
    font-family: "DM Serif Text", serif;
    padding: 2px;
    margin: 10px 0px 10px 0px;
}

.welcomeText h5 {
    font-size: 1.5em;
    font-family: "DM Serif Text", serif;
    padding: 2px;
}

.welcomeText p {
    font-size: 20px;
    padding: 2px;
    font-family: "Abhaya Libre", serif;

}

/* meet team */
.meet .meetpic {
    margin-top: 1.2em;
}

.meet h4 {
    font-size: 1.5em;
    font-family: "DM Serif Text", serif;
    color: rgb(55, 148, 255);
    margin: 5px;
}

.meet h2 {
    font-size: 2.3em;
    font-family: "DM Serif Text", serif;
    padding: 3px;
    margin: 10px 0px 10px 0px;
}

.meet p {
    font-size: 20px;
    padding: 5px;
    font-family: "Abhaya Libre", serif;
}

.meetLink a {
    width: 13em;
    font-family: "Abhaya Libre", serif;
    font-size: 18px;
    height: 1.5em;
    padding: 1em;
    color: #ffffff;
    background-color: #2560AE;
    cursor: pointer;
    text-align: center;
    transition: all .25s;
    text-decoration: none;
}

.meetLink a:hover {
    background-color: #1ca8ff;
}


.meetpic img {
    width: 100%;
    height: 50%;
}

@media(max-width: 767px) {
    .meetpic img {
        margin-top: 4em;
    }
}

@media (max-width: 480px) {
    .welcomeText h4 {
        font-size: 1.2em;

    }

    .welcomeText h2 {
        font-size: 1.3em;
    }

    .welcomeText h5 {
        font-size: 1.2em;
    }

    .welcomeText p {
        font-size: 14px;
        line-height: normal;
    }

    .meet h2 {
        font-size: 1.5em;
    }

    .meet p {
        font-size: 14px;
        line-height: normal;
    }

    .meet a {
        width: 12em;
        height: 1em;
        padding: 10px;
    }
}

/* meet team ends */
/* welcome to FC25 ends */


/* services */
.service {
    width: 100vw;
    background-color: #F8F8F8;
    padding: 50px 0px 90px 0px;
    margin-top: 20px;
}

.serviceText {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.serviceText h2 {
    font-family: "DM Serif Text", serif;
    font-weight: 500;
    font-size: 1.2em;
    padding: 1px;
    font-size: 1.5em;
    color: rgb(55, 148, 255);
    margin: 5px;
}

.serviceText .heal {
    font-size: 2.5em;
    font-weight: bold;
    font-family: "Abhaya Libre", serif;
}

.serviceText .heal2 {
    font-family: "Abhaya Libre", serif;
}

.ser {
    margin-bottom: 20px;
    padding: 5px;
}

.serImg img {
    width: 100% !important;
    height: auto !important;
}

.serLink a {
    display: block;
    width: 100%;
    height: 100%;
    font-family: "Abhaya Libre", serif;
    padding: 8px;
    color: #F2F2F2;
    background-color: #2560AE;
    cursor: pointer;
    text-align: center;
    transition: all .25s;
    text-decoration: none;

}

.serLink a:hover {
    background-color: #1ca8ff;
}

.ser h2 {
    font-size: 1.2em;
    font-family: "DM Serif Text", serif;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 12px;
}

.ser .cap {
    text-align: center;
    font-style: italic;
    font-family: "Abhaya Libre", serif;
}

.ser .nocaptions {
    text-align: center;
    font-size: 19px;
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    padding: 1px;
}

.serback {
    background-color: #ffffff;
}

@media (max-width: 480px) {
    .serviceText h2 {
        font-size: 1.2em;
    }

    .serviceText .heal {
        font-size: 1.9em;
    }

    .ser .nocaptions {
        font-size: 14px;
    }
}

/* services */


/* area of focus */
.focus {
    margin-top: 60px;
    padding: 10px;
    text-align: center;
    margin: 20px;
}

.focusText h2 {
    font-size: 2.5em;
    font-family: "DM Serif Text", serif;
    padding: 10px;
    margin: 30px;
    padding: 3px;
}

.area {
    padding: 10px;
    text-align: center;
}

.area p {
    font-family: "Abhaya Libre", serif;
    font-size: 19px;
}

.area h5 {
    text-align: center;
    font-family: "DM Serif Text", serif;
    padding: 10px;
}

.areacolor2 {
    border-left: 1px solid rgb(5, 5, 5);
}

.areacolor3 {
    border-left: 1px solid rgb(5, 5, 5);
}

.areacolor4 {
    border-top: 1px solid rgb(5, 5, 5);
}

.areacolor5 {
    border-top: 1px solid rgb(5, 5, 5);
    border-left: 1px solid rgb(5, 5, 5);
}

@media(max-width: 768px) {

    .areacolor1 {
        border-bottom: 1px solid rgb(5, 5, 5);
    }

    .areacolor2 {
        border-left: none;
    }

    .areacolor3 {
        border-left: none;
        border-top: 1px solid rgb(5, 5, 5);
    }

    .areacolor5 {
        border-left: none;
    }
}

@media (max-width: 480px) {
    .focusText h2 {
        font-size: 2em;
    }
}

/* area of focus ends */

/* group photo */
.group img {
    width: 100%;
}

/* group photo ends */

/* why work  */
#working {
    background-color: #F8F8F8;
    padding: 40px 0px 90px 0px;
    margin-top: 20px;
}

.work {
    padding: 13px;
    margin: 15px;
}

.workTite h2 {
    font-size: 3em;
    font-family: "DM Serif Text", serif;
    text-align: center;
    margin: 10px;
}

.workImg img {
    padding: 10px;
}

.workback {
    padding: 10px auto;
}

.workback h5 {
    margin: 10px auto;
    padding: 3px;
    margin: 5px auto;
    font-size: 1.2em;
    font-family: "DM Serif Text", serif;
}

.workback p {
    font-size: 19px;
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    padding: 5px;
}

@media (max-width: 480px) {
    .workTite h2 {
        font-size: 2em;
    }

    .worback p {
        font-size: 14px;
    }

    .worback h5 {
        font-size: 1.2em;
    }
}

/* why work 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 */