@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&amp;display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}


     body {
    position: absolute;
    background-size: 100%;
    background-image: url(../images/bg-img.webp);
    height: 100%;
    z-index: -5;
    width: 100%;
    -webkit-animation: mymove 20s linear infinite;
    animation: mymove 300s linear infinite;
    background-size: cover;
    background-position: center;
}
@keyframes mymove{
    0%{
        background-position: 0px -10000px;
    }
    100%{
        background-position: 0px 0px;
    }
  }
.chat{
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}
h2 { 
  box-sizing: border-box;
  color: #3a1078;
  font-size: calc(1.325rem + 0.9vw);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  margin-top: 0px;
}
.base-text{
  color: #3a1078 !important;
}
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

li {
  list-style-type: none;
}

/* html,body{
  overflow-x: hidden;
} */
html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

:root {
  --tpink: #5b43e3;
  --twhite: #FFFFFF;
  --tblu: #0b0b26;
  --tblck: #000000;
  --tlght: #F1F9FC;
  --tdrk: #0b0b26;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 100px;
  z-index: 996;
  background: var(--tpink);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  border: 2px solid var(--tpink);
  border-radius: 100px;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top i:hover {
  color: #fff;
}

.back-to-top:hover {
  background: var(--tdrk);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #000000;
  box-shadow: 0 3px 9px 0px #939393c4;
  /* margin-bottom:7px; */
}

.header.header-scrolled {
  background: var(--tpup);
  padding: 40px !important;
}

#header .logo img {
  padding: 0;
  margin: 0;
  width: 50%;
}

div#logo {
  width: 20%;
}

.scrolled-offset {
  margin-top: 70px;
}

body.modal-open {
  padding: 0 !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
  margin-right: auto;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 9px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #5B43E3;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #545454;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--t1);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width:1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--tpink);
  font-size: 28px;
  border: 1px solid var(--tpink);
  border-radius: 100px;
  padding: 5px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--tpink);
}

@media (max-width:991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(59, 59, 59, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #545454;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--twhite);
  background-color: var(--tpink);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #e96b56;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.haeder_btn {
  display: flex;
}

/* BUTTONS START */
.haeder_btn .btn_pink {
  margin-left: 30px;
}

.btn_trans {
  background: transparent;
  border-radius: 100px;
  padding: 10px 25px !important;
  color: #5B43E3 !important;
  transition: 0.5s ease-in-out;
  font-size: 15px !important;
  margin-left: 10px;
  font-weight: 600;
  border: 2px solid #5B43E3;
}

.btn_trans:hover {
  background: var(--tdrk) !important;
  color: var(--twhite) !important;
  transform: scale(1.1);
  border-color: var(--tdrk);
}

.btn_pink {
  width: 100%;
  background-color: #5B43E3;
  border: 2px solid #5B43E3;
  border-radius: 100px;
  padding: 5px 15px !important;
  color: var(--twhite) !important;
  transition: 0.5s ease-in-out;
  font-size: 15px !important;
  margin-left: 5px;
  font-weight: 600;
}

.footer_form_sec_form .btn_pink {
  margin-top: 20px;
  margin-left: 15px;
}

.btn_pink:hover {
  background-color: var(--tdrk) !important;
  color: var(--twhite) !important;
  border-color: var(--twhite);
  transform: scale(1.1);
}

.btn_drk {
  background-color: var(--tldrk);
  border: 2px solid var(--tldrk);
  border-radius: 100px;
  padding: 12px 25px !important;
  color: var(--twhite) !important;
  transition: 0.5s ease-in-out;
  font-size: 15px !important;
  margin-left: 5px;
  font-weight: 600;
}

.btn_drk:hover {
  background-color: var(--twhite);
  color: var(--tldrk) !important;
  border-color: var(--twhite);
  transform: scale(1.1);
}

.sah select#countrySelected {
  width: 100%;
  margin-top: 15px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  height: 48px;
  background-color: #ffffff;
  font-size: 15px;
  font-family: poppins;
  color: rgb(0, 0, 0);
  padding-left: 20px;
  box-shadow: 0px 5px 10px 0px #8d8b8b94;
}



.sai select#countrySelected {
  width: 100%;
  margin-top: 15px;
  border: 1px solid #fff;
  border-radius: 100px;
  height: 50px;
  font-size: 16px;
  font-family: poppins;
  color: var(--tblack);
  padding-left: 20px;
  background: #ffffff;
}

.cff select#countrySelected {
  width: 100%;
  margin-top: 15px;
  border: 1px solid #fff;
  border-radius: 5px;
  height: 45px;
  background-color: #fff;
  font-size: 15px;
  font-family: poppins;
  color: var(--tblack);
  padding-left: 20px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* BUTTONS END */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.sec_bac {
  background: #000000a3 url(../images/main_banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 20px;
  padding-bottom: 70px;
  background-blend-mode: soft-light;
  background-position: center;
}

.mhr {
  padding-top: 0px;
}

.home_hero h1 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 20px;
}

.home_hero p {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  line-height: 30px;
  font-family: poppins;
  margin-bottom: 10px;
  padding-right: 34px;
}

.hero_df_box {
  display: flex;
  align-items: center;
}

.h_df_bx {
  background-color: var(--twhite);
  padding: 17px 25px;
  border-radius: 10px;
  margin-right: 10px;
  width: 22%;
  height: 117px;
  box-shadow: 0 3px 9px 0px #939393c4;
}

.h_df_bx img {
  width: 60px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 10px;
}

.h_df_bx h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: rgb(168, 0, 0);
}

.hero_img img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
 
}

.gr img {
  width: 81px;
}

/* HEADER FORM START */
.header_form h3 {
  font-weight: 500;
  font-size: 27px;
  line-height: 40px;
}

.header_form h4 {
  margin-bottom: 0px;
  margin-top: 25px;
}

.header_form {
  padding-right: 70px;
  margin-top: 10px;
}

/* .head_form_col{
  padding: 30px 50px;
} */
.sah input {
  width: 100%;
  margin-top: 15px;
  border: 1px solid var(--tblu);
  border-radius: 5px;
  height: 48px;
  background-color: #ffffff;
  font-size: 15px;
  font-family: poppins;
  color: rgb(0, 0, 0);
  padding-left: 20px;
  box-shadow: 0px 5px 10px 0px #8d8b8b94;
}

.sah input::placeholder {
  color: rgb(99, 99, 99);
  font-weight: 500;
  font-size: 16px;
}

.sah input:focus {
  background-color: var(--twhite);
  color: var(--tblack);
  border-color: var(--tblack);
  box-shadow: none;
}

.sah {
  position: relative;
}

.sah button  {
  width: 30%;
  margin-top: 20px;
  background-color: #5B43E3;
  color: var(--twhite);
  border: 2px solid #5B43E3;
  border-radius: 100px;
  padding: 11px 30px;
  font-size: 16px;
  font-weight: 600;
  display: block;
}

.sah button:hover {
  background-color: var(--twhite);
  border-color: var(--tpink);
  color: var(--tpink);
}

/* HEADER FORM END */

/* LOGO BRANDS START */
.brand {
  background-color: #ffffff;
  padding: 15px 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.my_brands img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.brand .slick-slide {
  margin: 0 20px;
}

.brand .slick-slide img {
  width: 80%;
}

.brand .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.brand .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.brand .slick-list:focus {
  outline: 0;
}

.brand .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.brand.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.brand .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.brand .slick-track:after,
.slick-track:before {
  display: table;
  content: "";
}

.brand.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* LOGO BRANDS END */

/* SERVICES SECTION 4 START */
.main_servivces {
  padding-top: 30px;
  padding-bottom: 80px;
  text-align: center;
}

.ser_r1 {
  align-items: center;
}

.serr1c1 h2 {
  font-size: 38px;
  font-weight: 600;
  color: var(--tdrk);
}

.serr1c1 p {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  line-height: 30px;
  font-family: poppins;
  margin-top: 15px;
}

.sbox {
  text-align: center;
  margin-top: 20px;
  border-radius: 10px;
  color: var(--twhite);
  padding: 23px 10px;
  height: 237px;
  transition: 0.5s ease-in-out;
  background-color: var(--tblu);
  border: 1px solid var(--tblu);
}

.sbox:hover {
  background-color: #5B43E3;
  box-shadow: 0px 1px 9px 0px #5B43E3;
  transform: scale(1.1);
}

.sbox:hover.sbox img {
  filter: brightness(0) invert(1);
}

.sbox:hover.sbox h3 {
  color: var(--twhite);
}

.sbox:hover.sbox p {
  color: var(--twhite);
}

.sbox img {
  width: 55px;
  height: 55px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.sbox h3 {
  color: var(--twhite);
  font-size: 20px;
  margin-top: 10px;
}

.sbox p {
  color: var(--twhite);
  font-size: 15px;
  margin-top: 5px;
  line-height: 25px;
}

/* SERVICES SECTION 4 END */

/* PADDING  START */
.cl_pr {
  padding-right: 50px;
}

.cl_pl {
  padding-left: 50px;
}

/* PADDING  END */

/*  SECTION 5 START */
.hs5 {
  padding-top: 30px;
  padding-bottom: 50px;
}



.hs5c1 p {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  line-height: 30px;
  font-family: poppins;
  margin-top: 15px;
}

.hs5c1 .btns {
  margin-top: 30px;
}

.hs5c1 .btns .btn_pink {
  margin-left: 0px;
}

.hs5c1 .btns .btn_white {
  border: 2px solid var(--tpink);
}

.trsn1 img {
  width: 100%;
  margin-left: -44px;
  margin-right: auto;
  display: block;
  margin-top: 65px;
  transform: scale(1.3);
}

.trsn2 img {
  width: 100%;
  margin-left: 64px;
  margin-right: auto;
  display: block;
  transform: scale(1.2);
}

.hs5rw {
  align-items: center;
}

/*  SECTION 5 END */

/*  SECTION 6 START */
.hs6 {
  padding-top: 20px;
  padding-bottom: 80px;
}

.hs6 .hs5c2 img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  /* transform: scale(1.3); */
  margin-left: -75px;
}



/*  SECTION 6 END */

/* TEAM EXPERTS SECTION START */
.team_experts {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--tdrk);
}

.team_rw h2 {
  font-size: 35px;
  font-weight: 600;
  /* color: var(--tblu); */
  color: white;
  text-align: center;
}

.team_rw p {
  font-size: 15px;
  font-weight: 400;
  color: var(--twhite);
  line-height: 30px;
  padding-right: 50px;
  text-align: center;
}

.main_expert_items {
  text-align: center;
  align-items: center;
  margin-top: 40px;
}

.expert_item {
  margin-left: 10px;
  margin-right: 10px;
  background-color: var(--twhite);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 10px;
  border: 1px solid var(--tblu);
}

.expert_item:hover {
  box-shadow: 0px 1px 16px 0px var(--tyello);
}

.df_in12 img {
  width: 100px;
  margin-left: auto;
  margin-right: 15px;
  display: block;
  border: 7px solid #5B43E3;
  border-radius: 100px;
  padding: 0px;
}

.df_in13 h3 {
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
  color: var(--tdrk);
  text-align: left;
}

.df_in13 h4 {
  font-size: 15px;
  color: #5B43E3;
  text-align: left;
}

.in_dfg h5 {
  font-size: 14px;
  color: #686868;
  padding-top: 3px;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.df_exp_1b .ratings i {
  padding-top: 10px;
  font-size: 17px;
  color: #FF704D;
}

.team_df {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.tmdf1 h3 {
  font-size: 30px;
  padding-top: 0px;
  color: var(--tdrk);
}

.tmdf1 h4 {
  font-size: 14px;
  padding-top: 0px;
  color: #5B43E3;
}

.btn_experts {
  padding-top: 30px;
  padding-bottom: 10px;
}

.btn_experts .btn_blu {
  background-color: var(--tblu);
  color: var(--twhite) !important;
  padding: 13px 45px !important;
  font-size: 17px;
}

.team_experts .slick-dots li.slick-active button:before {
  color: var(--tpink);
}

.team_experts .slick-dots li button:before {
  color: rgb(255, 255, 255);
  font-size: 12px;
  margin-top: 30px;
  opacity: 1;
}

.team_experts ul.slick-dots {
  position: absolute;
  right: 0;
}

.team_experts .slick-dots li {
  margin: 7px 5px;
  width: 15px;
}

.main_df_exp_1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.df_exp_1a {
  display: flex;
  align-items: center;
}

/* TEAM EXPERTS SECTION END */

/* STEPS SECTION START */
.step_sec {
  padding-top: 30px;
  padding-bottom: 20px;
}



.step_sec img {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}



.h6main_df {
  display: flex;
  margin-top: 30px;
}

.rw2_step {
  margin-top: 30px;
}

.h6df1 h3 {
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 40px;
  color: var(--twhite);
}

.h6df2 {
  background-color: var(--tblu);
  border-radius: 10px;
  padding: 10px;
  margin-left: -20px;
  padding-left: 20px;
}

.h6df2 h4 {
  font-weight: 600;
  font-size: 22px;
  color: var(--twhite);

}

.h6df2 p {
  font-size: 16px;
  color: var(--twhite);
}

.h6df1 {
  margin-right: 60px;
}

.abdf1::before {
  content: "";
  position: absolute;
  top: 11px;
  left: -18px;
  z-index: 0;
  background: var(--tdrk);
  width: 89px;
  height: 89px;
  border-radius: 10px 10px 0px 10px;
}

.abdf2::before {
  content: "";
  position: absolute;
  top: 180px;
  left: -15px;
  z-index: 0;
  background: var(--tdrk);
  width: 89px;
  height: 89px;
  border-radius: 10px 10px 0px 10px;
}

.abdf3::before {
  content: "";
  position: absolute;
  top: 350px;
  left: -15px;
  z-index: 0;
  background: var(--tdrk);
  width: 89px;
  height: 89px;
  border-radius: 10px 10px 0px 10px;
}

/* STEPS SECTION END */

/* HOME SECTION 8 START */
.hs8 {
  padding-top: 50px;
  padding-bottom: 30px;
}

.hs8_feat {
  background-color: #ffffff;
  border-radius: 10px;
  margin-top: 20px;

}

.h8_feat_contnt {
  background-color: #fff;
  box-shadow: 0 3px 9px 0px #939393c4;
  border-radius: 15px;
  margin-top: -50px;
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
  height: 225px;
}

.h8_feat_contnt h3 {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  padding-top: 15px;
  color: #5B43E3;
}

.h8_feat_contnt p {
  font-size: 14px;
  line-height: 25px;
}

.h8_feat_contnt {
  padding: 10px 12px;
  text-align: center;
}




.hs8_cnt p {
  font-size: 16px;
  font-weight: 400;
  color: var(--tblck);
  line-height: 30px;
  padding-right: 50px;
  text-align: center;
}

/* HOME SECTION 8 END */

/* HOME SECTION 9 START */
.hs9 {
  padding-top: 0px;
  padding-bottom: 30px;
}

/* HOME SECTION 9 END */

/*  FOOTER FORM SEC START */
.footer_sec {
  padding-top: 50px;
  padding-bottom: 30px;
}

.footer_sec img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.footer_sec h2 {
  color: var(--tdrk);
  font-size: 33px;
  font-weight: 600;
}

.footer_sec h3 {
  color: var(--tdrk);
  font-size: 28px;
  font-weight: 600;
}

.footer_sec p {
  color: var(--tblck);
  font-size: 16px;
  line-height: 28px;
}

.ft_sec p {
  font-size: 15px;
}

.ff_df {
  display: flex;
  align-items: center;
}

.footer_sec input {
  background-color: #E9E9E9;
  border: 2px solid #E9E9E9;
  margin-top: 20px;
  color: var(--tblck);
  font-size: 15px;
  height: 55px;
  width: 97%;
  margin-left: 10px;
  margin-right: 10px;
}

.footer_sec textarea {
  background-color: #E9E9E9;
  border: 2px solid #E9E9E9;
  margin-top: 20px;
  color: var(--tblck);
  font-size: 15px;
  height: 130px;
  width: 97%;
  margin-left: 10px;
  margin-right: 10px;
  resize: none;
}

.ff_df input {
  width: 100%;
}

.footer_sec .sai {
  margin-left: 10px;
  margin-right: 10px;
}

.footer_sec input::placeholder {
  color: #000;
}

.footer_sec textarea::placeholder {
  color: #000;
}

.footer_sec input:focus {
  border: 1px solid var(--tpink);
  box-shadow: none;
}

.footer_sec textarea:focus {
  border: 1px solid var(--tpink);
  box-shadow: none;
}

.ft_sec {
  align-items: center;
}

.btn_blu {
  background-color: var(--tblu);
  border: 2px solid var(--tblu);
  color: var(--twhite);
  font-size: 17px;
  margin-top: 20px;
}

/*  FOOTER FORM SEC END */

/* INNER PAGE FORM START */
.inner_page_form {
  padding: 30px 40px;
  border-radius: 30px;
}

.popcol .inner_page_form {
  background-color: var(--tblu);
}

.popcol .inner_page_form h3 {
  text-align: center;
  color: var(--tpink);
}

.popcol .inner_page_form input {
  border-color: var(--tpink);
}

.popcol .inner_page_form button:hover {
  border-color: var(--tdrk);
}

.inner_page_form h3 {
  color: var(--twhite);
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  margin-left: 10px;
}

.inner_page_form input {
  width: 100%;
  margin-top: 15px;
  border: 1px solid #fff;
  border-radius: 100px;
  height: 50px;
  font-size: 16px;
  font-family: poppins;
  color: var(--tblack);
  padding-left: 20px;
  background: #ffffff;
}

.inner_page_form input::placeholder {
  color: var(--tblack);
}

.inner_page_form input:focus {
  background-color: var(--twhite);
  border-color: var(--tblu);
  box-shadow: none;
  color: var(--tblack);
}

.sai {
  position: relative;
}

.sai button {
  margin-top: 20px;
}

.sai button:hover {
  background: var(--twhite);
  color: var(--tpink);
  border-color: var(--tblu);
}

/* INNER PAGE FORM END */

/* TESTIMONIALS START */
.testimonials {
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url(../images/j11.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}

.test_row {
  align-items: center;
}

.test_col1 h2 {
  font-size: 45px;
  font-weight: 600;
  color: #5B43E3;
  text-align: center;
}

.test_col1 p {
  font-size: 15px;
  font-weight: 400;
  color: var(--twhite);
  line-height: 30px;
  padding-right: 50px;
  text-align: center;
}

.item {
  align-items: center;
  text-align: center;
  margin-top: 30px;
}

.item:hover {
  box-shadow: 0px 1px 16px 0px var(--tyello);
}

.item img {
  width: 85px;
  height: 85px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border: 7px solid #5B43E3;
  border-radius: 100px;
}

.item p {
  font-size: 15px;
  line-height: 26px;
  padding-top: 13px;
  color: var(--twhite);
}

.item h3 {
  font-size: 20px;
  font-family: poppins;
  font-weight: 600;
  margin-top: 10px;
  color: var(--twhite);
}

.item h4 {
  font-size: 16px;
  font-family: poppins;
  font-weight: 600;
  margin-top: 10px;
  color: var(--twhite);
}

.ratings {
  margin-top: -7px;
}

.ratings i {
  font-size: 15px;
  font-weight: 700;
  color: #FDB107;
}

.main_items .slick-dots li.slick-active button:before {
  color: var(--tpink);
}

.main_items .slick-dots li button:before {
  color: rgb(255, 255, 255);
  font-size: 12px;
  margin-top: 30px;
  opacity: 1;
}

.main_items ul.slick-dots {
  position: absolute;
  right: 0;
}

.main_items .slick-dots li {
  margin: 7px 5px;
  width: 15px;
}

/* TESTIMONIALS END */

/* FOOTER START */
.my_footer {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}

.frow1 {
  align-items: center;
}

.fcol1 a {
  color: #000;
}

.fcol1 img {
  width: 50%;
}

.fcol1 p {
  font-size: 15px;
  color: rgb(255 255 255);
  font-weight: 400;
  line-height: 30px;
  margin-top: 20px;
}

.cff input {
  width: 100%;
  margin-top: 15px;
  border: 1px solid #fff;
  border-radius: 5px;
  height: 45px;
  background-color: #fff;
  font-size: 15px;
  font-family: poppins;
  color: var(--tblack);
  padding-left: 20px;
}

.cff input:focus {
  background-color: #fff;
  color: var(--tblack);
}

.cff {
  position: relative;
}

.cff button {
  width: 100%;
  margin-top: 20px;
  background-color: #5B43E3;
  color: #fff;
  border: 2px solid #5B43E3;
  border-radius: 5px;
  padding: 11px 30px;
  font-size: 15px;
}

.cff button:hover {
  background-color: transparent;
  color: var(--tpink);
  border-color: var(--tpink);
}

.frow3 {
  align-items: center;
  padding-top: 15px;
}

.footer_form {
  padding: 10px;
  border-radius: 5px;
}

.fr3c1 p {
  font-size: 15px;
  color: #fff;
}

.footer_copyright {
  background: #5b43e3;
  border-top: 1px solid rgb(100, 100, 100);
}

.fr2c2 h3 {
  font-size: 22px;
  color: #ffffff;
  font-weight: 600;
}

.fr2c2 ul {
  padding-left: 0px;
}

.fr2c2 ul li a {
  color: rgb(255 255 255);
  font-size: 16px;
  line-height: 33px;
}

.fr2c2 ul li a:hover {
  color: var(--tpink);
}

/* FOOTER END */

/* Disclaimer */
.discla h3 {
  font-size: 27px;
  color: #000;
  font-weight: 600;
}

.discla p {
  font-size: 15px;
  color: #000;
  line-height: 33px;
}

.dis {
  box-shadow: 3px 4px 10px rgb(255 65 77);
  background-color: var(--twhite);
}

/* Disclaimer */

/* WHATSAPP CHAT SCRIPT */
.navbar-fixed-bottom {
  position: fixed;
  bottom: 0;
  z-index: 999999;
}

.whappfooter i {
  font-size: 50px;
  background-color: #11bb19;
  border-radius: 100px;
  padding: 10px 15px;
  color: #fff;
  margin-bottom: 20px;
  transition: 0.5s ease-in-out;
}

.whappfooter i:hover {
  transform: scale(1.1);
  background-color: #0fe419;
}

/* WHATSAPP CHAT SCRIPT  END*/

/* POPUP FORM START */
.popcol .sai button {
  width: 100%;
}

.my_popup h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding-left: 30px;
  color: rgba(81, 35, 174, 1);
}

.modal-header {
  padding: 0;
  padding-top: 20px;
}

.modal-header .close {
  margin: 0;
}

.sap button {
  background: linear-gradient(180deg, rgba(81, 35, 174, 1) 0%, rgba(108, 31, 163, 1) 100%);
  width: 100%;
  margin-top: 20px;
  color: var(--t3);
  border: 2px solid var(--t5);
  border-radius: 100px;
  padding: 11px 30px;
}

.sap button:hover {
  background: var(--t1);
  border-color: var(--t2);
}

.modal-header .close {
  margin: 0;
  margin-top: -20px;
  color: var(--tpurple) !important;
  background-color: #fff;
  opacity: 1;
  border-radius: 100%;
  width: 8%;
  height: 39px;
}

.modal-content {
  background-color: transparent;
  border: none;
}

.modal-header {
  border: none;
}

/* POPUP FORM END */

/* THANKYOU */
.ex_page header {
  background-color: #ffffff;
  padding-bottom: 40px;
  padding-top: 50px !important;
}

.thanks {
  padding-top: 70px;
  padding-bottom: 50px;
}

.thanks h1 {
  font-size: 45px;
  text-align: center;
  color: var(--tdrk);
  font-weight: 600;
  font-family: poppins;
}

.thanks h1 span {
  color: var(--tpink);
}

.thanks p {
  font-size: 22px;
  text-align: center;
  color: rgb(90, 90, 90);
  font-weight: 500;
  margin-top: 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.thanks i {
  font-size: 110px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  color: var(--tdrk);
  margin-top: 20px;
}

.termsc h2 {
  font-size: 35px;
  font-weight: 600;
  padding-top: 50px;
}

.termsc h4 {
  font-size: 28px;
  font-weight: 600;
}

.termsc p {
  font-size: 16px;
  font-weight: 400;
  color: var(--t4);
  line-height: 33px;
  font-family: poppins;
  margin-bottom: 40px;
  padding-top: 15px;
  text-align: justify;
  padding-right: 40px;
}

.termsc ul li {
  margin-top: 15px;
  list-style-type: circle;
}

.fr3c2 ul li {
  display: inline-flex;
  margin-left: 10px;
}

.fr3c2 ul li a {
  color: #fff;
  font-size: 16px;
}

.fr3c2 ul li a:hover {
  color: var(--tblu);
}

/* Animation */
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px #5BC100;
  }

  100% {
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.8);
    transition: all 0.5s ease-in-out;
  }

  30% {
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1.1);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
  }

  100% {
    transform: scale(0.8);
    transition: all 0.7s ease-in-out;
  }
}

/* Animation End */

/* SECTION 4 START */
.hs4 {
  /* background-image: url(../images/j7.webp); */
  background: #0b0b26;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 10px;
}

.hs4ch {
  background-color: #fff;
  padding-top: 70px;
  padding-bottom: 50px;
}

.hs4c2 h2 {
  font-weight: 700;
  font-size: 35px;
  color: var(--twhite);
  line-height: 45px;
}

.hs4c2 p {
  font-size: 15px;
  line-height: 35px;
  padding-top: 10px;
  color: var(--twhite);
}

.mb-image {
  display: none !important;
}

/* SECTION 4 END */


/*inner section*/
.inner_page_banner {
  width: 100%;
  padding: 40px 0 30px;
  text-align: center;
  background: #000000;
  color: #fff;
}

.inner_page_banner h3 {
  font-size: 24px;
  color: #b11b0e;
  text-transform: capitalize;
}

.terms_section {
  width: 100%;
  padding: 40px 0;
}

.terms_section h5 {
  margin: 20px 0;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
}

.terms_section p {
  margin: 10px 0;
  color: #666;
  font-size: 16px;
}

.terms_section ul li:before {
  content: "";
  position: absolute;
  left: -23px;
  background: #b11b0e;
  width: 1%;
  height: 4px;
  border-radius: 50px;
  top: 10px;
}

.terms_section ul li {
  list-style: none;
  font-size: 16px;
  margin: 0 0 20px;
  position: relative;
  color: #000;
}

.terms_section ul li a {
  color: #102a45;
  text-transform: capitalize;
}

.terms_section .form-control {
  resize: none;
  border-radius: 0;
  height: auto;
  padding: 13px;
  border-color: #ccc;
}

.terms_section_form {
  width: 100%;
}

.terms_section_form h5 {
  font-size: 22px;
  margin: 0 0 30px;
}

.terms_s_left {
  width: 100%;
  padding: 90px 0;
}

.terms_s_left h3 {
  font-size: 24px;
  margin: 0 0 10px;
}

.terms_s_left p {
  color: #666;
}

.capbox0 {
  width: 100%;
  margin: 10px 0;
  overflow: hidden;
}

#CaptchaDiv0 {
  width: 20%;
  background: var(--white);
  padding: 9px 12px;
  margin: 0 0 15px;
  border-radius: 0;
  float: left;
  border: 2px solid #555;
}

.capbox-inner0 {
  padding: 3px 13px;
  width: 76%;
  float: left;
  border-radius: 0;
  margin: 0 0 0 20px;
  border: 2px solid #555;
}

#CaptchaInput0 {
  margin: 1px 0px 1px 30px;
  width: 130px;
  border-radius: 0;
  padding: 4px;
  border: 2px solid #555;
}

button.cont_but {
  font-size: 18px;
  background: #3640e4;
  color: #fff;
  border-radius: 50px;
  padding: 12px 0;
  box-shadow: 0px 5px 15px #00000087;
  transition: 0.3s ease-in;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
  border: none;
}
.btnBlue{
  width: 30%;
  margin-top: 20px;
  background-color: #5B43E3;
  color: var(--twhite);
  border: 2px solid #5B43E3;
  border-radius: 100px;
  padding: 11px 30px;
  font-size: 16px;
  font-weight: 600;
  display: block;
}
.btnWhite{
  width: 30%;
  margin-top: 20px;
  background-color: #ffffff;
  color: #5B43E3;
  border: 2px solid #5B43E3;
  border-radius: 100px;
  padding: 7px 11px;
  font-size: 14px;
    font-weight: 600;
    display: block;
}
.ml-3{
  margin-left: 1rem;
}
.call-to-action-two {
  position: relative;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  background: url(../images/s7bg.webp) no-repeat center/cover;
  background-color: #5B43E3;
  padding: 50px 0;
}

.call-to-action-two .content-box h2 {
  display: block;
  font-size: 36px;
  line-height: 1.3em;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}

.call-to-action-two .content-box p {
  font-size: 20px;
  color: #fff;
}
.call-to-action-two .content-box {
  position: relative;
  padding-left: 50px;
  text-align: center;
}
.call-to-action-two .content-box .theme-btn {
  position: relative;
  font-size: 16px;
  background: #EEA000;
}
.mainButton{
  border-radius: 50px;
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  background: #f7c722;
  overflow: hidden;
  min-width: 160px;
}
.col-md-6card{

}

@media only screen and (max-width: 1398) {
  .col-md-6card{
width: 50%;
  }
}
.error{
  color: red;
  font-size: 12px;
}
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: 10px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.my-float {
  font-size: 40px !important;
  margin-top: 10px;
}