/* styles.css */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Georgia", Georgia, 'Times New Roman', Times, serif;
}


h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222
}

h2 {
    font-size: 40px;
    color: #115B7B;
    line-height: 36px;
    margin: 20px;
}

h3 {
    font-size: 30px;
    color: #115B7B;
    line-height: 36px;
    margin: 20px;
}

h3_1 {
    font-size: 30px;
    color: #115B7B;
    line-height: 20px;
    margin: 20px;
}

h4 {
    font-size: 36px;
    color: #222;
}

h5 {
    font-size: 36px;
    color: #FAFDFF;
}

h6 {
    font-size: 20px;
    font-weight: 700;
    color:#465b52;
}

h6_1{
    font-size: 24px;
    font-weight: 700;
    color:#465b52;
}

p{
    font-size: 16px;
    color: black;
    line-height:30px;
}

.sectionp1{
    padding: 40px 80px;
}

.sectionm1{
    margin: 40px 0;
}

body {height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column}

/* Media Inquiry */
@media (max-width: 799px) {
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 200px;
        background-color: #D9E9F0;
        box-shadow: 0 40px 60px rgba(3, 17, 57, 0.1);
        padding: 80px 0 10px;
        transition: right 0.3s ease;
    }

    #navbar li {
        margin: 15px;
    }

    #navbar.active  {
        right: 0;
    }

    #close{
        display:initial;
        position:absolute;
        left:30px;
        top:30px;
        color:#115B7B;
        font-size:20px;
    }

    #introduce h4{
        font-size:28px;
    }

    .intro_background {
        background-color:#D9E9F0;
        border: 10px solid #D9E9F0;
        border-radius: 10px;
    }

    .osection h3{
        font-size:16px;
        padding-left:0;
        margin:0;
    }

    .single-pro-detail h4{
        font-size:20px;
    }

    .single-pro-detail h6_1{
        font-size:12px;
    }

    .single-pro-detail {
        margin:0px;
        padding:0px;
        min-width:50%;
        line-height:0px;
    }
    
    #product1 .pro{
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
        position:relative;
        width: 50%;
        height: 400px;
    }
    
    .pro img{
        width: 100%;
        border-radius:10px;
        max-height:40%;
    }

    .hover-button{
        width:60px;
        font-size:18px;
        padding:10px 5px;
    }

    .pro h3{
        font-size:20px;
        margin-left:0px;
    }
    
    .des button{
        max-width:100px;
    }

    #contact h2{
        font-size:24px;
    }

    footer p{
        font-size:12px;
    }
}