
:root {
  --mainColor: #4b0277;
  --darkblue: #1a202c;
  --lightpink: #e5d7ee;
  --lightblue: #724e9b;
  --lightBackground: #f2e7ff;
  --hovercolor: #c6972e;
  --headingLight: #858585;
  --mainFont : "Plus Jakarta Sans", sans-serif;
}



/*--------------------------------------------------------------
>>> Custom Css
----------------------------------------------------------------*/
body {
  font-size: 15px;
  color: #686868;
  background-color: #ffffff;
  font-family: var(--mainFont);
  font-weight: normal;
  font-style: normal;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
}
@media screen and (max-width: 575px) {
  body {
    font-size: 13px;
  }
}

p {
  line-height: 1.6;
  margin: 0 0 15px;
  word-wrap: break-word;
}

dfn, cite, em, i {
  font-style: italic;
}

blockquote, pre {
  background-color: #fafafa;
  border-width: 0 0 0 3px;
  border-color: #d9d9d9;
  border-style: solid;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  color: #1a1a1a;
  font-family: var(--mainFont);
  font-style: italic;
  margin: 0 0 15px 0;
  padding: 25px 22px;
  font-size: 18px;
}
blockquote p, pre p {
  margin-bottom: 0;
}

blockquote {
  background-color: transparent;
  border-left: none;
  color: #111111;
  margin: 40px 0;
  text-align: center;
  position: relative;
  padding: 30px;
}
blockquote:before {
  background-color: #fff;
  color: #333333;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  float: left;
  margin-right: 20px;
  line-height: 1;
  font-style: normal;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: -10px;
  padding: 0 10px;
  z-index: 9;
}
blockquote:after {
  border-bottom: 2px solid #ddd;
  border-top: 2px solid #ddd;
  content: "";
  bottom: 0;
  content: "";
  display: block;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  position: absolute;
  top: 0;
  width: 200px;
}
blockquote p {
  font-size: 28px;
  line-height: 1.4;
}
blockquote cite {
  color: #8d8d8d;
  display: block;
  font-style: normal;
  font-size: 13px;
}

abbr, acronym {
  border-bottom: 1px dotted #4d4d4d;
  cursor: help;
}

mark, ins {
  text-decoration: none;
  padding-left: 5px;
  padding-right: 5px;
}

big {
  font-size: 125%;
}

b, strong {
  font-weight: 700;
}

iframe {
  display: block;
  width: 100%;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

/*--------------------------------------------------------------
# Heading
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  color: #111111;
  font-family: var(--mainFont);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 15px;
  line-height: 1.2;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
}

h1 {
  font-size: 60px;
  font-weight: 700;
}

h2 {
  font-size: 42px;
  font-weight: 700;
}

h3 {
  font-size: 30px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 14px;
  }

  h6 {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
  color: #0085BA;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
a:hover, a:focus, a:active {
  color: #E98015;
  text-decoration: none;
  outline: 0;
}
a:visited {
  text-decoration: none;
  outline: 0;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #e6e6e6;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #1a1a1a;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Others
--------------------------------------------------------------*/

.section-heading {
  margin-bottom: 50px;
}

.sub-title {
  color: #FF9222;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .sub-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.section-title {
  margin-bottom: 20px;
}

.list-more-btn {
  padding-top: 20px;
}

@media screen and (max-width: 575px) {
  .section-heading {
    margin-bottom: 30px;
  }
}
/*--------------------------------------------------------------
>>> table
----------------------------------------------------------------*/
table {
  color: #737373;
  margin: 0 0 1.5em;
  border-collapse: separate;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
  width: 100%;
  font-size: 15px;
}
table thead tr {
  background-color: #262626;
}
table thead tr th {
  color: #383838;
}
table.table {
  color: #737373;
}

th {
  border-width: 0 1px 1px 0;
  font-weight: 700;
}

td {
  border-width: 0 1px 1px 0;
  border-bottom: 1px solid #e6e6e6;
}

th, td {
  padding: 8px;
}



/*--------------------------------------------------------------
>>> Default 
----------------------------------------------------------------*/
.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.white-bg {
  background-color: #ffffff;
}

.bg-light-grey {
  background-color: #FAFAFA;
}

.primary-bg {
  background-color: #FF9222;
}

.primary-color {
  color: #FF9222;
}

.bg-transparent-img {
  background-color: rgba(21, 21, 21, 0.75);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.bg-transparent-img:before {
  background-color: rgba(21, 21, 21, 0.75);
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.site-loader {
  background-color: #ffffff;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  text-align: center;
}
.site-loader .preloader-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50px;
}

.social-links ul {
  margin: 0;
  padding: 0;
  font-size: 0;
}
.social-links li {
  display: inline-block;
  list-style: none;
  margin: 0 10px;
}
.social-links a {
  font-size: 16px;
  color: #404040;
  -webkit-transition: color 0.4s;
  -moz-transition: color 0.4s;
  -ms-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
}
.social-links a:hover, .social-links a:focus, .social-links a:active {
  color: #E98015;
}

.social-icon-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}
.social-icon-wrap .social-icon {
  padding: 5px;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
}
.social-icon-wrap .social-icon a {
  background-color: #FF9222;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  color: #ffffff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.social-icon-wrap .social-icon [class*=fa-] {
  width: 40px;
  text-align: center;
}
.social-icon-wrap .social-icon span {
  background-color: #FF9222;
  padding: 10px 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.social-icon-wrap .social-icon a:hover {
  background-color: #E98015;
}
.social-icon-wrap .social-icon a:hover span {
  background-color: #E98015;
}

.to-top-icon {
  background-color: rgba(255, 146, 34, 0.7);
  color: #ffffff;
  font-size: 12px;
  display: none;
  line-height: 35px;
  text-align: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 99;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -moz-transition: background-color 0.3s, color 0.3s;
  -ms-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.to-top-icon:hover {
  background-color: #E98015;
  color: #ffffff;
}
@media screen and (max-width: 575px) {
  .to-top-icon {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 13px;
    right: 10px;
    bottom: 10px;
  }
}

.language select {
    border: 0;
    color: #fff;
    height: auto;
    padding: 0 0px 0 0px;
    background: transparent;
    font-weight: bold;
}
.language svg{color: #fff;}
.login_lang a {
    background: transparent;
    color: #fff;
    padding: 7px 18px;
    border-radius: 8px;
    border: solid 1px #d3d9e5;
    transition: 0.5s all;
    font-weight: bold;
}
.login_lang a:hover {
  background: #fff;
  color: var(--mainColor);
  transition: 0.5s all;
}
.css-768dc {
    width: 1.5rem;
    height: 1.5rem;
}



/*--------------------------------------------------------------
>>> Main Header 
----------------------------------------------------------------*/
.site-header .black-logo {
  display: none;
}

.site-header-transparent {
  left: 0;
  right: 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 99;
}


/*--- header Logo css start ---*/


.logo_menu {
    padding: 10px 0;
}
.site-identity img {
  max-width: 180px;
}

@media screen and (min-width: 768px) {
  .site-identity {
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .site-identity img {
    max-width: 110px;
  }
  .logo_menu {padding: 0px 0;}
}

/*--------------------------------------------------------------
>>> Main Header Menu
----------------------------------------------------------------*/
@media screen and (max-width: 991px) {
  .bottom-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 0;
  }
}

.navigation-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .navigation-container {
    padding-right: 35px;
  }
}

.main-navigation {
    padding-left: 30px;
}

.main-navigation .navigation > ul > li {
  display: inline-block;
  padding: 0 16px;
}
.main-navigation ul {
  font-size: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation ul > li.menu-item-has-children > a:after {
  content: "\f078";
}
.main-navigation ul > li:last-child {
  border-bottom: none;
}
.main-navigation ul > li:last-child:before {
  display: none;
}
.main-navigation ul > li > a {
  font-family: var(--mainFont);
  color: #fff;
  display: inline-block;
  font-size: 17px;
  padding: 30px 0;
  font-weight: 500;
  line-height: 1;
  position: relative;
  text-transform: capitalize;
}
.main-navigation ul > li:hover > ul, .main-navigation ul > li:focus > ul, .main-navigation ul > li:active > ul {
  display: block;
}
.main-navigation ul > li:hover > a, .main-navigation ul > li:focus > a, .main-navigation ul > li:active > a {
  color: var(--hovercolor);
}
.main-navigation ul > li:hover > a:after, .main-navigation ul > li:focus > a:after, .main-navigation ul > li:active > a:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.main-navigation ul ul {
  background: #ffffff;
  border-top: 4px solid var(--hovercolor);
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  width: 250px;
  z-index: 99;
  display: none;
  text-align: left;
  -webkit-animation: slide-up 0.3s ease-out;
  -moz-animation: slide-up 0.3s ease-out;
  -ms-animation: slide-up 0.3s ease-out;
  -o-animation: slide-up 0.3s ease-out;
  animation: slide-up 0.3s ease-out;
}
.main-navigation ul ul li {
  border-bottom: 1px solid #DDD;
  position: relative;
  display: block;
}
.main-navigation ul ul li a {
  color: #424242;
  display: block;
  padding: 13px 20px;
  text-transform: capitalize;
  font-weight: 400;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.main-navigation ul ul li a:hover, .main-navigation ul ul li a:focus, .main-navigation ul ul li a:active {
  padding-left: 30px;
  color: #FF9222;
}
.main-navigation ul ul li > ul {
  left: 100%;
  top: 0;
}
.main-navigation ul ul li.menu-item-has-children > a:after {
  content: "\f0da";
}
.main-navigation ul ul li:hover > ul, .main-navigation ul ul li:focus > ul, .main-navigation ul ul li:active > ul {
  display: block;
  top: -3px;
}
.main-navigation ul ul li:hover a:after, .main-navigation ul ul li:focus a:after, .main-navigation ul ul li:active a:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.main-navigation ul li {
  position: relative;
}
.main-navigation ul li:last-child ul, .main-navigation ul li:nth-last-child(2) ul {
  left: auto;
  right: 0;
}
.main-navigation ul li:last-child ul ul, .main-navigation ul li:nth-last-child(2) ul ul {
  right: 100%;
}
.main-navigation ul li.menu-item-has-children > a {
  position: relative;
}
.main-navigation ul li.menu-item-has-children > a:after {
  display: inline-block;
  float: right;
  font-size: 14px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-weight: 900;
  margin-left: 8PX;
  -webkit-transition: transform 0.4s;
  -moz-transition: transform 0.4s;
  -ms-transition: transform 0.4s;
  -o-transition: transform 0.4s;
  transition: transform 0.4s;
}
.main-navigation ul li.menu-item-has-children li:hover > a, .main-navigation ul li.menu-item-has-children li:focus > a {
  background-color: var(--hovercolor);
  color: #ffffff;
}
.main-navigation ul li.current-menu-item > a, .main-navigation ul li.current-menu-parent > a {
  color: var(--mainColor);
}

@-webkit-keyframes slide-up {
  from {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes slide-up {
  from {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes slide-up {
  from {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slide-up {
  from {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.header-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  white-space: nowrap;
}
.header-btn a {
  padding: 10px 24px;
}
@media screen and (max-width: 575px) {
  .header-btn {
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
  }
  .header-btn a {
    padding: 8px 20px;
    font-size: 14px;
  }
}



/*---  fixed header css ---*/
.bottom-header {
  -webkit-transition: background-color 0.5s linear;
  -moz-transition: background-color 0.5s linear;
  -ms-transition: background-color 0.5s linear;
  -o-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
  background: rgb(67 19 121);
}

.fixed-header .bottom-header {
  /*background-color: rgb(67 19 121);*/
  -webkit-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 999;
}
.fixed-header .bottom-header .white-logo {
  display: none;
}
.fixed-header .bottom-header .black-logo {
  display: block;
}
.fixed-header .main-navigation .navigation > ul > li > a {
  /*color: #111111;*/
  padding: 22px 0;
}
.fixed-header .main-navigation .navigation > ul > li > a:before {
  background-color: #444444;
}
.fixed-header .header-icons .icon-item a {
  /*color: #111111;*/
}
.fixed-header .header-icons .icon-item a:hover {
  color: #E98015;
}
@media screen and (max-width: 991px) {
  .fixed-header .mobile-menu-container .slicknav_menu .slicknav_menutxt {
    color: #fff;
  }
  .fixed-header .mobile-menu-container .slicknav_btn .slicknav_icon span {
    background-color: #fff;
  }
  .fixed-header .mobile-menu-container .slicknav_btn .slicknav_icon span:first-child:before, .fixed-header .mobile-menu-container .slicknav_btn .slicknav_icon span:first-child:after {
    background-color: #fff;
  }
}


/*---  mobile slick Nav css ---*/
/* Slicknav - a Mobile Menu */
.mobile-menu-container .slicknav_menu {
  background-color: transparent;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .mobile-menu-container .slicknav_menu {
    display: none;
  }
}
.mobile-menu-container .slicknav_menu .slicknav_btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin: 10px 0;
  float: none;
}
.mobile-menu-container .slicknav_menu .slicknav_icon {
  margin-left: 0;
  margin-right: 10px;
}
.mobile-menu-container .slicknav_menu .slicknav_menutxt {
  color: #fff;
  text-shadow: none;
  font-weight: normal;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.mobile-menu-container .slicknav_menu .slicknav_nav {
  min-height: calc(100vh - 0px);
  height: 100%;
  overflow-y: scroll;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
}
.mobile-menu-container .slicknav_menu .slicknav_nav li {
  border-top: 1px solid #e6e6e6;
}
.mobile-menu-container .slicknav_menu .slicknav_nav li .slicknav_arrow {
  color: #7a7a7a;
  font-size: 13px;
}
.mobile-menu-container .slicknav_menu .slicknav_row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.mobile-menu-container .slicknav_menu .slicknav_row > a {
  width: -moz-calc(100% - 45px);
  width: -webkit-calc(100% - 45px);
  width: calc(100% - 45px);
}
.mobile-menu-container .slicknav_menu .slicknav_row .slicknav_item {
  border-left: 1px solid #e6e6e6;
  width: 45px;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.mobile-menu-container .slicknav_menu .slicknav_row .slicknav_item .slicknav_arrow {
  position: static;
  padding: 0;
  margin: 0;
}
.mobile-menu-container .slicknav_menu .slicknav_row:hover, .mobile-menu-container .slicknav_menu .slicknav_row:focus, .mobile-menu-container .slicknav_menu .slicknav_row:active {
  background-color: transparent;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}

.slicknav_menu .slicknav_btn {
  background-color: transparent;
  padding: 0;
}
.slicknav_menu .slicknav_icon-bar {
  background-color: #242424;
}
.slicknav_menu .slicknav_nav ul {
  margin: 0;
  padding: 0;
}
.slicknav_menu .slicknav_nav li {
  position: relative;
  list-style: none;
}
.slicknav_menu .slicknav_nav li a {
  display: inline-block;
  font-size: 15px;
  color: #333333;
  font-weight: 600;
  padding: 10px 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.slicknav_menu .slicknav_nav li a:hover, .slicknav_menu .slicknav_nav li a:focus, .slicknav_menu .slicknav_nav li a:active {
  background-color: transparent;
  color: #E98015;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
.slicknav_menu .slicknav_nav {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 22px 21px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 22px 21px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 22px 21px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 22px 21px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 22px 21px rgba(0, 0, 0, 0.1);
}
.slicknav_menu .slicknav_arrow {
  position: absolute;
  right: 5px;
  height: 100%;
  top: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 10px;
}

.slicknav_btn {
  position: relative;
  display: block;
  vertical-align: middle;
  float: right;
  padding: 0;
  line-height: 1.125em;
  cursor: pointer;
  -webkit-transition: background-color 0.4s;
  -moz-transition: background-color 0.4s;
  -ms-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.slicknav_btn .slicknav_icon {
  width: 22px;
  height: 16px;
  display: block;
  position: relative;
  margin-top: 1px;
}
.slicknav_btn .slicknav_icon:before {
  display: none;
}
.slicknav_btn .slicknav_icon span {
  background-color: #fff;
  box-shadow: none;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.slicknav_btn .slicknav_icon span:first-child {
  display: block;
}
.slicknav_btn .slicknav_icon span:first-child:before, .slicknav_btn .slicknav_icon span:first-child:after {
  background-color: #fff;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition-property: top, transform;
  -moz-transition-property: top, transform;
  -ms-transition-property: top, transform;
  -o-transition-property: top, transform;
  transition-property: top, transform;
  -webkit-transition-delay: 0.5s, 0s;
  -moz-transition-delay: 0.5s, 0s;
  -ms-transition-delay: 0.5s, 0s;
  -o-transition-delay: 0.5s, 0s;
  transition-delay: 0.5s, 0s;
  -webkit-transition-duration: 0.5s, 0.5s;
  -moz-transition-duration: 0.5s, 0.5s;
  -ms-transition-duration: 0.5s, 0.5s;
  -o-transition-duration: 0.5s, 0.5s;
  transition-duration: 0.5s, 0.5s;
}
.slicknav_btn .slicknav_icon span:first-child:before {
  top: -6px;
}
.slicknav_btn .slicknav_icon span:first-child:after {
  top: 6px;
}
.slicknav_btn.slicknav_open span:first-child {
  background-color: transparent !important;
}
.slicknav_btn.slicknav_open span:first-child:before, .slicknav_btn.slicknav_open span:first-child:after {
  -webkit-transition-delay: 0s, 0.5s;
  -moz-transition-delay: 0s, 0.5s;
  -ms-transition-delay: 0s, 0.5s;
  -o-transition-delay: 0s, 0.5s;
  transition-delay: 0s, 0.5s;
}
.slicknav_btn.slicknav_open span:first-child:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.slicknav_btn.slicknav_open span:first-child:after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


/*--------------------------------------------------------------
>>> Home Banner Section  
----------------------------------------------------------------*/

.home-banner {
  background-image: radial-gradient(at top left, #efedf0, #efedf0);
  padding-bottom: 0px;
  position: relative;
  z-index: 1;
}
.home-banner-inner {
  background-image: url(../images/banner_bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 60px 0 100px;
}
.home-banner-inner .banner-image {
  text-align: center;
}
.banner-content {
  margin-left: auto;
  margin-right: auto;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.banner-content .banner-title {
  font-size: 36px;
  color: var(--darkblue);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 25px;
}
.banner-content .banner-text p {
  color: var(--darkblue);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 23px;
}


.request-loader {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  background: var(--mainColor);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}
.request-loader span {
    position: relative;
    font-size: 10px;
    color: #fff;
}
.request-loader::after {
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 8px solid rgba(75, 2, 119, 0.2);
  border-radius: 100%;
  -webkit-animation-name: ripple;
          animation-name: ripple;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
          animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}
.request-loader::before {
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 8px solid rgba(75, 2, 119, 0.2);
  border-radius: 100%;
  -webkit-animation-name: ripple;
          animation-name: ripple;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
          animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}

@media screen and (max-width: 991px) {
  .banner-content .banner-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  .banner-content .banner-title {
    font-size: 45px;
  }
  .how-it-works, .app_store {
    justify-content: center;
  }
  .how-it-box {text-align: center;}
  .numbers {margin: auto;}
  .Simplified .real-estate {text-align: center;}
  .make_money {text-align: center;}
  .monthly_icon {margin: auto;}
  .graph_box {margin-top: 15px;}

}
@media screen and (max-width: 575px) {
  .banner-content {
    padding-top: 70px;
    text-align: center;
  }
  .banner-content .banner-title {
    font-size: 32px;
  }
  .home-banner-inner {padding: 0px 0 100px;}

}


/*Banner Slider*/

.home-banner [id*=screenshots-carousel] .owl-carousel .owl-item {
    transform: scale(.8);
    opacity: .8;
    transition: all .5s ease-in-out;
    margin: 10px 0;
}
.home-banner [id*=screenshots-carousel] .owl-carousel .owl-item:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    background: url(../images/iphonescren.png) center center no-repeat;
    background-size: cover;
      transition: all .5s ease-in-out;
}
.home-banner #screenshots-carousel-2 .owl-carousel .owl-item img {
    height: 380px;
    width: 186px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.home-banner [id*=screenshots-carousel] .owl-carousel .owl-item img {
    min-height: 350px;
    overflow: hidden;
    border-radius: 25px;
}
.home-banner [id*=screenshots-carousel] .owl-carousel .owl-item.center {
    z-index: 9;
    transform: scale(1);
    opacity: 1;
    transition: all .5s ease-in-out;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}
.home-banner [id*=screenshots-carousel] .owl-carousel .owl-item.center:before {
    opacity: 1;
    transition: all .5s ease-in-out;
}



/*How It Work*/

.how-it-work{top: -70px;z-index: 3}
.numbers{
  background-color: #fff;
  width: 34px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #d3d9e5;
  font-weight: bold;
  border-radius: 4px;
  font-size: 15px;
  border:solid 1px #d3d9e5;
  transition: color 0.25s ease;
}
.how-it-box:hover .numbers{
  background-color: var(--mainColor);
  color: #fff;
  border-color: var(--mainColor);
  transition: color 0.25s ease;
}
.how-it-box h3{
  font-size: 1.25rem;
  margin: 10px 0;
  color: var(--headingLight);
  transition: color 0.25s ease;
}
.how-it-box:hover h3{
  color: var(--mainColor);
  transition: color 0.25s ease; 
}
.how-it-box p{margin: 0;color: var(--headingLight);transition: color 0.25s ease;font-weight: 500;}
.how-it-box:hover p{color: #686868;transition: color 0.25s ease;}





/*Simplified real estate investing */

.Simplified .section-title {
  margin-bottom: 10px;
}
.Simplified h3{
  font-size: 20px;
  margin: 10px 0;
}

.Simplified .real-estate{
  transition: 0.5s all; 
}
.Simplified .real-estate:hover{
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  transition: 0.5s all; 
}
.Simplified .real-estate:hover {
    background: #431379;
    color: #fff;
    transition: 0.5s all; 
}
.Simplified .real-estate:hover h3{color: #fff;transition: 0.5s all;}
.Simplified .real-estate p{margin-bottom: 0;}


/*How will you make money?*/

.make_money{
  background: var(--lightBackground);
}
.make_money h3{
  font-size: 20px;
  margin: 10px 0;
}
.monthly_icon {
    background-color: var(--lightBackground);
    width: 65px;
    height: 65px;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.monthly_box .border.rounded-3 {
    transition: 0.5s all;
}
.monthly_box:hover .border.rounded-3 {
    border-radius: 1rem !important;
    transition: 0.5s all;
    box-shadow: 0 .3rem 0.6rem rgba(0,0,0,.15)!important;
}



/*Investment calculator*/



.range-slider {
  margin: 40px 0 0 0%;
}

.range-slider {
  width: 100%;
}

.calc_inner_box h3 {
    font-weight: bold;
    line-height: 1.33;
    font-size: 1.25rem;
}

.range-slider__range {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #d7dcdf;
  outline: none;
  padding: 0;
  margin: 0;
}
.range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}
.range-slider__range::-webkit-slider-thumb:hover {
  background: #fff;
}
.range-slider__range:active::-webkit-slider-thumb {
  background: #fff;
}
.range-slider__range::-moz-range-thumb {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #43137a;
  cursor: pointer;
  -moz-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}
.range-slider__range::-moz-range-thumb:hover {
  background: #43137a;
}
.range-slider__range:active::-moz-range-thumb {
  background: #43137a;
}
.range-slider__range::-webkit-slider-thumb {
  box-shadow: 0 0 0 2px #fff, 0 0 0 7px #43137a;
}

.range-slider__value {
  display: inline-block;
  position: relative;
  color: #353535;
  line-height: 20px;
}
.range-slider span, .range-slider p{
  font-weight: bold;
  color: #353535;
  margin: 0;
}


.range-slider ::-moz-range-track {
  background: #43137a;
  border: 0;
}

.range-slider input::-moz-focus-inner,
.range-slider input::-moz-focus-outer {
  border: 0;
}


.range_details {
    text-align: start;
    font-size: 0.75rem;
    color: #5e6473;
}


.dots-blue {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    flex-grow: 0;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: #121c30;
}
.invest_title {
    font-size: 0.85rem;
    text-align: start;
    color: #5e6473;
    margin: 0;
}
.invest_price {
    padding-left: 1.25rem;
    font-weight: bold;
    font-size: 0.875rem;
    text-align: start;
}




/*Testimonial*/

.testimonial{
  overflow: hidden;
  padding: 100px 0;
}
.bg_overlay{
  width: 40%;
  height: 100%;
  transform: skew(-25deg);
  background: #ebe9ec;
  position: absolute;
  right: -220px;
  top: 0;
}
.container.z-index{z-index: 3;position: relative;}


#testimonial .item{margin-bottom: 20px;}

.testimonial .owl-carousel .owl-nav [class*=owl-] {
  transition: all 0.3s ease;
}

.testimonial .owl-carousel .owl-nav [class*=owl-].disabled:hover {
  background-color: #d6d6d6;
}

.testimonial .owl-carousel {
  position: relative;
}

.testimonial .owl-carousel .owl-next,
.testimonial .owl-carousel .owl-prev {
  width: 50px;
  height: 50px;
  line-height: 50px !important;
  border-radius: 50%;
  position: absolute;
  bottom:-30px;
  font-size: 20px !important;
  border: 1px solid #ddd !important;
  text-align: center;
  right: 0;
  background-color: #fff !important;
}

.testimonial .owl-carousel .owl-prev {
  right: 60px;
}

.testimonial .owl-carousel .owl-next {
  right: 0px;
}

.titles p{margin: 0;}

.stars-rating i{
  background-color: #41ce8e;
  padding: 3px;
  font-size: 10px;
  color: #fff;
}

.share_icon a{
  color: #747474;
}
.share_icon a:hover{
  color: var(--mainColor);
}
.client_img img {
    max-width: 40px;
}


/*Register your interest*/

section.register_interest input.form-control {
    padding: 0.7rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.iti {
    width: 100%;
}



/*--------------------------------------------------------------
>>> Main Footer  
----------------------------------------------------------------*/
.site-footer {
  padding-top: 60px;
  position: relative;
  z-index: 1;
  background-color: rgb(67 19 121);
}

.site-footer .top-footer {
  padding-bottom: 60px;
}
.site-footer .footer-logo {
  margin-bottom: 20px;
}
.site-footer .bottom-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px 0;
  /*background-color: #e5d7ed;*/
}
.site-footer .copy-right {
  color: #fff;
  font-size: 15px;
  line-height: 20px;
}
.site-footer .copy-right a {
  color: #ffffff;
}
.site-footer .copy-right a:hover {
  color: #E98015;
}
aside.widget ul {
    list-style: none;
}
.site-footer .social-links li {
  margin: 0 3px;
}
.site-footer .social-links li a {
  background-color: #000000;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  color: #ffffff;
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  -webkit-transition: background-color 0.4s;
  -moz-transition: background-color 0.4s;
  -ms-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.site-footer .social-links li a:hover {
  background-color: #E98015;
}
.textwidget.widget-text{color: #fff;}
.site-footer .footer-logo img {
    max-width: 180px;
}

@media screen and (max-width: 767px) {
  .site-footer .bottom-footer {
    text-align: center;
  }
  .site-footer .social-links {
    margin-bottom: 30px;
  }
  .footer-primary .widget {margin-bottom: 20px;}
}
@media screen and (max-width: 575px) {

  .site-footer {padding-top: 50px;text-align: center;}
  .site-footer .top-footer {padding-bottom: 25px;}
  .footer-primary .widget {margin-bottom: 10px;}
}


.footer-primary .widget .widget-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.footer-primary .widget ul li {
  margin-bottom: 10px;
}
.footer-primary .widget ul li a {
  color: #fff;
  font-size: 14px;
}
.footer-primary .widget ul li a:hover, .footer-primary .widget ul li a:focus, .footer-primary .widget ul li a:active {
  color: var(--hovercolor);
  text-decoration: underline;
}
.footer-primary .widget.widget_menu ul li {
  /*border-bottom: 1px solid rgba(255, 255, 255, 0.14);*/
}
.footer-primary .widget.widget_menu ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.footer-primary .widget.widget-download .widget-btn-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0 -6px;
}
.footer-primary .widget.widget-download .widget-btn-wrap a {
  padding: 0 6px;
}
@media screen and (max-width: 991px) {
  .footer-primary .widget {
    margin-bottom: 30px;
  }
}


/*Login Page CSS*/

.authentication-box {
    min-height: 100vh;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}
.authentication-box .row {
    align-items: center;
}
.log-in.row>div {
    margin: 0 auto;
}
.authentication-box .col-xxl-3 {
    width: 30%;
}



@media(max-width: 767px){

  .fixed-header .site-identity img {max-width: 80px;}
  .how-it-work{top: 0px;padding: 50px 0;}


}

/*06-05-24*/

.innerHeader {
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #00000080;
    transition: .8s;
}

.inner-page {
    background: url(../img/innerBanner.png) no-repeat;
    height: 500px;
    background-repeat: no-repeat;
}

.innerPageFooter {
    background-color: #202020;
    padding: 15px 0;
}

.innerPageFooter p {
    color: #d2d2d2;
    font-size: 14px;
    line-height:24px;
    font-weight: 500;
    padding: 10px 0;
    margin-bottom:0px;
}

.loginMain {
    background: #fff;
    background-image: none !important;
    max-width: 500px;
    border-radius: 10px;
    padding: 30px;
    margin-top: -145px;
    height: 100%;
    box-shadow: 0 10px 10px #42325a;
    margin-bottom: 100px;
}

.loginMain .contact-title h1 {
    text-align: start;
    display: inline-block;
    font-size: 34px;
    line-height: 44px;
    font-weight: 500;
    position: relative;
}

.loginMain .contact-title h1:before {
    content: '';
    position: absolute;
    width: 33px;
    height: 3px;
    background: #ff5c41;
    bottom: -5px;
}

.loginInputs #contact-us-form input, .loginInputs input, .contactInput .loginInputs input {
    border: none;
    border-bottom: 1px solid #e9e9e9;
    padding: 0px;
    margin-bottom: 5px;
    height: 46px;
    width: 100%;
    padding-left: 10px;
}

.loginInputs #contact-us-form input:focus-visible, .loginInputs #contact-us-form input:visited{
    outline:none;
}

.forgCreate {
    margin-top: 20px;
}

.forgotPass, .forgCreate a {
    color: #ff8c41;
}

#contact-us-form .btn {
    padding: 4px 26px;
    background: linear-gradient(to right, #ff5c41 0%, #ff8c41 51%, #ff5c41 100%);
    border-radius: 20px;
    background-position: 200% auto;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #fff !important;
}

#contact-us-form .btn:hover {
    background-size: 200% auto;
    background-position: right center;
    transition: all .5s ease;
}

.create, .login {
    border: 1px dashed #ff8c41;
    padding: 10px 20px;
    border-radius: 20px;
    color: #ff8c41;
    margin-left: 10px;
}

 .login{
     margin-right:10px;
 }

.create:hover, .login:hover {
    background: #ff5c4117;
    transition: all .5s ease;
    color: #ff8c41;
    font-weight: 500;
}

/*06-05-24 end */


