* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  max-width: 1440px;
  margin: 0 auto;
}

.header {
  max-width: 1440px;
}

.action {
  color: #f6614b;
}

button,
.button {
  appearance: none;
  border: none;
  background-color: unset;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  cursor: pointer;
}

button:hover,
.button:hover {
  background-color: #1a2257;
  color: white;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 30px 80px;
}

h1 {
  color: #1a2257;
  font-size: 64px;
  font-weight: 600;
  line-height: 70px;
}

h2 {
  color: #1a2257;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}

.display-none {
  display: none;
}

.orange__bg {
  background-color: #f6614b;
}
.orange__fill {
  fill: #f6614b;
}
.orange__color {
  color: #f6614b;
}

.orange__bg {
  background-color: #f6614b;
}
.orange__fill {
  fill: #f6614b;
}
.orange__color {
  color: #f6614b;
}

.yellow__bg {
  background-color: #f8ce63;
}
.yellow__fill {
  fill: #f8ce63;
}
.yellow__color {
  color: #f8ce63;
}

.blue__bg {
  background-color: #566ebd;
}
.blue__fill {
  fill: #566ebd;
}
.blue__color {
  color: #566ebd;
}

@media only screen and (max-width: 900px) {
  section {
    padding: 30px;
  }
  h1 {
    font-size: 40px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 670px) {
  h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
body:has(.header.open) {
  overflow: hidden;
}

.background_1 {
  background-image: url("/assets/images/background_1.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 60px;
  margin-bottom: 100px;
}

.header {
  position: fixed;
  width: 100%;
  height: 100px;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #1a2257;
  z-index: 999;
}
.header__mobile-menu {
  display: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
}
.header__mobile-menu:hover {
  background-color: #e4e6f3;
}
.header__logo {
  display: flex;
}
.header__logo > img {
  height: 45px;
}
.header__wrapper {
  display: flex;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__menu__close {
  display: none;
  cursor: pointer;
  width: 24px;
  justify-content: center;
  align-items: center;
}
.header__menu__item {
  cursor: pointer;
  font-weight: 500;
  position: relative;
}
.header__menu__item::after {
  position: absolute;
  content: "";
  background-color: #1a2257;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  transition: width 0.2s ease-in-out;
}
.header__menu__item:hover::after {
  width: 100%;
}
.header__button {
  font-weight: 700;
  padding: 0 50px;
  height: 48px;
  background-color: white;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  border: 1px solid #f5ece5;
  color: #1a2257;
}

@media only screen and (max-width: 900px) {
  .header {
    padding: 20px 30px;
  }
  .header__button {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 830px) {
  .background_1:has(.header.open) {
    background-image: none;
  }
  .header {
    column-gap: 20px;
    display: grid;
    grid-template-columns: 50px 1fr auto;
    grid-template-rows: auto;
  }
  .header__logo {
    order: 2;
    margin-right: auto;
  }
  .header__mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header__mobile-menu__bar {
    width: 24px;
    height: 3px;
    background-color: #1a2257;
  }
  .header__mobile-menu__bar:first-of-type {
    margin-bottom: 5px;
  }
  .header__mobile-menu__bar:last-of-type {
    margin-top: 5px;
  }
  .header__menu {
    order: 1;
    display: none;
  }
  .header__wrapper {
    display: none;
  }
  .header.open {
    overflow: hidden;
    grid-template-rows: 60px 1fr;
    height: 100%;
  }
  .header.open .header__wrapper {
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    justify-content: flex-start;
    background-color: #f2f4fc;
    align-items: center;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 100px;
    width: 100%;
    height: 100%;
    z-index: 9;
  }
  .header.open .header__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .header.open .header__menu__item {
    font-size: 32px;
    height: 50px;
    line-height: 35px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header.open .header__mobile-menu__bar {
    display: none;
  }
  .header.open .header__menu__close {
    display: flex;
  }
  .header__button {
    order: 3;
  }
}
@media only screen and (max-width: 365px) {
  .header {
    padding: 10px 15px;
  }
}
.call-to-action {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #1a2257;
  margin-bottom: 60px;
  padding-top: 120px;
}
.call-to-action__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.call-to-action__content__subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
  max-width: 500px;
}
.call-to-action__content__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  max-width: 500px;
}
.call-to-action__content__button {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  background-color: #566ebd;
  height: 72px;
  width: 385px;
  color: white;
}
.call-to-action__image {
  justify-self: center;
}
.call-to-action__image > img {
  width: 100%;
  height: 500px;
}

@media only screen and (max-width: 900px) {
  .call-to-action__content__subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
  }
  .call-to-action__content__description {
    font-size: 14px;
    line-height: 22px;
  }
  .call-to-action__content__button {
    height: 56px;
    width: 270px;
  }
  .call-to-action__image > img {
    height: 330px;
  }
}
@media only screen and (max-width: 670px) {
  .call-to-action {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .call-to-action__content__button {
    align-self: center;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
  }
  .call-to-action__image > img {
    height: 330px;
  }
}
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  color: #1a2257;
  margin-bottom: 130px;
  padding-top: 150px;
  margin-top: -100px;
}
.benefits__image {
  justify-self: center;
}
.benefits__image > img {
  width: 100%;
  height: 630px;
}
.benefits__content__title {
  margin-bottom: 40px;
  margin-left: 120px;
}
.benefits__content__rows {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.benefits__content__rows__row {
  display: grid;
  grid-template-columns: 120px 1fr;
}
.benefits__content__rows__row__icon {
  width: 120px;
  height: 120px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  justify-self: center;
}
.benefits__content__rows__row__text {
  display: grid;
  grid-template-rows: 18% 82%;
  gap: 10px;
}
.benefits__content__rows__row__text__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}
.benefits__content__rows__row__text__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  max-width: 450px;
}

@media only screen and (max-width: 900px) {
  .benefits {
    grid-template-columns: 1fr;
  }
  .benefits__content {
    justify-self: center;
  }
  .benefits__content__title {
    max-width: 400px;
  }
  .benefits__image {
    display: none;
  }
}
@media only screen and (max-width: 670px) {
  .benefits {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
  .benefits__content {
    justify-self: center;
  }
  .benefits__content__title {
    margin-left: 75px;
  }
  .benefits__content__rows__row {
    grid-template-columns: 75px 1fr;
  }
  .benefits__content__rows__row__text {
    grid-template-rows: 25% 1fr;
  }
  .benefits__content__rows__row__icon {
    width: 75px;
    height: 75px;
    margin-top: -20px;
    justify-self: start;
    align-self: flex-start;
  }
  .benefits__content__rows__row__icon > img {
    width: 30px;
  }
  .benefits__content__rows__row__icon > img:last-of-type {
    height: 30px;
    width: auto;
  }
  .benefits__content__title {
    max-width: 400px;
  }
  .benefits__image {
    display: none;
  }
}
.metrics {
  padding-top: 150px;
  background-image: url("/assets/images/background_2.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  grid-template-columns: auto 50px auto 50px auto 50px auto;
  margin-bottom: 180px;
  margin-top: -100px;
}
.metrics__separator {
  display: flex;
  justify-content: center;
  align-items: center;
}
.metrics__separator > div {
  width: 1px;
  height: 40px;
  background-color: #e4e6f3;
}
.metrics__metric {
  align-self: center;
  justify-self: center;
}
.metrics__metric__wrapper__number {
  font-weight: 600;
  font-size: 72px;
  line-height: 86px;
  color: #566ebd;
}
.metrics__metric__wrapper__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

@media only screen and (max-width: 900px) {
  .metrics__separator > div {
    height: 30px;
  }
  .metrics__metric__wrapper__number {
    font-weight: 600;
    font-size: 48px;
    line-height: 57px;
  }
  .metrics__metric__wrapper__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
  }
}
@media only screen and (max-width: 670px) {
  .metrics {
    grid-template-columns: 1fr 50px 1fr;
    grid-template-rows: 1fr 1fr;
    margin-bottom: 0;
    padding-top: 200px;
    margin-top: -100px;
  }
  .metrics__separator__middle {
    display: none;
  }
}
@media only screen and (max-width: 360px) {
  .metrics {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 40px;
  }
  .metrics__metric__wrapper {
    text-align: center;
  }
  .metrics__metric__wrapper__number {
    font-size: 40px;
    line-height: 48px;
  }
  .metrics__separator {
    display: none;
  }
}
.test {
  margin-bottom: 200px;
  padding-top: 160px;
  margin-top: -160px;
}
.test__title {
  margin-bottom: 40px;
}
.test__wrapper {
  border: 1px solid #e4e6f3;
  border-radius: 40px;
  padding: 50px 50px 0 50px;
}
.test__wrapper__subjects {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 55px;
  margin-bottom: 55px;
}
.test__wrapper__subjects__subject {
  display: grid;
  grid-template-columns: 35px 1fr;
  grid-template-rows: 35px auto;
  column-gap: 10px;
}
.test__wrapper__subjects__subject__icon {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.test__wrapper__subjects__subject__icon > img {
  max-width: 33px;
}
.test__wrapper__subjects__subject__title {
  align-self: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  grid-column: 2;
  grid-row: 1;
}
.test__wrapper__subjects__subject__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  grid-column: 2;
  grid-row: 2;
}
.test__wrapper__image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: -2px;
}
.test__wrapper__image__desktop {
  display: block;
  width: 100%;
  max-width: 1000px;
}
.test__wrapper__image__tablet {
  display: none;
}
.test__image__mobile {
  display: none;
}

@media only screen and (max-width: 900px) {
  .test {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 70px;
    position: relative;
    padding-bottom: 0;
    margin-bottom: 100px;
    padding-top: 100px;
  }
  .test__title {
    min-width: 160px;
    padding-top: 50px;
  }
  .test__wrapper__subjects {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 55px;
    margin-bottom: 55px;
  }
  .test__wrapper__image__desktop {
    display: none;
  }
  .test__wrapper__image__tablet {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media only screen and (max-width: 670px) {
  .test {
    padding-top: 100px;
    margin-top: -100px;
    margin-bottom: 100px;
    flex-direction: column;
    gap: 0;
  }
  .test__wrapper__image__tablet {
    display: none;
  }
  .test__image__mobile {
    display: flex;
    margin-top: 30px;
    width: 100%;
    justify-content: flex-end;
  }
  .test__image__mobile > img {
    margin-right: -30px;
  }
}
@media only screen and (max-width: 450px) {
  .test__wrapper {
    padding: 30px 30px 0 30px;
  }
}
.offer {
  color: #1a2257;
  margin-bottom: 60px;
  padding-top: 150px;
  margin-top: -150px;
}
.offer__title {
  margin-bottom: 25px;
}
.offer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr auto auto;
  gap: 25px;
}
.offer__grid__block {
  border: 1px solid #e4e6f3;
  border-radius: 40px;
  padding: 25px 25px 50px 50px;
}
.offer__grid__block__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.offer__grid__block__header__line {
  width: 24px;
  height: 4px;
  border-radius: 14px;
}
.offer__grid__block__header__icon {
  width: 96px;
  height: 96px;
  border: 1px solid #e4e6f3;
  box-shadow: 0px 4px 39px #eff5fa;
  border-radius: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offer__grid__block__content {
  margin-top: -12px;
}
.offer__grid__block__content__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 12px;
}
.offer__grid__block__content__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.offer__grid__block-full-width {
  grid-column: 1/-1;
  background-color: #e4e6f3;
  border: 1px solid #e4e6f3;
  border-radius: 24px;
  padding: 25px 50px;
}
.offer__grid__block-full-width__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}
.offer__grid__block-full-width__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

@media only screen and (max-width: 900px) {
  .offer__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr auto auto;
  }
}
@media only screen and (max-width: 670px) {
  .offer__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr auto auto;
  }
  .offer__grid__block {
    padding: 25px 25px 35px 35px;
  }
}
.do-it {
  background-image: url("/assets/images/background_3.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 220px;
  margin-bottom: 200px;
}
.do-it__icon__tablet {
  display: none;
}
.do-it__title {
  margin-bottom: 40px;
}
.do-it__image img {
  text-align: center;
  max-width: 100%;
}
.do-it__image__desktop {
  display: block;
  margin: auto;
}
.do-it__image__tablet {
  display: none;
}

@media only screen and (max-width: 900px) {
  .do-it {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    background-position: initial;
    background-repeat: no-repeat;
    background-size: auto;
    padding-top: 150px;
  }
  .do-it__icon__tablet {
    display: block;
    grid-column: 1;
    grid-row: 2;
    align-self: end;
  }
  .do-it__title {
    grid-column: 1;
    grid-row: 1;
    max-width: 200px;
  }
  .do-it__image {
    grid-column: 2;
    grid-row: 1/-1;
  }
  .do-it__image__desktop {
    display: none;
  }
  .do-it__image__tablet {
    display: block;
  }
}
@media only screen and (max-width: 670px) {
  .do-it {
    padding-top: 130px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    margin-bottom: 70px;
  }
  .do-it__icon__tablet {
    display: none;
  }
  .do-it__title {
    max-width: 250px;
    grid-row: 1;
    grid-column: 1;
  }
  .do-it__image {
    grid-column: 1;
    grid-row: 2;
  }
}
.testimonials {
  padding-top: 180px;
  margin-top: -180px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 60px;
  margin-bottom: 180px;
}
.testimonials__grid__left {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 40px;
}
.testimonials__grid__left__image__img {
  width: 100%;
  margin-left: -20px;
  max-width: 450px;
}
.testimonials__grid__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}
.testimonials__grid__right__testimonial {
  border: 1px solid #e4e6f3;
  border-radius: 40px;
  padding: 50px 65px;
  display: grid;
  grid-template-columns: 60px 1fr;
}
.testimonials__grid__right__testimonial__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.testimonials__grid__right__testimonial__content__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-top: 18px;
  margin-bottom: 15px;
}
.testimonials__grid__right__testimonial__content__author {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}
.testimonials__grid__right__testimonial__content__company {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}

@media only screen and (max-width: 900px) {
  .testimonials {
    padding-top: 100px;
  }
  .testimonials__grid {
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 100px;
  }
  .testimonials__grid__left__title {
    max-width: 500px;
  }
  .testimonials__grid__left__image {
    display: none;
  }
}
@media only screen and (max-width: 670px) {
  .testimonials {
    padding-top: 150px;
    margin-top: -150px;
  }
  .testimonials__grid {
    margin-bottom: 60px;
  }
  .testimonials__grid__right__testimonial {
    padding: 30px 20px;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    border-radius: 24px;
  }
  .testimonials__grid__right__testimonial__content__author {
    font-size: 14px;
    line-height: 16px;
  }
  .testimonials__grid__right__testimonial__content__company {
    font-size: 14px;
    line-height: 16px;
  }
  .testimonials__grid__right__testimonial__content__text {
    margin-top: 2px;
  }
  .testimonials__grid__right__testimonial__icon > img {
    width: 20px;
  }
}
.background_4 {
  background-image: url("/assets/images/background_4.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact {
  padding-top: 280px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 30px;
  color: #1a2257;
  margin-bottom: 160px;
}
.contact__image {
  justify-self: center;
  align-self: center;
}
.contact__middle-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__middle-column__title {
  margin-bottom: 10px;
  max-width: 320px;
}
.contact__middle-column__info-group {
  font-size: 14px;
  line-height: 22px;
}
.contact__middle-column__info-group__title {
  font-weight: 400;
}
.contact__middle-column__info-group__info {
  font-weight: 700;
}
.contact__middle-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.contact__middle-row__title {
  margin-bottom: 10px;
  max-width: 320px;
}
.contact__middle-row__info-group {
  font-size: 14px;
  line-height: 22px;
}
.contact__middle-row__info-group__title {
  font-weight: 400;
}
.contact__middle-row__info-group__info {
  font-weight: 700;
}
.contact__form__input-group {
  margin-bottom: 35px;
  max-width: 450px;
}
.contact__form__input-group label {
  display: block;
  color: #8e9cad;
}
.contact__form__input-group > input:focus, .contact__form__input-group > textarea:focus {
  border-bottom-color: #566ebd;
}
.contact__form__input-group__input, .contact__form__input-group__textarea {
  outline: none;
  appearance: none;
  border: none;
  background-color: transparent;
  width: 100%;
  border-bottom: 1px solid #e4e6f3;
  color: #1a2257;
}
.contact__form__input-group__input__error, .contact__form__input-group__textarea__error {
  display: none;
}
.contact__form__input-group__input.error, .contact__form__input-group__textarea.error {
  border-bottom-color: #f59789 !important;
}
.contact__form__input-group__input.error + div, .contact__form__input-group__textarea.error + div {
  display: flex !important;
  font-size: 12px;
  margin-top: 5px;
  justify-content: flex-end;
  color: #f59789;
}
.contact__form__input-group__input {
  height: 30px;
}
.contact__form__input-group__textarea {
  height: 150px;
}
.contact__form__send {
  font-weight: 700;
  padding: 0 50px;
  width: 450px;
  height: 70px;
  color: #1a2257;
  background-color: #f8ce63;
  font-size: 20px;
  font-weight: 600;
}
.contact__form__send:disabled, .contact__form__send:disabled:hover {
  opacity: 0.7;
  color: #1a2257;
  background-color: #f8ce63;
  cursor: not-allowed;
}

@media only screen and (max-width: 1050px) {
  .contact {
    grid-template-columns: 1.5fr 1.5fr;
  }
  .contact__middle-column__title {
    max-width: 210px;
  }
  .contact__image {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .contact {
    padding-top: 200px;
  }
  .contact__form__input-group {
    max-width: 100%;
  }
  .contact__form__input-group__input, .contact__form__input-group__textarea {
    max-width: unset;
    min-width: 0;
    width: 100%;
  }
  .contact__form__send {
    max-width: unset;
    min-width: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 670px) {
  .contact {
    padding-top: 170px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 70px;
    margin-bottom: 20px;
  }
}
.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.footer__disclaimer {
  margin-left: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #8e9cad;
}

@media only screen and (max-width: 670px) {
  .footer {
    flex-direction: column;
    gap: 20px;
  }
  .footer__disclaimer {
    margin: auto;
  }
}
#cookie-notice {
  padding: 20px 40px 20px 40px;
  display: none;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  min-height: 84px;
  max-width: 1440px;
  margin: 0 auto;
  background: #1C2254;
}
#cookie-notice img {
  width: 40px;
  height: 40px;
}
#cookie-notice span {
  font-size: 14px;
  color: #FFFFFF;
  margin: auto 20px;
}
#cookie-notice a {
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 12px 30px 12px 30px;
  width: 160px;
  font-size: 14px;
  font-weight: 600;
  background-color: #F1D074;
}

@media (max-width: 767px) {
  #cookie-notice span {
    margin: auto 10px;
  }
}
@media (max-width: 481px) {
  #cookie-notice {
    flex-direction: column;
  }
  #cookie-notice span {
    margin: 20px auto;
  }
}

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