/* -------------------------------------------- GENERAL -------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
}
html,
body {
  width: 100%;
  height: 100%;
  font-family: lato, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #233d63;
}
a {
  text-decoration: none;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* -------------------------------------------- NAV -------------------------------------------- */
.logo {
  width: 32%;
}
.logo img {
  width: 100%;
}
.page-section {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
.main-nav {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  text-align: center;
  box-shadow: 0 2px 8px #ccc;
  z-index: 5;
  background-color: white;
}
.nav__toggler {
  cursor: pointer;
}
.bar {
  width: 35px;
  height: 4px;
  background-color: #000;
  margin: 5px 0;
  border-radius: 5px;
  transition: transform 0.4s ease-in-out;
}
.main-nav.nav__expanded .bar-one {
  transform: rotate(-45deg) translate(-8px, 7px);
}
.main-nav.nav__expanded .bar-two {
  opacity: 0;
}
.main-nav.nav__expanded .bar-three {
  transform: rotate(45deg) translate(-6px, -4px);
}
.nav__list {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  font-size: 1.4rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.main-nav.nav__expanded .nav__list {
  max-height: 100vh;
  opacity: 100;
  margin-top: 2rem;
}
.nav__item {
  border-bottom: 1px solid #ccc;
  padding-block: 1.5rem;
  text-decoration: none;
  color: #666;
  font-size: 1.5rem;
}
.nav__item:hover {
  color: #ff6104;
}
.nav__item:first-child {
  border-bottom: none;
  padding-bottom: 0;
}
.nav__item a:hover {
  color: var(--color-primary);
}
.nav__item a {
  text-decoration: none;
  color: #666;
  display: block;
}
.nav__item.cta {
  display: none;
}
.list {
  list-style: none;
  font-size: 1.4rem;
}
.nav__item .primary-button {
  font-size: 1.5rem;
}
.list--inline .list__item {
  display: inline-block;
  margin-left: 2rem;
}
@media screen and (max-width: 900px) {
  .smallScreen-dropdown-content {
    display: none;
    z-index: 1;
  }
  .smallScreen-dropdown-content a {
    float: none;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
  }
  .dropdown-expanded.smallScreen-dropdown-content {
    display: block;
  }
  .main-nav.nav__expanded .nav__list .smallScreen-dropdown {
    float: none;
  }
  .main-nav.nav__expanded .nav__list .smallScreen-dropdown-content {
    position: relative;
    padding: 8px;
  }
  .main-nav.nav__expanded .nav__list .smallScreen-dropdown .dropbtn {
    display: block;
    cursor: pointer;
    width: 100%;
  }
  .recent-card__adDescription {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 900px) {
  .logo {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo img {
    width: 100%;
  }
  .main-nav {
    padding: 30px 35px 10px;
  }
  .nav__toggler {
    display: none;
  }
  .nav__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    margin-top: 0;
    opacity: 100;
    max-height: 100vh;
  }
  .nav__item {
    border-bottom: none;
    margin-right: 2.5rem;
    padding-bottom: 0;
    padding-top: 0;
    font-size: 1.3rem;
  }
  .nav__item .primary-button {
    font-size: 1.3rem;
  }
  .dropdown {
    position: relative;
    display: inline-block;
  }
  .dropdown-content a {
    padding: 1rem;
    text-align: left;
    z-index: 1;
  }
  .dropdown-content {
    display: none;
    position: fixed;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .nav__item.cta {
    display: block;
  }
  .dropdown__case-study {
    position: relative;
  }
  .dropdown-case-study__content a {
    padding: 1rem;
    text-align: left;
    z-index: 1;
  }
  .dropdown-case-study__content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
    left: 80%;
    top: 1rem;
  }
  .dropdown__case-study:hover .dropdown-case-study__content {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .bigScreen {
    display: none;
  }
  .smallScreen {
    display: block;
  }
}
@media screen and (min-width: 901px) {
  .bigScreen {
    display: block;
  }
  .smallScreen {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .nav__item {
    margin-right: 4rem;
    font-size: 1.6rem;
  }
  .nav__item .primary-button {
    font-size: 1.6rem;
  }
}

/* -------------------------------------------- COMMON -------------------------------------------- */
.column {
  display: flex;
  flex-direction: column;
}
.row {
  display: flex;
  flex-direction: row;
}
.no-link {
  text-decoration: none;
}
.middle,
.middle__center {
  margin-top: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95%;
  height: 100%;
}
.main-title {
  margin-bottom: 20px;
  font-size: 2rem;
  text-align: center;
}
.primary-button {
  background-color: #355eff;
  padding: 10px 20px;
  color: #fff !important;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
}
.secondary-button {
  background-color: #ff6104;
  padding: 10px 20px;
  color: #fff !important;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
}
.primary-button a,
.secondary-button a {
  color: #fff !important;
}
.float-image {
  position: absolute;
  top: 50%;
  right: 50%;
  animation: spin 25s linear infinite;
}
@media only screen and (max-width: 600px) {
  .primary-button {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .primary-button,
  .secondary-button {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1000px) {
  .middle {
    padding-left: 260px;
  }
  .float-image {
    top: 2%;
  }
}
@media screen and (min-width: 1200px) {
  .main-title {
    font-size: 3rem;
  }
}

/* -------------------------------------------- CATEGORIES -------------------------------------------- */
.drawer-hamburger {
  top: 18%;
  border-radius: 0 1rem 1rem 0;
  width: 45px;
  height: 55px;
  padding: 0;
  box-shadow: 0 0 5px rgb(0 0 0/16%);
  background-color: white !important;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.drawer-hamburger::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -8px;
  left: 0;
  background-color: #508ff8;
  transform: translateZ(-1px);
  border-radius: 0 0 15px 0;
}
.drawer-nav {
  z-index: 10;
  height: unset;
  width: 260px !important;
  top: 75px;
  left: -260px !important;
  max-height: calc(100% - 150px);
  overflow: auto;
  direction: rtl;
}
.drawer-open .drawer-hamburger {
  left: 240px !important;
  border-radius: 2rem;
  width: 37px;
  height: 37px;
  z-index: 11;
}
.drawer-open .drawer-hamburger img {
  display: none;
}
.drawer-open .drawer-hamburger::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  top: 13px;
  left: 15px;
  background-color: white;
  border-top: 2px solid #508ff8;
  border-left: 2px solid #508ff8;
  border-radius: 0;
  transform: rotate(-45deg);
}
.drawer-open .drawer-nav {
  left: 0 !important;
  padding-right: 3rem;
}
.drawer-overlay {
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.75);
}
.drawer-nav > * {
  direction: ltr;
}
/* custom scrollbar */
.drawer-nav::-webkit-scrollbar {
  width: 1rem;
}
.drawer-nav::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}
.drawer-nav::-webkit-scrollbar-thumb {
  background: #355eff;
  border-radius: 10px;
}
/* end custom scrollbar */
@media screen and (min-width: 1000px) {
  .drawer-nav {
    display: block;
    left: 0 !important;
    top: 85px;
    max-height: calc(100% - 85px);
  }
}

/* categories in singl_inf */
.single_inf_drawer .single_inf_title {
  display: none;
}
@media screen and (min-width: 1000px) {
  .single_inf_drawer .single_inf_title {
    display: block;
  }
  .single_inf_drawer .accordion_head {
    display: none;
  }
  .single_inf_drawer .drawer-hamburger {
    display: none;
  }
  .single_inf_drawer .drawer-nav {
    position: static;
    width: 100% !important;
  }
  .single_inf_drawer .categories {
    border-top: 0;
    border-radius: 2rem;
    padding: 0;
    box-shadow: 0 0;
    overflow: unset;
  }
  .single_inf_drawer .categories__list {
    padding: 25px 20px;
  }
  .single_inf_drawer .categories__items {
    max-height: 600px;
  }
}

.categories {
  border-radius: 0 4rem 4rem 0;
  padding: 3rem 2rem 4rem;
  box-shadow: 0 0 10px rgb(0 0 0/16%);
  background-color: white;
  border-top: 10px solid #508ff8;
}
.categories__input {
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  width: 100%;
}
.categories__input input {
  border: 0;
  outline: none;
  background-color: transparent;
  overflow: hidden;
  accent-color: #ff6104;
  width: 100%;
}
.categories__input input::placeholder {
  color: #bcbcbc;
}
.categories__input span {
  color: #bcbcbc;
  font-size: 2rem;
}
.categories__list {
  margin-top: 2rem;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 5px 11px rgb(0 0 0/16%);
}
.categories__items {
  margin-top: 1.5rem;
  max-height: 22vh;
  overflow-y: auto;
  direction: rtl;
}
.categories__items > div {
  padding-left: 1rem;
  direction: ltr;
}

/* custom scrollbar */
.categories__items::-webkit-scrollbar {
  width: 1rem;
}
.categories__items::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}
.categories__items::-webkit-scrollbar-thumb {
  background: #355eff;
  border-radius: 10px;
}
/* end custom scrollbar */

/* custom checkbox */
.category__item {
  margin-bottom: 2rem;
  display: block;
  position: relative;
  padding-left: 15px;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 600;
  user-select: none;
  color: #717171;
}
.sub_category__item {
  margin-bottom: 2rem;
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 500;
  user-select: none;
  color: #212121;
}
.category__item a,
.sub_category__item a {
  color: #212121;
}
.category__item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.category__item .category__checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: white;
  box-shadow: 2px 2px 5px rgb(0 0 0 / 16%);
  border-radius: 2px;
}
.category__item input:checked ~ .category__checkmark {
  background-color: #ff6104;
}
.category__item input:checked ~ span {
  color: #ff6104;
}
.category__item .category__checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.category__item input:checked ~ .category__checkmark:after {
  display: block;
}
.category__item .category__checkmark:after {
  left: 5px;
  top: 1px;
  width: 3px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
/* end custom checkbox */

/* -------------------------------------------- ACCORDION -------------------------------------------- */
#accordion .categories__list {
  margin-top: 1rem;
}
.accordion__search {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #efefef;
}
.accordion__search__input {
  background-color: #fbfbfb;
  padding: 1.4rem 1rem;
  margin-bottom: 1.4rem;
  border-radius: 0.5rem;
  border: 0;
  outline: none;
}
.accordion__search__input::placeholder {
  color: #bdbdbd;
}
.accordion__search .primary-button {
  padding: 8px;
  outline: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
}
.ui-accordion-header {
  font-size: 1.4rem;
  border: 1px solid #355eff;
  padding: 12px 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #818181;
}
.ui-accordion-header .ui-accordion-header-icon {
  display: none;
}
.ui-accordion-header .material-symbols-outlined {
  transition: all 300ms;
  height: 20px;
  font-weight: 700;
  color: #355eff;
}
.ui-accordion-header-active {
  border-color: #ff6104;
}
.ui-accordion-header-active .material-symbols-outlined {
  transform: rotate(180deg);
  color: #ff6104;
}
.accordion_head {
  margin-bottom: 2rem;
  color: #555555;
  font-size: 1.7rem;
  font-weight: 600;
  padding-left: 2rem;
}
.accordion__filters {
  margin: 2rem 0 2rem;
  padding: 2rem 0;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}
.accordion__filters .accordion_trigger {
  margin-top: 2rem;
}
.accordion__filters .categories__items {
  direction: unset;
  margin: 0 0 0 -2rem;
  overflow-x: hidden;
}
/* custom select */
.category__item__2 {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 1.4rem;
  user-select: none;
  height: 35px;
  padding-left: 2rem;
  color: #555555;
}
.category__item__2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.category__item__2 span:first-of-type {
  position: relative;
  z-index: 1;
  font-size: 16px;
  height: 35px;
  display: flex;
  align-items: center;
}
.category__item__2 input:checked ~ span:last-of-type {
  content: "";
  position: absolute;
  width: calc(100% + 1rem);
  height: 35px;
  left: 0;
  transform: translateY(-35px);
  background: rgb(250, 250, 250);
  background: linear-gradient(
    90deg,
    rgba(225, 225, 225, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
/* end custom select */

#accordion__followers__values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c3c3c3;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
#accordion__followers__values > span {
  border: 1px solid #c3c3c3;
  box-shadow: 0 5px 11px rgb(0 0 0/16%);
  padding: 5px;
  border-radius: 5px;
}
.ui-slider {
  height: 5px;
  background-color: #f3f3f3;
  border-radius: 5px;
  position: relative;
  text-align: left;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  top: -7px;
  margin-left: -0.6em;
  cursor: pointer;
  border: 4px solid #355eff;
  border-radius: 50%;
  background-color: white;
  outline: none;
}
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  background-color: #8aa0f9;
  top: 0;
  height: 100%;
}
.accordion__followers .primary-button {
  margin-top: 20px;
  padding: 8px;
  outline: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.blocker {
  z-index: 11 !important;
}
.modal {
  font-size: 1.8rem;
  padding: 50px 30px !important;
}
/* -------------------------------------------- BACKGROUND IMAGES -------------------------------------------- */
.bacground__2 {
  position: fixed;
  top: 60%;
  right: 0;
  height: 40%;
}
.bacground__2 > img {
  width: 100%;
  height: 100%;
}
.bacground__3 {
  position: fixed;
  top: 20%;
  left: 0;
  height: 150%;
}
.bacground__3 ~ * {
  position: relative;
  z-index: 1;
}
.bacground__3 > img {
  width: 100%;
  height: 100%;
}

/* -------------------------------------------- FIRST ROW -------------------------------------------- */
.first-row {
  margin-top: 50px;
}
.first-row__image {
  width: 100%;
  position: absolute;
}
.first-row__image > img {
  width: 100%;
}
.first-row__image > img:first-child {
  display: none;
}
.first-row__text {
  max-width: 80%;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 7rem;
  color: white;
}
.first-row__text h1 {
  font-size: 2.2rem;
  line-height: 4rem;
  z-index: inherit;
  color: white;
}
.first-row__text p {
  font-size: 1.3rem;
  z-index: inherit;
  padding-top: 10px;
  line-height: 25px;
}
@media only screen and (min-width: 768px) {
  .first-row__image > img:first-child {
    display: block;
  }
  .first-row__image > img:last-child {
    display: none;
  }
  .first-row__text {
    max-width: 60%;
    padding-top: 1.5rem;
  }
  .first-row__text h1 {
    font-size: 2.5rem;
  }
  .first-row__text p {
    padding-top: 0;
    line-height: 18px;
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 900px) {
  .first-row {
    margin-top: 75px;
  }
  .first-row__text {
    padding-top: 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .first-row__text p {
    font-size: 1.6rem;
    line-height: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .first-row__text {
    padding-top: 4%;
  }
  .first-row__text h1 {
    font-size: 3.2rem;
    line-height: 5rem;
  }
  .first-row {
    margin-bottom: 200px;
  }
}
@media screen and (min-width: 1500px) {
  .first-row__text h1 {
    font-size: 4.8rem;
    line-height: 5rem;
  }
  .first-row__text p {
    font-size: 2rem;
    line-height: 40px;
  }
}
@media screen and (min-width: 1600px) {
  .first-row__text {
    padding-top: 5%;
  }
  .first-row__text h1 {
      font-size: 5rem;
      line-height: 6rem;
  }
}
/* -------------------------------------------- CARD -------------------------------------------- */
.card-container,
.card-container--mobile {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
  margin-bottom: 45px;
  flex-wrap: wrap;
  z-index: 1;
}
.card-container {
  display: none;
}
.card-container--mobile {
  padding: 0 30px;
  margin-bottom: 50px !important;
}
.card-container--mobile .card {
  margin-left: 10px;
  margin-right: 10px;
}
.card-container--mobile .slick-list {
  padding: 10px 0;
}
.card-container--mobile .slick-arrow::before {
  content: "";
  border-top: 2px solid black;
  border-right: 2px solid black;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  left: 0;
}
.card-container--mobile .slick-prev {
  left: 10px;
}
.card-container--mobile .slick-next {
  right: 5px;
}
.card-container--mobile .slick-prev::before {
  transform: rotate(-135deg);
}
.card-container--mobile .slick-next::before {
  transform: rotate(45deg);
}
.card-container--mobile .slick-dots li {
  margin: 0;
}
.card-container--mobile .slick-dots button::before {
  font-size: 10px;
}

.card {
  margin-top: 50px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 350px;
  border-radius: 2rem;
  padding: 2rem 2rem 3rem;
  box-shadow: 0 0px 8px rgb(0 0 0 / 16%);
  position: relative;
  z-index: inherit;
  background-color: white;
}
.card__image {
  width: 120px;
  position: absolute;
  top: -50px;
}
.card__image img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 3px 10px #ccc;
}
.card__data {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.6rem;
  color: #145388;
}
.card__data div {
  margin-top: 8px;
}
.card__instagram {
  font-size: 2rem;
  font-weight: 700;
}
.card__category {
  background-color: #e5eeff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.4rem;
}
.card__statistics {
  padding: 1rem 2rem;
  border-radius: 100px;
  box-shadow: 0 0 10px rgb(0 0 0/16%);
  display: flex;
  text-align: center;
}
.card__statistics > div {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  font-size: 1.4rem;
  position: relative;
}
.card__statistics > div > :last-child {
  font-size: 1.2rem;
}
.card__statistics > div:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  width: 2px;
  height: 50%;
  background-color: #f7f7f7;
}
.card__details {
  display: flex;
  gap: 1.5rem;
}
.card__details > div {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.card__details > div > :first-child {
  color: #355eff;
  font-size: 1.6rem;
  padding-right: 2px;
}
.card .primary-button {
  font-size: 1.5rem;
}
.discover__button {
  display: flex;
  font-size: 1.5rem;
}
@media screen and (min-width: 765px) {
  .card-container {
    display: flex;
  }
  .card-container--mobile {
    display: none;
  }
  .card {
    width: 250px;
  }
  .discover__button {
    font-size: 1.8rem;
  }
}

/* -------------------------------------------- FOOTER -------------------------------------------- */
.message_its_free {
  font-size: 2rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
  color: #233d63;
}
.subtitle {
  font-size: 2.5rem;
}
.footer {
  width: 100%;
  display: flex;
  justify-content: space-around;
  position: relative;
}
.footer__list a {
  margin-top: 10px;
  font-size: 1.7rem;
  color: #636363;
}
.footer-list__link {
  margin-top: 30px;
}
.footer__privacy {
  width: 100%;
  justify-content: space-between;
}
.footer__privacy {
  margin: 30px 0;
  font-size: 1.6rem;
  color: #636363;
}
.footer__privacy a {
  color: #636363;
  margin: 0 15px;
}
.footer + hr {
  width: 100%;
  margin: 100px 0 20px 0;
}
@media screen and (max-width: 768px) {
  .message_its_free {
    width: 95%;
    text-align: left;
    color: inherit;
  }
  .message_its_free span {
    width: 85%;
    display: block;
    margin: 0 auto;
  }
  .footer > .footer__list {
    margin-bottom: 25px;
    padding-bottom: 38px;
    border-bottom: 1px solid #7070704d;
  }
  .footer__privacy {
    margin-top: 0;
    flex-direction: column;
    font-size: 1.4rem;
    align-items: center;
    gap: 14px;
  }
  .footer__privacy a:not(:last-child) {
    border-right: 1px solid #7070704d;
    margin: 0 10px 0 0;
    padding: 0 10px 0 0;
  }
  .footer + hr {
    display: none;
  }
  .footer {
    width: 85%;
    flex-direction: column;
    margin-top: -75px;
  }
  .footer h4 {
    color: inherit;
  }
}

/* -------------------------------------------- PARTICLES -------------------------------------------- */
@keyframes animationFramesOne {
  0% {
    transform: translate(0) rotate(0deg);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }
  to {
    transform: translate(0) rotate(0deg);
  }
}
@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  to {
    -webkit-transform: translate(0) rotate(0deg);
  }
}
@keyframes animationFramesTwo {
  0% {
    transform: translate(0) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  to {
    transform: translate(0) rotate(0deg) scale(1);
  }
}
@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0) rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  to {
    -webkit-transform: translate(0) rotate(0deg) scale(1);
  }
}
@keyframes animationFramesThree {
  0% {
    transform: translate(165px, -179px);
  }
  to {
    transform: translate(-346px, 617px);
  }
}
@-webkit-keyframes animationFramesThree {
  0% {
    -webkit-transform: translate(165px, -179px);
  }
  to {
    -webkit-transform: translate(-346px, 617px);
  }
}
@keyframes animationFramesFour {
  0% {
    transform: translate(-300px, 151px) rotate(0deg);
  }
  to {
    transform: translate(251px, -200px) rotate(180deg);
  }
}
@-webkit-keyframes animationFramesFour {
  0% {
    -webkit-transform: translate(-300px, 151px) rotate(0deg);
  }
  to {
    -webkit-transform: translate(251px, -200px) rotate(180deg);
  }
}
@keyframes animationFramesFive {
  0% {
    transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    transform: translate(-195px, -49px) rotate(144deg);
  }
  to {
    transform: translate(-1px) rotate(180deg);
  }
}
@-webkit-keyframes animationFramesFive {
  0% {
    -webkit-transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    -webkit-transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    -webkit-transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
  }
  to {
    -webkit-transform: translate(-1px) rotate(180deg);
  }
}

.feature-img-box .shape-one {
  position: absolute;
  top: 34%;
  left: -12%;
  -webkit-animation: animationFramesOne 15s linear infinite alternate;
  animation: animationFramesOne 15s linear infinite alternate;
}
.feature-img-box .shape-two {
  position: absolute;
  top: 12%;
  left: 15%;
  -webkit-animation: animationFramesFive 18s linear infinite alternate;
  animation: animationFramesFive 18s linear infinite alternate;
}
.feature-img-box .shape-three {
  position: absolute;
  top: 0;
  left: 24%;
  -webkit-animation: animationFramesTwo 15s linear infinite alternate;
  animation: animationFramesTwo 15s linear infinite alternate;
}
.feature-img-box .shape-four {
  position: absolute;
  top: 19%;
  right: 28%;
  -webkit-animation: animationFramesFive 20s linear infinite alternate;
  animation: animationFramesFive 20s linear infinite alternate;
}
.feature-img-box .shape-five {
  position: absolute;
  top: 12%;
  right: 2%;
  -webkit-animation: animationFramesFive 18s linear infinite alternate;
  animation: animationFramesFive 18s linear infinite alternate;
}

/* ------------------ single influencer styles ------------------ */

.single_inf_title {
  font-size: 2.3rem;
  margin: 0 0 20px;
  line-height: 32px;
}
.single_inf_title strong {
  font-weight: 500;
}
.single_inf_row {
  max-width: 1500px;
  margin: 0 auto 0;
  padding: 30px 40px;

  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.single_inf_col_1 {
  flex-basis: 100%;
  -webkit-box-flex: 0;
  flex-grow: 0;
  max-width: 100%;
  padding: 0 0 20px 0;
}
.single_inf_col_2 {
  flex-basis: 100%;
  -webkit-box-flex: 0;
  flex-grow: 0;
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .single_inf_title {
    font-size: 2.5rem;
    margin: 0 0 30px;
  }
  .single_inf_row {
    flex-direction: row;
  }
  .single_inf_col_1 {
    flex-basis: 35%;
    max-width: 35%;
    padding: 0 20px 0 0;
  }
  .single_inf_col_2 {
    flex-basis: 65%;
    max-width: 65%;
  }
}
.single_inf_detail {
  margin-top: 110px;
}

@media screen and (min-width: 1050px) {
  .single_inf_row {
    padding: 30px 80px 30px 40px;
  }
  .single_inf_col_1 {
    flex-basis: 25%;
    max-width: 25%;
    padding: 0 40px 0 0;
  }
  .single_inf_col_2 {
    flex-basis: 75%;
    max-width: 75%;
  }
}

/* ------------------ detail left ------------------ */
.single_inf_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border-radius: 2rem;
  padding: 8rem 2rem 3rem;
  box-shadow: 0 0 10px rgb(0 0 0/16%);
  background-color: white;
  background-size: 0;
  background-repeat: no-repeat;
  color: #333;
  position: relative;
}
.single_inf_card__image {
  width: 120px;
  height: 120px;
  border-radius: 100px;
  border: 4px solid #dfdfdf;
  margin: 0 auto 30px;
  position: absolute;
  top: -60px;
}
.single_inf_card__image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 2px solid white;
}
.single_inf_card h2 {
  color: inherit;
  font-size: 2rem;
  line-height: 2rem;
}
.single_inf_card strong {
  font-size: 1.5rem;
  line-height: 3rem;
}
.single_inf_card .secondary-button {
  border: 1px solid white;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 10px 15px;
  margin: 5px auto 20px;
  max-width: 200px;
  box-shadow: 0 0 10px rgb(0 0 0/16%);
}
.single_inf_card__icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 10px;
}
.single_inf_card__icons div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  text-align: left;
  width: 50%;
}
.single_inf_card__icons img {
  background-color: #459cf5;
  border-radius: 100%;
}
.single_inf_card__icons span span {
  display: none;
}
div.single_inf_card__icons_desc {
  color: #4b4b4ba8;
  text-align: center;
  border-top: 1px solid #70707017;
  margin-top: 20px;
  padding-top: 9px;
  width: 100%;
}
.single_inf_card__icons_desc img {
  display: none;
}
.single_inf_card__share {
  border: 1px solid #459cf5;
  color: #459cf5;
  border-radius: 5px;
  font-size: 1.4rem;
  padding: 8px 16px;
  width: fit-content;
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
.single_inf_card__share svg path {
  fill: #459cf5;
}
@media screen and (min-width: 600px) {
  .single_inf_card {
    background-size: cover;
    color: #fff;
    padding: 4rem 2rem 3rem;
  }
  .single_inf_card__image {
    position: static;
  }
  .single_inf_card__icons div {
    width: 100%;
  }
  .single_inf_card__icons img {
    background-color: unset;
  }
  div.single_inf_card__icons_desc {
    color: inherit;
    text-align: left;
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
  }
  .single_inf_card__icons_desc img {
    display: inline;
  }
  .single_inf_card__share {
    border: 1px solid white;
    color: inherit;
  }
  .single_inf_card__share svg path {
    fill: white;
  }
}
@media screen and (min-width: 900px) {
  .single_inf_card .secondary-button {
    padding: 10px 40px;
  }
}

/* ------------------ detail right ------------------ */
.single_inf_summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.single_inf_summary_text {
  display: flex;
  border-radius: 2rem;
  margin-bottom: 50px;
  background: white;
}
.single_inf_summary_text p {
  font-size: 1.6rem;
  /* white-space: pre-wrap; ->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
  line-height: 2.8rem;
  margin-left: 1em;
  color: #696969;
  position: relative;
}
.single_inf_summary_text p img {
  position: absolute;
  transform: rotate(180deg);
  margin-left: 10px;
}
.single_inf_summary_cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.single_inf_summary_cards > div {
  border-radius: 2rem;
  padding: 1rem;
  box-shadow: 0 0 10px rgb(0 0 0 / 16%);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
  background: white;
  width: calc(50% - 10px);
  position: relative;
}
.single_inf_summary_cards > div:before {
  content: "";
  background-color: #f7fbfe;
  width: 75px;
  height: 75px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 2rem 0 100px 0;
}

.single_inf_summary_cards div > img {
  position: relative;
  width: 65px;
  height: 65px;
}
.single_inf_summary_cards div > span:first-child {
  font-size: 2.2rem;
  font-weight: 700;
}
.single_inf_summary_cards div > span:last-child {
  font-size: 1.4rem;
  color: #696969;
}
@media screen and (min-width: 600px) {
  .single_inf_summary_text {
    padding: 2rem 2rem 3rem;
    box-shadow: 0 0 10px rgb(0 0 0/16%);
  }
}
@media screen and (min-width: 1050px) {
  .single_inf_summary_cards > div {
    width: 25%;
    max-width: 250px;
  }
  .single_inf_summary_cards div > img {
    width: 85px;
    height: 85px;
  }
}

/* ------------------ categories right ------------------ */

.single_inf_recent_posts {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 45px;
  flex-wrap: wrap;
  z-index: 1;
}
.single_inf_post {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 320px;
  border-radius: 2rem;
  padding: 1rem 0 2rem;
  box-shadow: 0 0 10px rgb(0 0 0/16%);
  background-color: white;
}
.single_inf_post_image {
  width: 100%;
  padding: 0 1rem;
}
.single_inf_post_image img {
  width: 100%;
  border-radius: 1rem;
}
.single_inf_post_text {
  padding: 4rem 1rem 1rem;
  font-size: 1.5rem;
  text-align: center;
  margin-top: -50px;
  background: #fffffff2;
  border-radius: 100% 100% 0 0;
  color: #696969;
  position: relative;
}
.single_inf_post_counts {
  width: 100%;
  display: flex;
  justify-content: center;
  border: 1px solid #ececec;
  border-left: 0;
  border-right: 0;
  padding: 0 10px;
  margin-top: auto;
}
.single_inf_post_counts > div {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
}
.single_inf_post_counts > div:first-child {
  padding-right: 5px;
  margin-right: 5px;
  border-right: 1px solid #ececec;
}
.single_inf_post_counts > div > span:first-child {
  color: #0084fa;
  font-size: 2rem;
}
.single_inf_post_counts > div > span:last-child {
  font-size: 1.2rem;
}
@media screen and (min-width: 765px) {
  .single_inf_post {
    width: 300px;
  }
}

.single_inf_cats_cards .primary-button {
  background-color: white;
  color: #355eff !important;
  text-decoration: underline;
  font-size: 12px;
}
.single_inf_cats_join {
  display: flex;
  justify-content: center;
}
.single_inf_cats_join .secondary-button {
  font-size: 1.8rem;
  box-shadow: 0 0 10px rgb(0 0 0/16%);
  border: 2px solid white;
  padding: 16px 48px;
  border-radius: 8px;
  margin-bottom: 40px;
}
.single_inf_brand_review {
  border-radius: 1.6rem;
  padding: 25px 20px;
  box-shadow: 0 0 10px rgb(0 0 0/16%);
  font-size: 1.5rem;
  color: #575757;
  line-height: 22px;
  background-color: white;
}
.single_inf_brand_review p {
  padding: 0 15px;
  margin: 0;
}
.single_inf_brand_review_top {
  display: flex;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d1d1d1;
}
.single_inf_brand_review_top > img {
  width: 72px;
  height: 72px;
  border-radius: 72px;
  box-shadow: 0 4px 10px rgb(0 0 0/36%);
}
.single_inf_brand_review_top > div {
  margin-left: 24px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.single_inf_brand_review_top > div img {
  display: inline;
}
.single_inf_brand_review_top > div span {
  display: block;
}
.single_inf_brand_review_top > div span:last-child {
  font-size: 1.4rem;
  color: #757575;
  margin-top: 5px;
}

@media screen and (min-width: 600px) {
  .single_inf_brand_review {
    padding: 25px 40px;
  }
}

/* ------------------ background ------------------ */
.single_inf_above_bg,
.single_inf_above_bg_mobile {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  width: 100%;
}
.single_inf_above_bg > img {
  width: 100%;
  height: 100%;
  display: none;
}
.single_inf_above_bg_mobile > img {
  width: 100%;
  height: 100%;
}
.single_inf_above_bg .feature-img-box {
  position: fixed;
  left: 0;
  right: 0;
}
@media screen and (min-width: 600px) {
  .single_inf_above_bg > img {
    display: inline;
  }
  .single_inf_above_bg_mobile > img {
    display: none;
  }
}

.single_inf_bottom_bg {
  position: absolute;
  bottom: 0;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  display: none;
}
.single_inf_bottom_bg > img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.single_inf_bottom_bg .feature-img-box {
  position: fixed;
  left: 0;
  right: 0;
}
.single_inf_bottom_bg_shadow {
  height: 5px;
  box-shadow: 0 0 7px #939393;
}
@media screen and (min-width: 600px) {
  .single_inf_bottom_bg {
    display: block;
  }
}

/* carousel slide style */
.single_inf_recent_posts .slick-prev,
.single_inf_recent_posts .slick-next {
  width: 28px !important;
  height: 28px !important;
  border: 1px solid #355eff !important;
  border-radius: 3px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single_inf_recent_posts .slick-next:before,
.single_inf_recent_posts .slick-prev:before {
  color: #355eff !important;
  font-size: 16px !important;
  font-family: inherit !important;
}
.single_inf_recent_posts .slick-prev:before {
  content: "<" !important;
}
.single_inf_recent_posts .slick-next:before {
  content: ">" !important;
}
.single_inf_recent_posts .slick-slide {
  margin: 0 10px;
}
.single_inf_recent_posts .slick-track {
  padding: 20px 0;
}
.single_inf_recent_posts .slick-dots li.slick-active button:before {
  color: #ff6104 !important;
}
.single_inf_recent_posts .slick-track {
  display: flex !important;
}
.single_inf_recent_posts .slick-slide {
  height: inherit !important;
}

.single_inf_brand_reviews .single_inf_brand_review {
  margin: 0 10px;
}
.single_inf_brand_reviews .slick-list {
  padding: 10px 0;
}
.single_inf_brand_reviews .slick-arrow {
  width: 28px;
  height: 28px;
  border: 1px solid #355eff;
  border-radius: 5px;
  z-index: 1;
  box-shadow: 0 0 10px rgb(0 0 0/16%);
}
.single_inf_brand_reviews .slick-arrow::before {
  content: "";
  border-top: 2px solid #355eff;
  border-right: 2px solid #355eff;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 10px;
}
.single_inf_brand_reviews .slick-prev {
  left: -3px;
}
.single_inf_brand_reviews .slick-next {
  right: -5px;
}
.single_inf_brand_reviews .slick-prev::before {
  transform: rotate(-135deg);
  left: 11px;
}
.single_inf_brand_reviews .slick-next::before {
  transform: rotate(45deg);
  left: 8px;
}
.single_inf_brand_reviews .slick-dots li {
  margin: 0;
}
.single_inf_brand_reviews .slick-dots button::before {
  font-size: 10px;
}
.single_inf_brand_reviews .slick-dots li.slick-active button:before {
  color: #ff6104;
}
