@keyframes full-size-popup {
  0% {
    transform: scale(0.05);
  }
  90% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

body {
  line-height: 1;
  margin: 0;
}

header,
section {
  display: block;
}

.visible {
  display: grid !important;
}

#bonusLink {
  display: none !important;
}

.overlay-container {
  display: none;
  position: fixed;
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-content: center;
  vertical-align: middle;
}

.popup {
  padding: 0;
  margin: auto;
  width: 90%;
  max-width: 600px;
  max-height: 350px;
  opacity: 1;
  border: 3px solid transparent;
  border-radius: 10px;
  background: linear-gradient(to right, #8b0202, #2d0000),
    linear-gradient(to bottom, #b48132 0%, #f8fbc0 61%, #b48132 100%);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  box-shadow: 0px 0px 120px #f8fbc0;

  animation: full-size-popup 1s ease;
  top: 50%;
  bottom: 0;
  align-self: center;
}

.checkmark {
  display: grid;
  font-size: 50px;
  margin: 0 auto;
  margin-top: -40px;
  padding: 0;
  text-align: center;
  align-content: center;
  color: #fff;
  width: 70px;
  height: 70px;
  border: 3px solid transparent;
  border-radius: 100%;
  background: linear-gradient(to right, #5af880, #02250b),
    linear-gradient(to bottom, #b48132 0%, #f8fbc0 61%, #b48132 100%);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}

.content {
  padding: 0 20px 30px 20px;
}

.content h1 {
  font-family: 'Oswald', sans-serif;
  width: 100%;
  text-align: center;
}

.content p {
  font-family: 'Oswald', sans-serif;
  width: 100%;
  font-size: 35px;
  text-wrap: wrap;
  color: #fff;
  text-align: center;
}

.popup .button {
  display: grid;
  font-family: 'Oswald', sans-serif;
  background: -moz-linear-gradient(top, #b48132 0%, #f8fbc0 61%, #b48132 100%);
  background: -webkit-linear-gradient(
    top,
    #b48132 0%,
    #f8fbc0 61%,
    #b48132 100%
  );
  background: linear-gradient(to bottom, #b48132 0%, #f8fbc0 61%, #b48132 100%);
  font-size: 36px;
  width: 87%;
  height: 70px;
  color: #6b4100;
  text-align: center;
  align-content: center;
  border-radius: 10px;
  margin: auto;
  cursor: pointer;
  font-weight: 600;
  outline: none;
}

.popup .button:active {
  transform: scale(0.95);
}

.logo {
  max-width: 250px;
}

.header {
  background-image: url('assets/background.png');
  padding: 20px 20px 5px 20px;
  margin: 0 auto;
  background-repeat: no-repeat;
  box-sizing: border-box;
  background-size: cover;
  height: 700px;
  position: relative;
  background-position: 100% 40%;
}

.header .content-center {
  position: relative;
  height: 100%;
}

h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  color: white;
  text-shadow: -1px -1px 0 #a10000, 1px -1px 0 #a10000, -1px 1px 0 #a10000,
    1px 1px 0 #a10000;
  line-height: 74px;
  margin-bottom: 5px;
  margin-top: 20px;
  margin-left: 15px;
  font-weight: 500;
}

h1 {
  background: -moz-linear-gradient(top, #b48132 0%, #f8fbc0 61%, #b48132 100%);
  background: -webkit-linear-gradient(
    top,
    #b48132 0%,
    #f8fbc0 61%,
    #b48132 100%
  );
  background: linear-gradient(to bottom, #b48132 0%, #f8fbc0 61%, #b48132 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}

.spins-text {
  width: 60%;
  margin-left: 20px;
}

.main-offer {
  width: 100%;
}

.main-offer h2 {
  width: 50%;
  font-size: 4vw;
  text-align: center;
  margin-left: 12%;
  margin-top: 50px;
}

#myLink {
  width: 85%;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 2vw;
  background-color: #a10000;
  -webkit-text-stroke: 1px black;
  text-stroke: 1px black;
  text-decoration: none;
  padding: 5px 15px;
  border-radius: 18px;
  display: table;
  margin: 0 auto;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#myLink:hover {
  opacity: 0.8;
}

#contact_form h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 3vw;
  color: #a10000;
  margin-top: 0;
  margin-bottom: 25px;
}

#contact_form {
  text-align: center;
}

p {
  font-family: 'PT Sans', sans-serif;
  color: black;
  font-size: 12px;
  margin-top: 5px;
}

p a {
  color: black;
}

.form-and-image {
  width: 60%;
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom: 0;
}

.form-container {
  background-color: rgba(251, 231, 158, 0.6);
  padding: 15px 25px 15px 100px;
  width: 50%;
  height: fit-content;
  border-radius: 10px;
  margin-top: 45px;
  margin-left: -130px;
}

.image-container {
  width: 428px;
  z-index: 1;
}

.image-container img {
  width: 100%;
}

#contact_form input {
  padding: 10px 12px;
  font-size: 1.3vw;
  border: 1px solid #000;
  border-radius: 18px;
  font-family: 'PT Sans', sans-serif;
  font-weight: 300;
  width: 80%;
  color: #000;
  box-shadow: unset;
}

.step {
  background-color: #e4e4e4;
  float: left;
  padding: 50px 30px;
  box-sizing: border-box;
  position: relative;
  width: 33.3%;
}

.steps-border {
  padding: 5px;
  background: -moz-linear-gradient(
    left,
    #b48132 0%,
    #fae0af 30%,
    #d7b676 50%,
    #d7b676 72%,
    #b48132 100%
  );
  background: -webkit-linear-gradient(
    left,
    #b48132 0%,
    #fae0af 30%,
    #d7b676 50%,
    #d7b676 72%,
    #b48132 100%
  );
  background: linear-gradient(
    to right,
    #b48132 0%,
    #fae0af 30%,
    #d7b676 50%,
    #d7b676 72%,
    #b48132 100%
  );
  border-radius: 4px;
  display: table;
}

.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: table;
  padding: 80px 60px 110px;
  box-sizing: border-box;
  background-color: #fff;
}

.step img {
  margin: 0 auto 10px;
  display: table;
}

.step h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #940202;
  font-size: 27px;
  text-shadow: 6px 6px 6px #797979;
  width: 100%;
  text-align: center;
  margin: 0;
}

.step1 {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.step1::after,
.step2::after {
  background-image: url('assets/arrow.png');
  position: absolute;
  right: -34px;
  top: 0;
  width: 34px;
  height: 100%;
  display: inline-block;
  content: '';
  background-size: cover;
  z-index: 1;
  background-position: center center;
}

.step3 {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.content-center {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.ribbons {
  height: 409px;
  background-color: white;
  box-shadow: 0px 0px 35px #000;
  position: relative;
}

.ribbons .content-center {
  max-width: 1200px;
  position: relative;
  flex-direction: row;
  gap: 65px;
}

.ribbon-left {
  width: 420px;
}

.ribbon-right {
  width: 718px;
  margin-top: -141px;
}

.ribbon-left img,
.ribbon-right img {
  width: 100%;
}

.ribbon-right::after {
  position: absolute;
  background-image: url('assets/ribbonright2.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 77px;
  height: 146px;
  content: '';
  display: inline-block;
  bottom: -127px;
  left: 410px;
}

.termsandcond {
  background-color: #fff;
  padding: 55px 55px 30px 55px;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  width: 100%;
}

.termsandcond img {
  width: 70px;
  margin-top: 30px !important;
  margin: auto;
}

.termsandcond::after {
  content: '';
  display: table;
  clear: both;
}

.termsandcond p,
.termsandcond p a {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: black;
  font-weight: 600;
}

.termsandcond p {
  line-height: 23px;
  text-align: center;
}

.termsandcond p:first-child {
  width: fit-content;
  display: flex;
  margin: auto;
}

.termsandcond p:first-child a {
  width: fit-content;
  float: right;
  margin-bottom: 0;
}

h5 {
  float: left;
  margin-right: 5px;
  padding-right: 5px;
  border-right: 1px solid black;
}

h5,
.tandc {
  margin-bottom: 14px;
  display: table;
  color: black;
}

@media (max-width: 1250px) {
  .header {
    height: 650px;
  }

  .main-offer h2 {
    line-height: 60px;
  }

  .steps {
    padding: 80px 60px 90px;
  }

  .step h4 {
    font-size: 24px;
  }

  .step {
    padding: 30px 10px;
  }

  .step img {
    max-width: 130px;
  }

  .ribbons {
    height: 300px;
  }

  .ribbons .content-center {
    max-width: 900px;
    gap: 65px;
  }

  .ribbon-left {
    width: 320px;
  }

  .ribbon-right {
    width: 550px;
    margin-top: -104px;
  }

  .ribbon-right::after {
    height: 140px;
    bottom: -125px;
    left: 320px;
  }
}

@media (max-width: 1100px) {
  .header {
    height: 600px;
  }
}

@media (max-width: 1000px) {
  .header {
    height: 550px;
  }

  .main-offer h2 {
    margin-top: 40px;
    line-height: 50px;
  }
}

@media (max-width: 960px) {
  .header {
    height: 700px;
    padding: 32px 20px 5px 20px;
  }

  .main-offer h2 {
    margin-top: 30px;
    margin-left: 4%;
  }

  .form-and-image {
    flex-direction: column;
    margin-top: 0;
  }

  .image-container {
    width: 100%;
    text-align: center;
  }

  .form-and-image img {
    max-width: 270px;
  }

  .form-container {
    padding: 20px 10px 10px 10px;
    width: 340px;
    margin: auto;
    margin-top: -35px;
  }

  #contact_form {
    width: 100%;
  }

  #contact_form h3 {
    font-size: 35px;
    margin-bottom: 10px;
  }

  #contact_form input {
    font-size: 15px;
  }

  #myLink {
    font-size: 24px;
  }

  .content h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }

  h1 {
    font-size: 50px;
    margin-bottom: 0;
  }

  .steps {
    padding: 50px 60px 70px;
  }

  .step h4 {
    font-size: 18px;
  }

  .step img {
    max-width: 85px;
  }

  .termsandcond {
    padding: 50px 35px 30px 35px;
  }

  .termsandcond p,
  .termsandcond p a {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .ribbons {
    height: 235px;
  }

  .ribbons .content-center {
    max-width: 700px;
    gap: 45px;
  }

  .ribbon-right {
    margin-top: -82px;
  }

  .ribbon-right::after {
    height: 120px;
    bottom: -108px;
    left: 240px;
  }
}

@media (max-width: 760px) {
  .main-offer h2 {
    margin-top: 30px;
    line-height: 40px;
  }

  h1 {
    font-size: 25px;
  }

  .header {
    height: 680px;
    background-size: auto 680px;
    background-position: 40% 30%;
  }

  .step h4 {
    font-size: 28px;
  }

  .step img {
    max-width: 145px;
  }

  .step {
    width: 100%;
  }

  .step1::after,
  .step2::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -220px;
    width: auto;
    height: auto;
    background-image: url('assets/arrow2.png');
    background-size: 100%;
    background-repeat: no-repeat;
    top: 90px;
  }

  .step1 {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 0;
  }

  .step2 {
    padding: 90px 10px;
  }

  .step3 {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 4px;
  }

  .termsandcond {
    padding: 50px 30px 30px 30px;
  }

  .termsandcond p,
  .termsandcond p a {
    font-size: 12px;
  }
}

@media (max-width: 700px) {
  .header {
    height: 750px;
    background-size: auto 750px;
  }

  .main-offer h2 {
    width: 100%;
    margin-top: 20px;
    margin-inline: auto;
    font-size: 30px;
  }

  .form-and-image {
    margin: 0 auto;
    width: 80%;
    left: 0;
    right: 0;
  }

  .image-container {
    max-width: 100%;
  }

  .form-and-image img {
    max-width: 70%;
  }

  .form-container {
    width: 90%;
  }

  .ribbons {
    height: 164px;
  }

  .ribbons .content-center {
    max-width: 500px;
    gap: 45px;
  }
  .ribbon-right {
    margin-top: -57px;
  }

  .ribbon-right::after {
    height: 100px;
    bottom: -91px;
    left: 170px;
  }

  .content h1 {
    font-size: 44px;
  }

  .content p {
    font-size: 30px;
  }

  .popup .button {
    font-size: 30px;
  }
}

@media (max-width: 639px) {
  .main-offer h2 {
    font-size: 26px;
  }

  .step h4 {
    font-size: 23px;
  }

  .step img {
    max-width: 130px;
  }

  .step1::after,
  .step2::after {
    top: 50px;
  }

  .step2 {
    padding: 60px 10px;
  }

  h1 {
    font-size: 40px;
  }

  .steps {
    padding: 60px 60px 50px;
  }

  h5 {
    border-right: 0;
  }

  .termsandcond {
    padding: 20px 30px 20px 30px;
  }

  .termsandcond p,
  .termsandcond p a {
    font-size: 10px;
  }

  .termsandcond p {
    line-height: 18px;
    margin-bottom: 0;
  }

  .termsandcond img {
    width: 50px;
    margin-top: 15px !important;
  }
}

@media (max-width: 575px) {
  .header {
    height: 130vw;
    background-size: auto 130vw;
    background-position: 45% 30%;
  }

  .main-offer h2 {
    font-size: 24px;
  }

  .spins-text {
    text-align: center;
    margin-left: 0;
    margin-inline: auto;
  }

  .spins-text .logo {
    width: 50%;
  }

  .form-and-image {
    width: 97%;
  }

  #contact_form h3 {
    font-size: 6vw;
  }

  #contact_form input {
    font-size: 3vw;
  }

  #myLink {
    font-size: 4vw;
  }

  .steps {
    padding: 40px 50px 30px;
  }

  .step h4 {
    font-size: 20px;
  }

  .step img {
    max-width: 110px;
  }

  .step1::after,
  .step2::after {
    top: 0;
  }

  .step2 {
    padding: 40px 10px;
  }

  .termsandcond {
    padding: 30px 20px 20px 20px;
  }

  .termsandcond p:first-child {
    width: 100%;
    flex-direction: column;
  }

  .termsandcond p:first-child a {
    width: 100%;
  }

  .content h1 {
    font-size: 37px;
  }

  .content p {
    font-size: 26px;
  }

  .popup .button {
    font-size: 26px;
  }
}

@media (max-width: 500px) {
  .step h4 {
    font-size: 18px;
  }

  .step img {
    max-width: 100px;
  }

  .ribbons {
    height: 134px;
  }

  .ribbons .content-center {
    max-width: 400px;
    gap: 25px;
  }
  .ribbon-right {
    margin-top: -47px;
  }

  .ribbon-right::after {
    height: 70px;
    bottom: -61px;
    left: 140px;
  }

  .popup .button {
    width: 94%;
  }

  .main-offer h2 {
    font-size: 22px;
    line-height: 30px;
    margin-top: 10px;
  }
}

@media (max-width: 450px) {
  .content h1 {
    font-size: 32px;
  }

  .content p {
    font-size: 20px;
  }

  .popup .button {
    font-size: 20px;
  }

  .main-offer h2 {
    font-size: 20px;
    margin-top: 0;
  }
}

@media (max-width: 400px) {
  .header {
    height: 125vw;
    background-size: auto 125vw;
    padding: 20px 20px 5px 20px;
  }

  .step img {
    max-width: 80px;
  }

  .step1::after,
  .step2::after {
    top: -30px;
  }

  .ribbons {
    height: 101px;
  }

  .ribbons .content-center {
    max-width: 300px;
    gap: 15px;
  }
  .ribbon-right {
    margin-top: -36px;
  }

  .ribbon-right::after {
    height: 60px;
    bottom: -52px;
    left: 100px;
  }

  .main-offer h2 {
    line-height: 24px;
  }
}
