/*!
Theme Name: wp-citadel
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.2
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wp-citadel
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

wp-citadel is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* Fonts Style */
@font-face {
  font-family: "Bricolage Grotesque";
  src:
    url("assets/fonts/BricolageGrotesque-Medium.woff2") format("woff2"),
    url("assets/fonts/BricolageGrotesque-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src:
    url("assets/fonts/BricolageGrotesque-SemiBold.woff2") format("woff2"),
    url("assets/fonts/BricolageGrotesque-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src:
    url("assets/fonts/Inter-Regular.woff2") format("woff2"),
    url("assets/fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src:
    url("assets/fonts/Inter-Medium.woff2") format("woff2"),
    url("assets/fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src:
    url("assets/fonts/Inter-SemiBold.woff2") format("woff2"),
    url("assets/fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Common Style */
:root {
  --inter: "Inter";
  --bricolage_grotesque: "Bricolage Grotesque";
  --secondary: #006A85;
  --white: #ffffff;
  --black: #000000;
  --grey55: #555555;
  --greyf5: #F5F5F5;
  --dark30: #0C2930;
  --red: #dc3232;
}
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
:focus-visible {
  outline: none;
}
body {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--inter);
  color: var(--black);
  background: var(--white);
  margin: 0;
  padding: 0;
}
p{
  color: var(--grey55);
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
.container {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
ul,
ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
a,
span {
  display: inline-block;
}
a {
  text-decoration: none;
  color: var(--secondary);
  transition: all 0.3s;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0 0 16px;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}
h1,
h2 {
  font-family: var(--bricolage_grotesque);
  line-height: 1.1 !important;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  line-height: 1.25;
  letter-spacing: -0.003em;
}
h1,
.h1 {
  font-size: 56px;
}
h2,
.h2 {
  font-size: 48px;
}
h3,
.h3 {
  font-size: 28px;
}
h4,
.h4 {
  font-size: 22px;
}
h5,
.h5 {
  font-size: 20px;
}
h6,
.h6 {
  font-size: 18px;
}
.pt-90 {
  padding-top: 90px;
}
.pb-90 {
  padding-bottom: 90px;
}
.mt-90 {
  margin-top: 90px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.font-bricolage-grotesque {
  font-family: var(--bricolage_grotesque);
}
input,
textarea,
select,
button {
  font-family: var(--inter);
}
input,
textarea,
select {
  width: 100%;
  background-color: #006A851A;
  backdrop-filter: blur(40px);
  border-radius: 20px;
  font-size: 18px;
  line-height: 1.223;
  padding: 18px 24px;
  border: 1px solid transparent;
  outline: none;
  color: var(--black);
}
select {
  cursor: pointer;
  appearance: none;
  background-image: url("assets/images/icon-arrow-down.svg");
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: right 10px center;
  padding-right: 34px !important;
}
select option {
  color: var(--black);
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--secondary);
}
input.wpcf7-not-valid,
textarea.wpcf7-not-valid,
select.wpcf7-not-valid {
  border-color: var(--red);
}
textarea {
  display: block;
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: var(--grey55);
  opacity: 50%;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
.title-wrapper .title {
  margin-bottom: 16px;
}
.title-wrapper p {
  margin-bottom: 32px;
}
.title-wrapper .title:last-child,
.title-wrapper p:last-child {
  margin-bottom: 0;
}
.btn-group,
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.btn-group {
  gap: 12px;
}
.breadcrumb {
  margin-bottom: 16px;
}
.breadcrumb:last-child {
  margin-bottom: 0;
}
.breadcrumb li {
  position: relative;
  font-size: 16px;
  color: var(--secondary);
  padding-right: 20px;
  margin-right: 10px;
}
.breadcrumb li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: var(--black);
  border-radius: 2px;
  width: 10px;
  height: 4px;
}
.breadcrumb li:last-child {
  margin: 0;
  padding: 0;
}
.breadcrumb li:last-child:before {
  display: none;
}
.breadcrumb a,
.breadcrumb span {
  color: var(--black);
  opacity: 0.5;
}
.breadcrumb a:hover {
  color: var(--secondary);
  opacity: 1;
}

/* Button Style */
.btn {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 6px 24px;
  height: 58px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn .icon {
  width: 20px;
  height: 20px;
  background-color: var(--white);
}
.solid-btn {
  color: var(--white);
  background: var(--secondary);
}
.border-btn {
  border-color: var(--secondary);
  color: var(--secondary);
}
.solid-btn:hover,
.border-btn:hover {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--secondary);
}
.solid-btn:hover .icon,
.border-btn:hover .icon {
  background-color: var(--secondary);
}
.text-btn {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s;
}
.text-primary-btn {
  color: var(--secondary);
}
.text-primary-btn .icon {
  background-color: var(--secondary);
}
.text-primary-btn:hover {
  color: var(--dark30);
}
.text-primary-btn:hover .icon {
  background-color: var(--dark30);
}
/* Icons Style */
.icon {
  display: block;
  width: 16px;
  height: 16px;
  mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-position: center;
  mask-size: contain;
  mask-size: contain;
  background-color: var(--black);
  transition: all 0.3s;
}
.icon-arrow-down {
  mask-image: url("assets/images/icon-arrow-down.svg");
  -webkit-mask-image: url("assets/images/icon-arrow-down.svg");
}
.icon-arrow-right {
  mask-image: url("assets/images/icon-arrow-right.svg");
  -webkit-mask-image: url("assets/images/icon-arrow-right.svg");
}
.icon-arrow-trend-up {
  mask-image: url("assets/images/icon-arrow-trend-up.svg");
  -webkit-mask-image: url("assets/images/icon-arrow-trend-up.svg");
}
.icon-plus {
  mask-image: url("assets/images/icon-plus.svg");
  -webkit-mask-image: url("assets/images/icon-plus.svg");
}
.icon-calendar {
  mask-image: url("assets/images/icon-calendar.svg");
  -webkit-mask-image: url("assets/images/icon-calendar.svg");
}
.icon-location {
  mask-image: url("assets/images/icon-location.svg");
  -webkit-mask-image: url("assets/images/icon-location.svg");
}
.icon-time {
  mask-image: url("assets/images/icon-time.svg");
  -webkit-mask-image: url("assets/images/icon-time.svg");
}
.icon-google-docs {
  mask-image: url("assets/images/icon-google-docs.svg");
  -webkit-mask-image: url("assets/images/icon-google-docs.svg");
}
.icon-mail {
  mask-image: url("assets/images/icon-mail.svg");
  -webkit-mask-image: url("assets/images/icon-mail.svg");
}
/* Header Style */
.site-header {
  position: sticky;
  top: 0;
  padding: 16px 0;
  background-color: var(--greyf5);
  border-bottom: 1px solid #CBCBCB;
  z-index: 9;
}
.header-inner,
.header-inner .menu,
.header-action,
.toggle-wrapper {
  display: flex;
  align-items: center;
}
.header-action .btn {
  font-size: 14px;
  padding: 6px 12px;
  height: 45px;
  border-radius: 12px;
}
.header-inner {
  justify-content: space-between;
}
.header-inner .site-logo img {
  max-width: 166px;
  max-height: 60px;
}
.header-inner .menu {
  gap: 22px;
}
.header-inner .menu .menu-item a {
  font-size: 14px;
  color: var(--dark30);
}
.header-inner .menu .menu-item.current-menu-item a,
.header-inner .menu .menu-item.current-menu-ancestor > a {
  color: var(--secondary);
}
.header-inner .menu .menu-item-has-children {
  position: relative;
}
.header-inner .menu .menu-item-has-children > a {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  z-index: 1;
}
.header-inner .menu .menu-item-has-children > a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--dark30);
  /* background: url("assets/images/icon-arrow-down.svg") no-repeat center;
  background-size: contain; */
  mask-image: url("assets/images/icon-arrow-down.svg");
  -webkit-mask-image: url("assets/images/icon-arrow-down.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  width: 16px;
  height: 16px;
}
.header-inner .menu .current-menu-ancestor.menu-item-has-children > a::before {
  background-color: var(--secondary);
}
.header-inner .menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.header-inner .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  margin: 0;
  transition: all 0.3s;
}
.header-inner .menu .sub-menu a {
  font-size: 14px;
  color: var(--black);
  padding: 4px 12px;
  border-bottom: 1px solid #dfdfdf;
  white-space: nowrap;
  display: block;
}
.header-inner .menu .sub-menu a:hover {
  background: var(--secondary);
  color: var(--white);
}
.header-inner .menu .sub-menu .menu-item.current-menu-item a {
  background: var(--secondary);
  color: var(--white);
}
.header-inner .menu .sub-menu .menu-item:last-child a {
  border: none;
}
.header-action,
.toggle-wrapper {
  gap: 10px;
}
.toggle-wrapper .mobile-toggle {
  display: none;
}
.header-action .border-btn:hover {
  border-color: var(--secondary);
}
.header-inner .language-btn img {
  width: 34px;
}
.mobile-menu-action {
  display: none;
}

/* Hero Banner Style */
.hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - 100px);
  z-index: 1;
}
.hero-banner::before,
.hero-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: -1;
}
.hero-banner::before {
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF), linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, #FFFFFF 100%);
}
.hero-banner::after {
    background: linear-gradient(180deg, rgba(17, 10, 39, 0) 65%, #ffffff 100%);
}
.hero-banner .content-wrapper {
  text-align: center;
}
.hero-banner .content-wrapper .btn-group {
  justify-content: center;
}
.hero-banner .content-wrapper .count-list {
  max-width: 1095px;
  margin: auto;
}
.hero-banner .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero-banner .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.count-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}
.count-list li span {
  display: block;
  margin-bottom: 6px;
}
.count-list li span:last-child {
  margin: 0;
}
.count-list li .data {
  color: var(--grey55);
}

/* Get started */
.get-started-inner {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #006A85BD;
  border-radius: 20px;
}
.get-started-inner .title-wrapper {
  max-width: 602px;
  width: 100%;
  padding: 80px 40px;
  align-self: center;
}
.get-started-inner .image-wrapper {
  position: relative;
  align-self: flex-end;
  max-width: 598px;
  width: 100%;
  z-index: 1;
}
.get-started-inner .image-wrapper img {
  margin-top: auto;
  margin-left: auto;
}

/* Our services */
.our-services-wrapper .title-wrapper,
.first-steps-wrapper .title-wrapper,
.testimonial-wrapper .title-wrapper {
  margin-bottom: 64px;
  text-align: center;
}
.our-services-wrapper .title-wrapper:last-child,
.first-steps-wrapper .title-wrapper:last-child,
.testimonial-wrapper .title-wrapper:last-child {
  margin-bottom: 0;
}
.our-services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.our-services-item .title,
.our-services-item p {
  margin-bottom: 24px;
}
.our-services-item .title:last-child,
.our-services-item p:last-child {
  margin-bottom: 0;
}
.our-services-item .link {
  display: inline-flex;
  align-items: center;
  color: var(--black);
  gap: 4px;
  font-weight: 500;
}
.our-services-item .link:hover {
  color: var(--secondary);
}
.our-services-item .link .icon {
  width: 24px;
  height: 24px;
  background-color: #DDEFE8;
}
.our-services-item .link:hover .icon {
  background-color: var(--secondary);
}
.our-services-item img {
  align-self: center;
}

/* Celebrate more earnings */
.celebrate-earnings-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.celebrate-earnings-inner .image-wrapper {
  width: 100%;
}
.celebrate-earnings-inner .image-wrapper img {
  margin: auto;
}
.celebrate-earnings-inner .title-wrapper {
  max-width: 520px;
  width: 100%;
}

/* First steps */
.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.steps-item {
  display: flex;
  gap: 24px;
  counter-increment: item;
}
.steps-item span {
  display: block;
}
.steps-item .count {
  position: relative;
  width: 62px;
  height: 56px;
  flex-shrink: 0;
  border: 1px solid #ffffff0d;
  background: var(--greyf5);
  backdrop-filter: blur(8px);
  border-radius: 20px;
}
.steps-item .count::before {
  position: absolute;
  content: counter(item);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  font-weight: var(--bricolage_grotesque);
  color: var(--black);
}
.steps-item .title {
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--black);
}
.steps-item .title:last-child {
  margin-bottom: 0;
}

/* Personalized Support */
.personalized-support-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.personalized-support-inner {
    padding: 48px 16px;
    border-radius: 20px;
    background: #ffffff1f;
    backdrop-filter: blur(30px);
    border: 1px solid #ffffff66;
}
.personalized-support-inner .title-wrapper {
  max-width: 678px;
  margin: 0 auto;
  text-align: center;
}
.personalized-support-inner .title-wrapper img {
  max-width: 128px;
  max-height: 110px;
  margin: 0 auto 8px;
}
.personalized-support-inner .title-wrapper .title {
  margin-bottom: 12px;
}

/* Why should you trade with us? */
.Why-should-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.faq-item {
  border-radius: 20px;
  margin-bottom: 36px;
  transition: all 0.3s;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item.active {
  background: #006A851A;
}
.faq-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
}
.faq-title .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--black);
}
.faq-item.active .faq-title .icon {
  transform: rotate(45deg);
  background-color: var(--black);
}
.faq-header {
  padding-top: 38px;
  cursor: pointer;
}
.faq-content,
.faq-header {
  padding-left: 46px;
  padding-right: 46px;
  padding-bottom: 38px;
}
.faq-content ul,
.faq-content ol {
  list-style-type: inherit;
  padding: revert;
}
.faq-content {
  display: none;
}

/* Open an account */
.open-account-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.open-account-inner.order-reverse,
.celebrate-earnings-inner.order-reverse {
  flex-direction: row-reverse;
}
.open-account-inner .title-wrapper {
  max-width: 520px;
  width: 100%;
}

/* Customer testimonials */
.swiper-slide.testimonial-item {
  display: flex;
  height: auto;
}
.testimonial-item {
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 20px;
  background: #006A851A;
}
.testimonial-item .rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-item .rating img {
  max-width: 150px;
  max-height: 30px;
}
.testimonial-item .rating,
.testimonial-item p,
.testimonial-item .top {
  margin-bottom: 16px;
}
.testimonial-item .rating:last-child,
.testimonial-item p:last-child,
.testimonial-item .top:last-child {
  margin-bottom: 0;
}
.testimonial-item .name,
.testimonial-item .rating {
  font-size: 20px;
  font-weight: 600;
}
.testimonial-item .name {
  font-family: var(--bricolage_grotesque);
}
.testimonial-item .designation {
  font-weight: 400;
  font-family: var(--inter);
  display: block;
  color: var(--secondary);
}
.testimonial-item .designation,
.testimonial-item p {
  font-size: 16px;
}
.testimonial-pagination {
  position: static !important;
  transform: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 42px;
}
.testimonial-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  background: var(--secondary);
  border-radius: 30px;
  width: 12px;
  height: 6px;
  cursor: pointer;
}
.testimonial-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--black);
}

/* Site banner */
.site-banner {
  overflow: hidden;
}
.site-banner .banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-banner .image-wrapper {
  margin-right: -250px;
  max-width: 876px;
}
.site-banner .image-wrapper img {
  width: 100%;
}
.site-banner .title-wrapper {
  padding: 50px 0;
  max-width: 628px;
}
/* Plans & Pricing */
.plans-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.plan-card {
  border: 1px solid #3D8BA5;
  border-radius: 20px;
  padding: 36px;
}
.plan-card .title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}
.plan-card .price-badge {
  background-color: var(--secondary);
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 8px;
  color: var(--white);
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.plan-card .title {
  color: var(--secondary);
  margin-bottom: 6px;
}
.plan-card p {
  color: var(--grey55);
}
.plan-card .plan-details-lists {
  column-count: 2;
}
.plan-card .plan-details-lists li {
  position: relative;
  padding-left: 20px;
  line-height: 1.52;
  margin-bottom: 10px;
}
.plan-card .plan-details-lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: var(--black);
}
.plan-card .plan-details-lists li.disable {
  opacity: 50%;
}

/* Contact Us */
.contact-us {
  position: relative;
  z-index: 0;
}
.contact-us::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: -1;
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF),
linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, #FFFFFF 100%);
}
.contact-us .image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 10%;
}
.contact-us .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-us-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.contact-details .breadcrumb {
  margin-bottom: 32px;
}
.contact-details .title {
  margin-bottom: 12px;
}
.contact-details p {
  margin-bottom: 32px;
}
.customer-support > span {
  font-size: 14px;
  opacity: 50%;
}
.contact-support-lists {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 16px;
}
.contact-support-lists:first-child {
  margin-top: 0;
}
.contact-support-lists li:first-child,
.contact-support-lists li:last-child {
  grid-column: span 2;
}
.contact-support-lists li .inner-title,
.contact-support-lists li .content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-support-lists li .icon {
  flex-shrink: 0;
}
.contact-support-lists li .inner-title {
  margin-bottom: 6px;
}
.contact-support-lists li a,
.contact-support-lists li .link {
  color: var(--grey55);
  /* font-weight: 600; */
  display: inline-block;
}
.contact-support-lists li .link {
  display: inline-block;
}
.contact-support-lists li a:hover {
  color: var(--secondary);
}
.contact-form br {
  display: none;
}
.wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  font-size: 14px;
  line-height: 1;
  color: var(--red);
}
.input-wrapper {
  position: relative;
}
.input-wrapper:not(:last-child) {
  margin-bottom: 34px;
}
.input-wrapper label {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
  color: var(--black);
}
.input-wrapper p {
  margin-bottom: 0;
}
.input-wrapper span {
  width: 100%;
}
.input-wrapper .intl-tel-input .selected-flag .iti-flag {
  margin: 0;
  position: static;
}
.input-wrapper .intl-tel-input .country-list .country {
  color: var(--black);
  font-size: 14px;
}
.input-wrapper .intl-tel-input .country-list .country span {
  width: fit-content;
}
.iti-mobile .intl-tel-input .country-list .country .country-name {
  color: var(--black);
}
.input-wrapper .intl-tel-input input {
  padding-left: 145px !important;
}
.input-wrapper .intl-tel-input .selected-flag .iti-arrow {
  position: static;
  /* border-color: #fff; */
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 2px solid var(--grey55);
  border-top: 0;
  border-right: 0;
  rotate: -45deg;
}
.input-wrapper .intl-tel-input .flag-container .selected-flag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 24px;
  width: 135px !important;
  background: transparent !important;
  border-right: 1px solid #ffffff94;
}
.input-wrapper .intl-tel-input.separate-dial-code .selected-dial-code {
  padding: 0;
}
.input-wrapper .intl-tel-input .selected-flag .iti-arrow {
  position: static;
  border-color: var(--grey55);
}
.wpcf7-spinner {
  margin: 0;
}
.wpcf7-spinner,
.submitting .btn-wrapper .btn .icon {
  display: none;
}
.submitting .btn-wrapper .btn .wpcf7-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.wpcf7-response-output {
  font-size: 14px;
  margin: 16px 0 0;
  text-align: center;
}
.legal-documents {
  position: relative;
  z-index: 0;
}
.legal-documents::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.01) 0%, #FFFFFF 100%);
}
.legal-documents .image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.2;
}
.legal-documents .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.legal-documents .title {
  margin-bottom: 64px;
}
.legal-documents-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.legal-document-card .inner-title {
  margin-bottom: 24px;
}
.legal-document-card .text-btn .icon {
  width: 24px;
  height: 24px;
}
/* Our Company */
.who-we-are .title-wrapper {
  text-align: center;
}
.small-title {
  color: #006A8599;
  display: inline-block;
}
.who-we-are .title-wrapper .small-title {
  margin-bottom: 24px;
}
.who-we-are .title-wrapper .title {
  font-weight: 500;
  line-height: 1;
}
.title-wrapper .title span {
  color: var(--secondary);
}
.who-we-are-card-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px;
}
.who-we-are-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.who-we-are-card .image-box {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  overflow: hidden;
}
.who-we-are-card .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.who-we-are-card .card-title {
  margin-bottom: 24px;
}
/* CFD Trading */
.site-cfds {
  position: relative;
  z-index: 0;
}
/* .site-cfds::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    180deg,
    #110a27 0%,
    rgba(0, 0, 0, 0) 50%,
    #110a27 100%
  );
} */
.site-cfds .image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.5;
}
.site-cfds .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-cfds-wrapper {
    background-color: #006a851c;
    backdrop-filter: blur(10px);
    border: 1px solid #006A854D;
    border-radius: 20px;
    padding: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 130px;
}
.site-cfds .text-center {
  text-align: center;
}
.site-cfds-wrapper .title {
  margin-bottom: 24px;
  line-height: 1;
}
.site-cfds-wrapper ul,
.site-cfds-wrapper ol {
  list-style-type: inherit;
  padding-left: 20px;
}
.site-cfds-wrapper ul li,
.site-cfds-wrapper ol li {
  margin-bottom: 8px;
  color: var(--grey55);
}
.site-cfds-wrapper ul li:last-child,
.site-cfds-wrapper ol li:last-child {
  margin-bottom: 0;
}
.why-choose-traders .title-wrapper,
.trade-content .title-wrapper {
  text-align: center;
  margin-bottom: 64px;
}
.traders-strategies-lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
}
.why-choose-traders .title-wrapper .title {
  line-height: 1;
}
.trade-content .title-wrapper .title {
  margin-bottom: 12px;
}
.site-caption {
  color: var(--secondary);
  font-weight: 600;
}
.strategie-card {
  text-align: center;
}
.strategie-card .image-box {
  width: 140px;
  height: 140px;
  overflow: hidden;
  margin-inline: auto;
}
.strategie-card .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.explore-btn-wrapper {
  margin-top: 64px;
  text-align: center;
}
.trade-content-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.trade-content-left {
  max-width: 450px;
  width: 100%;
}
.trade-content-left h3 {
  margin-bottom: 24px;
}
.trade-content-left ul,
.trade-content-left ol {
  list-style-type: inherit;
  padding-left: 20px;
}
.trade-content-left ul li,
.trade-content-left ol li {
  margin-bottom: 8px;
  color: var(--grey55);
}
.trade-content-left h3:last-child,
.trade-content-left ul li:last-child,
.trade-content-left ol li:last-child {
  margin-bottom: 0;
}

.trade-content-left ul.steps-list {
  grid-template-columns: repeat(1, 1fr);
  padding: 0;
  list-style-type: none;
}
.trade-content-left ul.steps-list li {
  align-items: center;
  margin: 0;
}
.trade-content-right {
  max-width: 601px;
  width: 100%;
}
.trade-content-inner .blue-title {
  background: linear-gradient(180deg, var(--secondary) 0%, rgba(99, 90, 255, 0) 124.84%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
      font-family: var(--bricolage_grotesque);
}
.support-form-wrapper .contact-form {
  max-width: 650px;
  margin: 0 auto;
}

/* Footer Style */
.site-footer {
  padding: 55px 0px;
  background: var(--dark30);
}
.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
}
.footer-links-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.site-footer .footer-top,
.footer-links-wrapper {
  gap: 36px;
}
.footer-links h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--white);
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul a {
  font-size: 16px;
  color: var(--white);
}
.footer-links ul .current_page_item a,
.footer-links ul a:hover {
  color: var(--secondary);
}
.footer-top .responsibly-wrapper {
  display: flex;
  gap: 16px;
}
.footer-top .responsibly-wrapper span {
  width: 27px;
  height: 27px;
  display: inline-block;
  flex-shrink: 0;
}
.footer-top .responsibly-wrapper span img {
  width: 100%;
}
.footer-top .responsibly-wrapper h3 {
  font-size: 14px;
  margin-bottom: 14px;
  text-transform: uppercase;
  color: var(--white);
}
.footer-top .responsibly-wrapper p {
  font-size: 12px;
  line-height: 2;
  color: var(--white);
}
.footer-top .responsibly-wrapper p a {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-top .responsibly-wrapper .responsibly-content {
  max-width: 604px;
}
.footer-bottom {
  text-align: center;
  padding-top: 70px;
}
.footer-logo img {
  width: 228px;
}
