@font-face {
  font-family: Roboto;
  src: url(font/Roboto-Bold.ttf) format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: Roboto;
  src: url(font/Roboto-Medium.ttf) format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: Roboto;
  src: url(font/Roboto-Regular.ttf) format("truetype");
  /* font-weight: 500; */
}

@keyframes fadeIn_down {
  0% {
    transform: translate(0, -1.5rem);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fadeIn_up {
  0% {
    transform: translate(0, 1.5rem);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes fadeInL {
  0% {
    transform: translate(-1.5rem, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fadeInR {
  0% {
    transform: translate(1.5rem, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.fadeInL {
  animation-name: fadeInL;
}
.fadeInU {
  animation-name: fadeIn_up;
}
.fadeInD {
  animation-name: fadeIn_down;
}
.fadeInR {
  animation-name: fadeInR;
}
html {
  font-size: 100px;
  scroll-behavior: smooth;
}

:root {
  --purple: #635af0;
  --black: #13121b;
  --blue: #045de9;
  --lightgrey: #e6e6ef;
  --gray: #969696;
  --hovercolor: #cc3c44;
  --animate-delay: 0.25s;
  --bluehover: #3ad1fa;
}

.text-purple {
  color: var(--purple);
}

/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Gilroy", Arial, san-serif;
  background: #fff;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
a {
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  text-decoration: none;
  display: block;
}
img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  padding: 0;
}
input,
button,
select {
  font-family: "Gilroy", Arial, san-serif;
}
p,
ol,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
pre,
input,
table,
tr,
td,
form {
  margin: 0;
  padding: 0;
}
ol,
ul,
li {
  list-style: none;
}
input {
  border: 0 none;
}
img {
  border: 0 none;
}

.float_clear {
  float: none;
  clear: both;
  display: block;
  width: 100%;
}

.main_content {
  display: block;
  margin: auto;
  padding: 0;
  overflow: hidden;
  font-size: 18px;
  min-height: 70vh;
  font-weight: 500;
  /* max-width: 1920px; */
  margin: 0 auto;
}

.banner {
  background: url(../images/banner_bg.jpg) no-repeat center;
  background-size: cover;
  height: 5.8rem;
  color: white;
  margin-top: 0.8rem;
}

.banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1310px;
  margin: 0 auto;
  padding-left: 0.2rem;
  padding-right: 0.4rem;
}

.banner-left {
  max-width: 600px;
}

.banner-left h1 {
  font-size: 56px;
  font-weight: 600;
}

.banner-left h2 {
  font-size: 28px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
}

.banner-buttons {
  display: inline-block;
  align-items: stretch;
  gap: 12px;
  max-width: 548px;
}
.banner-buttons a {
  width:fit-content;
  padding: 16px 24px;
  display: block;
  color: white;
  font-family: inherit;
}

.banner-button-left {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.banner-button-left:hover {
  background: rgba(255, 255, 255, 0.5);
}

.banner-button-right {
  border-radius: 8px;
  background: #635af0;
}
.banner-button-right:hover {
  filter: brightness(1.2);
}
.banner-buttons p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.banner-button-line1 {
  display: flex;
  align-items: center;
  gap: 4px;
}
.banner-button-line1 p {
  display: flex;
  align-items: center;
  font-size: 0.18rem;
}

.banner-button-right {
  position: relative;
  overflow: hidden;
}

.banner-button-right-circle {
  /* background: radial-gradient(#9791ff 100%, #9791ff 0%); */
  /* background: #7466fe; */
  border-radius: 50%;
  width: 123px;
  height: 123px;
  position: absolute;
  right: -31px;
  bottom: -33px;
}

.banner-button-right-circle svg {
  position: absolute;
  left: 0;
  top: 0;
}

.banner-button-right-circle img {
  position: absolute;
  top: 24px;
  left: 24px;
}

.banner-warning {
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
}

.banner-right-card {
  width: 205px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  position: absolute;
  border-radius: 8px;
}

.banner-right {
  width: 615px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.banner-right > img {
  position: absolute;
  max-width: none;
  width: 6rem;
  top: 0.1rem;
  left: 0.5rem;
}

.banner-right {
  position: relative;
}
.banner-right-card1 {
  top: 168px;
  left: 107px;
  background: #edbf43;
}

.banner-right-card2 {
  top: 52px;
  right: 72px;
  background: #0517a1;
}

.banner-right-card3 {
  bottom: 80px;
  left: 143px;
  background: #ffbf00;
}

.banner-right-card4 {
  bottom: 130px;
  right: 38px;
  background: #ec4c4d;
}

.banner-right-line1 {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

.banner-right-line2 {
  font-size: 12px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
}

.banner-right-card > div {
  width: 100%;
}

.banner-right-line3 {
  display: flex;
  justify-content: space-between;
}

.banner-trade-button {
  border-radius: 8px;
  background: white;
  font-size: 12px;
  color: #353535;
  font-weight: 700;
  padding: 8px 20px;
}

.banner-category {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  font-size: 10px;
  font-weight: 400;
  color: white;
}

.part-one {
  background: #f5f7fa;
}

.part-one-container {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  column-gap: 0.3rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  max-width: 1340px;
  margin: 0 auto;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}
.part-one-left {
  max-width: 495px;
  padding-top: 0.4rem;
}

.part-one-left h1 {
  font-size: 36px;
  font-weight: 700;
  color: #262626;
  margin-bottom: 0.4rem;
}

.part-one-left > p {
  font-size: 20px;
  font-weight: 400;
  color: #2d3642;
  line-height: 1.2;
}

.part-one-left-buttons {
  width: 300px;
  grid-column: 1/2;
  grid-row: 2/3;
  padding-top: 0.4rem;
}
.part-one-left-buttons a {
  width: 100%;
  height: 0.56rem;
  padding: 0rem 0.3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.05rem;
  border-radius: 0.08rem;
  font-size: 0.18rem;
  font-weight: 700;
  color: white;
}

.part-one-left-buttons a p:last-child {
  font-size: 0.18rem;
  font-weight: 400;
}

.part-one-button1 {
  background: #272727;
  margin-bottom: 0.08rem;
}

.part-one-button2 {
  background: #635af0;
}

.part-one-risk-warning {
  text-align: center;
  font-size: 0.14rem;
  color: #777;
  font-weight: 400;
  margin-top: 0.2rem;
}

.part-one-right {
  grid-row: 1/3;
}

.part-one-right-card-container {
  display: grid;
  grid-template-columns: 305fr 305fr;
  gap: 10px;
  grid-template-rows: 0fr 225fr 0fr;
}

.part-one-right-card {
  display: flex;
  max-width: 300px;
  height: 260px;
  padding: 0.16rem;
  flex-direction: column;
  align-items: flex-start;
  background: white;
  border-radius: 0.08rem;
}

.part-one-right-card h2 {
  color: #262626;
  margin-bottom: 0.08rem;
  font-size: 20px;
}

.part-one-right-card p {
  font-size: 0.16rem;
  color: #4a515b;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 1.4;
}

.part-one-right-card1 {
  grid-row: 1/3;
}

.part-one-right-card2 {
  grid-row: 2/4;
}

.part-one-right-card3 {
  grid-row: 3/5;
}

.part-one-right-card4 {
  grid-row: 4/5;
}

.part-two {
  padding-top: 0.48rem;
  padding-bottom: 0.6rem;
}
.part-two-container {
  max-width: 13.4rem;
  margin: 0 auto;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}

.part-two-top-left h1 {
  font-size: 36px;
  font-weight: 700;
  color: #262626;
  line-height: 1.36;
}

.part-two-top-right h3 {
  font-size: 0.2rem;
  color: #333;
  font-weight: 400;
  max-width: 5.3rem;
  margin-top: 0.2rem;
  line-height: 1.2;
}

.part-two-top-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.part-two-middle-container {
  border-top: 1px solid #e6e8eb;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0.64rem;
  margin-top: 0.48rem;
  margin-bottom: 0.2rem;
}

.part-two-card {
  display: flex;
  max-width: 5.21rem;
  gap: 0.36rem;
  align-items: center;
}

.part-two-card-right h2 {
  margin-bottom: 0.12rem;
  font-size: 20px;
}

.part-two-card-right p {
  color: #4a515b;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 1.2;
}

.part-two-buttons {
  display: flex;
  justify-content: center;
  width: auto;
  gap: 0.08rem;
  padding-top: 0;
}

.part-two-buttons a {
  width: 3rem;
}

.part-two-terms-link {
  color: #635af0;
  font-size: 0.16rem;
  font-weight: 500;
  text-decoration: underline;
  text-align: center;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}

.part-two-risk-warning {
  color: #777;
  text-align: center;
  font-size: 0.14rem;
  font-weight: 400;
}

footer {
  background: #1a1a1a;
  color: #999;
  font-size: 0.14rem;
  font-weight: 400;
}

.footer-container {
  max-width: 10.64rem;
  margin: 0 auto;
}

.footer-container p {
  margin-bottom: 0.24rem;
  line-height: 1.6;
}

.footer-container a {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.footer-container .footer-underline {
  text-decoration: underline;
}

.header-container {
  position: fixed;
  left: 0;
  width: 100%;
  height: 0.8rem;
  padding: 0px 30px;
  z-index: 200;
  background: #fff;
  display: table;
}
.header-container > div {
  display: table-cell;
  vertical-align: middle;
}

.header-left-buttons {
  float: right;
  padding-top: 0.15rem;
}

.header-left-buttons .btn {
  display: block;
  height: 40px;
  line-height: 40px;
  width: 154px;
  padding: 0;
  text-align: center;
  margin-top: 5px;
  background: #635af0;
  color: #fff;
  border-radius: 0.08rem;
  font-size: 0.18rem;
  font-weight: 400;
  cursor: pointer;
}

@media (max-width: 1050px) {
  body{
    text-align: center;
  }
  .header-container {
    position: fixed;
    left: 0;
    width: 100%;
    height: 0.8rem;
    z-index: 200;
    background: #fff;
    display: table;
    padding: 0.2rem;
  }
  .header-left-buttons {
    float: right;
    padding: 0rem;
}
  .header-left-buttons .btn {
    display: block;
    height: 0.85rem;
    line-height: 0.85rem;
    width: 2rem;
    padding: 0;
    text-align: center;
    background: #635af0;
    color: #fff;
    border-radius: 0.08rem;
    font-size: 0.32rem;
    cursor: pointer;
  }

  .banner {
    height: 15.6rem;
    background: url(../images/banner_bg_mobile.jpg) no-repeat center;
    background-size: cover;
  }
  .banner-container {
    flex-direction: column-reverse;
    padding: 0;
    justify-content: flex-end;
  }
  .banner-right {
    width: 100%;
    max-width: 750px;
  }
  .banner-right > img {
    width: 100%;
    top: 0.3rem;
    left: -1%;
    margin: 0 auto;
    right: 0;
  }
  .banner-right-line1 {
    font-size: 0.15rem;
  }
  .banner-right-line2 {
    font-size: 0.13rem;
  }
  .banner-trade-button {
    font-size: 0.13rem;
    padding: 0.09rem 0.22rem;
    border-radius: 0.05rem;
  }
  .banner-category {
    font-size: 0.11rem;
    padding: 0.09rem;
  }
  .banner-right-card img {
    width: 0.86rem;
  }
  .banner-right-card {
    width: 2.84rem;
    gap: 0.4rem;
  }
  .banner-right-card1 {
    top: 1.5rem;
    left: 0.64rem;
  }
  .banner-right-card2 {
    top: 1rem;
    right: 0.64rem;
  }
  .banner-right-card3 {
    bottom: -0.18rem;
    left: 0.83rem;
  }
  .banner-right-card4 {
    bottom: 0.34rem;
    right: 0.83rem;
  }
  .banner-left h1 {
    font-size: 0.62rem;
    font-weight: 600;
  }
  .banner-left h2 {
    font-size: 0.36rem;
    font-weight: 400;
    margin-top: 0.36rem;
    margin-bottom: 0.56rem;
  }
  .banner-left {
    width: 100%;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    margin-top: 0.16rem;
    max-width: none;
  }
  .banner-buttons {
    flex-direction: column;
  }
  .banner-buttons p {
    font-size: 0.28rem;
  }
  .banner-button-line1 p {
    font-size: 0.36rem;
  }

  .banner-button-line1 img {
    width: 0.4rem;
  }

  .banner-buttons a {
    width: 100%;
    padding: 0.24rem 1rem;
  }
  .banner-buttons p {
    max-width: 4.2rem;
  }
  .banner-warning {
    font-size: 0.28rem;
  }
  .part-one-container {
    grid-template-columns: 1fr;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  .part-one-left-buttons {
    grid-column: auto;
    grid-row: 3/4;
    width: 100%;
    margin-top: 0.6rem;
    padding-top: 0;
  }
  .part-one-left {
    grid-row: 1/2;
    max-width: none;
  }
  .part-one-left > p {
    font-size: 0.32rem;
    line-height: 1.2;
  }
  .part-one-right {
    grid-row: 2/3;
    margin-top: 0.36rem;
  }
  .part-one-right-card-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .part-one-right-card1 {
    grid-row: 1/2;
  }
  .part-one-right-card2 {
    grid-row: 3/4;
  }
  .part-one-right-card3 {
    grid-row: 2/3;
  }
  .part-one-right-card4 {
    grid-row: 4/5;
  }
  .part-one-right-card {
    width: 100%;
    height: auto;
    padding: 0.32rem;
    border-radius: 0.16rem;
    max-width: none;
    align-items: center;
  }
  .part-one-right-card h2 {
    font-size: 0.36rem;
  }
  .part-one-right-card p {
    font-size: 0.32rem;
  }
  .part-one-left-buttons a {
    font-size: 0.36rem;
    border-radius: 0.16rem;
    height: 1rem;
    width: 85%;
    margin-left: 0.5rem;
  }
  .part-one-left-buttons a p:last-child {
    font-size: 0.36rem;
  }
  .part-one-button1 {
    margin-bottom: 0.16rem;
  }
  .part-one-risk-warning {
    font-size: 0.28rem;
    margin-top: 0.4rem;
  }
  .part-one-left h1 {
    font-size: 0.56rem;
  }
  .part-two-top-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .part-two-container {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  .part-two-top-left h1 {
    font-size: 0.56rem;
  }
  .part-two-top-right {
    padding: 0;
  }
  .part-two-top-right h3 {
    font-size: 0.32rem;
    max-width: none;
    margin-top: 0.4rem;
  }
  .part-two-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: none;
  }
  .part-two-middle-container {
    grid-template-columns: 1fr;
    padding-top: 0.64rem;
  }
  .part-two-card-right h2 {
    font-size: 0.36rem;
  }
  .part-two-card-right p {
    font-size: 0.32rem;
  }
  .part-two-card1 {
    order: 1;
  }
  .part-two-card2 {
    order: 3;
  }
  .part-two-card3 {
    order: 2;
  }
  .part-two-card4 {
    order: 4;
  }
  .part-two-buttons {
    flex-direction: column;
  }
  .part-two-terms-link {
    font-size: 0.32rem;
    margin-top: 0.4rem;
  }
  .part-two-risk-warning {
    font-size: 0.28rem;
  }
  .part-two-buttons {
    margin-top: 0.64rem;
  }
  footer {
    font-size: 0.28rem;
  }
  .footer-container {
    width: 100%;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  .footer-container p {
    margin-bottom: 0.5rem;
  }
}

footer {
  background-color: #161717;
  color: #acafaf;
  border-radius: 24px 24px 0px 0px;
  font-size: 16px;
  font-weight: 500;
}

footer .container {
  font-size: 0.75em;
  width: 90%;
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 20px 0;
}
footer a,
footer a:visited {
  color: #09c6f9;
  display: inline-block;
}
footer p {
  margin-bottom: 10px;
}
.footer-links a {
  display: inline-block;
  margin-right: 20px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.awards {
  padding-bottom: 20px;
}
.awards img {
  display: inline-block;
  margin: 15px 10px;
  vertical-align: middle;
}
.awards img.logo-footer {
  margin-right: 14px;
  margin-left: 0;
}
[dir="rtl"] .awards img.logo-footer {
  margin-right: 0;
  margin-left: 14px;
}
.disclaimer strong {
  color: #fff;
}

@media only screen and (max-width: 750px) {
  footer .container {
    font-size: 0.24rem;
  }
  footer p {
    line-height: 1.5;
  }
  .footer-links a {
    font-size: 0.24rem;
  }
}

.form-section{
  background: #f5f7fa url(../images/form_bg.png) no-repeat center;
  height: 780px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container>h2{
  font-size:42px;
  font-weight:bold;
}
.form-container>h4{
  font-size:30px;
  font-weight:500;
  margin-top:20px;
}
#leadform-form .social-terms-line{
  display:flex;
  align-items: center;
  margin-top: 0.16rem;
  margin-bottom: 0.16rem;
}
/* #leadform-form,
.rw-custom {
  max-width: 412px;
} */

#leadform-form .form_wrapper {
  font-family: "Gilroy", Verdana, san-serif !important;
}

#leadform-form .form_wrapper .mid_wrapper .bonus_holder {
  margin-top: 10px !important;
}

#leadform-form .form_wrapper .mid_wrapper .external-auth.branded-sso .or-line {
  display: none;
}
#leadform-form .form_wrapper .mid_wrapper .external-auth.branded-sso{
  width:auto;
}
#leadform-form .form-terms-link{
  color:#969696;
  font-weight:400;
}

#leadform-form .form_wrapper .mid_wrapper .external-auth {
  margin-right:0.28rem;
}

#leadform-form
  .form_wrapper
  .mid_wrapper
  .external-auth.display-sso-icons
  .ext-buttons.ext-buttons-apple {
  background: url(../images/apple.png) center center/contain no-repeat !important;
}
#leadform-form
  .form_wrapper
  .mid_wrapper
  .external-auth.display-sso-icons
  .ext-buttons.ext-buttons-goog {
  background: url(../images/google.png) center center/contain no-repeat !important;
}
#leadform-form
  .form_wrapper
  .mid_wrapper
  .external-auth.display-sso-icons
  .ext-buttons.ext-buttons-fb {
  background: url(../images/facebook.png) center center/contain no-repeat !important;
}

#leadform-form .form_wrapper .mid_wrapper .form_holder .form_row .field_title {
  font-size: 14px !important;
  text-align: inherit !important;
}

#leadform-form
  .form_wrapper
  .mid_wrapper
  .form_holder
  .form_row
  .field_input
  input {
  border: 1px solid #d0d1d1 !important;
  padding: 15px !important;
  border-radius: 8px !important;
  font-family: "Gilroy", Verdana, san-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #aaa !important;
  background-color: #fff;
}

#leadform-form
  .form_wrapper
  .mid_wrapper
  .form_holder
  .form_row
  .field_input
  input#telephone {
  padding-left: 40px !important;
}

[dir="rtl"]
  #leadform-form
  .form_wrapper
  .mid_wrapper
  .form_holder
  .form_row
  .field_input
  input#telephone {
  padding-left: 0 !important;
  padding-right: 40px !important;
}

#leadform-form .form_wrapper .mid_wrapper .form_holder .button {
  background: #13121b !important;
  border-radius: 8px !important;
  padding: 15px !important;
  font-family: "Gilroy", Verdana, san-serif !important;
  font-weight: 700;
}

#leadform-form .form_wrapper .mid_wrapper .gdpr-disclosure,
#leadform-form .form_wrapper .mid_wrapper .legal,
#leadform-form .form_wrapper .mid_wrapper .legal span,
#leadform-form .form_wrapper .mid_wrapper .reg-disclosure {
  font-size: 12px !important;
  color: #8a8b8b !important;
  text-align:left;
  font-weight:300;
}
#leadform-form .form_wrapper .mid_wrapper .form_holder .form_row .field_input.error-input ~ .error-text{
  font-size:0.16rem;
}

#leadform-form .form_wrapper .mid_wrapper .reg-disclosure{
  margin-top:0.12rem;
}

.gdpr-disclosure,.reg-disclosure{
  color:#969696;
}
.gdpr-disclosure a {
  font-family: "Gilroy", Verdana, san-serif !important;
  font-weight: 500;
  color: #161717 !important;
  text-decoration:underline;
  display:inline-block;
  color:#969696 !important;
}

.layer_text {
  margin: 0 auto !important;
}

.row-password2 .field_title {
  display: none;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: 0 !important;
}

.form-container{
  background:white;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
  padding:30px 40px;
  border-radius:10px;
  width:100%;
}
#leadform-form .form_wrapper .mid_wrapper .form_holder .form_row .field_input input::placeholder{
  color:#c8c8c8;
  font-weight:400;
}
#leadform-form .form_wrapper .mid_wrapper .external-auth.display-sso-icons .ext-buttons{
  width:40px;
  height:40px;
  flex:0 0 40px;
}

@media (max-width: 1180px) {
  #leadform-form,
  .rw-custom {
    margin: 0 auto;
  }
  #leadform-form .form_wrapper .mid_wrapper .gdpr-disclosure,
  #leadform-form .form_wrapper .mid_wrapper .legal,
  #leadform-form .form_wrapper .mid_wrapper .legal span {
    margin-top: 0 !important;
  }
}


@media(max-width:750px){
  #leadform-form .form_wrapper .mid_wrapper .external-auth.display-sso-icons .ext-buttons{
    margin:0;
    margin-right:0.05rem;
    margin-bottom:0;
  }
  .form-section{
    background:#f5f7fa ;
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .form-container{
    max-width:none;
    width:85%;
    padding:0.4rem;
  }
  .form-container>h2{
    text-align:left;
    font-size:0.5rem;
    margin-right:-0.3rem;
  }
  .form-container>h4{
    text-align: left;
    font-size:0.36rem;
    margin-top:0.2rem;
  }
  #leadform-form .form_wrapper .mid_wrapper .form_holder .form_row{
    text-align:left;
  }
  #leadform-form .form_wrapper .mid_wrapper .external-auth.display-sso-icons .ext-buttons{
    width:0.7rem;
    height:0.7rem;
    flex: 0 0 0.7rem;
  }
  #leadform-form .form-terms-link{
    font-size:0.28rem;
  }
  #leadform-form .social-terms-line{
    margin-bottom: 0.3rem;
    margin-top: 0.3rem;
  }
  #leadform-form .form_wrapper .mid_wrapper .external-auth.display-sso-icons .ext-buttons.ext-buttons-goog .g_id_signin{
    width:100%;
    height:100%;
  }
  #leadform-form .form_wrapper .mid_wrapper .form_holder{
    margin-top:0.2rem;
  }
  #leadform-form .form_wrapper .mid_wrapper .form_holder .form_row .field_input.error-input ~ .error-text{
    font-size:0.24rem;
  }
}