@charset "UTF-8";
/*Обнуление color: #e7bf2b; ceb46f*/
@import url("https://fonts.googleapis.com/css?family=Rubik:300,regular,500,600");
@import url("https://fonts.googleapis.com/css?family=Cormorant+Garamond:300,regular,600,700");
@import url("https://fonts.googleapis.com/css?family=Inter:regular,500");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
  color: #e6b450;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  scroll-behavior: smooth;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  color: #e6b450;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

@font-face {
  font-family: "Lovelace";
  src: url("../../fonts/Lovelace-Bold.eot");
  src: url("../../fonts/Lovelace-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/Lovelace-Bold.woff2") format("woff2"), url("../../fonts/Lovelace-Bold.woff") format("woff"), url("../../fonts/Lovelace-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
:root {
  --black-color: #000;
  --dark-color: #333;
  --white-color: #fff;
  --green-color: #02190C;
  --dark-green-color: #030C06;
  --yellow-color: #E6BA6F;
  --Gold-text: #AA9164;
  --bg-color: #fcfcfc;
  --blue-color: #005BFF;
  --fs-main: 16px;
  --font-main: "Rubik", "sens-serif";
  --font-secondary: "Lovelace", "sens-serif";
  --font-secondary2: "Inter", "sens-serif";
  --font-secondary3: "Cormorant Garamond", "sens-serif";
}

body {
  background-color: var(--bg-color);
  font-family: var(--font-main);
  font-size: var(--fs-main);
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.container {
  max-width: 1615px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}

.main {
  min-height: 100%;
  flex: 1 1 auto;
}

.title {
  color: var(--dark-green-color);
  font-family: var(--font-secondary3);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 56.7px;
  text-transform: uppercase;
}

.hidden {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

.pop-up {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  transform: scale(0);
  transition: transform 123ms;
}
.pop-up--active {
  transform: scale(1);
  background-color: rgba(217, 217, 217, 0.1);
  transition: transform 123ms;
}
.pop-up__box {
  max-width: 845px;
  width: 100%;
  min-height: 514px;
  padding: 68px 19px 19px 19px;
  background-color: #D9D9D9;
  margin: 30px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pop-up__image {
  margin-bottom: 37px;
}
.pop-up__title {
  color: #0A0909;
  font-family: var(--font-secondary3);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 144.2%;
  margin-bottom: 25px;
}
.pop-up__subtitle {
  color: rgba(0, 0, 0, 0.56);
  font-family: var(--font-main);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.2%;
  margin-bottom: 110px;
}
.pop-up__button {
  color: var(--dark-green-color);
  font-family: var(--font-main);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 144.2%;
  padding: 12px 28px;
  border-radius: 10px;
  background-color: rgba(134, 188, 103, 0.54);
  position: relative;
  align-self: flex-end;
  transition: background-color 234ms;
}
.pop-up__button:hover {
  background-color: rgba(84, 172, 33, 0.54);
  transition: background-color 234ms;
}
.pop-up__button::after {
  content: "";
  width: 96px;
  height: 62px;
  border-radius: 10px;
  border: 1px solid #023418;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--green-color);
}
.header__wrapper {
  min-height: 204px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__menu {
  position: relative;
  z-index: 9999;
  margin-left: 102px;
}
@media (max-width: 768px) {
  .header__menu {
    display: none;
  }
}
.header__list {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header__link {
  color: var(--white-color);
  font-family: var(--font-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  transition: color 345ms;
}
.header__link:hover {
  color: var(--yellow-color);
  transition: color 345ms;
}
.header__link::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--yellow-color);
  position: absolute;
  bottom: -10px;
  left: 0;
  transform-origin: right;
  transform: scale(0);
  transition: transform 345ms;
}
.header__link:hover::after {
  content: "";
  transform-origin: left;
  transform: scale(1);
  transition: transform 345ms;
}

.hero {
  background: var(--green-color) url("../../img/decor/section-hero/lines.svg") 606px 55px no-repeat;
  position: relative;
  z-index: 9;
}
@media (min-width: 1900px) {
  .hero {
    background: var(--green-color);
  }
}
@media (max-width: 1447px) {
  .hero {
    background: var(--green-color);
  }
}
@media (max-width: 375px) {
  .hero {
    background: var(--green-color) url("../../img/decor/section-hero/lines-mobile.svg") -47px 378px no-repeat;
  }
}
.hero--padding {
  padding: 0 13px;
}
.hero__wrapper {
  padding-left: 103px;
  padding-top: 65px;
  padding-bottom: 25px;
  display: flex;
  align-content: inherit;
  gap: 56px;
}
@media (max-width: 1447px) {
  .hero__wrapper {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .hero__wrapper {
    padding-left: 6px;
    padding-top: 75px;
    padding-bottom: 75px;
    gap: 25px;
    min-height: 757px;
  }
}
.hero__title {
  max-width: 843px;
  font-family: var(--font-secondary3);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 56.7px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #AC9267 0.06%, #81622F 92.91%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 18px;
    line-height: 23.7px;
    margin-bottom: 32px;
  }
}
.hero__desc {
  max-width: 640px;
  color: var(--white-color);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.2%;
  margin-bottom: 50px;
}
.hero__desc span {
  color: var(--yellow-color);
  font-family: var(--font-secondary2);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .hero__desc {
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 0;
  }
}
.hero__buttons--copy {
  display: none;
}
@media (max-width: 1447px) {
  .hero__buttons {
    display: none;
  }
  .hero__buttons--copy {
    display: block;
  }
}
.hero__buttons-title {
  color: var(--white-color);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 32px;
}
.hero__buttons-title a {
  display: inline-block;
}
.hero__buttons-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 473px) {
  .hero__buttons-inner {
    flex-direction: column;
    gap: 15px;
  }
}
.hero__btn1 {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(270deg, #EC238D 0%, #8D297F 100%);
  color: var(--white-color);
  text-align: center;
  font-family: var(--font-secondary2);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
  box-shadow: 0 0 0 #EC238D;
  transition: box-shadow 234ms;
}
.hero__btn1:hover {
  box-shadow: 0 0 10px #EC238D;
  transition: box-shadow 234ms;
}
@media (max-width: 768px) {
  .hero__btn1 {
    padding: 8px 24px;
  }
}
@media (max-width: 473px) {
  .hero__btn1 {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
}
.hero__btn2 {
  display: inline-block;
  padding: 12px 47px;
  border: 2px solid #005BFF;
  color: #005BFF;
  text-align: center;
  font-family: var(--font-secondary2);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
  transition: all .2s ease;
  background:#f2f3f4;
}
.hero__btn2:hover {
  color: #005BFF;
  border: 2px solid #006eff;
  transition: color 234ms, border 234ms;
  background:#fff;
}
.hero__btn2:visited {
  color: #005BFF;
  border: 2px solid #006eff;
  transition: color 234ms, border 234ms;
  background:#fff;
}
@media (max-width: 768px) {
  .hero__btn2 {
    padding: 8px 44px;
  }
}
@media (max-width: 473px) {
  .hero__btn2 {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
}
.hero__btn3 {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(270deg, #336633 0%, #336633 100%);
  color: var(--white-color);
  text-align: center;
  font-family: var(--font-secondary2);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
  box-shadow: 0 0 0 #EC238D;
  transition: box-shadow 234ms;
}
.hero__btn3:hover {
  box-shadow: 0 0 10px #EC238D;
  transition: box-shadow 234ms;
}
@media (max-width: 473px) {
  .hero__btn3 {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
}
.hero__image {
  max-width: 433px;
  max-height: 566px;
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .hero__image {
    max-width: 138px;
    max-height: 180px;
  }
}

.decor {
  position: absolute;
  width: 132px;
  height: 132px;
}
@media (max-width: 768px) {
  .decor {
    width: 64px;
    height: 64px;
  }
}
.decor:nth-child(1) {
  top: 36px;
  left: 0;
}
.decor:nth-child(2) {
  top: 36px;
  right: 0;
}
.decor:nth-child(3) {
  bottom: 36px;
  right: 0;
}
.decor:nth-child(4) {
  bottom: 36px;
  left: 0;
}

.recommendations {
  background: var(--white-color) url("../../img/decor/section-recommendations/lines-recommendations.svg") center/cover no-repeat;
}
@media (min-width: 2155px) {
  .recommendations {
    background: var(--white-color);
  }
}
.recommendations__wrapper {
  padding-top: 40px;
  padding-bottom: 146px;
  padding-left: 102px;
  padding-right: 48px;
}
@media (max-width: 1561px) {
  .recommendations__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .recommendations__wrapper {
    padding-left: 0;
    padding-right: 0;
    padding-top: 55px;
    padding-bottom: 37px;
  }
}
.recommendations__title {
  max-width: 944px;
  margin-bottom: 55px;
}
@media (max-width: 1561px) {
  .recommendations__title {
    text-align: center;
  }
}
@media (max-width: 670px) {
  .recommendations__title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.7px;
    margin-bottom: 32px;
  }
}
.recommendations__columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(auto, 666px));
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 768px) {
  .recommendations__columns {
    gap: 20px;
  }
}
.recommendations__list:first-child .recommendations__item {
  margin-bottom: 50px;
}
.recommendations__list:first-child .recommendations__item:nth-child(2n) {
  position: relative;
}
.recommendations__list:first-child .recommendations__item:nth-child(2n)::before {
  content: "";
  display: inline-block;
  width: 120px;
  height: 80px;
  background: url("../../img/decor/decor-left-bottom.svg") 0 0 no-repeat;
  position: absolute;
  bottom: -17px;
  left: -23px;
}
.recommendations__list:first-child .recommendations__item:nth-child(2n)::after {
  content: "";
  display: inline-block;
  width: 120px;
  height: 80px;
  background: url("../../img/decor/decor-right-top.svg") 0 0 no-repeat;
  position: absolute;
  top: 6px;
  right: -15px;
}
@media (max-width: 768px) {
  .recommendations__list:first-child .recommendations__item:nth-child(2n)::after {
    display: none;
  }
  .recommendations__list:first-child .recommendations__item:nth-child(2n)::before {
    display: none;
  }
}
@media (max-width: 1561px) {
  .recommendations__list:first-child .recommendations__item {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .recommendations__list:first-child .recommendations__item {
    margin-bottom: 20px;
  }
}
.recommendations__list:last-child .recommendations__item {
  margin-bottom: 116px;
}
.recommendations__list:last-child .recommendations__item:not(:nth-child(2n)) {
  position: relative;
}
.recommendations__list:last-child .recommendations__item:not(:nth-child(2n))::before {
  content: "";
  display: inline-block;
  width: 120px;
  height: 80px;
  background: url("../../img/decor/decor-left-top.svg") 0 0 no-repeat;
  position: absolute;
  top: -21px;
  left: -23px;
}
.recommendations__list:last-child .recommendations__item:not(:nth-child(2n))::after {
  content: "";
  display: inline-block;
  width: 120px;
  height: 80px;
  background: url("../../img/decor/decor-right-bottom.svg") 0 0 no-repeat;
  position: absolute;
  bottom: -21px;
  right: -23px;
}
@media (max-width: 768px) {
  .recommendations__list:last-child .recommendations__item:not(:nth-child(2n))::after {
    display: none;
  }
  .recommendations__list:last-child .recommendations__item:not(:nth-child(2n))::before {
    display: none;
  }
}
@media (max-width: 1561px) {
  .recommendations__list:last-child .recommendations__item {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .recommendations__list:last-child .recommendations__item {
    margin-bottom: 20px;
  }
}
.recommendations__item {
  max-width: 666px;
}
.recommendations__item-desc {
  max-width: 666px;
  color: var(--dark-color);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.2%;
}
.recommendations__item-desc span {
  color: var(--Gold-text);
  font-family: var(--font-secondary);
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  line-height: 145.2%;
}
@media (max-width: 670px) {
  .recommendations__item-desc {
    flex: 16;
    line-height: normal;
  }
}

.about {
  background: var(--white-color) url("../../img/bg/section-about/about-bg.svg") center/contain no-repeat;
}
@media (min-width: 2678px) {
  .about {
    background: var(--white-color);
  }
}
@media (max-width: 1378px) {
  .about {
    background: var(--white-color);
  }
}
.about__wrapper {
  padding: 75px 80px;
}
@media (max-width: 802px) {
  .about__wrapper {
    padding: 18px 80px;
  }
}
@media (max-width: 768px) {
  .about__wrapper {
    padding: 18px 0;
  }
}
.about__title {
  margin-bottom: 55px;
}
@media (max-width: 768px) {
  .about__title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.7px;
    margin-bottom: 32px;
  }
}
.about__inner {
  padding: 56px 24px 20px;
  background-color: var(--yellow-color);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1378px) {
  .about__inner {
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--white-color);
  }
}
@media (max-width: 768px) {
  .about__inner {
    padding: 0;
  }
}
@media (max-width: 375px) {
  .about__inner {
    background: url("../../img/decor/section-about/abou-line-mobile.svg") -125px 1071px no-repeat;
  }
}
@media (max-width: 353px) {
  .about__inner {
    background: url("../../img/decor/section-about/abou-line-mobile.svg") -125px 1179px no-repeat;
  }
}
@media (max-width: 309px) {
  .about__inner {
    background: url("../../img/decor/section-about/abou-line-mobile.svg") -125px 1329px no-repeat;
  }
}
@media (max-width: 271px) {
  .about__inner {
    background: none;
  }
}
.about__text {
  max-width: 781px;
}
.about__desc {
  color: var(--dark-green-color);
  font-family: var(--font-main);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.2%;
}
@media (max-width: 1378px) {
  .about__desc {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .about__desc {
    font-size: 14px;
  }
}
.about__desc:first-child {
  margin-bottom: 48px;
}
.about__desc:nth-child(2) {
  margin-bottom: 23px;
}
.about__desc--mb {
  display: inline-block;
  margin-bottom: 10px;
}
.about__desc-capital {
  color: var(--dark-green-color);
  font-family: var(--font-secondary);
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  line-height: 145.2%;
}
@media (max-width: 1378px) {
  .about__desc-capital {
    font-family: var(--font-secondary);
    color: var(--Gold-text);
  }
}
@media (max-width: 768px) {
  .about__desc-capital {
    font-size: 16px;
  }
}
@media (max-width: 1378px) {
  .about__desc-name {
    color: var(--Gold-text);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
  }
}
@media (max-width: 768px) {
  .about__desc-name {
    font-size: 14px;
  }
}
.about__desc-link {
  color: transparent;
  font-family: transparent;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.2%;
}
@media (max-width: 1378px) {
  .about__desc-link {
    color: var(--Gold-text);
  }
}
.about__image {
  transform: translateY(-116px);
  max-width: 567px;
  max-height: 756px;
}
.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .about__image {
    max-width: 228px;
    max-height: 304px;
  }
}
@media (max-width: 1378px) {
  .about__image {
    transform: translateY(0);
  }
}

.trading-system {
  background: var(--bg-color);
}
.trading-system__wrapper {
  padding-top: 74px;
  padding-left: 99px;
  padding-right: 81px;
}
@media (max-width: 768px) {
  .trading-system__wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .trading-system__title {
    color: var(--dark-green-color);
    font-family: var(--font-secondary3);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.7px;
    text-transform: uppercase;
  }
}
.trading-system__items {
  margin-top: -42px;
  margin-bottom: 47px;
}
@media (max-width: 1541px) {
  .trading-system__items {
    margin-top: 32px;
  }
}
.trading-system__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.trading-system__item--2 {
  margin-top: -56px;
  align-items: flex-end;
  margin-bottom: 56px;
}
@media (max-width: 1541px) {
  .trading-system__item {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
  .trading-system__item-desc {
    order: 1;
  }
  .trading-system__item-image {
    order: 1;
  }
  .trading-system__item--2 {
    margin-top: 0;
  }
}
.trading-system__item-text--1 p:last-child {
  position: relative;
}
.trading-system__item-text--1 p:last-child::after {
  content: "";
  width: 120px;
  height: 80px;
  background: url("../../img/decor/decor-right-bottom.svg") 0 0 no-repeat;
  position: absolute;
  bottom: -27px;
  right: -23px;
}
@media (max-width: 1541px) {
  .trading-system__item-text--1 p:last-child::after {
    display: none;
  }
}
.trading-system__item-text--2 {
  position: relative;
}
.trading-system__item-text--2::before {
  content: "";
  width: 120px;
  height: 80px;
  background: url("../../img/decor/decor-left-top.svg") 0 0 no-repeat;
  position: absolute;
  top: -27px;
  left: -23px;
}
@media (max-width: 1541px) {
  .trading-system__item-text--2::before {
    display: none;
  }
}
.trading-system__item-text--3 {
  position: relative;
}
.trading-system__item-text--3::after {
  content: "";
  width: 120px;
  height: 80px;
  background: url("../../img/decor/decor-right-top.svg") 0 0 no-repeat;
  position: absolute;
  top: -27px;
  right: -23px;
}
@media (max-width: 1541px) {
  .trading-system__item-text--3::after {
    display: none;
  }
}
.trading-system__item-desc {
  max-width: 716px;
  color: var(--dark-green-color);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.2%;
}
.trading-system__item-desc:nth-child(1) {
  margin-bottom: 20px;
}
.trading-system__item-desc:nth-child(3) {
  margin-bottom: 20px;
}
.trading-system__item-desc span:not(.trading-system__item-desc-span) {
  color: var(--Gold-text);
  font-family: var(--font-secondary);
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  line-height: 145.2%;
}
@media (max-width: 768px) {
  .trading-system__item-desc-span {
    color: var(--Gold-text);
    font-family: var(--font-secondary3);
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
  }
}
@media (max-width: 768px) {
  .trading-system__item-desc {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
  }
  .trading-system__item-desc span:not(.trading-system__item-desc-span) {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
  }
}
.trading-system__item-image {
  max-width: 520px;
  max-height: 390px;
}
.trading-system__item-image--1 {
  max-width: 570px;
  max-height: 658px;
  border: 25px solid #023418;
}
@media (max-width: 768px) {
  .trading-system__item-image--1 {
    border: 15px solid #023418;
  }
}
.trading-system__item-image--2 {
  max-width: 536px;
  max-height: 626px;
  border: 25px solid var(--yellow-color);
}
@media (max-width: 768px) {
  .trading-system__item-image--2 {
    border: 15px solid var(--yellow-color);
  }
}
.trading-system__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 375px) {
  .trading-system__item-image {
    max-width: 279px;
    max-height: 327px;
  }
}
.trading-system__signs {
  padding: 43px 26px 26px 26px;
  background-color: var(--yellow-color);
  position: relative;
}
.trading-system__signs::before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../../img/decor/section-trading-system/semi-circle-mobile.svg") 0 0 no-repeat;
  position: absolute;
  top: 0;
  right: 12px;
}
@media (min-width: 1294px) {
  .trading-system__signs::before {
    width: 100px;
    background: url("../../img/decor/section-trading-system/semi-circle.svg") 0 0 no-repeat;
    right: 88px;
  }
}
.trading-system__signs::after {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../../img/decor/section-trading-system/semi-circle-mobile.svg") 0 0 no-repeat;
  transform: rotate(180deg);
  position: absolute;
  bottom: 0;
  right: 12px;
}
@media (min-width: 1294px) {
  .trading-system__signs::after {
    width: 100px;
    background: url("../../img/decor/section-trading-system/semi-circle.svg") 0 0 no-repeat;
    left: 88px;
  }
}
@media (max-width: 1525px) {
  .trading-system__signs {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .trading-system__signs {
    padding: 36px 0 0 6px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.7px;
  }
}
.trading-system__signs-title {
  color: var(--dark-green-color);
  font-family: var(--font-secondary3);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 144.2%;
  text-transform: uppercase;
  max-width: 719px;
  margin-bottom: 34px;
}
@media (max-width: 768px) {
  .trading-system__signs-title {
    margin-bottom: 30px;
  }
}
.trading-system__signs-list {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 1525px) {
  .trading-system__signs-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.trading-system__signs-item {
  color: var(--dark-green-color);
  max-width: 713px;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.2%;
}
.trading-system__signs-item span {
  color: var(--green-color);
  font-family: var(--font-secondary);
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  line-height: 145.2%;
}
@media (max-width: 768px) {
  .trading-system__signs-item {
    font-size: 14px;
  }
  .trading-system__signs-item span {
    font-size: 18px;
  }
}
.trading-system__signs-inner li {
  margin-bottom: 20px;
}

.about-course {
  background: var(--white-color) url("../../img/bg/section-about-course/about-course-bg.svg") center/contain no-repeat;
}
@media (max-width: 1161px) {
  .about-course {
    background: var(--white-color);
  }
}
.about-course__wrapper {
  padding-top: 74px;
  padding-bottom: 83px;
  padding-left: 100px;
}
@media (max-width: 768px) {
  .about-course__wrapper {
    padding-top: 55px;
    padding-bottom: 30px;
    padding-left: 0;
  }
}
.about-course__title {
  color: var(--green-color);
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .about-course__title {
    font-size: 18px;
    font-style: normal;
    line-height: 23.7px;
  }
}
.about-course__desc {
  color: var(--green-color);
  font-family: var(--font-secondary3);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 132.2%;
  max-width: 642px;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .about-course__desc {
    font-size: 18px;
    font-style: normal;
    line-height: 23.7px;
    max-width: 338px;
  }
}
.about-course__text {
  max-width: 1070px;
}
.about-course__text-desc {
  color: var(--dark-green-color);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.2%;
}
.about-course__text-desc:not(:last-child) {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .about-course__text-desc {
    font-size: 14px;
  }
}
.about-course__text-desc-capital {
  color: var(--Gold-text);
  font-family: var(--font-secondary);
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  line-height: 145.2%;
}
@media (max-width: 768px) {
  .about-course__text-desc-capital {
    font-size: 16px;
  }
}
.about-course__text-desc-highlight {
  color: var(--dark-green, #030C06);
  font-family: var(--font-secondary3);
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 144.2%;
}
.about-course__text-desc-highlight2 {
  color: var(--dark-green-color);
  font-family: var(--font-secondary3);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 144.2%;
}
.about-course__text-desc-highlight3 {
  color: var(--Gold-text);
  font-family: var(--font-secondary3);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 144.2%;
}
.about-course__text-desc-bold {
  color: var(--dark-green-color);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 144.2%;
  /* 24.514px */
}
.about-course__text-desc-link {
  color: var(--yellow-color);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 144.2%;
}

.sign-up {
  background-color: var(--white-color);
}
.sign-up__wrapper {
  padding: 75px 0 20px 0;
}
.sign-up__title {
  color: var(--black-color);
  font-family: var(--font-secondary3);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 56.7px;
  text-transform: uppercase;
  max-width: 730px;
  margin-bottom: 70px;
  margin-left: 101px;
}
@media (max-width: 768px) {
  .sign-up__title {
    margin-left: 0;
    font-size: 18px;
    line-height: normal;
    margin-bottom: 32px;
  }
}
.sign-up__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 518px;
  margin: 0 auto;
}
.sign-up__form input:not([type=checkbox], [type=file]) {
  max-width: 100%;
  width: 100%;
  height: 53px;
  padding: 15px 28px;
  background: var(--bg-color);
  border: 1px solid var(--dark-green-color);
  box-shadow: 0 0 0 var(--dark-green-color);
  transition: box-shadow 234ms;
}
.sign-up__form input:not([type=checkbox], [type=file]):hover, .sign-up__form input:not([type=checkbox], [type=file]):focus {
  box-shadow: 0 0 3px var(--dark-green-color);
  transition: box-shadow 234ms;
}
@media (max-width: 768px) {
  .sign-up__form input:not([type=checkbox], [type=file]) {
    padding: 9px 18px;
  }
}
.sign-up__form input:not(:last-child) {
  margin-bottom: 22px;
}
.sign-up__form input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.71);
  font-family: var(--font-main);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 137.7%;
}
.sign-up__form input::placeholder {
  color: rgba(0, 0, 0, 0.71);
  font-family: var(--font-main);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 137.7%;
}
@media (max-width: 768px) {
  .sign-up__form input::-moz-placeholder {
    font-size: 14px;
  }
  .sign-up__form input::placeholder {
    font-size: 14px;
  }
}
.sign-up__form-inner {
  position: relative;
  max-width: 518px;
  width: 100%;
  height: 53px;
  margin-bottom: 22px;
}
.sign-up__form-select {
  max-width: 100%;
  width: 100%;
  height: 53px;
  padding: 15px 28px;
  text-align: left;
  background-color: var(--white-color);
  border: 1px solid var(--dark-green-color);
  color: rgba(0, 0, 0, 0.71);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 137.7%;
  position: relative;
  box-shadow: 0 0 0 var(--dark-green-color);
  transition: box-shadow 234ms;
}
@media (max-width: 768px) {
  .sign-up__form-select {
    padding: 9px 18px;
    font-size: 14px;
  }
}
.sign-up__form-select:hover, .sign-up__form-select:focus {
  box-shadow: 0 0 3px var(--dark-green-color);
  transition: box-shadow 234ms;
}
.sign-up__form-select::after {
  content: "";
  width: 15px;
  height: 10px;
  background: url("../../img/icons/arrow-down.svg") 0 0 no-repeat;
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%) rotate(0);
  transition: transform 234ms;
  pointer-events: none;
}
@media (max-width: 768px) {
  .sign-up__form-select::after {
    display: none;
  }
}
.sign-up__form-select--active {
  box-shadow: 0 0 3px var(--dark-green-color);
  transition: box-shadow 234ms;
}
.sign-up__form-select--active:after {
  transform: translateY(-50%) rotate(-180deg);
  transition: transform 234ms;
}
.sign-up__form-dropdown-list {
  max-width: 100%;
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 99;
  background-color: var(--white-color);
  border: 1px solid var(--dark-green-color);
}
.sign-up__form-dropdown-item {
  padding: 15px 28px;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 768px) {
  .sign-up__form-dropdown-item {
    font-size: 14px;
  }
}
.sign-up__form-dropdown-item:not(:last-child) {
  border-bottom: 1px solid var(--dark-green, #030C06);
}
.sign-up__form-dropdown-item:hover {
  background-color: #e7e7e7;
}
.sign-up__form-date {
  color: rgba(0, 0, 0, 0.71);
  font-family: var(--font-main);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 137.7%;
  text-align: left;
}
@media (max-width: 768px) {
  .sign-up__form-date {
    font-size: 14px;
  }
}
.sign-up__form-label {
  align-self: flex-start;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 16px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .sign-up__form-label {
    margin-bottom: 11px;
  }
}
.sign-up__form-checkbox {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.sign-up__form-checkbox-custom {
  display: inline-block;
  max-width: 19px;
  width: 100%;
  height: 19px;
  background-color: #D9D9D9;
  position: relative;
  cursor: pointer;
}
.sign-up__form-checkbox-custom::before {
  content: "";
  width: 19px;
  height: 19px;
  display: inline-block;
  background: url("../../img/icons/check.svg") 0 0 no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 200ms;
}
.sign-up__form-checkbox:checked + .sign-up__form-checkbox-custom::before {
  transform: translate(-50%, -50%) scale(1);
}
.sign-up__form-checkbox:focus + .sign-up__form-checkbox-custom {
  box-shadow: 0 0 10px black;
}
.sign-up__form-checkbox-text {
  display: inline-block;
  color: rgba(0, 0, 0, 0.6);
  font-family: var(--font-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 137.7%;
  max-width: 481px;
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .sign-up__form-checkbox-text {
    font-size: 14px;
    line-height: normal;
  }
}
.sign-up__form-title {
  color: var(--dark-green-color);
  font-family: var(--font-main);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 137.7%;
  text-align: left;
  width: 100%;
  margin-bottom: 17px;
}
@media (max-width: 375px) {
  .sign-up__form-title {
    display: none;
  }
}
.sign-up__form-wrapper {
  max-width: 100%;
  width: 100%;
}
.sign-up__form-file {
  width: 100px;
  height: 100px;
}
.sign-up__form-content {
  display: flex;
  align-items: center;
  gap: 33px;
}
@media (max-width: 768px) {
  .sign-up__form-content {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .sign-up__form-content {
    gap: 27px;
  }
}
.sign-up__form-file-custom {
  display: inline-block;
  color: #023418;
  font-family: var(--font-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 137.7%;
  padding: 9px 13px;
  border: 1px solid var(--Green_-button, #023418);
  background-color: transparent;
  transition: color 234ms, background-color 234ms;
  cursor: pointer;
}
.sign-up__form-file-custom:hover {
  color: var(--yellow-color);
  background-color: #023418;
  transition: color 234ms, background-color 234ms;
}
@media (max-width: 768px) {
  .sign-up__form-file-custom {
    padding: 8px 14px;
    font-size: 14px;
  }
}
@media (max-width: 296px) {
  .sign-up__form-file-custom {
    padding: 5px 4px;
  }
}
.sign-up__form-file {
  display: none;
}
.sign-up__form-button {
  margin-top: 49px;
  padding: 18px 215px;
  color: var(--white-color);
  font-family: var(--font-main);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 137.7%;
  background: #53bf00;
  transition: color 234ms;
}
.sign-up__form-button:hover {
  color: #d38c13;
  transition: color 234ms;
}

.footer {
  background: #023418;
}
.footer__wrapper {
  padding: 29px 0 55px 102px;
}
@media (max-width: 768px) {
  .footer__wrapper {
    padding: 20px 0 67px 0;
  }
}
.footer__text {
  color: rgba(255, 255, 255, 0.68);
  font-family: Rubik;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 142.2%;
}
@media (max-width: 768px) {
  .footer__text {
    font-size: 11px;
    line-height: normal;
  }
}/*# sourceMappingURL=style.css.map */