@import url('https://fonts.googleapis.com/css2?family=Playwrite+SK:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    /* text-transform: capitalize; */
    /* transition: all 0.2s linear; */
}

html {
    font-size: 62.5%;
    overflow-x: scroll;
    overflow-y: scroll;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

body {
    background-color: white;
}

ul {
    list-style: none;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "header"
        "contact"
        "footer";
}

.header_menu {
    /* background-color: blue; */
    grid-area: header;
    width: 100%;
    height: 10vh;
    background-image: url(../images/hero-bg.jpg);
    background-size: cover;
    color: white;
    display: block;
}

.menubar {
    width: 100%;
    height: 10vh;
    /* background-color: #eee; */
    margin: 0;
    padding: 0 100px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.logo {
    width: 100%;
    /* background-color: red; */
    display: flex;
    gap: 5px;
}

.logo img {
    width: 25px;
    height: 25px;
}

.logo a span {
    color: white;
    font-size: 2rem;
    font-weight: 550;
}

.logo .navbartogger {
    display: none;
}

.navbarmenu {
    width: 100%;
    /* background-color: yellow; */
}

.navbarmenu ul {
    display: flex;
    justify-content: end;
    gap: 20px;
}

.navbarmenu ul li a {
    color: #fff;
}

.navbarmenu ul li a .un {
    /* color: black; */
    color: white;
    padding: 5px;
    font-size: 2rem;
    font-weight: 550;
    text-transform: capitalize;
    display: inline-block;
}

.navbarmenu ul li a .un::after {
    content: '';
    width: 0;
    height: 2px;
    display: block;
    margin-top: -5px;
    background-color: white;
    transition: 300ms;
}

.navbarmenu ul li .un:hover::after {
    width: 100%;
}


.contact_main {
    /* background-color: yellow; */
    /* color: yellow; */
    grid-area: contact;
    background: #F5F5F5;
    margin-top: 50px;
}

.contact_header {
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 3rem;
    font-weight: 600;
    text-decoration: underline;
}

.contact_container {
    width: 86%;
    height: 60vh;
    /* background: greenyellow; */
    margin: 0px 100px;
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: space-around;
}

.detail-contact {
    width: 100%;
    height: 100%;
    /* background: wheat; */
    align-items: center;
    display: flex;
    text-align: center;
}

.row-contact {
    width: 100%;
    height: 100%;
    /* background: #e93f1a; */
    align-items: center;
    display: flex;
    justify-content: center;
}

.col-contact {
    width: 100%;
    /* background: blue; */
}

.col-contact div {
    width: 100%;
    height: 100%;
    /* background: yellow; */
    padding: 15px;
    /* margin-left: -20px; */
}

.col-contact div input {
    width: 50%;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 10px;
}

.col-contact div input::placeholder {
    font-size: 1.5rem;
    font-weight: 600;
}

.col-contact div input::-ms-input-placeholder {
    font-size: 1.5rem;
    font-weight: 600;
}

.col-contact div .message-box {
    width: 50%;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 10px;
}

.col-contact div .message-box::placeholder {
    font-size: 1.5rem;
    font-weight: 600;
}

.col-contact div .message-box::-ms-input-placeholder {
    font-size: 1.5rem;
    font-weight: 600;
}

.col-contact .send-contact button{
    width: 25%;
    background: #e93f1a;
    margin-left: 25%;
    color: #fff;
    padding: 10px;
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    margin-top: -10px;
}

.col-contact .send-contact button:hover {
    background-color: transparent;
    border: 1px solid #e93f1a;
    color: #e93f1a;

}

.contact-map {
    width: 100%;
    /* background: violet; */

}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 1px solid black;
}

footer {
    background-color: black;
    color: white;
    grid-area: footer;
}


@media (max-width: 800px) {

    /* .grid-container{
        display: none;
    } */
    .grid-container {
        grid-template-columns: 1fr;
    }

    .header_menu {
        display: block;
        margin-bottom: 300px;
    }

    .header_menu.active {
        display: block;
        margin-bottom: 0;
    }

    .menubar {
        /* background-color: aqua; */
        display: block;
        margin-top: 10px;
        padding: 0 10px;
    }

    .logo {
        justify-content: space-between;
    }

    .logo .navbartogger {
        display: flex;
    }

    .navbarmenu ul {
        background-color: rgba(81, 77, 77, 0.419);
        border-radius: 10px;
        margin: 30px;
        display: block;
        text-align: center;
    }
    
    .navbarmenu ul.active {
        display: none;
    }

    /* .navbarmenu ul {
        display: flex;
        justify-content: end;
        gap: 20px;
    } */

    .navbarmenu ul li {
        margin: 5px;
        padding: 2px;
        /* cursor: pointer; */
    }    
    .navbarmenu ul li a {
        /* color: #fff; */
        /* cursor: pointer; */
    }
    
    .navbarmenu ul li a .un {
        /* color: black; */
        color: white;
        padding: 5px;
        font-size: 2rem;
        font-weight: 550;
        text-transform: capitalize;
        display: inline-block;
        /* cursor: pointer; */
    }
    
    .navbarmenu ul li a .un::after {
        content: '';
        width: 0;
        height: 2px;
        display: block;
        margin-top: -5px;
        background-color: white;
        transition: 300ms;
    }
    
    .navbarmenu ul li .un:hover::after {
        width: 100%;
    }

    .menuopen {
        display: flex;
        margin-top: 6px;
        cursor: pointer;
    }

    .menuopen.active {
        display: none;
        margin-top: 6px;
    }

    .menuclose {
        display: flex;
        cursor: pointer;
    }
    
    .menuclose img {
        width: 50px;
        height: 55px;
        margin-top: -8px;
        margin-right: -15px;
    }

    .menuclose.active {
        display: none;
    }

    
    .contact_main {
        /* background-color: yellow; */
        /* color: yellow; */
        grid-area: contact;
        background: #F5F5F5;
        margin-top: 50px;
        height: 140vh;
    }
    
    .contact_header {
        width: 100%;
        text-align: center;
        padding: 20px;
        font-size: 3rem;
        font-weight: 600;
        text-decoration: underline;
    }
    
    .contact_container {
        /* width: 100%; */
        /* height: 60vh; */
        /* background: greenyellow; */
        margin: 0px 50px;
        /* align-items: center; */
        display: block;
        /* text-align: center; */
        /* justify-content: space-around; */
    }
    
    .detail-contact {
        width: 100%;
        height: 100%;
        /* background: wheat; */
        align-items: center;
        display: flex;
        text-align: center;
    }
    
    .row-contact {
        width: 100%;
        height: 100%;
        /* background: #e93f1a; */
        align-items: center;
        display: flex;
        justify-content: center;
    }
    
    .col-contact {
        width: 100%;
        /* background: blue; */
    }
    
    .col-contact div {
        width: 100%;
        height: 100%;
        /* background: yellow; */
        padding: 15px;
        /* margin-left: -20px; */
    }
    
    .col-contact div input {
        width: 80%;
        padding: 10px;
        border: 1px solid #000;
        border-radius: 10px;
    }
    
    .col-contact div input::placeholder {
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    .col-contact div input::-ms-input-placeholder {
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    .col-contact div .message-box {
        width: 80%;
        padding: 10px;
        border: 1px solid #000;
        border-radius: 10px;
    }
    
    .col-contact div .message-box::placeholder {
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    .col-contact div .message-box::-ms-input-placeholder {
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    .col-contact .send-contact button{
        width: 25%;
        background: #e93f1a;
        margin-left: 55%;
        color: #fff;
        padding: 10px;
        font-size: 1.8rem;
        font-weight: 600;
        cursor: pointer;
        border-radius: 10px;
        margin-top: -10px;
    }
    
    .col-contact .send-contact button:hover {
        background-color: transparent;
        border: 1px solid #e93f1a;
        color: #e93f1a;
    
    }
    
    .contact-map {
        width:100%;
        /* background: violet; */
    
    }
    
    .contact-map iframe {
        width: 385px;
        height: 380px;
        border: 1px solid black;
    }

}
