@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --color-1: #fff;
    --color-2: #000;
    --color-3: #233e50;
    --color-4: #65e4a3;
    --color-5: #0a2640;
}
body {
    font-family: "poppins";
}
.container {
    width: 100%;
    margin: 0 auto;
}

/* nav-bar styles goes here | nav-bar styles goes here */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-3);
    padding: 1rem 8rem;
}
.nav-image a img {
    width: 150px;
}
.nav-menu ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 5rem;
    font-size: 1.1em;
    text-transform: capitalize;
    margin-left: 27rem;
}
.nav-menu ul li {
    position: relative;
}
.nav-menu ul li::after {
    content: '';
    height: 0.11rem;
    width: 0;
    background-color: var(--color-1);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}
.nav-menu ul li:hover::after {
    width: 100%;
}
.nav-menu ul li a {
    text-decoration: none;
    color: var(--color-1);
}
.nav-btn a {
    text-transform: capitalize;
    text-decoration: none;
    font-size: 1.1em;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    color: var(--color-2);
    background-color: var(--color-4);
    transition: .3s ease;
}
.nav-btn a:hover {
    background-color: var(--color-1);
    color: var(--color-3);
}

/* section-1 styles goes here | section-1 styles goes here */
.section-1 {
    background-color: var(--color-5);
    height: 85vh;
    padding: 6rem 8rem;
    z-index: -1;
}
.section-1-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}
.section-1-texts h6 {
    color: var(--color-1);
    text-transform: capitalize;
    font-size: 1.3em;
    font-weight: 400;
}
.section-1-texts h1 {
    color: var(--color-1);
    text-transform: capitalize;
    font-size: 3.6em;
    line-height: 1.2em;
}
.section-1-texts p {
    color: var(--color-1);
    font-size: 0.8em;
    opacity: 0.5;
    padding: 1rem 19rem;
}

/* section-2 styles goes here | section-2 styles goes here */
.section-2 {
    padding: 0 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    grid-gap: 2rem;
    position: absolute;
    top: 550px;
    width: 50%;
    justify-content: center;
}
.section-2-grid> :nth-child(2) {
    grid-row: span 2;
}
.section-2-grid> :nth-child(5) {
    margin-top: 15px;
}

/* section-3 styles goes here | section-3 styles goes here */
.section-3 {
    margin-top: 37rem;
    margin-bottom: 6rem;
    padding: 0 13.5rem;
    display: flex;
    flex-direction: column;
}
.section-3 h6 {
    color: var(--color-2);
    text-transform: capitalize;
    font-size: 1.3em;
    font-weight: 400;
    margin-bottom: 1rem;
}
.section-3 h1 {
    color: var(--color-2);
    text-transform: capitalize;
    font-size: 3.5em;
    line-height: 1.2em;
    margin-bottom: 1.7rem;
}
.section-3 p {
    color: var(--color-2);
    font-size: 0.9em;
    margin-right: 25rem;
    text-align: justify;
    margin-bottom: 3rem;
}
.section-3-buttons {
    display: flex;
    flex-direction: row;
}
.btn-1 {
    border: 2px solid var(--color-4);
    background-color: var(--color-4);
    color: var(--color-2);
    border-radius: 25px;
    width: 10rem;
    height: 2.8rem;
    /* padding: 0.7rem 2rem; */
    font-size: 1.1em;
    margin-right: 2rem;
    transition: .42s ease;
}
.btn-1:hover {
    background-color: var(--color-1);
    border-color: var(--color-2);
}
.btn-2 {
    border: 2px solid var(--color-2);
    background-color: var(--color-1);
    color: var(--color-2);
    border-radius: 25px;
    width: 10rem;
    height: 2.8rem;
    /* padding: 0.7rem 2rem; */
    font-size: 1.1em;
    transition: .42s ease;
}
.btn-2:hover {
    background-color: var(--color-4);
    border-color: var(--color-4);
}

/* section-4 styles goes here | section-4 styles goes here */
.section-4 {
    padding: 7rem 10rem 4rem 10rem;
    background-color: var(--color-5);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sec-4-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sec-4-texts h6 {
    color: var(--color-1);
    text-transform: capitalize;
    font-size: 1.3em;
    font-weight: 400;
    margin-bottom: 0.7rem;
}
.sec-4-texts h1 {
    color: var(--color-1);
    text-transform: capitalize;
    font-size: 3.3em;
    line-height: 1.2em;
    margin-bottom: 1.7rem;
    text-align: center;
}
.sec-4-texts p {
    color: var(--color-1);
    font-size: 0.9em;
    text-align: center;
    margin: 0 15rem;
    margin-bottom: 4rem;
}
.sec-4-numbers {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 75%;
}
.cool {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cool h2 {
    font-size: 2.5em;
    color: var(--color-4);
}
.cool p {
    font-size: 1em;
    color: var(--color-1);
}

/* section-5 styles goes here | section-5 styles goes here */
.section-5 {
    padding: 4rem 10rem;
    padding-bottom: 6rem;
    display: flex;
    flex-direction: column;
}
.sec-5-texts h6 {
    color: var(--color-2);
    text-transform: capitalize;
    font-size: 1.3em;
    font-weight: 400;
    margin-bottom: 0.7rem;
}
.sec-5-texts h1 {
    color: var(--color-2);
    text-transform: capitalize;
    font-size: 3.3em;
    line-height: 1.2em;
    margin-bottom: 1.7rem;
}
.sec-5-texts p {
    color: var(--color-2);
    font-size: 0.9em;
    margin-right: 33rem;
    text-align: justify;
    margin-bottom: 4rem;
}
.sec-5-boxes {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    margin-left: 5rem;
}
.box img {
    margin-bottom: 1rem;
}
.box h6 {
    font-size: 1.2em;
    margin-bottom: 0.5rem;
    font-weight: 400;
}
.box p {
    font-size: 0.8em;
    opacity: 0.5;
}

/* section-6 styles goes here | section-6 styles goes here */
.section-6 {
    padding: 4rem 10rem 1rem 10rem;
    background-color: var(--color-5);
    display: flex;
    flex-direction: column;
}
.sec-6-texts h6 {
    color: var(--color-1);
    text-transform: capitalize;
    font-size: 1.3em;
    font-weight: 400;
    margin-bottom: 0.7rem;
}
.sec-6-texts h1 {
    color: var(--color-1);
    text-transform: capitalize;
    font-size: 3.3em;
    line-height: 1.2em;
    margin-bottom: 1.7rem;
}
.sec-6-texts p {
    color: var(--color-1);
    font-size: 0.9em;
    margin-right: 33rem;
    text-align: justify;
    margin-bottom: 6rem;
}
.sec-6-boxes {
    display: flex;
    flex-direction: column;
}
.box2 {
    background-color: var(--color-3);
    border-radius: 15px;
    margin-bottom: 4rem;
    margin-right: 10rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
.box2-img {
    margin-right: 5rem;
    padding: 0.5rem 0;
    padding-left: 2rem;
}
.box2-texts h6 {
    font-size: 1.5em;
    color: var(--color-1);
    font-weight: 400;
}
.box2-texts p {
    font-size: 0.9em;
    color: var(--color-1);
    opacity: 0.5;
}

/* footer styles goes here | footer styles goes here */
footer {
    padding: 4rem 10rem 2rem 10rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.main-texts {
    width: 20%;
}
.main-texts img {
    width: 150px;
    margin-bottom: 1.5rem;
}
.main-texts p {
    font-size: 1em;
    color: var(--color-2);
}
.other-texts {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.text-box h6 {
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 2rem;
}
.text-box ul {
    list-style: none;
}
.text-box ul li {
    margin-bottom: 1rem;
}
.text-box ul li a {
    text-decoration: none;
    font-size: 1em;
    color: var(--color-2);
    opacity: 0.5;
}
.text-box ul li a:hover {
    text-decoration: underline;
}