

body{
    background-color: #FFFF99;
    font-family: "Open Sans", sans-serif;
    font-size: 1.125rem;
}

.btn{
    background-color: #333;
    color: #fff;
    padding-left: 24px;
    padding-right: 24px;
    font-weight: 300;
    border-radius: 2px;
}

.btn:hover{
    background-color: #FFE477;
    font-weight: 300;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.btn:focus{
    background-color: #FFE477 !important;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    outline: 4px solid #92D050;
}

a:focus{
    color: #fafafa !important;
    outline: 4px solid #FFE477;
}

@media only screen and (max-width: 991px){
    .btn{
        margin-bottom: 24px;
    }   
}

h1{
    font-family: "Work Sans", sans-serif;
    font-size: 3.5rem;
}

h2{
    font-family: "Work Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
}

h2 strong{
    font-weight: 700;
}

h3{
    font-family: "Work Sans", sans-serif;
    font-size: 1.75rem;
}

.mgb{
    margin-bottom: 24px;
}

header{
    background-color: #92D050;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

header img{
    max-width: 100%;
    padding: 8px;
}

section{
    padding: 80px 0;
}

.img-block{
    border-radius: 8px;
}

#hero{
    padding: 80px 0;
}

#hero h1{
    font-size: 24px;
}

@media only screen and (max-width: 1199px) {
        #hero .hero-logo{
            max-width: 100%;
        }
}

#hero .hero-img-container img{
    width: 100%;
}

#services{
    background-color: #FFE477;
}

#services .content-block{
    display: flex;
    flex-direction: column;
    justify-content: center;

    @media only screen and (min-width: 992px) {
        padding-left: 80px;
    }
}

@media only screen and (max-width: 991px){
    #services ul{
        margin-bottom: 24px;
    }
}

#services img{
    width: 100%;
}


#experiences{
    background-color: #FAFAFA;
}

#experiences .product{
    background-color: rgba(146, 208, 80, 0.5);
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 40px;
}



footer{
    padding: 80px 0;
}

.footer-content p{
    margin-bottom: 24px;
}

footer .contact-block{
    background-color: #92D050;
    padding: 0;
    display: flex;
    border-radius: 10px;
}

footer .contact-block a{
    text-decoration: none;
    color: #333;
}

footer .contact-block a:hover{
    color: #fafafa;
    font-weight: 500;
}

@media only screen and (max-width: 575px){
    footer .contact-block{
        flex-direction: column;
    }

    footer .contact-block .contact-icon{
        margin-left: 24px;
        margin-bottom: 24px;
        margin-top: 0;
    }
}

footer .contact-block img{
    border-radius: 10px;
    object-fit: cover;
    max-width: 300px;
}

@media only screen and (max-width: 575px){
    footer .contact-block img{
        padding: 24px;
    }
}


footer .contact-block ul{
    padding: 24px;
    list-style-type: none;
}

footer .contact-block .contact-icon{
    width: 60px;
    align-self: flex-start;
    margin-left: auto;
    margin-right: 24px;
    margin-top: 24px;
    
}

footer .contact-block .contact-icon img{
padding: 0;
}

@media only screen and (max-width: 575px){
    .bottom-footer-bar .bottom-container{
        flex-direction: column;
        text-align: center;
    }
    .bottom-footer-bar .bottom-container p{
        margin-bottom: 8px;
    }
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
  footer .contact-block .contact-icon{
    position: relative;
    margin-left: -68px;
  }
}


.bottom-footer-bar{
    background-color: #000;
    color: #fff;
    position: absolute;
    width: 100%;
    margin-top: 80px;
}

.bottom-footer-bar p{
    margin: 0;
    line-height: 32px;
}

.bottom-footer-bar a{
    color: #fff;
    text-decoration: none;
    cursor: text;
}