@font-face {
  font-family: "Roboto bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/Roboto-Bold.ttf") format("ttf");
}

@font-face {
  font-family: "Roboto normal", sans-serif;
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/Roboto-Regular.ttf") format("ttf");
}

@font-face {
  font-family: "Roboto medium", sans-serif;
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/Roboto-medium.ttf") format("ttf");
}

@font-face {
  font-family: "Roboto italic", sans-serif;
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/Roboto-Italic.ttf") format("ttf");
}

@font-face {
  font-family: "Montserrat medium", sans-serif;
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/Montserrat-Medium.ttf") format("ttf");
}

:root {
  --font-size-50-24: clamp(1.5rem, -0.0234rem + 4.0625vw, 3.125rem);
  --font-size-30-18: clamp(1.125rem, 0.4219rem + 1.875vw, 1.875rem);
  --font-size-20-14: clamp(0.875rem, 0.5234rem + 0.9375vw, 1.25rem);

  --font-size-18: 1.125rem;
  --font-size-16: 1rem;
  --font-size-14: 0.875rem;
  --font-size-13: 0.813rem;
  --font-size-11: 0.688rem;
  --font-size-10: 0.625rem;

  --line-height-30: 30px;
  --line-height-24: 24px;
  --line-height-21: 21px;

  --red-100: #ffdddc;
  --red-500: #e53935;
  --white: #fff;
  --dark-50: #f0f0f0;
  --dark-100: #bfbfbf;
  --dark-300: #c9c9c9;
  --dark-400: #939393;
  --dark-500: #49494a;
  --dark-600: #363636;
  --dark-800: #232323;
  --blue50: #e3f2fd;
  --blue100: #bbdefb;
  --blue200: #90caf9;
  --blue300: #64b5f6;
  --blue400: #42a5f5;
  --blue500: #2196f3;
  --blue600: #1e88e5;
  --blue700: #1976d2;
  --blue800: #1565c0;
  --blue900: #0d47a1;
  --bluea100: #82b1ff;
  --bluea200: #448aff;
  --bluea400: #2979ff;
  --bluea700: #2962ff;
  --grey50: #fafafa;
  --grey100: #f5f5f5;
  --grey200: #eeeeee;
  --grey300: #e0e0e0;
  --grey400: #bdbdbd;
  --grey500: #9e9e9e;
  --grey600: #757575;
  --grey700: #616161;
  --grey800: #424242;
  --grey900: #212121;
  --red50: #ffebee;
  --red100: #ffcdd2;
  --red200: #ef9a9a;
  --red300: #e57373;
  --red400: #ef5350;
  --red500: #f44336;
  --red600: #e53935;
  --red700: #d32f2f;
  --red800: #c62828;
  --red900: #b71c1c;
  --reda100: #ff8a80;
  --redea200: #ff5252;
  --reda400: #ff1744;
  --reda700: #d50000;
  --green: #1fd09b;
  --darkgreen: #00b27d;

  --transition: cubic-bezier(0.68, -0.55, 0.265, 1.5);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-slow: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in: cubic-bezier(0.12, 0, 0.39, 0);
  --ease-in-out: cubic-bezier(0.86, 0, 0.07, 1);

  --border-radius-100: 100px;
  --border-radius-30: 30px;
  --border-radius-24: 24px;
  --border-radius-15: 15px;

  --padding-card-30: 30px;
  --padding-card-20: 20px;
  --padding-card-15: 15px;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
::before,
::after {
  box-sizing: inherit;
}

body {
  position: relative;
  font-family: "Roboto normal", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--grey900);
  margin: 0;
  min-height: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

p {
  color: var(--dark-500);
}

h1,
h2,
h3 {
  font-family: "Roboto-bold", sans-serif;
  text-transform: capitalize;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.list,
.list-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.btn-base:hover,
.btn-base {
  text-decoration: none;
}

.btn-base:focus,
.btn-base:active,
.btn-base:hover {
  text-decoration: none;
}

.list-features__title {
  text-transform: capitalize;
}

.fill-white {
  fill: var(--white);
}

.fill-green {
  fill: var(--green);
}

.fill-blue {
  fill: var(--blue400);
}

.stroke-white {
  stroke: var(--white);
}

.stroke-green {
  stroke: var(--green);
}

.stroke-blue {
  stroke: var(--blue400);
}

.stroke-dark {
  stroke: var(--grey900);
}

.fill-yellow {
  fill: #ffc452;
}

.fill-black {
  fill: var(--grey900);
}

.text-bold {
  text-transform: capitalize;
  font-weight: 700;
}

.text-italic {
  font-family: "Roboto-italic", sans-serif;
}

.m-auto {
  margin: 0 auto;
}

.section-padding {
  padding: 70px 0;
}

.padding-inline {
  padding-left: 10px;
  padding-right: 10px;
}

.margin-inline {
  margin-left: 10px;
  margin-right: 10px;
}

.mask,
.overflow {
  overflow: hidden;
}

.blue-500 {
  color: var(--blue500);
}

.white {
  background: var(--white);
}

.btn-button {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.btn-button:hover,
.btn-button:focus {
  border: none;
  background: none;
  box-shadow: none;
}

.btn-base {
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
  color: var(--light);
  text-transform: capitalize;
  text-decoration: none;
  line-height: 30px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 12px;
  z-index: 1;
}

.rounded {
  border-radius: 100px;
}

.rounded-1 {
  border-radius: 4px;
}

.rounded-2 {
  border-radius: 8px;
}

.rounded-3 {
  border-radius: 12px;
}

.rounded-4 {
  border-radius: 16px;
}

.rounded-5 {
  border-radius: 24px;
}

.btn-base::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 12px;
  transform-origin: left bottom;
  transition: transform 0.6s var(--transition) 0s;
  z-index: -1;
}

.btn {
  font-size: clamp(0.8125rem, 0.6504rem + 0.4511vw, 1rem);
}

.btn-base.btn-outline.fill::before {
  transform: translateX(-120%);
}

.btn-base.btn-outline.fill:hover::before {
  transform: translateX(0%);
}

.btn-base::before {
  transform: translateX(0%);
}

.btn-base:hover::before {
  transform: translateX(-120%);
}

.btn-base:hover {
  transition: background-color 0.2s var(--transition) 0s,
    transform 0.6s var(--transition) 0.2s;
}

.btn-base .text-container {
  overflow: hidden;
  word-wrap: break-word;
  white-space: nowrap;
  height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.btn-base .text-container span {
  transition: color 0.5s var(--transition) 0.1s,
    transform 0.5s var(--transition) 0s;
}

.btn-base:hover .text-container span {
  transform: translateY(-100%);
}

.btn-outline {
  color: #0f172b;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: color border 0.5s var(--transition) 0.4s;
}

.btn-outline.dark {
  border: 1px solid var(--dark-500);
  color: var(--dark-500);
}

.btn-outline.dark:hover {
  color: var(--white);
  border: 1px solid var(--blue400);
}

.btn-outline.dark::before {
  background: var(--blue400);
}

.btn-outline.fill.blue {
  border: 1px solid var(--blue400);
  color: var(--blue400);
}

.btn-outline.fill.blue::before {
  background: var(--blue400);
}

.btn-outline.fill.blue:hover {
  color: var(--white);
  border: 1px solid var(--blue400);
}

.btn-outline.blue {
  border: 1px solid var(--blue400);
  color: var(--white);
}

.btn-outline.blue::before {
  background: var(--blue400);
}

.btn-outline.blue:hover {
  color: var(--blue400);
  border: 1px solid var(--blue400);
}

.btn-outline.green {
  border: 1px solid var(--green);
  color: var(--white);
}

.btn-outline.green::before {
  background: var(--green);
}

.btn-outline.green:hover {
  color: var(--green);
  border: 1px solid var(--green);
}

.btn-outline.white {
  border: 1px solid var(--white);
  color: var(--grey900);
}

.btn-outline.white::before {
  background: var(--white);
}

.btn-outline.white:hover {
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-outline.gray {
  color: #0f172b;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.btn-outline.gray:hover {
  background-color: #e2e8f0;
  border: 1px solid #e2e8f0;
}

.btn-outline.gray:focus {
  outline: 1px;
  outline-offset: 4px;
  outline-color: var(--blue500);
}

.btn-blue {
  color: var(--white);
  background: var(--blue500);
}

.btn-blue:focus,
.btn-blue:hover {
  color: var(--white);
  background: var(--blue700);
}

.btn-base-sm {
  /* padding: 4px 8px; */
  padding: 0.25em 0.5em;
}

.btn-base-xs {
  /* padding: 8px 16px; */
  padding: 0.5em 1em;
}

.btn-base-md {
  /* padding: 8px 24px; */
  padding: 0.5em 1.5em;
}

.btn-base-lg {
  /* padding: 8px 32px; */
  padding: 0.5em 2em;
}

.btn-base-xxl {
  /* padding: 8px 40px; */
  padding: 0.5em 2.5em;
}

.list,
.list-features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.list-features__header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 100%;
}

.list-features__title {
  font-size: 18px;
}

.container.xxl {
  max-width: 1800px;
  width: 100%;

  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.section-title {
  color: var(--grey900);
  font-family: "Roboto-medium", sans-serif;
  font-size: 45px;
  line-height: normal;
  margin-bottom: 50px;
}

.section-title span {
  display: block;
}

.section-header {
  display: block;
  margin-bottom: 50px;
}

.section-header__title {
  color: var(--grey900);
  font-family: "Roboto medium", sans-serif;
  font-size: 45px;
  line-height: normal;
  margin-bottom: 30px;
}

.section-header__title span {
  display: block;
}

.section-header__text {
  font-size: 16px;
  line-height: normal;
  color: var(--dark-500);
}

.fly-smooth.xl {
  animation: fly-smooth 5s ease 0s infinite;
}

.fly-smooth.lg {
  animation: fly-smooth 4s ease 0s infinite;
}

.fly-smooth.md {
  animation: fly-smooth 3s ease 0s infinite;
}

.fly-smooth.small {
  animation: fly-smooth 2s ease 0s infinite;
}

.fly-smooth.xs {
  animation: fly-smooth 1s ease 0s infinite;
}

.animation-spin.xl {
  animation: spin 4s linear 0s infinite;
}

@keyframes pulse {
  from {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0);
  }

  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.5);
  }
}

@keyframes online-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  70% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }

  70.1%,
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes fly-smooth {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes spin-rotate {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(80px) rotate(360deg);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate-forward {
  0% {
    transform: translateX(0) rotate(0);
  }

  50% {
    transform: translateX(320px) rotate(360deg);
  }

  100% {
    transform: translateX(0) rotate(0);
  }
}

@keyframes rotate-forward-small {
  0% {
    transform: translateX(0) rotate(0);
  }

  50% {
    transform: translateX(100px) rotate(360deg);
  }

  100% {
    transform: translateX(0) rotate(0);
  }
}

.navbar.mobile {
  position: relative;
  top: unset;
  left: unset;
  right: unset;

  background-color: var(--white);
  background: var(--white);
  z-index: auto;
}

.navbar-brand.logo {
  width: 120px;
}

.mobile.navbar-toggler:focus,
.navbar.mobile .navbar-toggler {
  border-radius: unset;
  border: 1px solid transparent;
  box-shadow: none;
}

.mobile.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 45px;
  height: 45px;

  border-radius: 50%;
  transition: background-color 0.3s var(--ease-in-out) 0s;
}

.mobile.navbar-toggler:hover {
  background: var(--grey300);
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-item .nav-link {
  text-transform: capitalize;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus {
  color: var(--blue400);
}

.navbar-nav .nav-item>.nav-link>svg {
  transform: translateX(0px);
  opacity: 0;
  transition: transform 0.3s var(--ease-out-slow) 0s,
    opacity 0.3s var(--ease-out-slow) 0s;
  stroke-width: 0.5px;
}

.navbar-nav .nav-item>.nav-link:hover>svg {
  opacity: 1;
  transform: translateX(8px);
}

/* END TEMPLATE */

.section-header.hero {
  display: block;
  margin-top: 7%;
  margin-bottom: 9%;
}

.section-header.hero .section-header__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  font-size: clamp(1.5rem, -0.5536rem + 5.7143vi, 3.875rem);
}

.section-header.hero .section-header__title .icon,
.section-header.hero .section-header__title .icon::before {
  border-radius: 50%;
}

.section-header.hero .section-header__title .icon {
  position: relative;

  flex: 0 0 93px;

  width: 93px;
  height: 93px;

  margin-right: 10px;
  background: transparent;
  z-index: 2;
}

.section-header.hero .section-header__title .icon::after {
  content: "";

  width: 65%;
  height: 65%;

  background: transparent;
  border: 1px solid var(--blue400);
  animation: online-pulse 2s infinite;

  z-index: 2;
}

.section-header.hero .buttons-container .btn-blue,
.section-header.hero .section-header__title .icon,
.section-header.hero .section-header__title .icon::before,
.section-header.hero .section-header__title .icon::after {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-header.hero .buttons-container .btn-blue,
.section-header.hero .section-header__title .icon,
.section-header.hero .section-header__title .icon::before,
.section-header.hero .section-header__title .icon::after {
  border-radius: 50%;
}

.section-header.hero .section-header__title .icon::before,
.section-header.hero .section-header__title .icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-header.hero .section-header__title .icon::before {
  content: "";

  width: 60px;
  height: 60px;

  background: var(--blue400);
  z-index: -1;
}

.section-header.hero .section-header__title,
.section-header.hero .section-header__text {
  margin-bottom: 40px;
}

.section-header.hero .section-header__text {
  font-size: clamp(1rem, 0.6758rem + 0.9023vi, 1.375rem);
  max-width: 350px;
}

.section-header.hero .buttons-container {
  display: flex;
  align-items: center;
}

.section-header.hero .buttons-container .btn-outline.blue {
  font-size: 18px;
  padding: 20px 60px;
  margin-right: 10px;
}

.section-header.hero .buttons-container .btn-blue {
  width: 71px;
  height: 71px;

  background: var(--blue400);
}

.hero.main {
  background: url("../../../custom/adrofx_theme/img/main-page/hero-lg.png") var(--grey100);
  background-repeat: no-repeat;
  background-position: right 50px top -20px;
  background-size: 60% auto;

  padding-top: 70px;
  padding-bottom: 20px;
}

.hero.main .inner.margin-inline {
  margin-left: 20px;
  margin-right: 20px;
}

.hero.main .inner {
  padding: 50px 0;
  border-radius: 30px;
  background: var(--white);
}

.awards {
  background: url("../../../custom/adrofx_theme/img/main-page/olive-branch.svg") #f9f9f9;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 70px;
}

.section-header.award {
  display: flex;
  align-items: flex-end;
}

.section-header.award .section-header__title {
  flex: 1 0 auto;
  margin-right: 30px;
  margin-bottom: 0;
}

.section-header.award .section-header__text {
  max-width: 580px;
}

.splide__list.award-carousel,
.splide.award-carousel .splide__track {
  overflow-x: hidden;
  overflow-y: visible;
}

.splide.award-carousel .splide__track {
  padding-bottom: 70px;
}

.splide__list.awards .splide__slide {
  overflow: hidden;
  position: relative;
  padding: 30px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 17px 32px 50px -10px rgba(9, 19, 69, 0.05);
}

.splide__list.awards .splide__slide::before {
  position: absolute;
  top: 36px;
  right: 0;

  content: "";
  display: block;

  width: 105px;
  height: 216px;
  opacity: 0.5;

  background-image: url("../../../custom/adrofx_theme/images/icons/icon-branch-stroke.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.splide__list.awards .splide__slide>.title {
  color: var(--grey900);
  font-family: "Roboto-bold", sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  line-height: normal;
  text-transform: uppercase;

  margin-bottom: 30px;
}

.splide__list.awards .splide__slide .text {
  font-family: "Roboto-light", sans-serif;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 300;
  color: var(--grey600);
  line-height: normal;
}

.markets {
  background: #f9f9f9;
}

.section-header.market {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: left;
  margin-bottom: 30px;
}

.section-header.market .section-header__title {
  flex: 0 0 auto;
  margin-right: 30px;
  margin-bottom: 0;
}

.section-header.market .section-header__text {
  max-width: 350px;
}

.list.market-benefits {
  justify-content: center;
  margin-bottom: 50px;
}

.list.market-benefits .list__item {
  background: var(--white);
  border-radius: 100px;
  padding: 20px 30px;
}

.list.market-benefits .list__item,
.list.market-cards .list__item>.list.features .list__item {
  display: flex;
  align-items: center;
  text-transform: capitalize;
}

.list.market-benefits .list__item:not(:last-child) {
  margin-right: 10px;
}

.list.market-benefits .list__item svg {
  margin-left: 10px;
}

.list.market-cards .icon-market,
.list.market-cards>.list__item .text,
.list.market-cards .list__item>.list.features {
  margin-bottom: 50px;
}

.list.market-cards>.list__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-basis: calc(100% / 4 - 5px);

  background: var(--white);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 17px 32px 50px -10px rgba(9, 19, 69, 0.05);
}

.list.market-cards>.list__item .title {
  font-family: "Roboto-medium", sans-serif;
  font-size: 30px;
  color: var(--grey900);

  margin-bottom: 18px;
  font-weight: 600;
}

.list.market-benefits .list__item,
.list.market-cards>.list__item .title,
.list.market-cards>.list__item .text,
.section-header.market .section-header__text,
.section-header.market .section-header__title {
  line-height: normal;
  text-transform: capitalize;
}

.list.market-cards>.list__item .text {
  font-size: 15px;
}

.list.market-cards .list__item>.list.features {
  flex-direction: column;
  justify-content: stretch;
  flex-grow: 1;
}

.list.market-cards .list__item>.list.features .list__item {
  font-size: 16px;
}

.list.market-cards .list__item>.list.features .list__item:not(:last-child) {
  margin-bottom: 10px;
}

.list.market-cards .list__item>.list.features svg {
  margin-right: 10px;
}

.global-advantages {
  color: var(--white);
  background: #63b5f6;
}

.global-advantages .section-title {
  color: var(--white);
}

.list-features.advantages .list-features__item {
  flex-basis: calc(100% / 4 - 10px);
  background: var(--white);
  border-radius: 30px;
}

.list-features.advantages .list-features__title {
  font-family: "Roboto-bold", sans-serif;
  font-size: 24px;
  line-height: normal;
  color: var(--grey900);
  text-transform: capitalize;

  font-weight: 700;
  margin-bottom: 15px;
}

.list-features.advantages .list-features__header {
  overflow: hidden;
  position: relative;

  width: 100%;
  height: 160px;

  background: #f5f5f5;
  padding: 40px 30px;
  border-radius: 30px;
}

.list-features.advantages .list-features__body {
  padding: 30px;
}

.list-features.advantages .list-features__text {
  line-height: normal;
}

.list-features.advantages .list-features__text::first-letter {
  text-transform: capitalize;
}

.list-features.advantages .list-features__header .icon {
  position: absolute;
  z-index: 1;
}

.list-features.advantages .list-features__header .planet {
  top: 20px;
  left: -30px;
}

.list-features.advantages .list-features__header .regulated {
  top: 0;
  left: -20px;
}

.list-features.advantages .list-features__header .secured {
  bottom: 0;
  left: 0;
}

.list-features.advantages .list-features__header .award {
  top: -30px;
  left: -50px;
}

.list-features.advantages .list-features__header .benefits {
  margin-left: 60%;
}

.benefits .list {
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: fit-content;

  padding: 7px;
  background: var(--white);
  margin-bottom: 9px;
}

.benefits .list.secured {
  padding: 7px 20px;
}

.benefits .list.award {
  padding: 7px 14px;
}

.benefits .list.award .list__item {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.benefits .list.award .list__item svg {
  width: 20px;
  height: 20px;
}

.benefits .list .list__item {
  position: relative;
  color: var(--grey900);
}

.benefits .list+.inner {
  display: flex;
  align-items: center;
}

.benefits .list+.inner .text {
  font-size: 14px;
  font-family: "Roboto-italic", sans-serif;
  font-style: italic;
  line-height: 1.1;
  color: #325876;
  text-transform: capitalize;
}

.benefits .list+.inner svg {
  margin-right: 9px;
}

.copy-trading {
  background: url("../../../custom/adrofx_theme/img/main-page/copy-trading-pips.png"),
    var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding-top: 70px;
}

.section-header.copy {
  margin-bottom: 0;
}

.section-header.copy .section-header__title,
.section-header.copy .section-header__text {
  margin-bottom: 30px;
}

.section-header.copy .section-header__title span {
  display: inline-block;
}

.section-header.copy .section-header__text {
  max-width: 420px;
}

.section-header.copy .section-header__text+.btn-outline.blue {
  padding: 14px 50px;
}

.img-container.copy {
  position: relative;
}

.img-container.copy .phone-frame {
  overflow: hidden;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 67%;
  height: 100%;
}

.img-container.copy .phone-frame img {
  position: relative;
  width: 36.042vw;
  z-index: 2;
}

.img-container.copy .phone-frame .inner {
  overflow: hidden;
  position: absolute;
  top: 1.563vw;
  left: 50.5%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  width: 89%;
  height: 100%;

  border-top-left-radius: 3.5vw;
  border-top-right-radius: 3.5vw;
}

.img-container.copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;

  width: 100%;
  height: auto;
}

.img-container.copy .video-container {
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.img-container.copy .video-container .video {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 444px;
  height: 692px;

  object-fit: contain;
  object-position: center;
  aspect-ratio: 16/9;
}

.img-container.copy .icon-users {
  position: relative;
  top: 100px;
  left: calc(100% - 102px);
}

.img-container.copy .phone-frame .inner .video-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.img-container.copy .phone-frame .video-container>.video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 9/16;
}

.img-container.copy .trader {
  position: absolute;
  bottom: 0;
  right: 10%;

  width: auto;
  height: calc(100% - 50px);
  z-index: 4;
}

.img-container.copy .animation {
  position: relative;
  top: 100px;
  left: 50px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  width: max-content;
  padding: 7px;

  background: var(--green);
  margin-left: auto;
}

.img-container.copy .animation svg {
  margin-left: 20px;
  margin-right: 20px;
}

.header.main {
  padding: 30px 0;
  background: var(--white);
  box-shadow: 0px 19px 30px 0px rgba(9, 19, 69, 0.03);
  width: 100%;
}

.header.main .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header.main .nav .buttons-container {
  display: flex;
  gap: 10px;
  margin-right: 20px;
}

.header.main .nav .inner {
  display: flex;
  align-items: center;
}

.header.main .list {
  flex-wrap: nowrap;
}

.header.main .list .link {
  font-size: 14px;
  color: var(--dark600);
  text-transform: capitalize;
  line-height: normal;
  padding: 0 16px;
  text-decoration: none;
}

.header.main .list .link:hover,
.header.main .list .link:focus {
  text-decoration: none;
}

.banner-club {
  background: url("../../../custom/adrofx_theme/img/main-page/banner-pips.png") #64b5f6;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.banner-club .inner {
  position: relative;
  text-align: center;

  background: var(--white);
  border-radius: 40px;
  padding: 100px;

  box-shadow: 27px 27px 100px -20px rgba(33, 150, 243, 0.3);
}

.banner-club .inner::before {
  position: absolute;
  bottom: 0;
  right: 20%;

  display: block;
  content: "";

  width: 188px;
  height: 123px;

  background: url("../../../custom/adrofx_theme/images/icons/icon-round-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.section-header.banner-cta .section-header__title {
  font-size: 100px;
  margin-bottom: 10px;
}

.section-header.banner-cta .section-header__text {
  max-width: 500px;
  font-size: 20px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.section-header.banner-cta .btn-outline {
  padding: 15px 40px;
}

.logo-container {
  position: absolute;
  top: calc(100px + 12px);
  left: 12%;

  width: 120px;
  height: 200px;

  border-radius: 500px;
  padding: 6px;
  background: linear-gradient(168deg,
      #1e88e5 5.59%,
      rgba(255, 255, 255, 0) 114.79%);
}

.logo-container>.icon-logo {
  animation: spin-rotate 3s var(--ease-out-slow) 0s infinite;
}

.section-header.supporting-country .section-header__text {
  max-width: 420px;
  line-height: normal;
}

.country-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  padding: 30px;
  border-radius: 30px;
  background: #f5f5f5;
}

.country-card .section-header.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;

  margin-left: 5%;
  margin-right: 70px;
  margin-bottom: 0;
}

.country-card .section-header.card .label {
  display: inline-block;

  font-family: "Roboto-normal", sans-serif;
  font-size: 15px;
  line-height: normal;
  text-transform: capitalize;

  padding: 10px 15px;
  border: 1px solid var(--grey900);
  margin-bottom: 35px;
}

.country-card .video-container,
.country-card .section-header.card {
  background: none;
  border: unset;
  word-wrap: unset;
}

.country-card .video-container {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;

  flex: 1;
  /* height: 352px; */
}

.country-card .video-container .icon {
  position: absolute;
  top: 25px;
  right: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;

  border-radius: 50%;
  background: var(--white);
}

.country-card .video-container .btn-outline {
  position: absolute;
  bottom: 25px;
  right: 25px;
}

.country-card .video-container .btn-outline.green:hover {
  color: var(--white);
}

.country-card .video-container .btn-outline.green:hover::before {
  transform: translateX(0);
}

.country-card .section-header.card .section-header__title {
  font-size: 30px;
  margin-bottom: 15px;
}

.country-card .section-header.card .section-header__text {
  font-size: 16px;
  line-height: normal;
  max-width: 80%;
}

.list.tags {
  position: absolute;
  top: 30px;
  left: -90px;

  flex-direction: column;
  align-items: flex-end;

  margin-top: 17px;

  z-index: 2;
}

.list.tags.educational,
.list.tags.promotions {
  left: -60px;
}

.list.tags.support {
  left: -40px;
}

.list.tags.support .list__item.animation {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 92px;
  height: 92px;

  border-radius: 50%;
  margin-top: 24px;
}

.list.tags.support .list__item>.animation-spin.xl {
  position: absolute;
  top: 0;
  left: 0;
}

.list.tags .list__item {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;

  color: var(--grey900);
  font-size: 14px;
  line-height: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: capitalize;

  padding: 10px 15px;
  background: var(--white);
}

.list.tags .list__item:not(:last-child) {
  margin-bottom: 6px;
}

.country {
  position: relative;
  top: 0;
}

.country .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 150px;
}

.country-card {
  position: sticky;
  top: 200px;
  height: auto;
}

.country .top {
  position: sticky;
  top: 0;
}

.country .top,
.country .bottom {
  width: 100%;
}

.platforms {
  background: var(--blue300);
}

.section-header.platforms {
  display: block;
  background: transparent;
}

.section-header.platforms .section-header__title {
  font-size: 60px;
}

.section-header.platforms .section-header__title,
.section-header.platforms .section-header__text {
  color: var(--white);
}

.section-header.platforms .section-header__text {
  margin-bottom: 30px;
}

.list.tab {
  position: relative;
  display: flex;
  align-items: center;

  width: 75%;
}

.list.tab,
.list.os {
  padding: 10px;
}

.list.tab,
.list.operation-systems,
.img-container.platforms {
  background: var(--white);
}

.list.tab .list__item {
  flex-basis: calc(100% / 2 - 5px);
  border: 1px solid var(--grey300);
}

.list.tab .list__item button {
  padding: 15px 20px;
  width: 100%;
}

.list.tab .list__item,
.img-container.platforms,
.list.tab .list__item button,
.list.operation-systems .list__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.indicator,
.list.tab,
.list.operation-systems,
.list.tab .list__item {
  border-radius: 100px;
}

.indicator {
  position: absolute;
  top: 10px;
  left: 10px;
  transform: translateX(0);

  background: var(--green);
  width: calc(100% / 2 - 10px);
  height: calc(100% - 20px);
  opacity: 0;

  transition: transform 0.5s var(--ease-out) 0s,
    opacity 0.5s var(--ease-out) 0.2s;
}

.indicator.right {
  transform: translateX(100%);
}

.img-container.platforms {
  overflow: hidden;
  position: relative;
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 20px;
}

.img-container.platforms .platform-cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  height: 100%;

  z-index: 10;
}

.img-container.platforms .platform-cover.is-hide {
  display: none;
}

.img-container.platforms.active+.list.operation-systems .list__item:nth-child(-n + 2) {
  display: none;
}

.list.operation-systems {
  justify-content: center;
}

.list.operation-systems .list__item {
  padding: 10px;
}

.list.operation-systems .list__item svg {
  margin-right: 5px;
}

.list.operation-systems .list__item:not(:last-child) {
  margin-right: 10px;
}

.slide-track .slide .label,
.list.operation-systems .list__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: nowrap;
  width: 100%;
  height: auto;
  transform: translateX(0);
  transition: transform 2s var(--ease-out) 0s;
}

.slide-track.end {
  transform: translateX(-106.7%);
}

.slide-track .slide {
  position: relative;
  flex: 1 0 auto;
  width: 100%;
  height: 100%;
}

.slide-track .slide:not(:last-child) {
  margin-right: 30px;
}

.slide-track .slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
}

.slide-track .slide .label {
  font-family: "Roboto-medium", sans-serif;
  font-size: 16px;
  line-height: 1.1;
}

.slide-track .slide .btn-blue,
.slide-track .slide .label {
  position: absolute;
}

.slide-track .slide .label {
  top: 0;
  right: 0;
}

.slide-track .slide .btn-blue {
  bottom: 0;
  right: 0;

  padding: 14px 40px;
}

.start {
  background: #f5f5f5;
}

.section-header.start {
  text-align: center;
}

.section-header.start .section-header__title span {
  display: inline-block;
}

.list-features.step {
  margin-bottom: 50px;
  counter-reset: step;
}

.list-features.step .list-features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  flex-basis: calc(100% / 4 - 10px);
  text-align: center;

  border-radius: 30px;
  padding: 30px;
  background: var(--white);

  box-shadow: 17px 32px 60px 0px rgba(9, 19, 69, 0.08);
}

.list-features.step .list-features__header {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 160px;

  width: 100%;
  height: auto;

  margin-bottom: 20px;
}

.list-features.step .list-features__header::before {
  position: absolute;
  top: 30px;
  left: 30px;

  display: block;

  counter-increment: step;
  content: counter(step);

  color: var(--grey900);
  font-family: "Roboto-bold", sans-serif;
  font-size: 40px;
  line-height: normal;
  font-weight: 600;
}

@keyframes progress {
  to {
    stroke-dashoffset: var(--target);
  }
}

.list-features.step .list-features__header .progress-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list-features.step .list-features__header .progress-circle>#circle {
  stroke-width: 5px;
  stroke: url("#Gradient");
  fill: none;
  stroke-dasharray: 450;
  stroke-dashoffset: 450;
  stroke-linecap: round;
}

.list-features.step .list__item:not(:last-child) {
  margin-right: 10px;
}

.list-features.step .list-features__title {
  color: var(--grey900);
  font-family: "Roboto-bold", sans-serif;
  font-size: 24px;
  line-height: normal;
  margin-bottom: 15px;

  font-weight: 600;
}

.list-features.step .list-features__text {
  line-height: normal;
}

.list-features.step+.buttons-container {
  text-align: center;
}

.list-features.step+.buttons-container .btn-outline {
  padding: 15px 30px;
}

.form-quick .inner>label {
  font-family: "Roboto-normal", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
}

.hero.main .form-quick {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;

  max-width: 1160px;
}

.hero.main .form-quick .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 7px;

  padding: 0;
}

.hero.main .form-quick .inner>label {
  flex: 1 1 230px;
}

.section-title.form {
  margin-bottom: 26px;
}

.form-quick .inner>label,
.form-quick .inner>label input {
  position: relative;
  outline: none;
  border: 1px solid transparent;
}

.form-quick .inner>label input {
  width: 100%;
  padding: 15px 20px;
  background: #e9f5ff;
  border-radius: 100px;
}

.form-quick .inner>label input:focus {
  border: 1px solid var(--blue-500);
}

.form-quick .inner>label input::placeholder {
  font-size: 12px;
  color: #232323;
  line-height: normal;
  text-transform: capitalize;
}

.form-quick .buttons-container.form .btn-outline.green svg {
  margin-left: 10px;
}

.section-title.form {
  font-size: 24px;
  line-height: 1.5;
}

.form-quick .buttons-container.form .checkbox {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-top: 10px;
}

.form-quick .buttons-container.form .checkbox__label {
  display: flex;
  align-items: center;
  column-gap: 10px;
  text-transform: capitalize;
}

.form-quick .buttons-container.form .checkbox {
  font-size: 12px;
  line-height: 1.3;
}

.checkbox {
  display: block;
  margin-bottom: 0;
}

.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.checkbox label {
  position: relative;
  cursor: pointer;
}

.checkbox label::before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--blue500);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 5px;
}

.checkbox input[type="checkbox"]:checked+label::after {
  position: absolute;
  top: 7px;
  left: 9px;

  content: "";
  display: block;

  width: 6px;
  height: 14px;

  border: solid var(--blue500);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-quick .privacy-policy .checkbox {
  width: 180px;
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 0;
}

.form-quick .privacy-policy .checkbox__label {
  display: flex;
  align-items: center;
  column-gap: 10px;
  /* margin-top: 10px; */

  text-transform: capitalize;
}

.form-quick .privacy-policy .checkbox .link {
  font-size: 13px;
  line-height: 1.3;
}

.section-header.form {
  display: flex;
  align-items: flex-end;
  margin-bottom: 30px;
}

.section-header.form .section-header__title,
.section-header.form .section-header__text {
  line-height: normal;
}

.section-header.form .section-header__title {
  font-size: 2.813rem;
  margin-right: 30px;
  margin-bottom: 0;
}

.section-header.form .section-header__text {
  font-size: 24px;
}

.about {
  position: relative;
  background: var(--white);
  z-index: 3;
}

.section-header.about .section-header__text {
  margin-bottom: 30px;
}

.section-header.about .buttons-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.img-container.about {
  position: relative;
  width: 100%;
}

.img-container.about .phone-left {
  animation: fly-smooth 6s ease-in-out -3s infinite;
}

.img-container.about .phone-right {
  position: absolute;
  top: 0;
  right: 0;

  animation: fly-smooth 6s ease-in-out 0s infinite;
}

.header.copy-trade {
  padding: 30px 0;
  background: var(--white);
  box-shadow: 0px 4px 32.2px 0px rgba(0, 0, 0, 0.05);
}

.navigation.copy-trade {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navigation.copy-trade>.inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list.nav-menu {
  display: flex;
  align-items: center;
  margin-right: 93px;
}

.list.nav-menu .list__item .link {
  font-size: 14px;
  padding: 0 16px;
  text-transform: capitalize;
}

.list.nav-menu .list__item .link:hover,
.list.nav-menu .list__item .link:focus {
  text-decoration: none;
}

.copy-trading.main {
  background: #f5f5f5;
  padding: 0;
}

.hero.copy-trading {
  overflow: hidden;
  position: relative;
  background: #fbfbfb;
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-header.hero-copy {
  flex: 1;
  margin-bottom: 0;
  padding-right: 15px;
}

.section-header.hero-copy .icon-users {
  margin-bottom: 40px;
  filter: drop-shadow(0px 21.915px 54.789px rgba(26, 48, 158, 0.1));
}

.section-header.hero-copy .badge>svg {
  margin: 0 25px;
}

.section-header.hero-copy .section-header__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 0.2121rem + 3.5838vi, 3.4375rem);
  line-height: 1.2;

  font-weight: 500;
  text-transform: uppercase;
}

.section-header.hero-copy .section-header__title>span {
  display: flex;
  align-items: center;
}

.section-header.hero-copy .section-header__title>span svg {
  width: 6.427vw;
  height: 2.755vw;
}

.section-header.hero-copy .section-header__text {
  max-width: 500px;
  margin-bottom: 30px;
}

.section-header.hero-copy .section-header__text+.btn-outline.green {
  font-size: 18px;
  padding: 20px 30px;
}

.section-header.hero-copy+.inner.icons {
  display: block;
  flex: 1.2;
}

.section-header.hero-copy+.inner.icons>.icon {
  position: absolute;
  z-index: 3;
}

.section-header.hero-copy+.inner.icons>.icon-tesla {
  top: 50%;
  right: 0;
}

.section-header.hero-copy+.inner.icons>.icon-nasdaq {
  bottom: -50px;
  right: 10%;
}

.section-header.hero-copy+.inner.icons>.icon-amazon {
  left: 0;
  bottom: -50px;
}

.section-header.hero-copy+.inner.icons>.icon-google {
  top: -50px;
  left: 50%;
}

.section-header.hero-copy+.inner.icons>.trade {
  display: none;

  bottom: -120px;
  left: 35%;
  filter: drop-shadow(30px 30px 30px rgba(108, 130, 238, 0.2));

  z-index: 5;
}

.img-container.copy.page {
  overflow: hidden;
  position: relative;

  display: flex;
  align-items: flex-start;
  justify-content: flex-start;

  height: 570px;

  border-radius: 71px;
  background: url("../../../custom/adrofx_theme/img/copy-trade/hero-img-pips.png"),
    linear-gradient(201deg, #e3f3ff -24.18%, #42a5f5 173.43%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  padding-top: 70px;
}

.img-container.copy.page .video-container .video {
  width: 394px;
  height: 500px;
}

.hero.copy-trading .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-container.copy.page .phone-frame .inner>.video.copy {
  display: block;
}

.img-container.copy-trading>.badge svg {
  margin-right: 15px;
}

.img-container.copy.page .phone-frame {
  width: 42%;
  height: 100%;
  margin-left: 7%;
}

.img-container.copy.page .phone-frame .inner {
  top: 0.781vw;
  width: 90%;

  border-top-right-radius: 1.927vw;
  border-top-left-radius: 1.927vw;
}

/* old */
/* .img-container.copy.page .trader {
  right: 7%;
  left: unset;
  height: calc(100% - 70px);
} */

.img-container.copy.page .trader {
  bottom: 0;
  left: 40%;
  height: calc(100% - 70px);
}

.copy-trading.awards {
  padding: 0;
}

.copy-trading.awards .top {
  position: relative;
  background: var(--white);
  z-index: 3;
}

.copy-trading.awards .bottom {
  overflow: hidden;
  position: relative;
  background: #eaf6ff;
  padding-top: 70px;
}

.copy-trading.awards .bottom>.splide.award-carousel {
  position: relative;
  z-index: 2;
}

.copy-trading.awards .bottom>.splide.award-carousel .splide__slide::before {
  content: unset;
}

.copy-trading.awards .bottom::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: block;
  content: "";

  width: 900px;
  height: 400px;

  background: url("../../../custom/adrofx_theme/images/icons/icon-one-branch.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  z-index: 0;
}

.section-header.copy.award {
  display: block;
  margin-bottom: 0;
}

.section-header.copy.award .section-header__title {
  margin-bottom: 30px;
}

.inner.award-icon {
  display: flex;
  align-items: center;
}

.inner.award-icon .img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 93px;

  width: 93px;
  height: 93px;

  border-radius: 50%;
  background: #eaf6ff;
  margin-right: 20px;
}

.inner.award-icon .img-container+.title {
  font-size: 35px;
  font-family: "Roboto-italic", sans-serif;
  line-height: normal;
  color: var(--grey900);

  font-style: italic;
}

.sticky-container {
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 20px;
  border-radius: 50px;

  background: var(--white);
}

.section-header.top-choose {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
}

.section-header.top-choose .section-header__text {
  margin-bottom: 30px;
  max-width: 564px;
}

.section-header.top-choose .section-header__text+.btn-outline.blue {
  padding: 15px 30px;
}

.list-features.horizontal-scroll {
  display: flex;
  flex-wrap: nowrap;
  margin-left: 40%;
}

.list-features.horizontal-scroll .list-features__item:not(:last-child) {
  margin-right: 10px;
}

.list-features.horizontal-scroll .list-features__item {
  overflow: hidden;
  position: relative;

  display: inherit;
  flex-direction: column;
  flex-shrink: 0;
  flex-basis: 552px;
  height: 359px;

  padding: 20px 20px 40px 20px;
  border-radius: 37px;
  background: #f5f5f5;

  will-change: transform;
}

.list-features.horizontal-scroll .list-features__header {
  position: relative;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 200px;

  width: 100%;
  height: auto;

  border-radius: unset;
  margin-bottom: 20px;
}

.list-features.horizontal-scroll .list-features__item:hover .icon-hover {
  transform: translateY(10px) rotate(3.728deg);
}

.list-features.horizontal-scroll .list-features__item:hover .icon-bottom {
  transform: translateY(0) rotate(-3.588deg);
}

.list-features.horizontal-scroll .list-features__item.best-solution:hover .icon-hover {
  transform: translateY(-10px) rotate(-3.588deg);
}

.list-features.horizontal-scroll .list-features__item.statistics:hover .icon-hover {
  transform: translateY(-10px) rotate(-8.406deg);
}

.list-features.horizontal-scroll .list-features__item .icon-bottom,
.list-features.horizontal-scroll .list-features__header>.icon-hover,
.list-features.horizontal-scroll .list-features__item.best-solution .icon-hover {
  transition: transform 0.4s var(--ease-in-out) 0s;
  transform-origin: left;
}

.list-features.horizontal-scroll .list-features__item.best-solution .icon-hover {
  transform: translateY(0) rotate(0deg);
  filter: drop-shadow(29px 29px 30px rgba(26, 48, 158, 0.05));
}

.list-features.horizontal-scroll .list-features__item.statistics .icon-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(0) rotate(0deg);
  filter: drop-shadow(5px 30px 30px rgba(26, 48, 158, 0.1));
}

.list-features.horizontal-scroll .list-features__header>.icon-hover {
  position: absolute;
  top: 15px;
  left: 0;

  transform: translateY(0) rotate(-3.588deg);
  filter: drop-shadow(5px 30px 30px rgba(26, 48, 158, 0.1));
  z-index: 2;
}

.list-features.horizontal-scroll .list-features__body {
  flex: 1 0 auto;
  max-width: 250px;
}

.list-features.horizontal-scroll .list-features__title {
  color: var(--grey900);
  font-family: "Roboto-bold", sans-serif;
  font-size: 24px;
  line-height: normal;
  margin-bottom: 10px;

  font-weight: 700;
}

.list-features.horizontal-scroll .list-features__text {
  line-height: normal;
}

.start-step.margin-inline {
  margin: 20px;
}

.start-step .top,
.start-step .bottom {
  background: var(--white);
}

.start-step .top {
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
}

.start-step .bottom {
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

.section-header.start-step {
  display: flex;
  align-items: flex-end;
  margin: 0;
}

.section-header.start-step .section-header__title {
  margin-right: 30px;
  margin-bottom: 0;
  flex: 1 0 auto;
}

.start-step .bottom,
.list.header .list__item .img-container {
  background: linear-gradient(103deg, #e3f3ff 4.33%, #42a5f5 177.15%);
}

.list.header .list__item .img-container {
  background: url("../../../custom/adrofx_theme/img/copy-trade/trading-tools-pips.png"),
    linear-gradient(103deg, #e3f3ff 4.33%, #42a5f5 177.15%);
  background-repeat: repeat-x;
  background-position: center;
  background-size: 680px;
}

.list.header .list__item {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;

  width: 100%;
}

.list.header .list__item::before {
  position: absolute;
  top: 10px;
  left: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
  counter-increment: follow-step;
  content: "0" counter(follow-step) ".";

  width: 88px;
  height: 88px;

  font-family: "Roboto italic", sans-serif;
  font-size: 30px;
  text-align: center;
  font-style: italic;
  font-weight: 700;

  border-radius: 50%;
  background: transparent;
  border: 1px solid #d9d9d9;
}

.list.header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 100px;

  counter-reset: follow-step;
}

.list.header .list__item .inner {
  width: 50%;
  max-width: 350px;

  margin-left: 11%;
}

.list.header .list__item .img-container {
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 50%;

  border-radius: 37px;
  padding: 50px;
}

.list.header .list__item .img-container>img {
  display: none;
}

.list.header .list__item .img-container video {
  border-radius: 37px;
}

.list.header .list__item .inner .title {
  display: flex;
  align-items: center;

  font-family: "Roboto bold", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: var(--grey900);
}

.list.header .list__item .inner .title>svg {
  margin-right: 10px;
}

.list.header .list__item .inner .title,
.list.header .list__item .inner .text {
  margin-bottom: 20px;
}

.list.header .list__item .inner .text {
  line-height: normal;
}

.list.header .list__item {
  position: sticky;
  top: 50px;

  background: var(--white);
  border-radius: 47px;
  padding: 10px;
}

.trading-tools {
  padding-top: 70px;
  background: var(--white);
}

.section-header.trading-tools {
  display: flex;
  align-items: flex-end;
  padding-top: unset;
}

.section-header.trading-tools .section-header__title {
  flex: 1 0 auto;
  margin-right: 30px;
  margin-bottom: 0;
}

.trading-tools .inner {
  overflow: hidden;
  border-radius: 50px;
  background: #f5f5f5;
  padding: 16px;
}

.list-features.trading-tools {
  background: transparent;
  padding-top: 0;
}

.list-features.trading-tools .list-features__item {
  overflow: hidden;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: stretch;

  flex-basis: calc(100% / 3 - 5px);

  border-radius: 37px;
}

.list-features.trading-tools .list-features__header {
  width: 100%;
  height: 300px;

  background: url("../../../custom/adrofx_theme/img/copy-trade/trading-tools-pips.png"),
    linear-gradient(103deg, #e3f3ff 4.33%, #42a5f5 177.15%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: unset;
}

.list-features.trading-tools .list-features__body {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-grow: 1;

  padding: 30px;
  background: var(--white);
}

.list-features.trading-tools .list-features__item .list-features__title {
  font-family: "Roboto bold", sans-serif;
  color: var(--grey900);
  font-size: 30px;
  font-weight: 700;
}

.list-features.trading-tools .list-features__item .list-features__text {
  flex-grow: 1;
  text-transform: capitalize;
}

.list-features.trading-tools .list-features__title,
.list-features.trading-tools .list-features__text {
  margin-bottom: 15px;
}

.list-features.trading-tools .list-features__item.icon::before {
  position: absolute;
  top: 20px;
  left: 20px;

  content: "";
  display: flex;
  align-items: center;
  justify-content: center;

  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.list-features.trading-tools .list-features__item.tools::before {
  background: url("../../../custom/adrofx_theme/images/icons/icon-tools.svg"),
    rgba(255, 255, 255, 0.7);
  background-size: 28px 27px;
  background-repeat: no-repeat;
  background-position: center;
}

.list-features.trading-tools .list-features__item.market::before {
  background: url("../../../custom/adrofx_theme/images/icons/icon-level-up.svg"),
    rgba(255, 255, 255, 0.7);
  background-size: 28px 27px;
  background-repeat: no-repeat;
  background-position: center;
}

.list-features.trading-tools .list-features__item.chess::before {
  background: url("../../../custom/adrofx_theme/images/icons/icon-chess.svg"),
    rgba(255, 255, 255, 0.7);
  background-size: 28px 27px;
  background-repeat: no-repeat;
  background-position: center;
}

.footer {
  color: var(--white);
  background: var(--grey900);
  padding: 30px 0;
  width: 100%;
  align-self: flex-end;
}

.footer .footer-top {
  display: flex;
  justify-content: space-between;
  grid-column-gap: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--grey800);
}

.footer .footer-top .footer-menu {
  padding-top: 15px;
  padding-right: 30px;
}

.footer .footer-top .footer-menu .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;
  column-gap: 40px;
  column-fill: balance;
}

.footer .footer-top .footer-menu .menu li {
  margin: 0;
  margin-bottom: 10px;
}

.footer .footer-top .footer-menu .menu li a {
  color: var(--white);
  font-size: 12px;
  display: block;
  padding: 0;
  transition: all ease 0.3s;
}

.footer .footer-top .footer-menu .menu li a:hover,
.footer .footer-top .footer-menu .menu li a:focus,
.footer .footer-top .footer-menu .menu li a:active {
  color: var(--blue500);
}

.footer .footer-top .footer-contacts {
  padding-top: 15px;
  padding-right: 30px;
  display: flex;
  align-items: center;
}

.footer .footer-top .footer-contacts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-top .footer-contacts ul li a {
  color: var(--white);
  display: flex;
  line-height: 1;
  align-items: center;
  padding: 8px 0;
  transition: all ease 0.3s;
}

.footer .footer-top .footer-contacts ul li a:hover,
.footer .footer-top .footer-contacts ul li a:focus,
.footer .footer-top .footer-contacts ul li a:active {
  text-decoration: none;
  color: var(--blue500);
}

.footer .footer-top .footer-contacts ul li a span {
  width: 30px;
  text-align: center;
}

.footer .footer-top .footer-logo {
  display: flex;
  padding-top: 15px;
  align-items: center;
}

.footer .footer-top .footer-logo img {
  height: 50px;
  width: auto;
}

.footer .footer-bottom .disclamer {
  font-size: 11px;
  color: var(--grey600);
  margin-bottom: 30px;
}

.footer .footer-bottom .disclamer p {
  margin-bottom: 5px;
}

.footer .footer-bottom .copyright {
  text-align: center;
  font-size: 14px;
  color: var(--white);
}

.wrapper.ib-register {
  width: 100%;
  min-height: 100%;
  height: 100vh;
  background: var(--blue800);
}

.registration .top-side {
  padding-bottom: 50px;
  flex-grow: 1;
}

.registration .top-side .header {
  padding-top: 50px;
}

.wrapper.ib-register .registration {
  display: flex;
  flex-direction: column;
  min-height: 100%;

  background: url("../images/register-bg.jpg") var(--blue800);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.registration .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 20px auto;
}

.registration .content .heading {
  color: var(--white);
  margin-bottom: 50px;
}

.registration .footer {
  color: var(--white);
  background: none;
  padding: 15px 0;
}

.registration .form-container .nav-tabs {
  background: var(--grey200);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  border-bottom: 0;
}

.registration .form-container .nav-tabs .nav-link {
  padding: 15px;
  font-size: 18px;
  color: var(--grey600);
  border-radius: 16px 16px 0 0;
  border: 0;
}

.registration .form-container .nav-tabs .nav-link.active {
  color: var(--blue500);
}

.registration .form-container .tab-content {
  background: var(--white);
  padding: 40px;
  border-radius: 0 0 16px 16px;
}

.registration .form-container .tab-content {
  background: var(--white);
  padding: 40px;
  border-radius: 0 0 16px 16px;
}

.registration-form h5 {
  text-transform: capitalize;
}

.registration-form .input-field {
  position: relative;
  margin-bottom: 30px;
  z-index: 10;
}

.registration-form .input-field.select-container {
  z-index: 20;
}

.registration-form .input-field label {
  display: flex;
  align-items: center;
  position: absolute;
  height: 38px;
  line-height: 1;
  margin: 0;
  top: 0;
  transition: all ease 0.3s;
  font-size: 16px;
  color: var(--grey900);
  z-index: 12;
}

.registration-form .input-phone .label,
.registration-form .input-field label {
  pointer-events: none;
}

.registration-form .input-field .input-control,
.registration-form .input-field .empty {
  position: relative;

  border: 1px solid var(--white);
  border-radius: 0;

  padding-left: 0;
  padding-right: 180px;
  margin: 0;

  background: none;
  box-shadow: 0 1px 0 var(--grey300);
  border: 0;
}

.registration-form .input-field .input-control,
.registration-form .input-field .empty,
.registration-form .input-field select {
  font-family: "Roboto-normal", sans-serif;
  font-weight: 600;
}

.registration-form .input-field .input-control:focus+label,
.registration-form .input-field .input-control.fill+label,
.registration-form .input-field .empty:focus+label,
.registration-form .input-field .empty.fill+label {
  top: -20px;
  transition: all ease 0.3s;
  font-size: 12px;
  color: var(--blue500);
  z-index: 1;
}

.registration-form .input-field .form-help-text {
  position: absolute;
  height: 38px;
  display: none;
  align-items: center;
  text-align: right;
  top: 0;
  left: auto;
  right: 38px;
  bottom: 0;
  margin: 0;
  color: var(--grey400);
}

.registration-form .input-field .form-help-text.text-red {
  color: var(--red500);
}

.registration-form .input-field select {
  z-index: 0;
  border: 1px solid var(--white) !important;
  border-radius: 0;
  box-shadow: 0 1px 0 var(--grey300);
  padding-left: 0;
  padding-right: 180px;
  position: relative;
  margin: 0;
  background: var(--white) url("../images/arrow-dropdown.svg") no-repeat;
  background-position: calc(100% - 28px) center;
  background-size: 10px auto;
  appearance: none;
  cursor: pointer;
}

.registration-form .input-field select:focus,
.registration-form .input-field select.fill {
  border: 1px solid var(--white) !important;
}

.registration-form .input-field select:focus+label,
.registration-form .input-field select.fill+label {
  top: -28px;
  transition: all ease 0.3s;
  font-size: 12px;
  color: var(--blue500);
  border-color: transparent;
  z-index: 3;
}

.registration-form .input-field .btn-help {
  display: block;
  position: absolute;
  z-index: 10;
  top: 0;
  left: auto;
  right: 0;
  width: 38px;
  height: 38px;
  background: var(--white);
  box-shadow: 0;
  border-radius: 0;
  margin-left: auto;
  margin-right: 0;
}

.registration-form .input-field .btn-help:hover,
.registration-form .input-field .btn-help:focus,
.registration-form .input-field .btn-help:active {
  box-shadow: none;
}

.registration-form .input-field .btn-help.info {
  background: url("../images/icon-info.svg") no-repeat center;
}

.registration-form .input-field .strength {
  margin-top: 5px;
}

.registration-form .input-field .strength span {
  background: #dfffcd;
  color: #2c930c;
  display: inline-block;
  margin-right: 5px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1;
  padding: 4px 8px;
}

.registration-form .input-field .strength span.red {
  background: var(--red100);
  color: var(--red900);
}

.registration-form .input-field.has-error .form-help-text {
  display: flex;
}

.registration-form .input-field.has-error .input-control {
  box-shadow: 0 1px 0 var(--red500);
}

.registration-form .input-field.select-container small.form-help-text.text-red {
  right: 68px !important;
}

.registration-form .input-phone {
  position: relative;
  margin-bottom: 30px;
}

.registration-form .input-phone .label {
  top: -15px;
}

.registration-form .input-phone .iti {
  width: 100%;
}

.registration-form .input-phone .iti__selected-flag {
  background: none;
  border: none;
}

.registration-form .input-phone .iti__selected-flag:hover,
.registration-form .input-phone .iti__selected-flag:focus,
.registration-form .input-phone .iti__selected-flag:active {
  background: none !important;
  border: none;
  outline: none;
}

.registration-form .input-phone label {
  display: flex;
  align-items: center;
  position: absolute;
  height: 38px;
  line-height: 1;
  margin: 0;
  top: 0;
  transition: all ease 0.3s;
  font-size: 16px;
  color: var(--grey900);
  z-index: 1;
  top: -20px;
  transition: all ease 0.3s;
  font-size: 12px;
  color: var(--blue500);
  z-index: 3;
}

.registration-form .input-phone input,
.registration-form .input-phone .empty {
  border: 1px solid var(--white);
  z-index: 2;
  border: 0;
  border-radius: 0;
  box-shadow: 0 1px 0 var(--grey300);
  padding-left: 0;
  padding-right: 180px;
  position: relative;
  margin: 0;
  background: none;
  font-weight: 900;
  font-family: "Roboto-Bold";
}

.registration-form .input-phone input::placeholder,
.registration-form .input-phone .empty::placeholder {
  color: var(--grey900);
  font-family: "Roboto-Bold";
}

.registration-form .input-phone .form-help-text {
  position: absolute;
  height: 38px;
  display: none;
  align-items: center;
  text-align: right;
  top: 0;
  left: auto;
  right: 38px;
  bottom: 0;
  margin: 0;
  color: var(--grey400);
}

.registration-form .input-phone .form-help-text.text-red {
  color: var(--red500);
}

.registration-form .input-phone .btn-help {
  display: block;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 38px;
  height: 38px;
  background: var(--white);
  box-shadow: 0;
  border-radius: 0;
  margin-left: auto;
  margin-right: 0;
}

.registration-form .input-phone .btn-help:hover,
.registration-form .input-phone .btn-help:focus,
.registration-form .input-phone .btn-help:active {
  box-shadow: none;
}

.registration-form .input-phone .btn-help.info {
  background: url("../images/icon-info.svg") no-repeat center;
}

.registration-form .input-phone.has-error .form-help-text {
  display: flex;
}

.registration-form .pin-group {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.registration-form .pin-group button {
  width: 120px;
  margin-right: 10px;
}

.registration-form .pin-group button.btn-help {
  display: block;
  position: absolute;
  z-index: 10;
  top: 0;
  left: auto;
  right: 0;
  width: 38px;
  height: 38px;
  background: var(--white);
  box-shadow: 0;
  border-radius: 0;
  margin-left: auto;
  margin-right: 0;
  background: url(../images/icon-info.svg) no-repeat center;
}

.registration-form .pin-group input {
  width: 120px;
  text-align: center;
  font-size: 1rem;
}

.registration-form .pin-group.has-error input {
  box-shadow: 0 1px 0 var(--red500);
}

.registration-form .form-check {
  padding-left: 0;
  position: relative;
}

.registration-form .form-check label {
  font-size: 11px;
  color: var(--grey500);
}

.registration-form .form-check input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.registration-form .form-check input+label {
  display: inline-flex;
  align-items: flex-start;
  user-select: none;
}

.registration-form .form-check input+label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  flex-grow: 0;
  background: var(--grey300);
  margin-top: -5px;
  margin-right: 5px;
  background: url("../images/check-default.svg") no-repeat center;
  background-size: 100% 100%;
}

.registration-form .form-check input:checked+label::before {
  border-color: #0b76ef;
  background: url("../images/check-checked.svg") no-repeat center;
  background-size: 100% 100%;
}

.registration-form .form-check .btn-help {
  display: block;
  position: absolute;
  z-index: 10;
  top: 0;
  left: auto;
  right: 0;
  width: 38px;
  height: 38px;
  background: var(--white);
  box-shadow: 0;
  border-radius: 0;
  margin-left: auto;
  margin-right: 0;
}

.registration-form .form-check .btn-help:hover,
.registration-form .form-check .btn-help:focus,
.registration-form .form-check .btn-help:active {
  box-shadow: none;
}

.registration-form .form-check .btn-help.info {
  background: url("../images/icon-info.svg") no-repeat center;
}

.registration-form .form-check .input-btn.yes+label {
  background: var(--white);
  position: relative;
  border: 1px solid var(--grey300);
  border-radius: 8px;
  font-size: 14px;
  display: block;
  padding: 10px 20px;
}

.registration-form .form-check .input-btn.yes+label::before {
  display: none;
}

.registration-form .form-check .input-btn.yes:checked+label {
  background: var(--green);
  border: 1px solid var(--green);
  color: var(--white);
}

.registration-form .form-check .input-btn.no+label {
  background: var(--white);
  position: relative;
  border: 1px solid var(--grey300);
  border-radius: 8px;
  font-size: 14px;
  display: block;
  padding: 10px 20px;
}

.registration-form .form-check .input-btn.no+label::before {
  display: none;
}

.registration-form .form-check .input-btn.no:checked+label {
  background: var(--red400);
  border: 1px solid var(--red400);
  color: var(--white);
}

.registration-form .dropdown-item {
  background: var(--white) url("../images/check-bg.svg") no-repeat center;
  background-position: calc(100% - 10px) center;
  background-size: 18px auto;
}

.registration-form .dropdown-item.active,
.registration-form .dropdown-item:active {
  color: var(--grey800);
}

.partner-registration {
  background: var(--blue800) url("../images/partners-registration-bg.jpg") no-repeat center;
  background-size: cover;
}

.partner-form-container {
  padding: 40px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.partner-form-container .btn-light {
  border: 0 !important;
  background: none !important;
  border: none !important;
  padding-left: 0;
}

.partner-form-container .btn-light:hover,
.partner-form-container .btn-light:active,
.partner-form-container .btn-light:focus {
  border: 0 !important;
  background: none !important;
  border: none !important;
}

.partner-form-container .btn-light:not(:disabled):not(.disabled).active,
.partner-form-container .btn-light:not(:disabled):not(.disabled):active,
.partner-form-container .show>.btn-light.dropdown-toggle {
  border: 0 !important;
  background: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.partner-form-container .input-field .input-control {
  padding-right: 15px;
}

.partner-form-container .form-group.filled label {
  top: -20px;
  transition: all ease 0.3s;
  font-size: 12px;
  color: var(--blue500);
  z-index: 3;
}

.partner-form-container .filter-option-inner-inner {
  font-weight: bold;
  color: var(--grey800);
}

.partner-form-container .bs-placeholder .filter-option-inner-inner {
  color: var(--grey400);
  font-weight: normal;
  font-size: 0;
}

.partner-form-container .bootstrap-select {
  z-index: 5;
}

.bootstrap-select .dropdown-menu.inner {
  display: block;
}

.alert {
  border: none;
  border-radius: 8px;
  padding: 20px;
  position: relative;
}

.alert.alert-info {
  background: var(--blue600);
  color: var(--white);
}

.alert.alert-info a {
  color: var(--white);
  text-decoration: underline;
}

.alert.has-icon {
  padding-left: 70px;
}

.notification {
  position: relative;
}

.notification .close {
  font-size: 18px;
  color: #fff;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  display: block;
  width: 36px;
  height: 36px;
  background: url("../images/close-icon.svg") no-repeat center;
  background-size: 40% auto;
}

.notification .close:hover,
.notification .close:active,
.notification .close:focus {
  outline: none;
  box-shadow: none;
  opacity: 1 !important;
}

.notification .messages-container .messages {
  font-size: 14px;
  padding: 15px 65px 15px 65px;
}

.notification .messages-container .messages.error {
  background: rgba(239, 83, 80, 0.8) url("../images/warning-icon.svg") no-repeat 15px 15px;
  background-size: auto 30px;
  color: #fff;
}

.notification .messages-container .messages.success {
  background: rgba(17, 211, 141, 0.8) url("../images/success.png") no-repeat 15px 15px;
  background-size: auto 34px;
  color: #fff;
}

.notification .messages-container .messages h2 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 900;
}

/* CONTACTS PAGE */
.top-side.support-contact .navbar {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9eff5;
}

.top-side.support-contact .navbar-items {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
}


.section-header.support-contact {
  margin-bottom: 0;
}

.section-header.support-contact .section-header__title {
  /* 48 - 24 */
  font-size: clamp(1.5rem, 0.203rem + 3.609vw, 3rem);
  font-weight: 400;
  font-family: "Roboto normal", sans-serif;
  line-height: 1.1;
  color: #0f172b;
  text-transform: capitalize;

  margin-bottom: 8px;
}

.section-header.support-contact .section-header__description {
  /* 48 - 24 */
  font-size: clamp(0.8125rem, 0.6504rem + 0.4511vw, 1rem);
  color: #45556c;

  margin-bottom: 0;
}

.article.support-contact .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article.support-contact .article-top {
  padding-top: 2.5rem;
  border-bottom: 1px solid #e9eff5;
}

.article.support-contact .article-bottom {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.article.support-contact .article-top .link {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: end;

  /* 32-16 */
  font-size: clamp(1rem, 0.1353rem + 2.406vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
  color: #0f172b;
  text-transform: capitalize;
  text-decoration: none;
}

.article.support-contact .article-bottom .item .link svg,
.article.support-contact .article-top .link svg {
  width: 1em;
  height: 1em;
}

.article.support-contact .link-items {
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
}

.article.support-contact .link-items .title {
  font-size: 14px;
  line-height: 1.5;
  color: #45556c;
  text-transform: capitalize;

  margin-bottom: 4px;
}

.article.support-contact .link-items .link {
  font-size: 14px;
  color: #1c538a;
  text-decoration: underline;
  text-transform: capitalize;
}

.article.support-contact .link-items .link:hover {
  color: var(--blue500);
}

.article.support-contact .link-items .link:visited {
  color: var(--blue900);
}

.article.support-contact .link-items .link .title {
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  text-transform: inherit;
}

.article.support-contact .article-bottom .list {
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
}

.article.support-contact .article-bottom .list .item {
  flex: 1;
}

.article.support-contact .article-bottom .text {
  font-size: 14px;
  line-height: 1.5;
  color: #62748e;

  margin-bottom: 8px;
}

.article.support-contact .article-bottom .list .item .link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;

  /* 20-13 */
  font-size: clamp(0.8125rem, 0.4342rem + 1.0526vw, 1.25rem);
  font-weight: 400;
  color: #0f172b;
  text-transform: capitalize;
  text-decoration: none;

  /* 24 -16 */
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: clamp(1rem, 0.5677rem + 1.203vw, 1.5rem);
  background-color: transparent;

  transition-duration: 250ms;
  transition-property: background-color;
  transition-timing-function: ease-in-out;
}

.article.support-contact .article-bottom .list .item .link:hover {
  background-color: #e2e8f0;
}

/* breakpoints */
@media screen and (min-width: 1920px) {
  /* .img-container.copy-trading .phone-frame {
    width: 444px;
    height: 692px;
  }

  .img-container.copy-trading .phone-frame .inner {
    top: 27px;
    width: 100%;
  }



  .img-container.copy-trading .phone-frame .inner video {
    width: 410px;
    border-top-right-radius: 35px;
    border-top-left-radius: 35px;
  }

  .hero.copy-trading {
    padding-bottom: 200px;
  }

  .section-header.hero-copy+.inner.icons>.trade {
    display: block;
  } */

  .section-header.hero-copy .section-header__title>span svg {
    width: 103px;
    height: 46px;
  }

  .section-header.hero-copy .section-header__title {
    font-size: 70px;
  }

  .hero.copy-trading {
    padding-bottom: 200px;
  }

  .section-header.hero-copy+.inner.icons>.trade {
    display: block;
  }

  .img-container.copy.page .video-container .video {
    margin-left: calc(100% / 4.5);
  }
}

@media screen and (min-width: 1441px) {
  .hero.main {
    background: url("../../../custom/adrofx_theme/img/main-page/hero-lg.png") var(--grey100);
    background-repeat: no-repeat;
    background-position: left 70% top -50px;
    background-size: 1000px;

    padding-top: 70px;
    padding-bottom: 20px;
  }

  .section-header.hero {
    margin-top: 7%;
    margin-bottom: 150px;
  }

  /* .img-container.copy .phone-frame .inner {
    top: 30px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 89.9%;
  } */

  .section-header.hero-copy .section-header__title {
    font-size: 60px;
  }

  .section-header.hero-copy .section-header__title>span svg {
    width: 95px;
    height: 40px;
  }
}

@media screen and (max-width: 1198px) {
  .section-header .section-header__title {
    font-size: 35px;
  }

  .hero.main {
    background: url("../../../custom/adrofx_theme/img/main-page/hero-lg.png") var(--grey100);
    background-repeat: no-repeat;
    background-position: right 20px top 60px;
    background-size: 60% auto;

    padding-top: 70px;
    padding-bottom: 20px;
  }

  .list.market-cards>.list__item .title {
    font-size: 24px;
  }

  .section-header.market {
    margin-bottom: 40px;
  }

  .section-header.market .section-header__title {
    font-size: 30px;
  }

  .section-header.market .section-header__text {
    font-size: 14px;
  }

  .section-header.market .section-header__title,
  .section-header.market .section-header__text {
    line-height: normal;
  }

  .list.market-benefits .list__item {
    padding: 15px 20px;
  }

  .list.market-cards .list__item>.list.features .list__item,
  .list.market-cards>.list__item .text {
    font-size: 13px;
  }

  .list.market-cards>.list__item {
    padding: 20px;
  }

  .list.market-cards>.list__item .title {
    font-size: 20px;
  }

  .list.market-cards .icon-market,
  .list.market-cards>.list__item .text,
  .list.market-cards .list__item>.list.features {
    margin-bottom: 35px;
  }

  .list.market-cards>.list__item {
    flex-basis: calc(100% / 2 - 10px);
  }

  .list.market-cards>.list__item:nth-child(-n + 2) {
    margin-bottom: 20px;
  }

  .global-advantages .list-features.advantages .list-features__item {
    flex-basis: calc(100% / 2 - 10px);
  }

  .global-advantages .list-features.advantages .list-features__item:nth-child(-n + 2) {
    margin-bottom: 20px;
  }

  .list-features.advantages .list-features__body {
    padding: 30px;
  }

  .global-advantages .section-title {
    font-size: 30px;
    line-height: normal;
  }

  .list-features.advantages .list-features__title {
    font-size: 20px;
  }

  .list-features.advantages .list-features__header .award,
  .list-features.advantages .list-features__header .planet,
  .list-features.advantages .list-features__header .regulated,
  .list-features.advantages .list-features__header .secured {
    left: 0;
  }

  .list-features.advantages .list-features__header .benefits {
    display: none;
  }

  .img-container.copy .trader {
    left: 50%;
  }

  .img-container.copy .animation {
    left: 20%;
  }

  .img-container.copy.page .trader {
    left: unset;
    right: -5%;
  }

  .section-header.hero-copy+.inner.icons .icon-tesla {
    top: 10%;
  }

  .header.main .list {
    display: none;
  }

  .header.main .nav {
    justify-content: space-between;
  }

  .header.main .nav .logo {
    display: flex;
    flex: 1 0 145px;
  }

  .header.main .nav .inner {
    flex: 0 0 auto;
  }

  .section-header.banner-cta .section-header__title {
    font-size: 80px;
  }

  .logo-container {
    top: 80px;
    left: 80px;
  }

  .banner-club .inner {
    padding: 80px;
  }

  .country-card .section-header.card {
    margin-left: 0;
  }

  .list.tags,
  .country-card .video-container .icon {
    display: none;
  }

  .country-card {
    position: sticky;
    top: 200px;
    height: auto;
  }

  .section-header.platforms .section-header__title {
    font-size: 45px;
  }

  .list-features.step .list-features__item {
    flex-basis: calc(100% / 2 - 5px);
    padding: 20px;
  }

  .list-features.step .list-features__item:nth-child(-n + 2) {
    margin-bottom: 10px;
  }

  .list-features.step .list-features__title {
    font-size: 22px;
  }

  .list-features.step .list-features__text,
  .list-features.step .list-features__title {
    line-height: normal;
  }

  .list-features.step .list-features__text {
    font-size: 14px;
  }

  .hero.main .form-quick .inner label {
    flex: 1 1 230px;
  }

  .section-header.hero-copy .section-header__title {
    font-size: 3.5vw;
    line-height: 1.2;
  }

  .inner.award-icon .img-container+.title {
    font-size: 24px;
  }

  .list-features.horizontal-scroll .list-features__title {
    font-size: 20px;
  }

  .list.header .list__item .inner .title {
    font-size: 24px;
  }

  .list.header .list__item .img-container {
    padding: 30px;
  }

  .list.header .list__item .img-container video {
    width: 70%;
    height: auto;
  }

  .list-features.trading-tools .list-features__header {
    height: 200px;
  }

  .list-features.trading-tools .list-features__item .list-features__title {
    font-size: 20px;
  }

  .list-features.trading-tools .list-features__item {
    border-radius: 37px;
  }

  .list-features.trading-tools {
    justify-content: flex-start;
  }

  .list-features.trading-tools .list-features__item {
    flex-basis: calc(100% / 2 - 10px);
  }

  .list-features.trading-tools .list-features__item:first-child {
    margin-bottom: 10px;
    margin-right: 10px;
  }

  .list-features.trading-tools .list-features__header {
    height: auto;
  }

  .slide-track.end {
    transform: translateX(-110%);
  }
}

@media screen and (max-width: 991.98px) {
  .section-header .section-header__title {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .section-header.hero {
    margin-top: 0;
  }

  .section-header.hero .section-header__title {
    font-size: 50px;
  }

  .section-header.hero .section-header__text,
  .section-header.hero .section-header__title {
    margin-bottom: 18px;
  }

  .section-header.hero .section-header__text {
    font-size: 20px;
    line-height: normal;
    max-width: 300px;
  }

  .section-header.hero .section-header__title .icon {
    flex: 0 0 50px;
    height: 50px;
    width: 50px;
  }

  .section-header.hero .section-header__title .icon::after {
    width: 100%;
    height: 100%;
  }

  .hero.main {
    background: url("../../../custom/adrofx_theme/img/main-page/hero-lg.png") var(--grey100);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 55% auto;
    padding-top: 70px;
    padding-bottom: 20px;
  }

  .section-header.award .section-header__title {
    font-size: 30px;
  }

  .section-header.award .section-header__text {
    font-size: 14px;
  }

  .splide__list.awards .splide__slide>.title {
    font-size: 18px;
  }

  .splide__list.awards .splide__slide>.text {
    font-size: 16px;
  }

  .section-header.award .section-header__text,
  .splide__list.awards .splide__slide>.text,
  .splide__list.awards .splide__slide>.title {
    line-height: normal;
  }

  /* Old============================= */
  .img-container.copy .icon-users,
  .img-container.copy .animation,
  .img-container.copy .trader {
    display: none;
  }

  .img-container.copy {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .section-header.copy .section-header__title {
    font-size: 30px;
    line-height: normal;
  }

  .img-container.copy .phone-frame {
    width: 67%;
  }

  .img-container.copy .icon-users {
    position: static;
  }

  .img-container.copy>.video-container>.video {
    width: 44.803vw;
    height: 69.828vw;
  }

  .hero.copy-trading .container {
    max-width: 100%;
  }

  .img-container.copy.page {
    height: 62.708vw;
    padding: 0;
  }

  .img-container.copy.page .video-container .video {
    width: 44.803vw;
    height: 69.828vw;
    padding: 1.042vw;
  }

  /* Old============================= */

  .section-header.banner-cta .section-header__title {
    font-size: 70px;
  }

  .logo-container {
    position: static;
    width: 100%;
    height: 119px;

    margin-bottom: 30px;
  }

  .logo-container>.icon-logo {
    animation: rotate-forward 3s var(--ease-out-slow) 0s infinite;
  }

  .banner-club .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 50px;
  }

  .banner-club .inner::before {
    right: -50px;
    bottom: -50px;

    width: 100px;
  }

  .country .icon-planet {
    margin-bottom: 30px;
  }

  .section-header.supporting-country .section-header__title {
    font-size: 30px;
  }

  .country-card .section-header.card .section-header__title {
    font-size: 20px;
  }

  .country-card .section-header.card .section-header__title,
  .country-card .section-header.card .section-header__text {
    line-height: normal;
  }

  .country-card .section-header.card .section-header__text {
    font-size: 14px;
    max-width: 100%;
  }

  .country-card .video-container {
    flex: 1;
    height: auto;
  }

  .country-card .video-container .btn-outline {
    bottom: 10px;
    right: 10px;

    font-size: 14px;
    padding: 8px 20px;
  }

  .section-header.platforms .section-header__title,
  .section-header.platforms .section-header__text {
    line-height: normal;
  }

  .section-header.platforms .section-header__title {
    font-size: 35px;
  }

  .section-header.platforms .section-header__text {
    font-size: 14px;
  }

  .section-header.form .section-header__title {
    font-size: 24px;
    margin-bottom: 0;
  }

  .hero.main .form-quick .inner>label {
    flex: 1 1 150px;
  }

  .form-quick .inner label input {
    padding: 15px 20px;
  }

  .form-quick .buttons-container.form .btn-outline.green {
    padding: 15px 20px;
  }

  .img-container.about>.phone-left {
    display: none;
  }

  .img-container.about>.phone-right {
    position: static;
    top: unset;
    right: unset;
  }

  .list.nav-menu {
    display: none;
  }

  .section-header.hero-copy .section-header__text+.btn-outline.green {
    font-size: 16px;
    padding: 15px 30px;
  }

  .section-header.hero-copy .badge {
    margin-bottom: 30px;
  }

  .section-header.hero-copy .section-header__title {
    font-size: clamp(1.5rem, 0.1211rem + 3.8369vi, 2.5rem);
  }

  .section-header.hero-copy+.inner.icons {
    flex: 0.8;
  }

  .section-header.hero-copy+.inner.icons>.img-container.copy.page {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .section-header.hero-copy+.inner.icons>.icon {
    width: auto;
    height: 17%;
  }

  .img-container.copy.page .phone-frame {
    margin-left: 0;
  }

  .section-header.hero-copy+.inner.icons>.icon-amazon {
    bottom: 0;
    height: 13%;
  }

  .inner.award-icon .img-container+.title {
    font-size: 20px;
  }

  .copy-trading.awards .bottom::before {
    width: 90.817vw;
    height: 100%;
  }

  .list.header .list__item .img-container video {
    width: 100%;
    border-radius: 20px;
  }

  .list.header .list__item::before {
    top: 20px;
    left: 20px;

    width: 60px;
    height: 60px;

    font-size: 20px;
  }

  .list.tab {
    width: 90%;
  }

  .list.operation-systems .list__item img,
  .list.operation-systems .list__item svg {
    display: none;
  }

  .list.operation-systems .list__item {
    padding: 10px 5px;
  }

  .slide-track .slide .label {
    display: none;
  }

  .slide-track .slide .btn-blue {
    padding: 10px 30px;
  }

  .slide-track .slide img {
    height: 340px;
  }

  .footer .footer-top {
    display: grid;
    grid-template-areas: "footer-menu footer-logo" "footer-menu footer-contacts";
    grid-column-gap: 30px;
    border-bottom: 1px solid var(--grey800);
  }

  .footer .footer-top .footer-menu {
    grid-area: footer-menu;
  }

  .footer .footer-top .footer-contacts {
    padding-right: 0px;
  }

  .navbar-brand.logo {
    width: 90px;
  }

  .list-features.horizontal-scroll {
    margin-left: 0;
  }
}

@media screen and (max-width: 767.98px) {
  .section-header .section-header__title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero.main {
    background: url(""), var(--grey100);

    padding-top: 70px;
    padding-bottom: 20px;
  }

  .section-header.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .section-header.hero .section-header__title {
    max-width: 420px;
    margin: 0 auto;
  }

  .section-header.hero .section-header__text {
    max-width: 410px;
    margin-top: 18px;
  }

  .hero-devices {
    margin-bottom: 30px;
  }

  .section-header.award {
    display: block;
  }

  .section-header.award .section-header__title {
    margin-bottom: 18px;
  }

  .section-header.market {
    display: block;
  }

  .section-header.market .section-header__title {
    margin-bottom: 18px;
  }

  .list.market-benefits {
    flex-wrap: wrap;
  }

  .list.market-benefits .list__item {
    display: inline-block;
  }

  .list.market-benefits .list__item:not(:last-child) {
    margin-bottom: 10px;
  }

  .img-container.copy .phone-frame .inner .video-container,
  .img-container.copy .phone-frame img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .img-container.copy .phone-frame .inner .video {
    border-top-right-radius: 35px;
    border-top-left-radius: 35px;
  }

  .img-container.copy .phone-frame .inner {
    top: 14px;
    width: 90%;
    left: 50%;
  }

  .img-container.copy .phone-frame {
    width: 100%;
  }

  .section-header.platforms {
    margin-bottom: 30px;
  }

  .section-header.platforms .section-header__title {
    font-size: 35px;
    line-height: normal;
    margin-bottom: 18px;
  }

  .platforms .align-items-center {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .img-container.about>.phone-left {
    display: block;
  }

  .img-container.about>.phone-right {
    position: absolute;
    top: 0;
    right: 0;
  }

  .section-header.about {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .hero.copy-trading .inner {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .hero.copy-trading {
    padding-top: 60px;
  }

  .section-header.hero-copy,
  .section-header.hero-copy+.img-container.copy-trading {
    width: 100%;
  }

  .section-header.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 0;
  }

  .section-header.hero-copy {
    margin-bottom: 30px;
  }

  .section-header.hero-copy+.inner.icons {
    flex: 1;
    width: 100%;
  }

  .section-header.hero-copy+.inner.icons .icon-google {
    left: unset;
    right: 7%;
  }

  /* .img-container.copy.page .phone-frame .inner {
    left: 50.5%;
    top: 1.514vw;
  }

  .img-container.copy.page .phone-frame {
    width: 60%;
  }

  .img-container.copy.page .phone-frame .inner .video {
    border-top-left-radius: 3.027vw;
    border-top-right-radius: 3.027vw;
  }
 */
  .img-container.copy.page {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .img-container.copy.page .trader {
    display: block;
    left: 50%;
  }

  .img-container.copy.page .video-container .video {
    padding-left: 10%;
  }

  .section-header.hero-copy+.inner.icons>.img-container.copy.page {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .img-container.copy.page .trader {
    display: block;
    left: 40%;
  }

  .inner.award-icon .img-container {
    flex: 0 0 93px;
  }

  .section-header.copy.award .section-header__title span,
  .inner.award-icon .img-container+.title span {
    display: block;
  }

  .list.header .list__item {
    gap: 30px;
  }

  .section-header.start-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .list.header .list__item .inner .title {
    font-size: 20px;
  }

  .list.header .list__item .inner .text {
    font-size: 14px;
  }

  .section-header.start-step .section-header__title {
    margin-right: 0;
    margin-bottom: 15px;
    flex: unset;
  }

  .list.header .list__item .inner {
    margin-left: 0;

    padding-left: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .list.header .list__item::before {
    top: 30px;
    left: 30px;

    width: 34px;
    height: 34px;

    font-size: 14px;
  }

  .section-header.trading-tools {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header.trading-tools .section-header__title {
    margin-bottom: 15px;
  }

  .list-features.trading-tools .list-features__item .list-features__title {
    font-size: 24px;
  }

  .list-features.trading-tools .list-features__item {
    flex-basis: 100%;
  }

  .list-features.trading-tools .list-features__item:first-child {
    margin-right: 0;
  }

  .list-features.trading-tools .list-features__item {
    margin-bottom: 10px;
  }

  .list.operation-systems .list__item img,
  .list.operation-systems .list__item svg {
    display: block;
  }

  .slide-track .slide img {
    height: auto;
  }

  .section-header.form .section-header__title {
    font-size: 18px;
    margin-bottom: 18px;
    margin-right: 0;
  }

  .section-header.form .section-header__text {
    font-size: 16px;
  }

  .list-features.horizontal-scroll .list-features__item {
    flex-basis: 450px;
    height: auto;
  }
}

@media screen and (max-width: 575.98px) {
  body {
    font-size: 13px;
    line-height: normal;
  }

  .section-padding {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header .section-header__title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .section-header .section-header__text {
    font-size: 13px;
    line-height: normal;
  }

  .hero.main {
    padding-top: 10px;
    padding-bottom: 50px;
  }

  .section-header.hero .buttons-container .btn-outline.blue {
    padding: 10px 44px;
    font-size: 14px;
  }

  .section-header.hero .section-header__title {
    font-size: clamp(2.25rem, 1.4657rem + 3.9216vi, 2.875rem);
    line-height: normal;
  }

  .section-header.hero .section-header__title .icon::after,
  .section-header.hero .section-header__title .icon::before {
    width: 30px;
    height: 30px;
  }

  .section-header.hero .section-header__text {
    font-size: 17px;
    line-height: normal;
  }

  .section-header.hero .buttons-container .btn-blue {
    width: 52px;
    height: 52px;
  }

  .section-header.hero .buttons-container .btn-blue svg {
    width: 9px;
    height: 9px;
  }

  .section-header.hero .section-header__title {
    max-width: 260px;
    margin: 0 auto;
  }

  .hero.main .inner.margin-inline {
    margin-left: 8px;
    margin-right: 8px;
  }

  .hero.main .inner {
    padding: 30px;
  }

  .awards {
    padding-top: 50px;
  }

  .section-header.award .section-header__title {
    font-size: 24px;
  }

  .section-header.platforms .section-header__text,
  .section-header.award .section-header__text {
    font-size: 13px;
    line-height: normal;
  }

  .list.market-benefits {
    flex-direction: column;
    align-items: flex-start;
  }

  .list.market-cards>.list__item {
    flex-basis: 100%;
    margin-bottom: 10px;
  }

  .section-header.market .section-header__title,
  .list.market-cards>.list__item:nth-child(n + 1),
  .list.market-benefits>.list__item:nth-child(n + 1) {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .section-header.market .section-header__title {
    font-size: 24px;
    line-height: normal;
  }

  .list.market-benefits .list__item,
  .section-header.market .section-header__text {
    font-size: 13px;
    line-height: normal;
  }

  .list.market-cards .list__item>.list.features+.btn-base {
    font-size: 13px;
  }

  .global-advantages .section-title {
    font-size: 24px;
  }

  .global-advantages .list-features.advantages .list-features__item {
    flex-basis: 100%;
    border-radius: 15px;
  }

  .global-advantages .list-features.advantages .list-features__body {
    padding: 25px;
  }

  .list-features.advantages .list-features__title {
    font-size: 18px;
  }

  .list-features.advantages .list-features__text,
  .list-features.advantages .list-features__title {
    line-height: normal;
  }

  .list-features.advantages .list-features__text {
    font-size: 13px;
  }

  .global-advantages .list-features.advantages .list-features__item:nth-child(-n + 1) {
    margin-right: 0;
  }

  .global-advantages .list-features.advantages .list-features__item:not(:last-child) {
    margin-bottom: 10px;
  }

  /* old============================ */
  .hero.copy-trading {
    padding-top: 50px;
  }

  .section-header.hero-copy {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .section-header.hero-copy .section-header__title {
    font-size: 30px;
    line-height: 40px;
  }

  .section-header.hero-copy .section-header__title>span svg {
    width: 48px;
    height: 28px;
  }

  .section-header.hero-copy+.img-container.copy.page {
    flex-basis: 100%;
    border-radius: 24px;
  }

  .section-header.hero-copy+.img-container.copy.page {
    padding-top: 50px;
  }

  .section-header.hero-copy+.inner.icons .icon-tesla,
  .img-container.copy.page .video-container .video {
    display: none;
  }

  .img-container.copy.page {
    align-items: center;
    justify-content: flex-end;
  }

  .img-container.copy.page .trader {
    position: relative;

    display: block;
    max-width: 100%;
    height: auto;

    top: unset;
    left: unset;
    right: unset;
  }

  .img-container.copy.page {
    border-radius: 28px;
    width: auto;
    height: 315px;
  }

  .section-header.hero-copy+.inner.icons .icon-google {
    top: 30px;
  }

  .section-header.hero-copy+.inner.icons .icon-nasdaq {
    bottom: 30px;
    right: 10px;
  }

  .section-header.hero-copy+.inner.icons .icon-amazon {
    bottom: -50px;
    height: 10%;
  }

  .list.header .list__item .img-container video {
    display: none;
  }

  /* old============================ */

  .section-header.copy {
    margin-bottom: 40px;
  }

  .section-header.copy .section-header__title {
    font-size: 24px;
  }

  .section-header.copy .section-header__text+.btn-outline.blue,
  .section-header.copy .section-header__text {
    font-size: 13px;
  }

  .section-header.copy .section-header__title,
  .section-header.copy .section-header__text {
    margin-bottom: 18px;
    line-height: normal;
  }

  .section-header.copy .section-header__text+.btn-outline.blue {
    padding: 10px 40px;
  }

  .img-container.copy .animation {
    margin-bottom: 30px;
  }

  /* new============================ */
  .img-container.copy .video-container .video {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    aspect-ratio: 9/16;
  }

  /* new============================ */

  .header.main {
    padding: 10px 0;
  }

  .header.main .nav>.logo {
    flex: 1;
  }

  .header.main .nav>.logo>img {
    width: 90px;
    height: auto;
  }

  .header.main .nav .buttons-container {
    margin-right: 0;
  }

  .header.main .nav .buttons-container .btn-outline.blue {
    display: none;
  }

  .header.main .nav .buttons-container .btn-outline.green {
    font-size: 13px;
    padding: 10px 30px;
  }

  .section-header.banner-cta .section-header__title {
    font-size: clamp(2.5rem, 0.1471rem + 11.7647vi, 4.375rem);
  }

  .section-header.banner-cta .section-header__title,
  .section-header.banner-cta .section-header__text {
    line-height: normal;
  }

  .section-header.banner-cta .section-header__text {
    font-size: 13px;
  }

  .logo-container {
    height: 81px;
    background: linear-gradient(168deg,
        #1e88e5 5.59%,
        rgba(255, 255, 255, 0) 114.79%);
  }

  .logo-container>.icon-logo {
    width: 69px;
    height: 69px;

    animation: rotate-forward-small 3s var(--ease-out-slow) 0s infinite;
  }

  .banner-club .inner {
    overflow: hidden;
    padding: 20px;
    border-radius: 30px;
  }

  .section-header.banner-cta .btn-outline {
    padding: 13px 30px;
    font-size: 13px;
  }

  .section-header.supporting-country .section-header__title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .section-header.supporting-country .section-header__title,
  .section-header.supporting-country .section-header__text {
    line-height: normal;
  }

  .country-card .section-header.card .section-header__text,
  .section-header.supporting-country .section-header__text {
    font-size: 13px;
  }

  .country-card .section-header.card {
    margin-left: 0;
  }

  .country-card {
    flex-direction: column;
    padding: 20px;
  }

  .country-card .section-header.card {
    flex: 1;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .country-card .section-header.card .section-header__title {
    font-size: 18px;
    margin-bottom: 9px;
  }

  .country-card {
    position: sticky;
    top: 300px;
    height: auto;
  }

  .list-features.step .list-features__item {
    flex-basis: 100%;
    padding: 25px;
    border-radius: 15px;
  }

  .list-features.step .list-features__item:nth-child(n + 1) {
    margin-bottom: 10px;
  }

  .list-features.step .list-features__title {
    font-size: 18px;
    margin-bottom: 9px;
  }

  .list-features.step .list-features__title,
  .list-features.step .list-features__text {
    line-height: normal;
  }

  .list-features.step .list-features__text {
    font-size: 13px;
  }

  .list-features.step {
    margin-bottom: 40px;
  }

  .section-header.start .section-header__title {
    font-size: 24px;
    margin-bottom: 18px;
    line-height: normal;
  }

  .section-header.start .section-header__text {
    font-size: 13px;
    line-height: normal;
  }

  .list-features.step+.buttons-container .btn-base {
    padding: 12px 20px;
    font-size: 13px;
  }

  .section-header.form {
    display: block;
  }

  .section-header.form {
    text-align: center;
  }

  .section-header.form .section-header__title,
  .section-header.form .section-header__text {
    line-height: normal;
  }

  .section-header.form .section-header__text {
    font-size: 13px;
    max-width: 100%;
  }

  .hero.main .form-quick .checkbox {
    margin-bottom: 10px;
  }

  .hero.main .form-quick .inner {
    flex-direction: column;
    flex-basis: 100%;
    align-items: unset;
    justify-content: unset;
  }

  .hero.main .form-quick .inner>label {
    flex-basis: 100%;
  }

  .section-title.form {
    margin-bottom: 15px;
  }

  .hero.main .form-quick .inner {
    padding: 0;
  }

  .form-quick .buttons-container.form {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
  }

  .form-quick .buttons-container.form .checkbox .link {
    font-size: 10px;
    line-height: 10px;
    text-align: left;
  }

  .form-quick .buttons-container.form .checkbox {
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-inline: auto;
  }

  .section-header.form {
    display: block;
  }

  .section-header.form {
    text-align: center;
  }

  .section-header.form .section-header__title,
  .section-header.form .section-header__text {
    line-height: normal;
  }

  .section-header.form .section-header__title {
    font-size: 18px;
    margin-bottom: 18px;
    margin-right: 0;
  }

  .section-header.form .section-header__text {
    font-size: 13px;
    max-width: 100%;
  }

  .form-quick .inner>label input,
  .hero.main .form-quick .buttons-container.form .btn-outline.green {
    padding: 10px 20px;
  }

  .section-header.form {
    display: block;
  }

  .section-header.form {
    text-align: center;
  }

  .section-header.form .section-header__title {
    font-size: 18px;
    margin-bottom: 18px;
    margin-right: 0;
  }

  .section-header.form .section-header__title,
  .section-header.form .section-header__text {
    line-height: normal;
  }

  .section-header.form .section-header__text {
    font-size: 13px;
    max-width: 100%;
  }

  .form-quick>label input,
  .hero.main .form-quick .btn-outline.green {
    padding: 10px 20px;
  }

  .img-container.about>.phone-right,
  .img-container.about>.phone-left {
    width: 50%;
    height: auto;
  }

  .section-header.about .buttons-container {
    flex-wrap: wrap;
  }

  .section-header.about {
    margin-top: 50px;
  }

  .header.copy-trade {
    padding: 15px 0;
  }

  .navigation.copy-trade>.logo {
    width: 100px;
    height: 50px;
  }

  .list.nav-menu+.btn-outline {
    padding: 8px 24px;
  }

  .hero.copy-trading {
    padding-top: 50px;
  }

  .section-header.hero-copy {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .section-header.hero-copy .section-header__title {
    font-size: 32px;
    line-height: 1.3;
  }

  .section-header.hero-copy .section-header__title>span svg {
    width: 48px;
    height: 28px;
  }

  .section-header.hero-copy+.img-container.copy.page {
    flex-basis: 100%;
    border-radius: 24px;
  }

  .section-header.hero-copy+.img-container.copy.page {
    padding-top: 50px;
  }

  .img-container.copy.page .phone-frame,
  .img-container.copy-trading .phone-frame .inner,
  .section-header.hero-copy+.inner.icons .icon-tesla,
  .img-container.copy-trading .phone-frame .inner video {
    display: none;
  }

  .section-header.hero-copy+.inner.icons>.img-container.copy.page {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .img-container.copy.page .trader {
    position: static;
    top: unset;
    left: unset;
    right: unset;
  }

  .img-container.copy.page {
    border-radius: 28px;
  }

  .section-header.hero-copy+.inner.icons .icon-google {
    top: 30px;
  }

  .section-header.hero-copy+.inner.icons .icon-nasdaq {
    bottom: 30px;
    right: 10px;
  }

  .section-header.hero-copy+.inner.icons .icon-amazon {
    bottom: -50px;
    height: 10%;
  }

  .list.header .list__item .img-container video {
    display: none;
  }

  .section-header.copy.award .section-header__title {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .copy-trading.awards .bottom::before {
    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    transform: translate(-50%, -50%) rotate(45deg);
  }

  .splide__list.awards .splide__slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    flex-basis: 280px;
    min-height: 200px;

    padding: 50px 20px 20px 20px;
  }

  .splide__list.awards.copy-trading .splide__slide>.title {
    margin-bottom: 15px;
  }

  .top-choose {
    margin: 0;
    border-radius: 0;
  }

  .section-header.top-choose {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 0;
  }

  .top-choose,
  .sticky-container {
    margin: 0;
    border-radius: 0;
  }

  .list-features.horizontal-scroll {
    margin-top: 50px;
  }

  .list-features.horizontal-scroll .list-features__item {
    flex-basis: 280px;
    height: auto;
  }

  .list-features.horizontal-scroll .list-features__header {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 1 1 100px;
    height: 170px;
  }

  .list-features.horizontal-scroll .list-features__item .icon-hover {
    display: none;
  }

  .list-features.horizontal-scroll .list-features__item:hover .icon-hover {
    transform: unset;
  }

  .list-features.horizontal-scroll .list-features__title {
    font-size: 18px;
  }

  .section-header.top-choose .section-header__text+.btn-outline.blue {
    padding: 12px 20px;
  }

  .list.header .list__item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .list.header .list__item .inner,
  .list.header .list__item .img-container {
    width: 100%;
  }

  .list.header .list__item .inner {
    padding: 0;
  }

  .start-step.margin-inline {
    margin: 0;
  }

  .start-step .top {
    border-radius: 0;
  }

  .list.header .list__item,
  .list.header .list__item .img-container {
    border-radius: 20px;
  }

  .list.header .list__item {
    gap: 20px;
    padding: 60px 10px 10px 10px;
  }

  .list.header .list__item::before {
    top: 10px;
    left: 10px;
  }

  .list.header .list__item .inner {
    max-width: 220px;
  }

  .list.header .list__item .inner .title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .list.header .list__item .inner .text {
    font-size: 13px;
  }

  .list.header .list__item .inner .text+.btn-outline {
    font-size: 13px;
    padding: 10px 30px;
  }

  .start-step .bottom {
    border-radius: 0;
  }

  .start-step .top {
    padding-top: 0px;
  }

  .list.header .list__item .img-container>img {
    display: block;
  }

  .section-header.trading-tools .section-header__title {
    flex-basis: 100%;
    margin-right: 0;
  }

  .trading-tools .inner {
    padding: 7px;
    border-radius: 23px;
  }

  .trading-tools {
    padding-top: 0;
  }

  .list-features.trading-tools .list-features__item {
    border-radius: 18px;
  }

  .list-features.trading-tools .list-features__header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 170px;
    height: 170px;
    padding: 10px;
  }

  .list-features.trading-tools .list-features__header img {
    display: block;
    object-fit: contain;
    max-width: 100%;
    height: 100%;
    object-position: center;
  }

  .list-features.trading-tools .list-features__body {
    padding: 20px;
  }

  .list-features.trading-tools .list-features__item .list-features__title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .list-features.trading-tools .list-features__item .list-features__text+.btn-outline {
    padding: 8px 24px;
  }

  .list-features.trading-tools .list-features__item.icon::before {
    width: 25px;
    height: 25px;

    background-size: 13px 13px;
  }

  .list.tab {
    width: 100%;
    align-items: stretch;
    justify-content: center;
  }

  .list.tab .list__item button {
    padding: 10px 0;
  }

  .list.tab .list__item button>img {
    width: 100px;
    height: auto;
  }

  .list.tab .list__item .btn-base.left>img {
    width: 50px;
  }

  .img-container.platforms {
    padding: 20px;
  }

  .slide-track .slide .btn-blue {
    font-size: 10px;
    padding: 8px 26px;
  }

  .list.operation-systems .list__item {
    font-size: 8px;
    line-height: normal;
  }

  .footer .footer-top {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--grey800);
  }

  .footer .footer-top .footer-menu {
    width: 100%;
    padding-right: 0;
    grid-area: footer-menu;
  }

  .footer .footer-top .footer-menu .menu {
    grid-gap: 30px;
  }

  .footer .footer-top .footer-contacts {
    width: 100%;
    padding-right: 0px;
    text-align: center;
    justify-content: center;
    border-top: 1px solid var(--grey800);
    margin-top: 30px;
    padding-top: 30px;
  }

  .footer .footer-top .footer-contacts ul li a {
    font-size: 16px;
  }

  .footer .footer-top .footer-logo {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .footer .footer-top .footer-logo img {
    height: 50px;
    width: auto;
  }

  .registration-form h5 {
    font-size: 16px;
  }

  .registration-form .input-field {
    position: relative;
    margin-bottom: 30px;
    z-index: 20;
  }

  .registration-form .input-field .input-control,
  .registration-form .input-field .empty {
    padding-right: 50px;
  }

  .registration-form .input-field .form-help-text {
    z-index: 10;
    text-shadow: 0 0 10px var(--white);
    justify-content: flex-end;
    position: relative;
    margin-bottom: 0;
    margin-top: 5px;
    height: auto;
    right: 0;
  }

  .registration-form .input-phone .form-help-text {
    top: 30px;
    right: 0px;
    margin-top: 5px;
    position: relative;
    justify-content: flex-end;
    height: auto;
    top: 0;
  }

  .registration-form .pin-group {
    flex-wrap: wrap;
  }

  .registration-form .pin-group small {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .registration-form .input-field.select-container small.form-help-text.text-red {
    right: 0 !important;
  }

  .registration .logo img {
    height: 40px;
  }

  .registration .content .heading h3 {
    font-size: 24px;
  }

  .registration .form-container .nav-tabs .nav-link {
    padding: 15px 8px;
    font-size: 15px;
  }

  .registration .form-container .tab-content {
    padding: 25px;
  }

  .registration-form h5 {
    font-size: 16px;
  }

  .registration-form .input-field {
    position: relative;
    margin-bottom: 30px;
  }

  .registration-form .input-field .input-control,
  .registration-form .input-field .empty {
    padding-right: 50px;
  }

  .registration-form .input-field .form-help-text {
    z-index: 10;
    text-shadow: 0 0 10px var(--white);
    justify-content: flex-end;
    position: relative;
    margin-bottom: 0;
    margin-top: 5px;
    height: auto;
    right: 0;
  }

  .registration-form .input-phone .form-help-text {
    top: 30px;
    right: 0px;
    margin-top: 5px;
    position: relative;
    justify-content: flex-end;
    height: auto;
    top: 0;
  }

  .registration-form .pin-group {
    flex-wrap: wrap;
  }

  .registration-form .pin-group small {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .registration-form .input-field.select-container small.form-help-text.text-red {
    right: 0 !important;
  }

  .partner-form-container {
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
  }

  .partner-form-container .form-heading {
    font-size: 18px;
  }

  .partner-form-container .form-subheading {
    font-size: 16px;
  }

  .partner-form-container .plan-check {
    flex-direction: column;
  }

  .partner-form-container .plan-check .form-check {
    padding: 5px 0;
  }

  .partner-form-container .partnership-experience {
    flex-wrap: wrap !important;
    margin-bottom: 40px !important;
  }

  .partner-form-container .partnership-experience .label {
    width: 100%;
    text-align: center;
  }

  .partner-form-container .btn-light {
    border: 0 !important;
    background: none !important;
    border: none !important;
    padding-left: 0;
  }

  .partner-form-container .btn-light:hover,
  .partner-form-container .btn-light:active,
  .partner-form-container .btn-light:focus {
    border: 0 !important;
    background: none !important;
    border: none !important;
  }

  .partner-form-container .btn-light:not(:disabled):not(.disabled).active,
  .partner-form-container .btn-light:not(:disabled):not(.disabled):active,
  .partner-form-container .show>.btn-light.dropdown-toggle {
    border: 0 !important;
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
  }

  .partner-form-container .input-field .input-control {
    padding-right: 15px;
  }

  .partner-form-container .registration-form .input-field .form-help-text {
    position: relative;
    margin: 0;
    right: 0;
    margin-top: 5px;
    position: relative;
    text-align: right;
    justify-content: flex-end;
  }

  .partner-form-container .form-group.filled label {
    top: -20px;
    transition: all ease 0.3s;
    font-size: 12px;
    color: var(--blue500);
    z-index: 3;
  }

  .partner-form-container .filter-option-inner-inner {
    font-weight: bold;
    color: var(--grey800);
  }

  .partner-form-container .bs-placeholder .filter-option-inner-inner {
    color: var(--grey400);
    font-weight: normal;
    font-size: 0;
  }

  .copy-trading {
    padding-top: 30px;
  }

  .article.support-contact .article-bottom .list {
    flex-direction: column;
  }

  .article.support-contact .article-top .link {
    justify-content: start;
  }
}