*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@1,300&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bad+Script&family=Merriweather:ital,wght@1,300&display=swap');

body, html{
    font-family: 'Bad Script', cursive;
    /* font-family: 'Merriweather', serif; */
    background-image: url(/images/background.jpg);
    background-repeat: repeat;
    color: rgb(255, 255, 255);
    font-weight: 600;
    line-height: 1.8em;
    letter-spacing: 0.1em;
    /* font-size: 10px; */
    
}
.container{
    display: flex;
    height: 100vh;
    width: 100vw;
    /* background-color: aqua; */
    flex-direction: row;
    flex-wrap: wrap;
} 
.sidebar{
    width: 20%;
    height: 200vh;
    background-image: url(/images/sidebar.jpg);
    /* position: absolute */
    font-size: 20px;
}
.sidebar-container{
    padding: 20px 20px;
}
.sidebar-links{
    text-decoration: none;
    color: black
}
.sidebar-items:hover{
    cursor: pointer;
    font-weight: 900;
    text-decoration: underline;
}
.sidebar nav{
    padding: 20px;
}
.sidebar nav li{
    list-style: none;
    padding: 30px 0px;
    margin-left: -10px;
}
.main{
    width: 80%;
    height: 200vh;
    /* background-color: bisque; */
    /* text-align: right; */
}
.main h1, h2, h3, h4{
    color: aqua;
    padding: 20px 0px;

}
.info-container{
    display: flex;
    justify-content: space-around;
    margin-top: 100px;
    padding: 20px 20px;
}
.info-container company-info h1, h3, p{
    font-size: 20px;
    text-align: justify;
}
.name{
    text-align: left;
    padding-bottom: 20px;
}
.company-info{
    margin-top: 200px;
    text-align: center;
    padding: 10px 10px;
    margin: 20px;
    /* background-color: aquamarine; */
}
.logo{
    height: 400px;
    width: 400px;
    padding: 10px 10px;
    /* padding-top: 0px; */
    border: 1px solid whitesmoke;
    border-radius: 50%;
}
.form-elements{
    padding: 50px 50px;
}
.about-container{
    /* background-color: bisque; */
    height: 100vh;
    width: 80vw;
    padding: 130px 20px;
    text-align: justify;
}
.services-container{
    height: 100vh;
    width: 80vw;
    padding: 130px 20px;
    text-align: justify;
}
.catalogue-link{
    text-decoration: none;
    font-size: 20px;
    padding: 10px 10px;
}
.catalogue-button{
    width: 200px;
    height: 50px;
    padding: 10px 10px;
    margin-top: 20px;
    border-radius: 80px;
    font-size: 15px;
    color: rgb(0, 0, 0);
    background-color: aqua;
    font-weight: 600;
}
.catalogue-button:hover{
    background-color: whitesmoke;
    color: black;
    font-weight: bold;
    cursor: pointer;
}
.services-container ul{
    list-style-type: none;
    font-size: 18px;
}
.image-elements{
    width: 150px;
    height: 150px;
    border-radius: 20px;
}
.image-container{
    padding: 20px 20px;
}
.works-image{
    width: 200px;
    height: 200px;
    border-radius: 20px;
    
}
.works-container{
    padding: 40px 40px;
}
.works-image-container{
    padding: 20px 20px;
}
.maps-details{
    border-radius: 20px;
}
.maps{
    border: 1px solid rgb(255, 255, 255); 
    width: 252px;
    border-radius: 20px;
}
.contact-container{
    padding: 40px 40px;
}
.contact-submit{
    width: 200px;
    height: 50px;
    padding: 10px 10px;
    margin-top: 20px;
    border-radius: 80px;
    font-size: 15px;
    color: rgb(0, 0, 0);
    background-color: aqua;
    font-weight: 600;
}
.contact-submit:hover{
    background-color: whitesmoke;
    color: black;
    font-weight: bold;
    cursor: pointer;
}
.facebook-link{
    text-decoration: none;
    color: white;
}
.facebook-link:hover{
    font-weight: bold;
    cursor: pointer;
    color: blanchedalmond;
}
#full-name{
    width: 200px;
    height: 25px;
    border-radius: 10px;
}
#e-mail{
    border-radius: 10px;
    width: 200px;
    height: 25px;
}
#phone-number{
    border-radius: 10px;
    width: 200px;
    height: 25px;
}
#help-desk{
    border-radius: 10px;
    width: 200px;
    height: 25px;
}
#full-name:hover{
    width: 200px;
    height: 25px;
    border-radius: 10px;
    cursor: pointer;
}
#e-mail:hover{
    border-radius: 10px;
    width: 200px;
    height: 25px;
    cursor: pointer;
}
#phone-number:hover{
    border-radius: 10px;
    width: 200px;
    height: 25px;
    cursor: pointer;
}
#help-desk:hover{
    border-radius: 10px;
    width: 200px;
    height: 25px;
    cursor: pointer;
}
/* making the page responsive with the help of media queries */
@media screen and (max-width:800px) {
    /* normal screen */
    .info-container{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-top: 5px;
        /* padding: 20px 20px; */
        width: 70%;
        margin-right: 0px;
        
    }
    .sidebar{
        width: 30%;
        height: 200vh;
        background-image: url(/images/sidebar.jpg);
        /* position: absolute */
        font-size: 20px;
    }
    .main{
        width: 70%;
        height: 200vh;
        /* background-color: bisque; */
        /* text-align: right; */
        
    }
    .company-info{
        /* margin-top: 5px; */
        text-align: left;
        padding: 10px 10px;
        margin: 0px 0px;
        margin-right: -100px;
        /* background-color: aquamarine; */
    }
    .logo{
        height: 150px;
        width: 150px;
        padding: 10px 10px;
        /* padding-top: 0px; */
        border: 1px solid whitesmoke;
        border-radius: 50%;
    }
    .info-container company-info h1, h3, p{
        font-size: 10px;
        text-align: left;
    }
    .sidebar-container{
        padding-left: 10px;
    }
    .about-container{
        /* background-color: bisque; */
        height: 100vh;
        width: 80vw;
        padding: 50px 20px;
        text-align: justify;
    }

    .services-container{
        height: 100vh;
        width: 80vw;
        padding: 50px 20px;
        text-align: justify;
    }
    .image-elements{
        width: 100px;
        height: 100px;
        border-radius: 20px;
    }
    body, html{
        font-family: 'Bad Script', cursive;
        /* font-family: 'Merriweather', serif; */
        background-image: url(/images/background.jpg);
        background-repeat: repeat;
        color: rgb(255, 255, 255);
        font-weight: 600;
        line-height: 3.0em;
        letter-spacing: 0.1em;
        font-size: 10px; 
        
    }
    .works-container{
        padding-left: 20px;
    }
    .works-image-container{
        padding: 20px 0px;
    }
    .works-image{
        width: 100px;
        height: 100px;
        border-radius: 20px;
        
    }
    .services-container ul li{
        font-size: 10px;
    }

}
