@charset "UTF-8";
@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;
}

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

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

: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;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

: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("../img/bg.jpeg") center/cover no-repeat;
  background-attachment: fixed;
}

p {
  line-height: 150%;
}

strong {
  font-weight: 600;
}

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 .screen-first {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  padding: 50px 0 100px;
  color: #fff;
}
.main .screen-first .title {
  font-size: 65px;
  font-weight: 700;
  text-align: left;
  line-height: 180%;
}
.main .screen-first .main-btn {
  display: flex;
  gap: 30px;
}
.main .screen-first .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 .screen-first .main-btn .btn:first-child {
  background-color: #ff4c00;
  animation: glowing2 1300ms infinite;
}
.main .screen-first .main-btn .btn:first-child:hover {
  background-color: #cd5421;
}
.main .screen-first .main-btn .btn:last-child {
  border: 1px solid rgb(9, 199, 9);
  color: rgb(9, 199, 9);
  animation: glowing 1300ms infinite;
}
.main .screen-first .main-btn .btn:last-child:hover {
  border: 1px solid #fff;
  color: #fff;
}
.main section {
  padding: 40px 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 .basic-container {
  background: #f4f4f4;
}
.main .basic-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 .screen-first {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 0 0 100px;
  }
  .main .screen-first .title {
    font-size: 30px;
    line-height: 150%;
    text-align: center;
  }
  .main .screen-first .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;
  }
}
