@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  background-color: #281e33;
  color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #FFFFFF;
}

p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #FFFFFF;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #0A1D2E;
}

a:hover {
  color: #4dd9da;
}

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

.main-bg {
  position: absolute;
  width: 100%;
  height: 55%;
  background: linear-gradient(rgba(40, 30, 51, 0.1) 15%, rgba(40, 30, 51, 0.7) 90%, rgba(40, 30, 51, 1) 100%), url(../images/bg-main.webp);
  background-position: 64% 15%;
  background-size: cover;
  background-repeat: no-repeat;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  padding-left: 8px;
  padding-right: 8px;
}

.wrapper.main {
  max-width: 1300px;
}
.wrapper.inner {
  max-width: 1140px;
}

.about-section {
  padding: 20px 0;
}
.section-title {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-content p {
  color: #FFFFFF;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.section-content p:not(:last-of-type) {
margin-bottom: 24px;
}

.faq-section {
  padding: 20px 0;
  background-color: transparent;
}
.faq-image {
  font-size: 0;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.faq-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-items {
  width: 100%;
}
.faq-item {
  padding: 20px 16px;
  border: none;
  border-radius: 8px;
  background-color: #1d546b;
  overflow: hidden;
  font-family: Inter, sans-serif;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.not-active {
  display: none;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-question {
  width: 100%;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question .title {
  width: 86%;
}
.faq-icon {
  width: 35px;
  height: 35px;
  background-color: #4dd9da;
  border: none;
  border-radius: 50%;
  transition: transform 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-top: 20px;
}

.faq-answer p {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  color: #FFFFFF;
}

.factors-section {
  padding: 20px 0;
}

.factors-section .section-title {
  margin-bottom: 40px;
}

.factor-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.factor-item {
  width: 100%;
  border-radius: 16px;
  background-color: #1d546b;
  padding: 34px 36px;
}

.factor-image {
  font-size: 0;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  height: 180px;
  margin-bottom: 21px;
}

.factor-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.factor-text {
  font-family: Inter, sans-serif;
  color: #FFFFFF;
}

.factor-title {
  color: #FFFFFF;
  margin-bottom: 21px;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}
.factor-txt {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}

.legals-section {
  padding: 40px 0;
  color: #0A1D2E;
}

.legals-section .section-title {
  color: #0A1D2E;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  background-color: #4dd9da;
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 5px 8px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.legals-section .section-content {
  background-color: #D4DCF1;
  border: none;
  border-radius: 16px;
  padding: 10px 8px;
  box-shadow: rgba(214, 255, 126, 0.45) 0px 25px 20px -20px;
}

.legals-section .section-content h2,
.legals-section .section-content h3,
.legals-section .section-content h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
  color: inherit;
}

.legals-section .section-content ul {
  list-style: square;
  margin-left: 30px;
}

.legals-section .section-content p,
.legals-section .section-content ul li {
  color: inherit;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

.legals-section .section-content p:last-of-type,
.legals-section .section-content ul:last-of-type {
  margin-bottom: 0;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Inter;
  min-width: 148px;
  padding: 9px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f47e1a;
  color: #FFF;
}

.btn:hover {
  color: #f29343;
  background: #FFF;
  border: 1px solid #f29343;
}

@media (min-width: 412px){
  .faq-question .title {
    width: 90%;
  }
}

@media (min-width: 768px) {
  .wrapper {
    padding-left: 18px;
    padding-right: 18px;
  }
  .wrapper.inner {
    padding-left: 38px;
    padding-right: 38px;
  }
  .main-bg {
    height: 45%;
    background-position: 58% 15%;
  }
  .section-title {
    font-size: 28px;
  }
  .factor-item {
    max-width: 500px;
  }
  .legals-section .section-title {
    font-size: 21px;
    margin-bottom: 18px;
  }
}

@media (min-width: 1024px) {
  .faq-container {
    flex-direction: row;
  }
  .faq-image {
    width: 50%;
    max-width: 612px;
  }
  .faq-items {
    width: 50%;
    max-width: 606px;
  }
  .faq-container {
    align-items: flex-start;
  }
  .faq-question .title {
    width: 80%;
  }
  .factor-items {
    flex-direction: row;
    align-items: stretch;
  }
  .factor-item {
    flex: 1;
    max-width: 368px;
  }

  .legals-section .section-title {
    font-size: 24px;
    padding: 4px 24px;
    margin-bottom: 24px;
  }
  .legals-section .section-content {
    padding: 20px 24px;
  }
}


@media (min-width: 1280px) {
  .main-bg {
    height: 75%;
    background: linear-gradient(rgba(40, 30, 51, 0.1) 15%, rgba(40, 30, 51, 0.95) 90%, rgba(40, 30, 51, 1) 95%, rgba(40, 30, 51, 1) 100%), url(../images/bg-main.webp);
    background-position: 18% 15%;
    background-size: cover;
  }
  .wrapper.inner {
    padding-left: 0;
    padding-right: 0;
  }
  .about-section {
    padding: 40px 0;
  }
  .faq-section {
    padding: 40px 0;
  }
  .factors-section {
    padding: 40px 0 100px;
  }
  .section-title {
    font-size: 32px;
    margin-bottom: 25px;
  }
  .section-content p {
    font-size: 16px;
  }
  .section-content p:not(:last-of-type) {
  margin-bottom: 25px;
  }
  .faq-question {
    font-size: 21px;
  }
  .faq-answer p {
    font-size: 12px;
  }
  .faq-container {
    min-height: 614px;
  }
  .legals-section {
    padding: 60px 0;
  }
  
  .legals-section .section-content h2,
  .legals-section .section-content h3,
  .legals-section .section-content h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .legals-section .section-content p,
  .legals-section .section-content ul li {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .legals-section .section-content p:last-of-type,
  .legals-section .section-content ul:last-of-type {
    margin-bottom: 0;
  }
}

@media (min-width: 1320px) {
  .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .main-bg {
    height: 85%;
    background: linear-gradient(rgba(40, 30, 51, 0.1) 15%, rgba(40, 30, 51, 0.95) 90%, rgba(40, 30, 51, 1) 95%, rgba(40, 30, 51, 1) 100%), url(../images/bg-main.webp);
    background-position: 100% 15%;
    background-size: cover;
  }
}
