:root {
  --light-blue: #eef3f6;
  --blue-gradient-old: linear-gradient(135deg, white 0%, var(--light-blue) 100%);
}

section {
  clear: both;
}

section.banner {
  background-position: 0% 50%;
  background-size: cover !important;
  background: white;
  border-radius: 0 0 16px 16px;
}
@media (max-width: 1000px) {
  section.banner {
    background-color: #9ab6c1;
    background-image: none !important;
  }
}
section.banner > div {
  padding: 40px 20px;
  background: linear-gradient(135deg, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}
@media (max-width: 1000px) {
  section.banner > div {
    padding: 20px;
  }
}
section.banner > div .trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #948866;
  font-weight: bold;
  margin-bottom: 12px;
}
section.banner > div .trust-badge img {
  width: 30px;
}
section.banner > div h1 {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  max-width: 600px;
  text-align: left;
  margin: 0 0 0 0;
  line-height: 50px;
}
@media (max-width: 760px) {
  section.banner > div h1 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 10px;
  }
}
section.banner > div h2 {
  font-size: 24px;
  padding-top: 30px;
  padding-bottom: 20px;
  text-align: left;
  margin-left: 0;
  max-width: 600px;
}
@media (max-width: 760px) {
  section.banner > div h2 {
    font-size: 22px;
  }
}
section.banner > div h3 {
  max-width: 450px;
  font-size: 23px;
  margin-top: 15px;
  color: #5d8926;
  font-weight: 900;
}
@media (max-width: 1000px) {
  section.banner > div h3 {
    color: black;
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  section.banner > div a.apply {
    width: 100%;
  }
}
section.banner > div img.mobile-image {
  width: 100%;
}
@media (min-width: 1000px) {
  section.banner > div img.mobile-image {
    display: none;
  }
}

section.why {
  margin-top: 40px;
}
@media (max-width: 1000px) {
  section.why {
    padding-bottom: 20px;
    margin-top: 0;
  }
}
section.why .why-items {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
}
section.why .why-items .why-item {
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 100%);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  color: #777777;
}
section.why .why-items .why-item h4 {
  text-align: start;
  color: #948866;
  font-weight: 600;
  margin: 0;
}

section.about {
  color: #05191f;
}
section.about > div {
  display: flex;
  align-items: center;
}
@media (max-width: 760px) {
  section.about > div {
    flex-wrap: wrap;
  }
}
section.about > div > * {
  flex-grow: 1;
  flex-shrink: 1;
}
section.about > div img {
  margin: 0 0 0 20px;
  max-width: 50%;
}
@media (max-width: 760px) {
  section.about > div img {
    margin: 20px 0 0 0;
    width: 100%;
    max-width: 100%;
  }
}
section.about h1 {
  color: #4f626c;
  margin-bottom: 15px;
}

section.brokers {
  border-radius: 16px;
  background: var(--light-blue);
}
section.brokers .brokers {
  border-radius: 16px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media (max-width: 1000px) {
  section.brokers .brokers {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.brokers .brokers a {
  display: flex;
  gap: 8px;
  align-items: center;
  color: inherit !important;
}
section.brokers .brokers a img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #cccccc;
}

section.withdrawal {
  margin-top: 32px;
  border-radius: 16px;
  text-align: center;
}
section.withdrawal div.paysystems {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
section.withdrawal div.paysystems > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  position: relative;
  height: 130px;
}
section.withdrawal div.paysystems > div img {
  vertical-align: top;
  margin: 20px;
}
section.withdrawal div.paysystems > div img.w200 {
  max-width: 200px;
}
section.withdrawal div.paysystems > div img.h35 {
  max-height: 35px;
}
@media (max-width: 1000px) {
  section.withdrawal div.paysystems > div img {
    margin: 10px;
  }
}
section.withdrawal div.paysystems > div .fee {
  border-radius: 100px;
  background-color: white;
  padding: 8px 16px;
  font-weight: bold;
}
@media (min-width: 1000px) {
  section.withdrawal div.paysystems > div .fee {
    position: absolute;
    bottom: 0;
  }
}

section.steps {
  background: var(--light-blue);
  border-radius: 16px;
}
section.steps .wrapper {
  text-align: center;
  border-radius: 16px;
}
section.steps .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 12px;
  margin-bottom: 32px;
}
section.steps .grid .item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  padding: 32px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fbfbfb);
  color: black;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 30px rgba(34, 34, 34, 0.04);
}
section.steps .grid .item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
}
section.steps .grid .item .content {
  flex: 1;
  font-weight: 700;
  text-align: center;
}
section.steps .grid .item .content .description {
  color: var(--muted);
  font-weight: 400;
  margin-top: 6px;
}

section.proofs {
  background: white;
}
section.proofs .grid {
  display: flex;
  justify-content: center;
  gap: 32px;
}
@media (max-width: 1000px) {
  section.proofs .grid {
    flex-direction: column;
    gap: 16px;
  }
}
section.proofs .grid .item {
  display: flex;
  gap: 14px;
  align-items: center;
}
@media (max-width: 1000px) {
  section.proofs .grid .item {
    flex-direction: column;
    gap: 16px;
  }
}
section.proofs .grid .item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
@media (max-width: 1000px) {
  section.proofs .grid .item img {
    height: unset;
  }
}
section.howitworks {
  background: white;
}
section.howitworks img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
}
section.howitworks > div.wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
section.howitworks .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  section.howitworks .grid {
    display: flex;
    flex-direction: column;
  }
}
section.howitworks .grid .item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: var(--light-blue);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 30px rgba(34, 34, 34, 0.04);
}
section.howitworks .grid .item img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  border-radius: 12px;
}
section.howitworks .grid .item .content {
  flex: 1;
  font-weight: 700;
  text-align: center;
}
section.howitworks .grid .item .content .description {
  color: var(--muted);
  font-weight: 400;
  margin-top: 6px;
}
@media (max-width: 1000px) {
  section.howitworks img {
    width: 100%;
  }
}

h2 {
  color: #464e52;
  font-size: 32px;
  font-weight: 100;
}
@media (max-width: 1000px) {
  h2 {
    font-size: 26px;
  }
}

.contacts-popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100000;
}
.contacts-popup .wrapper {
  background-color: #41494f;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4666666667);
  color: white;
  padding: 30px 60px 30px 30px;
  margin: 20px;
}
.contacts-popup .wrapper input {
  display: block;
  margin-top: 20px;
  width: 200px;
}
.contacts-popup .wrapper .thanks {
  display: none;
}
.contacts-popup #contacts-popup-close {
  color: #b1bcca;
  position: absolute;
  right: 10px;
  cursor: pointer;
}
.contacts-popup #contacts-popup-close:hover {
  color: white;
}

section.faq {
  border-radius: 16px;
  margin-top: 32px;
}
section.faq > div {
  display: flex;
}
section.faq > div div:first-of-type {
  flex-grow: 1;
}
section.faq > div a {
  display: inline-block;
  margin-left: 40px;
  margin-top: 50px;
}
section.faq h4 {
  color: #4f626c;
  padding: 20px;
  border-left: 5px solid #a6bdc6;
  background: var(--light-blue);
  cursor: pointer;
  font-size: 12pt;
  font-weight: normal;
}
section.faq p {
  display: none;
  margin-left: 20px;
}

section.advantages {
  padding: 20px;
  background: var(--light-blue);
  text-align: center;
  border-radius: 16px;
}
section.advantages p.section-description {
  color: var(--muted);
}
section.advantages .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 12px;
}
@media (max-width: 1000px) {
  section.advantages .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.advantages .grid .item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fbfbfb);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 30px rgba(34, 34, 34, 0.04);
  transition: transform 0.5s ease;
}
section.advantages .grid .item:hover {
  transform: scale(1.01);
}
section.advantages .grid .item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
}
section.advantages .grid .item .content {
  flex: 1;
  font-weight: 700;
  text-align: start;
}
section.advantages .grid .item .content .description {
  color: var(--muted);
  font-weight: 400;
  margin-top: 6px;
}

hr.strip {
  height: 12px;
  background-color: #D8EBF6;
  border: none;
  margin: 16px 0;
}

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