body {
    color: rgb(20, 35, 60); 
    text-align: center;
    background-color: white;
    margin:0px;
    font-family: "Poppins", sans-serif;
}

a{
    text-decoration: underline;
}
  
#logo img {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    border: 1px solid rgb(20,35,60);
    margin: 2% 0;
}

#main-header{
    height: 10rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(20, 35, 60);
    padding: 0 5%;
    color: white;
    font-size: 1.25rem;
}

#main-header ul{
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

#main-header li{
    margin: 0 1rem;
}

#main-header span a{
    font-size: 1.25rem;
    color: white;
}

#main-header span a:hover{
    color: #43b5c1;
}

#main-header h2{
    display: flex;
    margin: 0 1rem;
    align-items: center;
    font-size: 1.5rem;
}

.menu-btn{
    width: 3rem;
    height: 3rem;
    flex-direction: column;
    justify-content: space-around;
    display: none;
}

.menu-btn span{
    width: 100%;
    height: 3px;
    background-color: white;
}

#main-header ul{
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

#main-header li{
    margin: 0 1rem;
    line-height: 1.5rem;
}

#main-header nav a{
    color: white;
    font-size: 1.25rem;
    
}

#main-header nav a:hover{
    color: #43b5c1
    
}

#side-drawer{
    width: 100%;
    height: 100%;
    background-color: rgb(20, 35, 60);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}

#side-drawer:target{
    display: block;
}

#side-drawer ul{
    list-style: none;
    margin: 0;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#side-drawer li{
    margin: 1rem 0;
}

#side-drawer a{
    color: white;
    font-size: 2rem;
}
#side-drawer a:hover{
    color: #43b5c1;
}

#side-drawer header{
    height: 5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 5%;
}

#breadcrumb{
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #43b5c1;
    padding: 0 5%;
    color: white;
    font-size: 1.25rem;
}

#breadcrumb p{
    color: white;
}

#breadcrumb a{
    color: white;
    font-size: 1.25rem;  
}

#breadcrumb a:hover{
    color: rgb(20, 35, 60);
}

main{
    display: flex;
    flex-direction: column;
    margin: 0px auto 0px auto;
    padding: 0;
    background-color: white;
}

#main-image{
    background-color: white;
    height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#main-image img{
    margin: 0;
    height: 30rem;
    
}

#description-text h2{
    padding: 0 5%;
}

#description-text p{
    text-align: justify;
    padding: 0 5%;
}

#nav-footer{
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #43b5c1;
    color: white;
    padding: 0 5%;
}

#nav-footer a{
    color: white;
    font-size: 1.25rem;  
}

#nav-footer a:hover{
    color: rgb(20, 35, 60);
}

#main-footer{
    height: 12rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(20, 35, 60);
    padding: 0 20%;
    color: white;
    font-size: 0.9rem;
}

#main-footer h3{
    margin: 0;
}

#main-footer p{
    color: white;
    margin: 0;
}

#main-footer span{
    margin: 2% 0;
}


#logo {
    display: flex;
}
  
h3{
    margin-bottom: 0px;
}
  
p {
    color: #534b4b;
}

.info{
    margin: 0 auto 0 auto;
}

#service-item-list ul{
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 0 1rem;
}

#service-item-list{
    background-color: #eeeeee;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1rem;
}

.service-item{
    background-color: white;
    border-radius: 2px;
    overflow: hidden;
    text-decoration: none;
    color: rgb(20, 35, 60);
    transition: all ease .3s;
}

.service-item:hover{
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
}

.service-item a h2{
    font-size: 1.25rem;
    font-weight: 400;  
}

#name{
    font-weight: 600;
}
  
@media(max-width :48rem) {
    #main-header{
        flex-direction: column;
        height: auto;
    }

    #breadcrumb{
        height: auto;
        font-size: 1rem;
    }

    #main-header span ul{
        flex-direction: column;
        font-size: 1rem;
    }   

    #logo{
        align-items: center;
        flex-direction: column;
        font-size: 1rem;
    }

    #nav-footer{
        flex-direction: column;
        height: auto;
        font-size: 1rem;
    }

    #main-footer{
        flex-direction: column;
        height: auto;
    }

    .service-item h2{
        font-size: 1.25rem;
    }

    #service-item-list{
        grid-template-columns: 1fr;
    }

    #main-image{ 
        height: auto;
    }

    #main-image img{ 
        max-width: 100vw;
        height: auto;
    }
    
}

@media(max-width :56rem) {
    #main-header nav{
        display: none;
    }

    .menu-btn{
        display: flex;
    }
}

@media(max-width :96rem) {
    #main-header nav ul{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    #main-header nav a{
        font-size: 1rem;
    }
}

@media(max-width :96rem) {
    #main-header nav ul{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    #main-header li{
        margin: 0 1rem;
        line-height: 1.25rem;
    }

    #main-header nav a{
        font-size: 1rem;
    }
}