

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: rgb(200, 71, 255);
  text-decoration: none;
}

a:hover {
  color: #5faee3;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", 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: rgb(200, 71, 255);
  color: #fff;
  transition: all 0.4s;
}

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

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  background: #000;
  position: fixed;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    background: rgb(255 255 255 / 85%);
    position: fixed;
    backdrop-filter: blur(5px) saturate(4);
    -webkit-backdrop-filter: blur(5px) saturate(4);
}


#header .logo h1 {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #222222;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 30px;
}

@media (max-width: 768px) {
  #header {
    background: #000;
    /*padding: 10px 0 !important;*/
  }
  #header .logo h1 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  /*position: relative;*/
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  padding: 8px 0 12px 25px;
  transition: 0.3s;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}
#header.header-scrolled .nav-menu a{
  color: #000!important;
}
#header.header-scrolled .get-started a{
  color: #000!important;
}

#header.header-scrolled .services-item > li > a.services-link{
  text-decoration: none;
color: rgb(127, 107, 135)!important;
display: inline-block;
padding: 0;
}
#header.header-scrolled .services-item > li > a.services-link:hover{
  color: rgb(200, 71, 255)!important;
}
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: rgb(200, 71, 255);
  text-decoration: none;
}

.get-started a {
  /*background: rgb(200, 71, 255);*/
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 50px;
  padding: 10px 25px;
  border:2px solid #ffbb38;
  letter-spacing: 2px;
  /*background: linear-gradient(to right,  #c947ff 0%,#0089fe 61%,#00ece2 100%);*/
  /*background-size: 200% 200%;
  -webkit-animation: Gradient 5s ease infinite;
  -moz-animation: Gradient 5s ease infinite;
  animation: Gradient 5s ease infinite;*/
}

.get-started a:hover {
  /*background: #57aae1;
  color: #fff;*/
  background: #ffbb38;
  color: #000;

}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 80px;
  right: 80px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 30px 20px;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  border-radius: 5px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  /*right: 0;*/
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  /*position: relative;*/
  text-align:left;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #222222;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: rgb(200, 71, 255);
}

.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);*/
  left: 24%;
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  /*left: 100%;*/
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

/*@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}*/

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: /*#222222*/ #a2a2a2;
}

.mobile-nav {
  position: fixed;
  top: 65px;
  right: 20px;
  bottom: 25px;
  left: 20px;
  z-index: 9999;
  overflow-y: auto;
  background: #000;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 15px;
  padding: 30px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 30px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: rgb(200, 71, 255);
  text-decoration: none;
  background: rgb(240,248,255);
}

.mobile-nav .get-started {
  /* text-align: center; */
  margin-top: 10px;
}

.mobile-nav .get-started a {
  background: transparent;
  color: #fff;
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 30px;
  display: inline-block;
}

.mobile-nav .get-started a:hover {
  background: #ffbb38;
  color: #000;
}

.mobile-nav .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 20px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\ea99";
}

.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;*/
  text-align:left;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 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: #fff;
}
.overlay{
  position: absolute;
  z-index: 0;
  filter: blur(50px);
  width: 100%;
  display: none;
}
@media(max-width: 667px){
  .overlay{
  position: absolute;
  z-index: 0;
  filter: blur(50px);
  width: 100%;
  display: block;
}
}
h3.ruby-list-heading {
                      font-size: 20px;
                      line-height: 24px;
                      font-weight: 500;
                      margin:15px 0;
                      color: rgb(200, 71, 255);
                      text-align:left;
                      }
                    .services-item > li{
                      position: relative;
                      font-size: 14px;
                      line-height: 28px;
                      display: block;
                      width: 100%;
                      padding: 3px 0;
                      } 
                      
                    .services-item > li > a.services-link{
                      text-decoration: none;
                      color: rgb(127, 107, 135)!important;
                      display: inline-block;
                      padding: 0;
                      }
                      .services-item > li > a.services-link:hover{
                      color: rgb(200, 71, 255)!important;
                      }
                    .services-item > li > a.services-link > img {
                      float: left;
                      width: 60px;
                      margin-right: 12px;
                      padding: 0;
                      }
                    li span.list-desc {
                      font-size: 11px;
                      display: block;
                      position: absolute;
                      top: 16px;
                      left: 72px;
                      color: #999;
                      }
                      .mob-view-service{
                        padding: 0 30px;
                      }
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  padding-top: 100px;
  background: #000;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: black;
}
#hero .header-text{
  margin-bottom:30px!important;
  color:rgb(50,255,207)!important;
  font-family:Raleway,sans-serif !important;
}
#hero .header-span{
  color: rgb(255, 184, 50);
}
#hero h2 {
  color: /*#484848*/ #fff;
  margin-bottom: 23px;
  margin-top: 20px;
  font-size: 23px;
}
#app .column-first{
  visibility: visible; 
  animation-name: fadeInLeft;
}
#app .column-second{
  visibility: visible;
   animation-name: fadeInUp;
}
#app .column-third{
  visibility: visible; 
  animation-name: fadeInRight;
}
#app .column-head-text{
  visibility: visible; animation-name: fadeIn;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: rgb(200, 71, 255);
  border: 2px solid rgb(200, 71, 255);
}
#hero .btn-book-call{
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  background: rgb(200, 71, 255);
  color: #fff;
  border: 2px solid rgb(200, 71, 255);
}
#hero .btn-get-started:hover {
  background: rgb(200, 71, 255);
  color: #fff;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    /*height: 65vh;*/
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero {
    /*margin-top: 20px;*/
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
  
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
.app-details{
  visibility: visible; 
  animation-name: fadeIn;
}

.section-bg {
  background-color: #f7fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #222222;
}

.section-title h2::before, .section-title h2::after {
  content: '';
  width: 50px;
  height: 2px;
  background: rgb(200, 71, 255);
  display: inline-block;
}

.section-title h2::before {
  margin: 0 15px 10px 0;
}

.section-title h2::after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin: 15px 0 0 0;
}

/* -------------------------------------------
process
------- */

 .process-no {
   font-weight: 700;
   font-size: 150px;
   margin-bottom: 0;
   /*position: absolute;*/
   line-height: 1;
   text-shadow: -12px 5px 18px rgba(20, 0, 87, 0.6);
 }
 .process-1{
  color: rgb(120, 231, 81);
 }
 .process-2{
   color:rgb(222, 231, 81);
 }
 .process-3{
   color: rgb(231, 141, 81);
 }
 .process-4{
   color:rgb(231, 99, 81);
 }

 /* -----------------------------------------
 process-2
 ------------------------------ */
 .process-style-title-1 h2{
  color: rgb(120, 231, 81);
 }
 .process-style-title-2 h2{
  color: rgb(222, 231, 81);
 }
 .process-style-title-3 h2{
  color: rgb(231, 141, 81);
 }
 .process-style-title-4 h2{
  color: rgb(231, 99, 81);
 }

 /* ---------------------------------------
 details erp
 --------------------------------- */
 #details-erp h3{
  font-weight:700;
 }
/*--------------------------------------------------------------
# Main Featured Slider
--------------------------------------------------------------*/
/*@import url("https://fonts.googleapis.com/css?family=Fira+Sans:400,500,600,700,800");
* {
  box-sizing: border-box;
}

body {
  background-color: #FFE53B;
  background-image: linear-gradient(147deg, #FFE53B 0%, #fd3838 74%);
  min-height: 100vh;
  font-family: 'Fira Sans', sans-serif;
  display: flex;
}*/

.portfolio-slider {
  width: 100%;
  position: relative;
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 25px;
  border-radius: 25px;
  height: 400px;
  transition: all .3s;
}
@media screen and (max-width: 992px) {
  .portfolio-slider {
    max-width: 680px;
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .portfolio-slider {
    min-height: 500px;
    height: auto;
    margin: 180px auto;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .portfolio-slider {
    height: 350px;
  }
}
.portfolio-slider__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .portfolio-slider__item {
    flex-direction: column;
  }
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__img img {
  opacity: 1;
  transition-delay: .3s;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > * {
  opacity: 1;
  transform: none;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > *:nth-child(1) {
  transition-delay: 0.3s;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > *:nth-child(2) {
  transition-delay: 0.4s;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > *:nth-child(3) {
  transition-delay: 0.5s;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > *:nth-child(4) {
  transition-delay: 0.6s;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > *:nth-child(5) {
  transition-delay: 0.7s;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > *:nth-child(6) {
  transition-delay: 0.8s;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > *:nth-child(7) {
  transition-delay: 0.9s;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > *:nth-child(8) {
  transition-delay: 1s;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > *:nth-child(9) {
  transition-delay: 1.1s;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > *:nth-child(10) {
  transition-delay: 1.2s;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > *:nth-child(11) {
  transition-delay: 1.3s;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > *:nth-child(12) {
  transition-delay: 1.4s;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > *:nth-child(13) {
  transition-delay: 1.5s;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > *:nth-child(14) {
  transition-delay: 1.6s;
}
.portfolio-slider__item.swiper-slide-active .portfolio-slider__content > *:nth-child(15) {
  transition-delay: 1.7s;
}
.portfolio-slider__img {
  width: 400px;
  flex-shrink: 0;
  height: 450px;
  /*background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);*/
  background: #fff;
  box-shadow: /*4px 13px 30px 1px rgba(252, 56, 56, 0.2)*/1px 4px 30px 1px rgba(156, 56, 252, 0.2);
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}
/*.portfolio-slider__img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  border-radius: 20px;
  opacity: 0.8;
}*/
.portfolio-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all .3s;
}
@media screen and (max-width: 768px) {
  .portfolio-slider__img {
    transform: translateY(-50%);
    width: 90%;
  }
}
@media screen and (max-width: 576px) {
  .portfolio-slider__img {
    width: 95%;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .portfolio-slider__img {
    height: 270px;
  }
}
.portfolio-slider__content {
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .portfolio-slider__content {
    margin-top: -80px;
    text-align: center;
    padding: 0 30px;
  }
}
@media screen and (max-width: 576px) {
  .portfolio-slider__content {
    padding: 0;
  }
}
.portfolio-slider__content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all .4s;
}
.portfolio-slider__code {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.portfolio-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 20px;
}
.portfolio-slider__text {
  color: #4e4a67;
  margin-bottom: 30px;
  line-height: 1.5em;
}
.portfolio-slider__button {
  display: inline-flex;
  background-image: linear-gradient(147deg, #8239fe, #d938fc 74%);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0 14px 40px rgba(198, 56, 252, 0.74);
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 576px) {
  .portfolio-slider__button {
    width: 100%;
  }
}
.portfolio-slider .swiper-container-horizontal > .swiper-pagination-bullets, 
.portfolio-slider .swiper-pagination-custom, 
.portfolio-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.portfolio-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .portfolio-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.portfolio-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}
@media screen and (max-width: 768px) {
  .portfolio-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.portfolio-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.2;
  transition: all .3s;
}
.portfolio-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #d338fc;
  height: 30px;
  box-shadow: 0 0 20px rgba(217, 56, 252, 0.77);
}
@media screen and (max-width: 768px) {
  .portfolio-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}



/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f3f9fd;
  padding: 10px 0;
  text-align: center;
}

.clients .col-lg-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients img {
  width: 18%;
  -webkit-filter: grayscale(10);
  filter: grayscale(10);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 10px 0;
}

.clients img:hover {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.1);
  
  /*box-shadow: -4px -3px 5px 0 rgba(0, 0, 0, 0.28),6px 4px 5px 0 rgba(0, 0, 0, 0.28);
  border-radius: 10px;
  padding: 10px;*/
}

@media (max-width: 768px) {
  .clients img {
    width: 80%;
  }
}

@media (max-width: 575px) {
  .clients img {
    width: 20%;
  }
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 38px;
  background: #009970;
  border-radius: 20px;
  color: #fff;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #009970;
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px 25px;
  width: 100%;
  transition: 0.3s;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #009970;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

.why-us .icon-boxes .icon-box:hover {
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
}
.why-us-img{
  max-width: 100%;
  max-height: 100%;
  margin-top: 50px;
}
/* About Us Section
--------------------------------*/

.about .content {
        padding: 30px 0;
      }

      .about .content .icon-box {
        margin-top: 25px;
      }

      .about .content .icon-box h4 {
        font-size: 20px;
        font-weight: 700;
        margin: 5px 0 10px 60px;
      }

      .about .content .icon-box i {
        font-size: 48px;
        float: left;
        color: #009970;
      }

      .about .content .icon-box p {
        font-size: 15px;
        color: #979aa1;
        margin-left: 60px;
      }
      .about-img{
        max-height: 500px;
      }
      @media (max-width: 991px) {
        .about .image {
          text-align: center;
        }
        .about .image img {
          max-width: 80%;
        }
        .about-img{
        max-height: 400px;
      }
      }

      @media (max-width: 667px) {
        .about .image img {
          max-width: 100%;
        }
        .about-img{
        max-height: 300px;
      }
      }
/* -------------------------------------------
# app
------------ */


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .content {
  padding: 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #222222;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: rgb(200, 71, 255);
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #222222;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #484848;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #484848;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #6f6f6f;
}

@media (max-width: 1024px) {
  .counts .image {
    text-align: center;
  }
  .counts .image img {
    max-width: 70%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 1s ease-in-out;
  border-radius: 15px;
  margin-bottom: 20px;
  max-height: 320px;
  min-height: 320px;
  margin: 20px;
}
.bg-1{background: rgb(254, 217, 217);}
.bg-2{background: rgb(254, 217, 248);}
.bg-3{background: rgb(236, 217, 254);}
.bg-4{background: rgb(217, 231, 254);}
.bg-5{background: rgb(217, 254, 251);}
.bg-6{background: rgb(217, 254, 226);}
.bg-7{background: rgb(237, 254, 217);}
.bg-8{background: rgb(254, 232, 217);}


.services .icon-box::before {
  content: '';
  position: absolute;
  background: #cafbee;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  transition: all 1s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: /*rgb(200, 71, 255);*/ rgb(0, 0, 0);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon-box:hover {
  /*box-shadow:  8px 9px 30px 0 rgba(68, 88, 144, 0.76),-7px -9px 30px 0 rgba(68, 88, 144, 0.76);*/
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  z-index: 16;
}
@media (max-width: 667px){
  .services .icon-box:hover {
  box-shadow:  8px 9px 30px 0 rgba(68, 88, 144, 0.76),-7px -9px 30px 0 rgba(68, 88, 144, 0.76);
  -webkit-transform: none!important;
  transform: none!important;
}
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 40px;
  display: block;
  text-align: center;
  width: 150px;
  height: 150px;
  /*background: rgb(200, 71, 255);*/
  transition: all 0.3s ease-in-out;
}
.services .icon img{
  width: 80px;
}
@media(max-width: 667px){
  .services .icon {
  margin: 0 auto 20px auto;
  padding-top: 40px;
  display: block;
  text-align: center;
  width: 100px;
  height: 100px;
  /*background: rgb(200, 71, 255);*/
  transition: all 0.3s ease-in-out;
}
.services .icon img{
  width: 50px!important;
}
}

.services .icon i {
  font-size: 200px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 500;
  margin-bottom: 0px;
  font-size: 18px;
  text-align: center;
  /* display: block; */
  text-transform: capitalize;
  letter-spacing: 1px;
  line-height: 1.5
}

.services .title a {
  color: #413e66;
  /*display: none;*/
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  display: none;
}

.services .icon-box:hover .title a, .services .icon-box:hover .description {
  color: #fff;
  display: none;
}

.services .icon-box:hover .icon {
  background: #fff;
  display: none;
}

.services .icon-box:hover .icon i {
  color: rgb(200, 71, 255);
  display: none;
}
.description-over{
  display: none;
}
.services .icon-box .learn-more{
  display:none;
  color: #fff;
  position: absolute;
  bottom:24px;
  left:24px;
}
.services .icon-box:hover .learn-more{
  display:inline-block;
  color:rgb(200, 71, 255);
}
.services .icon-box:hover .description-over{
  display: block;
  color: #fff;
}
/*--------------------------------------------------------------
# More Services
--------------------------------------------------------------*/
.more-services {
  padding-top: 20px;
}

.more-services .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.more-services .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.more-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.more-services .card-title a {
  color: #222222;
}

.more-services .card-text {
  color: #5e5e5e;
}

.more-services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.more-services .read-more a:hover {
  text-decoration: underline;
}

.more-services .card:hover .card-body {
  background: rgb(200, 71, 255);
}

.more-services .card:hover .read-more a, .more-services .card:hover .card-title, .more-services .card:hover .card-title a, .more-services .card:hover .card-text {
  color: #fff;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f6f6f6;
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: rgb(200, 71, 255);
}

.features .icon-box:hover {
  background: #eef7fc;
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 60px 0;
}

#clients img {
  max-width: 80%;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

#clients .owl-nav, #clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
  background-color: rgb(20, 215, 206);
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.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: #e1f0fa;
  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: 15px auto 15px auto;
}

.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: rgb(200, 71, 255) !important;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: rgb(200, 71, 255);
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: rgb(200, 71, 255);
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 30px 30px 0;
}

.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: #222222;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.team .member .social a:hover {
  color: rgb(200, 71, 255);
}

.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: #222222;
}

.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;
  transition: 1s ease-in-out;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f9f9f9;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 2px solid #f9f9f9;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #222222;
}

.pricing .box h4 {
  font-size: 42px;
  color: rgb(200, 71, 255);
  font-weight: 500;
  font-family: "Open Sans", 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: #222222;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: rgb(200, 71, 255);
  font-size: 18px;
  padding-right: 4px;
}

.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 12px 40px;
  border-radius: 50px;
  border: 2px solid rgb(200, 71, 255);
  color: rgb(200, 71, 255);
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: rgb(200, 71, 255);
  color: #fff;
}

.pricing .recommended {
  border-color: rgb(200, 71, 255);
}

.pricing .recommended .btn-buy {
  background: rgb(200, 71, 255);
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #2383c4;
  border-color: #2383c4;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# 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: "Poppins", 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: rgb(20, 215, 206);
}

.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: #413e66;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: rgb(20, 215, 206);
}

.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;
  }
}

/* --------------------------------
technologies
------------------------------------- */
.tech {
  background-image: linear-gradient(90deg, rgb(2, 0, 36) 0%, rgb(9, 9, 121) 35%, rgb(0, 212, 255) 100%);
  border-radius: 20px;
  padding: 20px 40px;
  /* margin-bottom: 40px; */
  /* height: 80vh; */
}
.tech h1{
  color:rgb(255,255,255) ;
  font-weight:800;
}
.tech h1 span{
  color: rgb(50, 255, 207);
}
.tech p{
  color: rgba(255, 255, 255, 0.81);
}
.tab-content .tab-pane .tech1 {
  background-image: linear-gradient(90deg, rgb(0, 212, 255) 0%, rgb(9, 9, 121) 35%, rgb(2, 0, 36) 100%);
}
.tab-content .tab-pane .tech2{
  background-image:linear-gradient(90deg, rgb(0 0 0) 0%, rgb(3 12 3) 35%, rgb(87 251 92) 100%);
}
.tab-content .tab-pane .tech3{
  background-image:linear-gradient(to right, rgb(195, 20, 50), rgb(13, 4, 20) 100%);
}
.tab-content .tab-pane .tech4{
  background-image:linear-gradient(to right, rgb(120, 2, 6), rgb(6, 17, 97));
}
.tab-content .tab-pane .tech5{
  background-image:linear-gradient(to right, rgb(0, 0, 0), rgb(15, 155, 15));
}
.tab-content .tab-pane .tech5 img{
  filter:drop-shadow(2px 20px 9px #000);
}
.tab-content .tab-pane .tech6{
  background-image:linear-gradient(to right, rgb(156, 21, 4), rgb(203, 158, 4));
}
.tab-content .tab-pane .tech7{
  background-image:linear-gradient(to right,rgb(0, 78, 146), rgb(0, 0, 0));
}
.tab-content .tab-pane .tech8{
  background-image:linear-gradient(to right, rgb(51, 51, 51), rgb(221, 24, 24));
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  /* border-top: 3px solid rgb(20, 215, 206);
  border-bottom: 3px solid rgb(20, 215, 206); */
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.contact .info iframe{
  border:0; 
  width: 100%;
  height: 305px;
}
.hero-container-quote .quotes-head-text{
  color: rgb(255,255,255);
  font-family:arial;
}
.contact .info i {
  font-size: 20px;
  color: rgb(20, 215, 206);
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  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: #413e66;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: rgb(20, 215, 206);
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: rgb(20, 215, 206);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  /* border-top: 3px solid rgb(20, 215, 206);
  border-bottom: 3px solid rgb(20, 215, 206); */
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.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: rgb(20, 215, 206);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: rgb(20, 215, 206);
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: rgb(200, 71, 255);
}
.contact-page{
  margin-top:4rem;
}

@-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: #f8f8f8;
  min-height: 40px;
  margin-top: 86px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 72px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c3c3c;
  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: 20px;
}

.portfolio-details .portfolio-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: rgb(200, 71, 255) !important;
}

.portfolio-details .portfolio-info {
  padding-top: 45px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}

.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-info p {
  font-size: 15px;
  padding: 15px 0 0 0;
}

@media (max-width: 992px) {
  .portfolio-details .portfolio-info {
    padding-top: 20px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #413e66;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #413e66;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#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: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: rgb(20, 215, 206);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: rgb(200, 71, 255);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
  background-image:url(../img/landing-page/footer-bg.png);
  background-size:100%;
  background-position: top center;
  background-repeat: no-repeat;
  border-top:1px solid #e1ecff;

}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #413e66;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #413e66;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: rgb(20, 215, 206);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1.2;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: rgb(20, 215, 206);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgb(20, 215, 206);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: rgb(200, 71, 255);
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}


@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@import url(https://fonts.googleapis.com/css?family=Montserrat);

svg {
    display: block;
    font: 4.5em/1 Open Sans, Impact;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    font-weight: bold;
}

.text {
  fill: none;
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-dasharray: 70 330;
  stroke-dashoffset: 0;
  -webkit-animation: stroke 7s infinite linear;
  animation: stroke 7s infinite linear;
}
.text:nth-child(5n + 1) {
  stroke: /*#F2385A*/ #c947ff;
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
}
.text:nth-child(5n + 2) {
  stroke: /*#F5A503*/ #0089fe;
  -webkit-animation-delay: -2.4s;
  animation-delay: -2.4s;
}
.text:nth-child(5n + 3) {
  stroke: /*#E9F1DF*/ #00ece2;
  -webkit-animation-delay: -3.6s;
  animation-delay: -3.6s;
}
.text:nth-child(5n + 4) {
  stroke: /*#56D9CD*/ #E9F1DF;
  -webkit-animation-delay: -4.8s;
  animation-delay: -4.8s;
}
.text:nth-child(5n + 5) {
  stroke: /*#3AA1BF*/ #F5A503;
  -webkit-animation-delay: -6s;
  animation-delay: -6s;
}

@-webkit-keyframes stroke {
  100% {
    stroke-dashoffset: -400;
  }
}
@keyframes stroke {
  100% {
    stroke-dashoffset: -400;
  }
}

@media (max-width: 667px){
  svg{
    font-size: 40px !important;
    width: 100% !important;
    height: 50px !important;
  }
  .text {
    fill: none;
    stroke-width: 1;
    stroke-linejoin: round;
    stroke-dasharray: 70 330;
    stroke-dashoffset: 0;
    -webkit-animation: stroke 7s infinite linear;
    animation: stroke 7s infinite linear;
  }
}
.text-green{
  color: #009970;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-team .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about-team .content ul {
  list-style: none;
  padding: 0;
}

.about-team .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about-team .content ul li:first-child {
  margin-top: 35px;
}

.about-team .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.about-team .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.about-team .content ul p {
  font-size: 15px;
}

.about-team .content p:last-child {
  margin-bottom: 0;
}

      /*======================================
      //--//-->   AGENTS - CARD-D
      ======================================*/
      .card-box-d .card-overlay-hover {
        transition: all .2s ease-in-out;
        padding: 15px 40px 15px 35px;
      }
      
      @media (min-width: 768px) {
        .card-box-d .card-overlay-hover {
          padding: 5px 15px 5px 10px;
        }
      }
      
      @media (min-width: 992px) {
        .card-box-d .card-overlay-hover {
          padding: 5px 40px 5px 35px;
        }
      }
      
      @media (min-width: 1200px) {
        .card-box-d .card-overlay-hover {
          padding: 15px 40px 5px 35px;
        }
      }
      
      .card-box-d .title-d {
        transition: .3s ease-in-out;
        font-size: 2rem;
        font-weight: 600;
        margin: 1rem 0;
        transform: translateY(-20px);
        opacity: 0;
      }
      
      @media (min-width: 768px) {
        .card-box-d .title-d {
          font-size: 1.1rem;
          margin: .5rem 0;
        }
      }
      
      @media (min-width: 992px) {
        .card-box-d .title-d {
          font-size: 1.5rem;
          margin: 1rem 0;
        }
      }
      
      @media (min-width: 1200px) {
        .card-box-d .title-d {
          font-size: 2rem;
          margin: 1rem 0;
        }
      }
      
      .card-box-d .content-d {
        opacity: 0;
        transition: .5s ease-in-out;
        transform: translateY(-40px);
      }
      
      @media (min-width: 768px) {
        .card-box-d .content-d {
          font-size: .8rem;
          margin: .5rem 0;
        }
      }
      
      @media (min-width: 768px) {
        .card-box-d .card-body-d p {
          margin-bottom: 8px;
          font-size: .8rem;
        }
      }
      
      @media (min-width: 992px) {
        .card-box-d .card-body-d p {
          margin-bottom: 12px;
          font-size: 1rem;
        }
      }
      
      .card-box-d .info-agents {
        opacity: 0;
        transition: .5s ease-in-out;
      }
      
      .card-box-d .card-footer-d {
        transition: .5s ease-in-out;
        transform: translateY(40px);
        opacity: 0;
        position: absolute;
        width: 100%;
        bottom: 10px;
        left: 0;
      }
      
      .card-box-d .list-inline-item:not(:last-child) {
        margin-right: 25px;
      }
      .list-inline-item a{
        color: #fff;
      }
      .card-box-d:hover .card-overlay-hover {
        background-color: #2eca6a;
        opacity: .9;
      }
      
      .card-box-d:hover .title-d,
      .card-box-d:hover .content-d,
      .card-box-d:hover .info-agents,
      .card-box-d:hover .card-footer-d {
        opacity: 1;
        transform: translateY(0);
      }
      
      /*------/ Agent Single /------*/
      .agent-info-box .socials-footer {
        margin-top: 2rem;
      }
      
      .agent-info-box .socials-footer li {
        margin-right: 1.5rem;
      }
      /*--------------------------------------------------------------
      # Card General
      --------------------------------------------------------------*/
      @media (max-width: 767px) {
        .card-box-a,
        .card-box-b,
        .card-box-c,
        .card-box-d {
          margin-bottom: 2.5rem;
        }
      }
      
      @media (min-width: 768px) {
        .grid .card-box-a,
        .grid .card-box-b,
        .grid .card-box-c,
        .grid .card-box-d {
          margin-bottom: 2.5rem;
        }
      }
      
      .card-box-a,
      .card-box-b,
      .card-box-d {
        position: relative;
        overflow: hidden;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        margin-bottom: 20px;
      }
      
      .card-box-a .img-a,
      .card-box-a .img-b,
      .card-box-b .img-a,
      .card-box-b .img-b {
        transition: .8s all ease-in-out;
      }
      
      @media (min-width: 768px) {
        .card-box-a:hover .img-a,
        .card-box-a:hover .img-b,
        .card-box-b:hover .img-a,
        .card-box-b:hover .img-b {
          transform: scale(1.2);
        }
      }
      
      @media (min-width: 768px) {
        .card-box-a .price-a,
        .card-box-b .price-a {
          font-size: .9rem;
        }
      }
      
      @media (min-width: 992px) {
        .card-box-a .price-a,
        .card-box-b .price-a {
          font-size: 1rem;
        }
      }
      
      .card-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
      }
      
      .card-shadow {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
      }
      
      .card-shadow:before {
        content: ' ';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
      }

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio{
  margin-top:5rem;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #3498db;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #3498db;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
.services{
  margin-top:100px;
}
#hero-services-quote{
  width: 100%;
  /* height: 40vh; */
  position: relative;
  font-family: Raleway, sans-serif;
}
#hero-services-quote h1{
  color: rgb(255,255,255);
}
#hero-services-quote #hero-container-quote{
  /* position: absolute; */
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  /* padding: 0 15px; */
  padding:40px 20px;
  background-image:linear-gradient(124deg,rgb(2, 0, 36), #2b1de8, #dd00f3);
  background-size:1800% 1800%;
  animation:gradient-background 20s linear infinite;
  animation-direction: alternate;
}
@keyframes gradient-background{
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}

}
#hero-services-quote h1{
  margin: 0 0 10px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
  color:rgb(255, 255, 255);
  word-spacing:0.4rem;
  font-family:arial;
}
.modal h1{
  font-family:arial;
}
#hero-services-quote h2{
  font-size:1.15rem;
  color:#eae2e2;
  word-spacing:0.1rem;
  line-height:1.5rem;

}
#hero-services-quote .btn-quote{
  margin-top: 20px;
  border: 3px solid #ffbe30;
  padding: 12px 45px;
  border-radius: 50px;
  color:#ffbe30;
  font-weight:700;
  font-size:18px;
  background:none;
  outline:none;
}
#hero-services-quote .btn-quote a{
  color:#ffbe30;
}
#hero-services-quote .btn-quote:hover{
  /* border:none; */
  background:#efa500;
  color:#eae2e2;
  transition:0.5s ease-in-out;
}
#hero-services-quote .btn-quote:hover a{
  color:#fff;
  transition:0.5s ease-in-out;
}
/* .popover-container{
  position:absolute;
  width:100%; */
  /* height:100%; */
  /* top:0;
  left:0;
  bottom:0;
  right:0;
  background:rgb(0,0,0,0.5);
  display:flex;
  align-items: center;
  justify-content:center;
  z-index: 1000;
} */
.popup-content{
  /* width:800px; */
  background-image:linear-gradient(140deg, rgb(255,255,255,0.1), rgb(255,255,255,0.1));
  backdrop-filter:blur(5px);
  padding:40px;
  position:relative;
  border-radius:5px;
  pointer-events:all;
}
.popup-content h1{
  font-size:36px;
  /* color:#eecd10; */
  text-align: center;
  /* text-shadow: 1px 1px 2px #252323; */
  margin:0;
}
.popup-content .submit-btn{
  background:#74b31b;
  color:#fff;
  border: 1px solid #74b31b;
}
.popup-content .form-group{
  margin-bottom:16px;
}
 .popup-content .form-group label{
  margin-bottom:2px;
  font-size:15px;
  font-weight:bold;
  /* color:#fff; */
}
.popup-content .form-group input, .popup-content .form-group textarea{
  padding:5px;
  width:100%;
  /* border:1px solid #d6d3d3; */
  /* background:transparent; */
  /* box-shadow: inset 1px 1px #000, inset -1px -1px #fff; */
  /* border:2px solid rgb(148, 142, 142); */
  /* color:rgb(224, 211, 211); */
  /* border:none; */
  /* border-bottom:1px solid #675e5e; */
}
.popup-content .form-group textarea{
  padding:5px;
  width:100%;
  /* border:1px solid #d6d3d3; */
  background:transparent;
  /* border:1px solid #675e5e; */
  /* box-shadow: inset 1px 1px #000, inset -1px -1px #fff; */
  /* border:2px solid rgb(148, 142, 142); */
  color:rgb(224, 211, 211);
}
.background-blur{
  backdrop-filter:blur(6px);
}
.popup-content .form-group .submit-btn{
  background:#009970;
  outline:none;
  border:none;
}
.why-us .icon-box .angle{
  font-size:20px !important;
  margin-bottom:0px!important;

}
.why-us .icon-box .more-links a{
  color:#009970 !important;
}
.why-us .icon-box .more-links:hover a,.why-us .icon-box .more-links:hover i{
  color:rgb(200, 71, 255)!important;
  transition:0.5s linear;
}
.popup-content .form-group input:focus, .popup-content .form-group textarea:focus{
  /* border:none; */
  outline:none;
  /* border:2px solid #eecd10; */
}
.how-works .blog-content{
  background-color: #fff!important;
  box-shadow: 0px 0px 10px rgb(172, 165, 165);
  color:rgb(83, 80, 80)!important;
  padding:15px!important;
}
.how-works .blog-content p{
  margin-top: 5px!important;
}
.how-works .blog-content .views p{
  margin:0!important;
  color:rgb(172, 165, 165);
  text-shadow: none!important;
}
.blog-container .content:hover p{
  text-shadow: none!important;
}
.scale-img{
  overflow:hidden;
  position:relative;
}
.scale-img img{
  width:100%;
  border-radius:10px;
}
.scale-img:hover img{
  transform:scale(2);
  transition:0.3s linear;
}
.black-layer{
  width:100%;
  height:100%;
  background:rgb(0,0,0,0.5);
  position:absolute;
}
.single-blog-container{
  box-shadow:0px 4px 9px rgb(230 222 222);
  border-radius:5px;
}
.blog{
  padding: 40px 0 20px 0;
}
.blog .entry-single {
  margin-bottom: 30px;
}
.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgb(0 0 0 / 10%);
}
.blog .entry a{
  color:rgb(154, 20, 212)!important;
}
.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px auto 20px auto;
  overflow: hidden;
  width:100%;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}
.blog .entry .entry-title a {
  color: #111;
  transition: 0.3s;
}
.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}
.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}
.blog .entry .entry-meta ul li{
  margin-right:10px;
}
.blog .entry .entry-content p {
  line-height: 24px;
}
.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgb(0 0 0 / 10%)
}
.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #111;
  position: relative;
}
.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}
.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}
.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}
.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}
.blog .sidebar .recent-posts h4 a {
  color: #111;
  transition: 0.3s;
}
.blog .sidebar .recent-posts h4:hover a{
  color:rgb(154, 20, 212);
}
.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-size: 14px;
  color: #aaaaaa;
}
.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}
.hero-blog .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #009970;
  box-shadow: 0px 5px 30px rgb(65 84 241 / 40%);
}
.hero-blog{
  font-family:"Raleway",sans-serif;
  padding-bottom:10px;
}
.hero-blog h2{
  font-size:22px;
}
.hero-blog h1{
  color:rgb(154, 20, 212);
}
.hero-blog .btn-get-started span {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  line-height:30px;
}
.hero-blog .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}
.hero-blog .btn-get-started:hover i{
  transform:translateX(5px);
}
.hero-blog .img-fluid{
  width:100%;
  height:auto;
}
@media (max-width: 768px){
.hero-blog {
    text-align: center;
}}
@media (max-width: 991px){
.hero-blog {
    height: auto;
    padding: 120px 0 60px 0;
}}
.header-section {
  text-align: center;
  padding-bottom: 40px;
}
.header-section h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color:rgb(154, 20, 212);
  text-transform: uppercase;
}
.header-section p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  color: rgb(154, 20, 212);
}
.values .box img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1);
  width:100%;
  height:auto;
}
.values .box h3 {
  font-size: 24px;
  color:rgb(154, 20, 212);
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box:hover {
  box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
}
.values .box:hover img{
  transform: scale(1.2)
}
.values .box{
  padding:30px;
  box-shadow:0px 0px 2px #ada6cf;
  border-radius:5px;
}
.values .box ul li{
  list-style:none;
  margin-right:5px;
}
.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}
.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}
.blog .sidebar .search-form form input:focus{
  border:none;
  outline:none;
}
.sidebar h4:hover{
  color:rgb(154, 20, 212)!important;
}
.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: rgb(154, 20, 212);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}
.filter-category ul li.active,.filter-category ul li{
  list-style:none;
  margin-right:10px;
  line-height: 50px;
  color: #fff;
  padding: 0px 20px;
  border-radius: 5px;
  background:#eee;
  cursor:pointer;
  transition:all 0.5s ease-in-out;
}
.filter-category ul li.active{
  background: #009970;
}
.item-box{
  margin-bottom:30px;
}
.clutch-icons ul li{
  list-style:none;
}
.payment-icon{
  width:300px;
}
.payment-icon img{
  width:100%;
}

/* ==============landing page============ */
#section-1{
  width: 100%;
  height: 100vh;
  background: url(../img/landing-page/hero-bg.png) top center no-repeat;
  background-size: cover;
}
@media (min-width: 1024px){
#section-1 {
    background-attachment: fixed;
}}
#section-1 h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}
#section-1 h2 {
  color: #444444;
  margin: 15px 0 0 0;
  font-size: 26px;
}
#section-1 .container .row #btnBook {
  margin-top: 30px;
  line-height: 0;
  padding: 17px 45px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgb(65 84 241 / 40%);
  display:inline-block;
}
#section-1 .container .row span{
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 1px;
  display:inline-block;
}
#section-1 .container .row i{
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}
#section-1 .container .row #btnBook:hover i {
  transform: translateX(5px);
}
@media (max-width: 991px){
  #section-1 .container .row .img-banner {
    text-align: center;
    margin-top: 80px;
}}
@media (max-width: 768px){
#section-1 {
    text-align: center;
}}
@media (max-width: 991px){
#section-1 {
    height: auto;
    padding: 120px 0 60px;
   }
}
#section-2 .content {
  background-color: #f6f9ff;
  padding: 40px;
}
#section-2 h3{
  font-size: 17px;
  font-weight: 700;
  color: #4154f1;
  text-transform: uppercase;
}
#section-2 h2{
  font-size: 30px;
  font-weight: 700;
  color: #012970;
}
#section-2 p{
  margin: 15px 0 30px 0;
  line-height: 24px;
}
#section-2{
  padding:60px 0px;
}
#section-3{
  padding:60px 0;
}
#section-3 .feature-icons h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}
#section-3 .feature-icons .content .icon-box i {
  font-size: 46px;
  line-height: 44px;
  color: #0245bc;
  margin-right: 15px;
}
#section-3 .feature-icons .content .icon-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #012970;
}
#section-3 .feature-icons .content .icon-box p {
  font-size: 17px;
  color: #848484;
}
@media (max-width: 768px){
#section-3 .feature-icons h3 {
  font-size: 28px;
}}
#section-4{
  padding:60px 0;
}
#section-4 .section-header {
  text-align: center;
  padding-bottom: 40px;
}
#section-4 .section-header h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0;
    color: #4154f1;
    text-transform: uppercase;
}
#section-4 .section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 35px;
  line-height: 42px;
  font-weight: 700;
  color: #012970;
}
#section-4 .service-box {
  box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
  height: 100%;
  padding: 35px 30px;
  /* text-align: center; */
  transition: 0.3s;
  border-radius: 5px;
}
#section-4 .service-box .icon {
  width: 80px;
  padding: 10px 10px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}
#section-4 .service-box.blue .icon {
  color: #2db6fa;
  background: #dbf3fe;
}
#section-4 .service-box.blue {
  border-bottom:3px solid #2db6fa;
}
#section-4 .service-box.orange .icon {
  color: #f68c09;
  background: #fde3c4;
}
#section-4 .service-box.orange {
  border-bottom:3px solid #f68c09;
}
#section-4 .service-box.green .icon {
  color: #08da4e;
  background: #cffddf;
}
#section-4 .service-box.green {
  border-bottom:3px solid #08da4e;
}
#section-4 .service-box.red .icon {
  color: #e9222c;
  background: #fef7f8;
}
#section-4 .service-box.red {
  border-bottom:3px solid #e9222c;
}
#section-4 .service-box.purple .icon {
  color: #b50edf;
  background: #f8e4fd;
}
#section-4 .service-box.purple {
  border-bottom:3px solid #b50edf;
}
#section-4 .service-box.sea-green .icon {
  color: #3bf8a5;
  background: #eefaf5;
}
#section-4 .service-box.sea-green {
  border-bottom:3px solid #3bf8a5;
}
#section-4 .service-box.golden .icon {
  background: #fff7e3;
  color:#fac133;
}
#section-4 .service-box.golden {
  border-bottom:3px solid #fac133;
}
#section-4 .service-box.light-blue .icon {
  background: #e8fcfe;
  color:#1fe1f5;
}
#section-4 .service-box.light-blue {
  border-bottom:3px solid #1fe1f5;
}


#section-4 .service-box.blue:hover {
  background: #2db6fa;
}
#section-4 .service-box.orange:hover{
  background:#f68c09;
}
#section-4 .service-box.green:hover{
  background:#08da4e;
}
#section-4 .service-box.red:hover{
  background:#e9222c;
}
#section-4 .service-box.purple:hover{
  background:#b50edf;
}
#section-4 .service-box.sea-green:hover{
  background:#3bf8a5;
}
#section-4 .service-box.golden:hover{
  background:#fac133;
}
#section-4 .service-box.light-blue:hover{
  background:#1fe1f5;
}
#section-4 .service-box:hover h4,#section-4 .service-box:hover p{
  color:#fff;
}
#section-5 .section-5-slider .testimonial-item {
  box-sizing: content-box;
  padding: 30px 20px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgb(0 23 65 / 13%);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}
#section-5 .section-5-slider .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
#section-5 .section-5-slider .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}
#section-5 .section-5-slider .swiper-slide-next .testimonial-item {
  background: rgb(247, 249, 255);
}
#section-5 .section-5-slider .swiper-slide {
  opacity: .3;
  transform:scale(1);
}
@media (min-width: 1200px){
  #section-5 .section-5-slider .swiper-slide-next {
    opacity: 1;
    transform: scale(1.14);
}}
#section-5 .section-5-slider .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
#section-5 .section-5-slider .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
#section-5 .section-5-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
#section-5 .section-5-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4154f1;
}
#section-5 .section-5-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4154f1;
}
#section-5 .section-header ,#section-6 .section-header, #section-7 .section-header{
  text-align: center;
  padding-bottom: 40px;
}
#section-5 .section-header h2,#section-6 .section-header h2 ,#section-7 .section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #4154f1;
  text-transform: uppercase;
}
#section-5 .section-header p,#section-6 .section-header p ,#section-7 .section-header p{
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 35px;
  line-height: 42px;
  font-weight: 700;
  color: #012970;
}

#section-5 .section-5-slider .testimonial-item .stars {
  margin-bottom: 15px;
}
#section-5 .section-5-slider .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
  display:inline-block;
}
@media (max-width: 1199px){
  #section-5 .section-5-slider .swiper-slide-active {
    opacity: 1;
}}
#section-5 .section-5-slider .swiper-wrapper{
  transform: translate3d(-2697.33px, 0px, 0px);
  transition-duration: 0ms;
}
#section-5 .section-5-slider .swiper-wrapper .swiper-slide .swiper-slide-duplicate{
  width: 345.333px; 
  margin-right: 40px;
}
#section-6{
  padding:60px 0px;
  overflow:hidden;
}
#section-6 .swiper-wrapper{
  transform: translate3d(-1888px, 0px, 0px);
  transition-duration: 0ms;
}
#section-6 .swiper-wrapper .swiper-slide{
  width: 116px; 
  margin-right: 120px;
}
#section-7{
  padding:60px 0px;
  overflow:hidden;
}
#section-7 .info-box {
  color: #444444;
  background: #fafbff;
  width:100%;
  padding: 30px;
}
#section-7 .info-box i {
  font-size: 47px;
  line-height: 0;
  color: #4154f1;
}
#section-7 .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}
#section-7 .php-email-form {
  background: #fafbff;
  padding: 30px;
  height: 100%;
}
#section-7 .php-email-form input, #section-7 .php-email-form textarea{
  padding: 10px 15px;
  border-radius:none;
}
#section-7 .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
#section-7 .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
#section-7 .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
#section-7 .php-email-form button[type="submit"] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.payment-box img{
  width:50%;
  margin-left:auto;
}
@media(max-width:426px){
  .payment-box img{
    margin-right:auto;
    margin-left:0px;
  }
}
@media (min-width: 576px){
.modal-dialog {
    max-width: 550px;
    margin: 1.75rem auto;
}}

/* -------------------------------------
custom error page
------------------------------- */
.error-page-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* background: url(https://1.bp.blogspot.com/--JtntvkaTGc/XbkRn9fHKLI/AAAAAAAAAUA/-uFZ4jpTUhIXVygE-8s7IKisHyAFGZfigCLcBGAsYHQ/s1600/bg.png) center no-repeat; */
  background-size: cover;
  position: relative;
  padding: 0 20px;
}

.error-page-container:after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 0; left: 0;
}

.error-page-container * {
  position: relative;
  z-index: 1;
}

.error-page-container img {
  width: 100%;
  max-width: 500px;
  margin-bottom: 25px;
}

.error-page-container h4 {
  color: #333;
  letter-spacing: 2px;
  font-weight:800;
  color:#009970;
}
.error-page-container h4 span{
  color:rgb(255, 184, 50);
}

.error-page-container .button {
  display: inline-block;
  margin-top: 20px;
  padding: 18px 30px;
  background:rgb(255, 184, 50);
  color: #fff;
  /* box-shadow: 0 2px 10px rgb(0 0 0 / 20%); */
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 50px;
  /* border: 2px solid rgb(200, 71, 255); */
}

/* .error-page-container .button:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
} */

#section-agents .container .row .card-box-d .card-overlay{
  text-align:center;
  color:#fff;

}
#section-agents .container .row .card-box-d .card-title-d{
  margin-top:100px;
}
#section-agents .container .row .card-box-d .card-footer-d a:hover{
  text-shadow:2px 2px 10px #fff;
}
#section-agents .container .row .card-box-d strong{
  font-weight:normal;
}
#section-agents .container .row .card-box-d .card-footer-d i{
  font-size:20px;
}

@media (max-width:426px){
  #section-agents .card-box-d .title-d{
    opacity:1;
    margin-top:200px;
    margin-bottom:30px;
  }
  #section-agents .card-box-d .content-d{
    opacity:1;
  }
  #section-agents .card-box-d .card-overlay-hover{
    background:linear-gradient(to bottom, transparent,#2eca6a);
  }
}