@font-face {
  font-family: "SC";
  src: url("../fonts/squeresCondensed/TTSquaresCondensed-BlackItalic.ttf");
}
@font-face {
  font-family: "DNB";
  src: url("../fonts/din-next-w1g-bold.otf");
}
@font-face {
  font-family: "DN";
  src: url("../fonts/din-next-w1g.otf");
}
* {
  font-family: "DN";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #161a24;
}

nav {
  background: -webkit-linear-gradient(
    -90deg,
    #0a0f28,
    rgba(10, 15, 40, 0.5) 70%,
    rgba(10, 15, 40, 0)
  );
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  top: 0;
  position: fixed;
  padding: 0 3vw;
  z-index: 101;
}
* {
  margin: 0;
  padding: 0;
}

/* Hide the default scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #161a24;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7115d7 15%, #ef54d5 100%);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #7115d7 30%, #ef54d5 100%);
}

/* Icon 1 */

#nav-icon1 {
  width: 30px;
  height: 35px;
  position: relative;
  z-index: 101;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 12px;
}

#nav-icon1 span:nth-child(3) {
  top: 24px;
}

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

nav img {
  max-width: 100px;
}
section {
  overflow-x: hidden;
}
.menu {
  width: 20vw;
  background-color: #090b14;
  height: 100vh;
  padding: 0px 30px;
  gap: 15px;
  position: fixed;
  right: -20vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 100;
}
.filter {
  width: 100%;
  height: 100%;
  position: fixed;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 7;
  display: none;
}
.menu-item {
  color: white;
  font-family: "DNB";
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.menu-item:hover {
  color: #7115d7;
}
.nav-burger {
  width: 25px;
  height: 20px;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  z-index: 12;
  justify-content: space-between;
}
.nav-burger-line {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background-color: white;
}
#start {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.start-bg {
  height: 100vh;
  width: 100%;
  z-index: -1;
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
}
.hero {
  position: absolute;
  height: 100vh;
  bottom: 0vh;
  z-index: 2;
}
.second-hero {
  right: -6vw;
}
.first-hero {
  left: -6vw;
}
.hero-bottom-fade {
  width: 100%;
  background-color: #171c28;
  height: 2vh;
  position: absolute;
  bottom: -2vh;
  z-index: 3;
  background: linear-gradient(180deg, #171c28 0%, #161a24 50%);
  box-shadow: 0px -10px 10px #171c28;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 90vh;
  z-index: 7;
  justify-content: space-between;
}
.content-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 4;
  cursor: pointer;
  gap: 5px;
  padding-bottom: 5vh;
}
.content-bottom-text {
  color: #929399;
  text-transform: uppercase;
  font-size: 12px;
}
.scroll-icon {
  height: 50px;
}
.content-title {
  color: white;
  font-size: 8vh;
  font-family: "DNB";
}
.content-text {
  color: white;
  font-size: 14px;
  width: 35vw;
  text-align: center;
}
.content-btn {
  width: 200px;
  height: 50px;
  margin-top: 30px;
  background: rgb(239, 84, 213);
  background: linear-gradient(
    90deg,
    rgba(113, 22, 215, 1) 15%,
    rgba(239, 84, 213, 1) 100%
  );
  border: none;
  color: white;
  font-family: "DN";
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.content-btn:hover {
  transform: scale(0.9);
}
#program {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.program-content {
  width: 60vw;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
}
.program-heading {
  padding-top: 8vh;
  color: rgba(113, 22, 215, 1);
  font-family: "DNB";
  font-size: 5vh;
  margin-bottom: 10px;
}
#program p {
  text-align: center;
  color: white;
  font-size: 14px;
}
#program p span {
  color: #ef54d5;
}
.program-tables {
  display: flex;
  width: 100%;
  margin-top: 7vh;
  justify-content: space-between;
}
.table {
  padding: 15px;
  border: 2px solid #7115d7;
  width: 48%;
  min-width: 300px;
}
.table-content-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 2px 0px;
}
.table-item {
  display: flex;

  gap: 5px;
  align-items: center;
  margin-top: 15px;
}
.table-item-second {
  width: 50%;
}

.table-description {
  color: white;
  font-family: "DNB";
  margin-top: 10px;
}
.table-item img {
  height: auto;
  width: 20px;
}
.table p {
  white-space: nowrap;
}
.table-heading {
  font-size: 26px;
  font-family: "DNB";
  color: #7115d7;
}
#second-table {
  border: 2px solid #ef54d5;
}
#second-table .table-heading {
  color: #ef54d5;
}
.program-bg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#why {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;

  background-position: -200px;
}
.why-heading {
  padding-top: 8vh;
  font-family: "DNB";
  text-transform: uppercase;
  color: #7115d7;
  font-size: 5vh;
  margin-bottom: 3vh;
}
.why-content {
  display: flex;
  flex-direction: column;
  width: 60vw;
  gap: 15px;
}
.why-content-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.why-content-item {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  min-height: 160px;
}
.why-item-header {
  color: white;
  font-family: "DNB";
  text-align: center;
}
.why-item-desk {
  color: #acadb1;
  text-align: center;
  width: 80%;
}
#how {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.how-heading {
  padding-top: 10vh;
  color: #ef54d5;
  font-family: "DNB";
  text-transform: uppercase;
  font-size: 5vh;
  margin-bottom: 3vh;
}
.how-content {
  width: 60vw;
  display: flex;
  justify-content: space-between;
}
.how-content-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 33%;
}
.how-item-title {
  color: #7115d7;
}
.how-item-desk {
  color: #929399;
  text-align: center;
  width: 80%;
}
#welcome {
  overflow: visible;
  margin-top: 15vh;
  width: 100%;
  height: 240px;
  background: linear-gradient(90deg, #7115d7 15%, #ef54d5 100%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  align-items: center;
  /* transform: rotate(-1deg); */
}

.welcome-heading {
  font-family: "DNB";
  color: white;
  text-transform: uppercase;
  font-size: 4vh;
  margin-bottom: 15px;
  /* transform: rotate(1deg); */
}
.welcome-text {
  width: 40vw;
  text-align: center;
  color: white;
  font-size: 17px;
  /* transform: rotate(1deg); */
}
.welcome-img {
  position: absolute;
  left: 5vw;
  max-width: 250px;
  bottom: -5%;
}
.welcome-img-right {
  left: unset;
  right: 5%;
  bottom: 20%;
}
#trust {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-heading {
  padding-top: 15vh;
  color: white;
  font-family: "DNB";
  font-size: 5vh;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.trust-content {
  width: 60vw;
  display: flex;
  justify-content: space-between;
}
.trust-content-item {
  background-color: #1b213b;
  display: flex;
  flex-direction: column;
  height: fit-content;
  padding: 20px;
  width: 32%;
  position: relative;
}
.trust-item-stars {
  display: flex;
  gap: 5px;
}
.trust-item-stars img {
  height: 20px;
}
.trust-item-text {
  color: white;
  margin-top: 15px;
}
.author-triangle {
  position: absolute;
  bottom: -13px;
  right: 10px;
  background-color: #1b213b;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 2;
  height: 20px;
  width: 40px;
}
.author-text {
  bottom: -35px;
  cursor: pointer;
  z-index: 9;
  position: absolute;
  right: 0px;
  color: #7115d7;
}
.trust-pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 10vh;
}
.pagination-item {
  color: #7115d7;
  padding: 4px 6px;
  z-index: 9;
  cursor: pointer;
  background: #1b213b;
}
.pagination-item.active {
  border: 1px solid #7115d7;
}
.trust-btn {
  width: 200px;
  height: 50px;
  box-shadow: none;
  margin-top: 30px;
  background: rgb(239, 84, 213);
  background: linear-gradient(90deg, #7115d7 15%, #ef54d5 100%);
  border: none;
  color: white;
  font-family: "DN";
  font-size: 14px;
  cursor: pointer;
  z-index: 7;
  text-transform: uppercase;
  transition: transform 0.2s ease-in-out;
}
.trust-btn:hover {
  transform: scale(0.9);
}
#news {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-heading {
  padding-top: 15vh;
  color: white;
  font-size: 5vh;
  font-family: "DNB";
  text-transform: uppercase;
  margin-bottom: 20px;
}
.news-content {
  display: flex;
  flex-direction: column;
  width: 60vw;
  align-items: center;
  gap: 10px;
}
.news-content-item {
  border: 1px solid #ef54d5;
  padding: 40px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-item-left,
.news-item-right {
  width: 50%;
  display: flex;
  justify-content: center;
}
.news-content-item-alt {
  border: 1px solid #7115d7;
}

.news-content-item img {
  max-width: 400px;
  height: auto;
  width: 100%;
}
.news-item-left {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-item-title {
  text-transform: uppercase;
  color: white;
  font-family: "DNB";
}
.news-item-desk {
  color: white;
  margin-top: 30px;
}
.news-item-link {
  text-transform: uppercase;
  color: #ef54d5;
  margin-top: 20px;
  text-decoration: none;
}
.news-item-link:hover {
  text-decoration: underline;
}
.news-content-item-alt .news-item-link {
  color: #7115d7;
}
.news-btn {
  width: 200px;
  height: 50px;
  box-shadow: none;
  margin-top: 30px;
  background: rgb(239, 84, 213);
  background: linear-gradient(90deg, #7115d7 15%, #ef54d5 100%);
  border: none;
  color: white;
  font-family: "DN";
  font-size: 14px;
  cursor: pointer;
  z-index: 7;
  text-transform: uppercase;
  transition: transform 0.2s ease-in-out;
}
.news-btn:hover {
  transform: scale(0.9);
}
#partners {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners-heading {
  padding-top: 15vh;
  color: #7115d7;
  font-size: 5vh;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "DNB";
}
.partners-content {
  width: 60vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.partners-content-row {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 15px 0px;
}
.partners-content-row-last {
  width: 60%;
}
.partners-content-row img {
  max-width: 180px;
  width: 33%;
  object-fit: contain;
  height: auto;
  max-height: 40px;
}
#subscription {
  overflow: visible;
  margin-top: 15vh;
  width: 100%;
  height: 240px;
  background: linear-gradient(90deg, #7115d7 15%, #ef54d5 100%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  align-items: center;
  /* transform: rotate(-1deg); */
}

.subscription-heading {
  font-family: "DNB";
  color: white;
  text-transform: uppercase;
  font-size: 4vh;
  margin-bottom: 15px;
}

.subscription-text {
  display: flex;
  align-items: center;
}

.subscription-input {
  width: 100%;
  min-width: 450px;
  height: 60px;
  border: 1px solid #ef54d5;
  padding: 0 20px;
  font-family: "DN";
  font-size: 14px;
  cursor: pointer;
  z-index: 7;
  transition: transform 0.2s ease-in-out;
}
.subscription-btn {
  width: 220px;
  height: 60px;
  box-shadow: none;
  background: rgb(239, 84, 213);
  background: linear-gradient(90deg, #ef54d5 15%, #7115d7 100%);
  border: none;
  color: white;
  font-family: "DN";
  font-size: 14px;
  cursor: pointer;
  z-index: 7;
  text-transform: uppercase;
  transition: transform 0.2s ease-in-out;
}

#payout {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.payout-heading {
  color: #ef54d5;
  font-size: 5vh;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "DNB";
  padding-top: 15vh;
}
.payout-content {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.payout-content-row {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 15px 0px;
}
.payout-content-row-last {
  width: 60%;
}
.payout-content-row img {
  max-width: 150px;
  width: 33%;
  object-fit: contain;
  height: auto;
  max-height: 40px;
}
#contacts {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contacts-heading {
  padding-top: 15vh;
  color: white;
  font-size: 5vh;
  text-transform: uppercase;
  font-family: "DNB";
  margin-bottom: 20px;
}
.contacts-content {
  display: flex;
  width: 60%;
  justify-content: space-between;
}
.contacts-content-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33%;
  gap: 15px;
}
.contacts-content-item img {
  width: 60px;
}
.contacts-item-title {
  color: white;
  font-family: "DNB";
  text-transform: uppercase;
}
.contacts-item-link {
  color: white;
  cursor: pointer;
  font-size: 17px;
  cursor: pointer;
  z-index: 8;
  text-decoration: none;
}
.contacts-item-link:hover {
  text-decoration: underline;
}
#footer {
  margin-top: 15vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.footer-list {
  display: flex;
  gap: 15px;
  width: 80%;
  justify-content: center;
}
.footer-list img {
  height: 33px;
}
.footer-copyright {
  color: white;
  font-size: 18px;
  display: flex;
}
.footer-copyright-slash {
  margin: 0 5px;
}
.footer-social {
  display: flex;
  gap: 20px;
  margin-bottom: 3vh;
}
.footer-social img {
  height: 25px;
}
.trust-btn,
.news-btn {
  z-index: 8;
}
.link-terms {
  color: #7115d7;
  text-decoration: none;
}
.link-terms:hover {
  text-decoration: underline;
}
.link-policy {
  color: #ef54d5;
  text-decoration: none;
}
.link-policy:hover {
  text-decoration: underline;
}

#scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  z-index: 20;
}

#scrollToTop img {
  width: 100%;
  max-width: 36px;
  height: auto;
}

@media (max-width: 1300px) {
  .hero {
    height: 85vh;
  }
  .news-content-item img {
    max-width: 350px;
  }
}
@media (max-width: 1200px) {
  .hero {
    height: 80vh;
  }
  .welcome-img {
    max-width: 200px;
  }
}

@media (max-width: 1000px) {
  .hero {
    height: 70vh;
  }
  .content-bottom {
    padding-bottom: 2vh;
  }
  .content-text {
    width: 70vw;
  }
  .content-title {
    font-size: 6vh;
  }
  .content {
    height: 90vh;
  }
  .program-content,
  .why-content,
  .how-content,
  .welcome-text,
  .trust-content,
  .news-content,
  .partners-content,
  .payout-content,
  .contacts-content,
  .footer-content {
    width: 75vw;
  }
  .program-heading {
    font-size: 4vh;
  }
  .welcome-img {
    max-width: 150px;
    bottom: -20%;
  }
  .welcome-img-right {
    bottom: 70%;
    right: 5%;
  }
  .footer-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  #welcome {
    height: 315px;
    overflow: visible;
  }
}

@media (max-width: 850px) {
  .hero {
    height: 60vh;
  }
  .first-hero {
    left: -15vw;
  }
  .second-hero {
    right: -15vw;
  }
  .program-content,
  .why-content,
  .how-content,
  .welcome-text,
  .trust-content,
  .news-content,
  .partners-content,
  .payout-content,
  .contacts-content,
  .footer-content {
    width: 85vw;
  }
}

@media (max-width: 767px) {
  .program-content,
  .why-content,
  .how-content,
  .welcome-text,
  .trust-content,
  .news-content,
  .partners-content,
  .payout-content,
  .contacts-content,
  .footer-content {
    width: 95vw;
  }
  .hero {
    height: 50vh;
  }
  .menu {
    width: 60vw;
    right: -60vw;
  }
  #program {
    margin-top: 5vh;
  }
  .program-heading {
    min-width: 300px;
    text-align: center;
    font-size: 3vh;
  }
  .program-tables {
    flex-direction: column;
    gap: 3vh;
  }

  .table {
    width: 100%;
    min-width: unset;
  }
  .table-description {
    margin-top: 15px;
  }
  .table-item-second {
    width: 35%;
  }
  .table-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .news-content-item {
    width: auto;
  }
  .news-item-left,
  .news-item-right {
    max-width: 350px;
    width: auto;
  }
  #why {
    margin-top: 10vh;
  }
  .why-content-row {
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 15px;
  }
  .why-item-header {
    white-space: nowrap;
  }
  .why-item-desk,
  .how-item-desk {
    width: 200px;
  }
  .how-content-item,
  .why-content-item {
    width: 100%;
  }
  .how-content {
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 15px;
  }
  .trust-content {
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 50px;
  }
  .trust-content-item {
    width: 95%;
  }
  .news-content-item {
    flex-direction: column-reverse;
    overflow: hidden;
  }
  .subscription-input {
    min-width: 300px;
  }
  .partners-content {
    flex-direction: row;
  }
  .partners-content-row {
    flex-direction: column;
    width: 50%;
    gap: 25px;
  }
  .partners-content-row-last {
    flex-direction: row;
    gap: 0;
    width: 100%;
    padding: 0 10vw;
  }
  .partners-content-row img {
    width: auto;
    max-width: 140px;
    height: 30px;
  }
  .payout-content {
    flex-direction: row;
  }
  .payout-content-row {
    flex-direction: column;
    width: 50%;
    gap: 25px;
  }
  .payout-content-row-last {
    flex-direction: row;
    gap: 0;
    width: 100%;
    padding: 0 10vw;
  }
  .payout-content-row img {
    width: auto;
    max-width: 140px;
    height: 30px;
  }
  .contacts-content {
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 15px;
  }
}
@media (max-width: 550px) {
  .hero {
    height: 45vh;
  }
  .content {
    height: 70vh;
  }
  .second-hero {
    right: -10vw;
  }
  .first-hero {
    left: -10vw;
  }
  .content-title {
    font-size: 3vh;
  }
  .table-item-second {
    width: 55%;
  }
  .welcome-img-right {
    bottom: 85%;
  }
  .welcome-heading {
    font-size: 3vh;
  }
  .news-content-item img {
    width: 100%;
  }
  .welcome-img {
    max-width: 130px;
  }
  .welcome-text {
    padding: 0px 5vw;
  }
  .partners-heading {
    font-size: 3vh;
  }
  .subscription-heading {
    font-size: 3vh;
    text-align: center;
  }
  .subscription-text {
    flex-direction: column;
    align-items: center;
  }
  .subscription-input {
    min-width: 250px;
    padding: 0 10px;
  }
  .subscription-btn {
    margin-top: 10px;
    width: 200px;
    height: 50px;
  }
  .payout-heading {
    font-size: 3vh;
  }
  .contacts-heading {
    font-size: 3vh;
  }
  .news-heading {
    font-size: 3vh;
  }
  .trust-heading {
    font-size: 3vh;
  }
  .how-heading {
    font-size: 3vh;
  }
  .why-heading {
    font-size: 3vh;
  }
  .partners-content-row-last {
    padding: 0 5vw;
  }
  .payout-content-row-last {
    padding: 0 5vw;
  }
  .table-heading {
    font-size: 20px;
  }
  .footer-copyright {
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .hero {
    height: 30vh;
  }
  .partners-content-row img {
    max-width: 120px;
  }
  .payout-content-row img {
    max-width: 120px;
  }
  .footer-copyright {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-copyright-slash {
    display: none;
  }
}
