@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 72em;
  margin: 0 auto;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.expo-checkbox__container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  user-select: none;
}
.expo-checkbox__container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.expo-checkbox__container:hover input ~ .expo-checkbox__checkmark {
  background-color: #e3f2fd;
}
.expo-checkbox__container input:checked ~ .expo-checkbox__checkmark {
  background-color: #2196f3;
}
.expo-checkbox__container input:checked ~ .expo-checkbox__checkmark:after {
  display: block;
}
.expo-checkbox__container .expo-checkbox__checkmark:after {
  left: 11px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.expo-checkbox__checkmark {
  position: absolute;
  top: 10px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.4) 0px 2px 8px 0px;
  transition: background-color 300ms ease-out;
}
.expo-checkbox__checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.expo-checkbox__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1px;
  color: #102c3c;
}
.expo-checkbox__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1px;
  color: #435d6b;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f0eaeaea;
  font-family: "Open Sans", sans-serif;
}

header .logo {
  max-width: 90%;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 26rem;
  margin: 0 auto;
  padding: 4px;
}
@media (min-width: 1024px) {
  .container {
    max-width: 48rem;
  }
}

.main-cobot {
  padding: 3rem 1rem;
  margin: 0 auto;
}
.main-cobot__title {
  color: #102c3c;
  font-size: 24px;
  font-weight: 700;
}
.main-cobot__image {
  border-radius: 10px;
}
.main-cobot__list {
  color: #102c3c;
  list-style: none;
  padding: 0;
}
.main-cobot__list > * + * {
  margin-top: 0.5rem;
}
.main-cobot__item {
  margin-bottom: 4rem;
}
.main-cobot__item-title {
  color: #102c3c;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1rem;
}
.main-cobot__item-description {
  color: #435d6b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
.main-cobot__video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.main-cobot__video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  margin: 2rem 0;
}

.user-input {
  padding: 0 1rem;
}
.user-input__section {
  margin-bottom: 4rem;
}
.user-input-subtitle {
  color: #102c3c;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  margin: 2rem 0;
}

.section-title {
  font-size: 30px;
  color: #102c3c;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.info__title {
  line-height: 1.1;
  font-size: 20px;
  font-weight: 700;
  color: #102c3c;
}
.info__description {
  font-size: 16px;
  line-height: 1.5;
  color: #435d6b;
}

.spacing > * + * {
  margin-top: var(--spacer, 1rem);
}

.center {
  text-align: center;
}

.expo-cta {
  display: block;
  padding: 0.5rem 1rem;
  margin: 0 auto;
  max-width: 16rem;
  border: 0;
  border-radius: 10rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.15rem;
  line-height: 1.2;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 1rem;
  cursor: pointer;
}
.expo-cta:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0db5f2;
  border-radius: 10rem;
  z-index: -2;
}
.expo-cta:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #097faa;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.expo-cta:hover {
  color: #fff;
}
.expo-cta:hover:before {
  width: 100%;
}

.form-section {
  max-width: 24rem;
  display: flex;
  flex-direction: column;
}
.form-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.form-group-title {
  width: 100%;
  color: #102c3c;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1px;
  margin-bottom: 4px;
  line-height: 24px;
}
.form-group-subtitle {
  width: 100%;
  color: #435d6b;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  letter-spacing: 0.1px;
}
.form-group label {
  width: 100%;
}
.form-group input {
  width: 100%;
  font-size: 16px;
  padding: 4px;
}

.footer {
  padding: 2rem 1rem;
  background-color: #102c3c;
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0;
}
.footer__info-section {
  max-width: 12rem;
}
.footer__info-section .logo {
  max-width: 8rem;
  margin-bottom: 1rem;
}
.footer__info-section .info {
  text-align: start;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.footer__action-section {
  flex-basis: 16rem;
  display: flex;
  justify-content: center;
}
.footer__action-section .page-title {
  display: inline-block;
  padding: 2rem 0;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #0caae4;
}
.footer__action-section .page-title:hover, .footer__action-section .page-title:focus {
  color: #57d2ff;
  text-decoration: underline;
}
.footer__action-section .message {
  text-align: left;
}

.language__list {
  position: fixed;
  bottom: 0.75rem;
  right: 2rem;
  background-color: #fcf7f8;
  padding: 0.5rem 2rem 0.5rem 1rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 0.5rem;
  box-shadow: rgba(99, 99, 99, 0.4) 0px 2px 8px 0px;
  transition: all 250ms ease-out;
  opacity: 0;
  pointer-events: none;
}
.language__list.open {
  opacity: 1;
  pointer-events: all;
}
.language__list a {
  text-decoration: none;
}
.language__list a:hover, .language__list a:active, .language__list a:focus {
  text-decoration: underline;
}
.language__btn {
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  display: inline-block;
  padding: 0.75rem 1rem;
  border-radius: 50%;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  background: #fcf7f8;
  border: none;
  z-index: 999;
  cursor: pointer;
  box-shadow: rgba(99, 99, 99, 0.4) 0px 2px 8px 0px;
}
.language__btn i {
  color: #00a8e6;
}

/*# sourceMappingURL=expo.css.map */
