/* Add styles here */
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Bold.woff2') format('woff2'),
    url('fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Light.woff2') format('woff2'),
    url('fonts/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-BoldItalic.woff2') format('woff2'),
    url('fonts/Roboto-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Italic.woff2') format('woff2'),
    url('fonts/Roboto-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Black.woff2') format('woff2'),
    url('fonts/Roboto-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-ThinItalic.woff2') format('woff2'),
    url('fonts/Roboto-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-BlackItalic.woff2') format('woff2'),
    url('fonts/Roboto-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-MediumItalic.woff2') format('woff2'),
    url('fonts/Roboto-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-LightItalic.woff2') format('woff2'),
    url('fonts/Roboto-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Thin.woff2') format('woff2'),
    url('fonts/Roboto-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.woff2') format('woff2'),
    url('fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Medium.woff2') format('woff2'),
    url('fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
}

sup {
    line-height: 0.5;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #fff;
    background-color: #236348;
    text-align: left;
    line-height: 1.2;
    overflow-x: hidden;
}

.container {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 0;
    align-items: center;
    /*max-width: 1440px;*/
}

a {
    text-decoration: none;
    color: #fff;
}

section {
    padding: 0 8%;
}

.flex-collumns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;

}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 48px;
    gap: 64px;
}

.logo {
    height: 54px;
    width: auto;
}

.dots {
    position: absolute;
    top: 14%;
    right: 8%;
}

.dots2 {
    position: absolute;
    top: 3500px;
    left: 25%;

}

.green {
    color: #236348 !important;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
    cursor: pointer;
}

.highlight:hover::after {
    width: 100%;
}


.highlight-green::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #236348;
    transition: width 0.3s ease;
    cursor: pointer;
}

.highlight-green:hover::after {
    width: 100%;
}

#hero {
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero {
    background: url("./Assets/dots.svg") right center no-repeat;
    padding: 100px 0;
}

.hero-content {
    /*padding-top: 100px;*/
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.semibold {
    font-weight: 600;
}

.eco-text,
.popup {
    max-width: 320px;
}

.popup,
.mw-640 li,
#communication-content li,
.about p {
    padding-bottom: 16px;
}

.mw-480 {
    max-width: 480px;
}

nav ul {
    list-style-type: none;
}

nav li {
    display: inline-block;
    margin-right: 16px;
    padding: 8px;
}

.underline {
    text-decoration: underline;
}

.primary-btn {
    background-color: transparent;
    border: 2px solid #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 16px;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}

.primary-btn span {
    color: #fff;
    transition: color 0.3s ease;
    z-index: 2;
}

.primary-btn:hover span {
    color: #236348;
}

.plus-btn {
    fill: #fff;
}

.arrow-btn {
    fill: none;
    stroke: #fff;
    height: 20px;
    stroke-width: 4px;
    width: 20px;
    transition: stroke 0.3s ease;
    z-index: 2;
}

.rotate-90 {
    rotate: 90deg;
}

.primary-btn:hover .arrow-btn {
    stroke: #236348;
}

.primary-btn:hover .plus-btn {
    fill: #236348;
}

.primary-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transition: width 0.3s ease;
    z-index: 0;
}

.primary-btn:hover::before {
    width: 100%;
}

.with-bullet {
    position: relative;
    padding-left: 20px;
}

.with-bullet::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 24px;
}

h1 {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 400;
    max-width: 1260px;
    /*padding-top: 8vh;*/
}

h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    padding-bottom: 24px;
}

h3 {
    font-size: 32px;
    font-weight: 400;
    text-align: left;
}

h4 {
    font-size: 20px;
    font-weight: 500;
}

.popup {
    display: none;
}

.eco-text {
    position: relative;
}

.pointer {
    cursor: pointer;
}

.highlight {
    position: relative;
    z-index: 1;
}

.hover-text:hover + #popup {
    display: flex;
    flex: row;
}

.about {
    max-width: 480px;
}

.mission p {
    padding: 8px 0 8px 0;
}


#about-us, #membership, #contact {
    margin-top: 144px;
}

.mission,
.why-now,
.mw-640 {
    max-width: 640px;
}


.tabs {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    border-bottom: 2px solid #fff;
}

.tab {
    cursor: pointer;
    flex-grow: 1;
    text-align: center;
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-right: 2px solid #fff;
}

.tab:first-child {
    padding-left: 0;
}


.tab svg {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

.active-tab svg {
    transform: rotate(45deg);
}

.content {
    display: none;
}

.p-xl {
    max-width: 540px;
    font-size: 24px;
    font-weight: 500;
    padding-top: 48px;
}

.active {
    display: block;
}

.rotate {
    transform: rotate(180deg);
}

.board-member {
    gap: 16px;
    display: flex;
    flex-direction: column;
    max-width: 580px;
}

.expandable {
    overflow: hidden;
    max-height: 240px;
}

#countries {
    background-color: #fff;
    padding: 144px 8%;
    margin: 120px 0;
}


.countries {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    color: #236348;
}

.countries h2 {
    padding: 0;
    margin: 0;
}

.countries p {
    font-size: 24px;
    font-weight: 500;
}

.mw-640 {
    flex: 40%;
}

.pb-96 {
    padding-bottom: 96px;
}


.card {
    height: 342px;
    width: 331px;
    padding: 24px;
    border: 1px solid #fff;
}

.flex-card {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.top {
    justify-content: flex-start;
}

.mid {
    justify-content: center;
}

.bot {
    justify-content: flex-end;
}

.gap-64 {
    gap: 64px
}

.card h3 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 400;
}

.pt-72 {
    padding-top: 72px;
}

.icon {
    height: auto;
    width: 24px;
}

.contact-card {
    display: flex;
    gap: 16px;
    flex-direction: column;

}

.contact-card img {
    height: 36px;
    width: 42px;
}

footer {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 80px;
    padding: 80px 8% 36px 8%;
}


footer nav {
    color: #236348;
}

.upper, .down {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.down {
    gap: 32px;
    justify-content: center;
}


.down ul li a {
    color: #236348;
}

.social-icons {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
}

#services {
    padding: 120px 8%;
}

.services {
    border-top: 2px solid #fff;
    display: flex;
    flex-direction: row;
    margin-top: 64px;
    justify-content: space-between;
    gap: 64px
}

.services-left, .services-right {
    flex: 40%;
}

.service-card {
    cursor: pointer;
    flex-grow: 1;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 24px;
    border-bottom: 2px solid #fff;
}

.mt-32 {
    margin-top: 32px;
}

.pl-0 {
    padding-left: 0;
}

.service-card svg {
    height: 38px;
    width: 48px;
}

@media screen and (max-width: 1280px) {
    .mw-640, .board-member, .mission {
        max-width: 480px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 32px;
        text-align: left;
    }

    h4 {
        font-size: 28px;
        padding-bottom: 4px;
        max-width: 75%;
    }

    #hero h1 {
        font-size: 58px;

    }

    .hero-content {
        padding-top: 16px;
    }
}

@media screen and (max-width: 1024px) {
    section, header, footer {
        padding: 64px 3% 16px 3%;
    }

    h1 {
        font-size: 64px;
        max-width: 95%;
    }

}

/* Mobile Responsiveness */
@media screen and (min-width: 374px) and (max-width: 768px) {

    nav {
        display: none;
    }

    p, li, a {
        font-size: 18px;
    }

    header, footer {
        margin: 0;
        padding: 24px 16px;
    }

    .logo {
        height: 48px;
    }

    .eco-text, .popup {
        max-width: none;
    }

    .contact-nav {
        display: none;
    }

    section {
        padding: 0 16px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 28px;
        text-align: left;
    }

    h4 {
        font-size: 24px;
        padding-bottom: 4px;
        max-width: 75%;
    }

    #hero h1 {
        font-size: 34px;
        padding: 32px 0;
        line-height: 1.2;
    }

    #hero {
        height: auto;
    }

    .dots, .dots2 {
        display: none;
    }

    .hero {
        background: #236348;
    }

    .mission img {
        max-width: 42px;
    }

    .arrow-container {
        display: none;
    }

    #popup {
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .hero-content {
        padding-top: 48px;
    }

    .tabs, .services, .flex-collumns, .row, .countries {
        flex-direction: column;
    }

    .flex-collumns {
        gap: 64px;
    }

    .tabs {
        border-bottom: none;
    }

    .countries p {
        font-size: 20px;
    }

    .tab {
        padding: 16px 16px 16px 0;
        border-right: none;
        border-bottom: 2px solid white;
    }

    #countries, #services {
        padding: 80px 16px;
    }

    .countries, .flex-collumns {
        gap: 20px;
    }

    .tabs, .countries {
        text-align: left;
    }

    .countries {
        align-items: flex-start;
    }

    .list-m {
        padding-left: 16px;
    }

    .services-left, .services-right {
        flex: 100%;
    }

    .services {
        gap: 0;
        margin-top: 32px;
    }

    .card {
        width: inherit;
    }

    .flex-collumns img {
        width: 25%;
    }

    .pb-96 {
        padding-bottom: 48px;
    }

    .contact-card {
        padding-bottom: 32px;
    }

    .contact-card img {
        width: 36px;
    }

    .down {
        justify-content: flex-start;
    }

    .down p {
        font-size: 16px;
        max-width: 220px;
    }

    .icon {
        height: auto;
        width: 24px;
    }

    #services {
        padding-bottom: 0;
    }
}
