/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #8d1b3d;
}

a:hover {
  color: #8577fb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

p {
  margin: 0;
}

* {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  width: auto \9;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #8d1b3d;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #7b27d8;
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #8d1b3d;
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo a {
  color: #fff;
}

/* #header .logo a:hover {
  cursor: context-menu;
} */

/* #header .logo img {
  max-height: 40px;
} */

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }

  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul {
  display: flex;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 30px;
}

/* .nav-menu ul li {
  width: 25%;
  text-align: center;
} */

.nav-menu a {
  display: block;
  position: relative;
  color: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  font-size: 16px;
  font-weight: normal;
  padding: 0 3px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
}

.nav-menu>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #8d1b3d;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .active>a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #8d1b3d;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 10%;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #2c4964;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: #8d1b3d;
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  color: #fff;
  border-radius: 5px;
  padding: 6px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.get-started-btn:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 30px;
  top: 35px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #000;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #2c4964;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #8d1b3d;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  /* background: rgba(28, 47, 65, 0.6); */
  background: #8d1b3d;
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #000;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  padding: 0;
  /* background: linear-gradient(45deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(141, 27, 61, 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover; */
}

#hero .container,
#hero .container-fluid {
  padding-top: 84px;
}

#hero h1 {
  margin: 0;
  font-size: 2em;
  font-weight: 700;
  /* line-height: 64px; */
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  border: 2px solid #fff;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #8d1b3d;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero-inner {
  width: 100%;
  height: 70vh;
  padding: 0;
}

#hero-inner .container,
#hero-inner .container-fluid {
  padding-top: 84px;
}

#hero-inner h1 {
  margin: 0;
  font-size: 2em;
  font-weight: 700;
  /* line-height: 64px; */
  color: #fff;
}

#hero-inner h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 20px;
}

.btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 15px;
  color: #fff;
  border: 2px solid #fff;
}

.btn-learn-more:hover {
  background: #fff;
  color: #8d1b3d;
}

#hero-inner .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  border: 2px solid #fff;
}

#hero-inner .btn-get-started:hover {
  background: #fff;
  color: #8d1b3d;
}

#hero-inner .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }

  #hero-inner {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .container,
  #hero .container-fluid {
    padding-top: 68px;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }

  #hero-inner {
    text-align: center;
  }

  #hero-inner .container,
  #hero-inner .container-fluid {
    padding-top: 68px;
  }

  #hero-inner .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero-inner .hero-img {
    text-align: center;
  }

  #hero-inner .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 60%;
  }

  #hero-inner h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #hero-inner h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero-inner .hero-img img {
    width: 60%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero-inner .hero-img img {
    width: 80%;
  }
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #8d1b3d;
}

a:hover {
  color: #8577fb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

p {
  margin: 0;
}

* {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  width: auto \9;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #8d1b3d;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #7b27d8;
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #8d1b3d;
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo a {
  color: #fff;
}

/* #header .logo a:hover {
  cursor: context-menu;
} */

/* #header .logo img {
  max-height: 40px;
} */

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }

  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul {
  display: flex;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 30px;
}

/* .nav-menu ul li {
  width: 25%;
  text-align: center;
} */

.nav-menu a {
  display: block;
  position: relative;
  color: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  font-size: 16px;
  font-weight: normal;
  padding: 0 3px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
}

.nav-menu>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #8d1b3d;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .active>a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #8d1b3d;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 10%;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #2c4964;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: #8d1b3d;
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  color: #fff;
  border-radius: 5px;
  padding: 6px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.get-started-btn:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 30px;
  top: 35px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #000;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #2c4964;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #8d1b3d;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  /* background: rgba(28, 47, 65, 0.6); */
  background: #8d1b3d;
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #000;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  padding: 0;
  /* background: linear-gradient(45deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(141, 27, 61, 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover; */
}

#hero .container,
#hero .container-fluid {
  padding-top: 84px;
}

#hero h1 {
  margin: 0;
  font-size: 2em;
  font-weight: 700;
  /* line-height: 64px; */
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  border: 2px solid #fff;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #8d1b3d;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero-inner {
  width: 100%;
  height: 70vh;
  padding: 0;
}

#hero-inner .container,
#hero-inner .container-fluid {
  padding-top: 84px;
}

#hero-inner h1 {
  margin: 0;
  font-size: 2em;
  font-weight: 700;
  /* line-height: 64px; */
  color: #fff;
}

#hero-inner h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 20px;
}

.btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 15px;
  color: #fff;
  border: 2px solid #fff;
}

.btn-learn-more:hover {
  background: #fff;
  color: #8d1b3d;
}

#hero-inner .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  border: 2px solid #fff;
}

#hero-inner .btn-get-started:hover {
  background: #fff;
  color: #8d1b3d;
}

#hero-inner .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }

  #hero-inner {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .container,
  #hero .container-fluid {
    padding-top: 68px;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }

  #hero-inner {
    text-align: center;
  }

  #hero-inner .container,
  #hero-inner .container-fluid {
    padding-top: 68px;
  }

  #hero-inner .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero-inner .hero-img {
    text-align: center;
  }

  #hero-inner .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 60%;
  }

  #hero-inner h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #hero-inner h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero-inner .hero-img img {
    width: 60%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero-inner .hero-img img {
    width: 80%;
  }
}
/* @media (max-width:768px) {
  .responsive-banner{
    padding: 0 !important;;
  } */
  
}
@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f9f8ff;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

/*.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5846f9;
  bottom: 0;
  left: calc(50% - 25px);
}
*/
.section-title p {
  margin-bottom: 0;
  text-align: justify;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .content h3 {
  font-weight: 600;
  font-size: 32px;
  /* color: #2c4964; */
  color: #8d1b3d;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #8d1b3d;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 50px 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  /* background: linear-gradient(45deg, #5846f9 0%, #7b27d8 100%); */
  background: #8d1b3d;
  position: relative;
}

.about .content .read-more:hover {
  /* background: linear-gradient(180deg, #5846f9 0%, #7b27d8 100%); */
  background: #8d1b3d;
}

.about .content .read-more i {
  font-size: 22px;
  position: absolute;
  right: 20px;
  top: 12px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: linear-gradient(90deg,
      rgba(88, 70, 249, 0.5) 0%,
      rgba(123, 39, 216, 0.5) 100%),
    url("../img/counts-bg.png") center center no-repeat;
  padding: 80px 0 60px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  /* color: #2c4964; */
  color: #8d1b3d;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .iconbox-blue i {
  /* color: #47aeff; */
  color: #8d1b3d;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #fff;
}

.services .iconbox-orange i {
  /* color: #ffa76e; */
  color: #8d1b3d;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #fff;
  ;
}

.services .iconbox-pink i {
  color: #8d1b3d;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #fff;
}

.services .iconbox-yellow i {
  /* color: #ffbb2c; */
  color: #8d1b3d;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #fff;
}

.services .iconbox-red i {
  /* color: #ff5828; */
  color: #8d1b3d;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #fff;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #8d1b3d;
}

.features .icon-box p {
  font-size: 15px;
  /* color: #848484; */
  color: #8d1b3d;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  max-height: 350px;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  /* color: #2c4964; */
  color: #8d1b3d;

}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #b1a9fc;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #fff;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}

.testimonials .owl-nav,
.testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  /* background-color: #5846f9 !important; */
  background-color: #8d1b3d;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  /* background: #5846f9; */
  background: #8d1b3d;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  /* background: rgba(88, 70, 249, 0.8); */
  background: #8d1b3d;
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  bottom: 10%;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 48px);
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: calc(50% - 50px);
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  /* color: #2c4964; */
  color: #8d1b3d;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  /* color: #5846f9; */
  color: #8d1b3d;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  /* color: #5846f9; */
  color: #8d1b3d;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  /* background: linear-gradient(42deg, #5846f9 0%, #7b27d8 100%); */
  background: #8d1b3d;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 15px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  /* background: linear-gradient(180deg, #5846f9 0%, #7b27d8 100%); */
  background: #8d1b3d;
}

.pricing .featured h3 {
  color: #fff;
  /* background: #5846f9; */
  background: #8d1b3d;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  /* background: #5846f9; */
  background: #8d1b3d;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  /* background: linear-gradient(42deg, #5846f9 0%, #7b27d8 100%); */
  background: #8d1b3d;
  /*background-color: #A0C2DE;*/
}

.faq .section-title h2,
.faq .section-title p {
  color: #fff;
}

.faq .section-title h2::after {
  background: rgba(255, 255, 255, 0.6);
}

.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  /* color: #8577fb; */
  color: #8d1b3d;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  /* color: #2c4964; */
  color: #8d1b3d;
}

.faq .faq-list a.collapsed:hover {
  /* color: #5846f9; */
  color: #8d1b3d;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #8d1b3d;
  border-radius: 50%;
  padding: 8px;
}

/*hover porperty*/
/*hover end*/
.contact .info-box h3 {
  font-size: 20px;
  color: #2c4964;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  /* background: #ed3c0d; */
  background: #8d1b3d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  /* border-color: #5846f9; */
  border-color: #8d1b3d;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  /* background: #5846f9; */
  background: #8d1b3d;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
  /* background: #7b27d8; */
  background: #8d1b3d;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f2f6f9;
  min-height: 40px;
  margin-top: 68px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  /* color: #3c6387; */
  color: #8d1b3d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding: 30px 0 60px 0;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  /* background-color: #5846f9 !important; */
  background-color: #8d1b3d;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: linear-gradient(45deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(141, 27, 61, 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}

#footer .footer-top {
  padding: 30px 0 30px 0;
  position: relative;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: underline;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid white;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  /* background: rgba(123, 39, 216, 0.8); */
  background: #8d1b3d;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  /* background: #5846f9; */
  background: #8d1b3d;
}

#footer .copyright-wrap {
  /* border-top: 1px solid #8577fb; */
  border-top: #8d1b3d;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: rgba(44, 73, 100, 0.5);
  color: #fff;
  text-decoration: none;
}

/*Pratik CSS*/
.circle img {
  transition: 1s ease;
}

.circle img:hover {
  border: 1px solid #e2e2e3;
  border-radius: 40%;
  transition: 1s ease;
  box-shadow: 10px 10px 10px 5px #e2e2e3;
}

/* <<<<<<< HEAD=======>>>>>>>bf8bc5ea9b7fa3a74860ec288f13b4455b8da303 .rotate img {
  transition: 1s ease;
} */

.rotate img:hover {
  -webkit-transform: rotateZ(10deg);
  -ms-transform: rotateZ(10deg);
  transform: rotateZ(10deg);
  transition: 1s ease;
}

.wt1-mynewseparator.style-square {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-width: 3px;
  border-style: solid;
  border-color: #db0507;
}

.wt1-mynewseparator.style-square .mynewseparator-left,
.wt1-mynewseparator.style-square .mynewseparator-right {
  height: 3px;
  background-color: #db0507;
}

.wt1-mynewseparator.style-square2 .mynewseparator-left,
.wt1-mynewseparator.style-square2 .mynewseparator-right {
  height: 3px;
  background-color: #db0057;
}

.wt1-mynewseparator.style-square3 .mynewseparator-left,
.wt1-mynewseparator.style-square3 .mynewseparator-right {
  height: 3px;
  background-color: #db0057;
}

.wt1-mynewseparator.style-square2 {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-width: 3px;
  border-style: solid;
  border-color: #000;
}

.wt1-mynewseparator.style-square3 {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-width: 3px;
  border-style: solid;
  border-color: #1806b9;
  opacity: 0.8;
}

.wt1-mynewseparator.style-square.has-bg {
  border-color: #fff;
}

.wt1-mynewseparator {
  display: inline-block;
  height: 3px;
  width: 50px;
  position: relative;
}

.wt1-mynewseparator .mynewseparator-left,
.wt1-mynewseparator .mynewseparator-right {
  position: absolute;
  top: 50%;
  width: 70px;
  height: 2px;
  margin-top: -1px;
}

.wt1-mynewseparator .mynewseparator-left {
  left: -80px;
}

.wt1-mynewseparator .mynewseparator-right {
  right: -80px;
}

.img-fluid {
  height: 400px;
}

.shrink img {
  transition: 1s ease;
}

.shrink img:hover {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  transition: 1s ease;
  /*border:1px solid #e2e2e3;*/
  border-radius: 50px;
  box-shadow: 10px 10px 10px 5px #e2e2e3;
}

.shadow img {
  transition: .5s ease;
}

.shadow img:hover {
  box-shadow:
    1px 1px #373737,
    2px 2px #373737,
    3px 3px #373737,
    4px 4px #373737,
    5px 5px #373737,
    6px 6px #373737;
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
  transition: .5s ease;
}

.border {
  border: none !important;
}

.border img {
  transition: .5s ease;
}

.border img:hover {
  box-shadow: 0 0 0 10px #000000;
  transition: .5s ease;
}

.flip-card {
  background-color: transparent;
  width: 350px;
  height: 400px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #bbb;
  color: brown;
}

.flip-card-back {
  /* background-color: #2980b9; */
  background-color: #8d1b3d;
  color: brown;
  transform: rotateY(180deg);
  /*word-break: break-all;*/
  margin: 0;
  padding: 2rem;
}

.card-group {
  display: flex;
  justify-content: space-between;
}



/* navbar css */
#header {
  background-color: #ffffff;
}

#header .logo img {
  max-height: 80px;
}

.header-scrolled .logo img {
  max-height: 50px;
}

.header-scrolled .nav-menu a {
  color: rgba(44, 73, 100, 0.7);
}

.header-scrolled .nav-menu>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #8d1b3d;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.header-scrolled .nav-menu a:hover:before,
.header-scrolled .nav-menu li:hover>a:before,
.header-scrolled .nav-menu .active>a:before {
  visibility: visible;
  width: 100%;
}

.header-scrolled .nav-menu a:hover,
.header-scrolled .nav-menu .active>a,
.header-scrolled .nav-menu li:hover>a {
  color: #8d1b3d;
}


/* portfolio cards */

.port-card-image {
  height: 280px;
  border-radius: 10px;
}

.port-card-body {
  min-height: 425px;
  padding: 2rem;
}

.port-card {
  border-radius: 10px;
}

.port-card-icon i {
  color: #8D1B3D;
  font-size: 50px;
  transition: 0.5s;
  position: relative;
}

.port-card-icon {
  background-color: #fff;
  padding: 5px;
  border-radius: 10px;
  position: absolute;
  top: -30px;
  left: 20px;
}

.port-card-body .card-title {
  font-weight: 600;
  color: #2c4964;
}

.strength-col {
  padding: 2rem;
}

.strength-col img {
  max-width: 50px;
  margin-bottom: 20px;
}

.strength-row h4 {
  color: #8d1b3d;
  margin-bottom: 20px;
}

#particle-canvas {
  width: 100%;
  height: 100%;
}

.banner-name {
  color: #8d1b3d;
  font-weight: 900;
  font-size: 3rem;
}

.banner-textbox {
  padding: 4rem 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  position: absolute;
  top: 60vh;
  right: 10vw;
  width: max-content;
  z-index: 1;
}



/* vertical slider */
/* 
.carousel-inner,
.carousel,
.carousel-item,
.fill {
  height: 100%;
  min-height: 400px;
  width: 100%;
  background-position: center center;
  background-size: cover;
}

.slide-wrapper {
  display: inline;
}

.slide-wrapper .container {
  padding: 0;
} */


/*------------------------------ vertical bootstrap slider----------------------------*/

/* .carousel-inner>.carousel-item.carousel-item-next,
.carousel-inner>.carousel-item.active.carousel-item-right {
  transform: translate3d(0, 100%, 0);
  -webkit-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  top: 0;

}

.carousel-inner>.carousel-item.carousel-item-prev,
.carousel-inner>.carousel-item.active.carousel-item-left {
  transform: translate3d(0, -100%, 0);
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  top: 0;

}

.carousel-inner>.carousel-item.next.carousel-item-left,
.carousel-inner>.carousel-item.carousel-item-prev.carousel-item-right,
.carousel-inner>.carousel-item.active {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  ;
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  top: 0;

} */

/*------------------------------- vertical carousel indicators ------------------------------*/
/* .carousel-indicators {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 20px;
  right: -25px;
  left: auto;
  width: auto;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.carousel-indicators li {
  display: block;
  margin-bottom: 5px;
  border: 1px solid #8d1b3d;

}

.carousel-indicators li.active {
  margin-bottom: 5px;
  background: #8d1b3d;

} */

/** about **/

.about .about_box {
  background: #191918;
  padding: 55px 40px;
  min-height: 680px;
}

.about .about_box h3 {
  font-size: 30px;
  line-height: 28px;
  color: #fff;
  font-weight: 500;
  padding: 0;
  padding-bottom: 30px;
}

.about .about_box p {
  color: #ffff;
  font-size: 17px;
  line-height: 28px;
  /* padding: 30px 0px; */
  font-weight: 400;
}

.about .about_box a {
  color: #fff;
  font-size: 22px;
  line-height: 29px;
}

.about .about_box a:hover {
  color: #e7bb0b;
}

.about .about_img {
  height: 100%;
  background: #8d1b3d;
  margin-top: 90px;
}

.about .about_img figure {
  margin: 0;
  margin-right: 0px;
  padding: 92px 0px 0px 60px;
  margin-right: -64px;
}

.about_img img {
  max-width: 100%;
  height: auto;
}

/** end about **/


.business-models {
  background: linear-gradient(rgb(139, 27, 61), rgb(139, 27, 61)) 0% 0% / 100% 75% no-repeat;
}

.business-points {
  color: #fff;
  width: 50%;
  margin: 0 auto;
}

.innovation ul li {
  font-size: 16px;
}

/* Feature Section */
.feature_section {
  padding: 80px 0;
  position: relative;
  min-height: 600px;
}

.feature_img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ygj_circle p {
  font-size: 14px;
  font-family: 'robotomedium';
  line-height: 20px;
}

.feature_information {
  padding: 0 30px;
  position: relative;
}

.feature_information li {
  width: 50%;
  float: left;
}

.feature_information li:first-child {
  padding-right: 13%;
  float: left;
}

.feature_information li:nth-child(2) {
  padding-left: 14.4%;
  float: right;
}

.feature_information li.FL1 {
  padding-right: 10%;
  margin-top: 0;
  position: absolute;
  top: 8px;
}

.feature_information li.FL2 {
  position: absolute;
  padding-right: 15.2%;
  top: 213px;
}

.feature_information li.FR2 {
  top: 213px;
  position: absolute;
  right: 5px;
}

.feature_box {
  margin: 0 0 20px 0;
  border-radius: 70px;
  min-height: 136px;
  font-size: 14px;
  font-family: 'robotomedium';
  position: relative;
}

.feature_text h3 {
  font-size: 20px;
  font-family: 'merriweatherregular';
  font-weight: normal;
  color: #8d1b3d;
  margin-bottom: 8px;
}

.feature_box.fb_L {
  padding: 23px 20px 0 23px;
}

.feature_box.fb_R {
  padding: 23px 0px 0 23px;
}

.feature_box .red-color {
  display: inline-block;
}

.feature_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.feature_title img {
  margin: 0 auto;
}

.feature_title h4 {
  font-size: 34px;
  font-family: 'merriweatherbold';
}

.feature_text {
  width: 73.6%;
  float: left;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  line-height: 24px;
}

.sm-feature_block .feature_text.a-left {
  left: 25%;
}

.sm-feature_block .feature_text.a-right {
  right: 31%;
}

.feature_text.a-right {
  right: 26%;
}

.feature_text.a-left {
  left: 25%;
}

.featurebox_img {
  width: 24%;
  float: left;
}

.featurebox_img img {
  max-width: 100px;
}

.a-right {
  text-align: right;
  padding-right: 20px;
}

.a-left {
  text-align: left;
  padding-left: 10px;
}

.feature_box.fb_L.sm-feature_block {
  width: 100%;
  float: right;
}

.feature_box.fb_R.sm-feature_block {
  width: 100%;
  float: left;
}

.feature_information li.FR1 {
  position: absolute;
  right: 40px;
  top: 8px;
}

.feature_icon-bg {
  position: absolute;
  left: 0;
  bottom: 10px;
  z-index: -1;
}

.fb_L.sm-feature_block .feature_text,
.fb_R.sm-feature_block .feature_text {
  width: 67.5%;
}

.fb_L.sm-feature_block .featurebox_img,
.fb_R.sm-feature_block .featurebox_img {
  width: 30%;
}

/* End */

#solutions-slider {
  height: 100%;
  width: 100%;
  /* position: fixed; */
}

#solutions-slider .carousel-wrapper,
#solutionsCarousel {
  height: 100%;
  width: 100%;
  /* position: absolute; */
}

#solutionsCarousel img {
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  width: auto;
  /* height: 80vh; */
}

#solutionsCarousel i {
  position: absolute;
  top: 50%;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}
.fill {
  width: 100%;
  height: 100%;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.5, 1.5);
  }
}

.carousel-inner .carousel-item> .fill {
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}

.carousel-caption {
  top: auto;
  left: 50%;
  transform: translate(-50%, -15%);
  right: auto;
  bottom: 5%;
  padding: 50px;
  background-color: rgba(141, 27, 61, 0.7)
}

.carousel-item {
  -moz-box-shadow: inset 0 0 10px #000000;
  -webkit-box-shadow: inset 0 0 10px #000000;
  box-shadow: inset 0 0 10px #000000;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

#bannerVideo {
  object-fit: cover;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  /* position: fixed; */
  top: 0;
  left: 0;
}

.navEmail {
  text-transform: none !important;
}

.navEmail::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #8d1b3d;
  visibility: hidden !important;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;

}




.Iam {
  padding: 1em;
  font: normal 40px/50px Montserrat, sans-serif;
  color: #fff;
}

.Iam p {
  height: 50px;
  font-family: 'Orbitron', sans-serif;
  /*float: left;*/
  /*margin-right: 0.3em;*/
}

.Iam b {
  float: left;
  overflow: hidden;
  position: relative;
  height: 50px;
  top: 40px;
}

.Iam .innerIam {
  font-family: 'Orbitron', sans-serif;
  display: inline-block;
  color: #8D1B3D;
  position: relative;
  /*white-space: nowrap;*/
  top: 0;
  left: 0;


  /*animation*/
  -webkit-animation: move 5s;
  -moz-animation: move 5s;
  -ms-animation: move 5s;
  -o-animation: move 5s;
  animation: move 5s;
  /*animation-iteration-count*/
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  /*animation-delay*/
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -ms-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}

@keyframes move {
  0% {
    top: 0px;
  }

  20% {
    top: -50px;
  }

  40% {
    top: -100px;
  }

  60% {
    top: -150px;
  }

  80% {
    top: -200px;
  }
}

@-webkit-keyframes move {
  0% {
    top: 0px;
  }

  20% {
    top: -50px;
  }

  40% {
    top: -100px;
  }

  60% {
    top: -150px;
  }

  80% {
    top: -200px;
  }
}

@-moz-keyframes move {
  0% {
    top: 0px;
  }

  20% {
    top: -50px;
  }

  40% {
    top: -100px;
  }

  60% {
    top: -150px;
  }

  80% {
    top: -200px;
  }
}

@-o-keyframes move {
  0% {
    top: 0px;
  }

  20% {
    top: -50px;
  }

  40% {
    top: -100px;
  }

  60% {
    top: -150px;
  }

  80% {
    top: -200px;
  }
}

@keyframes move {
  0% {
    top: 0px;
  }

  20% {
    top: -50px;
  }

  40% {
    top: -100px;
  }

  60% {
    top: -150px;
  }

  80% {
    top: -200px;
  }
}

.slider-text {
  position: absolute;
  bottom: 0;
  left: 0;
  /*width: 35%;*/
  /*padding: 2em;*/
  display: inline-block;
  background: rgba(0, 0, 0, .19);
  height: 100%;

}


/*sroll down arrow start */


.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: block;
  text-align: center;
  font-size: 25px;
  z-index: 100;
  text-decoration: none;
  text-shadow: 0;
  width: 25px;
  height: 25px;
  /*border-bottom: 3px solid #48b2e8;*/
  /*border-right: 3px solid #48b2e8;*/
  z-index: 9;
  left: 50%;
  -webkit-transform: translate(-50%, 0%) rotate(45deg);
  -moz-transform: translate(-50%, 0%) rotate(45deg);
  transform: translate(-50%, 0%) rotate(45deg);
  -webkit-animation: fade_move_down 4s ease-in-out infinite;
  -moz-animation: fade_move_down 4s ease-in-out infinite;
  animation: fade_move_down 4s ease-in-out infinite;
}


/*animated scroll arrow animation*/
@-webkit-keyframes fade_move_down {
  0% {
    -webkit-transform: translate(0, -10px) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(0, 10px) rotate(45deg);
    opacity: 0;
  }
}

@-moz-keyframes fade_move_down {
  0% {
    -moz-transform: translate(0, -10px) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -moz-transform: translate(0, 10px) rotate(45deg);
    opacity: 0;
  }
}

@keyframes fade_move_down {
  0% {
    transform: translate(0, -10px) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 10px) rotate(45deg);
    opacity: 0;
  }
}


.statement-ul li::before {
  content: "\2022";
  color: #8D1B3D;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.statement-section {
  background: linear-gradient(45deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(141, 27, 61, 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}

.region-section {
  background: linear-gradient(45deg,
      rgba(141, 27, 61, 0.9) 0%,
      rgba(255, 255, 255, 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}

.industries-section-main {
  background: linear-gradient(45deg,
      rgba(141, 27, 61, 0.9) 0%,
      rgba(255, 255, 255, 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 3em 0;
}

.industries-section {
  background: #f9f8ff;
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.4); */
  padding: 2rem;
  border-radius: 10px;
}

.industries-section .title-image img {
  width: 60px;
  height: 60px;
}

.industries-section .title-text {
  color: #8D1B3D;
}

.industries-section .title-image {
  padding: 15px;
  background-color: white;
  border-radius: 50%;
  width: max-content;
  height: max-content;
}

.industries-section .services img {
  max-width: 30px;
  max-height: 30px;
  color: #8D1B3D;
}

.industries-section .services div {
  padding: 10px;
  background-color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.industries-section .services p {
  font-weight: normal;
  /* color: #8D1B3D; */
}

.regions-countries p {
  position: absolute;
  bottom: 20px;
  color: white;
}

.regions-countries {
  min-height: 320px;
  flex-direction: column;
}

.solutions-midbanner-ul {
  color: #fff;
  margin-left: 2em;
}

.solutions-midbanner-ul li {
  color: #fff;
}

.solutions-intro p {
  text-align: justify;
}

.statement-ul {
  text-align: justify;
  list-style-type: none;
}

.carousel-item {
  height: 80vh;
}

#clients-logo img{
  height: 85px;
  margin-top: 10px;
}
#clients-logo{
  margin-bottom: 100px;
}/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #8d1b3d;
}

a:hover {
  color: #8577fb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

p {
  margin: 0;
}

* {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  width: auto \9;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #8d1b3d;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #7b27d8;
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #8d1b3d;
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo a {
  color: #fff;
}

/* #header .logo a:hover {
  cursor: context-menu;
} */

/* #header .logo img {
  max-height: 40px;
} */

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }

  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul {
  display: flex;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 30px;
}

/* .nav-menu ul li {
  width: 25%;
  text-align: center;
} */

.nav-menu a {
  display: block;
  position: relative;
  color: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  font-size: 16px;
  font-weight: normal;
  padding: 0 3px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
}

.nav-menu>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #8d1b3d;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .active>a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #8d1b3d;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 10%;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #2c4964;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: #8d1b3d;
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  color: #fff;
  border-radius: 5px;
  padding: 6px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.get-started-btn:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 30px;
  top: 35px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #000;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #2c4964;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #8d1b3d;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  /* background: rgba(28, 47, 65, 0.6); */
  background: #8d1b3d;
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #000;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  padding: 0;
  /* background: linear-gradient(45deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(141, 27, 61, 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover; */
}

#hero .container,
#hero .container-fluid {
  padding-top: 84px;
}

#hero h1 {
  margin: 0;
  font-size: 2em;
  font-weight: 700;
  /* line-height: 64px; */
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  border: 2px solid #fff;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #8d1b3d;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero-inner {
  width: 100%;
  height: 70vh;
  padding: 0;
}

#hero-inner .container,
#hero-inner .container-fluid {
  padding-top: 84px;
}

#hero-inner h1 {
  margin: 0;
  font-size: 2em;
  font-weight: 700;
  /* line-height: 64px; */
  color: #fff;
}

#hero-inner h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 20px;
}

.btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 15px;
  color: #fff;
  border: 2px solid #fff;
}

.btn-learn-more:hover {
  background: #fff;
  color: #8d1b3d;
}

#hero-inner .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  border: 2px solid #fff;
}

#hero-inner .btn-get-started:hover {
  background: #fff;
  color: #8d1b3d;
}

#hero-inner .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }

  #hero-inner {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .container,
  #hero .container-fluid {
    padding-top: 68px;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }

  #hero-inner {
    text-align: center;
  }

  #hero-inner .container,
  #hero-inner .container-fluid {
    padding-top: 68px;
  }

  #hero-inner .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero-inner .hero-img {
    text-align: center;
  }

  #hero-inner .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 60%;
  }

  #hero-inner h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #hero-inner h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero-inner .hero-img img {
    width: 60%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero-inner .hero-img img {
    width: 80%;
  }
}
/* @media (max-width:768px) {
  .responsive-banner{
    padding: 0 !important;;
  } */
  
}
@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f9f8ff;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

/*.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5846f9;
  bottom: 0;
  left: calc(50% - 25px);
}
*/
.section-title p {
  margin-bottom: 0;
  text-align: justify;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .content h3 {
  font-weight: 600;
  font-size: 32px;
  /* color: #2c4964; */
  color: #8d1b3d;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #8d1b3d;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 50px 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  /* background: linear-gradient(45deg, #5846f9 0%, #7b27d8 100%); */
  background: #8d1b3d;
  position: relative;
}

.about .content .read-more:hover {
  /* background: linear-gradient(180deg, #5846f9 0%, #7b27d8 100%); */
  background: #8d1b3d;
}

.about .content .read-more i {
  font-size: 22px;
  position: absolute;
  right: 20px;
  top: 12px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: linear-gradient(90deg,
      rgba(88, 70, 249, 0.5) 0%,
      rgba(123, 39, 216, 0.5) 100%),
    url("../img/counts-bg.png") center center no-repeat;
  padding: 80px 0 60px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  /* color: #2c4964; */
  color: #8d1b3d;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .iconbox-blue i {
  /* color: #47aeff; */
  color: #8d1b3d;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #fff;
}

.services .iconbox-orange i {
  /* color: #ffa76e; */
  color: #8d1b3d;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #fff;
  ;
}

.services .iconbox-pink i {
  color: #8d1b3d;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #fff;
}

.services .iconbox-yellow i {
  /* color: #ffbb2c; */
  color: #8d1b3d;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #fff;
}

.services .iconbox-red i {
  /* color: #ff5828; */
  color: #8d1b3d;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #fff;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #8d1b3d;
}

.features .icon-box p {
  font-size: 15px;
  /* color: #848484; */
  color: #8d1b3d;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  max-height: 350px;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  /* color: #2c4964; */
  color: #8d1b3d;

}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #b1a9fc;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #fff;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}

.testimonials .owl-nav,
.testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  /* background-color: #5846f9 !important; */
  background-color: #8d1b3d;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  /* background: #5846f9; */
  background: #8d1b3d;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  /* background: rgba(88, 70, 249, 0.8); */
  background: #8d1b3d;
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  bottom: 10%;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 48px);
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: calc(50% - 50px);
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  /* color: #2c4964; */
  color: #8d1b3d;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  /* color: #5846f9; */
  color: #8d1b3d;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  /* color: #5846f9; */
  color: #8d1b3d;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  /* background: linear-gradient(42deg, #5846f9 0%, #7b27d8 100%); */
  background: #8d1b3d;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 15px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  /* background: linear-gradient(180deg, #5846f9 0%, #7b27d8 100%); */
  background: #8d1b3d;
}

.pricing .featured h3 {
  color: #fff;
  /* background: #5846f9; */
  background: #8d1b3d;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  /* background: #5846f9; */
  background: #8d1b3d;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  /* background: linear-gradient(42deg, #5846f9 0%, #7b27d8 100%); */
  background: #8d1b3d;
  /*background-color: #A0C2DE;*/
}

.faq .section-title h2,
.faq .section-title p {
  color: #fff;
}

.faq .section-title h2::after {
  background: rgba(255, 255, 255, 0.6);
}

.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  /* color: #8577fb; */
  color: #8d1b3d;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  /* color: #2c4964; */
  color: #8d1b3d;
}

.faq .faq-list a.collapsed:hover {
  /* color: #5846f9; */
  color: #8d1b3d;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #8d1b3d;
  border-radius: 50%;
  padding: 8px;
}

/*hover porperty*/
/*hover end*/
.contact .info-box h3 {
  font-size: 20px;
  color: #2c4964;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  /* background: #ed3c0d; */
  background: #8d1b3d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  /* border-color: #5846f9; */
  border-color: #8d1b3d;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  /* background: #5846f9; */
  background: #8d1b3d;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
  /* background: #7b27d8; */
  background: #8d1b3d;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f2f6f9;
  min-height: 40px;
  margin-top: 68px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  /* color: #3c6387; */
  color: #8d1b3d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding: 30px 0 60px 0;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  /* background-color: #5846f9 !important; */
  background-color: #8d1b3d;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: linear-gradient(45deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(141, 27, 61, 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}

#footer .footer-top {
  padding: 30px 0 30px 0;
  position: relative;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: underline;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid white;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  /* background: rgba(123, 39, 216, 0.8); */
  background: #8d1b3d;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  /* background: #5846f9; */
  background: #8d1b3d;
}

#footer .copyright-wrap {
  /* border-top: 1px solid #8577fb; */
  border-top: #8d1b3d;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: rgba(44, 73, 100, 0.5);
  color: #fff;
  text-decoration: none;
}

/*Pratik CSS*/
.circle img {
  transition: 1s ease;
}

.circle img:hover {
  border: 1px solid #e2e2e3;
  border-radius: 40%;
  transition: 1s ease;
  box-shadow: 10px 10px 10px 5px #e2e2e3;
}

/* <<<<<<< HEAD=======>>>>>>>bf8bc5ea9b7fa3a74860ec288f13b4455b8da303 .rotate img {
  transition: 1s ease;
} */

.rotate img:hover {
  -webkit-transform: rotateZ(10deg);
  -ms-transform: rotateZ(10deg);
  transform: rotateZ(10deg);
  transition: 1s ease;
}

.wt1-mynewseparator.style-square {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-width: 3px;
  border-style: solid;
  border-color: #db0507;
}

.wt1-mynewseparator.style-square .mynewseparator-left,
.wt1-mynewseparator.style-square .mynewseparator-right {
  height: 3px;
  background-color: #db0507;
}

.wt1-mynewseparator.style-square2 .mynewseparator-left,
.wt1-mynewseparator.style-square2 .mynewseparator-right {
  height: 3px;
  background-color: #db0057;
}

.wt1-mynewseparator.style-square3 .mynewseparator-left,
.wt1-mynewseparator.style-square3 .mynewseparator-right {
  height: 3px;
  background-color: #db0057;
}

.wt1-mynewseparator.style-square2 {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-width: 3px;
  border-style: solid;
  border-color: #000;
}

.wt1-mynewseparator.style-square3 {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-width: 3px;
  border-style: solid;
  border-color: #1806b9;
  opacity: 0.8;
}

.wt1-mynewseparator.style-square.has-bg {
  border-color: #fff;
}

.wt1-mynewseparator {
  display: inline-block;
  height: 3px;
  width: 50px;
  position: relative;
}

.wt1-mynewseparator .mynewseparator-left,
.wt1-mynewseparator .mynewseparator-right {
  position: absolute;
  top: 50%;
  width: 70px;
  height: 2px;
  margin-top: -1px;
}

.wt1-mynewseparator .mynewseparator-left {
  left: -80px;
}

.wt1-mynewseparator .mynewseparator-right {
  right: -80px;
}

.img-fluid {
  height: 400px;
}

.shrink img {
  transition: 1s ease;
}

.shrink img:hover {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  transition: 1s ease;
  /*border:1px solid #e2e2e3;*/
  border-radius: 50px;
  box-shadow: 10px 10px 10px 5px #e2e2e3;
}

.shadow img {
  transition: .5s ease;
}

.shadow img:hover {
  box-shadow:
    1px 1px #373737,
    2px 2px #373737,
    3px 3px #373737,
    4px 4px #373737,
    5px 5px #373737,
    6px 6px #373737;
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
  transition: .5s ease;
}

.border {
  border: none !important;
}

.border img {
  transition: .5s ease;
}

.border img:hover {
  box-shadow: 0 0 0 10px #000000;
  transition: .5s ease;
}

.flip-card {
  background-color: transparent;
  width: 350px;
  height: 400px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #bbb;
  color: brown;
}

.flip-card-back {
  /* background-color: #2980b9; */
  background-color: #8d1b3d;
  color: brown;
  transform: rotateY(180deg);
  /*word-break: break-all;*/
  margin: 0;
  padding: 2rem;
}

.card-group {
  display: flex;
  justify-content: space-between;
}



/* navbar css */
#header {
  background-color: #ffffff;
}

#header .logo img {
  max-height: 80px;
}

.header-scrolled .logo img {
  max-height: 50px;
}

.header-scrolled .nav-menu a {
  color: rgba(44, 73, 100, 0.7);
}

.header-scrolled .nav-menu>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #8d1b3d;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.header-scrolled .nav-menu a:hover:before,
.header-scrolled .nav-menu li:hover>a:before,
.header-scrolled .nav-menu .active>a:before {
  visibility: visible;
  width: 100%;
}

.header-scrolled .nav-menu a:hover,
.header-scrolled .nav-menu .active>a,
.header-scrolled .nav-menu li:hover>a {
  color: #8d1b3d;
}


/* portfolio cards */

.port-card-image {
  height: 280px;
  border-radius: 10px;
}

.port-card-body {
  min-height: 425px;
  padding: 2rem;
}

.port-card {
  border-radius: 10px;
}

.port-card-icon i {
  color: #8D1B3D;
  font-size: 50px;
  transition: 0.5s;
  position: relative;
}

.port-card-icon {
  background-color: #fff;
  padding: 5px;
  border-radius: 10px;
  position: absolute;
  top: -30px;
  left: 20px;
}

.port-card-body .card-title {
  font-weight: 600;
  color: #2c4964;
}

.strength-col {
  padding: 2rem;
}

.strength-col img {
  max-width: 50px;
  margin-bottom: 20px;
}

.strength-row h4 {
  color: #8d1b3d;
  margin-bottom: 20px;
}

#particle-canvas {
  width: 100%;
  height: 100%;
}

.banner-name {
  color: #8d1b3d;
  font-weight: 900;
  font-size: 3rem;
}

.banner-textbox {
  padding: 4rem 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  position: absolute;
  top: 60vh;
  right: 10vw;
  width: max-content;
  z-index: 1;
}



/* vertical slider */
/* 
.carousel-inner,
.carousel,
.carousel-item,
.fill {
  height: 100%;
  min-height: 400px;
  width: 100%;
  background-position: center center;
  background-size: cover;
}

.slide-wrapper {
  display: inline;
}

.slide-wrapper .container {
  padding: 0;
} */


/*------------------------------ vertical bootstrap slider----------------------------*/

/* .carousel-inner>.carousel-item.carousel-item-next,
.carousel-inner>.carousel-item.active.carousel-item-right {
  transform: translate3d(0, 100%, 0);
  -webkit-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  top: 0;

}

.carousel-inner>.carousel-item.carousel-item-prev,
.carousel-inner>.carousel-item.active.carousel-item-left {
  transform: translate3d(0, -100%, 0);
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  top: 0;

}

.carousel-inner>.carousel-item.next.carousel-item-left,
.carousel-inner>.carousel-item.carousel-item-prev.carousel-item-right,
.carousel-inner>.carousel-item.active {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  ;
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  top: 0;

} */

/*------------------------------- vertical carousel indicators ------------------------------*/
/* .carousel-indicators {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 20px;
  right: -25px;
  left: auto;
  width: auto;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.carousel-indicators li {
  display: block;
  margin-bottom: 5px;
  border: 1px solid #8d1b3d;

}

.carousel-indicators li.active {
  margin-bottom: 5px;
  background: #8d1b3d;

} */

/** about **/

.about .about_box {
  background: #191918;
  padding: 55px 40px;
  min-height: 680px;
}

.about .about_box h3 {
  font-size: 30px;
  line-height: 28px;
  color: #fff;
  font-weight: 500;
  padding: 0;
  padding-bottom: 30px;
}

.about .about_box p {
  color: #ffff;
  font-size: 17px;
  line-height: 28px;
  /* padding: 30px 0px; */
  font-weight: 400;
}

.about .about_box a {
  color: #fff;
  font-size: 22px;
  line-height: 29px;
}

.about .about_box a:hover {
  color: #e7bb0b;
}

.about .about_img {
  height: 100%;
  background: #8d1b3d;
  margin-top: 90px;
}

.about .about_img figure {
  margin: 0;
  margin-right: 0px;
  padding: 92px 0px 0px 60px;
  margin-right: -64px;
}

.about_img img {
  max-width: 100%;
  height: auto;
}

/** end about **/


.business-models {
  background: linear-gradient(rgb(139, 27, 61), rgb(139, 27, 61)) 0% 0% / 100% 75% no-repeat;
}

.business-points {
  color: #fff;
  width: 50%;
  margin: 0 auto;
}

.innovation ul li {
  font-size: 16px;
}

/* Feature Section */
.feature_section {
  padding: 80px 0;
  position: relative;
  min-height: 600px;
}

.feature_img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ygj_circle p {
  font-size: 14px;
  font-family: 'robotomedium';
  line-height: 20px;
}

.feature_information {
  padding: 0 30px;
  position: relative;
}

.feature_information li {
  width: 50%;
  float: left;
}

.feature_information li:first-child {
  padding-right: 13%;
  float: left;
}

.feature_information li:nth-child(2) {
  padding-left: 14.4%;
  float: right;
}

.feature_information li.FL1 {
  padding-right: 10%;
  margin-top: 0;
  position: absolute;
  top: 8px;
}

.feature_information li.FL2 {
  position: absolute;
  padding-right: 15.2%;
  top: 213px;
}

.feature_information li.FR2 {
  top: 213px;
  position: absolute;
  right: 5px;
}

.feature_box {
  margin: 0 0 20px 0;
  border-radius: 70px;
  min-height: 136px;
  font-size: 14px;
  font-family: 'robotomedium';
  position: relative;
}

.feature_text h3 {
  font-size: 20px;
  font-family: 'merriweatherregular';
  font-weight: normal;
  color: #8d1b3d;
  margin-bottom: 8px;
}

.feature_box.fb_L {
  padding: 23px 20px 0 23px;
}

.feature_box.fb_R {
  padding: 23px 0px 0 23px;
}

.feature_box .red-color {
  display: inline-block;
}

.feature_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.feature_title img {
  margin: 0 auto;
}

.feature_title h4 {
  font-size: 34px;
  font-family: 'merriweatherbold';
}

.feature_text {
  width: 73.6%;
  float: left;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  line-height: 24px;
}

.sm-feature_block .feature_text.a-left {
  left: 25%;
}

.sm-feature_block .feature_text.a-right {
  right: 31%;
}

.feature_text.a-right {
  right: 26%;
}

.feature_text.a-left {
  left: 25%;
}

.featurebox_img {
  width: 24%;
  float: left;
}

.featurebox_img img {
  max-width: 100px;
}

.a-right {
  text-align: right;
  padding-right: 20px;
}

.a-left {
  text-align: left;
  padding-left: 10px;
}

.feature_box.fb_L.sm-feature_block {
  width: 100%;
  float: right;
}

.feature_box.fb_R.sm-feature_block {
  width: 100%;
  float: left;
}

.feature_information li.FR1 {
  position: absolute;
  right: 40px;
  top: 8px;
}

.feature_icon-bg {
  position: absolute;
  left: 0;
  bottom: 10px;
  z-index: -1;
}

.fb_L.sm-feature_block .feature_text,
.fb_R.sm-feature_block .feature_text {
  width: 67.5%;
}

.fb_L.sm-feature_block .featurebox_img,
.fb_R.sm-feature_block .featurebox_img {
  width: 30%;
}

/* End */

#solutions-slider {
  height: 100%;
  width: 100%;
  /* position: fixed; */
}

#solutions-slider .carousel-wrapper,
#solutionsCarousel {
  height: 100%;
  width: 100%;
  /* position: absolute; */
}

#solutionsCarousel img {
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  width: auto;
  /* height: 80vh; */
}

#solutionsCarousel i {
  position: absolute;
  top: 50%;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}
.fill {
  width: 100%;
  height: 100%;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.5, 1.5);
  }
}

.carousel-inner .carousel-item> .fill {
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}

.carousel-caption {
  top: auto;
  left: 50%;
  transform: translate(-50%, -15%);
  right: auto;
  bottom: 5%;
  padding: 50px;
  background-color: rgba(141, 27, 61, 0.7)
}

.carousel-item {
  -moz-box-shadow: inset 0 0 10px #000000;
  -webkit-box-shadow: inset 0 0 10px #000000;
  box-shadow: inset 0 0 10px #000000;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

#bannerVideo {
  object-fit: cover;
  width: 100vw;
  height: 80vh;
  /* position: fixed; */
  top: 0;
  left: 0;
}

.navEmail {
  text-transform: none !important;
}

.navEmail::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #8d1b3d;
  visibility: hidden !important;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;

}




.Iam {
  padding: 1em;
  font: normal 40px/50px Montserrat, sans-serif;
  color: #fff;
}

.Iam p {
  height: 50px;
  font-family: 'Orbitron', sans-serif;
  /*float: left;*/
  /*margin-right: 0.3em;*/
}

.Iam b {
  float: left;
  overflow: hidden;
  position: relative;
  height: 50px;
  top: 40px;
}

.Iam .innerIam {
  font-family: 'Orbitron', sans-serif;
  display: inline-block;
  color: #8D1B3D;
  position: relative;
  /*white-space: nowrap;*/
  top: 0;
  left: 0;


  /*animation*/
  -webkit-animation: move 5s;
  -moz-animation: move 5s;
  -ms-animation: move 5s;
  -o-animation: move 5s;
  animation: move 5s;
  /*animation-iteration-count*/
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  /*animation-delay*/
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -ms-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}

@keyframes move {
  0% {
    top: 0px;
  }

  20% {
    top: -50px;
  }

  40% {
    top: -100px;
  }

  60% {
    top: -150px;
  }

  80% {
    top: -200px;
  }
}

@-webkit-keyframes move {
  0% {
    top: 0px;
  }

  20% {
    top: -50px;
  }

  40% {
    top: -100px;
  }

  60% {
    top: -150px;
  }

  80% {
    top: -200px;
  }
}

@-moz-keyframes move {
  0% {
    top: 0px;
  }

  20% {
    top: -50px;
  }

  40% {
    top: -100px;
  }

  60% {
    top: -150px;
  }

  80% {
    top: -200px;
  }
}

@-o-keyframes move {
  0% {
    top: 0px;
  }

  20% {
    top: -50px;
  }

  40% {
    top: -100px;
  }

  60% {
    top: -150px;
  }

  80% {
    top: -200px;
  }
}

@keyframes move {
  0% {
    top: 0px;
  }

  20% {
    top: -50px;
  }

  40% {
    top: -100px;
  }

  60% {
    top: -150px;
  }

  80% {
    top: -200px;
  }
}

.slider-text {
  position: absolute;
  bottom: 0;
  left: 0;
  /*width: 35%;*/
  /*padding: 2em;*/
  display: inline-block;
  background: rgba(0, 0, 0, .19);
  height: 100%;

}


/*sroll down arrow start */


.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: block;
  text-align: center;
  font-size: 25px;
  z-index: 100;
  text-decoration: none;
  text-shadow: 0;
  width: 25px;
  height: 25px;
  /*border-bottom: 3px solid #48b2e8;*/
  /*border-right: 3px solid #48b2e8;*/
  z-index: 9;
  left: 50%;
  -webkit-transform: translate(-50%, 0%) rotate(45deg);
  -moz-transform: translate(-50%, 0%) rotate(45deg);
  transform: translate(-50%, 0%) rotate(45deg);
  -webkit-animation: fade_move_down 4s ease-in-out infinite;
  -moz-animation: fade_move_down 4s ease-in-out infinite;
  animation: fade_move_down 4s ease-in-out infinite;
}


/*animated scroll arrow animation*/
@-webkit-keyframes fade_move_down {
  0% {
    -webkit-transform: translate(0, -10px) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(0, 10px) rotate(45deg);
    opacity: 0;
  }
}

@-moz-keyframes fade_move_down {
  0% {
    -moz-transform: translate(0, -10px) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -moz-transform: translate(0, 10px) rotate(45deg);
    opacity: 0;
  }
}

@keyframes fade_move_down {
  0% {
    transform: translate(0, -10px) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 10px) rotate(45deg);
    opacity: 0;
  }
}


.statement-ul li::before {
  content: "\2022";
  color: #8D1B3D;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.statement-section {
  background: linear-gradient(45deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(141, 27, 61, 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}

.region-section {
  background: linear-gradient(45deg,
      rgba(141, 27, 61, 0.9) 0%,
      rgba(255, 255, 255, 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}

.industries-section-main {
  background: linear-gradient(45deg,
      rgba(141, 27, 61, 0.9) 0%,
      rgba(255, 255, 255, 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 3em 0;
}

.industries-section {
  background: #f9f8ff;
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.4); */
  padding: 2rem;
  border-radius: 10px;
}

.industries-section .title-image img {
  width: 60px;
  height: 60px;
}

.industries-section .title-text {
  color: #8D1B3D;
}

.industries-section .title-image {
  padding: 15px;
  background-color: white;
  border-radius: 50%;
  width: max-content;
  height: max-content;
}

.industries-section .services img {
  max-width: 30px;
  max-height: 30px;
  color: #8D1B3D;
}

.industries-section .services div {
  padding: 10px;
  background-color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.industries-section .services p {
  font-weight: normal;
  /* color: #8D1B3D; */
}

.regions-countries p {
  position: absolute;
  bottom: 20px;
  color: white;
}

.regions-countries {
  min-height: 320px;
  flex-direction: column;
}

.solutions-midbanner-ul {
  color: #fff;
  margin-left: 2em;
}

.solutions-midbanner-ul li {
  color: #fff;
}

.solutions-intro p {
  text-align: justify;
}

.statement-ul {
  text-align: justify;
  list-style-type: none;
}

.carousel-item {
  height: 80vh;
}

#clients-logo img{
  height: 85px;
  margin-top: 10px;
}
#clients-logo{
  margin-bottom: 100px;
}
  
}
@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f9f8ff;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

/*.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5846f9;
  bottom: 0;
  left: calc(50% - 25px);
}
*/
.section-title p {
  margin-bottom: 0;
  text-align: justify;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .content h3 {
  font-weight: 600;
  font-size: 32px;
  /* color: #2c4964; */
  color: #8d1b3d;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #8d1b3d;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 50px 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  /* background: linear-gradient(45deg, #5846f9 0%, #7b27d8 100%); */
  background: #8d1b3d;
  position: relative;
}

.about .content .read-more:hover {
  /* background: linear-gradient(180deg, #5846f9 0%, #7b27d8 100%); */
  background: #8d1b3d;
}

.about .content .read-more i {
  font-size: 22px;
  position: absolute;
  right: 20px;
  top: 12px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: linear-gradient(90deg,
      rgba(88, 70, 249, 0.5) 0%,
      rgba(123, 39, 216, 0.5) 100%),
    url("../img/counts-bg.png") center center no-repeat;
  padding: 80px 0 60px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  /* color: #2c4964; */
  color: #8d1b3d;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .iconbox-blue i {
  /* color: #47aeff; */
  color: #8d1b3d;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #fff;
}

.services .iconbox-orange i {
  /* color: #ffa76e; */
  color: #8d1b3d;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #fff;
  ;
}

.services .iconbox-pink i {
  color: #8d1b3d;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #fff;
}

.services .iconbox-yellow i {
  /* color: #ffbb2c; */
  color: #8d1b3d;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #fff;
}

.services .iconbox-red i {
  /* color: #ff5828; */
  color: #8d1b3d;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #fff;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #8d1b3d;
}

.features .icon-box p {
  font-size: 15px;
  /* color: #848484; */
  color: #8d1b3d;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  max-height: 350px;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  /* color: #2c4964; */
  color: #8d1b3d;

}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #b1a9fc;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #fff;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}

.testimonials .owl-nav,
.testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  /* background-color: #5846f9 !important; */
  background-color: #8d1b3d;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  /* background: #5846f9; */
  background: #8d1b3d;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  /* background: rgba(88, 70, 249, 0.8); */
  background: #8d1b3d;
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  bottom: 10%;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 48px);
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: calc(50% - 50px);
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  /* color: #2c4964; */
  color: #8d1b3d;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  /* color: #5846f9; */
  color: #8d1b3d;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  /* color: #5846f9; */
  color: #8d1b3d;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  /* background: linear-gradient(42deg, #5846f9 0%, #7b27d8 100%); */
  background: #8d1b3d;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 15px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  /* background: linear-gradient(180deg, #5846f9 0%, #7b27d8 100%); */
  background: #8d1b3d;
}

.pricing .featured h3 {
  color: #fff;
  /* background: #5846f9; */
  background: #8d1b3d;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  /* background: #5846f9; */
  background: #8d1b3d;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  /* background: linear-gradient(42deg, #5846f9 0%, #7b27d8 100%); */
  background: #8d1b3d;
  /*background-color: #A0C2DE;*/
}

.faq .section-title h2,
.faq .section-title p {
  color: #fff;
}

.faq .section-title h2::after {
  background: rgba(255, 255, 255, 0.6);
}

.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  /* color: #8577fb; */
  color: #8d1b3d;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  /* color: #2c4964; */
  color: #8d1b3d;
}

.faq .faq-list a.collapsed:hover {
  /* color: #5846f9; */
  color: #8d1b3d;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #8d1b3d;
  border-radius: 50%;
  padding: 8px;
}

/*hover porperty*/
/*hover end*/
.contact .info-box h3 {
  font-size: 20px;
  color: #2c4964;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  /* background: #ed3c0d; */
  background: #8d1b3d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  /* border-color: #5846f9; */
  border-color: #8d1b3d;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  /* background: #5846f9; */
  background: #8d1b3d;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
  /* background: #7b27d8; */
  background: #8d1b3d;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f2f6f9;
  min-height: 40px;
  margin-top: 68px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  /* color: #3c6387; */
  color: #8d1b3d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding: 30px 0 60px 0;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  /* background-color: #5846f9 !important; */
  background-color: #8d1b3d;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: linear-gradient(45deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(141, 27, 61, 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}

#footer .footer-top {
  padding: 30px 0 30px 0;
  position: relative;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: underline;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid white;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  /* background: rgba(123, 39, 216, 0.8); */
  background: #8d1b3d;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  /* background: #5846f9; */
  background: #8d1b3d;
}

#footer .copyright-wrap {
  /* border-top: 1px solid #8577fb; */
  border-top: #8d1b3d;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: rgba(44, 73, 100, 0.5);
  color: #fff;
  text-decoration: none;
}

/*Pratik CSS*/
.circle img {
  transition: 1s ease;
}

.circle img:hover {
  border: 1px solid #e2e2e3;
  border-radius: 40%;
  transition: 1s ease;
  box-shadow: 10px 10px 10px 5px #e2e2e3;
}

/* <<<<<<< HEAD=======>>>>>>>bf8bc5ea9b7fa3a74860ec288f13b4455b8da303 .rotate img {
  transition: 1s ease;
} */

.rotate img:hover {
  -webkit-transform: rotateZ(10deg);
  -ms-transform: rotateZ(10deg);
  transform: rotateZ(10deg);
  transition: 1s ease;
}

.wt1-mynewseparator.style-square {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-width: 3px;
  border-style: solid;
  border-color: #db0507;
}

.wt1-mynewseparator.style-square .mynewseparator-left,
.wt1-mynewseparator.style-square .mynewseparator-right {
  height: 3px;
  background-color: #db0507;
}

.wt1-mynewseparator.style-square2 .mynewseparator-left,
.wt1-mynewseparator.style-square2 .mynewseparator-right {
  height: 3px;
  background-color: #db0057;
}

.wt1-mynewseparator.style-square3 .mynewseparator-left,
.wt1-mynewseparator.style-square3 .mynewseparator-right {
  height: 3px;
  background-color: #db0057;
}

.wt1-mynewseparator.style-square2 {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-width: 3px;
  border-style: solid;
  border-color: #000;
}

.wt1-mynewseparator.style-square3 {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-width: 3px;
  border-style: solid;
  border-color: #1806b9;
  opacity: 0.8;
}

.wt1-mynewseparator.style-square.has-bg {
  border-color: #fff;
}

.wt1-mynewseparator {
  display: inline-block;
  height: 3px;
  width: 50px;
  position: relative;
}

.wt1-mynewseparator .mynewseparator-left,
.wt1-mynewseparator .mynewseparator-right {
  position: absolute;
  top: 50%;
  width: 70px;
  height: 2px;
  margin-top: -1px;
}

.wt1-mynewseparator .mynewseparator-left {
  left: -80px;
}

.wt1-mynewseparator .mynewseparator-right {
  right: -80px;
}

.img-fluid {
  height: 400px;
}

.shrink img {
  transition: 1s ease;
}

.shrink img:hover {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  transition: 1s ease;
  /*border:1px solid #e2e2e3;*/
  border-radius: 50px;
  box-shadow: 10px 10px 10px 5px #e2e2e3;
}

.shadow img {
  transition: .5s ease;
}

.shadow img:hover {
  box-shadow:
    1px 1px #373737,
    2px 2px #373737,
    3px 3px #373737,
    4px 4px #373737,
    5px 5px #373737,
    6px 6px #373737;
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
  transition: .5s ease;
}

.border {
  border: none !important;
}

.border img {
  transition: .5s ease;
}

.border img:hover {
  box-shadow: 0 0 0 10px #000000;
  transition: .5s ease;
}

.flip-card {
  background-color: transparent;
  width: 350px;
  height: 400px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #bbb;
  color: brown;
}

.flip-card-back {
  /* background-color: #2980b9; */
  background-color: #8d1b3d;
  color: brown;
  transform: rotateY(180deg);
  /*word-break: break-all;*/
  margin: 0;
  padding: 2rem;
}

.card-group {
  display: flex;
  justify-content: space-between;
}



/* navbar css */
#header {
  background-color: #ffffff;
}

#header .logo img {
  max-height: 80px;
}

.header-scrolled .logo img {
  max-height: 50px;
}

.header-scrolled .nav-menu a {
  color: rgba(44, 73, 100, 0.7);
}

.header-scrolled .nav-menu>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #8d1b3d;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.header-scrolled .nav-menu a:hover:before,
.header-scrolled .nav-menu li:hover>a:before,
.header-scrolled .nav-menu .active>a:before {
  visibility: visible;
  width: 100%;
}

.header-scrolled .nav-menu a:hover,
.header-scrolled .nav-menu .active>a,
.header-scrolled .nav-menu li:hover>a {
  color: #8d1b3d;
}


/* portfolio cards */

.port-card-image {
  height: 280px;
  border-radius: 10px;
}

.port-card-body {
  min-height: 425px;
  padding: 2rem;
}

.port-card {
  border-radius: 10px;
}

.port-card-icon i {
  color: #8D1B3D;
  font-size: 50px;
  transition: 0.5s;
  position: relative;
}

.port-card-icon {
  background-color: #fff;
  padding: 5px;
  border-radius: 10px;
  position: absolute;
  top: -30px;
  left: 20px;
}

.port-card-body .card-title {
  font-weight: 600;
  color: #2c4964;
}

.strength-col {
  padding: 2rem;
}

.strength-col img {
  max-width: 50px;
  margin-bottom: 20px;
}

.strength-row h4 {
  color: #8d1b3d;
  margin-bottom: 20px;
}

#particle-canvas {
  width: 100%;
  height: 100%;
}

.banner-name {
  color: #8d1b3d;
  font-weight: 900;
  font-size: 3rem;
}

.banner-textbox {
  padding: 4rem 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  position: absolute;
  top: 60vh;
  right: 10vw;
  width: max-content;
  z-index: 1;
}



/* vertical slider */
/* 
.carousel-inner,
.carousel,
.carousel-item,
.fill {
  height: 100%;
  min-height: 400px;
  width: 100%;
  background-position: center center;
  background-size: cover;
}

.slide-wrapper {
  display: inline;
}

.slide-wrapper .container {
  padding: 0;
} */


/*------------------------------ vertical bootstrap slider----------------------------*/

/* .carousel-inner>.carousel-item.carousel-item-next,
.carousel-inner>.carousel-item.active.carousel-item-right {
  transform: translate3d(0, 100%, 0);
  -webkit-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  top: 0;

}

.carousel-inner>.carousel-item.carousel-item-prev,
.carousel-inner>.carousel-item.active.carousel-item-left {
  transform: translate3d(0, -100%, 0);
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  top: 0;

}

.carousel-inner>.carousel-item.next.carousel-item-left,
.carousel-inner>.carousel-item.carousel-item-prev.carousel-item-right,
.carousel-inner>.carousel-item.active {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  ;
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  top: 0;

} */

/*------------------------------- vertical carousel indicators ------------------------------*/
/* .carousel-indicators {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 20px;
  right: -25px;
  left: auto;
  width: auto;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.carousel-indicators li {
  display: block;
  margin-bottom: 5px;
  border: 1px solid #8d1b3d;

}

.carousel-indicators li.active {
  margin-bottom: 5px;
  background: #8d1b3d;

} */

/** about **/

.about .about_box {
  background: #191918;
  padding: 55px 40px;
  min-height: 680px;
}

.about .about_box h3 {
  font-size: 30px;
  line-height: 28px;
  color: #fff;
  font-weight: 500;
  padding: 0;
  padding-bottom: 30px;
}

.about .about_box p {
  color: #ffff;
  font-size: 17px;
  line-height: 28px;
  /* padding: 30px 0px; */
  font-weight: 400;
}

.about .about_box a {
  color: #fff;
  font-size: 22px;
  line-height: 29px;
}

.about .about_box a:hover {
  color: #e7bb0b;
}

.about .about_img {
  height: 100%;
  background: #8d1b3d;
  margin-top: 90px;
}

.about .about_img figure {
  margin: 0;
  margin-right: 0px;
  padding: 92px 0px 0px 60px;
  margin-right: -64px;
}

.about_img img {
  max-width: 100%;
  height: auto;
}

/** end about **/


.business-models {
  background: linear-gradient(rgb(139, 27, 61), rgb(139, 27, 61)) 0% 0% / 100% 75% no-repeat;
}

.business-points {
  color: #fff;
  width: 50%;
  margin: 0 auto;
}

.innovation ul li {
  font-size: 16px;
}

/* Feature Section */
.feature_section {
  padding: 80px 0;
  position: relative;
  min-height: 600px;
}

.feature_img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ygj_circle p {
  font-size: 14px;
  font-family: 'robotomedium';
  line-height: 20px;
}

.feature_information {
  padding: 0 30px;
  position: relative;
}

.feature_information li {
  width: 50%;
  float: left;
}

.feature_information li:first-child {
  padding-right: 13%;
  float: left;
}

.feature_information li:nth-child(2) {
  padding-left: 14.4%;
  float: right;
}

.feature_information li.FL1 {
  padding-right: 10%;
  margin-top: 0;
  position: absolute;
  top: 8px;
}

.feature_information li.FL2 {
  position: absolute;
  padding-right: 15.2%;
  top: 213px;
}

.feature_information li.FR2 {
  top: 213px;
  position: absolute;
  right: 5px;
}

.feature_box {
  margin: 0 0 20px 0;
  border-radius: 70px;
  min-height: 136px;
  font-size: 14px;
  font-family: 'robotomedium';
  position: relative;
}

.feature_text h3 {
  font-size: 20px;
  font-family: 'merriweatherregular';
  font-weight: normal;
  color: #8d1b3d;
  margin-bottom: 8px;
}

.feature_box.fb_L {
  padding: 23px 20px 0 23px;
}

.feature_box.fb_R {
  padding: 23px 0px 0 23px;
}

.feature_box .red-color {
  display: inline-block;
}

.feature_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.feature_title img {
  margin: 0 auto;
}

.feature_title h4 {
  font-size: 34px;
  font-family: 'merriweatherbold';
}

.feature_text {
  width: 73.6%;
  float: left;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  line-height: 24px;
}

.sm-feature_block .feature_text.a-left {
  left: 25%;
}

.sm-feature_block .feature_text.a-right {
  right: 31%;
}

.feature_text.a-right {
  right: 26%;
}

.feature_text.a-left {
  left: 25%;
}

.featurebox_img {
  width: 24%;
  float: left;
}

.featurebox_img img {
  max-width: 100px;
}

.a-right {
  text-align: right;
  padding-right: 20px;
}

.a-left {
  text-align: left;
  padding-left: 10px;
}

.feature_box.fb_L.sm-feature_block {
  width: 100%;
  float: right;
}

.feature_box.fb_R.sm-feature_block {
  width: 100%;
  float: left;
}

.feature_information li.FR1 {
  position: absolute;
  right: 40px;
  top: 8px;
}

.feature_icon-bg {
  position: absolute;
  left: 0;
  bottom: 10px;
  z-index: -1;
}

.fb_L.sm-feature_block .feature_text,
.fb_R.sm-feature_block .feature_text {
  width: 67.5%;
}

.fb_L.sm-feature_block .featurebox_img,
.fb_R.sm-feature_block .featurebox_img {
  width: 30%;
}

/* End */

#solutions-slider {
  height: 100%;
  width: 100%;
  /* position: fixed; */
}

#solutions-slider .carousel-wrapper,
#solutionsCarousel {
  height: 100%;
  width: 100%;
  /* position: absolute; */
}

#solutionsCarousel img {
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  width: auto;
  /* height: 80vh; */
}

#solutionsCarousel i {
  position: absolute;
  top: 50%;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}
.fill {
  width: 100%;
  height: 100%;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.5, 1.5);
  }
}

.carousel-inner .carousel-item> .fill {
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}

.carousel-caption {
  top: auto;
  left: 50%;
  transform: translate(-50%, -15%);
  right: auto;
  bottom: 5%;
  padding: 50px;
  background-color: rgba(141, 27, 61, 0.7)
}

.carousel-item {
  -moz-box-shadow: inset 0 0 10px #000000;
  -webkit-box-shadow: inset 0 0 10px #000000;
  box-shadow: inset 0 0 10px #000000;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

#bannerVideo {
  object-fit: cover;
  width: 100vw;
  height: 80vh;
  /* position: fixed; */
  top: 0;
  left: 0;
}

.navEmail {
  text-transform: none !important;
}

.navEmail::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #8d1b3d;
  visibility: hidden !important;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;

}




.Iam {
  padding: 1em;
  font: normal 40px/50px Montserrat, sans-serif;
  color: #fff;
}

.Iam p {
  height: 50px;
  font-family: 'Orbitron', sans-serif;
  /*float: left;*/
  /*margin-right: 0.3em;*/
}

.Iam b {
  float: left;
  overflow: hidden;
  position: relative;
  height: 50px;
  top: 40px;
}

.Iam .innerIam {
  font-family: 'Orbitron', sans-serif;
  display: inline-block;
  color: #8D1B3D;
  position: relative;
  /*white-space: nowrap;*/
  top: 0;
  left: 0;


  /*animation*/
  -webkit-animation: move 5s;
  -moz-animation: move 5s;
  -ms-animation: move 5s;
  -o-animation: move 5s;
  animation: move 5s;
  /*animation-iteration-count*/
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  /*animation-delay*/
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -ms-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}

@keyframes move {
  0% {
    top: 0px;
  }

  20% {
    top: -50px;
  }

  40% {
    top: -100px;
  }

  60% {
    top: -150px;
  }

  80% {
    top: -200px;
  }
}

@-webkit-keyframes move {
  0% {
    top: 0px;
  }

  20% {
    top: -50px;
  }

  40% {
    top: -100px;
  }

  60% {
    top: -150px;
  }

  80% {
    top: -200px;
  }
}

@-moz-keyframes move {
  0% {
    top: 0px;
  }

  20% {
    top: -50px;
  }

  40% {
    top: -100px;
  }

  60% {
    top: -150px;
  }

  80% {
    top: -200px;
  }
}

@-o-keyframes move {
  0% {
    top: 0px;
  }

  20% {
    top: -50px;
  }

  40% {
    top: -100px;
  }

  60% {
    top: -150px;
  }

  80% {
    top: -200px;
  }
}

@keyframes move {
  0% {
    top: 0px;
  }

  20% {
    top: -50px;
  }

  40% {
    top: -100px;
  }

  60% {
    top: -150px;
  }

  80% {
    top: -200px;
  }
}

.slider-text {
  position: absolute;
  bottom: 0;
  left: 0;
  /*width: 35%;*/
  /*padding: 2em;*/
  display: inline-block;
  background: rgba(0, 0, 0, .19);
  height: 100%;

}


/*sroll down arrow start */


.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: block;
  text-align: center;
  font-size: 25px;
  z-index: 100;
  text-decoration: none;
  text-shadow: 0;
  width: 25px;
  height: 25px;
  /*border-bottom: 3px solid #48b2e8;*/
  /*border-right: 3px solid #48b2e8;*/
  z-index: 9;
  left: 50%;
  -webkit-transform: translate(-50%, 0%) rotate(45deg);
  -moz-transform: translate(-50%, 0%) rotate(45deg);
  transform: translate(-50%, 0%) rotate(45deg);
  -webkit-animation: fade_move_down 4s ease-in-out infinite;
  -moz-animation: fade_move_down 4s ease-in-out infinite;
  animation: fade_move_down 4s ease-in-out infinite;
}


/*animated scroll arrow animation*/
@-webkit-keyframes fade_move_down {
  0% {
    -webkit-transform: translate(0, -10px) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(0, 10px) rotate(45deg);
    opacity: 0;
  }
}

@-moz-keyframes fade_move_down {
  0% {
    -moz-transform: translate(0, -10px) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -moz-transform: translate(0, 10px) rotate(45deg);
    opacity: 0;
  }
}

@keyframes fade_move_down {
  0% {
    transform: translate(0, -10px) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 10px) rotate(45deg);
    opacity: 0;
  }
}


.statement-ul li::before {
  content: "\2022";
  color: #8D1B3D;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.statement-section {
  background: linear-gradient(45deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(141, 27, 61, 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}

.region-section {
  background: linear-gradient(45deg,
      rgba(141, 27, 61, 0.9) 0%,
      rgba(255, 255, 255, 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}

.industries-section-main {
  background: linear-gradient(45deg,
      rgba(141, 27, 61, 0.9) 0%,
      rgba(255, 255, 255, 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 3em 0;
}

.industries-section {
  background: #f9f8ff;
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.4); */
  padding: 2rem;
  border-radius: 10px;
}

.industries-section .title-image img {
  width: 60px;
  height: 60px;
}

.industries-section .title-text {
  color: #8D1B3D;
}

.industries-section .title-image {
  padding: 15px;
  background-color: white;
  border-radius: 50%;
  width: max-content;
  height: max-content;
}

.industries-section .services img {
  max-width: 30px;
  max-height: 30px;
  color: #8D1B3D;
}

.industries-section .services div {
  padding: 10px;
  background-color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.industries-section .services p {
  font-weight: normal;
  /* color: #8D1B3D; */
}

.regions-countries p {
  position: absolute;
  bottom: 20px;
  color: white;
}

.regions-countries {
  min-height: 320px;
  flex-direction: column;
}

.solutions-midbanner-ul {
  color: #fff;
  margin-left: 2em;
}

.solutions-midbanner-ul li {
  color: #fff;
}

.solutions-intro p {
  text-align: justify;
}

.statement-ul {
  text-align: justify;
  list-style-type: none;
}

.carousel-item {
  height: 80vh;
}

#clients-logo img{
  height: 85px;
  margin-top: 10px;
}
#clients-logo{
  margin-bottom: 100px;
}
/* responsive of nms */
@media (max-width:768px) {
  .responsive-banner{
    padding: 1rem !important;
    font-size: 14px;
    word-spacing:-4px;
  }
  .responsive-banner h3{
    text-align: center!important;
  }
}
@media (max-width:768px) {
  .responsive-header{
    padding:0 !important
  }
  .responsive-header .btn-get-started{
    margin: 0!important;
  }
  #hero-inner .btn-get-started{
    padding:3px 10px;
  }
  #hero-inner h1{
    font-size: 24px; 
  }
  #intro{
    padding: 2rem 0 !important;
  }
  #section2{
    padding: 0 !important;
  }
  .responsive-applied{
    padding: 1rem 1rem !important;
  }
.responsive-iot{
  padding-bottom: 1rem!important;
}
#bannerImg{
  width: 100%;
  object-fit: cover;
}
.BannerVideo{
  height: 90vh !important;
  width: 100vw;
  object-fit: cover;
}
}
@media (max-width:320px) {
.res-services{
  margin-right: 10px;
}
}