@import url('./fonts/satoshi/index.css');

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

h1, h2, h3, h4, h5, p, span, a, button, li {
    font-family: 'Satoshi', sans-serif;
}

a {
	text-decoration: none;
}

button {
    background: transparent;
	cursor: pointer;
	border: none;
}

.wrapper {
	max-width: 1320px;
	padding: 0px 20px;
	margin: 0 auto;
	width: 100%;
    position: relative;
    z-index: 100;
}

/* Colors */

.bg-black {
    background-color: rgba(14, 14, 14, 1);
}

.bg-gray {
    background-color: rgba(24, 24, 27, 1);
}

/* End Colors */

/* Header */

.header {
    position: relative;
    z-index: 100;
}

.header .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.header .content .nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    grid-column-gap: 32px;
}

.header .content .nav .logo {
    height: 46px;
    width: auto;
}

.header .content .nav a {
    color: rgba(160, 160, 171, 1);
    font-weight: 500;
    font-size: 18px;
}

.header .content .nav a.active, .menuContent .content a.active {
    border-bottom: 1px solid white;
}

.header .content .auth {
    display: flex;
    align-items: center;
    grid-column-gap: 16px;
}

.header .content .auth a {
    border-radius: 12px;
    height: 48px;
    width: 166px;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column-gap: 14px;
    text-transform: uppercase;
}

.header .content .auth span {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.header .content .auth .login {
    border: 2px solid rgb(74, 74, 80)
}

.header .content .auth .login img {
    height: 18px;
    width: auto;
}

.header .content .auth .signup {
    background-color: rgb(2, 76, 187);
}

.header .content .auth .signup img {
    height: 24px;
    width: auto;
}

.header .menu {
    display: none;
}

.header .menu img {
    height: 24px;
    width: auto;
}

/* End Header */

/* Footer */

.footer {
    padding-top: 24px;
    padding-bottom: 24px;
    position: relative;
    z-index: 100;
}

.footer .top {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
} 

.footer .top .logo {
    height: 46px;
    width: auto;
}

.footer .content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer .content .lside {
    max-width: 562px;
    width: 100%;
}

.footer .content .lside .grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-top: 16px;
}

.footer .content .lside .grid img {
    height: auto;
    width: 100%;
}

.footer .content .lside .grid img:nth-child(9) {
    grid-column: span 2;
}

.footer .content h3 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.footer .content .rside h3 {
    margin-bottom: 4px;
}

.footer .content .rside {
    max-width: 570px;
    width: 100%;
}

.footer .content .rside .lists {
    display: flex;
    justify-content: space-between;
    max-width: 467px;
    width: 100%;
}

.footer .content .rside .list .item {
    margin-top: 12px;
}

.footer .content .rside .list .item a {
    color: rgb(115, 115, 115);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.footer .partners {
    margin-top: 40px;
}

.footer .partners .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-column-gap: 12px;
    margin-top: 16px;
}

.footer .partners .row img {
    width: 100%;
    height: auto;
}

.footer .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .bottom p {
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    color: white;
}

.footer .bottom .social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-column-gap: 24px;
}

.footer .bottom .social a {
    height: 24px;
    width: 24px;
}

.footer .bottom .social img {
    width: 100%;
}

/* End Footer */

/* Menu Content */

.menuContent {
    background-color: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    max-width: 200px;
    width: 100%;
    z-index: 1000;
    transition: 0.3s;
}

.menuContent.active {
    left: 0;
}

.menuContent .content {
    padding: 28px 0;
    display: flex;
    flex-direction: column;
    grid-row-gap: 15px;
}

.menuContent .content a {
    color: white;
}

@media screen and (max-width: 1200px) {
    .header .content .nav a, .header .content .auth {
        display: none;
    }

    .header .content .nav a:first-child {
        display: block;
    }

    .header .menu {
        display: block;
    }

    .footer .content {
        flex-direction: column;
        grid-row-gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .footer .partners .row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 525px) {
    .header .content, .menuContent .content {
        padding: 20px 0;
    }

    .header .content .nav .logo, .menuContent .content .logo {
        height: 24px;
    }

    .footer .bottom {
        flex-direction: column;
        grid-row-gap: 20px;
    }

    .footer .content .rside .lists {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 20px;
    }

    .footer .content .lside .grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer .content .lside .grid img:nth-child(9) {
        grid-column: 2 / span 2;
    }

    .footer .partners .row img:nth-child(4) {
        position: relative;
        left: 50%;
    }

    .footer .partners .row img:nth-child(5) {
        position: relative;
        right: -50%;
    }

    .join {
        padding-bottom: 84px;
    }
}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}



