<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* common css ******************************************************************************/

@font-face {
  font-family: "Anton-Regular";

  src: url("../fonts/Anton-Regular.ttf");
}

@font-face {
  font-family: "Nirmala-R";

  src: url("../fonts/Nirmala.ttf");
}

@font-face {
  font-family: "Nirmala-Bold";

  src: url("../fonts/nirmala-bold.ttf");
}

@font-face {
  font-family: "MYRIADPRO-REGULAR";

  src: url("../fonts/MYRIADPRO-REGULAR.OTF");
}

@font-face {
  font-family: "MYRIADPRO-BOLD";

  src: url("../fonts/MYRIADPRO-BOLD.OTF");
}

:root {
  --white: #fff;

  --black: #000;

  --yellow: #f5bf5a;

  --blue: #ffcc29;

  --skyblue: rgb(10 195 255);
}

.white {
  color: var(--black);
}

.black {
  color: var(--black);
}

.white-bg {
  background-color: var(--white);
}

.grey-bg {
  background-color: var(--grey-F2F2F7);
}

.green-gradient {
  background: url("../images/btn-bg.png");

  background-size: cover;

  background-position: center;
}

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;

  -moz-box-sizing: border-box;

  -webkit-box-sizing: border-box;
}

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

.common::after {
  content: "";

  position: absolute;

  width: 100%;

  height: 100%;

  left: 0;

  top: 0;

  background: var(--black);
}

h1,
h2,
h3.h4,
h5,
h6 {
  font-weight: 100;
}

p {
  margin: 0;

  padding: 0;

  font-size: 20px;

  /* line-height: 25px; */

  /* margin-bottom: 25px; */

  color: var(--black_343436);
}

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;

  text-transform: capitalize;

  display: inline-block;

  line-height: 1.2;

  color: inherit;

  font-family: inherit;
}

span {
  display: inline-block;
}

img,
video {
  max-width: 100%;

  display: block;
}

/* **************************************************** */

body {
  max-width: 480px;

  margin: 0 auto;

  height: 100%;

  font-family: "Nirmala-R";
}

h3 {
  font-size: 22px;

  color: #171835;

  font-weight: 700;

  text-transform: uppercase;

  margin-bottom: 20px;

  font-family: "MYRIADPRO-BOLD";
}

.main {
  background-image: url("../images/banner-bg.png");

  height: 100dvh;

  padding: 50px 30px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  gap: 15px;

  position: relative;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  overflow: hidden;

  color: var(--white);
}

.iti,
.iti--allow-dropdown {
  color: #000 !important;
  width: 100%;
  margin-bottom: 15px;
}

.iti__country-list {
  max-width: 324px !important;
  scrollbar-width: none;
}

.logo-box {
  max-width: 60%;

  margin-inline: auto;
}

.join-form {
  padding: 20px;

  background: var(--blue);
}

.boxes {
  width: 80%;

  display: flex;

  flex-direction: column;

  gap: 20px;
}

.boxes .box {
  padding: 10px;

  text-align: center;

  flex-shrink: 0;

  font-size: 24px;

  color: var(--black);

  font-family: "Nirmala-Bold";

  text-transform: uppercase;
}

input.cmn-input {
  display: block;

  width: 100%;

  padding: 10px;

  background: var(--white);

  border: 0;

  font-size: 16px;

  color: var(--black);

  margin-bottom: 20px;
}

input.submit-btn {
  background: #171835;

  color: var(--white);

  padding: 10px 25px;

  display: block;

  margin: 0 auto;

  border-radius: 15px;

  border: 0;

  font-size: 16px;

  font-weight: 900;

  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.thank-content {
  text-align: center;
  margin: 100px 0 auto;
}

.thank-content h2 {
  font-size: 32px;

  font-weight: 700;
}
</pre></body></html>