@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 {
    /* background-color: #1b3254; */
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
    font-family: "Poppins", system-ui;
    color: #222;
}

a,
button {
    text-decoration: none;
    outline: none;
    transition: all 300ms ease-in-out;
}
a:hover {
    color: #5F9447 !important;
} 

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 {
    margin-bottom: 20px;
}

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;
}
.logo {
    max-width: 400px;
    /* margin: 20px auto 0; */
}
.logo img {
    border-radius: 20px;
}
.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, 100px);
    font-weight: 900;
    line-height: 1;
    color: #5F9447;
    text-transform: uppercase;
}

.cs-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cs-border {
    width: 125px;
    height: 1px;
    background-color: #00000080;
}

.cs-content>aside {
    font-size: 18px;
    font-weight: 600;
    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;
}


.container {
    max-width: 1200px;
    padding-inline: 15px;
    margin: 0 auto;
    height: 100vh;
}
.about-data {
    /* text-align: left; */
    margin-bottom: 30px;
    /* border-bottom: 1px solid #ddd; */
    /* padding-bottom: 30px; */
    font-weight: 300;
}
.about-title {
    font-size: clamp(24px, 3.5vw, 30px);
    font-weight: 700;
    text-transform: capitalize;
    background-color: #ffffff;
    margin-bottom: 20px;
}
.contact {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 20px;
}
.contact>* {
    width: calc(50% - 15px);
    background: #fff;
    padding: 30px;
    box-shadow: 0 2px 16px rgba(0,0,0,.1);
    border-radius: 20px;
}
.address p {
    font-size: 18px;
    font-weight: 400;
    color: #222;
    text-transform: capitalize;
}
.address p span {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}
.phone-email {
    word-break: break-all;
}
.d-block {
    display: block;
}
.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-block: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}
ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}
ul.menu li a {
    font-size: 20px;
    color: #222;
}
ul.menu li a:hover, ul.menu li a.active {
    color: #5F9447;
}
.pb-30 {
    padding-bottom: 30px !important;
}
footer {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    padding-bottom: 20px;
}


@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;
    }
    
    .contact>* {
        width: 100%;
        padding: 30px;
    }
}

@media screen and (max-width: 575px) {
    .cs-leftside {
        padding-inline: 20px;
        padding-bottom: 50px;
    }
    .logo {    
        max-width: 300px;
    }
    .contact>* {
        padding: 20px;
    }
}