@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');

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

body {
    background-color: #f1f1f1;
}

nav {
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    align-items: center;
    background-color: #3D7A99;
    color: #333;
    padding: 10px 50px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

nav #nav-logo {
    width: 50px;
    height: 50px;
}

nav #nav-logo-name {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li {
    margin: 10px;
}

nav ul li img {
    display: block;
    margin: 0 auto;
    width: 25px;
    height: 25px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #333;
}


footer .soc-med {
    padding: 20px 25px;
    background-color: #3D7A99;
}

footer .soc-med .footer-logo img {
    height: 40px;
}

.icons a {
    cursor: pointer;
}

.soc-med {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.soc-med div {
    text-align: center;
}

.soc-med .icons a img {
    width: 25px;
}

.soc-med .icons a:not(:last-child) img {
    margin-right: 20px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: #0C415C;
    color: #fff;
}

.credits {
    background-color: #3D7A99;
    padding: 10px 25px;
    color: #fff;
}


/* HOME */
#home .hero {
    min-height: 500px;
    background: url(../images/home-banner.jpg) center/cover no-repeat;
    padding: 40px 25px;

    display: flex;
    /* justify-content: start; */
    align-items: center;
}

#home .hero-text {
    color: #fff;
}

#home .hero-text h1 {
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
}

#home .hero-text p {
    font-size: 2rem;
    color: #fff;
}

#home .cards {
    padding: 100px 25px 20px;
    background-color: #CCEBFF;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

#home .card {
    background-color: #0C415C;
    width: 30%;
    min-width: 300px;
    color: #fff;
    margin: 10px;
    padding: 20px;
    padding-top: 80px;
    position: relative;

    margin-bottom: 60px;

    transition: all 0.3s ease;
}

#home .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

#home .cards .card img {
    width: 120px;
    border-radius: 50%;

    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

#home .card a {
    /* button style */
    display: inline-block;
    padding: 8px 20px;
    background-color: #1f628e;
    color: #debe8b;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

#home .card .button {
    text-align: center;
}

#home .content {
    background-color: #0C415C;
    padding: 60px 0;
}

#home .content h1 {
    background-color: #CCEBFF;
    padding: 20px 25px;
    font-size: 2.5rem;
    color: #0C415C;
    text-align: center;
}

#home .info {
    padding: 20px 25px 0;
}

#home .info .text p {
    margin-bottom: 24px;
}

#home .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

#home .row.reverse {
    flex-direction: row-reverse;
}

#home .col {
    width: 40%;
    margin: 10px;
}

#home .image-col {
    text-align: end;
}

#home .row.reverse .image-col {
    text-align: start;
}

#home .image-col img {
    width: 80%;
    max-width: 400px;
}

#home .row.reverse .text {
    text-align: end;
}

#home .text h2 {
    font-size: 2rem;
    color: #fff;
}

#home .text p {
    font-size: 1rem;
    color: #fff;
}

/* ABOUT */
#about .hero {
    min-height: 500px;
    background: url(../images/about-banner.jpg) center/cover no-repeat;
    padding: 40px 25px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#about .hero-text {
    color: #fff;
}

#about .hero-text h1 {
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
}

#about .hero-text h3 {
    font-size: 2.5rem;
    color: #fff;
}

#about .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    background-color: #0C415C;
}

#about .col-45 {
    width: 45%;
    display: flex;
}

#about .col-55 {
    width: 55%;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0C415C;
}

#about .image-col {
    height: 100%;
}

#about .image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#about .text h2 {
    background-color: #CCEBFF;
    color: #0C415C;
    padding: 4px 25px;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

#about .text p {
    font-size: 1.2rem;
    color: #fff;
    padding: 10px 25px;
}

#about .text .image {
    width: 70%;
    margin: 40px auto 10px;
    display: none;
}

#about .text img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;

}

#about .reverse .col-55 {
    background-color: #CCEBFF;
}

#about .reverse .text h2 {
    background-color: #0C415C;
    color: #fff;
}

#about .reverse .text p {
    color: #0C415C;
}


/* IMPACT */
#impact section {
    background: url(../images/background-impact.jpg) center/cover no-repeat;
}

#impact .container {
    padding: 100px 25px 20px;
}

#impact .title {
    color: #0C415C;
    text-align: center;
}

#impact .title h1 {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 800;
}

#impact .title h4 {
    font-size: 1.8rem;
    font-weight: 600;
}

#impact .things {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 52px;
}

#impact .card {
    background-color: #0C415C;
    width: 80%;
    min-width: 300px;
    max-width: 700px;
    color: #fff;
    margin: 10px;
    padding: 40px;
    margin-bottom: 60px;

    transition: all 0.3s ease;
}

#impact .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* CONTACT */
#contact .hero {
    min-height: 500px;
    background: url(../images/contact-banner.jpg) center/cover no-repeat;
    padding: 40px 25px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#contact .hero-text {
    color: #fff;
}

#contact .hero-text h1 {
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
}

#contact .hero-text h3 {
    font-size: 2.5rem;
    color: #fff;
}

#contact .row {
    padding: 64px 0 0;
    background-color: #CCEBFF;
}

#contact .row {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

#contact .row .box {
    width: 45%;
    margin: 10px;
    max-width: 400px;
    height: 100%;
}

#contact .row .box .top {
    padding: 8px 20px;
    margin-bottom: 70px;
    background-color: #eecc96;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0C415C;
}

#contact .row .box .card {
    background-color: #0C415C;
    border-radius: 30px;
    padding: 60px 20px 15px;
    position: relative;
    color: #fff;
    text-align: center;
}

#contact .row .box .card img {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    border-radius: 50%;
}

#contact .row .box .card button {
    margin-top: 12px;
    padding: 8px 30px;
    border-radius: 30px;
    border: none;
    background-color: #ffbd59;
    color: #fff;
    cursor: pointer;
}

#contact .info {
    background-color: #CCEBFF;
    padding: 64px 0;
}

#contact .info .title {
    background-color: #eecc96;
    padding: 12px 24px;
    font-size: 1.8rem;
    color: #0C415C;
    text-align: center;
    font-weight: 800;
    margin-bottom: 32px;
}

#contact .info .container {
    display: flex;
    justify-content: center;
}

#contact .details {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    margin-bottom: 24px;
    padding: 0 25px;
}

#contact .details img {
    width: 60px;
    margin-right: 16px;
}

#contact .details p {
    font-size: 1.2rem;
    word-wrap: break-word;
    word-break: break-all;
}