@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800&display=swap);
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: url("../images/bg.jpeg") center/cover no-repeat;
  background-attachment: fixed;
}

p {
  line-height: 150%;
}

strong {
  font-weight: 600;
}

/*///*/

.promocode {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  width: 305px;
  animation: glowing 1500ms infinite;
}

.promocode__icon {
  max-width: 50px;
  margin: 0 auto;
}

.promocode__text {
  text-align: center;
  background-color: rgb(54, 0, 247);
  border-radius: 10px;
  padding: 16px;
  color: #fff;
  margin-top: -23px;
}

.promocode__title {
  font-size: 14px;
}
.promocode__bonus {
  font-size: 20px;
  font-weight: 600;
}
.promocode__input {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promocode__input input {
  border: 1px solid #ff4c00;
  border-right: none;
  border-radius: 10px 0 0 10px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  padding: 7px 20px 6px;
  outline: none;
  height: 40px;
  width: 50%;
}
.promocode__input button {
  cursor: pointer;
}
.promocode__input a {
  justify-content: center;
  align-items: center;
}
.promocode__input button,
.promocode__input a {
  background-color: #ff4c00;
  height: 40px;
  width: 35%;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  border-radius: 0 10px 10px 0;
  text-align: center;
}
/*///*/
h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
}

h2 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}
h2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
  background-color: #ff4c00;
  max-width: 400px;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #233d50;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}
table tr td,
table tr th {
  border: 1px solid #333;
  padding: 15px;
}
table tr th {
  background-color: #f2ce74;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: #e3e3e3;
}

.header {
  background: transparent;
  padding: 30px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
.header .container .logo {
  flex: 0 0 300px;
}
.header .container .nav {
  flex: 1;
}
.header .container .nav .list {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.header .container .nav .list li:hover {
  color: #ff4c00;
  text-shadow: 4px 4px 10px #ff4c00;
}

.main {
  height: 100%;
  flex: 1 1 auto;
}
.main .first-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  padding: 50px 0 100px;
  color: #fff;
}
.main .first-screen .title {
  font-size: 65px;
  font-weight: 700;
  text-align: left;
  line-height: 180%;
}
.main .first-screen .main-btn {
  display: flex;
  gap: 30px;
}
.main .first-screen .main-btn .btn {
  padding: 20px 15px;
  text-align: center;
  font-size: 24px;
  border: 1px solid transparent;
  width: 200px;
  border-radius: 15px;
  transition: all 0.5s;
}
.main .first-screen .main-btn .btn:first-child {
  background-color: #ff4c00;
  animation: glowing2 1300ms infinite;
}
.main .first-screen .main-btn .btn:first-child:hover {
  background-color: #cd5421;
}
.main .first-screen .main-btn .btn:last-child {
  border: 1px solid rgb(9, 199, 9);
  color: rgb(9, 199, 9);
  animation: glowing 1300ms infinite;
}
.main .first-screen .main-btn .btn:last-child:hover {
  border: 1px solid #fff;
  color: #fff;
}
.main section {
  padding: 70px 0;
}
.main section p {
  margin: 15px 0;
}
.main section img {
  margin: 20px auto;
  max-width: 500px;
  display: flex;
}
.main .register {
  background-color: #fff;
}
.main .register .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}
.main .register .flex .item {
  flex: 0 0 50%;
}
.main .register .flex .title {
  font-weight: 700;
  color: #333;
}
.main .white {
  background-color: #f4f4f4;
}
.main .white .flex {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.main .white .flex .item {
  flex: 0 0 50%;
  background-color: #fff;
  padding: 30px;
}
.main .summary {
  background-color: #f4f4f4;
}
.main .summary .content {
  padding-top: 30px;
}
.main .default-container {
  background: #f4f4f4;
}
.main .default-container .container {
  max-width: 90vw;
  background: #fff;
  padding: 30px;
}

.footer {
  background-color: rgb(40, 92, 161);
  padding: 30px 0;
  color: #fff;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 70vw;
  margin: 0 auto;
  padding: 0 16px;
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 30px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .header .container {
    flex-direction: column;
    gap: 10px;
  }
  .header .container .logo {
    flex: auto;
  }
  .main section {
    padding: 30px 0;
  }
  .main section img {
    width: 100%;
  }
  .main .first-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 0 0 100px;
  }
  .main .first-screen .title {
    font-size: 30px;
    line-height: 150%;
    text-align: center;
  }
  .main .first-screen .main-btn {
    flex-direction: column;
  }
  .main .register .flex {
    flex-direction: column;
    gap: 20px;
  }
  .main .register .flex img {
    width: 100%;
  }
  .main .white .flex {
    flex-direction: column;
    padding: 0 16px;
  }
  .main .white .flex img {
    width: 100%;
  }
}
@keyframes glowing {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 30px rgb(9, 199, 9);
  }
  100% {
    box-shadow: 0 0 5px rgb(9, 199, 9);
  }
}
@keyframes glowing2 {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 30px #cd5421;
  }
  100% {
    box-shadow: 0 0 5px #cd5421;
  }
}