@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*,
 ::after,
 ::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", system-ui;
}

a,
button {
    text-decoration: none;
    outline: none;
    transition: all 300ms ease-in-out;
}

input,
select,
textarea {
    width: 100%;
    outline: none;
    transition: all 300ms ease-in-out;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    height: auto;
}

img {
    vertical-align: middle;
    max-width: 100%;
    transition: all 300ms ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 400;
}

p {
    font-size: 14px;
    line-height: 21px;
    color: #222222;
}

p:last-child {
    margin-bottom: 0;
}

.cs-container {
    display: flex;
    height: 100vh;
}

.cs-container>* {
    width: 50%;
    flex-shrink: 0;
}

.cs-leftside {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 30px;
}

.cs-data {
    margin-block: auto;
    max-width: 520px;
    text-align: center;
    padding-top: 50px;
}

.cs-image {
    background-color: #6EAB89;
}

.cs-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom left;
}

.cs-image img:last-child {
    display: none;
}

.cs-title {
    margin-bottom: 60px;
}

.cs-title p {
    position: relative;
    z-index: 0;
    text-align: center;
    margin: 0 0 20px;
    line-height: 1;
}

.cs-title p::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #00000080;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.cs-title p span {
    display: inline-block;
    font-size: clamp(24px, 3.5vw, 30px);
    font-weight: 700;
    text-transform: capitalize;
    padding-inline: 25px;
    background-color: #ffffff;
}

.cs-title aside {
    font-size: clamp(75px, 6.5vw, 120px);
    font-weight: 900;
    line-height: 1;
    color: #4F9C66;
    text-transform: uppercase;
}

.cs-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cs-border {
    width: 125px;
    height: 1px;
    background-color: #00000080;
}

.cs-content>aside {
    font-size: clamp(20px, 3.5vw, 24px);
    font-weight: 700;
    line-height: 1;
    color: #222222;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cs-content>aside a {
    color: #222222;
}

.cs-content>aside>span {
    font-size: 18px;
    font-weight: 400;
    color: #555555;
    text-transform: capitalize;
}

.cs-content>p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #444;
    max-width: 420px;
}

@media screen and (max-width: 1199px) {
    .cs-container {
        height: auto;
        flex-direction: column;
    }
    .cs-container>* {
        width: 100%;
    }
    .cs-image {
        padding-top: 50px;
    }
    .cs-image img:first-child {
        display: none;
    }
    .cs-image img:last-child {
        display: block;
        max-width: 600px;
    }
}

@media screen and (max-width: 575px) {
    .cs-leftside {
        padding-inline: 20px;
        padding-bottom: 50px;
    }
}