/* @extend display-flex; */
display-flex,
.form-flex,
.form-date-group,
.steps ul,
.title,
.title .step-number,
.actions ul li a,
.form-radio-flex,
.form-find {
  display: flex;
  display: -webkit-flex;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgb(227, 222, 222);
}

::-webkit-scrollbar-thumb {
  background: #645fce;
}

::-webkit-scrollbar-thumb:hover {
  background: #b90601;
}

/* @extend list-type-ulli; */
list-type-ulli,
.steps ul,
.actions ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/poppins/Poppins-Regular.ttf");
}

@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../fonts/poppins/Poppins-SemiBold.ttf");
}

@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/poppins/Poppins-Medium.ttf");
}

@font-face {
  font-family: "Muli-Bold";
  src: url("../fonts/muli/Muli-Bold.ttf");
}

@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,400;0,500;0,600;1,500&family=Rajdhani:wght@300;400;500;600;700&display=swap");

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Poppins-Regular";
  font-size: 15px;
  color: #666;
  margin: 0;
  background: #f6f9ff;
}

a {
  text-decoration: none;
}

a:hover {
  color: #645fce !important;
  transition: all 0.5s;
}

a:focus,
a:active {
  text-decoration: none;
  outline: none;
  transition: all 300ms ease 0s;
  -moz-transition: all 300ms ease 0s;
  -webkit-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  -ms-transition: all 300ms ease 0s;
}

input,
select,
textarea {
  outline: none;
  appearance: unset !important;
  -moz-appearance: unset !important;
  -webkit-appearance: unset !important;
  -o-appearance: unset !important;
  -ms-appearance: unset !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  -o-appearance: none !important;
  -ms-appearance: none !important;
  margin: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -o-box-shadow: none !important;
  -ms-box-shadow: none !important;
}

input[type="checkbox"] {
  appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  -o-appearance: checkbox !important;
  -ms-appearance: checkbox !important;
}

input[type="radio"] {
  appearance: radio !important;
  -moz-appearance: radio !important;
  -webkit-appearance: radio !important;
  -o-appearance: radio !important;
  -ms-appearance: radio !important;
}

.clear {
  clear: both;
}

h2 {
  font-size: 30px;
  margin: 0px;
}

body {
  font-size: 14px;
  line-height: 1.6;
  color: #222;
  font-weight: 400;
  font-family: "Poppins-Regular";
  margin: 0px;
  position: relative;
  padding: 0px;
}

section {
  padding: 60px 0;
  overflow: hidden;
  background: #f6f9ff;
}

.section-bg {
  background-color: #fff;
}

.navigation {
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.brand {
  float: left;
  line-height: 73px;
}

.brand a,
.brand a:visited {
  color: #645fce;

  text-decoration: none;
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
}

header nav {
  float: right;
}

header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  float: left;
  position: relative;
}

header nav ul li a,
nav ul li a:visited {
  padding: 0 20px;
  line-height: 80px;
  text-decoration: none;
  color: #000000;
  font-size: 15px;
  display: block;
  background: #fff;
}

header nav ul li a {
  background: transparent;
}

header nav ul li a:hover,
nav ul li a:visited:hover {
  border-bottom: 1px solid;
  color: #645fce;
}

.navbar-dropdown li a {
  border-bottom: 1px solid #645fce;
  padding: 10px !important;
}

header nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: " \025BE";
}

header nav ul li ul li {
  min-width: 190px;
}

header nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.navbar-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  background: #fff;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
  transition: 0.3s;
}

/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  height: 55px;
  width: 70px;
}

@media only screen and (max-width: 800px) {
  .nav-mobile {
    display: block;
  }

  header nav {
    width: 100%;
  }

  header nav ul {
    display: none;
  }

  header nav ul li {
    float: none;
  }

  header nav ul li a {
    padding: 15px;
    line-height: 20px;
    background: #262626;
  }

  header nav ul li ul li a {
    padding-left: 30px;
  }

  .navbar-dropdown {
    position: static;
  }
}

@media screen and (min-width: 800px) {
  header .navigation_section {
    display: block !important;
  }
}

#navbar-toggle {
  position: absolute;
  left: 18px;
  top: 15px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}

#navbar-toggle span,
#navbar-toggle span:before,
#navbar-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 30px;
  background: #645fce;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}

#navbar-toggle span:before {
  top: -10px;
}

#navbar-toggle span:after {
  bottom: -10px;
}

#navbar-toggle.active span {
  background-color: transparent;
}

#navbar-toggle.active span:before,
#navbar-toggle.active span:after {
  top: 0;
}

#navbar-toggle.active span:before {
  transform: rotate(45deg);
}

#navbar-toggle.active span:after {
  transform: rotate(-45deg);
}

.background_color {
  background-color: #f6f9ff;
}

/***-----Common Page Header Start----***/
.page_title_section {
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #f6f9ff;
  margin-top: 80px;
}

.sub_title_section_left .line_shape:after {
  margin-bottom: 14px;
}

.page_header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 0px;
}

.page_header h1 {
  font-size: 27px;
  line-height: 31px;
  text-transform: capitalize;
  color: #000;
  font-weight: bold;
}

.sub_title_section_left {
  width: 50%;
}

.sub_title_section {
  width: 50%;
  top: 6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  align-items: center;
}

.page_header .sub_title li {
  float: left;
  font-size: 16px;
  line-height: 35px;
  text-transform: capitalize;
  font-weight: 400;
  color: #000;
}

.sub_title_section ul {
  margin-top: unset;
  margin-bottom: unset;
  list-style: none;
}

/***-----Common Page Header End----***/

/***-----Download page Start----***/
.about--content ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.about--content ul li {
  line-height: 40px;
  margin-bottom: 10px;
}

.about--content ul li a {
  font-size: 18px;
  text-transform: capitalize;
  color: #111;
  line-height: 45px;
}

.about--content ul li a span i {
  width: 40px;
  float: left;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #bd4cec;
  font-size: 22px;
  color: #fff;
  margin-right: 20px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}

/***-----Download page End----***/

/***-----Contact page start----***/
.contact_header span {
  font-size: 21px;
  color: #000000;
  letter-spacing: 5px;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}

.info b {
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
  color: #645fce;
}

.contact_main {
  border: 1px solid #dadada;
  padding: 15px;
  border-radius: 10px;
  background: #fff;
}

.footet_left .contact_main i {
  font-size: 16px !important;
  color: #353535;
  float: left;
  /* line-height: 2 !important; */
}

/***-----Contact page End----***/

/* @About CSS Stat  */
.rtl {
  direction: rtl;
}

.section-header .cate {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000000;
  display: block;
  margin-top: -5px;
  margin-bottom: 26px;
}

.section-header h2 {
  font-size: 30px;
  line-height: 56px;
  margin-top: -14px;
  text-transform: uppercase;
  font-weight: 800;
  color: #645fce;
}

.big_features_one {
  background: #fff;
}

.about-section {
  margin-top: 40px;
}

.section-header.left-style {
  margin-bottom: 30px;
}

.section-header p {
  font-size: 15px;
  margin-top: 19px;
  color: #000;
  text-transform: capitalize;
}

.about--content {
  margin-bottom: -46px;
}

.about-item {
  display: flex;
  flex-wrap: wrap;
}

.about-item .about-thumb {
  width: 65px;
}

.about-item .about-content .title {
  margin-bottom: 16px;
  margin-top: 0;
  font-size: 20px;
  color: #645fce;
  font-weight: 700;
}

.about-item .about-content p {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  text-transform: capitalize;
}

.about-item .about-content {
  padding-left: 30px;
  width: calc(100% - 65px);
}

.rtl-one {
  direction: unset;
}

/* @About CSS End  */

/* @Top Slider CSS Stat  */

.slider_index2_wrapper {
  margin-top: 0;
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background: url(../images/hero-bg.png) top center no-repeat;
  background-size: cover;
  margin-top: 80px;
  padding-bottom: 120px;
}

.index2_sliderbg {
  right: -292px;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.index2_sliderbg {
  position: absolute;
  right: 111px;
  top: 48px;
  animation: animate 1.4s infinite alternate;
}

@keyframes animate {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-20px);
  }
}

.shape {
  /* animation: animate_1 3s infinite alternate; */
  width: 100%;
}

@keyframes animate_1 {
  0% {
    transform: translatex(-30px);
  }

  100% {
    transform: translatex(0px);
  }
}

/* .dinkar {
  animation: animate_2 3s infinite alternate;
}

@keyframes animate_2 {
  0% {
    transform: translatex(40px);
  }

  100% {
    transform: translatex(0px);
  }
} */

.slider-nav {
  padding-top: 50px;
}

.mcontent h2 {
  font-size: 16px;
  color: #000000;
  letter-spacing: 5px;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.mcontent h3 {
  font-size: 45px;
  line-height: 60px;
  margin-top: 14px;
  text-transform: uppercase;
  font-weight: 800;
  color: #758693;
}

.mcontent b {
  margin-bottom: 10px;
  display: block;
}

.mcontent p {
  font-size: 15px;
  margin-top: 5px;
  color: #000000;
  text-transform: capitalize;
  margin-bottom: 5px;
  display: block;
}

.mcontent p i {
  color: #645fce;
  padding-left: 1px;
  padding-right: 5px;
}

.mcontent p strong {
  padding: 0px 21px;
}
.bannerImg {
  animation: animate 1.4s infinite alternate;
}

@keyframes animate {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-20px);
  }
}
.banner_btn {
  padding: 10px 20px;
  background-color: #645fce;
  color: white;
  border-radius: 20px;
  margin-top: 20px;
}
.banner_btn:hover {
  color: black !important;
}

.slider_btn {
  float: left;
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0px;
}

.slider_btn ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.slider_btn ul li {
  float: left;
  margin: 0px 20px;
}

.slider_btn ul li:first-child {
  margin-left: 0px;
}

.slider_btn ul li a {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  font-size: 18px;
}

.slider_btn ul li a:hover {
  color: #fff !important;
  background: #645fce;
  border: 1px solid #645fce;
  transition: all 0.5s;
}

.slider-nav .slick-dots {
  position: absolute;
  bottom: -7%;
  z-index: 1;
  left: 0;
  text-align: center;
  display: block;
  margin-left: 0%;
  width: 160px;
  padding: 5px;
  background: #fff;
  -moz-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 3px 15px rgb(0 0 0 / 6%);
  box-shadow: 0 3px 15px rgb(0 0 0 / 6%);
  border-radius: 50px;
}

.slider-nav .slick-dots li {
  text-indent: 0;
  position: relative;
  width: 69px;
  height: 35px;
  line-height: 35px;
  background-color: transparent;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  margin: 0;
  color: #111;
  float: left;
  margin-left: 10px;
}

.slider-nav .slick-dots li:first-child {
  margin-left: 0px;
}

.slider-nav .slick-dots li button {
  text-indent: 0;
  position: relative;
  width: 70px;
  height: 35px;
  line-height: 35px;
  background-color: #8ea2b0;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  margin: 0;
  color: #fff;
  float: left;
  line-height: 0px;
}

.slider-nav .slick-dots li.slick-active button {
  background-color: #645fce;
  color: #fff;
}

.slider-nav .slick-dots li button:before {
  display: none;
}

/* @Top Slider CSS End  */

/* @Testimonial CSS Stat  */

.testimonials_main {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 14px;
  text-transform: capitalize;
  text-align: center;
  line-height: 27px;
  letter-spacing: 0.5px;
}

.testimonials_main h5 {
  margin-bottom: 0;
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 800;
  color: #3498db;
  letter-spacing: 1px;
}

.testimonials_main h5::before,
.testimonials_main h5::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #645fce;
  display: inline-block;
  border-radius: 50%;
  margin: 3px 10px;
}

.testimonials_main p {
  margin-bottom: 2.5rem;
  padding: 0px 10%;
  font-size: 15px;
  margin-top: 19px;
  color: #33406a;
}

.test-title h4 {
  color: #000;
  font-size: 18px;
  text-transform: capitalize;
  text-align: center;
  line-height: 27px;
  letter-spacing: 0.5px;
  margin: 0px;
  padding: 0px;
}

.test-title h6 {
  color: #b0b0b0;
  font-size: 13px;
  text-transform: capitalize;
  text-align: center;
  line-height: 27px;
  letter-spacing: 0.5px;
  font-style: italic;
}

.test-content p {
  color: #000;
  font-size: 14px;
  text-transform: none;
  text-align: center;
  line-height: 22px;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-transform: capitalize;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #645fce;
}

.test-content p sup {
  top: 31px;
  font-size: 57px;
  color: #c1c1c1;
  padding: 0px 3px;
}

.testimonial-reel {
  margin-bottom: 4rem !important;
  margin-top: 4rem;
}

.testimonial-reel .box {
  position: relative;
  margin-bottom: 30px;
}

.testimonial-reel .box .image {
  margin: 0 auto -45px;
  text-align: center;
}

.testimonial-reel .box .image img {
  height: 130px;
  margin: 0 auto;
  border: 5px #645fce;
}

.testimonial-reel .box .test-component {
  background-color: #fff;
  padding: 1rem 2.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  min-height: 200px;
}

.testimonial-reel .box .test-title {
  font-family: "Open Sans", sans-serif;
  color: #645fce;
  text-align: center;
  margin-top: 3.3rem;
  margin-bottom: 15px;
}

.testimonial-reel .box .test-content {
  text-align: center;
}

.testimonial-reel .slick-slide {
  opacity: 0.3;
  transition: opacity 0.3s;
  padding-left: 1rem;
  padding-right: 1rem;
}

.testimonial-reel .slick-slide.slick-cloned {
  opacity: 0.3;
  transition: opacity 0.3s;
}

.testimonial-reel .slick-slide.slick-current.slick-active {
  opacity: 1;
  transition: opacity 0.3s;
}

.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.testimonial-reel {
  margin-bottom: 0px !important;
  margin-top: 0px;
}

.line_shape:before {
  content: "";
  width: 30px;
  height: 4px;
  background-color: #758693;
  top: 10px;

  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 90px;
}

.line_shape:after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #645fce;
  top: 6px;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  display: block;
  margin-bottom: 31px;
}

.line_shape:before {
  display: block;
  position: relative;
}

/* @Testimonial  CSS End  */

/* Gap Top CSS Stat  */
.section_gap_top {
  padding-top: 120px;
}

.main_title {
  text-align: center;
  margin-bottom: 75px;
}

.main_title h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 36px;
  color: #000;
  font-weight: 400;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.main_title p {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  line-height: 24px;
  color: #777;
  margin-bottom: 0;
  margin: auto;
}

.waper_abt_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Gap Top CSS End  */

/* impress area CSS Stat  */

.impress_area {
  background-image: url("../images/ximpress-bg.png.pagespeed.ic.JuVOXag761.webp");
  background-size: cover;
  padding: 290px 0 280px;
  margin-bottom: -139px;
}

.big_features {
  background: #f6f9ff;
}

.impress_area .impress_inner {
  text-align: center;
  max-width: 780px;
  margin: auto;
}

.impress_area .impress_inner h2 {
  color: #fff;
  font-size: 36px;
  font-family: "Rajdhani", sans-serif;
  font-weight: bold;
  margin-bottom: 18px;
}

.impress_area .impress_inner p {
  color: #fff;
  margin-bottom: 35px;

  font-weight: 400;
  letter-spacing: 0.2px;
}

.impress_area .impress_inner .primary_btn {
  background: #fff;
  width: auto;
  font-size: 18px;
  box-shadow: -14.142px 14.142px 20px 0 rgb(0 0 0 / 10%);
  border-color: #fff;
  padding: 10px;
  border-radius: 5px;
  margin-top: 30px;
  display: inline-block;
}

.primary_btn span {
  padding: 0 15px;
}

.about-item h5 {
  color: #645fce;
  padding-bottom: 0px;
}

/* impress area CSS End  */

/* @footer CSS Stat  */
.footer_area {
  background-image: url(../images/footer.png);
  background-size: cover;
  padding-top: 165px;
  padding-bottom: 0px;
}

.info {
  padding-top: 20px;
}

.info i {
  font-size: 17px;
  color: #645fce;
  float: left;
  line-height: 1;
  padding-top: 4px;
}

.info p {
  padding: 0 0 0px 25px;
  line-height: 28px;
  font-size: 14px;
  margin-bottom: 4px;
  font-family: "Poppins-Regular";
  font-weight: 400;
  color: #595959;
}

.info p a {
  color: #595959;
}

.f_title h3 {
  color: #645fce;
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins-Regular";
  margin-bottom: 0;
}

.f_widget ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  margin-top: 20px;
}

.f_widget ul li {
  font-family: "Poppins-Regular";
  line-height: 27px;
  font-size: 14px;
}

.f_widget ul li::before {
  content: "\f105";
  font-family: "FontAwesome";
  color: #ababab;
  font-size: 15px;
  margin-right: 4%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.f_widget ul li a {
  text-decoration: none;
  color: #595959;
}

/* @copy-right CSS Start  */
.copyright {
  border-top: 1px solid #ebebeb;
  margin-top: 25px;
}

.f_widget h3 {
  font-size: 16px;
  font-weight: 600;
  padding-top: 6px;
  letter-spacing: 0.5px;
}

.name-details p {
  padding-left: 0px;
  margin: 0px;
}

.big_features_two {
  background: #fafafa;
}

.copyright p {
  margin: 0px;
  padding: 15px 0px;
  text-align: center;
}

blockquote {
  margin: 0 0 1rem;
  padding-left: 25px;
  font-size: 16px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 0px;
  margin-right: 0px;
  color: white !important;
  /* background-color: #645fce; */
  background-color: #eeeef0;
  padding: 8px 15px;
  /* border-top-right-radius: 20px;
  border-bottom-right-radius: 20px; */
  width: 100%;
}
blockquote a {
  color: rgb(27, 27, 27);
}
blockquote a:hover {
  color: #645fce !important;
}

/* @footer CSS End  */
@media only screen and (max-width: 1024px) {
}

@media only screen and (max-width: 991px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 100%;
  }
  header nav ul li a,
  nav ul li a:visited {
    padding: 0 12px;
    line-height: 70px;
  }
  header nav ul li a:hover,
  nav ul li a:visited:hover {
    color: #fff !important;
  }
  .mcontent h3 {
    font-size: 22px;
    line-height: 21px;
  }
  .index2_sliderbg {
    right: 29px;
    top: 32px;
  }
}

@media only screen and (max-width: 768px) {
  .brand a,
  .brand a:visited {
    font-size: 16px !important;
  }
  .brand a img {
    width: 80px;
  }
  header nav ul li a,
  nav ul li a:visited {
    padding: 0 12px;
    line-height: 40px;
    background-color: #645fce;
    margin-bottom: 1px;
    color: #fff;
  }
  .index2_sliderbg {
    display: none;
  }
  .big_f_left {
    margin: 40px 0px;
  }
  .section_gap {
    margin: 0px;
    padding: 0px;
  }
  .about--content {
    margin-bottom: 25px;
  }
  .impress_area {
    padding: 191px 0 117px;
  }
  .section-header h2 {
    font-size: 19px;
    line-height: 36px;
  }
  .slider_index2_wrapper {
    margin-top: 0px;
  }
  .footet_left .contact_main i {
    font-size: 14px !important;
    line-height: 1 !important;
  }
  .info {
    margin-bottom: 25px;
  }
  .mobile_none {
    padding-top: 50px;
  }
}

@media only screen and (max-width: 768px) {
  .slider_index2_wrapper {
    height: 100vh;
  }
  .slider-nav {
    margin-top: 80px !important;
  }
  .section-header h2 {
    margin-top: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .mcontent h3 {
    font-size: 40px;
  }
  .slider-nav {
    margin-top: 0px !important;
  }
  .bannerImg {
    margin-top: 0px !important;
  }
}

#popup {
  position: fixed;
  box-shadow: 2px 2px 10px 0 rgb(0, 0, 0, 0.9);
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1001;
}
#popup i {
  position: absolute;
  right: 23px;
  top: 9px;
  font-size: 27px;
}
#popup i:hover {
  color: #992120;
  cursor: pointer;
}
#popup h6 {
  color: black;
  font-family: "Poppins-Regular";
}
#popup button:hover {
  background: #59b42d;
  border: 1px solid #59b42d;
  color: black !important;
}

.overlay {
  height: 100vh;
  opacity: 0.6;
  background-color: black;
  position: fixed;
  right: 0;
  z-index: 99;
  left: 0%;
  display: none;
}

.marqueeDiv h5 {
    background-color: #645fce;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    line-height: 1;
    margin-top: 10px;
    float: left;
    margin-right: 10px;
}

.marqueeDiv marquee {
    font-size: 16.5px;
    margin-top: 14px;
}
