/*[--Home Page Styles--] [-->Title<--]*/


.home-body {
    background-color: rgba(255,193,0,.4);
    width: 100%;
    height: auto;
}


/*[--Title and Showcase--] [-->Begin<--]*/


#picture-with-overlay {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

#picture-with-overlay > .image-showcase {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 6px solid #fff;
    border-radius: 12px;
}

#picture-with-overlay > div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: rgba(255,193,0,.8);
    width: 60%;
    height: 150px;
    border-radius: 8px;
    border: 6px solid #fff;
    font-weight: bold;
    font-size: clamp(1rem, 2vw, 2.5rem);
    text-align: center;
    color: white;
    align-items: center;
    display: flex;
    justify-content: center;
}
@media (max-width: 576px) {
    #picture-with-overlay > div {
        display: none;
    }
}


/*[--Title and Showcase--] [-->End<--]*/
/*[--Main Business Information--] [-->Begin<--]*/


.main-business-information {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.main-business-information h2 {
    margin: 20px;
    background-color: #ffc100;
    border: 6px solid #fff;
    border-radius: 12px;
    border-color: #fff;
    padding: 20px;
    color: white;
    text-align: center;
    font-size: clamp(1rem, 2vw, 2.5rem);
}
.main-business-information p {
    margin-left: 20%;
    margin-right: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #009eff;
    font-size: clamp(1rem, 2vw, 2.5rem);
    padding: 20px;
    padding-top:0px;
    font-weight: bolder;
    text-shadow: none;
    flex-direction:column;
    text-align:center;
    gap:20px;
}
.main-business-information p a {
    color: #009eff;
    text-shadow: -1px -1px 3px #000c81, 1px -1px 3px #000c81, -1px 1px 3px #000c81, 1px 1px 3px #000c81;
    transition-duration: 0.3s;
}
.main-business-information p a:visited {
    text-decoration:none;
}
.main-business-information p a:link {
    text-decoration: none;
}
.main-business-information p a:hover {
    scale: 1.05;
    color: #ffc100;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    transition-duration: 0.3s;
}

@media(max-width:576px) {
    .main-business-information p {
        margin-left: 20px;
        margin-right: 20px;
        font-size: 1.5rem;
    }
}


/*[--Main Business Information--] [-->End<--]*/
/*[--Provided Services--] [-->Begin<--]*/


.home-body h2.o-p-s {
    background-color: #ffc100;
    color: white;
    border: 6px solid #fff;
    font-size: clamp(1rem, 2vw, 2.5rem);
    margin-left:40px;
    margin-right:40px;
    text-align:center;
    padding:10px;
}

.home-body ul.list {
    display: flex;
    align-items: stretch;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding:40px;
}

.home-body > ul.list > li {
    flex-grow: 1;
    display: flex;
    width:auto;
    height:auto;
    background-color: #ffc100;
    color: white;
    border: 6px solid #fff;
    padding:40px;
    flex-direction:column;
    justify-content:center;
    gap:20px;
}
ul.list > li > h3 {
    color: #009eff;
    font-size: clamp(1.2rem, 2vw, 2.5rem);
}
.service-desc {
    color: #fff;
    font-size: clamp(1rem, 1.5rem, 1.8rem);
    padding-left:40px;
    display:flex;
    flex-direction:column;
    gap:15px;
    list-style-type:none;
}
.service-desc li {
    padding-bottom:10px;
    border-bottom:2px solid #fff;
}
/*[--Provided Services--] [-->End<--]*/