html {
  font-size: 100%;
  line-height: 1.3;
}

* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  padding: 0;
  margin: 0;
  transition: 300ms;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .container {
    width: 760px;
  }
}
@media (min-width: 922px) and (max-width: 1199px) {
  .container {
    width: 900px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.box {
  padding: 15px;
  border-radius: 4px;
  text-align: center;
  background-color: #f0f2fa;
  position: relative;
  transition: 300ms;
}
.box.dark {
  background-color: #252a41;
}
.box.dark .fans-number h1 {
  color: white;
}
.box.dark .account h5 {
  color: #8b97c6;
}
.box.face::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #198ff5;
  left: 0;
  top: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.box.yt::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #c4032a;
  left: 0;
  top: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.box.insta::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #fdc468, #df4996);
  left: 0;
  top: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.box.twi::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #1ca0f2;
  left: 0;
  top: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.box .account {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 5px;
  margin-bottom: 0;
}
.box .account img {
  margin-right: 5px;
}
.box .account h5 {
  color: #63687e;
  font-size: 15px;
  transition: 300ms;
}
.box .fans-number {
  text-align: center;
}
.box .fans-number h1 {
  color: #1e202a;
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 7px;
  font-weight: bold;
  transition: 300ms;
}
.box .fans-number h3 {
  letter-spacing: 5px;
  font-weight: 300;
  color: #63687e;
  font-size: 18px;
  text-transform: uppercase;
}
.box .days {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.box .days img {
  margin-right: 15px;
}
.box .days h4 {
  color: #1db489;
}
.box .days h4.red {
  color: #c4032a;
}

.card {
  padding: 15px 25px;
  border-radius: 4px;
  background-color: #f0f2fa;
  position: relative;
  transition: 300ms;
}
.card.dark {
  background-color: #252a41;
}
.card.dark .numbers .big-num h1 {
  color: white;
}
.card.dark .type .text h4 {
  color: #8b97c6;
}
.card .type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-bottom: 25px;
}
.card .type .text h4 {
  color: #63687e;
  transition: 300ms;
}
.card .numbers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.card .numbers .big-num h1 {
  font-size: 35px;
  color: #1e202a;
  transition: 300ms;
}
.card .numbers .per {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.card .numbers .per img {
  margin-right: 5px;
}
.card .numbers .per h4 {
  color: #1db489;
}
.card .numbers .per h4.down {
  color: #dc414c;
}

.switch {
  position: relative;
  display: inline-block;
  width: 65px;
  height: 30px;
  margin: 30px 0;
}
.switch.click .slider {
  background: linear-gradient(#378fe6, #3eda82);
}
.switch.click .slider::before {
  background-color: #1e202a;
}
.switch.click .slider::before {
  transform: translateX(32px);
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #aeb3cb;
  border-radius: 34px;
  transition: 400ms;
}
.switch .slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 10%;
  bottom: 5.2px;
  background: white;
  border-radius: 50%;
  transition: 400ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header {
  position: relative;
  padding-top: 20px;
  padding-bottom: 170px;
  background-color: #f5f7ff;
  transition: 300ms;
}
.header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 767px) {
  .header .content {
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .header .content .title {
    border-bottom: 1px solid #63687e;
    padding-bottom: 50px;
  }
}
.header .content .title h1 {
  margin-bottom: 5px;
  color: #1e202a;
  transition: 300ms;
}
.header .content .title h3 {
  font-size: 18px;
  color: #63687e;
  transition: 300ms;
}
.header .content .theme {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 767px) {
  .header .content .theme {
    justify-content: space-between;
    width: 100%;
    margin-top: 25px;
  }
}
.header .content .theme .text h3 {
  margin-right: 15px;
  color: #63687e;
}

.fans {
  position: relative;
  text-align: center;
  margin-top: -150px;
  margin-bottom: 10px;
}
.fans .fans-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.overview {
  position: relative;
}
.overview .overview-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.overview .title h1 {
  margin-bottom: 10px;
  color: #1e202a;
  transition: 300ms;
}
.overview .title h1.white {
  color: white;
}

body {
  background: white;
}

.header.dark {
  background-color: #1f212e;
  transition: 300ms;
}
.header.dark .content .title h1 {
  margin-bottom: 5px;
  color: white;
}
.header.dark .content .title h3 {
  font-size: 18px;
  color: #8b97c6;
}

body.dark {
  background: #1e202a;
}

/*# sourceMappingURL=style.css.map */
