@import url('_variables.css');


.maincontainer .container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
.maincontainer h1,
.maincontainer h2,
.maincontainer h3,
.maincontainer h4,
.maincontainer h5,
.maincontainer h6 {
  /*font-family: var(--font-heading);*/
  color: var(--color-dark);
}

.maincontainer h2 {
  font-size: 42px;
  margin: 60px 0 40px;
  line-height: 1;
}

.maincontainer h3 {
  font-size: 30px;
  line-height: 1;
}

.maincontainer h4 {margin: 0;}

.maincontainer a {
  color: var(--color-purple);
  text-decoration: none;
}

.maincontainer p {
  margin: 0 0 20px;
}

#eos_header {margin-bottom: 50px;}
.eos_header_wrapper {
  background-image: url(../assets/images/back.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 50px 100px 70px;
  position: relative;
  margin-bottom: 60px;
}
.eos_header_logo {
  display: block;
  margin-bottom: 70px;
}
.rudot {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.eos_header_wrapper>h1 {
  font-size: 53px;
  line-height: 1;
  margin-bottom: 20px;
}

.eos_prodlinks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
.eos_prodlink>a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap:10px;

  font-size: 24px;
  font-weight: 500;
}
.eos_prodlink>a>img {transition: transform 0.3s;}
.eos_prodlink>a:hover>img {
  transform: scale(1.1);
}

.eos_benefits_wrapper {
  padding: 0 150px;
  margin: 100px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.eos_benefit>h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

@media (max-width: 1023px) {
  .eos_header_wrapper {padding: 50px 50px 70px;}
  .eos_prodlinks {grid-template-columns: 1fr 1fr;}
  .eos_prodlink>a>img {width: 100px;}
  .eos_benefits_wrapper {padding: 0 50px;}
}

@media (max-width: 767px) {
  .eos_header_wrapper {padding: 30px 20px 50px;}
  .eos_prodlinks {grid-template-columns: 1fr;}
  .eos_benefits_wrapper {padding: 0;}
}

@media (max-width: 479px) {
  body {font-size: 16px;}
  .maincontainer .container {padding: 0 10px;}
  .rudot {
    bottom: 10px;
    right: 10px;
  }
  .eos_header_wrapper>h1 {font-size: 36px;}
  h2 {
    font-size: 32px;
    margin: 40px 0 20px;
  }
  h3 {font-size: 26px;}
}


#po_list h2 {margin-bottom: 60px;}
.po_header {
  background-image: url(../assets/images/po_header.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 255px;
  box-sizing: border-box;
  padding: 60px 80px;
  margin-bottom: 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.po_header_text>h3 {
  font-size: 54px;
  margin-bottom: 20px;
  margin-top: 0;
}

@media (max-width: 1023px) {
  .po_header {
    padding: 40px;
    min-height: 200px;
  }
}

@media (max-width: 767px) {
  .po_header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .po_header_img {order: 1;}
  .po_header_text {order: 2;}
  .po_header_img>img {width: 100px;}
}
@media (max-width: 479px) {
  .po_header {padding: 20px;}
  .po_header_text>h3 {font-size: 36px;}
  .po_header_img>img {width: 70px;}
}

.highlight {
  font-weight: bold;
  margin: 60px;
  padding: 0 40px 40px;
  border-bottom: 1px solid var(--color-purple);
  position: relative;
}
.highlight:before {
  content: '';
  display: block;
  height: 60px;
  width: 1px;
  background-color: var(--color-purple);
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .highlight {
    margin: 40px 10px;
    padding: 20px;
  }
}

.po_points_wrapper {margin-top: 120px;}
.po_points_wrapper>h3 {font-size: 42px; margin-bottom: 40px; margin-top: 0;}
.points_trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 40px;
  cursor: pointer;
}
.points_trigger img {
  transition: transform 0.3s ease;
}
.po_points {
  margin: 0 150px;
  display: none;
}
.po_point {margin-bottom: 30px;}
.po_point_header {
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
.po_point_header:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: 5px solid #B4C4DC;
  border-radius: 20px;
  background-color: var(--color-dark);
  box-sizing: content-box;
  position: absolute;
  top: 3px;
  left: 0;
}
.po_point_text {opacity: 0.7;}

@media (max-width: 1023px) {
  .po_points {margin: 0 100px;}
}
@media (max-width: 767px) {
  .po_points {margin: 0 50px;}
  .po_points_wrapper>h3 {font-size: 34px; margin-bottom: 20px;}
  .points_trigger {font-size: 22px;}
}

@media (max-width: 479px) {
  .po_points {margin: 0 0 0 30px;}
  .po_points_wrapper>h3 {font-size: 30px; margin-bottom: 20px;}
  .points_trigger {font-size: 20px; margin-bottom: 20px;}
}

.form_block {
  background-image: url(../assets/images/back.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 70px 0;
  position: relative;
  margin: 120px 0;
}
.form_block_content {width: 70%;}
.form_block_content>h3 {
  font-size: 54px;
  margin-bottom: 20px;
  line-height: 1;
}

.eos_functions {
  list-style-type: none;
  margin: 60px;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: self-end;
}

.eos_function {
  padding: 0 0 20px 40px;
  border-bottom: 1px solid var(--color-purple);
  font-weight: bold;
  position: relative;
  vertical-align: bottom;
}

.eos_function:before {
  content: '';
  display: block;
  height: 40px;
  width: 1px;
  background-color: var(--color-purple);
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1023px) {
  .form_block_content>h3 {font-size: 40px;}
  .eos_functions {margin: 60px 0;}
  .eos_function {padding: 0 0 20px 20px;}
}

@media (max-width: 767px) {
  .form_block_content {width: 100%;}
  .eos_functions {grid-template-columns: 1fr 1fr;}
}

@media (max-width: 479px) {
  .form_block_content>h3 {font-size: 30px;}
  .eos_function {padding: 0 0 10px 10px;}
}

.mfc_features {
  margin: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.mfc_feature {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap:10px;
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
}
.mfc_feature:last-child>img {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .mfc_feature>img {width: 50px;}
  .mfc_feature {font-size: 24px;}
}

@media (max-width: 479px) {
  .mfc_feature>img {width: 30px;}
  .mfc_feature {font-size: 18px;}
}

.eos_contact {
  padding: 0 40px 40px;
  border-bottom: 1px solid var(--color-purple);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 100px;
}
.eos_contact:before, .eos_contact:after {
  content: '';
  display: block;
  height: 70px;
  width: 1px;
  background-color: var(--color-purple);
  position: absolute;
  left: 0;
  bottom: 0;
}
.eos_contact:after {
  left: auto;
  right: 0;
}
.eos_contact_right {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eos_contact_left>h2 {
  font-size: 54px;
  line-height: 1;
  margin: 30px 0 20px;
}
.eos_contact_left>p {margin: 0;}

.eos_contact_row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px
}
.eos_contact_item>h4 {margin: 0}

@media (max-width: 1023px) {
  .eos_contact_right {
    flex-basis: 70%;
  }
  .eos_contact_left>h2 {font-size: 40px;}
  .eos_contact_left>p {font-size: 16px;}
}

@media (max-width: 767px) {
  .eos_contact {
    flex-direction: column;
    align-items: flex-start;
  }
}