@-webkit-viewport {
  width: device-width;
}

@-moz-viewport {
  width: device-width;
}

@-ms-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

@font-face {
    font-family: "Maison Neue";
    src: url("../font/Maison_Neue_Extra_Bold.ttf")format("truetype");
    font-weight: 700;
}

@font-face {
  font-family: "Maison Neue";
  src: url("../font/Maison_Neue_Book.ttf")format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Maison Neue";
  src: url("../font/Maison_Neue_Bold.ttf")format("truetype");
  font-weight: 600;
}

:root {
  --primary-color: #e7eef5;
  --secondary-color: #fff62e;
  --tertiary-color: #1b1d1e;
  --light-color: #fff;
  --text-color: #68737a;
  --gray-color: #a9c0d1;
}

html {
  background-color: var(--primary-color) !important;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  overflow-x: hidden;
  position: relative;
  /* font-family: "Inter", sans-serif !important; */
  font-family: "Maison Neue"!important;
  font-optical-sizing: auto;
  color: var(--tertiary-color) !important;
  background-color: var(--primary-color) !important;
  font-size: 16px !important;
  letter-spacing: 0.5px;
}

.margin-top-xl{
  margin-top: 4em!important;
}

a {
  text-decoration: none !important;
}

.sm-marg-btn{
  margin-bottom: 2em;
}

/* Header Style  start */
.header-nav {
  padding: 1em 0 !important;
}

.header-nav .logo {
  width: 5.5em;
  height: auto;
  object-fit: contain;
  /* mix-blend-mode: luminosity; */
}

.header-nav .navbar-nav {
  gap: 1em;
}

.header-nav .nav-link {
  font-size: 0.95em !important;
  font-weight: 500 !important;
  color: var(--text-color) !important;
}

.nav-btn {
  border: 1px solid var(--tertiary-color) !important;
  background-color: transparent !important;
  color: var(--tertiary-color) !important;
  font-size: 0.95em !important;
  font-weight: 500 !important;
  /* text-transform: uppercase; */
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5em !important;
  padding: 0.7em 3em !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out !important;
  border-radius: 25px !important;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.nav-btn:hover{
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
  color: var(--light-color)!important;
}

.nav-btn:before,
.nav-btn:after{
    content: '';
    background: var(--tertiary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: -16px;
    left: -16px;
    transition: 1s ease;
    z-index: -1;
}
.nav-btn:after{
    left: calc(100% + 16px);
    top: calc(100% + 16px);
}
.nav-btn:hover:before, 
.nav-btn:hover:after {
    height: 410px;
    width: 410px;
}

/* Header Style  end */

/* Banner Style start */
.banner-wrapped {
  min-height: 100vh;
  /* position: relative; */
  overflow: hidden;
  
}
.banner-avater-frame{
  position: relative;
  z-index: 99;
}
.banner-avater-box{
  position: absolute;
}
.banner-avater-box.avater-box_1{
  left: 5%;
  transform: rotate(345deg);
  top: 5rem;
}
.banner-avater-box.avater-box_2{
  left: 35%;
  top: 12rem;
  transform: rotate(18deg);
  z-index: 9;
}
.banner-avater-box.avater-box_3{
  right: 27%;
  top: 22rem;
  transform: rotate(330deg);
}
.banner-avater-box.avater-box_4{
  right: 12%;
  top: 33rem;
  transform: rotate(10deg);
}
.banner-avater-box.avater-box_1 .avater_1{
  max-width: 400px;
  width: min-content;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-animation: 2s scale ease 1 forwards;
  animation: 2s scale ease 1 forwards;

}
.banner-avater-box.avater-box_2 .avater_2{
  max-width: 300px;
  width: min-content;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-animation: 2s scale ease 1 forwards;
  animation: 3s scale ease 1 forwards;

}
.banner-avater-box.avater-box_3 .avater_3{
  max-width: 370px;
  width: min-content;

  border: 1px solid #bebebe;
  border-radius: 30px;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-animation: 2s scale ease 1 forwards;
  animation: 2s scale ease 1 forwards;

}
.banner-avater-box.avater-box_4 .avater_4{
  max-width: 320px;
  width: min-content;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-animation: 2s scale ease 1 forwards;
  animation: 3s scale ease 1 forwards;


}
@keyframes scale {
  0% {
    opacity: 0;
  }
  
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.banner-info-frame{
  position: absolute;
  /* bottom: 6rem; */
  left: 0;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  align-items: flex-end;
  margin-top: -6.5em;
}

.text-yellow-color{
  background: #fff62e;;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-info-titles h1{
  font-size: 2.1em;
  font-weight: 700;
  line-height: 1.3;
  color: #454e55;
}
.banner-info-titles h1 span{
  color: var(--tertiary-color);
}
.banner-info-action{
  margin-top: 1em;
}
.banner-info-action .banner-action-btn{
  border: 0 !important;
  background-color: var(--secondary-color) !important;
  color: var(--tertiary-color) !important;
  font-size: 0.95em !important;
  font-weight: 600 !important;
  /* text-transform: uppercase; */
  display: inline-block !important;
  align-items: center;
  justify-content: center;
  gap: 0.5em !important;
  padding: 1em 2em !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out !important;
  border-radius: 25px !important;
  width: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.banner-action-btn:hover{
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
  color: var(--light-color)!important;
}

.banner-action-btn:before,
.banner-action-btn:after{
    content: '';
    background: var(--tertiary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: -16px;
    left: -16px;
    transition: 1s ease;
    z-index: -1;
}
.banner-action-btn:after{
    left: calc(100% + 16px);
    top: calc(100% + 16px);
}
.banner-action-btn:hover:before, 
.banner-action-btn:hover:after {
    height: 410px;
    width: 410px;
}

.banner-info-sen{
  /* transform: translate(979px, -150px); */
  /* width: calc(100% - 50%); */
  max-width: 459px;
  position: absolute;
  top: 10px;
  right: 0;
}
.banner-info-sen p{
  font-size: 1em;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify;
}
.shape-frame{
  position: absolute;
  bottom: 0;
  right: -150px;
  pointer-events: none;
  z-index: 1;
}
.shape_1{
  width: 499px;
}
.roate-global{
  -webkit-animation: rotate-center 100s linear infinite both reverse;
  animation: rotate-center 100s linear infinite both reverse;
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  
}
/* Banner Style end */

/* Platform style start  */

.platform-box{
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  gap: 1.5em;
}

.platform-frame {
  background: #1b1d1e;
  border-radius: 30px;
  padding: 4em;
}

.platform-title h2 {
  font-size: 3.5em;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--light-color);
  text-align: center;
}

.platform-title h5 {
  font-size: 1.8em;
  margin-bottom: 0;
  background: -webkit-linear-gradient(#919191, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.platform-title h5 span {
  color: var(--light-color);
}

.platform-title h2 .text-color {
  color: var(--secondary-color);
  text-transform: uppercase;
}

.platform-title h2 .text-gradient {
  background: -webkit-linear-gradient(#919191, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.platform-card {
  padding: 2em;
  background-color: var(--primary-color);
  border-radius: 30px;
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
}
.platform-card-frame {
  padding: 4em 0;
}
.platform-card .platform-card-icons .platform-card-avater {
  background-color: var(--secondary-color);
  border-radius: 50%;
  width: 5em;
  height: 5em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1em;
}

.platform-card .platform-card-icons {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100px;
  height: 100px;
  background-color: #1b1d1e;
  border-radius: 0 0px 0 30px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.platform-card .platform-card-icons .sticky-corner {
  position: absolute;
  z-index: 2;
}

.platform-card .platform-card-icons .sticky-corner.left-corner {
  left: -35px;
  top: 0;
}

.platform-card .platform-card-icons .sticky-corner.right-corner {
  bottom: -35px;
  right: 0;
}

.platform-card .platform-card-info {
  width: calc(100% - 20%);
}

.platform-card .platform-card-info h3 {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--tertiary-color);
  margin-bottom: 0.8em;
  display: grid;
  grid-template-columns: 55px auto;
  align-items: center;
}
.platform-card .platform-card-info h3 span {
  width: 32px;
  height: 32px;
  border: 1px solid var(--tertiary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.platform-card .platform-card-info p {
  font-size: 0.9em;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 0.7em;
}

.platform-card .platform-card-info p:last-child {
  margin-bottom: 0 !important;
}
.platform-card:hover {
  background: var(--secondary-color);
}
.platform-card:hover .platform-card-icons .platform-card-avater {
  background: var(--light-color);
}
/* Platform style end  */

/* Gen Ai Cards Style  start */
.genai-card {
  padding: 3em 3em 0 3em;
  border-radius: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.genai-card .genai-card-info {
  margin-bottom: 2em;
}
.genai-card .genai-card-info h2 {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--tertiary-color);
  line-height: 1.3;
  margin-bottom: 0.5em;
  letter-spacing: 0.2px;
}
.genai-card .genai-card-info ul {
  padding: 0 !important;
}
.genai-card .genai-card-info ul li {
  margin-bottom: 1em;
}
.genai-card .genai-card-info ul li:last-child {
  margin-bottom: 0 !important;
}
.genai-card .genai-card-info ul li p {
  font-size: 0.95em;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 0em;
}
.genai-card-img {
  width: 100%;
  height: 25em;
  object-fit: contain;
  margin: 0 auto;
}
.outer-line {
  border: 1px solid #aac1d3;
}
.fill-card {
  background: var(--gray-color);
}
/* Gen Ai Cards style end */

/* Text Flwo Style start */
.text-flow-wrapped {
  padding: 6em 0;
  background: var(--light-color);
}
.text-flow-frame h2 {
  font-size: 2.5em;
  font-weight: 600;
  font-style: italic;
  color: var(--tertiary-color);
  line-height: 1.4;
  margin-bottom: 1em;
  letter-spacing: 0.3px;
  border: 1px solid #aac1d3;
  border-radius: 30px;
  padding:1em;
}
.text-flow-frame h2:last-child {
  margin-bottom: 0em;
}
.text-flow-frame h2 span {
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 0.8em;
  font-style: italic;
  background: var(--secondary-color);
  font-weight: 600;
}

.text-grey-color span {
  background-color: #e8edf0 !important;
}

/* .text-flow-wrapped:hover .text-flow-frame h2 span{
  background: var(--secondary-color);
} */
/* Text Flwo Style end */

/* Class Section style start  */
.best-class-wrapped {
  padding: 6em 0;
}
.best-class-titile h2 {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--tertiary-color);
  line-height: 1.4;
  margin-bottom: 1em;
}
.class-card {
  padding: 2.5em;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 1.5em;
  height: 100%;
}
.class-fill-card {
  background-color: #1b1d1e;
}
.class-light-card {
  background: #d4e1ea;
}
.class-card-title h3 {
  color: var(--light-color);
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 0.2em;
}

.class-card-title p,
.class-card-footer p {
  /* color: var(--gray-color); */
  font-size: 0.95em;
  font-weight: 500;
  color: #babbbb;
  line-height: 1.8;
  margin-bottom: 0em;
}
.class-card-space {
  border: 1px solid #383838;
}
.basic-card-title h3 {
  color: var(--tertiary-color);
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 0.2em;
}

.class-card-info ul {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 0;
}

.class-card-info ul.list-unstyled.basic-plan li{
  font-size: 0.95em;
  font-weight: 500;
  color: var(--tertiary-color);
  line-height: 1.8;
  margin-bottom: 0em;
  display: grid;
  grid-template-columns: 25px auto;
  align-items: center;
  text-align: left !important;
}

.class-card-info ul li {
  font-size: 1.1em;
  font-weight: 500;
  color: var(--gray-color);
  line-height: 1.8;
  margin-bottom: 0em;
}
.class-card-info ul li {
  font-size: 0.95em;
  font-weight: 500;
  color: var(--light-color);
  line-height: 1.8;
  margin-bottom: 0em;
  display: grid;
  grid-template-columns: 25px auto;
  align-items: center;
  text-align: left !important;
}

.class-card-action .class-card-btn {
  border: 0 !important;
  background-color: var(--secondary-color) !important;
  color: var(--tertiary-color) !important;
  font-size: 0.95em !important;
  font-weight: 600 !important;
  /* text-transform: uppercase; */
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5em !important;
  padding: 1em 2em !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out !important;
  border-radius: 25px !important;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.class-card-btn:hover{
  /* text-shadow: 0 0 10px rgba(0,0,0,0.6); */
  color: var(--tertiary-color)!important;
  background-color: var(--light-color)!important;
}

.class-card-btn:before,
.class-card-btn:after{
    content: '';
    background: var(--light-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: -16px;
    left: -16px;
    transition: 1s ease;
    z-index: -1;
}
.class-card-btn:after{
    left: calc(100% + 16px);
    top: calc(100% + 16px);
}
.class-card-btn:hover:before, 
.class-card-btn:hover:after {
    height: 500px;
    width: 500px;
}


.class-card-img {
  width: 100%;
  height: 7em;
  margin: 0;
  object-fit: contain;
}
.class-card-info p {
  font-size: 0.95em;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0em;
  text-align: center;
}
.class-card-btn-line {
  border: 1px solid #afb8be !important;
  background-color: transparent !important;
  color: var(--tertiary-color) !important;
  font-size: 0.95em !important;
  font-weight: 600 !important;
  /* text-transform: uppercase; */
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5em !important;
  padding: 1em 2em !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out !important;
  border-radius: 25px !important;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.class-card-btn-line:hover{
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
  color: var(--light-color)!important;
}

.class-card-btn-line:before,
.class-card-btn-line:after{
    content: '';
    background: var(--tertiary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: -16px;
    left: -16px;
    transition: 1s ease;
    z-index: -1;
}
.class-card-btn-line:after{
    left: calc(100% + 16px);
    top: calc(100% + 16px);
}
.class-card-btn-line:hover:before, 
.class-card-btn-line:hover:after {
    height: 500px;
    width: 500px;
}

/* Class Section style end */

/* Streamline Section style Start  */
.stream-line-wrapped {
  background: #1b1d1e;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 6em 0;
}
.stream-line-titles h2 {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--light-color);
  text-align: center;
}
.stream-line-titles h2 span {
  color: var(--secondary-color);
}
.stream-line-titles{
  margin-bottom: 3em;
}
/* Streamline Section style End */

/* Cta Section Setyle start  */
.cta-wrapped {
  background: #262829;
  padding: 4em 0;
}
.cta-frame h5 {
  font-size: 1.8em;
  margin-bottom: 0;
  background: -webkit-linear-gradient(#919191, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.cta-frame-action{
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-frame-action a {
  background-color: var(--secondary-color)!important;
  color: var(--tertiary-color);
  border-radius: 100px;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  display: inline-block!important;
  width: auto;
  padding: 0.7em 3em;
  position:relative;
  overflow:hidden;
  z-index:1;
  border:0!important;
}

.cta-frame-action a:hover{
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
  color: var(--light-color)!important;
}

.cta-frame-action a:before,
.cta-frame-action a:after{
    content: '';
    background-color: var(--tertiary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: -16px;
    left: -16px;
    transition: 1s ease;
    z-index: -1;
}
.cta-frame-action a:after{
    left: calc(100% + 16px);
    top: calc(100% + 16px);
}
.cta-frame-action a:hover:before, 
.cta-frame-action a:hover:after {
    height: 410px;
    width: 410px;
}

/* Cta Section Setyle End  */

/* What We Do Section CSS */

.what-we-do-sec {
  background-color: #e7eef5;
  padding: 6em 0;
}

.what-we-do-list-sec li {
  display: grid;
  grid-template-columns: 30px auto;
  align-items: center;
  color: #373e42;
}

.text-grey-color {
  color: var(--gray-color);
  background-color: transparent !important;
  padding: 0 !important;
  /* font-style: normal !important; */
}

/* Footer Section Style start  */
.footer {
  background: var(--tertiary-color);
  padding: 4em 0 1em 0;
}
.footer-logo .logo-footer {
  mix-blend-mode: luminosity;
  opacity: 0.2;
}
.footer-quick-link {
  padding: 1em;
}
.footer-quick-link .footer-quick-link-title h5 {
  color: #687379;
  font-size: 0.9em;
  font-weight: 500;
  margin-bottom: 0;
}
.footer-quick-link .footer-quick-link-title {
  margin-bottom: 1em;
}
.footer-quick-link ul {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  gap: 0.6em;
}
.footer-quick-link ul li a {
  color: #d4dde1;
  font-size: 0.85em;
  font-weight: 500;
  margin-bottom: 0;
}
.footer-copy-right p,
.footer-copy-right a,
.top-btn a {
  color: #687379;
  font-size: 0.9em;
  font-weight: 500;
  margin-bottom: 0;
}
.top-btn {
  text-align: right;
}
.pre-footer {
  padding-top: 2em;
}
/* Footer Section Style end  */

/* You can Section style start  */
.account-wrapped{
  /* padding: 11em 0;
  padding-bottom: 1em; */
  /* min-height: 999px; */
  min-height: 650px;

}
.account-frame-info-left,.account-frame-info-right{
  /* display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5em; */
  position: relative;
}
.account-frame-card h3{
  font-size: 0.9em;
  text-align: center;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
}
.account-frame-titles-info h2{
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--tertiary-color);
  text-align: center;
}
.account-frame-titles{
  position: relative;
  height: 100%;
  /* display: flex; */
  align-items: center;
  justify-content: center;
}
.account-frame-avater{
  /* position: absolute; */
  width: 100%;
  height: 100%;
  margin-top: 14rem;
  /* -webkit-animation: rotate-center 100s linear infinite both reverse;
  animation: rotate-center 100s linear infinite both reverse; */
}
.account-frame-titles-info{
  /* position: relative; */
  z-index: 999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.account-frame-card{
  position: absolute;
  width: 100%;
  background-color: var(--light-color);
  border-radius: 12px;
  padding: 1em;
  border: 1px solid #aac1d3;
  min-width: 200px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account-frame-info-left .account-frame-card:nth-child(1){
  top: -23rem;
  left: 24rem;
}
.account-frame-info-left .account-frame-card:nth-child(2){
  top: -13rem;
  left: 7rem;
}
.account-frame-info-left .account-frame-card:nth-child(3){
  top: -2rem;
  left: 2rem;
}
.account-frame-info-left .account-frame-card:nth-child(4){
  top: 9rem;
  left: 2rem;
}
.account-frame-info-left .account-frame-card:nth-child(5){
  top: 20rem;
  left: 10rem;
}
.account-frame-info-left .account-frame-card:nth-child(6){
  top: 28rem;
  left: 33.5rem;
}
.account-frame-info-right .account-frame-card:nth-child(1){
  top: -23rem;
  right: 24rem;
}
.account-frame-info-right .account-frame-card:nth-child(2){
  top: -13rem;
  right: 7rem;
}
.account-frame-info-right .account-frame-card:nth-child(3){
  top: -2rem;
  right: 2rem;
}
.account-frame-info-right .account-frame-card:nth-child(4){
  top: 9rem;
  right: 2rem;
}
.account-frame-info-right .account-frame-card:nth-child(5){
  top: 20rem;
  right: 10rem;
}
/* You can Section style end */

.cta-frame{
  margin-bottom:1em;
}

.account-wrapped{
  margin-top: 20em;
}


.account-frame-main {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-frame-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 12rem;
}

#ring {
  width: 40em;
  height: 40em;
  border: 1px solid transparent;
  border-radius: 50%;
  position: absolute;
}

#ring:nth-child(1) {
  border-bottom: 8px solid  var(--tertiary-color);
  animation: rotate1 3s linear infinite;
}

@keyframes rotate1 {
  from {
    transform: rotateX(50deg) rotateZ(110deg);
  }

  to {
    transform: rotateX(50deg) rotateZ(470deg);
  }
}

#ring:nth-child(2) {
  border-bottom: 8px solid  var(--tertiary-color);
  animation: rotate2 3s linear infinite;
}

@keyframes rotate2 {
  from {
    transform: rotateX(20deg) rotateY(50deg) rotateZ(20deg);
  }

  to {
    transform: rotateX(20deg) rotateY(50deg) rotateZ(380deg);
  }
}

#ring:nth-child(3) {
  border-bottom: 8px solid  var(--tertiary-color);
  animation: rotate3 3s linear infinite;
}

@keyframes rotate3 {
  from {
    transform: rotateX(40deg) rotateY(130deg) rotateZ(450deg);
  }

  to {
    transform: rotateX(40deg) rotateY(130deg) rotateZ(90deg);
  }
}

#ring:nth-child(4) {
  border-bottom: 8px solid  var(--tertiary-color);
  animation: rotate4 3s linear infinite;
}

@keyframes rotate4 {
  from {
    transform: rotateX(70deg) rotateZ(270deg);
  }

  to {
    transform: rotateX(70deg) rotateZ(630deg);
  }
}

.subscribe-email-modal .modal-content{
  background-color: #1b1d1e;
}

.subscribe-email-modal .modal-close{
  background-color: transparent!important;
  border: 0!important;
  padding: 0!important;
  margin-left: auto;
  display: flex;
}


.subscribe-form-img-sec img{
  max-width: 100%;
}

.subscribe-email-modal textarea.form-control{
  height: auto;
  min-height: auto;
}

.subscribe-email-modal .form-control:focus{
  box-shadow: none!important;
  border: 0!important;
}

.subscribe-email-modal .form-control:focus-visible{
  box-shadow: none!important;
  border: 0!important;
}

.react-tel-input .flag-dropdown{
  border: 0!important;
  background-color: transparent!important;
}

.subscribe-email-modal .form-control{
	color: var(--tertiary-color) !important;
	font-size: .9em;
	font-weight: 600;
	line-height: 1.8;
  padding: 1em 1em;
	margin-bottom: 0;
  border: 0!important;
	/* background: linear-gradient(287.42deg, hsla(0, 6%, 86%, .441) 4.56%, #cac6c659 95.51%)!important; */
	border: none!important;
	height: 50px;
	text-align: left;
	width: 100%;
  border-radius: 10px;

}

.subscribe-email-modal .form-control:focus{
	box-shadow: none;
}
.subscribe-email-modal .modal-body {
overflow: hidden;
}

.subscribe-email-modal .subcribe-form-frame .form-label{
	color: #fff;
	font-size: .85em;
	font-weight: 400;
	line-height: 1.8;
	margin-bottom: .5em;
	text-align: left;
	width: 100%;
}

.subscribe-img-sec{
	text-align: center;
	/* width: 100%;*/
	height: 100%; 
	display: flex;
	align-items: center;
	justify-content: center;
}
.subscribe-img{
	/* width: 100%;
	height: 100%; */
	max-width: 30em;
	object-fit: cover;
}
.subcribe-form-frame{
	padding: 2em;
  padding-top: 0;
}
.subcribe-form-frame .form-title h2{
	font-size: 2em;
	font-weight: 700;
	margin: 0em!important;
	margin-bottom: 0.5em!important;
	color: #fff;
	padding: 0;
	line-height: 1.4;
	text-align: center;
	max-width: unset!important;
}
.subcribe-form-frame{
	display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5em;
    /* height: 100%; */
}
.subcribe-form-frame .form-title p{
	font-size: 0.9em;
	font-weight: 400;
	margin: 0em!important;
	color: #fff;
	padding: 0;
	line-height: 1.8;
	text-align: center;
	letter-spacing: 2px;
}
.subcribe-form-frame .form-logo .modal-logo{
	width: 8em;
	height: auto;
	object-fit: contain;
	margin: 0 auto;
}
.form-btn{
	position: relative;
	background:#fff;
	color: #000;
	font-size: 0.9em;
	font-weight: 300;
	border: 0;
	outline: 0;
	height: auto;
	padding: 0.8em 3em;
	text-align: center;
	border-radius: 8px;
}

.subcribe-form-frame .form-btn{
	font-size: 0.9em;
    font-weight: 600;
}

.subscribe-modal  {
  background-color: #262c46 !important;
  overflow: hidden !important;
  border-radius: 20px;
}

.subscribe-form-btn-sec{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .subscribe-form-item{
  grid-template-columns: repeat(2, 1fr);
  display: grid;
} */

.submit-btn-sec{
  display: flex;
  align-items: center;
  justify-content: center;
}


@keyframes pop {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(0);
  }
}

.platform-wrapped{
  padding-bottom: 6em;
}

/* About Us CSS */

.about-us-card{
  box-shadow: 0px 1px 6px 0px #1A15071F;
  background-color: var(--light-color);
  padding: 2em;
  border-radius: 16px;
  height: 100%;
}

.about-us-header-sec {
  display: grid;
  grid-template-columns: 100px auto;
  align-items: center;
  margin-bottom: 1em;
}

.about-us-icon {
  width: 5em;
  height: 5em;
  object-fit: contain;
}

.about-us-header-sec span{
  font-size: 1.4em;
  font-weight: 600;
  color: #454e55;
}

.about-us-body-sec {
  font-size: 0.9em;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 0em;
}

.about-us-list-sec{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
  margin-top: 1.5em;
}

.about-us-list-sec li{
  background-color: #fff;
  padding: 1.5em;
  border-radius: 16px;
  border: 1px dashed #aac1d3;
}

.about-us-list-header-sec {
  font-size: 1em;
  font-weight: 600;
  color: #202020;
  margin-bottom: 1em;
}

.about-us-body-sec p{
  font-size: 1em;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom:0;
}

.about-us-list-body-sec p{
  font-size: 1em;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom:0;
}

/* Static page css */

.static-page-box {
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}

.static-page-item{
  border: 1px solid #aac1d3;
  border-radius: 12px;
  padding: 2em;
}

.static-page-box h4 {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--tertiary-color);
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.2em;
}

.static-page-box p {
  font-size: 1em;
  font-weight: 400;
  color: var(--quaternary-color);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 0;
}

.static-page-box  strong{
  font-weight: 600;
}

.static-page-box a {
  font-size: 1em;
  font-weight: 400;
  opacity: 0.8;
}

.static-page-box ol{
  margin-top: 1em;
}

.static-page-box ol li {
  color: var(--quaternary-color);
  font-size: 0.9em;
  opacity: 0.8;
  font-weight: 400 !important;
  line-height: 1.8;
  padding-bottom: 1em !important;
  background-color: transparent;
  border: 0;
  padding-top: 0;
}

.static-page-box ol li:last-child {
  padding-bottom: 0;
}

.static-page-box ul li {
  color: var(--quaternary-color);
  font-size: 0.9em;
  opacity: 0.8;
  font-weight: 400;
  line-height: 1.8;
  padding-bottom: 1em;
  background-color: transparent;
  border: 0;
  padding-top: 0;
}

.static-page-box ul li:last-child {
  padding-bottom: 0;
}

.static-page-sec{
  padding: 4em 0;
}

.both-plan-card{
  display: flex;
  align-items: center;
  justify-content: center;
  /* max-width: 800px; */
  margin: auto;
  background: #343a40;
  padding: 1em;
  border-radius: 25px;
  margin-top: 1.5em;
}

.home-banner-box{
  position: relative;
}

.react-tel-input{
  font-family: "Maison Neue" !important;
}

.react-tel-input .form-control{
  width: 100%!important;
  height: 50px!important;
  border-radius: 10px!important;
}

.react-tel-input .selected-flag:hover{
  border-radius: 10px 0 0 10px;
}

.react-tel-input .flag-dropdown.open .selected-flag{
  border-radius: 10px 0 0 10px!important;
}

/* Digital Paying Payout */

.static-page-sec{

}

.static-page-sec .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
	border-left: 2.5px solid var(--tertiary-color);
	color: var(--tertiary-color);
  background: none;
}

.static-page-sec .nav-pills {
	gap: 1em;
}

.static-page-sec .nav-pills .nav-link {
	background: none;
	padding: 0;
	padding-left: 1em;
	border-radius: inherit !important;
	text-align: left;
	color: 	var(--text-color);
  font-size: 1em;
  font-weight: 700;
	border-left: 2px solid transparent;
  display: flex;
  align-items: start;
  gap: .2em;
}

.static-page-heading{
  font-size: 1em;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: .5em;
}

.static-page-ml{
  margin-left: 1em;
}

.static-page-table td{
  border: 1px solid #000;
  padding: .8em;
  align-content: baseline;
  font-size: .9em;
  font-weight: 400;
  color: var(--tertiary-color);
}

  .static-page-table tr td:first-child{
    font-weight: 600;
    text-align: center;
  }
  .static-page-table.table>:not(caption)>*>* {
    background: none;
  }

  .static-page-sec .tab-pane li{
   font-size: .95em;
  }

/* Digital Paying end */

/* New Pricing Plan */

.pricing-plan{
  background: var(--light-color);
  padding-bottom: 6em;
}

.pricing-plan-card{
  padding: 1.5em;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  height: 100%;
  border: 2px solid #C0C0C0;
}

.pro-card{
  background: #000;
  border-color: #000;
  color: var(--light-color) !important;
}

.pricing-plan-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-plan-icon span{
  height:4em;
  width: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.pricing-plan-icon .pro-plan{
  background: var(--secondary-color);
}

.pricing-plan-icon .basic-plan{
  background: var(--primary-color);
}

.pricing-plan-info{
  display: flex;
  flex-direction: column;
  gap: .1em;
  text-align: center;
}

.pro-card h2{
  color: var(--light-color);
}
.pricing-plan-info h4{
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 0;
}

.pricing-plan-info h2{
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
  letter-spacing: 0.2px;
}

.pricing-plan-info p{
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
}


.pricing-plan-detail {
  display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 0;
}

.pricing-plan-detail span{
  display: grid;
  grid-template-columns: 20px auto;
  align-items: center;
}

.pricing-plan-detail h4{
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
}

.pricing-plan-detail p{
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}

.class-card-action .pricing-card-btn {
  border: 0 !important;
  background-color: var(--secondary-color) !important;
  color: var(--tertiary-color) !important;
  font-size: 0.95em !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5em !important;
  padding: 1em 2em !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out !important;
  border-radius: 25px !important;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.pricing-card-btn:hover{
  color: var(--tertiary-color)!important;
  background-color: var(--gray-color)!important;
}

.pricing-card-btn:before,
.pricing-card-btn:after{
    content: '';
    background: var(--light-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: -16px;
    left: -16px;
    transition: 1s ease;
    z-index: -1;
}
.pricing-card-btn:after{
    left: calc(100% + 16px);
    top: calc(100% + 16px);
}
.pricing-card-btn:hover:before, 
.pricing-card-btn:hover:after {
    height: 500px;
    width: 500px;
}

.plan-include{
  color: #87B02B;
}

.plan-not-include{
  color: #F31617;
}

/* Pricing plans*/

/* .sm-padding{
  padding: 6em 0;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 0 none;
}
.price-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.price-table tr td {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1em;
  vertical-align: middle;
  font-size: 1em;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 0;
  min-width: 16em;
}
.price-table tr td:first-child {
  border-left: 0 none;
}
.price-table tr td:not(:first-child) {
  text-align: center;
}
.price-table tr:nth-child(even) {
  background-color: #FFFFFF;
}
.price-table tr:hover {
  background-color: #EEEEEE;
}
.price-table .fa-check {
  color: #5336ca;
}
.price-table .fa-times {
  color: #D8D6E3;
}

.price-table tr:nth-child(2n) td:nth-child(3) {
  background-color: rgba(216, 214, 227, 0.25);
}
.price-table tr td:nth-child(3) {
  background-color: rgba(216, 214, 227, 0.15);
}


.price-table tr.price-table-head td {
  font-weight: 600;
}
.price-table tr.price-table-head {
  background-color: #1b1d1e;
  color: #FFFFFF;
}
.price-table td.price {
  color: #f43f54;
  font-weight: 600;
}

.price-table td.price-table-popular {
  border-top: 3px solid #1b1d1e;
  color: #1b1d1e;
  font-weight: 700;
}
.price-table .price-blank {
  background-color: #fafafa;
  border: 0 none;
}

.price-table svg {
  width: 90px;
  fill: #1b1d1e;
}

.text-color-white{
  color: var(--light-color)!important;
} */

/* Thankyou Sec */

.thankyou-sec{
  /* padding-bottom: 3em; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  flex-direction: column;
  min-height: 90vh;
}

.thankyou-img{
  height: 20em;
  width: auto;
  object-fit: contain;
}

.back-to-home-btn{
  background-color: var(--secondary-color) !important;
    color: var(--tertiary-color);
    border-radius: 100px;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    display: inline-block !important;
    width: auto;
    padding: 0.7em 3em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 0 !important;
}

.thankyou-info{
  text-align: center;
}

.thankyou-info p{
  font-size: 1em;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.5em;
  text-align: center;
}

.error-img{
  height: 25em;
  width: auto;
  object-fit: contain;
}

.stream-line-avater{
  text-align: center;
}

.streamline-img{
  max-width: 18em;
}

/* Contact Us Section CSS */

.contact-us-sec {
  background: #262829;
  padding: 4em 0;
}

.contact-us-sec .contact-us-box .form-label{
  color: var(--light-color);
  font-size: 0.9em;
}

.contact-us-sec .contact-us-box .form-control{
  width: 100% !important;
  height: 50px !important;
  border-radius: 10px !important;
}

.contact-us-sec .contact-us-box .form-control:focus{
  box-shadow: none!important;
}

.contact-us-sec .contact-us-box .form-control::placeholder{
  font-size: 0.9em;
}

.contact-us-sec .contact-us-box textarea.form-control{
  height: 100px!important;
}

.contact-us-sec .contact-us-box .submit-btn-sec{
  justify-content: flex-start;
}

.cta-candly-wrapped {
  border-radius: 24px;
  padding: 4em;
  /* background: linear-gradient(27deg, #3ca6f1, #54cae3, #5ed9de); */
  background: -webkit-linear-gradient(to right, #000000, #222); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #000000, #222);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-candly-content h3 {
  font-size: 2em;
  font-weight: 600;
  color: var(--light-color);
  margin-bottom: 1em;
  text-align: center;
}

.cta-candly-content p {
  font-size: 0.9em;
  font-weight: 400;
  color: var(--light-color);
  margin-bottom: 0;
  line-height: 1.8;
  text-align: center;
}

.contact-us-sec .contact-us-box{
  margin-top: 4em;
}

.contact-us-sec .contact-us-box .cta-candly-action.cta-frame-action{
  margin-top: 2em;
}