/* 
-------------------------------------------------------------------------------
FEATURED SECTION
------------------------------------------------------------------------------- 
*/

.featured-container {
    display: flex;
    justify-content: center;
}

.featured-section {
    padding: 80px;
    background-color: #FBFBFB;
    position: relative;
    max-width: 1500px;
}

.featured-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-section h1 {
    font-size: 50px;
    font-weight: 500;
    line-height: 60px;
}

.featured-text h1 {
    justify-content: left;
    margin-right: 50px;
    grid-row-start: 1;
    grid-row-end: 3;
    font-size: 45px;
    font-weight: 600;
}

.featured-text p {
    justify-content: right;
    margin-left: 50px;
    margin: 10px;
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    color: gray;
}

.featured-button, .featured-button-mobile {
    margin-top: 30px;
    padding: 14px;
    width: 120px;
    text-align: center;
    border-radius: 10px;
    font-weight: 500;
    color: white;
    background-color: #00A2DB;
    border-style: none;
    font-size: 16px;
    transition-duration: 0.5s;
    grid-row-start: 2;
    text-decoration: none;
    height: 20px;
}

.featured-button-mobile {
    margin-top: 30px;
    padding: 14px;
    width: 120px;
    text-align: center;
    border-radius: 10px;
    font-weight: 500;
    color: white;
    background-color: #00A2DB;
    border-style: none;
    font-size: 16px;
    transition-duration: 0.5s;
    grid-row-start: 2;
    text-decoration: none;
    cursor: pointer;
}

.featured-button:hover, .featured-button-mobile:hover {
    background-color: #00a1dbad;
}

#our-company {
    color: black;
}

.featured-image-wrapper {
    display: flex;
    justify-content: center;
}

.featured-image {
    margin-top: 100px;
    width: 100%;
    max-width: 1400px;
    background-color: #FBFBFB;
    border-radius: 10px;
    box-shadow: 5px 5px 20px rgb(193, 193, 193);
}

.featured-image img {
    width: 100%;
    border-radius: 10px;
}