html {
    font-size  : 10px;
    font-family: sans-serif;
}

body {
    background-color: #2e2d38;
    overflow-x      : hidden;
}

* {
    padding        : 0;
    margin         : 0;
    text-decoration: none;
    list-style     : none;
}

hr {
    height    : 0px;
    border    : none;
    border-top: 1px solid darkgray;
}

input {
    width           : 90%;
    font-size       : 1.4rem;
    padding         : 2rem;
    color           : white;
    border          : 1px solid #cccccc;
    background-color: #2e2d38;
    outline         : none;
    box-sizing      : border-box;
    margin-bottom   : 1rem;
}

input:focus {
    border: 1px solid #2779f5;
}

nav {
    display        : flex;
    justify-content: space-around;
    height         : 88px;
    align-items    : center;
}

nav ul {
    display        : flex;
    width          : 40%;
    justify-content: space-between;
    margin-left    : 400px;
    margin-top     : 15px;
}

nav ul li a {
    font-family: 'MontserratBold';
    color      : white;
    font-size  : 1.3vw;
}

.logo img {
    width: 80%;
}

a.active,
a:hover {
    color: #2779f5;
}

.submit-btn {
    margin       : 30px 0 85px 0;
    height       : 60px;
    width        : 210px;
    border-radius: 30px;
    background   : linear-gradient(to right, #2779f5, rgb(171, 33, 230));
    border       : none;
}

.submit-txt {
    font-family: 'MontserratBold';
    font-size  : 20px;
    color      : #fff;
}

.content-box {
    display        : flex;
    flex-direction : row;
    justify-content: flex-start;
    padding-left   : 100px;
    padding-top    : 40px;
}

.content {
    display        : flex;
    flex-direction : column;
    justify-content: flex-start;
}

.content-image {
    border-radius: 50%;
    height       : 250px;
    margin-right : 3em;
}

.content-title {
    font-family: "MontserratBold";
    color      : #fff;
    font-size  : 32px;
}

.content-description {
    margin-bottom: 55px;
    font-size    : 16px;
    color        : #EFEFEF;
    font-family  : 'MontserratLight';
}

.content-description:hover {
    color: #EFEFEF;
}

.content-projectType {
    background-color: transparent;
    color           : #fff;
    height          : 30px;
    width           : 95px;
    border          : 1px solid #EFEFEF;
    border-radius   : 30px;
    margin          : 18px 0px 26px 0px;
    font-size       : 12.5px;
    font-family     : 'MontserratLight';
}

.content p {
    margin-bottom: 14.4px;
    color        : #fff;
    font-size    : 1.4vw;
    line-height  : 2vw;
    width        : 90%;
    font-family  : 'MontserratLight';
}

.ecosystem-page .back {
    display        : flex;
    flex-direction : row;
    justify-content: flex-start;
    align-items    : center;
    margin-bottom  : 2rem;
    margin-top     : 3rem;
}

.ecosystem-page .back img {
    margin-left: 90px;
    transform  : rotate(90deg);
}

.ecosystem-page .back div {
    font-family: 'Montserrat', sans-serif;
    color      : #EFEFEF;
    font-size  : 2.3rem;
    margin-left: 2rem;
    opacity    : 0.8;
    cursor     : pointer;
}

.footer {
    display        : flex;
    flex-direction : row;
    align-items    : stretch;
    justify-content: space-between;
    box-sizing     : border-box;
    width          : 100%;
}

.footer-logo {
    margin-left: 120px;
}

.footer-logo img {
    width: 80%;
}

.social {
    display        : flex;
    flex-direction : column;
    justify-content: space-evenly;
    box-sizing     : border-box;
}

.social h4 {
    color         : white;
    font-size     : 18px;
    margin-left   : 160px;
    letter-spacing: 1px;
    font-family   : 'Montserrat';
}

.subscribe {
    display       : flex;
    flex-direction: column;
    margin-left   : 13em;
}

.subscribe p {
    color        : white;
    margin-top   : 60px;
    margin-right : 80px;
    margin-bottom: 4rem;
    font-size    : 22px;
    font-family  : 'MontserratMedium';
}

.subscribe-btn {
    margin       : 30px 5px;
    height       : 60px !important;
    width        : 200px !important;
    font-family  : 'MontserratBold';
    font-size    : 20px;
    color        : #fff;
    border-radius: 30px;
    background   : linear-gradient(to right, #2779f5, rgb(171, 33, 230));
    border       : none;
    margin-bottom: 85px;
}

.social .social-media-menu {
    width      : 100%;
    margin-left: 9rem;
}

.social .social-media-item {
    background-color: #2779f5;
}

/*  responsive breakpoint  */

/*  Mobile  */
@media screen and (max-width: 576px) {

    html,
    body {
        overflow-x: hidden;
    }

    body {
        position: relative
    }

    nav ul {
        position        : absolute;
        right           : 0;
        top             : -100;
        height          : 85vh;
        flex-direction  : column;
        align-items     : center;
        justify-content : space-evenly !important;
        background-color: #2779f5;
        opacity         : 0;
        z-index         : -1;
        transform       : translateX(100%);
        transition      : all 0.5s;
    }

    nav ul li a {
        font-family: 'MontserratBold';
        color      : white;
        font-size  : 3vw;
    }

    nav ul.slide {
        opacity  : 1;
        transform: translateX(0);
    }

    hr {
        width: 600px;
    }

    .eco-header h1 {
        font-size   : 55px;
        margin-top  : 40px;
        margin-right: 120px;
        font-family : 'MontserratBold';
    }

    .ecosystem-page .back img {
        margin-left: 4em !important;
    }

    .ecosystem-page .back div {
        font-size: 1.5rem !important;
    }

    .content-box {
        padding-left  : 0;
        padding       : 20px;
        margin        : 0 1em;
        flex-direction: column;
    }

    .content-image {
        width : 200px !important;
        height: 200px !important;
    }

    .content-title {
        margin-top: 1em;
    }

    .content p {
        font-size  : 1.5em;
        line-height: 1.5em;
        width      : 330px;
    }

    .footer {
        flex-direction: column-reverse;
        margin        : 0 2em;
    }

    .footer .subscribe {
        margin: 0;
    }

    .subscribe p {
        margin-right: 2em;
    }

    .subscribe-btn {
        margin-bottom: 2em;
    }

    .footer-logo {
        margin: 0;
    }

    .footer-logo img {
        width: 60%;
    }

    .social {
        margin-left: 1em;
    }

    .social-media-menu {
        margin-left: 0 !important;
    }

    .social h4 {
        margin: 1.5em 0;
    }
}

/*  Tablet  */

@media screen and (min-width: 481px) and (max-width:820px) {
    nav ul {
        width      : 35%;
        margin-left: 90px;
        margin-top : 15px;
    }

    .logo img {
        width: 60% !important;
    }

    .content-box {
        padding-left: 50px !important;
    }

    .content-image {
        height      : 200px;
        margin-right: 3em;
    }

    .content p {
        line-height: 2.3vw;
        font-size  : 2vw;
    }

    .ecosystem-page .back div {
        font-size: 1.8rem;
    }

    .ecosystem-page .back img {
        margin-left: 30px;
    }

    .footer-logo {
        margin-left: 50px;
    }

    .footer-logo img {
        width: 70%;
    }

    .social h4 {
        font-size  : 15px;
        margin-left: 60px;
    }

    .subscribe {
        margin-left: 35px;
    }

    .social .social-media-menu {
        margin-left: 15px
    }

    .subscribe p {
        font-size: 17px;
    }

    .submit-txt {
        font-size: 17px;
    }
}

/* Laptop  */

@media screen and (min-width: 821px) and (max-width:1024px) {
    nav ul {
        display        : flex;
        width          : 35%;
        justify-content: space-between;
        margin-left    : 90px;
        margin-top     : 15px;
    }

    .logo img {
        width: 60% !important;
    }

    .content-image {
        height      : 200px;
        margin-right: 3em;
    }

    .content p {
        font-size: 1.8vw;
    }

    .ecosystem-page .back div {
        font-family: 'Montserrat', sans-serif;
        color      : #EFEFEF;
        font-size  : 1.8rem;
        margin-left: 2rem;
        opacity    : 0.8;
        cursor     : pointer;
    }

    .footer-logo {
        margin-left: 50px;
    }

    .footer-logo img {
        width: 70%;
    }

    .social h4 {
        font-size  : 15px;
        margin-left: 60px;
    }

    .subscribe {
        margin-left: 35px;
    }

    .social .social-media-menu {
        margin-left: 15px
    }

    .subscribe p {
        color      : white;
        font-size  : 20px;
        font-family: 'MontserratMedium';
    }

    .submit-btn {
        margin       : 30px 0 85px 0;
        height       : 60px;
        width        : 210px;
        border-radius: 30px;
        background   : linear-gradient(to right, #2779f5, rgb(171, 33, 230));
        border       : none;
    }

    .submit-txt {
        font-size: 17px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}