@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@100;300;400;600;700&display=swap');

:root {
  --color-white: hsl(0, 0%, 100%);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  overflow: hidden auto;
  text-transform: capitalize;
  color: #58468C;
  font: 400 1.6rem 'Exo 2', sans-serif;
  background: hsl(240, 100%, 100%);
}

body.darkmode {
  background: hsl(228deg 75.54% 12.2%);
  color: #cfc9e0;
}

img {
  width: 100%;
}

h2 {
  margin-bottom: 0;
}

a {
  color: var(--color-white);
  text-decoration: none !important;
}

a:hover {
  color: var(--color-white);
}

p {
  margin-bottom: 0;
}

ul {
  padding-left: 0;
  list-style-type: none;
}

/* ==========================
          header
========================== */
#header {
  top: 0;
  z-index: 1024;
  position: sticky;
  transition: all 0.3s ease;
}

#header.bsshadow {
  background-color: #1284ff;
  box-shadow: 2px 7px 13px 0px rgb(31 75 156 / 38%);
}

.btn-one {
  background: #ffffff;
  color: #000000;
  font-weight: bold;
  padding: 7px 25px;
  border-radius: 5px;
  box-shadow: 0px 8px 2px 0px rgb(27 104 183 / 37%);
  border: 2px solid #ffffff;
  transition: 0.5s all ease-in;
}

.nav-bar {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  max-width: 20rem;
}
.logo img {
    height: 50px;
    width: 50px;
}
.logo span {
    margin-left: 10px;
    display: flex
;
    align-items: center;
    font-size: 24px;
    color: #fff;
}
.nav-links {
  gap: 2rem;
  display: flex;
  font-weight: 400;
}

.nav-links a {
  font-weight: 500;
  font-size: 1.8rem;
  position: relative;
}

.nav-links a::before {
  left: 0;
  bottom: -6px;
  content: '';
  width: 100%;
  height: 1px;
  transform: scale(0);
  position: absolute;
  transition: all 0.4s ease;
  background-color: var(--color-white);
}

.nav-links a:hover::before {
  transform: scale(1);
  transform-origin: center;
}

/* theme toggler */
.theme-toggler {
  width: 7.5rem;
  height: 3rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border-radius: 99rem;
  background: rgb(255 255 255 / 37%);
  margin: 20px 0px;
}

.theme-toggler .round {
  top: 0;
  right: 0;
  width: 4rem;
  height: 3rem;
  display: flex;
  position: absolute;
  align-items: center;
  border-radius: 99rem;
  justify-content: center;
  transition: all 300ms ease;
  background: hsl(194, 100%, 54%);
}

.theme-toggler .round img {
  max-width: 2rem;
}

.theme-toggler .round.active {
  right: initial;
}

/* responsive menu toggler */
.nav-toggler {
  width: 4rem;
  height: 4rem;
  display: none;
  cursor: pointer;
  margin-left: 2rem;
  font-size: 2.6rem;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

@media screen and (max-width: 991.9px) {
  .nav-toggler {
    display: flex;
  }

  .btn-one.sm {
    display: none;
  }
}

/* responsive */
@media screen and (max-width: 991.9px) {
  .nav-links {
    top: 60px;
    right: 0;
    width: 100%;
    padding: 4rem;
    /* height: 100vh; */
    position: fixed;
    margin-top: -600px;
    flex-direction: column;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    background: hsl(213.49deg 93.85% 58.55% / 70%);
  }

  .nav-links a {
    color: var(--color-white);
  }

  .nav-links.show {
    margin-top: 0px;
  }

  .backdrop-filter {
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    background: hsl(214.96deg 92.49% 36.13% / 75%);
  }

  .backdrop-filter.show {
    opacity: 1;
    display: block;
  }
}

@media screen and (max-width: 375.9px) {
  .nav-links {
    max-width: 100%;
  }
}

/* ==========================
        hero section
========================== */
/* #hero {
  height: 100vh;
  width: 100%;
  padding: 8rem 0;
  overflow: hidden;
  margin-top: -8rem;
  background: url('../img/pepe-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */
#hero{
    margin-top: -8rem;
    padding-top: 8rem;
    background: url('../img/pepe-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero_content {
  height: 80vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hc_left {
  color: #ffffff;
  width: 60%;
}

.hc_right {
  width: 40%;
}

.hc_sub_heading {
  font-size: 3rem;
}

.hc_main_heading {
  font-size: calc(2.35rem + 1.75vw);
  font-weight: 700;
}

.hc_p {
  font-size: 1.75rem;
  font-weight: 100;
  margin-bottom: 30px;
}

.btn_white {
  background: #ffffff;
  color: #000000;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 5px;
  box-shadow: 0px 8px 2px 0px rgb(27 104 183 / 37%);
  border: 2px solid #ffffff;
  transition: 0.5s all ease-in;
}

.btn_b_white {
  background: transparent;
  color: #ffffff;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 5px;
  box-shadow: 0px 8px 2px 0px rgb(27 104 183 / 37%);
  border: 2px solid #ffffff;
  transition: 0.5s all ease-in;
}

.btn_white:hover, .btn-one:hover {
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}

.btn_b_white:hover {
  background-color: #ffffff;
  color: #000000;
}

.hc_right > img {
  height: 750px;
}

@media screen and (max-width: 991.9px) {
  .hero_content {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  
  .hc_left {
    width: 100%;
    text-align: center;
  }
  
  .hc_right {
    width: 100%;
  }

  .hc_right > img {
    height: 350px;
  }  
}

/* Section Common */
#maximize_rev, #advertiser, #publishers, #adv_benefits, #stats, #partners {
  padding: 7rem 0rem;
}

.section_title {
  text-align: center;
}

.section_title > h3 {
  font-weight: bold;
  font-size: 3.5rem;
  color: #3392FF;
}

.section_title > h3 > span{
  color: #FF27B5;
}

.section_title > h4 {
  font-weight: 300;
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.section_title > p {
  font-weight: 100;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

/* maximize_rev */
.mxr_content {
  text-align: center;
  margin: 50px 0px;
}

.mxr_content > img{
  height: 220px;
  margin-bottom: 20px;
}

.mxr_content > h3 {
  font-size: 2.5rem;
  font-weight: 700;
}

/* detail_stats */
.ds_contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.ds_left {
  width: 50%;
}

.ds_right {
  width: 50%;
}

.ds_left > img {
  width: 90%;
}

.ds_right > .section_title {
  text-align: left;
}

.points {
  display: flex;
  align-items: center;
  margin: 20px 0px;
}

.points > img {
  width: 40px;
  margin-right: 10px;
}

.points > p {
  font-size: 2.3rem;
}

@media screen and (max-width: 991.9px) {
  .ds_contents {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .ds_left {
    width: 100%;
  }
  
  .ds_right {
    width: 100%;
  }

  .ds_left > img {
    margin-bottom: 10px;
  }

  .ds_right > .section_title {
    text-align: center;
  }
}

/* advertiser */
#advertiser {
  background: linear-gradient(to right top, #3392FF, #1A9CFF, #004CFF);
}

#advertiser .section_title h3, #advertiser .section_title h4 {
  color: #ffffff;
}

.adv_content {
  text-align: center;
}

.adv_content > h3 {
  font-weight: bold;
  color: #ffffff;
  font-size: 2.5rem;
}

/* publishers */
.pub_content {
  text-align: center;
}

.pub_content > h3 {
  font-weight: bold;
  font-size: 2.5rem;
}

/* adv_benefits */
#adv_benefits {
  background: linear-gradient(to right top, #3392FF, #1A9CFF, #004CFF);
}

#adv_benefits .section_title h3{
  color: #ffffff;
  margin-bottom: 30px;
}

.adv_b_img {
  width: 350px;
}

.benefit {
  background: rgb(255 255 255 / 30%);
  display: flex;
  align-items: center;
  margin: 20px 0px;
  padding: 20px 0px;
  color: #ffffff;
  font-weight: bold;
  border-radius: 12px;
}

.benefit > img {
  width: 40px;
  margin-right: 10px;
  margin-left: 20px;
}

/* stats */
.stat {
  display: flex;
  align-items: center;
}

.stat > img {
  width: 100px;
  margin-right: 20px;
}

.stat_content > h3 {
  font-size: 4rem;
  font-weight: 700;
  color: #3392FF;
}

.stat_content > p {
  font-size: 2rem;
}

@media screen and (max-width: 991.9px) {
  .stat {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 10px 0px;
  }
}

/* cta */
.cta_container {
  background: linear-gradient(to left top, #004CFF, #1A9CFF, #3392FF);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 1px 8px 12px 0px rgb(5 35 196 / 48%);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta_content_left > p {
  font-size: 2rem;
}

.cta_content_left > h3 {
  font-size: 3.5rem;
  font-weight: 700;
}

@media screen and (max-width: 991.9px) {
  .cta_container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .cta_content_right {
    margin-top: 30px;
  }
}

/* partners */
#partners {
  background: #1277ff;
  margin-top: 50px;
}

#partners .section_title h3 {
  color: #ffffff;
}

.partners {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px 0px;
}

.partners > img {
  width: 200px;
  opacity: 0.65;
  transition: 0.5s all ease;
  cursor: pointer;
  margin-bottom: 10px;
}

.partners > img:hover {
  opacity: 1;
}

/* footer */
#footer {
  padding: 10rem;
  color: rgb(230 233 245 / 63%);
  background-color: #0c5a12;
  border-top: 2px solid #05053E;
}

@media screen and (max-width: 398.9px) {
  #footer {
    padding: 3rem;
  }
}

.section#footer::after {
  display: none;
}

.section#footer .row {
  height: max-content;
  align-items: flex-start;
}

.footer-desc {
  margin-top: 2rem;
  font-size: 1.7rem;
  padding-right: 1rem;
}

.footer-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.footer-list li:not(:last-child) {
  margin-bottom: 2rem;
}

.footer-list li a {
  font-weight: 300;
  font-size: 1.7rem;
  color: rgb(230 233 245 / 63%);
  transition: 0.3s all ease;
}

.footer-list li a:hover {
  color: #ffffff !important;
}

.social_logos {
  display: flex;
  align-items: center;
}

.social_logo {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: rgb(92 136 194 / 50%);
  font-size: 1.75rem;
  margin-right: 10px;
  color: #2697ff;
  cursor: pointer;
  transition: 0.3s all ease;
}

.social_logo:hover {
  color: #ffffff;
  background-color: #2697ff;
}

.ft_title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  margin-bottom: 30px;
}

.ft_title::after {
  content: "";
  display: block;
  position: absolute;
  width: 45px;
  height: 2px;
  bottom: -10px;
  background-color: #1A9CFF;
}

#page-title {
  margin-top: -10vh;
  padding-top: 15rem;
  background: #1A9CFF;
  text-align: center;
  padding-bottom: 7rem;
}

#page-title > h3 {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
}

#middle-content {
  min-height: 300px;
  padding: 20px 0px;
}

#middle-content > .container > p {
  margin-bottom: 10px;
}

#authdiv {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#formdiv {
  background: #ffffff;
  box-shadow: 3px 9px 17px 7px rgb(154 165 230 / 25%);
  padding: 40px 30px;
  margin: 50px 0px;
  border-radius: 10px;
  width: 600px;
}

.darkmode #formdiv {
  background: #091e4d;
  box-shadow: 3px 9px 17px 7px rgba(154, 165, 230, 0.011)
}

.form-control {
  margin-bottom: 10px;
}

.form-control, .form-control:focus {
  background-color: #ffffff;
  border: 1px solid #2882ff;
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 2rem;
}

.darkmode .form-control, .darkmode .form-control:focus {
  background-color: transparent;
  color: #ffffff;
}

.form-control:focus, .form-select:focus {
  box-shadow: none;
}

.login_btn {
  background: linear-gradient(to right top, #3392FF, #1A9CFF);
  color: #ffffff;
  font-weight: bold;
  padding: 15px 0px;
  width: 100%;
  border: 2px solid #1A9CFF;
  border-radius: 10px;
  transition: 0.3s all ease;
}

.login_btn:hover {
  background: transparent;
  color: #1A9CFF;
}