@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

/*  Starting of Navigation Bar */


/*  Starting of Navigation Bar */

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 2px 10px 2px 50px;
    width: 100%;
    border: 1px solid #D9D9D9;
    box-shadow: 0px 4px 4px rgb(0 0 26 / 25%);
    /* border-radius: 10px; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.navbar a {
    display: block;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    color: #000;
    /* font-weight: 500; */
    transition: all 0.2s ease;

}

.navbar a:hover {
    color: #106672;
    font-weight: 600;
    /* border: 1px solid #000; */
    transform: scale(1.3);
}

.navbar a img {
    width: 80px;
}

.logo {
    margin-right: 50px;
}

.list {
    list-style: none;
    display: flex;
    gap: 25;
}

#toggler,
.navbar label {
    display: none;
    font-size: 300px;
}

.navbar i {
    font-size: 34px;
}

/*  Ending of Navigation Bar */


/* Background image of home page */
.top-image-content {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background-image: url("img/bg3_edit.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
.top-image-content h1{
    color: #fff;
    font-size: 36px;
    padding: 5px;
    border-radius: 10px;
    margin: 40px 0 20px 50px;

}
.top-image-content i{
    font-size: 38px;
    margin-right: 20px;
    font-weight: lighter;
}
.top-image-content h2{
    color: rgb(190, 189, 189);
    font-size: 24px;
    padding: 8px 20px;
    border-radius: 40px;
    margin: 0px 0 20px 50px;
    background-color: rgba(255, 255, 255, 0.1);
}







.contact{
    position: relative;
    min-height: 100vh;
    padding: 50px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #000;
    color: #fff;
}
.contact .content{
    max-width: 800px;
    text-align: center;
}
.contact .content h2{
    font-size: 36px;
    font-weight: 500;
    color: #fff;
}
.contact .content p{
    font-weight: 300px;
    color: #fff;
}
.contact-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.contact-container .contact-info{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.contact-container .contact-info .box{
    position: relative;
    padding: 20px 0;
    display: flex;
}
.contact-container .contact-info .box .icon{
    min-width: 50px;
    height: 50px;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 28px;
}
.contact-container .contact-info .box .text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}
.contact-container .contact-info .box .text p{
    color: rgb(156, 156, 156);
}



input[type=text],
input[type=email] {
    margin: 10px 2px;
    padding: 10px;
    background-color: black;
    color: white;
    width: 100%;
    border-radius: 4px;
    border: 2px solid #333;
    font-size: 16px;
}

input[name=number] {
    margin: 10px 2px;
    padding: 8px;
    background-color: black;
    color: white;
    width: 48%;
    border-radius: 4px;
    border: 2px solid #333;
}

textarea {
    color: white;
    background-color: black;
    width: 100%;
    margin: 10px 2px;
    padding: 8px;
    border-radius: 4px;
    border: 2px solid #333;
}

button {
    margin-top: 15px;
    padding: 10px 50px;
    margin-left: 30%;
    background-color: #106672;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    border: 1px none white;
}


/* Google maps */

.google-map{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0px 0 10px 0;
    width: 100%;
    height: 100vh;
    /* border: 1px solid gray; */
}
.google-map h1{
    font-size: 24px;
    margin-bottom: 40px;
}

.google-map iframe{
    width: 98%;
    height: 95vh;

}







/* Starting of Footer Section  */

.footer {
    background-color: #000;
    padding: 30px 50px;
}

.footer-container {
    max-width: 1170px;
    background-color: #000;
    margin: auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer-column {
    width: 18%;
    padding: 0 15px;
}

.footer-contact-column {
    width: 32%;
    padding: 0 15px;
}

.footer-column,
.footer-contact-column,
.footer-heading {
    font-size: 14px;
    color: #106672;
    text-transform: capitalize;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
}

.footer .footer-heading {
    font-size: 20px;
}

.foote-column,
.footer-contact-column ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-column,
.footer-contact-column ul,
li,
a {
    font-size: 16px;
    line-height: 30px;
    text-decoration: none;
    font-weight: 300;
    color: rgb(180, 180, 180);
    display: block;
    transition: all 0.3s ease;
}

footer i{
    font-size: 20px;
    margin-right: 10px;
}

.footer-column,
.footer-contact-column,
ul,
li,
a:hover {
    color: #fff;
}

@media(max-width: 767px) {

    .footer-column,
    .footer-contact-column {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {

    .footer-column,
    .footer-contact-column {
        width: 80%;
        margin-bottom: 30px;
    }
}


/* Ending of Footer Section  */


@media (max-width: 991px){
    .contact{
        padding: 50px;
    }
    .contact-container{
        flex-direction: column;
    }
    .contact-container .contact-info{
        margin-bottom: 40px;
    }
    .contact-container .contact-info,
    .contact-form{
        width: 100%;
    }
}









/* Resposive design for tablet */

@media screen and (max-width: 1000px) {
    .navbar {
        padding: 2px 10px 2px 40px;
    }

    .navbar a img {
        width: 70px;
    }

    .navbar a {
        margin: 0 10px;
        font-size: 1.1rem;
    }
}


/* Resposive desing for mobile */

@media screen and (max-width: 750px) {
    .menu {
        width: 100%;
        max-height: 0;
        overflow: hidden;
    }

    .list {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .navbar label {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    #toggler:checked~.menu {
        max-height: 100%;
    }

    
}





