@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

:root {
    --primary: #070E17;
    --secondary: #72B8EC;
    --black: #000000;
    --gray: #505050;
    --white: #ffffff;
    --facebook: #337FFF;
    --linkedin: #006699;
    --instagram: linear-gradient(315deg, #FBE18A 0.96%, #FCBB45 21.96%, #F75274 38.96%, #D53692 52.96%, #8F39CE 74.96%, #5B4FE9 100.96%);
    --twitter: #33CCFF;
}

body {
    background-color: var(--primary);
    font-family: 'Formula', sans-serif !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    color: var(--white);
}

img {
    max-width: 100%;
}

.shadow {
    filter: drop-shadow(0px 0px 2px #7FFF00);
}

ul,
li {
    margin: 0px;
    list-style: none;
    padding: 0px;
}

p {
    margin: 0px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    text-transform: capitalize;
}

a {
    text-decoration: none;
}

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

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

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

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

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

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

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
}

.btn.btn-primary {
    background: var(--black);
    padding: 16px 30px;
    border: 0px;
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.9px;

}

.page-paddings {
    padding: 120px 0px;
}

.page-background {
    background-color: var(--primary);
    padding: 120px 0px;
}

.page-title h2 {
    color: var(--secondary);

    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.page-title p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
}

.form-control {
    color: var(--white) !important;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    background: transparent !important;
    outline: 0 !important;
    box-shadow: none !important;
    border: 0px;
}

.form-control::placeholder {
    color: var(--white);
}

/* Header */
header {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 99;
    transition: all 0.5s;
}

.header-main {
    background: var(--white);
    box-shadow: 8px 10px 0px 0px var(--black);
    padding: 30px 60px;
}

header.fixed {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0px;
    background: var(--white);
    box-shadow: 8px 10px 0px 0px var(--black);
}

header.fixed .header-main {
    padding: 15px 15px;
    background: transparent;
    box-shadow: none;
}

header.fixed .header-main .logo h2 {
    font-size: 30px;
}

.header-main .logo h2 {
    color: var(--black);
    font-size: 54px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin: 0px;
}

.header-main .logo h2>a {
    color: var(--black);
    text-decoration: none;
}

.header-right .navbar-nav .nav-link {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.9px;
    padding: 0px;
}

.header-right .navbar-nav .nav-item {
    margin-right: 40px;
}

.header-right .navbar-nav .nav-item:hover .nav-link,
.header-right .navbar-nav .nav-item.active .nav-link {
    color: var(--primary);
}

/* Header */
/* Hero */
.hero {
    background-color: var(--primary);
    background-image: url(../images/hero-banner.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    padding: 350px 0px 250px;
    position: relative;
}

.hero .col-12 {
    position: static;
}

.hero-text h1 {
    color: var(--white);
    text-shadow: 3px 0px 0px #7FFF00,
        -1px 0px 0px #7FFF00;
    font-size: 90px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 5.4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-text h1>span {
    color: var(--white);
}

.hero-text p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.hero-btn .btn.btn-primary {
    background: var(--white);
    box-shadow: 4px 4px 0px 0px #7FFF00;
    color: var(--black);
    padding: 16px 50px;
    transition: all 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn .btn.btn-primary:hover {
    background: var(--primary);
    box-shadow: 4px 4px 0px 0px #7FFF00;
    color: var(--white);
    padding: 16px 50px;
}

.hero-media {
    position: absolute;
    bottom: 60px;
}

/* Hero */
/* About */
.about {
    margin-bottom: 0px;
    padding-bottom: 66px;
    /* background: url(../images/hero-banner.png) no-repeat center; */
}

.about-text p {
    margin-bottom: 40px;
}

.about-btn .btn.btn-primary {
    background: var(--primary);
    box-shadow: 4px 4px 0px 0px #7FFF00;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s;
}

.about-btn .btn.btn-primary:hover {
    background: var(--white);
    box-shadow: 4px 4px 0px 0px #7FFF00;
    color: var(--black);
    padding: 16px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-media .about-road {
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translateX(-50px);
    z-index: -1;
}

.about-media {
    text-align: right;
}

.about-media>img {
    position: relative;
    left: -30px;
}

.about-text hr {
    border: 0px;
    border-bottom: 2px dashed var(--black);
    background: transparent;
    opacity: 1;
    margin: 60px 0px;
}

.rank-item h2 {
    color: var(--secondary);

    font-size: 60px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin: 0px;
    margin-right: 22px;
}

.rank-item {
    color: var(--primary);
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

/* About */
/* Why RatRace */
.shape-up {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
}

.shape-down {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.why-card {
    background: var(--white);
    box-shadow: 10px 10px 0px 0px var(--secondary);
    padding: 30px;
    margin: 0px 10px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.why-ratrace .page-title {
    margin-bottom: 20px;
}

.why-card .why-ico {
    margin-bottom: 36px;
}

.why-card h3 {
    color: var(--black);

    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 14px;
}

.why-card p {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    text-transform: capitalize;
}

/* Why RatRace */
/* Tokenomics */


.tokenomics .shape-left {
    position: absolute;
    top: 15px;
    left: 0px;
}

.tokenomics .shape-right {
    position: absolute;
    bottom: 15px;
    right: 0px;
}

.tokenomics .page-title {
    margin-bottom: 30px;
    color: #000
}

.tokenomics-card {
    display: table;
    height: 500px;
    width: 500px;
    margin: 30px auto 0px;
    border-radius: 500px;
    border: 6px solid var(--primary);
    background: var(--primary);
    box-shadow: 4px 4px 0px 0px #7FFF00;
    position: relative;
    z-index: 1;
}

.tokenomics-card .tokenomics-ico {
    margin-bottom: 24px;
}

.tokenomics-card h3 {
    color: var(--secondary);
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 16px;
}

.tokenomics-card p {
    font-size: 24px;
    color: #fff;
}

/* Tokenomics */
/* Roadmap */
.roadmap.page-background {
    background: linear-gradient(to top, var(--white) 42%, var(--primary) 42%);
}

.roadmap .shape {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
}

.phase-card {
    border: 1px solid var(--secondary);
    background: var(--white);
    box-shadow: 10px 10px 0px 0px var(--secondary);
    padding: 30px 30px;
}

.phase-card h3 {
    color: var(--secondary);

    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin: 0px;
}

.phase-card hr {
    width: 250px;
    height: 2px !important;
    background: rgba(80, 80, 80, 0.50);
    opacity: 1;
    margin: 30px auto;
}

.phase-card ul>li {
    position: relative;
    font-size: 20px;
    font-weight: 400;
    line-height: 160%;
    text-transform: capitalize;
    margin-bottom: 25px;
    padding-left: 50px;
}

.phase-card ul>li:last-child {
    margin-bottom: 0px;
}

.phase-card ul>li>span {
    position: absolute;
    top: 0px;
    left: 0px;
}

.road.page-background {
    padding: 12px 0px;
}

/* Roadmap */
/* Community */
.community-card {
    border-radius: 20px;
    background: var(--primary);
    padding: 40px 40px;
    filter: drop-shadow(0px 0px 6px #7FFF00);
}

.community-text .page-title h2,
.community-text .page-title p {
    color: var(--white);
}

.community-social {
    margin: 0px -8px;
}

.community-social a {
    height: 70px;
    width: 70px;
    line-height: 68px;
    border: 1px solid var(--white);
    border-radius: 100%;
    text-align: center;
    float: left;
    margin: 0px 8px;
    transition: all 0.5s;
}

.community-social a:hover {
    border-color: var(--secondary);
}

.community-social svg path {
    transition: all 0.5s;
}

.community-social a:hover svg path {
    fill: var(--secondary);
}

/* Community */
/* Buy token */
.buy-meme .shape {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.buy-card {
    background: var(--white);
    box-shadow: 6px 6px 0px 0px var(--secondary);
    padding: 30px;
    position: relative;
    z-index: 1;
}

.buy-top h3 {
    color: var(--secondary);

    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    margin-left: 30px;
    margin-bottom: 0px;
}

.buy-card p {
    font-size: 14px;
    color: var(--secondary);
    line-height: 24px;
}

/* Buy token */
/* Footer */
.footer-top {
    background-color: var(--secondary);
    border-top: 5px solid #21A3EC;
    padding: 50px 0px;
}

.footer-text h2 {
    color: var(--white);

    font-size: 54px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.footer-text h2>a {
    color: var(--white);
}

.footer-link a {
    color: var(--white);
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin: 0px 26px;
    float: left;
}

.footer-link a:hover {
    color: var(--primary);
}

.footer-social a {
    height: 60px;
    width: 60px;
    line-height: 62px;
    background-color: var(--black);
    border-radius: 100%;
    float: left;
    font-size: 28px;
    margin: 0px 8px;
    color: var(--white);
}

.footer-social a.facebook {
    background: var(--facebook);
}

.footer-social a.linkedin {
    background: var(--linkedin);
}

.footer-social a.instagram {
    background: var(--instagram);
}

.footer-social a.twitter {
    background: var(--twitter);
}

.copyright p {
    color: var(--secondary);
    text-align: center;
    text-shadow: 0px 0px 48.5px #21A3EC;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    padding: 30px 0px;
    border-top: 5px solid #7FFF00;
}

/* Footer */

div#toTop {
    height: 50px;
    width: 50px;
    line-height: 44px;
    border-radius: 100%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary);
    color: #ffffff;
    border: 3px solid #fff;
    text-align: center;
    font-size: 24px;
    display: none;
    z-index: 999;
    cursor: pointer;
}

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

.bg-white {
    background: #fff;
}