.section-m {
    margin-top: var(--section-gutter);
    margin-bottom: var(--section-gutter);
}

.section-p {
    padding-top: var(--section-gutter) !important;
    padding-bottom: var(--section-gutter);
}

.section-top-p {
    padding-top: var(--section-gutter);
}

.section-pt {
    padding-top: var(--section-gutter) !important;
}

.section {
    overflow: hidden;
}

.section-bg {
    background-color: var(--background);
    padding: 50px;
    border-radius: var(--border-radius);
}

.section-info {
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: space-between;
}

.section-info--text {
    display: flex;
    flex-direction: column;
}

.section.center .section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-media {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section--title {
    font-family: var(--font);
    margin: 0;
    font-size: 48px;
    font-weight: bold;
    color:black;
    text-transform: capitalize;
    line-height: 1.2;
}

.section--title.center{
    text-align: center;
}

.section--title.with-border {
    display: flex;
    align-items: flex-end;
}

.section--title.with-border::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--dark);
    margin: 0 20px 10px;
    border-radius: var(--border-radius);
}

.section--title>span {
    font-weight: bold;
    color: var(--primary-color);
}

.section.center .section--title {
    text-align: center;
}

.section.inner-section .section--title {
    font-size: 25px;
}

.section--subtitle {
    font-family: var(--font);
    font-size: 22px;
    color: var(--primary-color);
    text-transform: capitalize;
    margin-top: 15px;
}

.section-content {
    margin-top: 50px;
}

.section-white{
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section--about-img img {
    width: 100%;
    height: auto;
    max-height: 250px;
    display: block;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.section-content.center {
    text-align: center;
}

.section--desc {
    margin-top: 20px;
    color: #fff;
    line-height: var(--line-height);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section--desc p,
.section--desc span {
    font-size: 18px;
    font-weight: 300;
    line-height: var(--line-height);
    color: var(--text-color);
}

.section--desc>* {
    color: var(--dark);
    line-height: var(--line-height);
}

.section--desc> :first-child {
    margin-top: 0;
}

.section--desc> :last-child {
    margin-bottom: 0;
}

.section--desc ul li,
.section--desc dl li,
.section--desc ol li {
    margin-bottom: 10px;
}

.section--desc li>* {
    margin-top: 10px;
}

.section.center .section--desc {
    text-align: center;
    max-width: 70%;
}

.section.section-white .section--desc {
    color: white;
}

.section-image {
    position: relative;
}


.section--img img {
    width: 100%;
    max-height: 400px;
    display: block;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.section-image img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    overflow: hidden;
}

@media screen and (max-width: 991.98px) {
    .section--title {
        font-size: 40px;
    }
}

@media screen and (max-width: 767.98px) {
    .section--title {
        font-size: 35px;
    }

    .section.inner-section .section--title {
        font-size: 22px;
    }

    .section--desc p,
    .section--desc span {
        font-size: 16px;
        font-weight: normal;
    }
}

@media screen and (max-width: 575.98px) {
    .section--title {
        font-size: 30px;
    }

    .section.inner-section .section--title {
        font-size: 20px;
    }

    .section--subtitle {
        font-size: 18px;
    }

    .section-image img {
        height: 300px;
        border-radius: 0;
    }

    .section.inner-sectors-section {
        padding-bottom: 300px !important;
        position: relative;
    }

    .section.inner-sectors-section .section-image {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 300px;
    }

    .section-content{
        margin-top: 30px;
    }

    .section-white{
        padding: 20px;
    }

    .section--desc {
        font-size: 18px;
    }
}
