/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
 body {
  font-family: 'Quicksand', sans-serif;
  color: #444444;
  font-weight: 500;
}
a {
  color: #ee0f0f;
}
a:hover {
  color: #469fdf;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Quicksand', sans-serif;
}
/*--------------------------------------------------------------
# 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: #ee0f0f;
  color: #fff;
  transition: all 0.4s;
}
.back-to-top i:hover {
  background: #3e9bdd;
  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 #ee0f0f;
  border-top-color: #fff;
  border-bottom-color: #fff;
  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;
  background: #fefefe;
  z-index: 997;
  padding: 15px 0;
  border-bottom: 1px solid #e6f2fb;
  /*top: 34px;*/
}
#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: 'Quicksand', sans-serif;
}
#header .logo a {
  color: #16507b;
}
#header .logo img {
  max-height: 40px;
}
@media (max-width: 992px) {
  #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: 14px 0 14px 28px;
}
.nav-menu a {
  display: block;
  position: relative;
  color: #124265;
  transition: 0.3s;
  font-size: 14px;
  font-family: 'Quicksand', sans-serif;
}
.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: #ee0f0f;
}
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(18, 66, 101, 0.1);
  transition: 0.3s;
  border-radius: 5px;
}
.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;
  font-weight: 500;
  text-transform: none;
  color: #124265;
}
.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
  color: #ee0f0f;
}
.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;
}
body.mobile-nav-active button.mobile-nav-toggle {
  background: #ee0f0f;
  right: 9px;
  height: 30px;
  width: 35px;
  top: 16px;
}
@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;
  background: #ee0f0f;
  color: #fff;
  border-radius: 5px;
  padding: 10px 30px 11px 30px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}
.get-started-btn:hover {
  background: #2079b8;
  color: #fff;
}
@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 5px 18px 6px 18px;
    border-radius: 3px;
  }
}
/* Mobile Navigation */

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 16px;
  z-index: 9999;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  /* background: #e2e2e2; */
  height: 30px;
  width: 35px;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
.mobile-nav-toggle i {
  color: #124265;
}
.mobile-nav {
  position: fixed;
  top: 46px;
  right: 10px;
  /* left: 0; */
  z-index: 9998;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  bottom: 347px;
  width: 210px;
}
.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: #124265;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}
.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #ee0f0f;
  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(10, 38, 58, 0.6);
  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: #ffffff;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url("../img/1.png") top center;
  background-size: cover;
  position: relative;
}
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  padding-top: 80px;
}
#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
}
#hero h2 {
  color: #5e5e5e;
  margin: 10px 0 0 0;
  font-size: 22px;
}
#hero .btn-get-started {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #ee0f0f;
}
#hero .btn-get-started:hover {
  background: #f14a4a;
}
#hero .icon-boxes {
  margin-top: 100px;
}
.icon-box {
  display: flex;
  align-items: center;
}
#hero .icon-box {
  padding: 20px 9px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  width: 100%;
  text-align: center;
}
#hero .icon-box .title {
  font-weight: 700;
  /* margin-bottom: 15px; */
  font-size: 18px;
}
#hero .icon-box .title a {
  color: #124265;
  transition: 0.3s;
  font-size: 50px;
}
#hero .icon-box .description {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: left;
  padding: 0 10px;
}
#hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #ee0f0f;
}
#hero .icon-box:hover {
  transform: scale(1.10);
  border-bottom: 3px solid #ee0f0f;
}
#hero .icon-box:hover .title a {
  color: #ee0f0f;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 992px),
(max-height: 500) {
  #hero {
    height: auto;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
  padding: 80px 0;
}
.section-bg {
  background-color: #f8fbfe;
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  /* font-weight: bold; */
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #124265;
}
.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li + li {
  /* margin-top: 10px; */
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ee0f0f;
  line-height: 1;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .btn-learn-more {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ee0f0f;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ee0f0f;
}
.about .content .btn-learn-more:hover {
  background: #ee0f0f;
  color: #fff;
  text-decoration: none;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
  padding: 60px 0;
}
.counts .count-box {
  width: 100%;
  text-align: center;
}
.counts .count-box span {
  font-size: 48px;
  line-height: 48px;
  display: block;
  font-weight: 700;
  color: #124265;
  margin-left: 80px;
  margin: auto;
}
.counts .count-box p {
  padding: 8px 0 0 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1e6ca6;
}
/*--------------------------------------------------------------
# About Video
--------------------------------------------------------------*/

.about-video .content {
  font-size: 15px;
}
#about {
  background: url(../img/service-shape-1-1.png) left center no-repeat, url(../img/bg.svg) right bottom no-repeat;
}
#about-video {
  background: url(../img/home__bg.jpg) center top no-repeat;
  background-size: cover;
}
#about-video h2 {
  font-weight: 600;
  font-size: 2em;
  color: #fff;
}
.about-video .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #124265;
}
.about-video .content ul {
  list-style: none;
  padding: 0;
}
.about-video .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}
.about-video .content ul i {
  font-size: 24px;
  color: #ee0f0f;
  position: absolute;
  left: 0;
  top: -2px;
}
.about-video .content p:last-child {
  margin-bottom: 0;
}
.about-video .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ee0f0f 50%, rgba(36, 135, 206, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about-video .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.about-video .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(36, 135, 206, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about-video .play-btn:hover::after {
  border-left: 15px solid #ee0f0f;
  transform: scale(20);
}
.about-video .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# NEXT GENERATION
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}
.testimonials .box h5 {
  font-size: 19px;
  text-transform: capitalize;
  line-height: 1.5;
  color: #6b6b6b;
  font-weight: 500;
}
.testimonials .icon {
  background: #232323;
  border-radius: 21px;
  padding: 21px 0;
  margin-bottom: 15px;
}
.testimonials .icon:hover {
  transform: scale(1.10);
  /* border-bottom: 3px solid #ee0f0f; */
  background: #ee0f0f;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #c9e3f5;
  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 15px 15px;
  padding: 20px;
  background: #f3f9fd;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}
.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #f3f9fd;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}
.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: #ee0f0f !important;
}
@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}
#services .icon-box {
  display: block;
}
.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: #124265;
  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 35px 0 rgba(0, 0, 0, 0.08);
}
.services .iconbox-blue i {
  color: #47aeff;
}
.services .iconbox-blue:hover .icon i {
  color: #fff;
}
.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}
.services .iconbox-orange i {
  color: #ffa76e;
}
.services .iconbox-orange:hover .icon i {
  color: #fff;
}
.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}
.services .iconbox-pink i {
  color: #e80368;
}
.services .iconbox-pink:hover .icon i {
  color: #fff;
}
.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}
.services .iconbox-yellow i {
  color: #ffbb2c;
}
.services .iconbox-yellow:hover .icon i {
  color: #fff;
}
.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}
.services .iconbox-red i {
  color: #ff5828;
}
.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: #11dbcf;
}
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
  background: #ee0f0f;
  background-size: cover;
  padding: 60px 0;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #fff;
  color: #ee0f0f;
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px 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 8px 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;
}
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ee0f0f;
}
.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(36, 135, 206, 0.6);
  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: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.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;
  padding: 0;
  margin: 0;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.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;
}
.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}
.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}
.team .member .social a {
  transition: color 0.3s;
  color: #124265;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}
.team .member .social a:hover {
  color: #ee0f0f;
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.team .member .member-info {
  padding: 25px 15px;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #124265;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.team .member:hover .social {
  opacity: 1;
}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .box {
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}
.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #124265;
}
.pricing .box h4 {
  font-size: 42px;
  color: #ee0f0f;
  font-weight: 500;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 20px;
}
.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #124265;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.pricing .box ul li {
  padding-bottom: 16px;
}
.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}
.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 4px;
  color: #ee0f0f;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #ee0f0f;
}
.pricing .box .btn-buy:hover {
  background: #ee0f0f;
  color: #fff;
}
.pricing .featured {
  background: #ee0f0f;
}
.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na {
  color: #fff;
}
.pricing .featured .btn-wrap {
  padding: 15px;
  text-align: center;
}
.pricing .featured .btn-buy {
  color: #fff;
  border: 2px solid #fff;
}
.pricing .featured .btn-buy:hover {
  background: #fff;
  color: #ee0f0f;
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.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: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: 'Quicksand', 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: #87c1ea;
}
.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: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #ee0f0f;
}
.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 {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #ee0f0f;
  float: left;
  width: 44px;
  height: 44px;
  background: #e3f0fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #124265;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #217bbc;
}
.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #ee0f0f;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.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;
  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: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ee0f0f;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type="submit"] {
  background: #ee0f0f;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #f14a4a;
}
@-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: #f8fbfe;
  min-height: 40px;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 62px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #1a5e90;
  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-top: 40px;
}
.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: #ee0f0f !important;
}
.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-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  color: #444444;
  font-size: 14px;
  background: #f8fbfe;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
.footer-links .listing {} ul.listing li {
  display: inline-block !important;
  width: 32%;
  margin: 0;
  line-height: 3.1;
}
#footer .footer-top {
  padding: 60px 0 0px 0;
  background: #1d2836;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}
.footer-newsletter img {
  padding: 40px;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Quicksand', sans-serif;
  color: #777777;
}
#footer .footer-top h4 {
  font-size: 21px;
  font-weight: 300;
  color: #ffffff;
  position: relative;
  padding-bottom: 6px;
  text-transform: uppercase;
}
#footer .footer-top h4 b {
  font-weight: 900;
}
#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: #ee0f0f;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 6px 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: #aecaea;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-weight: 400;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fac4b2;
}
#footer .footer-newsletter {
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  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 #cde5f6;
}
#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 2px 20px;
  background: #ee0f0f;
  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: #f14a4a;
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ee0f0f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #f14a4a;
  color: #fff;
  text-decoration: none;
}
.borderbtm {
  border-top: 1px solid #2b334a;
}
/*top Part*/

.header_top_bar ul li {
  display: inline-block;
  list-style-type: none;
  padding: 5px 15px;
}
.topHeader {
  background: #eae8e8;
}
.relative {
  position: absolute;
  background: red;
}
h4.title.fsize a {
  font-size: 30px !important;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}
h4.title.btn a {
  font-size: 14px !important;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  background: #c7c7c7;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #ee0f0f;
}
#hero .icon-box:hover .title.btn a {
  color: #fff;
}
#hero .icon-box .title.btn a {
  color: #fff;
}
.gray-bg {
  background-color: #f9f9f9;
}
#about ul.nav.nav-tabs li.nav-item a.active {
  background: #ee0f0f;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
#about ul.nav.nav-tabs li.nav-item a {
  background: #ececec;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  color: #4a4a4a;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 40px;
}
/*#about ul.nav.nav-tabs li.nav-item{
  background: #f3f3f3;
  text-transform: uppercase;
}*/

/*#about .content ul li{
  padding-left: 0 !important;
  margin: 0 10px;
}*/

#about .nav-tabs {
  border: none;
}
#about .tab-content {
  padding: 15px;
  background: #ffffff;
  margin-top: 5px;
  border-radius: 0 0 8px 8px;
  box-shadow: 5px 6px 50px 7px rgba(0, 0, 0, 0.17);
  -webkit-box-shadow: 5px 6px 50px 7px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 5px 6px 50px 7px rgba(0, 0, 0, 0.17);
}
#about .content ul li:first-child {
  padding-left: 0;
  width: 25%;
}
.boxText {
  padding: 30px 20px;
}
#about ul.nav.nav-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#about .content ul li {
  padding-left: 28px;
  position: relative;
  width: 25%;
  text-align: center;
}
#about {
  padding: 130px 0;
}
#pricing {
  background: url(../img/home__bg.jpg) center top no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 500px !important;
}
/*.mobile_slider {
    position: absolute;
    top: -70%;
}*/

/*mobile slider*/

.mobile_slider {
  /*background: url(../img/mobileSlider.png) center top no-repeat;*/
  padding: 17px 80px;
  position: relative;
  z-index: 1111111;
}
.mobile_slider .topimg {
  position: absolute;
  top: 0;
  right: 64px;
  z-index: 111;
}
.mobile {
  position: absolute;
  width: 100%;
  top: -50%;
}
.mobileRightText {
  margin: 0 0 0 auto;
}
.mobilesliderheight ul li {
  list-style: none;
  display: inline-block;
  padding-left: 35px;
  margin-top: 15px;
}
/*steps*/

.colm {
  float: left;
  height: 40vh;
  position: relative;
}
.comman {
  width: calc((100% / 12) * 4);
}
.colm:not(:last-child)::after {
  background: inherit;
  content: '';
  display: block;
  height: 25px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%) rotate(45deg);
  width: 25px;
}
.colm:nth-child(1) {
  background: #000000;
  z-index: 2;
}
.colm:nth-child(2) {
  background: #ee0f0f;
  z-index: 1;
}
.colm:nth-child(3) {
  background: #f14a4a;
  z-index: 0;
}
.stepicon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flat {
  width: 80px;
  height: 48px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  margin: 0 20px;
  font-size: 24px;
  box-shadow: 2px 7px 43px rgba(0, 0, 0, 0.2);
}
.flexBox {
  color: #ffffff;
}
.footer-contact ul i {
  font-size: 36px !important;
}
.footer-contact ul a {
  font-size: 14px;
  font-weight: 600;
  padding-left: 11px;
  line-height: 1.3 !important;
}
/*creadit*/

ul.creadit {
  padding: 0;
}
ul.creadit li {
  list-style-type: none;
  display: inline-block;
  padding: 0 15px;
}
ul.creadit li a {
  color: #aecaea;
}
ul.creadit li a:hover {
  color: #fac4b2;
}
.bottom {
  background: #283547;
  color: #819ab7;
  padding: 30px 0;
}
.bottom p {
  margin: 0;
}/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
 body {
  font-family: 'Quicksand', sans-serif;
  color: #444444;
  font-weight: 500;
}
a {
  color: #ee0f0f;
}
a:hover {
  color: #469fdf;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Quicksand', sans-serif;
}
/*--------------------------------------------------------------
# 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: #ee0f0f;
  color: #fff;
  transition: all 0.4s;
}
.back-to-top i:hover {
  background: #3e9bdd;
  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 #ee0f0f;
  border-top-color: #fff;
  border-bottom-color: #fff;
  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;
  background: #000;
  z-index: 997;
  padding: 2px 0;
  border-bottom: 1px solid #ee0f0f;
  /*top: 34px;*/
}
#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: 'Quicksand', sans-serif;
}
#header .logo a {
  color: #16507b;
}
#header .logo img {
  max-height: 48px;
}
@media (max-width: 992px) {
  #header .logo img {
    max-height: 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: 14px 0 14px 28px;
}
.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
  font-family: 'Quicksand', sans-serif;
}
.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: #ee0f0f;
}
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(18, 66, 101, 0.1);
  transition: 0.3s;
  border-radius: 5px;
}
.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;
  font-weight: 500;
  text-transform: none;
  color: #124265;
}
.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
  color: #ee0f0f;
}
.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;
}
body.mobile-nav-active button.mobile-nav-toggle {
  background: #ee0f0f;
  right: 9px;
  height: 30px;
  width: 35px;
  top: 16px;
}
@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;
  background: #ee0f0f;
  color: #fff;
  border-radius: 5px;
  padding: 10px 30px 11px 30px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}
.get-started-btn:hover {
  background: #2079b8;
  color: #fff;
}
@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 5px 18px 6px 18px;
    border-radius: 3px;
  }
}
/* Mobile Navigation */

.mobile-nav-toggle {
  position: absolute;
  right: 15px;
  top: 28px;
  z-index: 9999;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  /* background: #e2e2e2; */
  height: 30px;
  width: 35px;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
.mobile-nav-toggle i {
  color: #124265;
}
.mobile-nav {
  position: fixed;
  top: 47px;
  right: 10px;
  /* left: 0; */
  z-index: 9998;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  bottom: 347px;
  width: 220px;
  height: 81%;
}
.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: #124265;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}
.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #ee0f0f;
  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(10, 38, 58, 0.6);
  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: #ffffff;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url("../img/1.png") top center;
  background-size: cover;
  position: relative;
}
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  padding-top: 80px;
}
#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
}
#hero h2 {
  color: #5e5e5e;
  margin: 10px 0 0 0;
  font-size: 22px;
}
#hero .btn-get-started {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #ee0f0f;
}
#hero .btn-get-started:hover {
  background: #f14a4a;
}
#hero .icon-boxes {
  margin-top: 100px;
}
.icon-box {
  display: flex;
  align-items: center;
}
#hero .icon-box {
  padding: 20px 9px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  width: 100%;
  text-align: center;
}
#hero .icon-box .title {
  font-weight: 700;
  /* margin-bottom: 15px; */
  font-size: 18px;
}
#hero .icon-box .title a {
  color: #124265;
  transition: 0.3s;
  font-size: 50px;
}
#hero .icon-box .description {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: left;
  padding: 0 10px;
}
#hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #ee0f0f;
}
#hero .icon-box:hover {
  transform: scale(1.10);
  border-bottom: 3px solid #ee0f0f;
}
#hero .icon-box:hover .title a {
  color: #ee0f0f;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 992px),
(max-height: 500) {
  #hero {
    height: auto;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
  padding: 80px 0;
}
.section-bg {
  background-color: #f8fbfe;
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  /* font-weight: bold; */
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #124265;
}
.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li + li {
  /* margin-top: 10px; */
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ee0f0f;
  line-height: 1;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .btn-learn-more {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ee0f0f;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ee0f0f;
}
.about .content .btn-learn-more:hover {
  background: #ee0f0f;
  color: #fff;
  text-decoration: none;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
  padding: 60px 0;
}
.counts .count-box {
  width: 100%;
  text-align: center;
}
.counts .count-box span {
  font-size: 48px;
  line-height: 48px;
  display: block;
  font-weight: 700;
  color: #124265;
  margin-left: 80px;
  margin: auto;
}
.counts .count-box p {
  padding: 8px 0 0 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1e6ca6;
}
/*--------------------------------------------------------------
# About Video
--------------------------------------------------------------*/

.about-video .content {
  font-size: 15px;
}
#about {
  background: url(../img/service-shape-1-1.png) left center no-repeat, url(../img/bg.svg) right bottom no-repeat;
}
#about-video {
  background: url(../img/home__bg.jpg) center top no-repeat;
  background-size: cover;
}
#about-video h2 {
  font-weight: 600;
  font-size: 2em;
  color: #fff;
}
.about-video .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #124265;
}
.about-video .content ul {
  list-style: none;
  padding: 0;
}
.about-video .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}
.about-video .content ul i {
  font-size: 24px;
  color: #ee0f0f;
  position: absolute;
  left: 0;
  top: -2px;
}
.about-video .content p:last-child {
  margin-bottom: 0;
}
.about-video .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ee0f0f 50%, rgba(36, 135, 206, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about-video .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.about-video .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(36, 135, 206, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about-video .play-btn:hover::after {
  border-left: 15px solid #ee0f0f;
  transform: scale(20);
}
.about-video .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# NEXT GENERATION
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}
.testimonials .box h5 {
  font-size: 19px;
  text-transform: capitalize;
  line-height: 1.5;
  color: #6b6b6b;
  font-weight: 500;
}
.testimonials .icon {
  background: #232323;
  border-radius: 21px;
  padding: 21px 0;
  margin-bottom: 15px;
}
.testimonials .icon:hover {
  transform: scale(1.10);
  /* border-bottom: 3px solid #ee0f0f; */
  background: #ee0f0f;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #c9e3f5;
  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 15px 15px;
  padding: 20px;
  background: #f3f9fd;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}
.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #f3f9fd;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}
.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: #ee0f0f !important;
}
@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}
#services .icon-box {
  display: block;
}
.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: #124265;
  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 35px 0 rgba(0, 0, 0, 0.08);
}
.services .iconbox-blue i {
  color: #47aeff;
}
.services .iconbox-blue:hover .icon i {
  color: #fff;
}
.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}
.services .iconbox-orange i {
  color: #ffa76e;
}
.services .iconbox-orange:hover .icon i {
  color: #fff;
}
.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}
.services .iconbox-pink i {
  color: #e80368;
}
.services .iconbox-pink:hover .icon i {
  color: #fff;
}
.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}
.services .iconbox-yellow i {
  color: #ffbb2c;
}
.services .iconbox-yellow:hover .icon i {
  color: #fff;
}
.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}
.services .iconbox-red i {
  color: #ff5828;
}
.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: #11dbcf;
}
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
#cta:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
}


.cta {
  background: url(../img/9.png) center center;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #fff;
  color: #ee0f0f;
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px 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 8px 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;
}
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ee0f0f;
}
.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(36, 135, 206, 0.6);
  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: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.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;
  padding: 0;
  margin: 0;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.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;
}
.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}
.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}
.team .member .social a {
  transition: color 0.3s;
  color: #124265;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}
.team .member .social a:hover {
  color: #ee0f0f;
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.team .member .member-info {
  padding: 25px 15px;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #124265;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.team .member:hover .social {
  opacity: 1;
}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .box {
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}
.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #124265;
}
.pricing .box h4 {
  font-size: 42px;
  color: #ee0f0f;
  font-weight: 500;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 20px;
}
.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #124265;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.pricing .box ul li {
  padding-bottom: 16px;
}
.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}
.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 4px;
  color: #ee0f0f;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #ee0f0f;
}
.pricing .box .btn-buy:hover {
  background: #ee0f0f;
  color: #fff;
}
.pricing .featured {
  background: #ee0f0f;
}
.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na {
  color: #fff;
}
.pricing .featured .btn-wrap {
  padding: 15px;
  text-align: center;
}
.pricing .featured .btn-buy {
  color: #fff;
  border: 2px solid #fff;
}
.pricing .featured .btn-buy:hover {
  background: #fff;
  color: #ee0f0f;
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.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: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: 'Quicksand', 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: #87c1ea;
}
.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: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #ee0f0f;
}
.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 {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #ee0f0f;
  float: left;
  width: 44px;
  height: 44px;
  background: #e3f0fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #124265;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #217bbc;
}
.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #ee0f0f;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.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;
  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: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ee0f0f;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type="submit"] {
  background: #ee0f0f;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #f14a4a;
}
@-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: #f8fbfe;
  min-height: 40px;
  margin-top: 13px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 5px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #1a5e90;
  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-top: 40px;
}
.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: #ee0f0f !important;
}
.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-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  color: #444444;
  font-size: 14px;
  background: #f8fbfe;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
.footer-links .listing {} ul.listing li {
  display: inline-block !important;
  width: 32%;
  margin: 0;
  line-height: 3.1;
}
#footer .footer-top {
  padding: 60px 0 0px 0;
  background: #000;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}
.footer-newsletter img {
  padding: 40px;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Quicksand', sans-serif;
  color: #777777;
}
#footer .footer-top h4 {
  font-size: 21px;
  font-weight: 300;
  color: #ffffff;
  position: relative;
  padding-bottom: 6px;
  text-transform: uppercase;
}
#footer .footer-top h4 b {
  font-weight: 900;
}
#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: #ee0f0f;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 6px 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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-weight: 400;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ee0f0f;
}
#footer .footer-newsletter {
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  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 #cde5f6;
}
#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 2px 20px;
  background: #ee0f0f;
  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: #f14a4a;
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ee0f0f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #f14a4a;
  color: #fff;
  text-decoration: none;
}
.borderbtm {
  border-top: 1px solid #2b334a;
}
/*top Part*/

.header_top_bar ul li {
  display: inline-block;
  list-style-type: none;
  padding: 5px 15px;
}
.topHeader {
  background: #eae8e8;
}
.relative {
  position: absolute;
  background: red;
}
h4.title.fsize a {
  font-size: 30px !important;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}
h4.title.btn a {
  font-size: 14px !important;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  background: #c7c7c7;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #ee0f0f;
}
#hero .icon-box:hover .title.btn a {
  color: #fff;
}
#hero .icon-box .title.btn a {
  color: #fff;
}
.gray-bg {
  background-color: #f9f9f9;
}
#about ul.nav.nav-tabs li.nav-item a.active {
  background: #ee0f0f;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
#about ul.nav.nav-tabs li.nav-item a {
  background: #ececec;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  color: #4a4a4a;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 40px;
}
/*#about ul.nav.nav-tabs li.nav-item{
  background: #f3f3f3;
  text-transform: uppercase;
}*/

/*#about .content ul li{
  padding-left: 0 !important;
  margin: 0 10px;
}*/

#about .nav-tabs {
  border: none;
}
#about .tab-content {
  padding: 15px;
  background: #ffffff;
  margin-top: 5px;
  border-radius: 0 0 8px 8px;
  box-shadow: 5px 6px 50px 7px rgba(0, 0, 0, 0.17);
  -webkit-box-shadow: 5px 6px 50px 7px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 5px 6px 50px 7px rgba(0, 0, 0, 0.17);
}
#about .content ul li:first-child {
  padding-left: 0;
  width: 25%;
}
.boxText {
  padding: 30px 20px;
}
#about ul.nav.nav-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#about .content ul li {
  padding-left: 28px;
  position: relative;
  width: 25%;
  text-align: center;
}
#about {
  padding: 130px 0;
}
#pricing {
  background: url(../img/home__bg.jpg) center top no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 500px !important;
}
/*.mobile_slider {
    position: absolute;
    top: -70%;
}*/

/*mobile slider*/

.mobile_slider {
  /*background: url(../img/mobileSlider.png) center top no-repeat;*/
  padding: 17px 80px;
  position: relative;
  z-index: 1111111;
}
.mobile_slider .topimg {
  position: absolute;
  top: 0;
  right: 64px;
  z-index: 111;
}
.mobile {
  position: absolute;
  width: 100%;
  top: -50%;
}
.mobileRightText {
  margin: 0 0 0 auto;
}
.mobilesliderheight ul li {
  list-style: none;
  display: inline-block;
  padding-left: 35px;
  margin-top: 15px;
}
/*steps*/

.colm {
  float: left;
  height: 40vh;
  position: relative;
}
.comman {
  width: calc((100% / 12) * 4);
}
.colm:not(:last-child)::after {
  background: inherit;
  content: '';
  display: block;
  height: 25px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%) rotate(45deg);
  width: 25px;
}
.colm:nth-child(1) {
  background: #000000;
  z-index: 2;
}
.colm:nth-child(2) {
  background: #ee0f0f;
  z-index: 1;
}
.colm:nth-child(3) {
  background: #f14a4a;
  z-index: 0;
}
.stepicon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flat {
  width: 80px;
  height: 48px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  margin: 0 20px;
  font-size: 24px;
  box-shadow: 2px 7px 43px rgba(0, 0, 0, 0.2);
}
.flexBox {
  color: #ffffff;
}
.footer-contact ul i {
  font-size: 36px !important;
}
.footer-contact ul a {
  font-size: 14px;
  font-weight: 600;
  padding-left: 11px;
  line-height: 1.3 !important;
}
/*creadit*/

ul.creadit {
  padding: 0;
}
ul.creadit li {
  list-style-type: none;
  display: inline-block;
  padding: 0 15px;
}
ul.creadit li a {
  color: #fff;
}
ul.creadit li a:hover {
  color: #ee0f0f;
}
.bottom {
  background: #181818;
  color: #819ab7;
  padding: 30px 0;
}
.bottom p {
  margin: 0;
}



.section-padding-other{
  padding-top: 150px;
  padding-bottom: 150px;
}


/*/*/*/*/*/*/**/*/*/*/*/*/*/



.dv-accounts{
  background-color:rgb(245 245 245 / 90%);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 50%;
  border-radius: 12px;
  position: relative;
}
.dv-accounts::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background-color: rgb(255 120 120 / 0%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 12px;
}
.dv-accounts:hover:before {
  opacity: 1;
  width: 100%;
  background-color: #f37723;
}
.dv-account-details, .dv-accounts-img{
  position: relative;
  z-index: 3;
}
.dv-accounts:hover {
  box-shadow: 0 0 20px #4caf5033;
  cursor: pointer;
  
}
.dv-accounts:hover .dv-account-details .headings{
  color: #fff;
}
.dv-accounts:hover .dv-account-details p{
  color: #eaf5ea;
}
.dv-accounts .dv-accounts-img{
  margin-right: 20px;
}
.dv-accounts .dv-account-details .headings{
  font-size: 24px;
  font-weight: 500;
  color: #1f2643;
}
.dv-accounts .dv-account-details p{
    margin-bottom: 0;
    font-size: 16px;
    color: #505050;
}
.process-bar > div{
    flex-grow: 3;
    padding: 15px;
    position: relative;
}
.dv-accounts > div span:first-child{
  font-size: 2.5rem;
  font-weight: 600;
}
.d-fill img{
  color:#0052CC;
}
#Layer_1{
  color:#0052CC;
  fill: currentColor;
}

.d-process{
  max-width: 200px;
  height: 200px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: top right;
  border: 0;
  background: #eaeaea;
  border-radius: 50%;
  margin-bottom: 30px;
  position: relative;
}
.d-process::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background-color: rgb(255 120 120 / 0%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50%;
}
.d-process:hover:before {
  opacity: 1;
  width: 100%;
  background-color: #000000;
}
.process-bar > div::after{
  background-image: url(../assets/imgaas.svg);
  background-repeat: no-repeat;
  position: absolute;
  content: '';
  top: 30%;
  right: -8%;
  width: 60px;
  height: 40px;
  z-index: 99;
  background-position: center center;
  background-size: contain;
}
.process-bar > div:last-child::after{
  display: none;
}
.d-process img{
  position: relative;
  z-index: 3;
}
.process-bar{
    position: relative;
}
.odd-bg{
  background-color: #f6f6f6; 
  background-image: url(../assets/imgwavy-2-green.svg);
  background-position: 160% top;
  background-repeat: no-repeat;
  position: relative; 
  overflow: hidden;
  color: #fff;
}
.dv-pricing{
  background-color:#fff;
  border-radius: 12px;
  position: relative;
  padding: 20px 0;
  box-shadow: 0 0 2px #2d756430;
}
.dv-pricing:hover {
  box-shadow: 0 0 20px #2d756430;
  background: #f37723;
  color: #fff !important;
}
.dv-pricing:hover .dv-plan-service ul li{
  border-bottom: 1px solid #f37723;
}
.dv-plan-name{
  padding: 10px 0;
}
.dv-plan-user{
  background: #1f2643;
  padding: 20px 0;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
}
.dv-plan-user span{
  display: block;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 5px;
}
.dv-plan-service ul li{
  border-bottom: 1px solid #eeeeee;
  padding: 15px 0;
}
.d-fill img{
  position: relative;
  z-index: 50;
}
.d-fill{
  padding-left: 12px;
  position: relative;
  padding-bottom: 30px !important;
}
.d-fill:before{
  content: '';
  position: absolute;
  left: 0px;
  top: -11px;
  background: #3379e2;
  width: 60px;
  height: 60px;
  border-radius: 20%;

}
footer{
    color: #fff;
}
footer a{
    color: #ccc;
    text-decoration: none;
}
.bottom-foot {
  background: rgba(116, 73, 73, 0.09);
  padding: 15px 0;
}
.bottom-foot a{ 
  border-left: 1px solid #777; 
  padding: 0 12px;
}
.bottom-foot a:hover{
  color: #ddd;
}
.bottom-foot a:first-child{
  border: 0;
  padding-left: 0;
}
.bottom-foot a.copy{
  border-left: 1px solid #777; 
  padding-left: 12px;
  margin-left: 12px;
}
.btn{
    padding: 12px 32px;
    border-radius: 6px;
}
.btn.text-uppercase{
  font-weight:500;
}

.btn-alternate{
  color: #fff;
  background-color: #ee0f0f;
  /* border: 2px solid #f37723; */
}
.btn-alternate:hover {
  background-color: #f37723;
  color: #fff;
}
.btn-check:focus+.btn-alternate, .btn-alternate:focus {
  background-color: #f37723;
  color: #fff;
}
.btn-alternate.active, .btn-alternate:active{
  background-color: #f37723;
}
.key-feature .key-hov .d-inline-block{
  padding: 15px;
  border-radius: 100%;
  background-color: #1b2756;
  transition: background-color 0.5s ease;
}
.key-feature .key-hov:hover .d-inline-block{
  background-color: #fff;
}
.key-feature img{
  max-width:75px;
}
.key-feature-detail{
  padding: 15px 30px;
}
.key-feature-detail .dv-h4{
  color: #ffffff;
  margin-top: 7px;
}
.key-feature-detail p{
  margin-top: 16px;
  color: #ccc;
  line-height: 26px;
}
.account-tab{
  max-width: 400px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 13px 0 rgb(0 11 40 / 8%);
  box-shadow: 0 3px 13px 0 rgb(0 11 40 / 8%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  padding: 7px;
  border: 0;
  border-radius: 45px;
  position: relative;
}
.account-tab .nav-item .nav-link{
  margin: 0;
  color: #18234d;
  padding: 12px 30px;
  display: inline-block;
  min-width: 193px;
  text-align: center;
  font-weight: 500;
  -webkit-transition: color .3s linear;
  -o-transition: color .3s linear;
  transition: color .3s linear;
  z-index: 1;
  border: 0 !important;
  cursor: pointer;
}
.account-tab .nav-item .nav-link.active{
  background-color: #f37016;
  border: 0 !important;
  color: #fff;
  border-radius: 45px;
  -webkit-transition: color .3s linear;
  -o-transition: color .3s linear;
  transition: color .3s linear;
}

.account-items{
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 6px 0 rgb(0 11 40 / 10%);
  box-shadow: 0 4px 6px 0 rgb(0 11 40 / 10%);
  padding:0;
  border: 1px solid #fff;
  position: relative;
  overflow: hidden;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  cursor: pointer
}
.account-items:hover {
  -webkit-box-shadow: 0 15px 25px 0 rgb(0 11 40 / 14%);
  box-shadow: 0 15px 25px 0 rgb(0 11 40 / 14%);
}
.account-items .account-head{
  font-size:26px;
  font-weight: 500;
  line-height: 70px;
  background: #18234d;
  color: #fff;
}
.account-items .account-title{
  font-size:20px;
  line-height:46px;
  background: #f37016;
  color: #fff;
}
.account-items ul li{
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}
.account-items .account-foot .btn-alternate{
  color: #18234d;
}


h3.h2.fw-bold {
    font-weight: 700;
    font-size: 28px;
}

.dv-abc p {
    font-size: 18px;
}





/*COMMAN Banner*/

.innerPageBanner{
  background: #c7c7c7;
  padding: 150px 0;
}




.bannerText h2{
  font-size: 2.5em;
  text-transform: capitalize;
  color: #fff;
  position: relative;
}

.bannerText span{ display: block; }


/*what is forex*/
.whatIsForex:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
}

.whatIsForex{
  background: url(../img/2.png)  center center no-repeat;
  position: relative;
  min-height: 348px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.box .title {
    font-weight: 900;
    text-transform: uppercase;
}


.inner-page{
  background: url(../img/contact-shape-1-1.png)  left -250px center no-repeat, url(../img/bg.svg)  right center no-repeat;
}

.card {
    padding: 25px 45px;
    border-radius: 25px;
    border: none;
    background: #fea08133;
    margin-top: 45px;
}
.lavrage{
  background: url(../img/contact-shape-1-1.png)  left -250px top -220px no-repeat, url(../img/contact-shape-1-1.png)  right -235px bottom -237px no-repeat, url(../img/bg.svg)  center bottom no-repeat;
}
.basiTerms{
  background: url(../img/contact-shape-1-1.png)  left -250px top -220px no-repeat,  url(../img/bg.svg)  center bottom no-repeat;
}


.options {
    background: rgb(242 203 191 / 46%);
    padding: 30px;
    height: 100%;
    min-height: 310px;
    border-radius: 30px;
    margin-top: 15px;
    text-align: center;
}

.options h3 {
    display: inline-block;
}

.options .title {
    width: 45px;
    height: 45px;
    background: #ee0f0f;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0 auto;
    border-radius: 50%;
    color: #fff;
    margin-bottom: 14px;
}

.options1 {
    background: rgb(77 84 95 / 12%);
    padding: 17px 30px;
    height: 100%;
    border-radius: 30px;
    /* margin-top: 15px; */
    text-align: center;
    /* min-height: 248px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.options1 h3 {
    display: inline-block;
    -webkit-transition: 0.4s ease;
     transition: 0.4s ease;
}

.options1 .title {
    width: 45px;
    height: 45px;
    background: #ee0f0f;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0 auto;
    border-radius: 50%;
    color: #fff;
    margin-bottom: 14px;
}
.options1:hover {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    background: rgb(242 203 191);
}

ul.list_arow{padding: 0;}
ul.list_arow li {
    position: relative;
    padding: 5px 0px 5px 20px;
    display: block;
}

ul.list_arow li:before {
    position: absolute;
    left: 0;
    content: '\f0a3';
    font-family: 'fontawesome';
    color: #ee0f0f;
    font-size: 18px;
}

ul.list_arow.inlien li {
    display: inline-block;
    padding: 11px 26px;
    margin: 10px;
    background: #c7c7c773;
    border-radius: 6px;
}

ul.list_arow.inlien li:before{
      left: 6px;
}

ul.list_arow.inlien{padding-left: 15px;}


.overFlow {
    width: 100%;
    height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
}




.about2 ul.nav.nav-tabs li.nav-item a {
    padding: 8px 10px !important;
}

.about2 .content ul li{
  width: 20% !important;
}

.DinlineBlock li{display: inline-block; width: 50% !important; }

ul.list_arow.DinlineBlock {
    width: 100%;
    display: flex;
    text-align: left !important;
}

ul#w50 li {
    width: 50% !important;
    text-align: left !important;
}

ul#w50 li:first-child{
  padding-left: 20px !important;
}


ul#w100 li {
    width: 100% !important;
    text-align: left !important;
}

ul#w100 li:first-child{
  padding-left: 20px !important;
}

ul.nav.nav-tabs.flexChange {
    display: flex;
    align-items: center;
    justify-content: start !important;
}




/*price table*/

/*Pricing table*/

.main {
    box-shadow: 0 0 24px rgb(0 0 0 / 5%);
    width: 100%;
    margin: 0 auto;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    border: 0 none;
}
.price-table tr:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.price-table tr td {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 24px;
    font-size: 14px;
    display: table-cell;
    vertical-align: middle;
}
.price-table tr td:first-child {
    border-left: 0 none;
}
.price-table tr td:not(:first-child) {
    text-align: center;
}
.price-table tr:nth-child(even) {
    background-color: #FFFFFF;
}
.price-table tr:hover {
    background-color: #EEEEEE;
}
.price-table .fa-check {
    color: #3bc15e;
}
.price-table .fa-times {
    color: #D8D6E3;
}

/* Highlighted column */
.price-table tr:nth-child(2n) td:nth-child(2) {
    background-color: rgba(192, 35, 51, 0.10);
    font-size: 1em;
}


.price-table tr:nth-child(2n) td:nth-child(3) {
    background-color: #ffffff;
    font-size: 1em;
}


.price-table tr:nth-child(2n) td:nth-child(4) {
    background-color: rgba(192, 35, 51, 0.10);
    font-size: 1em;
}

.price-table tr:nth-child(2n) td:nth-child(5) {
    background-color: #ffffff;
    font-size: 1em;
}


.price-table tr td:nth-child(2) {
    background-color: rgba(192, 35, 51, 0.10);
    padding: 8px 48px;
    font-size: 1em;
}


.price-table tr td:nth-child(3){
    background-color: #ffffff;
    padding: 8px 48px;
    font-size: 1em;
 }




.price-table tr td:nth-child(4){
    background-color: rgba(192, 35, 51, 0.10);
    padding: 8px 48px;
    font-size: 1em; 
}
.price-table tr td:nth-child(5){
    background-color: #ffffff;
    padding: 8px 48px;  
    font-size: 1em;
}



.price-table tr td:nth-child(2) .fa-check,
.price-table tr:nth-child(2n) td:nth-child(2) .fa-check {
    /* color: #ffffff; */
}
/**/

.price-table tr.price-table-head td {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.price-table tr.price-table-head {
    background-color: #f3f0ee;
    color: #000923;
}
.price-table td.price {
    color: #f43f54;
    padding: 16px 24px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
.price-table td.price a {
    background-color: #000923;
    color: #000923;
    padding: 12px 32px;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 64px;
}
.price-table td.price-table-popular {
    font-family: 'Poppins', sans-serif;
    border-top: 3px solid #5336ca;
    color: #5336ca;
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 48px;
    font-weight: 700;
}
.price-table .price-blank {
    background-color: #fafafa;
    border: 0 none;
}

tr.price-table-head td {
    height: 95px;
    background: #fff;
}

tr.price-table-head td:nth-child(2) {
    background: #ee0f0f;
    color: #fff;
    font-size: 1.4em;
}

tr.price-table-head td:nth-child(3) {
    background: #7eaa28;
    color: #fff;
    font-size: 1.4em;
}
tr.price-table-head td:nth-child(4) {
    background: #f88761;
    color: #fff;
    font-size: 1.4em;
}

tr.price-table-head td:nth-child(5) {
    background: #7eaa28;
    color: #fff;
    font-size: 1.4em;
}


.paddingExtra{
  padding: 150px 0; 
}


.textArea{padding: 20px;position: relative;/* left: 7%; *//* width: 90%; */}
.icon {
    width: 100%;
    max-width: 187px;
    padding: 13px 15px;
    position: absolute;
    top: 0px;
    left: 200px;
    /* background: #c4c8cf; */
    border-radius: 50%;
    text-align: center;
}

.bgPrimary{background-color: #c02333;color: #fff;border-radius: 15px;height: 100%;transition: all 0.3;margin: 0 30px;}
.bgSecondry{background-color: #000000;color: #fff;border-radius: 15px;height: 100%;transition: all 0.3;/* padding: 30px; */margin: 0 30px;} 

.bgPrimary:hover , .bgSecondry:hover{opacity: 0.8; cursor: pointer; transition: all 0.3;}


a.btnText {
    padding: 8px 8px;
    width: 100%;
    font-size: 14px;
}



.info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgb(214 215 216 / 60%);
    padding: 15px 0 15px 0;
    background: #fff;
    border-radius: 15px;
}

.icon1 {
    text-align: center;
}

.icon1 img {
    padding: 8px 15px;
    background: #000000;
    border-radius: 50%;
    margin-bottom: 15px;
    height: 120px;
    width: 120px;
}

.icon1:hover img
{
   transform: scale(1.10);
  /* border-bottom: 3px solid #ee0f0f; */
  background: #ee0f0f;
}

.t-log-btn{
  padding: 2px 10px;
    font-size: 12px;
}

.c-float{
  float: right;
}






@media (max-width: 992px) and (min-width: 320px){
  #pricing{
    display: none!important;
  }
}
.dv-tabvertical{
  margin-bottom: 20px;
}
.dv-tabvertical .nav-pills{
    max-width:240px;
}
.dv-tabvertical .nav-pills li{
  width:100%;
  display:block;
  border-bottom: 1px solid #ddd;
} 
.dv-tabvertical .nav-pills li .nav-link{
  color: #000;
  padding: 10px 10px;
  font-size: 16px;
}
.dv-tabvertical .nav-pills li .nav-link.active{
  border-left: 5px solid #ee0f0f;
  color: #ffffff;
}

.dv-tabvertical .tab-content .dv-main h3 {
  font-size: 22px;
  padding: 15px 0;
  color: #000;
  display: block;
  margin: 0;
  border-left: 0px solid #1b7cbe;
  display: block;
  padding: 15px;
  margin-bottom: 10px;
  background: #fea08133;
}
.flag-box{
  box-shadow: 0 0 5px rgb(0 0 0 / 12%);
  padding: 150px 25px 40px 25px;
  background: #fff;
  height: 100%;
}
.uk-box{
  background-image: url('../img/uk.png');
  background-repeat: no-repeat;
  background-position: top right;
}
.cyprus-box{
  background-image: url('../img/cyprus.png');
  background-repeat: no-repeat;
  background-position: top right;
}
.sa-box{
  background-image: url('../img/sa.png');
  background-repeat: no-repeat;
  background-position: top right;
}
.bahamas-box{
  background-image: url('../img/bahamas.png');
  background-repeat: no-repeat;
  background-position: top right;
}

.bonus-title{
  font-size: 45px;
  font-weight: 400;
  display: block;
  line-height: 1em;
  letter-spacing: -.01em;
  text-transform: none;
  color: #fff;
  margin-bottom: 70px;
}
.bonus-per{
  font-size: 162px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  line-height: .8em;
  letter-spacing: -.025em;
  color: #ffff;
}

.bonus-more{
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-top: 20px;
}
.bonus-name-title{
  position: relative;
  font-size: 37px;
  font-weight: 600;
  max-width: 1200px;
  margin: 0 0 30px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: #ffff;
}
.bonus-name-title span{
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .025em;
  line-height: 160%;
  text-transform: uppercase;
}
.promo-block__cell{
  position: relative;
  vertical-align: top;
}
.bonus-step-number{
  position: absolute;
  z-index: 100;
  font-size: 244px;
  font-weight: 600;
  line-height: 244px;
  transition: all .3s cubic-bezier(.165,.84,.44,1);
  left: -10px;
  top: -60px;
  transform: translateY(-50px);
  color:#ee0f0f;
}
.step-cahmge{
  left: 60%;
  top: 100%;
  font-weight: 600;
  font-size: 400px;
  line-height: 400px;
  transform: translateY(-340px);
  position: absolute;
}
.bonus-step-title{
  font-size: 37px;
  font-weight: 600;
  max-width: 1200px;
  margin: 0 auto 30px;
  line-height: 1.1;
  text-transform: uppercase;
  z-index: 200;
  margin-left: 100px;
  position: relative;
}
.bonus-step-descr{
  position: relative;
  z-index: 200;
  font-size: 20px;
  line-height: 1.4;
  margin-left: 100px;
  margin-bottom: 25px;
}
.bonus-formula__result {
  position: relative;
  padding-right: 40px;
  font-size: 18px;
}
.bonus-formula__division {
  text-align: center;
  font-size: 18px;
}
.bonus-formula__dividend {
  position: relative;
  border-bottom: solid 1px;
}
.bonus-formula__dividend:after {
  position: absolute;
  left: -25px;
  top: 100%;
  content: '=';
  transform: translate(0,-50%);
}
.without-bonus{
  padding: 65px 60px 0;
    background: #fff;
}
.bonus-example-table {
  width: 100%;
  margin-bottom: 50px;
}
.bonus-example-table td {
  height: 59px;
  padding: 0;
  margin: 0;
  vertical-align: middle;
  border-bottom: solid 1px #e5e5e5;
}
.bonus-example-table td:first-child {
  width: 150px;
  padding-right: 10px;
  text-align: left;
}
.bonus-example-table td:last-child {
  text-align: right;
}
.title-t02, h2 {
  position: relative;
  font-size: 37px;
  font-weight: 600;
  max-width: 1200px;
  margin: 0 auto 30px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.bonus-example-table tr:last-child td {
  border-bottom: none;
}
.-clr-t04 {
  color: #00c94c!important;
}

.dv-promo-rule ul{
    list-style:circle;
    margin-top: 30px;
} 
.dv-promo-rule ul li{
  width:100%;
  line-height:1.6em;
}
.readall {
  position: relative;
  text-align: left;
  box-sizing: border-box;
}

.readall-wrapper {
  text-align: center;
  background: #fff;
  padding: 30px;
}
.readall-button {
  display: inline-block;
  width: 150px;
  border: 0;
  padding: 10px 0;
  text-align: center;
  cursor: pointer;
  background: transparent;
  color: #ee0f0f;
  font-weight: 600;
}

.readall-button:hover {
  color: #ee0f0f;
  background: transparent;
}
.readall-button:focus{
  outline:0px;
}

.readall-hide:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 25px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), white 75%);
}
.bonus-manage-list__descr {
  font-size: 20px;
  line-height: 1.5;
}
.nav-pills .nav-link.active{
  background-color: #ee0f0f;
}
.nav-pills .nav-link{
  color: #7e7e7e;
  background: #fff;
  margin-bottom: 15px;
  margin-right: 5px;
  font-size: 14px;
  font-weight: 600;
}
.nav-pills .nav-link:hover{
  color: #ee0f0f;
}
.nav-pills .nav-link:hover.active{
  color: #fff;
}
.dv-outer-accord{
  margin-bottom:16px;
}
.accordion {
  background-color: #eee;
  color: #000;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
}

.accordion.active, .accordion:hover {
  background-color: #fbe3e3; 
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: #f2f6ff;
  overflow: hidden;
}


@media (max-width:540px) {
  .dv-tabvertical .nav-pills {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .dv-tabvertical .nav-pills li {
    width: 50%;
    display: block;
    border-bottom: 1px solid #ddd;
    background: #fff;
  }
}