@import url(common.css);
@import url(comon_media_query.css);

.sectors_bg {
    background: url("../images/sectors_bg.webp") no-repeat;
    width: 100%;
    background-size: cover;
}

.sectors_card {
    background: #FFFFFF;
    padding: 20px 50px 20px 50px;
    text-decoration: none;
}

.sectors_card:hover {
    background-color: var(--green);
}

.sectors_card:hover h3 {
    color: var(--white);
}

.card {
    padding: 35px;
    box-shadow: 2px 10px 28px rgba(75, 0, 129, 0.12);
    border: none;
}

.icons {
    width: 60px;
    height: 60px;
}

h3 {
    font-weight: 600;
    font-size: 26px;
    color: #303030;
}

.text-yellow {
    color: #FDCA40;
}
h3.title {
    font-size: 32px;
}
.right_arrow {
    width: 15px;
}
.sectors_title_wrapper {
    padding: 15px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    text-align: center;
}

.sectors_title {
    font-weight: 700;
    font-size: 70px;
    line-height: 85px;
    text-align: center;
    color: #FFFFFF;
}
.sectors_title::after{
    background: none repeat scroll 0 0 #008081;
    content: "";
    display: block;
    height: 7px;
    width: 15%;
    border-radius: 5px;
    position: absolute;
    left: 40%;
}
.sectors_title_bottom_wrapper{
    padding: 15px;
    left: 5%;
    bottom: 5%;
    position: absolute;
}
.sectors_title_bottom_wrapper::before{
    background: none repeat scroll 0 0 #ffffff;
    content: "";
    display: block;
    height: 7px;
    width: 15%;
    border-radius: 5px;
    position: absolute;
    left: 2%;
}
.sectors_bottom_title {
    font-weight: 700;
    font-size: 44px;
    line-height: 85px;
    text-align: center;
    color: #FFFFFF;
}
.sectors_back_arrow {
    position: absolute;
    top: 5%;
    left: 3%;
}

.overview {
    color: #008081;
    font-size: 22px;
    font-weight: 600;
}










@media (max-width: 576px) {
    h3 {
        font-size: 18px;
    }

    .icons {
        width: 35px;
        height: 35px;
    }
}