* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Inter", "Open Sans", sans-serif;
  color: getColor("def-2");
}
* ::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
* ::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
* ::-webkit-scrollbar-thumb {
  background: #dad8d8;
  border-radius: 10px;
}
* ::-webkit-scrollbar-thumb:hover {
  background: #dad8d8;
}

.bc {
  background: #b4e2e4;
}

#main .main-container {
  width: 100%;
}
#main .main-container .wrapper {
  width: 1024px;
  max-width: 100%;
  margin: 0 auto;
}
#main .main-container .wrapper .container {
  padding: 10px 0;
}
#main .main-container .wrapper .container .sub-container {
  padding: 0 10px;
}

#header {
  margin-top: 20px;
}
#header .header-content {
  padding: 10px;
}
#header .header-content .menu {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
#header .header-content .menu .option {
  cursor: pointer;
}

#content.m-top {
  margin-top: 100px;
}
#content.has-top {
  margin-top: 50px;
}
#content .field {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
#content .field .item {
  max-width: 512px;
  display: block;
}
#content .field .item.is-full {
  max-width: 100%;
}
#content .field .item .is-center {
  display: flex;
  justify-content: center;
}
#content .field .item .details {
  display: block;
  line-height: 40px;
}
#content .field .item .details p {
  font-size: 18px;
}
#content .field .item .details .menu {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
#content .field .item .details button {
  margin-top: 20px;
  padding: 10px;
  background: unset;
  cursor: pointer;
  font-size: 16px;
  border-radius: 12px;
  outline: none;
  width: 150px;
  border: 2px solid #404041;
  animation: zoomInOut 2s infinite ease-in-out;
}
#content .field .item .details button:hover {
  transform: scale(1.2);
  animation: step-end;
}

#icon.full {
  width: 300px;
  height: 300px;
}
#icon.small {
  width: 35px;
  height: 35px;
}
#icon figure {
  width: 100%;
  height: 100%;
}
#icon figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (max-width: 1130px) {
  #header {
    margin-bottom: 20px !important;
  }
  #icon.full {
    width: 250px !important;
    height: 250px !important;
  }
  #content.m-top {
    margin-top: 0 !important;
  }
  #content.has-top {
    margin-top: 30px !important;
  }
  #content .field .item {
    width: 100% !important;
    max-width: 100%;
  }
  #content .field .item .details {
    text-align: center;
  }
  #content .field .item .details .menu {
    justify-items: center;
    display: block;
  }
  #content .field .item .details .menu button {
    display: block;
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.element.numbers {
  animation: rotateImage 20s linear infinite;
}
.element.fly {
  position: absolute;
  bottom: -550px !important;
  left: -100px;
  transform: translateY(-50%);
  animation: fly-right 6s linear infinite;
  width: 400px !important;
}
.element.sun {
  animation: rotateImage 20s linear infinite;
}
.element.has-light::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0) 80%);
  transform: translate(-50%, -50%);
  border-radius: 100%;
  animation: glowingLight 2.5s infinite alternate ease-in-out;
  z-index: -1;
}

@keyframes rotateImage {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fly-right {
  0% {
    transform: translate(-100px, -50%) rotate(0deg);
  }
  25% {
    transform: translate(25vw, -55%) rotate(-10deg);
  }
  50% {
    transform: translate(50vw, -45%) rotate(10deg);
  }
  75% {
    transform: translate(75vw, -50%) rotate(-5deg);
  }
  100% {
    transform: translate(100vw, -50%) rotate(15deg);
  }
}
@keyframes glowingLight {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
}
#form .is-center {
  display: flex;
  justify-content: center;
}
#form .content {
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  width: 500px;
  border-radius: 12px;
}
#form .content.min {
  width: 350px;
}
#form .content .title {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}
#form .content .lbl {
  font-size: 14px;
  color: #404041;
  margin-bottom: 10px;
}
#form .content .lbl.lh {
  line-height: 30px;
}
#form .content .error-message {
  font-size: 14px;
  color: red;
  margin-bottom: 10px;
  text-align: center;
}
#form .content input {
  outline: none;
  width: 100%;
  border: 1px solid #404041;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
#form .content select {
  outline: none;
  width: 100%;
  border: 1px solid #404041;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
#form .content button {
  cursor: pointer;
  display: block;
  outline: none;
  width: 100%;
  border: 1px solid #404041;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  background: #404041;
  color: #fff;
}
#form .content .lnk {
  margin-top: 20px;
  cursor: pointer;
  text-decoration: underline;
  text-align: center;
}
#form .content .is-flex {
  display: flex;
  justify-content: space-between;
}
#form .content ol,
#form .content ul {
  color: #404041;
  font-size: 14px;
}
#form .content ol ul,
#form .content ul ul {
  margin-top: 10px;
}
#form .content ol li,
#form .content ul li {
  margin-bottom: 10px;
}
#form .content .qz-con {
  justify-items: center;
  line-height: 40px;
  margin-top: 50px;
  font-size: 25px;
}
#form .content .qz-con table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
#form .content .qz-con table thead {
  font-size: 14px;
}
#form .content .qz-con table tbody {
  font-size: 14px;
}
#form .content .qz-con .ans {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#form .content .qz-con .ans input {
  font-size: 25px;
  width: 150px;
  text-align: center;
  outline: unset;
}
#form .content .qz-con .options {
  margin-top: 30px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
#form .content .qz-con .options button {
  width: 150px !important;
}/*# sourceMappingURL=style.css.map */