/* google font */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&family=Unna:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Custom Color */
:root {
    --blue:#0296b1;
    --darkblue:#023d47;
    --white:#fff;
}

/* Custom CSS */

* {
    font-family: "Unna", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    transition: all .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

/* Website All Heading */
.heading {
    margin: 2rem;
    padding-top: 6rem;
    text-decoration: underline;
    display: inline-block;
    font-size: 3.5rem;
    color: var(--blue);
    position: relative;
    letter-spacing: .2rem;
}

/* Website All Button */
.btn {
    outline: none;
    border: none;
    border-radius: 5rem;
    background-color: var(--blue);
    color: var(--white);
    cursor: pointer;
    height: 3.5rem;
    width: 15rem;
    font-size: 1.7rem;
    box-shadow: 0 .2rem .5rem rgba(0, 0, 0, .3);
}

.btn:hover {
    letter-spacing: .1rem;
    opacity: .8;
}

/* Header section start */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2rem 8rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

/* Logo name */

.header .logo {
    width: 80px;
    height: auto;
}

/* Navbar Link */
.header .navbar ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header .navbar ul li {
    margin: 0 1.5rem;
}

.header .navbar ul li a {
    font-size: 2rem;
    color: var(--blue);
}

.header .fa-bars {
    color: var(--blue);
    cursor: pointer;
    font-size: 3rem;
    display: none;
}

/* Header Section End */

/* Home Section Start */
.home {
    min-height: 100vh;
    width: 100vw;
    background-image: url(/images/home_background.png);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden !important;
    opacity: 0.9;
}

.home .banner {
    color: #0296b1;
    font-size: 8rem;
    text-shadow: 0 .3rem .5rem rgba(0, 0, 0, .3);
}

.home .slogan {
    color: #0296b1;
    font-size: 3rem;
    font-weight: 400;
}

/* Home Button */
.home button {
    height: 5rem;
    width: 20rem;
    border-radius: .5rem;
    background-color: var(--white);
    color: #0296b1;
    cursor: pointer;
    border: none;
    outline: none;
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 400;
    box-shadow: 0 .3rem .5rem rgba(0, 0, 0, .3);
}

.home button:hover {
    letter-spacing: .1rem;
    color: var(--white);
    background-color: #0296b1;
}
/* Home Section End */

/* About Section Start */

.about {
    min-height: auto;
    width: 100vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about .row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4rem;
}

.about .row .content {
    text-align: left;
    padding: 4rem;
}

.about .row .content h2 {
    font-size: 4rem;
    color: var(--blue);
}

.about .row .content p {
    font-size: 1.8rem;
    color: var(--darkblue);
    padding: 1rem 0;
}

/* About Us Images */

.about .row .images img {
    width: 50vw;
    border-radius: 2rem;
}

/* About Section Circle */
.about::after, .about::before {
    content: '';
    position: absolute;
    z-index: -1;
    opacity: .2;
    border-radius: 50%;
}

/* Circle Top Right */

.about::after {
    height: 40rem;
    width: 45rem;
    background-color: var(--blue);
    top: -10rem;
    right: -10rem;
}

/* Circle Bottom Left */
.about::before {
    height: 50rem;
    width: 60rem;
    background-color: var(--blue);
    bottom: -10rem;
    left: -10rem;
}

/* About Section End */

/* Services Section Start */

.services {
    width: 100vw;
    text-align: center;
}

.services .row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 4rem;
}

/* Services Images */

.services .row .images img {
    width: 50vw;
    border-radius: 2rem;
}

/* Services Heading & Text */

.services .row .content {
    text-align: left;
    border-radius: 1rem;
}

.services .row .content h2 {
    font-size: 3rem;
    color: var(--blue);
}

.services .row .content p {
    font-size: 1.5rem;
    color: var(--darkblue);
    padding: 1rem 0;
}

/* Services Section End */

/* Team Card Section Start */

.team {
    width: 100vw;
    text-align: center;
    background-color: var(--blue);
}

/* Team Card Heading */
.team .heading {
    color: var(--white);
}

/* Team Images */

.team .row .card .images img{
    height: 39rem;
    width: 35rem;
    border-radius: .5rem;
    border: .5rem solid var(--white);
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .3);
    object-fit: cover;
}

.team .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.team .row .card {
    height: 51rem;
    width: 35rem;
    background-color: var(--white);
    text-align: center;
    margin: 7rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: .5rem;
}

.team .row .card .info h2 {
    font-size: 3.5rem;
    color: var(--blue);
}

.team .row .card .info p {
    font-size: 2rem;
    color: var(--darkblue);
}

.team .row .card .info .icons a {
    font-size: 3rem;
    padding: 0 1rem;
    margin-top: 1rem;
    color: var(--darkblue);
}

.team .row .card .info .icons a:hover {
    color: var(--blue);
}
/* Team Card Section End */

/* Contact Form Section Start */

.contact {
    width: 100vw;
    text-align: center;
}

.contact .row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 2rem;
    padding: 0 2rem;
}

/* Form Images */
.contact .row .images img {
    height: auto;
    width: 50vw;
    border-radius: 1rem;
}

.contact .row .form-container {
    width: 50%;
    text-align: left;
    padding: 0 2rem;
}

.contact .row .form-container input, textarea {
    outline: none;
    border: none;
    width: 49rem;
    height: 4rem;
    background: none;
    border-radius: .5rem;
    box-shadow: .2rem .2rem .5rem rgba(0, 0, 0, .3);
    padding: 0 1rem;
    margin: 1rem 0;
    font-size: 1.6rem;
}

.contact .row .form-container .inputbox {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.contact .row .form-container .inputbox input[type="text"] {
    width: 49%;
}

.contact .row .form-container input[type="email"] {
    width: 100%;
}

.contact .row .form-container textarea {
    width: 100%;
    height: 20rem;
    padding: 1rem;
    resize: none;
}

.contact .row .form-container input[type="submit"] {
    background-color: var(--blue);
    color: var(--white);
    cursor: pointer;
    height: 4rem;
    width: 10rem;
}

.contact .row .form-container input[type="submit"]:hover {
    opacity: .8;
}

/* Contact Form Section End */

/* FAQ Section Start */

.faq {
    min-height: 100vh;
    width: 100vw;
    text-align: center;
    padding: 0 2rem;
}

.faq .heading {
    margin: 0;
}

.faq .row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

/* FAQ Images */

.faq .row .images img {
    height: auto;
    width: 50vw;
    border-radius: 1rem;
}

.faq .row .subject-container {
    width: 50%;
    text-align: left;
}

.faq .row .subject-container .subject .subject-header {
    background-color: var(--blue);
    margin: 1rem 0;
    box-shadow: .1rem .1rem .3rem rgba(0, 0, 0, .3);
    cursor: pointer;
}

.faq .row .subject-container .subject .subject-header span {
    display: inline-block;
    text-align: center;
    height: 4rem;
    width: 5rem;
    line-height: 4rem;
    font-size: 2rem;
    background-color: var(--white);
    color: var(--darkblue);
    clip-path: polygon(0% 0% , 75% 0% , 100% 50% , 75% 100% , 0% 100%);
}

.faq .row .subject-container .subject .subject-header h2 {
    display: inline;
    color: var(--white);
    font-weight: 400;
    font-size: 1.5rem;
    padding: 1.5rem;
}

.faq .row .subject-container .subject .subject-body {
    padding: 1rem;
    color: var(--darkblue);
    box-shadow: .1rem .1rem .3rem rgba(0, 0, 0, .3);
    font-size: 1.3rem;
    display: none;
}
/* FAQ Section End */

/* Footer Section Start */

.footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 2rem 2rem;
    margin-top: 1rem;
    background-color: var(--blue);
}

.footer h1 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: .1rem;
}

/* Footer Icons */

.footer .icons a {
    font-size: 2rem;
    color: var(--white);
    padding: 0 1rem;
}

/* Footer Section End */

/* Media Query Start */

@media (max-width: 768px) {

    html {
        font-size: 50%;
    }

    .header .fa-bars{
        display: block;
    }

    .header .navbar {
        position: fixed;
        top: -120%;
        left: 0;
        height: auto;
        width: 100%;
        background-color: var(--white);
        z-index: 1000;
        border-top: .1rem solid rgba(0, 0, 0, .3);
    }

    .header .navbar ul {
        height: 100%;
        width: 100%;
        flex-flow: column;
    }

    .header .navbar ul li {
        margin: 1rem 0;
    }

    .header .navbar ul li a {
        font-size: 2.5rem;
        color: var(--darkblue);
    }
    
    .header .fa-time {
        transform: rotate(180deg);
    }

    .header .nav-toggle {
        top: 5.8rem;
    }

    /* Home Media Query */
    
    .home .banner {
        font-size: 4rem;
    }

    .home .slogan {
        font-size: 1.7rem;
    }

    /* About Media Query */

    .about .row {
        flex-flow: column-reverse;
        padding: 0 2rem;
    }

    .about .row .images img {
        width: 100vw;
        padding: 4rem;
    }

    /* Services Media Query */

    .services .row {
        flex-flow: column-reverse;
        padding: 0 2rem;
    }

    .services .row:nth-child(even){
        flex-flow: column;
    }

    .services .row .content {
        flex-flow: column-reverse;
        padding: 4rem;
    }

    .services .row .images img {
        width: 75vw;
        padding: 4rem;
    }

    /* Contact Form Media Query */

    .contact .row {
        flex-flow: column;
    }

    .contact .row .images img {
        border-radius: 2.5rem;
        width: 100vw;
        padding: 1rem;
    }

    .contact .row .form-container {
        width: 100%;
        padding: 0 1.5rem;
    }

    /* FAQ Media Query */

    .faq {
        padding: 0;
    }

    .faq .row {
        padding: 0 1rem;
        flex-flow: column;
    }

    .faq .row .images img {
        width: 100vw;
        border-radius: 1rem;
        padding: 1rem;
    }

    .faq .row .subject-container {
        width: 100vw;
    }
}

/* Footer Query Start */

@media (max-width: 550px) {
    .footer {
        flex-flow: column;
    }

    .footer h1 {
        text-align: center;
    }

    .footer .icons {
        padding: 2rem 0;
    }
}