@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "Hind Siliguri", sans-serif;
}

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #161616;
}

section .circlehome {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e51e2a;
    clip-path: circle(70% at right -20%);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    position: relative;
    max-width: 150px;
}

header .navigation {
    position: relative;
    display: flex;
}

header .navigation li {
    list-style: none;
}

header .navigation li a {
    display: inline-block;
    color: white;
    font-weight: 500;
    text-decoration: none;
    margin-left: 50px;
}

.content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: left;
}

.content .textbox {
    position: relative;
    max-width: 700px;
    margin-right: 20px;
}

.content .textbox h2 {
    color: white;
    font-size: 2em;
    margin-bottom: 20px;
    line-height: 1.4em;
    font-weight: 700;
}

.content .textbox p {
    color: white;
    font-size: 1.2em;
    padding-top: 20px;
    margin-bottom: 10px;
    line-height: 1.4em;
}

.content .textbox a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background: #e51e2a;
    color: white;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-decoration: none;
}

.content .mission h2 {
    color: white;
    font-size: 2em;
    padding-top: 50px;
    margin-bottom: 10px;
    line-height: 1.4em;
    font-weight: 700;
}

.content .mission ul {
    color: white;
    font-size: 1.2em;
    padding-top: 20px;
    margin: 20px;
    line-height: 1.4em;
    font-weight: 500;
}

.social {
    position: absolute;
    margin-top: 20px;
    bottom: 20px;
    left: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social li {
    list-style: none;
}

.social li a {
    display: inline-block;
    margin-left: 15px;
    background: #222;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
}

.social li a:hover {
    background: #e51e2a;
    transform: translateY(-10px);
}

.social li a img {
    filter: invert(1);
    transform: scale(0.5);
    height: 50px;
    width: 50px;
}

@media (max-width: 691px) {
    header {
        padding: 40px;
    }
    section {
        padding: 150px 40px;
    }
    .social {
        left: 40px;
    }
    .content .textbox {
        max-width: 100%;
    }
    header .navigation {
        display: none;
    }
    header .navigation.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #e51e2a;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }
    header .toggle {
        position: relative;
        width: 30px;
        height: 30px;
        background: url(/img/menu.png);
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
        z-index: 10000;
        filter: invert(1);
    }

    header .toggle.active {
        position: fixed;
        right: 40px;
        background: url(/img/close.png);
        background-size: 25px;
        background-repeat: no-repeat;
        background-position: center;
        filter: invert(1);
    }

    header .navigation li a {
        margin: 10px 0;
        font-weight: 700;
        font-size: 1.5em;
    }
}
