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

:root {
    --green: #1ED760;
    --gray: #919496;
    --header-height: 80px;
    --logo-height: 40px;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    font-size: 10px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

header {
    background-color: #000000;
    height: var(--header-height);
}

header .container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    height: 100%;
    margin: auto;
}

header .logo {
    display: flex;
}

header .logo img {
    height: var(--logo-height);
    align-self: center;
}

header .logo img:hover {
    cursor: pointer;
}

header nav ul {
    display: flex;
    height: 100%;
    justify-content: space-around;
    align-items: center;
}

header nav ul li {
    padding: 0 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

header nav ul li:hover {
    color: var(--green);
    cursor: pointer;
}

header nav.mobile-menu {
    display: none;
    align-self: center;
}

header nav.mobile-menu img {
    width: 25px;
    height: 25px;
}

section.banner {
    background-color: #2941AB;
    height: 120vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--green);
    background-image: url('./../images/main.svg');
    background-size: 175%;
    background-position: 46% 4%;
    background-repeat: no-repeat;
}

section.banner h1 {
    font-size: 12rem;
    line-height: 1.2;
}

section.banner p {
    font-size: 1.6rem;
    margin: 2rem 0;
    text-align: center;
}

section.banner button {
    background-color: var(--green);
    border: none;
    border-radius: 3rem;
    color: #2941AB;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1.8rem 2.7rem;
    margin: 2rem 0;
}

section.banner button:hover {
    cursor: pointer;
    transform: scale(104%, 104%);
}

footer {
    background-color: #000000;
}

footer section.container {
    width: 90%;
    margin: auto;
    padding: 6rem 0 4rem 0;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

footer .logo img {
    width: 70%;
}

footer .logo img:hover {
    cursor: pointer;
}

footer .links {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 2;
    justify-content: space-evenly;
}

footer .links ul li {
    font-size: 1.5rem;
    padding: 1.3rem;
}

footer .links ul li:hover {
    color: var(--green);
    cursor: pointer;
}

footer .links ul .heading {
    color: var(--gray);
    font-weight: 700;
    font-size: 1.3rem;
}

footer .links ul .heading:hover {
    color: var(--gray);
    cursor: text;
}

footer .social {
    flex-grow: 1;
    margin: 20px 0;
}

footer .social ul {
    display: flex;
    justify-content: center;
}

footer .social ul li {
    font-size: 2.6rem;
    background-color: #222326;
    border-radius: 50%;
    height: 5.5rem;
    width: 5.5rem;
    margin: 0 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .social ul li:hover {
    color: var(--green);
    cursor: pointer;
}

footer .location {
    width: 100%;
    margin-top: 10rem;
    display: flex;
    justify-content: flex-end;
    font-size: 1.2rem;
    color: var(--gray);
}

footer .location:hover {
    color: var(--green);
    cursor: pointer;
}

footer .location i {
    align-self: center;
}

footer .location span {
    padding: 0 1rem;
}

footer .extras {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .extras ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 45px 0 0;
}

footer .extras ul li {
    font-size: 1.1rem;
    color: var(--gray);
    padding: 0.5rem 1rem;
}

footer .extras ul li:hover {
    color: var(--green);
    cursor: pointer;
}

footer .extras span {
    font-size: 1.2rem;
    color: var(--gray);
    padding-right: 1rem;
    align-self: center;
}