* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* common css */

:root {
    --white-color: white;
    --black-color: black;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    margin-bottom: 15px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 20px;
}

p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.heading-section h2 {
    text-align: center;
    font-size: 35px;
}

p:last-child {
    margin-bottom: 0;
}

ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
}

span {
    display: inline-block;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: green;
}

.section-heading h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    color: green;
}

.section-heading p {
    font-size: 22px;
    color: green;
    margin-bottom: 0;
}

.btn.btn-red {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 30px;
    background-color: red;
    color: white;
    border-radius: 10px;
}

.btn.btn-red img {
    max-width: 40px;
    margin-right: 15px;
}

section {
    padding: 60px 0;
}

.body-section ul li {
    padding-left: 15px;
    margin-bottom: 10px;
    position: relative;
}

.body-section ul li::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 14px;
    left: 0;
    background-color: #000;
    border-radius: 50%;
}

.body-section h2 {
    font-size: 25px;
    margin-top: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.body-section p b {
    font-weight: 600;
}

@media (max-width:768px) {
    .heading-section h2 {
        font-size: 25px;
    }

    p {
        font-size: 16px;
    }

    .body-section h2 {
        font-size: 20px;
        margin-top: 15px;
        font-weight: 600;
        margin-bottom: 4px;
    }
}