* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
a {
  transition: 0.3s;
}
img {
  max-width: 100%;
  max-height: 100%;
}
ul {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
.container {
  width: 1430px;
  padding: 0 15px;
  margin: auto;
}
body,
input,
textarea,
button {
  font-family: 'Poppins', sans-serif;
}
.modal {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.modal .close-modal-times {
  color: rgba(213, 213, 213, 0.78);
  font-size: 50px;
  position: absolute;
  right: 15px;
  top: 0px;
  cursor: pointer;
  transition: 0.3s;
}
.modal .close-modal-times:hover {
  color: #ffffff;
}
.modal .modal-block {
  width: 1197px;
  max-width: calc(100% - 24px);
  display: none;
  background-color: #ffffff;
  border-top: 1px;
  border-right: 4px;
  border-bottom: 4px;
  border-left: 1px;
  border-style: solid;
  border-color: #2B2B2B;
  border-radius: 10px;
  padding: 90px 65px;
  animation: scall 0.7s;
}
.open-modal {
  cursor: pointer;
}
.menu_mob {
  width: 30px;
  height: 20px;
  display: none;
  position: relative;
}
.menu_mob span {
  width: 30px;
  height: 3px;
  display: block;
  background-color: #000000;
  position: absolute;
  top: 0;
  transition: 0.5s;
}
.menu_mob span:nth-child(2) {
  top: 8px;
}
.menu_mob span:nth-child(3) {
  top: 16px;
}
.active_drop_men.menu_mob span {
  top: 7px;
  background: #FF0871;
}
.active_drop_men span:nth-child(1) {
  transform: rotate(225deg);
}
.active_drop_men span:nth-child(2) {
  transform: rotate(135deg);
}
.active_drop_men span:nth-child(3) {
  transform: rotate(225deg);
}
.overflow-wrap {
  overflow-x: auto;
  padding-bottom: 10px;
}
.overflow-wrap::-webkit-scrollbar-track {
  background-color: #efebe0;
}
.overflow-wrap::-webkit-scrollbar {
  height: 5px;
  background-color: #efebe0;
}
.overflow-wrap::-webkit-scrollbar-thumb {
  background-color: #0e987f;
  border-radius: 5px;
}
.scroll-top {
  position: fixed;
  bottom: 12px;
  right: 15px;
  width: 34px;
  height: 34px;
  display: block;
  background-color: #FF0871;
  border: 1px solid #fff;
  background-image: url(../img/up-arrow.svg);
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.6s ease;
  transform: translateX(150%);
  z-index: 10;
  border-radius: 7px;
}
.scroll-top:hover {
  background-color: #de0c66;
}
.scroll-top.active {
  opacity: 1;
  transform: none;
}
@keyframes scall {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.center {
  text-align: center;
}
.btn {
  width: 227px;
  max-width: 100%;
  height: 55px;
  background: #FF0871;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px;
  border-right: 4px;
  border-bottom: 4px;
  border-left: 1px;
  border-style: solid;
  border-color: #2B2B2B;
  border-radius: 10px;
  outline: none;
  font-size: 18px;
  text-align: center;
  color: #2B2B2B;
  cursor: pointer;
  transition: 0.3s;
}
.btn.small {
  width: 115px;
}
.btn.long {
  width: 374px;
}
.btn.white {
  background: #ffffff;
}
.btn.white:hover {
  background: #ebebeb;
}
.btn:hover {
  background-color: #de0c66;
}
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.header-box {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-menu {
  width: calc(100% - 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-list {
  display: flex;
  gap: 60px;
}
.menu-list li a {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #2B2B2B;
  font-family: 'Alumni Sans', sans-serif;
  border-bottom: 2px solid rgba(43, 43, 43, 0);
}
.menu-list li a:hover {
  border-color: #2b2b2b;
}
.header-logo:hover {
  opacity: 0.7;
}
.banner {
  background: #74FAB2;
}
.banner-wrap {
  height: 880px;
  display: flex;
  align-items: center;
  background-image: url(../img/banner-girl.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  position: relative;
}
.banner-content {
  max-width: 870px;
}
.banner-content h1 {
  font-weight: 900;
  font-family: 'Alumni Sans', sans-serif;
  font-size: 94px;
  line-height: 79%;
  text-transform: uppercase;
  color: #1F3839;
}
.banner-content p {
  font-weight: 700;
  font-size: 24px;
  color: #016D71;
  margin: 20px 0 30px;
}
.banner-btns {
  display: flex;
  gap: 22px;
}
.banner-scroll-btn {
  background-image: url(../img/scroll-btn.svg);
  background-position: left center;
  background-repeat: no-repeat;
  font-size: 16px;
  color: #005F5F;
  padding-left: 67px;
  position: absolute;
  bottom: 85px;
  left: 0;
  cursor: pointer;
  transition: 0.3s;
}
.banner-scroll-btn:hover {
  opacity: 0.7;
}
.total-box {
  position: relative;
  top: -63px;
}
.total-wrap {
  max-width: 1290px;
  display: flex;
  justify-content: space-between;
  margin: auto;
}
.total-block {
  width: calc(33.333% - 40px);
  background: #FFFFFF;
  padding: 16px 15px;
  text-align: center;
  border: 1px solid #163939;
  border-radius: 16px;
  box-shadow: 8px 8px 0px #163939;
}
.total-block h5 {
  font-size: 24px;
  color: #2B2B2B;
  margin-bottom: 5px;
}
.total-block p {
  font-size: 14px;
  color: #163939;
}
.traders {
  height: 890px;
  background-image: url(../img/traders-bg.jpg);
  background-position: center bottom;
  position: relative;
}
.traders-anim-box {
  width: 100%;
  position: absolute;
  top: 645px;
  left: 0;
  overflow: hidden;
}
.traders-anim-block {
  width: 11160px;
  height: 122px;
  display: flex;
  animation: slide 30s linear infinite;
  gap: 26px;
}
.traders-anim-block span {
  width: 2212px;
  height: 100%;
  display: block;
  background-image: url(../img/traders-bg-line.png);
}
@keyframes slide {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(-1920px);
  }
}
.traders-title {
  font-weight: 900;
  font-size: 94px;
  text-transform: uppercase;
  color: #ffffff;
  font-family: 'Alumni Sans', sans-serif;
  text-align: right;
  padding-right: 150px;
}
.traders-title span {
  color: #C4EEB6;
}
.traders-box {
  padding-top: 35px;
}
.traders-wrap {
  display: flex;
  align-items: flex-end;
  gap: 32px;
}
.trader-block {
  width: 288px;
  background-image: url(../img/border-box.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  border-radius: 16px 16px 0px 0px;
  text-align: center;
  padding: 54px 15px 41px;
  position: relative;
}
.trader-block p {
  font-weight: 700;
  font-size: 24px;
  line-height: 138%;
  color: #FFFFFF;
}
.trader-block:nth-child(1) {
  padding-top: 76px;
}
.trader-block:nth-child(2) .trader-photo {
  margin-top: 34px;
}
.trader-block:nth-child(3) .trader-photo {
  margin-top: 25px;
}
.trader-photo {
  margin-top: 15px;
}
.trader-number {
  width: 100px;
  height: 96px;
  background-image: url(../img/number-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 94px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 8px 8px 0px #163939;
  font-family: 'Alumni Sans', sans-serif;
  position: absolute;
  top: -100px;
}
.performers {
  padding: 112px 0 104px;
  background-color: #C4EEB6;
  overflow: hidden;
}
.performers .overflow-wrap {
  overflow: visible;
}
.performers-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
.performers-title {
  font-weight: 900;
  font-size: 80px;
  text-transform: uppercase;
  color: #1F3839;
  font-family: 'Alumni Sans', sans-serif;
}
.table-wrap {
  box-shadow: 8px 8px 0px #163939;
  border-radius: 10px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.table thead tr th {
  background: #ffffff;
}
.table thead tr th:first-child {
  border-radius: 10px 0 0 0;
}
.table thead tr th:last-child {
  border-radius: 0 10px 0 0;
}
.table tbody tr {
  transition: 0.3s;
  box-shadow: 8px 8px 0px #163939;
  border-radius: 10px;
}
.table tbody tr td {
  background-color: #ffffff;
  font-size: 16px;
  color: #2B2B2B;
  padding: 22px 10px;
}
.table tbody tr td:not(:last-child) {
  border-bottom: 1px solid #DBDDE0;
}
.table tbody tr:hover {
  cursor: zoom-in;
  transform: scale(1.03);
}
.table tbody tr:hover td:first-child {
  border-radius: 10px 0 0 10px;
}
.table tbody tr:hover td:last-child {
  border-radius: 0 10px 10px 0;
}
.table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}
.table tbody tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}
.table-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 26px 0 7px;
}
.table-header p {
  font-weight: 600;
  font-size: 24px;
  color: #2B2B2B;
  margin-left: 11px;
}
.user-name {
  display: flex;
  align-items: center;
  padding-left: 50px;
}
.user-name span {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
.drawdown-arrow {
  background-image: url(../img/win-rate-arrow.svg);
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  padding-left: 28px;
}
.win-rate-arrow {
  background-color: #F0EDFD;
  background-image: url(../img/win-rate-arrow.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  padding: 5px 12px 5px 36px;
  display: inline-block;
  border-radius: 8px;
}
.enough {
  padding: 254px 0 180px;
  overflow: hidden;
  position: relative;
}
.enough-box {
  background: #5CE1E6;
  border-radius: 24px;
  padding: 92px 84px;
  position: relative;
}
.enough-content {
  position: relative;
}
.enough-content h2 {
  font-weight: 900;
  font-size: 80px;
  font-family: 'Alumni Sans', sans-serif;
  color: #005F5F;
}
.enough-content p {
  max-width: 530px;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  color: #016D71;
  margin: 17px 0 22px;
}
.boy-photo {
  width: 640px;
  position: absolute;
  bottom: 0;
  left: 45%;
}
.actions-photo {
  position: absolute;
  top: -100px;
  right: -130px;
}
.footer {
  background: #020202;
  padding: 90px 0 50px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.footer-block {
  width: calc(25% - 12px);
}
.footer-block h4 {
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 15px;
}
.footer-block h6 {
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 3px;
}
.footer-block p {
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.footer-link-list li:not(:last-child) {
  margin-bottom: 6px;
}
.footer-link {
  font-size: 16px;
  color: #FFFFFF;
}
.footer-link:hover {
  color: #FF0871;
}
.footer-tel {
  background-image: url(../img/footer-tel.svg);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 20px;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.footer-social li a:hover {
  opacity: 0.7;
}
.footer-info {
  font-size: 12px;
  line-height: 180%;
  color: #FFFFFF;
}
.footer-info p {
  margin-bottom: 25px;
}
.footer-info b {
  font-weight: 700;
}
.modal-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-content {
  max-width: 530px;
}
.modal-content h3 {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 900;
  font-size: 45px;
  text-transform: uppercase;
  color: #1F3839;
}
.modal-content p {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: #016D71;
  margin: 15px 0 20px;
}
.timer-wrap {
  display: flex;
  position: relative;
}
.timer-wrap .timer-block {
  width: 80px;
}
.timer-block {
  text-align: center;
}
.timer-block p {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #3B3B3B;
}
.timer-block span {
  font-weight: 300;
  font-size: 64px;
  letter-spacing: 0.02em;
  color: #1F3839;
}
.timer-block:not(:first-child) {
  margin-left: 105px;
}
.timer-block:not(:first-child) span {
  position: relative;
}
.timer-block:not(:first-child) span:before {
  content: ':';
  font-weight: 300;
  color: #1F3839;
  position: absolute;
  top: 0;
  left: -50px;
}
.modal-timer-box {
  position: relative;
}
.timer-day {
  width: 171px;
  height: 168px;
  background-color: #ffffff;
  border-top: 1px;
  border-right: 6px;
  border-bottom: 6px;
  border-left: 1px;
  border-style: solid;
  border-color: #2B2B2B;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: -180px;
  left: 50px;
  z-index: 3;
}
.timer-day span {
  color: #FF0871;
  font-size: 84px;
}
.modal-timer {
  position: relative;
}
.timer-cards-photo {
  position: absolute;
  right: -160px;
  bottom: -90px;
}
.action-wrap {
  position: absolute;
  top: -100px;
  right: 0;
}
.action-block {
  width: 374px;
  height: 64px;
  background: #FFFFFF;
  box-shadow: 8px 8px 0px #163939;
  border: 1px solid #163939;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  position: relative;
  margin-bottom: 12px;
}
.action-anim {
  animation: run 8s linear infinite;
  animation-delay: 2s;
}
.action-anim:nth-child(2) {
  animation-duration: 11s;
}
.action-anim:nth-child(3) {
  animation-duration: 20s;
}
.action-anim:nth-child(4) {
  animation-duration: 15s;
}
.action-anim:nth-child(5) {
  animation-duration: 16s;
}
@-webkit-keyframes run {
  0% {
    left: 0;
  }
  50% {
    left: 100px;
  }
  100% {
    left: 0;
  }
}
.action-name {
  width: 33%;
}
.action-name h6 {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.003em;
  color: #000000;
}
.action-name p {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.005em;
  color: #8A8A8E;
}
.action-icon {
  width: 30%;
  text-align: center;
}
.action-info {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.action-info p {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.0008em;
  color: #000000;
}
.action-arrow {
  padding-left: 10px;
  background-repeat: no-repeat;
  background-position: left center;
}
.action-arrow.action-up {
  background-image: url(../img/up-icon.svg);
  color: #4DC552;
}
.action-arrow.action-down {
  background-image: url(../img/down-icon.svg);
  color: #FF2F2F;
}
