:root {
    --theme1: #2f2859;
    --theme2: #fecc00;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 1px;
    font-family: 'Laila', sans-serif;
}

input,
textarea,
select {
    border: 1px solid grey;
    width: 100%;
    padding: 5px 15px;
    border-radius: 5px;
    caret-color: var(--theme2);
    display: block;
    margin-bottom: 20px;
    background: white;
}

label {
    font-size: 0.85rem;
    margin-bottom: 5px;
    font-weight: bold;
}

textarea {
    height: 100px;
}

input:focus,
textarea:focus,
select:focus,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    border-color: var(--theme2);
}

a {
    color: var(--theme1);
    text-decoration: none;
}

a:hover {
    color: var(--theme2);
    text-decoration: none;
}

button:focus,
button:focus {
    outline: none;
}

/* CSS */
.custom-btn {
    align-items: center;
    appearance: none;
    background-color: #FCFCFD;
    border-radius: 4px;
    border-width: 0;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
    box-sizing: border-box;
    color: var(--theme1);
    cursor: pointer;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    transition: box-shadow .15s, transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.custom-btn:focus {
    box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.custom-btn:hover {
    box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
    transform: translateY(-2px);
}

.custom-btn:active {
    box-shadow: #D6D6E7 0 3px 7px inset;
    transform: translateY(2px);
}



/* ==========================================================
                            HEADER
========================================================== */

header {
    position: fixed;
    z-index: 2;
    width: 100%;
    top: 0;
    left: 0;
}

/* HEADER TOP */
header .header-top {
    padding: 10px 0;
    background: var(--theme1);
}

header .header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header-top .left {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .header-top .left div {
    color: white;
    font-size: 0.85rem;
}

header .header-top .right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

header .header-top .right a {
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s linear;
}

header .header-top .right a:hover {
    color: var(--theme2);
}

/* HEADER BOTTOM */
header .header-bottom {
    border-bottom: 2px solid var(--theme1);
}

header .header-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
}

header .header-bottom .logo {
    width: 80px;
    aspect-ratio: 1/0.8;
}

header .header-bottom .links {
    width: calc(100% - 100px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

header .header-bottom .links .hov-link a {
    color: rgb(255, 255, 255);
    transition: all 0.3s linear;
}

header .header-bottom .links .hov-link a:hover {
    color: var(--theme2) !important;
}

header .header-bottom .links .head-drop {
    position: relative;
}

header .header-bottom .links .head-drop .drop-button {
    cursor: pointer;
    color: rgb(255, 255, 255);
    transition: all 0.3s linear;
}

header .header-bottom .links .head-drop .drop-button:hover {
    color: var(--theme2) !important;
}

header .header-bottom .links .head-drop .drop-list {
    position: absolute;
    width: 420px;
    background: white;
    padding: 15px;
    left: 0;
    transform: translate(-20%, 0);
    display: none;
    box-shadow: 0 8px 24px #00000038;
}

header .header-bottom .links .head-drop:hover .drop-list {
    display: block;
}

header .header-bottom .links .head-drop a {
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s linear;
    margin-bottom: 5px;
}

header .header-bottom .ham-btn {
    display: none;
    place-items: center;
    width: 35px;
    height: 35px;
    background: var(--theme2);
    color: black;
    border-radius: 50%;
}

@media screen and (max-width:768px) {
    header .header-bottom .links {
        display: none;
        position: absolute;
        background: var(--theme1);
        padding: 10px 20px;
        top: 100%;
        z-index: 10;
        width: 100%;
    }

    header .header-bottom .ham-btn {
        display: grid;
    }

    header {
        position: static;
    }

    header .header-bottom {
        background: #ffffff;
    }

    header .header-bottom .links .hov-link {
        padding-bottom: 5px;
    }

    header .header-bottom .links .head-drop .drop-list {
        transform: initial;
        width: 100%;
    }
}

@media screen and (max-width:576px) {
    header .header-top {
        display: none;
    }
}



/* ==========================================================
                        HOME BANNER
========================================================== */
#home-banner .slider-item {
    aspect-ratio: 1/0.6;
    max-height: 550px;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#home-banner .slider-item img {
    aspect-ratio: 1/0.6;
    max-height: 550px;
    width: 100%;
}

#home-banner .video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000bf;
    padding: 30px 0;
    display: flex;
    align-items: flex-end;
    max-height: 550px;
}

#home-banner .video-content .title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

#home-banner .video-content .content {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

@media screen and (max-width:991px) {
    #home-banner .video-content .title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width:768px) {
    #home-banner .video-content .title {
        font-size: 1.8rem;
    }

    #home-banner .video-content .content {
        font-size: 0.8rem;
    }

    #home-banner .slider-item,
    #home-banner .slider-item img,
    #home-banner .video-content {
        max-height: 350px;
        min-height: 350px;
    }
}

@media screen and (max-width:576px) {
    #home-banner .video-content .title {
        font-size: 1.5rem;
    }

    #home-banner .slider-item,
    #home-banner .slider-item img,
    #home-banner .video-content {
        max-height: 450px;
        min-height: 450px;
    }
}



/* ==========================================================
                        SECTIONS
========================================================== */
section {
    padding: 30px 0;
}

section .section-head {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 30px;
}

section .section-head .title div {
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Phudu', cursive;
}




/* ==========================================================
                        SERVICES
========================================================== */
#services .service-container {
    margin: 40px 0;
}

#services .service-container .card {
    position: relative;
    height: 350px;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
        inset -5px -5px 15px rgba(255, 255, 255, 0.1),
        5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 25px;
    transition: 0.5s;
}

#services .service-container .card .box {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #2a2b2f;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
}

#services .service-container .card .box:hover {
    transform: translateY(-20px);
}

#services .service-container .card .box .title {
    font-size: 1.1rem;
    color: white;
    font-weight: bold;
}

#services .service-container .card .box .content {
    padding: 20px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background: #0000007d;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#services .service-container .card .box .content a {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    background: var(--theme1);
    border-radius: 5px;
    text-decoration: none;
    color: white;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}

#services .service-container .card .box .content a:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    background: #fff;
    color: #000;
}




/* ==========================================================
                    ABOUT COMPANY
========================================================== */
#about .about {
    position: relative;
}

#about .about .image {
    max-width: 700px;
    aspect-ratio: 1/0.6;
}

#about .about .content-wrap {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    max-width: 600px;
    padding: 20px;
    background: #00000070;
}

#about .about .content-wrap .title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

#about .about .content-wrap .data {
    color: #ededed;
    text-align: justify;
}

@media screen and (max-width:768px) {
    #about .about .content-wrap {
        position: static;
        transform: initial;
        max-width: initial;
    }

    #about .about .image {
        margin-bottom: 20px;
    }
}




/* ==========================================================
                    CORE FEATURES
========================================================== */
#get-in-touch {
    position: relative;
    overflow: hidden;
}

#get-in-touch .section-head {
    margin-bottom: 60px;
}

#get-in-touch .back-img {
    position: absolute;
    top: 0px;
    left: calc(50% - 300px);
    width: 80px;
    aspect-ratio: 1/2;
}

#get-in-touch .contact-form {
    padding: 20px;
    background: #2f285987;
}

#get-in-touch .contact-form .head {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

#get-in-touch .contact-form .submit-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 35px;
}

#get-in-touch .content-block .title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

#get-in-touch .content-block .contact-bar {
    display: flex;
    margin-bottom: 15px;
}

#get-in-touch .content-block .contact-bar div:nth-child(1) {
    font-size: 1.4rem;
    color: var(--theme1);
    width: 40px;
}

#get-in-touch .content-block .contact-bar div:nth-child(2) {
    width: calc(100% - 40px);
    font-size: 1.2rem;
}




/* ==========================================================
                        HOME CLIENTS
========================================================== */
#home-clients .client-item {
    max-width: 200px;
    margin: 0px auto 20px;
    aspect-ratio: 1/1;
}

#home-clients .client-item img {
    object-fit: contain;
    object-position: center;
}

#home-clients .owl-nav {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#home-clients .owl-nav div {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--theme2);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:768px) {
    #home-clients .owl-nav {
        display: none;
    }
}




/* ==========================================================
                    HOME TESTIMONIALS
========================================================== */
#client-review .testimonial-card {
    background: #fee478;
    padding: 15px;
}

#client-review .testimonial-card .quote-mark {
    font-size: 3rem;
    color: #2f285994;
}

#client-review .testimonial-card .content {
    height: 240px;
    text-align: justify;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden;
}

#client-review .testimonial-card .bottom {
    border-top: 1px solid #80808082;
    padding-top: 15px;
}

#client-review .testimonial-card .name {
    font-size: 1.4rem;
    font-family: 'Phudu', cursive;
    font-weight: bold;
}

#client-review .testimonial-card .role {
    font-family: 'Phudu', cursive;
    color: black;
}

#testimonial-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: -2%;
    width: 104%;
    display: flex;
    justify-content: space-between;
}

#testimonial-slider .owl-nav div {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--theme1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:768px) {
    #testimonial-slider .owl-nav {
        display: none;
    }
}




/* ==========================================================
                    HOME ACHIEVEMENTS
========================================================== */
#achievements .achievement-item {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 250px;
    margin: 0 auto;
}

#achievements .owl-nav {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: -2%;
    width: 104%;
    display: flex;
    justify-content: space-between;
}

#achievements .owl-nav div {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--theme1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:768px) {
    #achievements .owl-nav {
        display: none;
    }
}




/* ==========================================================
                    AREAS WE SERVE
========================================================== */
#areas-serve .aera-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.2;
}

#areas-serve .aera-item .image {
    width: 100%;
    height: 100%;
}

#areas-serve .aera-item .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: #ffffff94;
    color: var(--theme1);
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Phudu', cursive;
    font-size: 1.1rem;
}

#areas-serve .owl-nav {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: -2%;
    width: 104%;
    display: flex;
    justify-content: space-between;
}

#areas-serve .owl-nav div {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--theme1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:768px) {
    #areas-serve .owl-nav {
        display: none;
    }
}




/* ==========================================================
                    FOOTER
========================================================== */
.footer-top {
    background: #fecc0087;
    padding: 50px 0 30px;
}

.footer-top .foot-about {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.footer-top .foot-about .logo {
    width: 80px;
    aspect-ratio: 1/0.8;
}

.footer-top .foot-about .content {
    width: calc(100% - 80px);
    padding-left: 20px;
    font-size: 0.9rem;
    text-align: justify;
    font-weight: bold;
}

.footer-top .foot-links .head {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-top .foot-links a {
    display: block;
    margin-bottom: 5px;
    transition: all 0.3s linear;
}

.footer-top .foot-links a:hover {
    color: black;
}

.footer-top .newsletter .head {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-top .newsletter .content {
    font-size: 0.85rem;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.footer-top .newsletter .group-input {
    display: flex;
    align-items: center;
}

.footer-top .newsletter .group-input input {
    width: calc(100% - 80px);
    margin: 0;
    border-radius: 0;
    height: 36px;
}

.footer-top .newsletter .group-input button {
    width: 80px;
    height: 36px;
    border: 0;
    background: var(--theme1);
    color: white;
    font-weight: 300;
}

.footer-bottom {
    padding: 10px 0;
    background: black;
}

.footer-bottom .copyright {
    font-size: 0.8rem;
    text-align: center;
    color: white;
}

.footer-bottom .copyright a {
    color: var(--theme2);
}




/* ==========================================================
                    BREADCRUMB
========================================================== */
.breadcrumb-area {
    padding: 170px 0 25px;
    border-bottom: 2px solid var(--theme1);
}

.breadcrumb-area .content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.breadcrumb-area .home a {
    width: 35px;
    height: 35px;
    background: var(--theme1);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    color: white;
    display: block;
}

.breadcrumb-area .current {
    background: var(--theme1);
    color: white;
    /* height: 35px; */
    padding: 0 20px;
    border-radius: 20px;
    line-height: 35px;
}

@media screen and (max-width:768px) {
    .breadcrumb-area {
        padding: 25px 0;
    }
}




/* ==========================================================
                        ABOUT AREA
========================================================== */
#about-area .about {
    position: relative;
    margin-bottom: 30px;
}

#about-area .about .image {
    max-width: 700px;
    aspect-ratio: 1/0.6;
}

#about-area .about .content-wrap {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    max-width: 600px;
    padding: 20px;
    background: #00000070;
}

#about-area .about .content-wrap .title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

#about-area .about .content-wrap .data {
    color: #ededed;
    text-align: justify;
}

#about-area .main-content {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: justify;
}

@media screen and (max-width:768px) {
    #about-area .about .content-wrap {
        position: static;
        transform: initial;
        max-width: initial;
    }

    #about-area .about .image {
        margin-bottom: 20px;
    }
}




/* ==========================================================
                    LEARN AND UPDATE
========================================================== */

#about-service .service-card {
    cursor: pointer;
    background: white;
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}

#about-service .service-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid grey;
    display: grid;
    place-items: center;
    color: var(--theme1);
    font-size: 1.3rem;
    margin: 0 auto 10px;
}

#about-service .service-card .title {
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}




/* ==========================================================
                        MAP AREA
========================================================== */
#map-area iframe {
    width: 100%;
    height: 400px;
    border: 5px solid var(--theme1);
}




/* ==========================================================
                        CLIENT GRID
========================================================== */
#client-grid .client-item {
    max-width: 200px;
    margin: 0px auto 20px;
    aspect-ratio: 1/1;
}

#client-grid .client-item img {
    object-fit: contain;
    object-position: center;
}




/* ==========================================================
                        CAREER AREA
========================================================== */
#career-area .career-form {
    padding: 20px;
    background: #fecc0087;
    min-height: 537px;
}

#career-area .career-form .head {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

#career-area .career-form .submit-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 35px;
}

#career-area .content-area .main-head {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

#career-area .content-area .benefit-card {
    padding: 15px;
    background: #2f28594d;
    margin-bottom: 20px;
}

#career-area .content-area .benefit-card .top {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#career-area .content-area .benefit-card .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid grey;
    text-align: center;
    line-height: 39px;
}

#career-area .content-area .benefit-card .title {
    width: calc(100% - 40px);
    padding-left: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

#career-area .content-area .benefit-card .content {
    text-align: justify;
    line-height: 1.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (max-width:991px) {
    #career-area .content-area .benefit-card .content {
        -webkit-line-clamp: initial;
    }
}




/* ==========================================================
                    FILTRATION SERVICES
========================================================== */
#filtration-services .image-grid {
    margin-bottom: 30px;
}

#filtration-services .image {
    border: 5px solid var(--theme1);
    aspect-ratio: 1/1;
    margin-bottom: 20px;
}

#filtration-services .content {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}




/* ==========================================================
                    CHEMICAL CLEANING
========================================================== */
#chemical-cleaning .image-grid {
    margin-bottom: 30px;
}

#chemical-cleaning .image {
    border: 5px solid var(--theme1);
    aspect-ratio: 1/1;
}

#chemical-cleaning .content {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}




/* ==========================================================
                    CHEMICAL LUBRICATION
========================================================== */
#chemical-lubrication .image-grid {
    margin-bottom: 30px;
}

#chemical-lubrication .image-grid .image {
    border: 5px solid var(--theme1);
    aspect-ratio: 1/1;
}

#chemical-lubrication .content {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

#chemical-lubrication .inclusion>div {
    position: relative;
    background: #fee478;
    margin-bottom: 15px;
    padding: 5px 10px 5px 20px;
    font-weight: bold;
}

#chemical-lubrication .inclusion>div>div {
    width: 25px;
    height: 25px;
    background: var(--theme1);
    color: white;
    display: grid;
    place-items: center;
    position: absolute;
    left: -13px;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 50%;
    font-size: 0.9rem;
}




/* ==========================================================
                    CHEMICAL LUBRICATION
========================================================== */
#oil-analysis .image-grid {
    margin-bottom: 30px;
}

#oil-analysis .image-grid .image {
    border: 5px solid var(--theme1);
    aspect-ratio: 1/1;
}

#oil-analysis .content {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

#oil-analysis .testing-container .head {
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Phudu', cursive;
    text-align: center;
    margin-bottom: 20px;
}

#oil-analysis .testing-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

#oil-analysis .testing-list a {
    display: inline-block;
    background: #2f285959;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 30px;
    color: black;
}




/* ==========================================================
                    CHEMICAL LUBRICATION
========================================================== */
.testing-page-container .main-content {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

.testing-page-container .benefit-container .head {
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Phudu', cursive;
    text-align: center;
    margin-bottom: 20px;
}

.testing-page-container .benefit-container .benefit-list>div {
    position: relative;
    background: #fee478;
    margin-bottom: 15px;
    padding: 5px 10px 5px 20px;
    font-weight: bold;
}

.testing-page-container .benefit-container .benefit-list>div>div {
    width: 25px;
    height: 25px;
    background: var(--theme1);
    color: white;
    display: grid;
    place-items: center;
    position: absolute;
    left: -13px;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 50%;
    font-size: 0.9rem;
}