* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*font-family: '';*/
}

@font-face {
  font-family: "CairoBold";
  src: url(fonts/Cairo-Bold-BF643384ee22aa6.ttf);
}

@font-face {
  font-family: "CairoBlack";
  src: url(fonts/Cairo-Black-BF643384eef038f.ttf);
}

@font-face {
  font-family: "Cairo";
  src: url(fonts/Cairo-ExtraBold-BF643384ef234bf.ttf);
}

@font-face {
  font-family: "CairoRegular";
  src: url(fonts/Cairo-Regular-BF643384ef31630.ttf);
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url(fonts/IBMPlexSans-Regular.ttf);
}

@font-face {
  font-family: "blinkmacsystemfont-medium";
  src: url(fonts/blinkmacsystemfont-medium.ttf);
}

@font-face {
  font-family: "blinkmacsystemfont-semibold";
  src: url(fonts/blinkmacsystemfont-semibold.ttf);
}

@font-face {
  font-family: "blinkmacsystemfont-black";
  src: url(fonts/blinkmacsystemfont-black.ttf);
}

@font-face {
  font-family: "blinkmacsystemfont-heavy";
  src: url(fonts/blinkmacsystemfont-heavy.ttf);
}

@font-face {
  font-family: "blinkmacsystemfont-bold";
  src: url(fonts/blinkmacsystemfont-bold.ttf);
}

:root {
  --grey: #f3f2f7;
  --black: #17161c;
  --yellow: #ffcc29;
  --purple: #712ef5;
  --lightpurple: #f1e9fd;
  --lightgrey: #888596;
  --lightbluebg: #e9f0fd;
  --lightblue: #2e80fd;
}

.navbar {
  background: rgb(255, 255, 255);
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 50px;
}

.TTSLOGO {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 2rem;
  width: 122px;
  height: 46.5555555556px;
  margin-top: 30px;
  z-index: 999;
}

.TTSLOGOa {
  z-index: 999;
  transform: translateX(25px);
  filter: brightness(0) saturate(100%);
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
  margin: 25px;
}

.navbar__links {
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 1rem;
  height: 20px;
  width: 60px;
  margin: 0px;
  margin-top: 30px;
  font-size: 16px;
  font-family: "CairoBlack";
  letter-spacing: 1px;
  background-color: transparent;
  transition: all 0.3s ease;
}

.navbar__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  height: 100%;
  width: 140px;
  margin-top: 30px;
  font-size: 16px;
  font-family: "CairoBlack";
  letter-spacing: 1px;
  border: none;
  outline: none;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 9px;
  margin-left: 30px;
  margin-right: 25px;
  transition: all 0.3s ease;
}

.button:hover {
  background: var(--purple);
  transition: all 0.3s ease;
  color: white;
  box-shadow: 7px 5px 56px -14px var(--purple);
}

.navbar__links:hover {
  background-color: var(--yellow);
  color: var(--black);
  width: 60px;
  height: 20px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .TTSLOGO {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 2rem;
    width: 122px;
    height: 46.5555555556px;
    margin-top: 30px;
    z-index: 999;
    margin-left: 0px;
  }

  .navbar {
    background: white;
  }

  .navbar__menu {
    display: inline;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
    opacity: 0;
    background: white;
    padding-top: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 100px 100px -20px,
      rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }

  .navbar__menu.active {
    background-color: rgb(255, 255, 255);
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 50vh;
    font-size: 1.6rem;
  }

  #navbar__logo {
    padding-left: 25px;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #fff;
  }

  .navbar__item {
    width: 100%;
    padding: 0;
    text-align: left;
    margin: 0px;
  }

  .navbar__links {
    text-align: left;
    padding: 2rem;
    padding-left: 20px;
    padding-right: 0px;
    width: 100%;
    display: table;
    background-color: white;
    font-size: 18px;
    margin: 0px;
  }

  .navbar__links:hover {
    text-align: left;
    padding: 2rem;
    padding-left: 20px;
    padding-right: 0px;
    width: 100%;
    display: table;
    background-color: var(--grey);
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
    transform: translateY(20px);
  }
  .navbar__btn {
    padding-bottom: 2rem;
    padding-top: 100px;
    background-color: white;
  }

  .button {
    display: flex;
    justify-content: center;
    align-items: left;
    width: 100%;
    height: 80px;
    font-size: 20px;
  }

  .button:hover {
    background: var(--purple);
    transition: all 0.3s ease;
    color: white;
    box-shadow: 7px 5px 56px -14px var(--purple);
  }

  .navbar__toggle .bar {
    display: block;
    cursor: pointer;
    background-color: var(--black);
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Hero Section*/

.main__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-self: center;
  margin: auto auto;
  height: 100vh;
  background-color: transparent;
  z-index: 1;
  width: 100vw;
  max-width: clamp(250px, 83.333vw, 1600px);
  padding-bottom: 0px;
  transform: translateY(-90px);
}

.upcoming {
  color: var(--purple);
  width: clamp(160px, 7.813vw, 200px);
  height: 45px;
  border: none;
  background-color: var(--lightpurple);
  border-radius: 10px;
  font-size: clamp(13px, 0.664vw, 17px);
  font-family: "Cairo";
  letter-spacing: 1px;
}

.released {
  color: var(--lightblue);
  width: clamp(160px, 7.813vw, 200px);
  height: 45px;
  border: none;
  background-color: var(--lightbluebg);
  border-radius: 10px;
  font-size: clamp(13px, 1.042vw, 20px);
  font-family: "Cairo";
  letter-spacing: 1px;
}

.archived {
  color: #5e5e5e;
  width: clamp(160px, 7.813vw, 200px);
  height: 45px;
  border: none;
  background-color: #5e5e5e44;
  border-radius: 10px;
  font-size: clamp(13px, 0.664vw, 17px);
  font-family: "Cairo";
  letter-spacing: 1px;
}

.main__content {
  width: clamp(250px, 88.542vw, 600px);
  margin-top: 100px;
  height: auto;
}

.main__content h1 {
  padding-top: clamp(12px, 0.781vw, 15px);
  font-family: "CairoBlack";
  line-height: clamp(60px, 4.688vw, 90px);
  font-size: clamp(70px, 4.688vw, 90px);
  width: auto;
}

.main__content p {
  margin-top: 25px;
  font-family: "IBM Plex Sans";
  font-size: clamp(17px, 1vw, 25px);
  color: #17161c;
  max-width: auto;
  height: auto;
}

.dl {
  margin-top: 35px;
  width: 350px;
}

.google__play {
  height: auto;
  width: auto;
  border: none;
  margin-right: 15px;
  background-color: transparent;
  cursor: pointer;
}

.google__play--img {
  height: 52.3px;
  width: 157px;
}

.app__store {
  height: auto;
  width: auto;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.app__store--img {
  height: 52.3px;
  width: 157px;
}

.main__img--container {
  margin-top: 50px;
}

.image-mask {
  mask-image: url("images/app_bg.png");
}

#app__icon {
  width: clamp(250px, 44.271vw, 850px);
}

.info {
  margin-top: 35px;
  display: flex;
  height: auto;
  width: auto;
  font-size: 10px;
}

.info h2 {
  font-size: clamp(12px, 0.885vw, 17px);
  font-family: "CairoBold";
  letter-spacing: 1px;
  color: var(--lightgrey);
  width: auto;
  height: 100%;
  text-align: center;
}

.info span {
  font-size: clamp(13px, 1.042vw, 20px);
  font-family: "CairoBlack";
  color: var(--black);
  letter-spacing: 1px;
}

.dash {
  margin-left: clamp(5px, 3.906vw, 75px);
  margin-right: clamp(5px, 3.906vw, 75px);
  transform: translateY(clamp(6px, 0.677vw, 13px));
  width: clamp(1px, 0.13vw, 2.5px);
  height: 35px;
  background-color: rgb(217, 217, 217);
}

@media screen and (max-width: 1200px) {
  .main__container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: auto;
    height: auto;
  }
  .main__content {
    transform: translateY(-90px);
  }
  #app__icon {
    width: clamp(250px, 44.271vw, 850px);
    margin-top: 50px;
  }
}

/*--------------------about--------------------*/

.tss__mini--logo {
  width: 50px;
}

.about__card {
  margin-right: 25px;
  margin-left: 25px;
}

.about {
  width: clamp(350px, 80vw, 950px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 120px;
}

.about h1 {
  margin-top: 3px;
  font-family: "blinkmacsystemfont-black";
  font-size: clamp(45px, 6vw, 65px);
  letter-spacing: 1px;
}

.about h2 {
  margin-top: clamp(35px, 4vw, 50px);
  font-family: "blinkmacsystemfont-black";
  font-size: clamp(30px, 4vw, 40px);
}

.about p {
  margin-top: 5px;
  font-family: "blinkmacsystemfont-medium";
  font-size: clamp(15px, 3vw, 25px);
  color: #7d7d7d;
  letter-spacing: 1px;
}

.about span {
  font-family: "blinkmacsystemfont-semibold";
}

/*--------------------Games--------------------*/
.title__main {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  font-family: "blinkmacsystemfont-black";
  font-size: clamp(14px, 2vw, 16px);
}

.our__game--container {
  display: grid;
  justify-content: center;
  margin: 0 auto;
  width: auto;
  grid-template-columns: repeat(auto-fit, 220px);
  column-gap: 50px;
  padding-left: 25px;
  padding-right: 25px;
}

.our__game--card {
  display: grid;
  justify-content: center;
  width: 200px;
  height: 200px;
  background-color: #f9f9f9;
  margin-top: 50px;
  margin-bottom: 100px;
  border-radius: 30px;
  box-shadow: rgba(199, 199, 199, 0.5) 0px 4px 12px;
}

.our__game--card img:hover {
  display: grid;
  justify-content: center;
  width: 250px;
  height: 250px;
  background-color: #f9f9f9;
  margin-top: -25px;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 12px;
  transition: all 0.36s ease;
}

.game__title {
  font-family: "blinkmacsystemfont-heavy";
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  color: #323232;
  letter-spacing: 1px;
}

.cs__title {
  font-family: "blinkmacsystemfont-heavy";
  font-size: 14px;
  text-align: center;
  margin-top: 14px;
  color: #9a9a9a;
  letter-spacing: 1px;
}

.our__game--card h1 {
  font-family: "blinkmacsystemfont-black";
  width: 200px;
  height: 200px;
  font-size: 100px;
  text-align: center;
  line-height: 200px;
  color: #323232;
}

.app__icon {
  width: 200px;
  height: 200px;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.Game__Name {
  text-decoration: none;
}

@media screen and (max-width: 1600px) {
  .our__game--container {
    display: grid;
    justify-content: center;
    margin: 0 auto;
    width: auto;
    grid-template-columns: repeat(auto-fit, 200px);
    column-gap: 50px;
    padding-left: 25px;
  }

  .our__game--card {
    width: 200px;
    height: 200px;
    background-color: #f9f9f9;
    margin-top: 75px;
    border-radius: 25px;
    box-shadow: rgba(199, 199, 199, 0.5) 0px 4px 12px;
  }
}

/*--------------------Contact--------------------*/
.contect__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(1200px, 89.583vw, 1720px);
  margin: 100px auto;
  zoom: 100%;
}

.contact__us__left {
  width: clamp(1200px, 89.583vw, 1720px);
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 60px;
}

.contact__us__right {
  margin-bottom: 60px;
}

.mini__logo__contact {
  width: 50px;
  margin-bottom: 5px;
  margin-top: 10px;
}

.h1__label {
  font-size: clamp(45px, 5vw, 75px);
  line-height: clamp(45px, 5vw, 75px);
  font-family: "blinkmacsystemfont-heavy";
  width: clamp(300px, 45vw, 700px);
}

.p__text {
  margin-top: clamp(15px, 2vw, 35px);
  font-size: clamp(20px, 3vw, 25px);
  font-family: "blinkmacsystemfont-medium";
  width: clamp(300px, 45vw, 600px);
  color: #848484;
}

.main__button {
  text-decoration: none;
  color: inherit;
}

.h2__label {
  margin-top: 30px;
  font-size: clamp(13px, 2vw, 15px);
  font-family: "blinkmacsystemfont-black";
  width: clamp(300px, 45vw, 700px);
}

.socials button {
  width: clamp(40px, 5vw, 60px);
  height: clamp(40px, 5vw, 60px);
  border: none;
  border-radius: 22%;
  background-color: #ebebeb;
  margin-right: 20px;
  margin-top: clamp(25px, 3.5vw, 50px);
  transition: all 0.3s ease;
  color: black;
}

.socials button:hover {
  width: clamp(40px, 5vw, 60px);
  height: clamp(40px, 5vw, 60px);
  border: none;
  border-radius: 22%;
  background-color: #712ef5;
  margin-right: 20px;
  margin-top: px;
  transition: all 0.3s ease;
  color: white;
  cursor: pointer;
}

.fa-instagram {
  font-size: clamp(30px, 4vw, 40px);
}
.fa-tiktok {
  font-size: clamp(30px, 4vw, 40px);
}
.fa-x-twitter {
  font-size: clamp(30px, 4vw, 40px);
}
.fa-youtube {
  font-size: clamp(30px, 4vw, 40px);
}
.fa-facebook-f {
  font-size: clamp(30px, 4vw, 40px);
}

.contact__us__right {
  background-color: #f9f9f9;
  border-radius: 20px;
  width: clamp(400px, 46vw, 600px);
  margin-right: 50px;
}

.contact__us__right__container {
  margin-left: 25px;
  margin-right: 25px;
}

.contact__us {
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 25px;
  margin-right: 25px;
  font-size: 25px;
  font-family: "blinkmacsystemfont-black";
}

.inputBox {
  margin-top: 25px;
}

.input__label {
  border: solid;
  border-color: #cccccc;
  border-width: 1px;
  height: 45px;
  width: clamp(200px, 78vw, 450px);
  border-radius: 10px;
  font-size: 16px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 25px;
  margin-right: 25px;
  font-family: "blinkmacsystemfont-semibold";
  letter-spacing: 1px;
}

.text__area {
  border: solid;
  border-color: #cccccc;
  border-width: 1px;
  margin-left: 25px;
  margin-right: 25px;
  border-radius: 10px;
  width: clamp(200px, 80vw, 450px);
  min-width: clamp(200px, 80vw, 450px);
  max-width: clamp(200px, 80vw, 450px);
  height: clamp(120px, 9vh, 150px);
  min-height: clamp(120px, 9vh, 150px);
  padding: 20px 20px;
  font-size: 16px;
  font-family: "blinkmacsystemfont-semibold";
  letter-spacing: 1px;
}

.name__label {
  font-size: 18px;
  font-family: "blinkmacsystemfont-bold";
  margin-bottom: 10px;
  margin-left: 25px;
  margin-right: 25px;
  color: black;
}

.name__label span {
  font-size: 18px;
  font-family: "blinkmacsystemfont-bold";
  margin-bottom: 10px;
  color: rgb(187, 187, 187);
}

.wrapper {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-left: 25px;
  margin-right: 25px;
}

.inputBox label {
  margin-left: 25px;
  margin-right: 25px;
  font-size: 17px;
  font-family: "blinkmacsystemfont-semibold";
  color: #151515;
  cursor: pointer;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  height: 30px;
  width: 30px;
  background-color: #ffffff;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cccccc;
}

input[type="checkbox"]::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  color: white;
  font-size: 15px;
  display: none;
}

input[type="checkbox"]:hover {
  background-color: #f7f7f7;
}

input[type="checkbox"]:checked {
  background-color: #712ef5;
}

input[type="checkbox"]:checked::after {
  display: block;
}

.sumbit__button {
  margin-top: 80px;
  margin-bottom: 10px;
  margin-left: 25px;
  margin-right: 25px;
  width: clamp(200px, 80vw, 450px);
  height: 65px;
  font-size: 20px;
  font-family: "blinkmacsystemfont-heavy";
  letter-spacing: 1px;
  background-color: #712ef5;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.agree__label {
  margin-top: 25px;
  margin-bottom: 25px;
  margin-left: 25px;
  margin-right: 25px;
  font-family: "blinkmacsystemfont-semibold";
  font-size: 0px;
  color: #712ef5;
}

@media screen and (max-width: 1200px) {
  .contect__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: auto;
    height: auto;
  }

  .contact__us__left {
    margin-top: 50px;
    width: clamp(200px, 90vw, 500px);
    margin-left: 00px;
    margin-right: 0px;
  }

  .contact__us__right {
    border-radius: 20px;
    width: clamp(200px, 90vw, 500px);
    margin-top: 50px;
    margin-right: 0px;
  }

  .contact__us__right__container {
    margin-left: 0px;
    margin-right: 0px;
  }
}

@media screen and (max-width: 1500px) {
  .contect__container {
    zoom: 90%;
  }
}

/*---------------------Privacy---------------------*/
.privacy__main {
  width: clamp(350px, 80vw, 950px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transform: translateY(60px);
}

.privacy__container {
  margin-bottom: 120px;
}

.privacy__title {
  margin-top: 3px;
  font-family: "blinkmacsystemfont-black";
  font-size: 60px;
  letter-spacing: 1px;
}

.privacy__label {
  margin-top: clamp(35px, 4vw, 50px);
  font-family: "blinkmacsystemfont-black";
  font-size: clamp(30px, 4vw, 40px);
}

.last__updated {
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: "blinkmacsystemfont-black";
  font-size: 20px;
  color: #7d7d7d;
}

.privacy__p {
  margin-top: 5px;
  font-family: "blinkmacsystemfont-medium";
  font-size: 20px;
  color: #7d7d7d;
  letter-spacing: 1px;
}

.span__text {
  font-family: "blinkmacsystemfont-bold";
  font-size: 20px;
  color: #7d7d7d;
  letter-spacing: 1px;
}

.privacy__list {
  margin-top: 25px;
  margin-bottom: 10px;
  font-family: "blinkmacsystemfont-black";
  font-size: 23px;
}

.policy__point {
  margin-top: 25px;
  font-family: "blinkmacsystemfont-bold";
  font-size: 18px;
  margin-left: 35px;
  color: #7d7d7d;
}

.policy__list__point {
  margin-top: 15px;
}

/*---------------------TERMS---------------------*/
.terms__main {
  width: clamp(350px, 80vw, 950px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transform: translateY(60px);
  margin-bottom: 120px;
}

.terms__title {
  margin-top: 3px;
  font-family: "blinkmacsystemfont-black";
  font-size: 60px;
  letter-spacing: 1px;
}

.terms__label {
  margin-top: clamp(35px, 4vw, 50px);
  font-family: "blinkmacsystemfont-black";
  font-size: clamp(30px, 4vw, 40px);
}

.terms__p {
  margin-top: 5px;
  font-family: "blinkmacsystemfont-medium";
  font-size: 20px;
  color: #7d7d7d;
  letter-spacing: 1px;
}

/*---------------------Press---------------------*/
.press__main {
  width: clamp(350px, 80vw, 950px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

.press__title {
  margin-top: 3px;
  font-family: "blinkmacsystemfont-black";
  font-size: 30px;
  letter-spacing: 1px;
  text-align: center;
}

.press-des {
  margin-top: 5px;
  font-family: "blinkmacsystemfont-medium";
  font-size: 20px;
  color: var(--black);
  letter-spacing: 1px;
  text-align: center;
}

.in__50__words {
  margin-top: clamp(35px, 4vw, 50px);
  font-family: "blinkmacsystemfont-black";
  font-size: 35px;
}

.words {
  margin-top: 5px;
  font-family: "blinkmacsystemfont-medium";
  font-size: 20px;
  color: #7d7d7d;
  letter-spacing: 1px;
}

.download-btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #712ef5;
  color: white;
  padding: 12px 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  font-size: 16px;
  font-family: "CairoBlack";
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.download-btn i {
  font-size: 1.2rem;
}

.download-btn:hover {
  transition: all 0.3s ease;
  box-shadow: 7px 5px 56px -14px var(--purple);
}

/*---------------------Thank-You---------------------*/

.thankyou__container {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center; /* vertical */
  height: 70vh;
  margin: 0;
}

.thankyou__main {
  width: auto;
  height: auto;
  margin-right: 50px;
  margin-left: 50px;
}

.thanks_label {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center; /* vertical */
  margin: 0;
  text-align: center;
  font-family: "blinkmacsystemfont-heavy";
  font-size: clamp(20px, 8vw, 42px);
  margin-left: 25px;
  margin-right: 25px;
}

.thanks_message {
  text-align: center;
  margin-top: 25px;
  font-family: "blinkmacsystemfont-semibold";
  color: #7d7d7d;
  font-size: clamp(15px, 6vw, 24px);
  margin-left: 25px;
  margin-right: 25px;
}

.back-home_label {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  height: 100%;
  width: 140px;
  margin-top: 30px;
  font-size: 16px;
  font-family: "CairoBlack";
  border: none;
  outline: none;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 9px;
  margin-left: 30px;
  margin-right: 25px;
  transition: all 0.3s ease;
}

.back-home_label:hover {
  background: var(--purple);
  transition: all 0.3s ease;
  color: white;
  box-shadow: 7px 5px 56px -14px var(--purple);
}

.back-container {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center; /* vertical */
  margin: 0;
  text-align: center;
}

/*---------------------FOOTER---------------------*/

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.page-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

/* Your footer */
.footer4 {
  text-align: center;
  background-color: #f6f7f9;
  padding: 20px;
}

.brand {
  width: 60px;
  margin-top: 50px;
}

.footer4 .menu li {
  display: inline-block;
  margin: 25px;
  font-size: 15px;
  text-align: center;
}

.footer4 .menu li a {
  color: #272727;
  font-family: "blinkmacsystemfont-heavy";
  text-decoration: none;
  background-color: transparent;
  transition: all 0.6s ease;
}

.footer4 .menu li a:hover {
  color: #272727;
  font-family: "blinkmacsystemfont-heavy";
  text-decoration: none;
  background-color: var(--yellow);
  transition: all 0.6s ease;
}

.footer4 .media-icons {
  margin: 1.5rem 0;
}

.footer4 .media-icons li {
  display: inline-block;
}

.footer4 .media-icons li a {
  text-decoration: none;
}

.footer4 .media-icons li a i {
  font-size: 25px;
  margin-right: 25px;
  margin-top: 10px;
  color: #151515;
  background-color: #ffffff;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer4 .media-icons li a i:hover {
  font-size: 25px;
  margin-right: 25px;
  margin-top: 10px;
  color: #ffffff;
  background-color: #712ef5;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.copyright__text {
  font-size: 13px;
  font-family: "blinkmacsystemfont-heavy";
  padding-bottom: 25px;
}
