/*************************
CSS Index
* Base CSS
* Header area CSS
* Hero area CSS
* Features area CSS
* Rectangle area CSS
* Testimonial area CSS
* Screen slider area CSS
* Subscribe area CSS
* Footer area CSS
* Preloader CSS
* Scroll to top CSS
*************************/

/********
Base CSS
*********/

/*** Body CSS ***/

body {
  font-size: 16px;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.9;
  color: #576477;
}

p {
  margin-bottom: 0;
}

.g {
  color: #23985d;
}

.grey {
  color: lightgrey;
}

/*** Focus CSS ***/

a:focus,
input:focus,
button:focus,
textarea:focus {
  outline: 0 solid;
}

a:hover {
  text-decoration: none;
}

/*** Image CSS ***/

img {
  max-width: 100%;
  height: auto;
}

/*** Heading CSS ***/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #001737;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 36px;
}

h3,
h3 a {
  font-size: 23px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

/*** Ul & Li CSS ***/

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

li {
  display: inline-block;
}

.title li {
  display: list-item !important;
}

a {
  color: #23985d;
}

/*** Color Typo ***/
.white,
.white a,
.white h1,
.white h2,
.white h3,
.white h4,
.white h5,
.white h6 {
  color: #ffffff;
}

/*** Section padding CSS ***/

.pd-80 {
  padding: 80px 0;
}

.pd-100 {
  padding: 100px 0;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

/*** Overflow hidden CSS ***/

.o-hi {
  overflow: hidden;
}

/*** Overflow hidden CSS ***/

.aic {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*** Display flex CSS ***/

.dfx {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*** Background CSS ***/

.bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/***************
Header area CSS
***************/

.header-area {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.header-absolute {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
  padding: 15px 0;
}

#mainmenu-area-sticky-wrapper {
  position: relative;
  z-index: 9;
}

.is-sticky .header-area {
  -webkit-box-shadow: 0 0 4px rgb(0 0 0 / 0.14),
    0 4px 8px rgb(218 213 213 / 0.31);
  box-shadow: 0 0 4px rgb(0 0 0 / 0.14), 0 4px 8px rgb(218 213 213 / 0.31);
  z-index: 99999;
  margin: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-color: #ffffff;
  padding: 13px 0;
}

/*** Menu CSS ***/

.mainmenu li {
  position: relative;
}

.mainmenu li a {
  display: block;
  padding: 15px 15px;
  color: #576477;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-size: 15px;
}


.mainmenu li ul {
  position: absolute;
  left: 0;
  top: 63px;
  width: 300px;
  background-color: white;
  text-align: left;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  padding: 10px;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.mainmenu li:hover ul {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

.mainmenu li li {
  display: block;
  position: relative;
}

.mainmenu li ul li > a {
  padding: 5px 10px;
  font-weight: 400;
  color: #576477 !important;
  transition: all 0.3s;
}

.mainmenu li li:hover > a {
  color: #c82c29 !important;
}

.sticky .mainmenu li li:hover > a,
.mainmenu li li:hover > a {
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  padding-left: 23px;
}

.is-sticky .mainmenu li ul li a {
  padding: 5px 10px;
}
.is-sticky .mainmenu li ul li a:hover {
  padding-left: 23px;
}
.mainmenu li a:after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  content: "";
  background-color: #23985d;
  z-index: -1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 5px;
}

.mainmenu li a.active:after,
.mainmenu li:hover a:after {
  width: 100%;
  left: 0;
  right: auto;
}

.mainmenu li ul li a:after {
  opacity: 0;
}

/*************
Hero area CSS
*************/

.hero-area {
  background-color: #e5e9f2;
  position: relative;
  padding-top: 150px;
  padding-bottom: 100px;
}

.hero-area .h-icon {
  font-size: 25px;
  background-color: #362785;
  width: 55px;
  height: 55px;
  display: inline-block;
  color: #fff;
  text-align: center;
  line-height: 55px;
  border-radius: 5px;
  margin-bottom: 40px;
  -webkit-box-shadow: 0px 5px 30px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 30px 5px rgba(0, 0, 0, 0.3);
}

.hero-area h3 {
  color: #8392a5;
  margin-bottom: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-area h1 span {
  font-weight: 200;
}

.hero-area h1 {
  line-height: 1.1;
  margin-bottom: 40px;
}

/*** Button CSS ***/

.button {
  display: inline-block;
  background-color: #c82c29;
  padding: 12px 30px;
  color: #fff;
  border-radius: 5px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}

.cbutton button {
  background-color: #ffce63;
  padding: 14px 28px;
  color: #000;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: none;
  transition: all 0.5s;
}

.cbutton button:after {
  position: absolute;
  right: 0;
  top: 0;
  width: 0%;
  height: 100%;
  content: "";
  background-color: #001737;
  z-index: -1;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.cbutton button:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}

.button:hover,
.cbutton button:hover {
  color: white;
  cursor: pointer;
}

.button:after {
  position: absolute;
  right: 0;
  top: 0;
  width: 0%;
  height: 100%;
  content: "";
  background-color: #18a961;
  z-index: -1;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.button:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}

.header-btn a.button {
  font-size: 18px;
  padding: 13px 20px;
}

.hero-img {
  position: relative;
}

.hero-img img {
  position: relative;
  z-index: 3;
  border: 10px solid white;
  border-radius: 45px;
}

.hero-img img.path-1-img {
  position: absolute;
  right: -21px;
  top: 58%;
  width: 354px;
  margin-top: -15px;
  pointer-events: none;
  border: none;
}

.hero-area .col-lg-7 {
}

img.path-1-img.path-3-img {
  right: -320px;
  bottom: 17%;
  top: auto;
  pointer-events: none;
  z-index: 2;
}

img.path-1-img.path-2-img {
  left: -42%;
  bottom: -125px;
  top: auto;
  z-index: 2;
  pointer-events: none;
  width: 336px;
}

.waves-block {
  position: absolute;
  width: 800px;
  height: 800px;
  right: -240px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.waves-block .waves {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(54, 39, 133, 0.2);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 50%;
  background-clip: padding-box;
  -webkit-animation: waves 6s ease-in-out infinite;
  animation: waves 6s ease-in-out infinite;
}

.waves-block .wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 2s;
}

.waves-block .wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 3s;
}

.waves-block .wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 4s;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

/*****************
Features area CSS
*****************/

.title h6 {
  color: #8392a5;
  font-weight: 400;
  margin-bottom: 20px;
}

.title h2 span {
  font-weight: 200;
}

.title h2 {
  line-height: 1.4;
}

.title {
  margin-bottom: 60px;
}

.single-features-item {
  margin-bottom: 30px;
  -webkit-box-shadow: 10px 10px 40px -6px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 40px -6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 7px;
}

.features-icon {
  width: 20%;
  margin-right: 8%;
}

.features-content {
  width: 80%;
}

.features-icon .mdi {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  background-color: #35bfe6;
  border-radius: 5px;
  color: white;
  font-size: 25px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #35bfe6;
}

.features-icon span.mdi.mdi-file-music {
  background-color: #7142f8;
  border: 1px solid #7142f8;
}

.features-icon span.mdi.mdi-settings {
  background-color: #ecbf24;
  border-color: #ecbf24;
}

.features-icon span.mdi.mdi-account {
  background-color: #5cbc2b;
  border-color: #5cbc2b;
}

.features-icon span.mdi.mdi-radio {
  background-color: #f38550;
  border-color: #f38550;
}

.features-icon span.mdi.mdi-server {
  background-color: #fa4c9a;
  border-color: #fa4c9a;
}

.single-features-item:hover span.mdi.mdi-account {
  color: #5cbc2b;
}

.single-features-item:hover span.mdi {
  background-color: white;
  color: #35bfe6;
}

.single-features-item:hover span.mdi.mdi-file-music {
  color: #7142f8;
}

.single-features-item:hover span.mdi.mdi-settings {
  color: #ecbf24;
}

.single-features-item:hover span.mdi.mdi-radio {
  color: #f38550;
}

.single-features-item:hover span.mdi.mdi-server {
  color: #fa4c9a;
}

.features-image {
  position: relative;
  z-index: 1;
  text-align: center;
}

.features-image:after {
  position: absolute;
  right: 8%;
  bottom: 23%;
  width: 100px;
  height: 300px;
  content: "";
  background-color: #c82c29;
  z-index: -1;
  -webkit-transform: rotate(23deg);
  -ms-transform: rotate(23deg);
  transform: rotate(23deg);
  border-radius: 0 20px;
  -webkit-animation: animatebg 3s linear infinite;
  animation: animatebg 3s linear infinite;
}

@-webkit-keyframes animatebg {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(23deg);
    transform: rotate(23deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes animatebg {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(23deg);
    transform: rotate(23deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.features-image img {
  box-shadow: 0 10px 55px rgba(0, 0, 0, 0.1);
  border-radius: 34px;
}

.features-area .title {
  margin-bottom: 50px;
}

/*** Counter area CSS ***/

.c-border-bg {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
  padding-top: 50px;
}

.c-border-bg:after {
  position: absolute;
  left: 0;
  top: -40px;
  content: "";
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.counter-number {
  font-size: 48px;
  color: #001737;
  font-weight: 600;
}

.single-counter-box h6 {
  font-weight: 500;
  color: #8392a5;
  text-transform: uppercase;
}

.single-counter-box {
  text-align: center;
}

/******************
Rectangle area CSS
******************/

.boxed-btn {
  background-color: #001737;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 180px;
}

.btn-white {
  margin-top: -50px;
  border: 2px solid white;
  border-radius: 10px;
  font-size: 1.2em;
  padding: 15px;
  color: white;
}

.btn-white:hover {
  color: white;
}

.btn-success {
  background: #23985d;
}

.bg-success {
  background: #23985d !important;
  color: white;
}

.bg-success a {
  color: white !important;
}

.btn-icon-img {
  width: 15%;
  margin-right: 10px;
}

.btn-content {
  width: 80%;
}

.btn-content h6 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.btn-content h6 span {
  display: block;
  font-weight: 300;
  font-size: 12px;
  margin-bottom: 8px;
}

.boxed-btn:hover,
.boxed-btn.active {
  background-color: #c82c29;
}

.boxed-btn.right-btn {
  margin-left: 15px;
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  color: #23985d;
  font-size: 23px;
  font-weight: normal;
  position: absolute;
  left: 0;
  top: 2px;
}

.list-none li:before {
  content: "\f05e";
  color: #7d1d23;
}

.list-bullet li:before {
  content: "\f192";
  color: #a9a9a9;
  font-weight: normal;
}

.list li {
  display: block;
  color: #001737;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  line-height: 23px;
}

.list-empty li:before {
  content: "";
}

.list-empty li {
  padding: 5px 10px;
  margin-bottom: 0px;
}

.features ul li {
  margin-bottom: 8px;
}

.rectangle-img {
  position: relative;
  z-index: 1;
}

.rectangle-img img.mask {
  position: absolute;
  left: 5%;
  top: 25%;
  pointer-events: none;
  -webkit-animation: maskimg 15s linear infinite;
  animation: maskimg 15s linear infinite;
  margin-right: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

@-webkit-keyframes maskimg {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes maskimg {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.rectangle-img img.message-1 {
  position: absolute;
  right: 3%;
  bottom: 20%;
  pointer-events: none;
  margin-right: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.title .mdi {
  background-color: #23985d;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  color: white;
  font-size: 25px;
  border-radius: 50% 50%;
  margin-bottom: 32px;
  -webkit-box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.3);
}

.rectangle-area {
  position: relative;
  z-index: 1;
}

.rectangle-area {
  background: #e5e8e7;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#e5e8e7),
    to(#fdfdfd)
  );
  background: -o-linear-gradient(top, #e5e8e7 0%, #fdfdfd 100%);
  background: linear-gradient(to bottom, #e5e8e7 0%, #fdfdfd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e8e7', endColorstr='#fdfdfd', GradientType=0);
}

.rectangle-img:after {
  height: 500px;
  width: 500px;
  background: white;
  border-radius: 50%;
  -webkit-animation: rectangleimg 3s linear infinite;
  animation: rectangleimg 3s linear infinite;
  position: absolute;
  left: -10%;
  top: 14%;
  content: "";
  z-index: -1;
}

@-webkit-keyframes rectangleimg {
  0% {
    -webkit-box-shadow: 0 0 0 0 white;
    box-shadow: 0 0 0 0 white;
  }
  50% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.3);
  }
  90% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
  }
}

@keyframes rectangleimg {
  0% {
    -webkit-box-shadow: 0 0 0 0 white;
    box-shadow: 0 0 0 0 white;
  }
  50% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.3);
  }
  90% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
  }
}

img.shape-img {
  position: absolute;
  right: -10%;
  top: 34%;
  z-index: -1;
  pointer-events: none;
}

.rectangle-img img {
  margin-right: 100px;
  box-shadow: 0 10px 55px rgba(0, 0, 0, 0.1);
  border-radius: 32px;
}

/********************
Testimonial area CSS
********************/

.testimonial-area {
  position: relative;
  z-index: 1;
  padding: 130px 0 80px;
}

.testimonial-area:after {
  background-color: #362785;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 65%;
  content: "";
  z-index: -1;
}

.t-title h6,
.t-title h2 {
  color: white;
}

.t-title h6 {
  font-weight: 400;
  text-transform: uppercase;
}

.t-title h2 span {
  font-weight: 200;
}

.nav-bar {
  text-align: right;
  margin-top: 25px;
}

.nav-bar button {
  background: none;
  border: none;
  color: white;
  font-size: 25px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 10px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.testimonial2 button:hover {
  color: #c82c29;
}

button.nextbtn:hover {
  padding-left: 10px;
  transition: all 0.3s;
}

button.prevbtn:hover {
  padding-right: 10px;
  transition: all 0.3s;
}

.nav-bar button.prevbtn:after {
  position: absolute;
  right: -10px;
  top: 0;
  width: 2px;
  height: 50px;
  content: "";
  background-color: white;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  opacity: 0.2;
}

.single-c-item {
  background-color: white;
  padding: 40px 30px;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  margin: 30px 15px;
}

.single-c-item h5 {
  margin-bottom: 20px;
}

.t-image img {
  border-radius: 50%;
}

.t-content {
  margin-top: 40px;
}

.t-image {
  width: 20%;
  margin-right: 20px;
}

.t-text {
  width: 80%;
}

.t-text h6 span {
  display: block;
  font-size: 14px;
  color: #576477;
  font-weight: 400;
  margin-top: 8px;
}

.quote-icon {
  position: absolute;
  right: 10%;
  bottom: 8%;
  font-size: 50px;
  color: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

/**********************
Screen slider area CSS
**********************/

.gallery-slider .slide-item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin: 30px 0px;
  border-radius: 30px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 0px 0px #ffffff,
    0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 0px #ffffff, 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.gallery-slider .swiper-slide-active .slide-item {
  -webkit-box-shadow: 0px 0px 0px 12px #ffffff,
    0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 12px #ffffff, 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.swiper-container {
  padding-bottom: 0;
}

/******************
Subscribe area CSS
******************/

button.button {
  border: none;
  cursor: pointer;
}

.form-area button.button {
  position: absolute;
  right: 8%;
  top: 0;
  border-radius: 0 5px 5px 0;
}

.form-area button.button:after {
  border-radius: 0 5px 5px 0;
}

.form-area input[type="email"] {
  padding: 11px 20px 11px 45px;
  width: 82%;
  border-radius: 5px;
  border: 1px solid #e5e9f2;
}

span.form-icon {
  position: relative;
}

span.form-icon i.mdi.mdi-email-outline {
  position: absolute;
  bottom: -8px;
  left: 18px;
  font-size: 18px;
  color: #8392a5;
}

.form-area {
  position: relative;
  margin-top: 40px;
}

p.circle-text .mdi {
  font-size: 18px;
  display: inline-block;
}

p.circle-text {
  margin-top: 15px;
}

.subscribe {
  position: relative;
  z-index: 1;
}

.subscribe:after {

  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.subscribe-bg-c {
  background-color: #ffffff52;
  padding: 42px;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

/***************
Footer area CSS
***************/

.footer-area {
  background: #ffffff;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffffff),
    to(#dae1e9)
  );
  background: -o-linear-gradient(top, #ffffff 0%, #dae1e9 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #dae1e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dae1e9', GradientType=0);
}

.footer-btn,
.copyright-section {
  text-align: right;
}

.footer-btn h4 {
  margin-bottom: 25px;
}

.footer-btn .boxed-btn {
  text-align: left;
}

.copyright-section li a {
  padding-left: 15px;
  display: block;
  font-weight: 500;
  color: #576477;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.copyright {
  font-size: 0.8em;
  padding-top: 50px;
}

a.footer-logo {
  margin-bottom: 15px;
  display: block;
}

.copyright-section li a:hover {
  color: #c82c29;
}

.sponsor-area {
  color: #8392a5;
  font-size: 20px;
}
/*************
Preloader CSS
*************/

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../image/preloader/preloader-3.gif) center no-repeat #fff;
}

/*****************
Scroll to top CSS
*****************/

#topcontrol {
  z-index: 9;
}

#topcontrol {
  font-size: 16px;
  font-weight: 900;
  color: white;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #23985d;
  border-radius: 50%;
  -webkit-box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
}

#topcontrol:hover {
  background-color: #35bfe6;
}

/******************
CSS Index
* Header area CSS
* Hero area CSS
******************/

/***************
Header area CSS
***************/

.is-sticky .header-2 .mainmenu li a {
  color: #576477;
}

.is-sticky .logo-1,
.logo-2 {
  display: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.is-sticky .logo-2 {
  display: block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/*************
Hero area CSS
*************/

@-webkit-keyframes animatetwoimg {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3),
      0 0 0 0 rgba(73, 52, 182, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 0 rgba(73, 52, 182, 0.6);
  }
  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 109, 74, 0),
      0 0 0 0 rgba(73, 52, 182, 0.2);
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(73, 52, 182, 0.2);
  }
  80% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 109, 74, 0),
      0 0 0 30px rgba(255, 109, 74, 0);
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0),
      0 0 0 30px rgba(255, 109, 74, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 109, 74, 0),
      0 0 0 30px rgba(255, 109, 74, 0);
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
}

@keyframes animatetwoimg {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3),
      0 0 0 0 rgba(73, 52, 182, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 0 rgba(73, 52, 182, 0.6);
  }
  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 109, 74, 0),
      0 0 0 0 rgba(73, 52, 182, 0.2);
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(73, 52, 182, 0.2);
  }
  80% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 109, 74, 0),
      0 0 0 30px rgba(255, 109, 74, 0);
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0),
      0 0 0 30px rgba(255, 109, 74, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 109, 74, 0),
      0 0 0 30px rgba(255, 109, 74, 0);
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
}

/*********************
CSS Index
* Base CSS
* Header area CSS
* Hero area CSS
* Service area CSS
* Features area CSS
* Features top area CSS
* Features bottom area CSS
* Testimonial area CSS
* Team area CSS
* Mask Group area CSS
* Footer area CSS
*********************/

/*******
Base CSS
*******/

/*** Body CSS ***/

body {
  font-size: 16px;
}

/***************
Header area CSS
***************/

.header-btn {
  text-align: right;
}

.is-sticky .header-4 .mainmenu li > a {
  color: #576477;
}

/*************
Hero area CSS
*************/

.header-btn .button {
  padding: 6px 30px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.header-btn .button:after {
  background-color: white;
  border-radius: 4px;
}

.is-sticky .header-btn .button {
  background-color: #23985d;
  color: white;
}

.is-sticky .header-btn .button:after {
  background-color: #18a961;
}

.header-btn .button:hover {
  color: #001737;
}

.is-sticky .header-btn .button:hover {
  color: white;
}

/****************
Service area CSS
****************/

.service-area {
  position: relative;
  z-index: 1;
}

.service-area:after {
  position: absolute;
  left: calc((-100vw + 65%) / 2);
  top: 0;
  width: 40%;
  height: 30%;
  content: "";
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: -1;
}

.service-area:after,
.t-c-2 .single-c-item:after {
  background: #c0ccda;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(1%, #c0ccda),
    to(#ffffff)
  );
  background: -o-linear-gradient(left, #c0ccda 1%, #ffffff 100%);
  background: linear-gradient(to right, #c0ccda 1%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c0ccda', endColorstr='#ffffff', GradientType=1);
}

.service-area .title {
  margin-bottom: 70px;
}

.single-s-item {
  text-align: center;
  -webkit-box-shadow: 0 0 20px #f3efef;
  box-shadow: 0 0 20px #f3efef;
  padding: 40px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin-top: 0;
}

.single-s-item:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #5cbc2b;
  margin-top: -10px;
}

.s-icon {
  margin-bottom: 35px;
  display: inline-block;
  position: relative;
}

.s-icon .icon {
  width: 80px;
  height: 96px;
  line-height: 96px;
  display: inline-block;
  background: #5cbc2b;
  color: white;
  font-size: 32px;
  -webkit-box-shadow: 0 23px 30px rgba(92, 188, 43, 0.5);
  box-shadow: 0 23px 30px rgba(92, 188, 43, 0.5);
  -webkit-clip-path: polygon(100% 0, 100% 75%, 70% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 75%, 70% 100%, 0 100%, 0 0);
  position: relative;
  z-index: 1;
}

.icon-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80%;
  height: 80%;
  background: rgba(92, 188, 43, 0.3);
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.s-icon span.bar {
  width: 65%;
  height: 2px;
  display: block;
  position: absolute;
  left: 24%;
  top: 72%;
  background-color: #ffffff;
  z-index: 1;
  opacity: 0.2;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.s-icon span.bar:nth-child(1) {
  top: 30%;
}

.s-icon span.bar:nth-child(3) {
  top: 70%;
  left: 73%;
  width: 55%;
}

.color-o span.icon-bg {
  background-color: rgba(243, 133, 80, 0.3);
}

.color-o .icon {
  background-color: #f38550;
}

.color-o:hover {
  border-color: #f38550;
}

.color-b span.icon-bg {
  background-color: rgba(53, 191, 230, 0.3);
}

.color-b .icon {
  background-color: #35bfe6;
}

.color-b:hover {
  border-color: #35bfe6;
}

.single-s-item h4 {
  margin-bottom: 15px;
}

.border-btn {
  color: #001737;
  position: relative;
  z-index: 1;
  border-bottom: 3px solid #c0ccda;
  margin-top: 25px;
  display: inline-block;
  padding-bottom: 5px;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.border-btn:hover {
  color: #5cbc2b;
  border-color: #5cbc2b;
}

.color-o .border-btn:hover {
  color: #f38550;
  border-color: #f38550;
}

.color-b .border-btn:hover {
  color: #35bfe6;
  border-color: #35bfe6;
}

/*****************
Features area CSS
*****************/

.features-area-3 {
  position: relative;
  z-index: 1;
}

.features-area-3:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}

.features-area-3:before {
  background: #ffffff;
  background: -o-linear-gradient(45deg, #ffffff 0%, #e5e9f2 100%);
  background: linear-gradient(45deg, #ffffff 0%, #e5e9f2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e9f2', GradientType=1);
  -webkit-clip-path: polygon(30% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 30%);
  clip-path: polygon(30% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 30%);
}

.f-border {
  position: absolute;
  bottom: 0%;
  left: -27%;
  z-index: -1;
}

/*********************
Features top area CSS
*********************/

.features-left {
  position: relative;
  z-index: 1;
}

.features-left img.focus {
  position: absolute;
  left: 35%;
  bottom: 38%;
  pointer-events: none;
  -webkit-animation: maskimg 10s linear infinite;
  animation: maskimg 10s linear infinite;
  margin: 0;
  border-radius: 5px;
}

.features-left:after {
  position: absolute;
  left: 0;
  bottom: 4%;
  width: 60%;
  height: 75%;
  content: "";
  background-color: #c82c29;
  z-index: -1;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 25% 100%, 0 84%, 0 0);
  clip-path: polygon(100% 0, 100% 100%, 25% 100%, 0 84%, 0 0);
}

.features-left img {
  margin-left: 15%;
  position: relative;
  z-index: 2;
  margin-bottom: 90px;
  border-radius: 34px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-left span.f-bar {
  width: 40%;
  height: 2px;
  display: block;
  position: absolute;
  left: 14%;
  top: 74%;
  background-color: #fff;
  z-index: 1;
  opacity: 0.2;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.features-left span.f-bar.bar-1 {
  top: 38%;
}

.features-left span.f-bar.bar-2 {
  top: 50%;
}

.features-left span.f-bar.bar-3 {
  top: 58%;
  width: 20%;
  left: 20%;
}

.features-left span.f-bar.bar-4 {
  top: 85%;
}

.features-left span.f-bar.bar-5 {
  top: 90%;
  left: 40%;
}

.counter-icon {
  width: 24%;
  margin-right: 20px;
}

.counter-text {
  width: 76%;
}

.counter-icon .mdi {
  font-size: 50px;
  color: #23985d;
}

.counter-icon img {
  width: 45px;
}

.counter-text h6 {
  text-transform: uppercase;
}

/************************
Features bottom area CSS
************************/

.features-right:after {
  left: auto;
  right: 0;
  -webkit-clip-path: polygon(100% 0%, 100% 84%, 80% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0%, 100% 84%, 80% 100%, 0 100%, 0 0);
  background-color: #0b0037;
}

.features-right span.f-bar {
  left: auto;
  right: -26%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.features-right img.focus {
  left: 10%;
  -webkit-animation: none;
  animation: none;
  bottom: 45%;
  margin: 0;
}

.features-left.features-right {
  text-align: right;
}

.features-left.features-right img {
  margin-right: 15%;
}

.features-right span.f-bar.bar-3 {
  right: 0%;
  left: auto;
}

.features-right span.f-bar.bar-5 {
  left: auto;
  right: 0;
}

/********************
Testimonial area CSS
********************/

.testimonial-3 .title {
  margin-bottom: 0;
}

.t-c-2 .single-c-item:after {
  position: absolute;
  left: -40%;
  bottom: 23%;
  width: 100%;
  height: 40%;
  content: "";
  z-index: -1;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.t-c-2 .t-image img {
  border-radius: 0;
  -webkit-clip-path: polygon(100% 0, 100% 70%, 75% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 70%, 75% 100%, 0 100%, 0 0);
}

.s-bg {
  position: relative;
  z-index: 1;
  background-color: #0b0037;
  padding: 50px 0;
  -webkit-clip-path: polygon(
    0 0,
    100% 0,
    100% 20%,
    100% 80%,
    92% 100%,
    20% 100%,
    0 100%,
    0% 20%
  );
  clip-path: polygon(
    0 0,
    100% 0,
    100% 20%,
    100% 80%,
    92% 100%,
    20% 100%,
    0 100%,
    0% 20%
  );
}

.s-bg:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-position: top center;
  background-size: 100% 165%;
}

.s-bg .subscribe-bg-c {
  background: none;
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.s-bg .subscribe-bg-c h2 {
  color: #fff;
}


/*******************
Mask Group area CSS
*******************/

.mask-title h4 {
  color: #8392a5;
  margin-bottom: 20px;
  font-weight: 400;
}

.mask-title h2 {
  margin-bottom: 40px;
}

.mask-title .boxed-btn {
  text-align: left;
}

.mask-title h6.version {
  font-size: 14px;
  font-weight: 500;
  color: #576477;
  margin-top: 30px;
}

.mask-title h6.version span {
  color: #c82c29;
  margin-left: 10px;
}

.mask-Group-area {
  position: relative;
  z-index: 1;
  background-color: #e5e9f2;
}

.group-image img {
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  box-shadow: 0 10px 55px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.group-image img:nth-child(1) {
  bottom: auto;
  top: 0;
  width: 250px;
  left: 10%;
  -webkit-animation: maskimg 10s linear infinite;
  animation: maskimg 10s linear infinite;
}

.group-image img:nth-child(2) {
  bottom: auto;
  top: 10%;
  left: -5%;
}

.group-image img:nth-child(3) {
  left: 3%;
  -webkit-animation: maskimg 10s linear infinite;
  animation: maskimg 10s linear infinite;
}

.group-image img:nth-child(4) {
  left: auto;
  right: 12%;
  width: 208px;
  bottom: -25%;
  z-index: 2;
  border-radius: 30px;
  border: 10px solid white;
}

.group-image img:nth-child(5) {
  left: auto;
  right: 4%;
  width: 208px;
  bottom: -10%;
  z-index: 1;
  border-radius: 30px;
  border: 10px solid white;
}

.mask-title {
  position: relative;
  z-index: 2;
}

.mask-Group-area:after {
  position: absolute;
  left: -30px;
  bottom: -150px;
  width: 100%;
  height: 300px;
  content: "";
  z-index: -9;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mask-Group-area:after {
  background: #ffffff;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    to(#e5e9f2)
  );
  background: -o-linear-gradient(left, #ffffff 0%, #e5e9f2 100%);
  background: linear-gradient(to right, #ffffff 0%, #e5e9f2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e9f2', GradientType=1);
}

/***************
Footer area CSS
***************/

.footer-area-3 {
  padding: 80px 0 30px;
}

.footer p.mt-20 {
  margin-top: 20px;
  font-size: 16px;
}

.footer h4 {
  margin-bottom: 30px;
}

.footer-menu li {
  display: block;
}

.footer-menu li a {
  font-size: 15px;
  font-weight: 500;
}

.footer ul {
  margin-top: 15px;
}

/*********************
CSS Index
* Base CSS
* Header area CSS
* Hero area CSS
* Client logo area CSS
* Service area CSS
* Video area CSS
* Features area CSS
* Pricing area CSS
* Testimonial area CSS
* FAQ area CSS
* Footer area CSS
*********************/

/********
Base CSS
*********/

/*** Body ***/

body {
  font-size: 16px;
}

/***************
Header area CSS
***************/

.header-4 .mainmenu li a {
  color: white;
  font-size: 1.3em;
}

.header-4 .button,
.hero-4 .button,
.features-right .button {
  background-color: white;
  color: #23985d;
}

.features-right .button {
  background-color: #23985d;
  color: white;
}

/*************
Hero area CSS
*************/

.hero-4 {
  background: linear-gradient(rgba(35, 152, 93, 0.8), rgba(35, 152, 93, 0.8)),
    url("/static/img/slider.jpg");
  background-size: cover;
  color: white;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

.hero-4 h1 {
  font-size: 76px;
  color: white;
  font-weight: 600;
}

.hero-4 h2 {
  font-size: 29px;
  color: white;
  margin-bottom: 30px;
}

.hero-4 p {
  margin-bottom: 30px;
}

.hero-4 .button {
  margin-right: 10px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.hero-4 .button:after {
  background-color: white;
}

.hero-4 .button:hover {
  color: #f38550;
}

.hero-4-img {
  margin-right: calc((-70vw + 100%) / 2);
}

.hero-4-img img {
  -webkit-box-shadow: 20px 20px 5px 0px;
  box-shadow: 20px 20px 5px 0px;
  color: rgba(0, 0, 0, 0.2);
}

/*** Animation CSS ***/

.animation-4 span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  content: "";
  background: white;
  display: block;
  border-radius: 50%;
}

.animation-4 span:nth-child(1) {
  top: 0;
  bottom: auto;
  width: 40px;
  height: 40px;
  -webkit-animation: a 10s linear infinite;
  animation: a 10s linear infinite;
}

@-webkit-keyframes a {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes a {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.animation-4 span:nth-child(2) {
  top: 0;
  bottom: auto;
  width: 50px;
  height: 50px;
  left: auto;
  right: 0;
  -webkit-animation: a 10s linear infinite;
  animation: a 10s linear infinite;
}

.animation-4 span:nth-child(3) {
  top: 0;
  bottom: auto;
  width: 50px;
  height: 50px;
  left: 20%;
  -webkit-animation: a 10s linear infinite;
  animation: a 10s linear infinite;
}

.animation-4 span:nth-child(4) {
  bottom: 65%;
  width: 50px;
  height: 50px;
  left: 42%;
  -webkit-animation: a 10s linear infinite;
  animation: a 10s linear infinite;
}

.animation-4 span:nth-child(5) {
  left: auto;
  right: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: a 10s linear infinite;
  animation: a 10s linear infinite;
}

.animation-4 span:nth-child(6) {
  bottom: 15%;
  width: 50px;
  height: 50px;
  left: 49%;
  -webkit-animation: a 10s linear infinite;
  animation: a 10s linear infinite;
}

.animation-4 span:nth-child(7) {
  left: auto;
  right: 30%;
  bottom: auto;
  top: 10%;
  -webkit-animation: b 30s linear infinite;
  animation: b 30s linear infinite;
}

@-webkit-keyframes b {
  0% {
    right: 30%;
  }
  40% {
    right: 50%;
    top: 20%;
  }
  60% {
    right: 70%;
    top: 10%;
  }
  80% {
    right: 40%;
    top: 5%;
  }
  100% {
    right: 30%;
  }
}

@keyframes b {
  0% {
    right: 30%;
  }
  40% {
    right: 50%;
    top: 20%;
  }
  60% {
    right: 70%;
    top: 10%;
  }
  80% {
    right: 40%;
    top: 5%;
  }
  100% {
    right: 30%;
  }
}

.animation-4 span:nth-child(8) {
  left: auto;
  right: 22%;
  bottom: 9%;
  -webkit-animation: c 30s linear infinite;
  animation: c 30s linear infinite;
}

@-webkit-keyframes c {
  0% {
    right: 22%;
    bottom: 9%;
  }
  50% {
    right: 42%;
    bottom: 0%;
  }
  100% {
    right: 22%;
    bottom: 9%;
  }
}

@keyframes c {
  0% {
    right: 22%;
    bottom: 9%;
  }
  50% {
    right: 42%;
    bottom: 0%;
  }
  100% {
    right: 22%;
    bottom: 9%;
  }
}

.animation-4 span:nth-child(9) {
  left: 10%;
  bottom: 10%;
  -webkit-animation: d 30s linear infinite;
  animation: d 30s linear infinite;
}

@-webkit-keyframes d {
  0% {
    left: 10%;
    bottom: 10%;
  }
  40% {
    left: 40%;
    bottom: 40%;
  }
  50% {
    left: 60%;
    bottom: 20%;
  }
  100% {
    left: 10%;
    bottom: 10%;
  }
}

@keyframes d {
  0% {
    left: 10%;
    bottom: 10%;
  }
  40% {
    left: 40%;
    bottom: 40%;
  }
  50% {
    left: 60%;
    bottom: 20%;
  }
  100% {
    left: 10%;
    bottom: 10%;
  }
}

.animation-4 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
}

/***************
Client logo area CSS
***************/

.c-logo-area {
  padding-top: 80px;
}

.c-logo-area h4 {
  color: #8392a5;
  margin-bottom: 30px;
  font-weight: 400;
}

.single-logo-item {
  display: table;
  height: 65px;
  margin: 0 auto;
}

.single-logo-cell {
  display: table-cell;
  vertical-align: middle;
}

/****************
Service area CSS
****************/

.single-s-4-item {
  text-align: center;
  padding: 0 20px;
}

.s-4-icon .icon-4,
.s-4-icon img {
  width: 80px;
  height: 80px;
  display: inline-block;
  line-height: 80px;
  background-color: #23985d;
  border-radius: 50%;
  margin-bottom: 25px;
  font-size: 30px;
  color: white;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-s-4-item:hover .icon-4 {
  background-color: #23985d;
}

.single-s-4-item h4 {
  margin-bottom: 25px;
}

.s-4-icon img {
  padding: 28px;
}

.title-4 {
  margin-bottom: 40px;
}

.title-4 h2 {
  margin-bottom: 15px;
  line-height: 1.4;
}

.s-4-icon .icon-4 span {
  position: absolute;
  left: 7%;
  top: 35%;
  width: 20px;
  height: 20px;
  display: block;
  background-color: white;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: a 10s linear infinite;
  animation: a 10s linear infinite;
}

.s-4-icon .icon-4,
.s-4-icon img {
  position: relative;
  z-index: 1;
}

.s-4-icon .icon-4 span:nth-child(2) {
  width: 15px;
  height: 15px;
  left: 40%;
  top: 5%;
}

.s-4-icon strong {
  position: absolute;
  left: 40%;
  top: 14%;
  content: "";
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  z-index: 1;
  -webkit-animation: a 10s linear infinite;
  animation: a 10s linear infinite;
}

.s-4-icon strong:nth-child(2) {
  left: 47%;
  top: 5%;
  width: 15px;
  height: 15px;
}

/**************
Video area CSS
**************/

.video-img {
  position: relative;
  z-index: 1;
}

.vd-btn {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: white;
  font-size: 35px;
  border-radius: 50%;
  color: #23985d;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.vd-btn:hover {
  background-color: #23985d;
  color: white;
}

/*****************
Features area CSS
*****************/

.features-4-img {
  position: relative;
  z-index: 1;
}

.features-4-img img.timeline {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 300px;
  margin: 0;
}

.features-4-img img {
  -webkit-box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.1);
  margin: 100px 0 70px -50px;
  width: 550px;
  pointer-events: none;
}

.features-4-img:after {
  position: absolute;
  left: -10%;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #f6f8fa;
  z-index: -1;
  border-radius: 50%;
  -webkit-animation: maskimg 10s linear infinite;
  animation: maskimg 10s linear infinite;
}

.f-i-right:after {
  right: 0%;
  left: auto;
}

.f-i-right img {
  margin-left: 0;
  max-width: 550px;
}

.f-i-right img.timeline {
  right: -10%;
}

.features-right .button {
  margin-top: 30px;
}

.features-4-2 {
  padding-top: 80px;
}

/****************
Pricing area CSS
****************/

.pricing-area {
  position: relative;
  z-index: 1;
}

.pricing-area .title-4,
.pricing-area .title-4 h2 {
  color: white;
}

.single-pricing-item {
  text-align: center;
  background-color: white;
  border-radius: 10px;
}

.pricing-area {
  background-color: #4528eb;
}

.pricing-header h3 {
  color: #f38550;
  margin-bottom: 30px;
}

.pricing-header {
  padding: 40px 0 30px;
  background-color: #f6f8fa;
  border-radius: 10px 10px 0 0;
}

.price,
.price h2 {
  position: relative;
  z-index: 1;
}

.price h2 span {
  font-size: 36px;
  position: absolute;
  left: 18%;
  top: 10%;
}

.price h2 {
  font-size: 64px;
}

.price h2 strong {
  font-size: 15px;
  margin-left: 7px;
}

.price h2 sup {
  font-size: 32px;
  position: absolute;
  top: 20%;
  right: 36%;
}

.pricing-content li {
  display: block;
  font-weight: 400;
  margin-bottom: 17px;
}

.pricing-content {
  padding: 40px 0;
}

.pricing-content li strong {
  color: #001737;
}

.pricing-content li.f-o {
  color: #adb9c7;
}

.pricing-content li:last-child {
  margin-bottom: 0;
}

.pricing-footer {
  padding: 0 0 40px;
}

.border-4-btn:hover {
  background-color: #f38550;
  color: white;
  border-color: #f38550;
}

.border-4-btn {
  font-size: 14px;
  color: #f38550;
  border: 2px solid #f38550;
  padding: 15px 40px;
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

a.border-4-btn:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  content: "";
  background-color: #f38550;
  z-index: -1;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

a.border-4-btn:hover:after {
  height: 100%;
  bottom: 0;
  top: auto;
}

.active .pricing-header {
  background-color: #001737;
}

.active .pricing-header h3,
.active .pricing-header .price h2 {
  color: white;
}

.active .pricing-footer .border-4-btn {
  color: white;
  background-color: #f38550;
}

.active .pricing-footer .mdi {
  display: block;
  color: #5cbc2b;
  font-size: 40px;
}

.active .pricing-footer p {
  font-size: 14px;
}

.pricing-area .animation-4 span:nth-child(4) {
  left: 20%;
  bottom: 70%;
}

.pricing-area .animation-4 span:nth-child(6) {
  left: 15%;
  bottom: 5%;
}

/********************
Testimonial area CSS
********************/

.t-c-4 .single-c-item {
  background-color: #f9fafc;
}

.t-c-4 h4 {
  font-weight: 500;
  line-height: 1.6;
  font-style: italic;
}

.quote-left {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 0;
  z-index: -1;
}

.quote-left i {
  font-size: 170px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffffff),
    to(#e5e5e5)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.t-c-4 .quote-icon i {
  font-size: 40px;
  color: #23985d;
}

.t-c-4 .quote-icon {
  bottom: 12%;
}

/************
FAQ area CSS
************/

.faq-area {
  position: relative;
  z-index: 1;
}

.faq-icon .mdi {
  color: #23985d;
  font-size: 22px;
}

.faq-icon {
  width: 5%;
  margin-right: 2%;
}

.single-faq-item {
  margin-bottom: 30px;
  -webkit-box-shadow: 10px 10px 40px -8px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 40px -8px rgba(0, 0, 0, 0.1);
  padding: 25px;
  border-radius: 5px;
}

.single-faq-item:last-child {
  margin-bottom: 0;
}

.faq-title {
  margin-bottom: 10px;
}

.faq-area .title {
  margin-bottom: 60px;
}

/***************
Footer area CSS
***************/

.footer-3 {
  background-color: #23985d;
}

.footer-3,
.footer-3 h4,
.footer-3 li a {
  color: white;
}

/*********************
CSS Index
* Base CSS
* Header area CSS
* Hero area CSS
* Client logo area CSS
* Service area CSS
* Understand area CSS
* Testimonial area CSS
* Case Study area CSS
* Contact area CSS
*********************/

/*********
Base CSS
*********/

/*** Body CSS ***/

body {
  font-size: 16px;
}


/*******************
Understand area CSS
*******************/

.understand-area .button {
  background-color: #23985d;
  margin-top: 40px;
}

.s-u-text {
  padding: 20px;
  margin-bottom: 30px;
  transition: 0.3s;
  border-left: 3px solid #23985d;
}

.fadeInLeft .s-u-text {
  border-left: 0px;
  border-right: 3px solid #23985d;
}

.s-u-text:hover,
.s-u-text.active {
  /*box-shadow: 10px 10px 40px -6px rgba(0, 0, 0, 0.1);*/
  border-color: #23985d;
}

.understand-area .title,
.s-u-text:last-child {
  margin-bottom: 0;
}

/********************
Testimonial area CSS
********************/

.t-5 {
  background-color: #f8fbff;
  position: relative;
  z-index: 1;
}

.t-5 .title h2 span {
  color: #f38550;
  font-weight: 300;
}

.t-5 .title h2 {
  font-weight: 600;
}

.t-full {
  position: relative;
  z-index: 1;
}

.t-img img {
  position: absolute;
  -webkit-animation: maskimg 10s linear infinite;
  animation: maskimg 10s linear infinite;
  width: 70px;
  border-radius: 50%;
  box-shadow: 0 0 30px 0px #cac5c5;
}

.t-img img:nth-child(1) {
  left: 16%;
  top: 20%;
  width: 60px;
}

.t-img img:nth-child(2) {
  top: 30%;
  left: 3%;
  width: 60px;
}

.t-img img:nth-child(3) {
  top: auto;
  left: -20px;
  width: 80px;
  bottom: 18%;
}

.t-img img:nth-child(4) {
  top: 45%;
  left: 13%;
  width: 80px;
}

.t-img img:nth-child(5) {
  top: 15%;
  right: -20px;
  width: 90px;
}

.t-img img:nth-child(6) {
  top: 34%;
  right: 11%;
  width: 90px;
}

.t-img img:nth-child(7) {
  top: 57%;
  right: 3%;
  width: 70px;
}

.t-img img:nth-child(8) {
  bottom: 20%;
  right: 14%;
  width: 50px;
}

/*******************
Case Study area CSS
*******************/

.case-study-area .title {
  margin-bottom: 60px;
}

.case-study-area .title h5 {
  color: #f38550;
  margin-bottom: 20px;
}

.single-study-item {
  box-shadow: 10px 10px 40px -6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.study-img {
  text-align: center;
  background-color: #0073d6;
  padding: 40px 0;
  border-radius: 5px 5px 0 0;
}

.study-2 {
  background-color: #5e64a6;
}

.study-3 {
  background-color: #ff8c8c;
}

.study-text {
  padding: 30px 30px 50px;
  position: relative;
  z-index: 1;
}

.study-btn {
  position: absolute;
  left: 9%;
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  background-color: #c0ccda;
  text-align: center;
  color: white;
  font-size: 20px;
  bottom: -22px;
  transition: 0.3s;
}

.single-study-item:hover .study-btn {
  background-color: #f38550;
  color: white;
}

/****************
Contact area CSS
****************/

.contact-area {
  position: relative;
  z-index: 1;
}

.contact-area:before {
  top: 33%;
  height: 230px;
}

.contact-form .title {
  margin-bottom: 50px;
}

.contact-img {
  position: relative;
  z-index: 1;
}

.contact-img:before,
.contact-img:after {
  position: absolute;
  content: "";
  width: 150%;
  height: 150px;
  -webkit-transform: skewY(-15deg);
  transform: skewY(-15deg);
  bottom: 6%;
  right: 0;
  z-index: -1;
}

.contact-img:before {
  left: -22%;
  bottom: -2%;
  width: 500px;
  height: 50px;
}

.contact-form label {
  display: none;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  padding: 15px;
  background-color: white;
  box-shadow: 2px 2px 15px -6px rgba(0, 0, 0, 0.1);
  border: none;
  margin-bottom: 30px;
}

.contact-form button.button {
  background-color: #f38550;
}

.contact-form textarea:focus {
  box-shadow: 2px 2px 15px -6px rgba(0, 0, 0, 0.1);
}

/*********************
CSS Index
* Base CSS
* Header area CSS
* Hero area CSS
* Swiper Slider CSS
* Service area CSS
* Features area CSS
* Tab area CSS
* Testimonial area CSS
* CTA area CSS
* Footer area CSS
* Blog Page CSS
*********************/

/*********************
Blog Page CSS
* Breadcrumb area CSS
* Blog area CSS
*********************/

/*********************
Single Blog Page CSS
*********************/


/***************
Hero area CSS
***************/

.hero-6 {
  background: #4934b6;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(23%, #4934b6),
    to(#fcfcfe)
  );
  background: -o-linear-gradient(top, #4934b6 23%, #fcfcfe 100%);
  background: linear-gradient(to bottom, #4934b6 23%, #fcfcfe 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4934b6', endColorstr='#fcfcfe', GradientType=0);
}

.hero-6 {
  color: white;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}

.hero-6 h1 {
  color: white;
  margin-bottom: 20px;
}

.hero-6 h2 {
  color: white;
  font-weight: 200;
  margin-bottom: 40px;
}

.hero-6 h2 strong.typing {
  font-weight: bold;
  text-decoration: underline;
  color: white;
}

.play-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: white;
  font-size: 25px;
  border-radius: 50%;
  color: black;
  display: inline-block;
  margin: 0px 15px;
}

.hero-circle-img img {
  position: absolute;
  left: -10%;
  top: -10%;
  width: 570px;
}

.hero-circle-img img.circle-2 {
  left: auto;
  right: -3%;
  width: 100px;
  top: 7%;
}

/*****************
Swiper Slider CSS
*****************/

.swiper-6 {
  padding-top: 100px;
}

.hero-6-slide-img {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.swiper-slide {
  opacity: 0.3;
}

.swiper-slide.swiper-slide-active {
  opacity: 1;
}

/***************
Service area CSS
***************/

.service-6-area .title {
  margin-bottom: 70px;
}

.service-6-area .icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  line-height: 85px;
  -webkit-clip-path: none;
  clip-path: none;
}

.service-6-area .color-o .icon {
  -webkit-box-shadow: 0 23px 30px rgba(243, 133, 80, 0.3);
  box-shadow: 0 23px 30px rgba(243, 133, 80, 0.3);
}

.service-6-area .color-b .icon {
  -webkit-box-shadow: 0 23px 30px rgba(53, 191, 230, 0.3);
  box-shadow: 0 23px 30px rgba(53, 191, 230, 0.3);
}

/************
Tab area CSS
************/

.tab-area {
  padding-top: 100px;
}

.tab-list {
  margin-bottom: 50px;
}

.tab-list li {
  width: 20%;
  position: relative;
  z-index: 1;
}

.tab-list li a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  content: "";
  background-color: #e5e9f2;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.tab-list li a.active:after {
  background-color: #23985d;
}

.tab-list li a.nav-link.active {
  color: #23985d;
}

.tab-list li a.nav-link {
  color: #8392a5;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 500;
}

.tab-list li a.active,
.tab-list li a.nav-link:hover,
.tab-list li a.nav-link {
  border: none;
}

.tab-list ul {
  border: none;
}

.tab-title .tab-icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  display: inline-block;
  background-color: #00c1b1;
  text-align: center;
  font-size: 30px;
  color: white;
  border-radius: 50%;
  margin-bottom: 30px;
}

.tab-title h3 {
  margin-bottom: 20px;
}

.tab-6-img {
  position: relative;
  z-index: 1;
}

.tab-6-img img.tab-img {
  position: absolute;
  bottom: 0;
  left: -50px;
  z-index: -1;
  -webkit-animation: maskimg 10s linear infinite;
  animation: maskimg 10s linear infinite;
}

.tab-6-img img.tab-img.tab-img-2 {
  left: -65px;
  bottom: -30px;
}

.tab-6-img img.tab-img.tab-img-3 {
  left: auto;
  right: 20px;
  bottom: -30px;
}

.tab-content {
  margin-bottom: 70px;
}

/********************
Testimonial area CSS
********************/

.t-area-6 {
  padding-bottom: 80px;
}

.owl-nav button i:hover {
  background-color: #e5e9f2;
}

/*************
CTA area CSS
*************/

.cta-area {
  padding: 150px 0 200px;
  color: white;
  position: relative;
  z-index: 1;
}

.cta-area {
  background: #4934b6;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#4934b6),
    color-stop(70%, #aea5df),
    color-stop(98%, #ffffff)
  );
  background: -o-linear-gradient(top, #4934b6 0%, #aea5df 70%, #ffffff 98%);
  background: linear-gradient(to bottom, #4934b6 0%, #aea5df 70%, #ffffff 98%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4934b6', endColorstr='#ffffff', GradientType=0);
}

.cta-area .title h2 {
  color: white;
}

.cta-area .title h4 {
  color: #c0ccda;
}

.cta-area .title .button {
  margin-top: 40px;
  background-color: #00c1b1;
}

.cta-circle-img img {
  position: absolute;
  left: -10%;
  top: -17%;
  width: 600px;
}

.cta-circle-img img.cta-circle-2 {
  left: auto;
  right: -10%;
  top: auto;
  bottom: 0;
}

/***************
Footer area CSS
***************/

.footer-area-6 {
  padding-bottom: 30px;
}

.footer-area-6 ul li a:hover {
  color: #00c1b1;
}

/**************
Blog Page CSS
**************/

/*******************
Breadcrumb area CSS
*******************/

.breadcrumb-area {
  padding: 150px 0 100px;
  background: rgba(
    35,
    152,
    93,
    1
  ); /*linear-gradient(rgba(35,152,93,0.8),rgba(35,152,93,0.8)), url('/static/img/slider.jpg');*/
}

.bg-white.aic {
  border-radius: 5px;
}

.breadcrumb-left,
.breadcrumb-right {
  padding: 30px;
}

.breadcrumb-right {
  text-align: right;
}

.breadcrumb-right li a {
  color: #00c1b1;
}

.breadcrumb-right li.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: #001737;
}

.breadcrumb-right nav {
  margin-top: 15px;
}

/**************
Blog area CSS
**************/

.auhtor-blog {
  width: 10%;
  margin-right: 40px;
}

.blog-content {
  padding: 40px;
}

.blog-area {
  background-color: #f9fafc;
}

.single-blog {
  background-color: white;
  margin-bottom: 50px;
  -webkit-box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

.card-with-shadow {
  background-color: white;
  -webkit-box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  padding: 0;
}
.content-blog {
  width: 90%;
}

.auhtor-blog img {
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 7px #e5e9f2, 0 0 0 10px #8392a5;
  box-shadow: 0 0 0 7px #e5e9f2, 0 0 0 10px #8392a5;
  margin-bottom: 30px;
}

.auhtor-blog {
  text-align: center;
}

.auhtor-blog p span {
  display: block;
  color: #001737;
  font-size: 24px;
}

.auhtor-blog p {
  font-size: 16px;
}

.auhtor-blog h4 {
  font-size: 14px;
  font-weight: 500;
}

p.blog-meta {
  font-size: 14px;
  color: #576477;
  font-weight: 400;
  margin-bottom: 20px;
}

p.blog-meta a {
  color: #576477;
  margin-right: 15px;
  position: relative;
  z-index: 1;
}

p.blog-meta a:after {
  position: absolute;
  right: -10px;
  top: -3px;
  content: "|";
}

.content-blog h3 a {
  color: #001737;
  margin-bottom: 15px;
  display: inline-block;
}

p.blog-meta a.research {
  color: #00c1b1;
  margin-left: 10px;
}

p.blog-meta a.research:after {
  content: "";
}

a.blog-btn {
  color: #001737;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  margin-top: 15px;
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.blog-btn:hover {
  color: #00c1b1;
}

a.blog-btn span {
  color: #00c1b1;
}

.widgets {
  background-color: white;
  margin-bottom: 30px;
  padding: 40px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
}

.widgets h4 {
  margin-bottom: 25px;
}

.search-form input[type="search"] {
  width: 100%;
  border: 1px solid #e5e9f2;
  background-color: #f9fafc;
  color: #576477;
  padding: 15px;
}

.search-form button {
  background-color: #00c1b1;
  border: none;
  color: white;
  position: absolute;
  right: 0;
  top: 0;
  width: 65px;
  height: 100%;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.search-form button:hover {
  background-color: black;
}

.search-input {
  position: relative;
}

.category-widgets li {
  display: block;
}

.category-widgets li a span {
  float: right;
  color: #8392a5;
}

.category-widgets li a {
  padding: 10px 0;
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #576477;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.category-widgets li a:hover {
  color: #00c1b1;
  text-decoration: underline;
}

.post-content h5 a {
  color: #001737;
  font-size: 16px;
  line-height: 1.7;
}

.post-content a.data {
  display: block;
  margin: 15px 0;
  color: #576477;
  font-size: 14px;
}

.single-post-area {
  margin-bottom: 40px;
}

.single-post-area:last-child {
  margin-bottom: 0;
}

.single-post-area a img {
  width: 100%;
}

.post-pagination {
  text-align: center;
  margin-top: 50px;
}

.post-pagination li a {
  width: auto;
  display: block;
  margin: 0 5px;
  border: 1px solid #e5e9f2;
  padding: 5px 15px;
  text-transform: uppercase;
  font-size: 16px;
  color: #8392a5;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
  border-radius: 5px;
}

.post-pagination li a:hover {
  background-color: white;
  -webkit-box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.1);
  border-color: white;
}

.post-pagination li a.active {
  background-color: #001737;
  color: #ffffff;
}

/********************
Single Blog Page CSS
********************/

.single-post-content {
  padding: 50px 60px;
}

.single-post-content p {
  margin-bottom: 40px;
}

.single-post-content blockquote {
  background-color: #f9fafc;
  padding: 40px;
  border-left: 5px solid #00c1b1;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 500;
  color: #001737;
}

.post-tag a {
  font-size: 16px;
  color: #00c1b1;
}

.post-tag strong,
.post-share strong {
  font-size: 18px;
  color: #001737;
  margin-right: 10px;
}

.post-share ul {
  display: inline-block;
}

.post-share li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: block;
  color: #001737;
  font-size: 20px;
}

.post-tag {
  margin-bottom: 25px;
}

.about-author-img img {
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 7px #e5e9f2, 0 0 0 10px #8392a5;
  box-shadow: 0 0 0 7px #e5e9f2, 0 0 0 10px #8392a5;
}

.about-author-img {
  margin-right: 40px;
  width: 20%;
}

.about-author-text {
  width: 80%;
}

.about-author {
  background-color: white;
  -webkit-box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 50px;
  margin-bottom: 50px;
}

.about-author-text h4 span {
  font-size: 18px;
  color: #8392a5;
  font-weight: 400;
  margin-left: 5px;
}

.comment-list {
  background-color: white;
  -webkit-box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 50px;
}

.comment-author-img {
  width: 20%;
  margin-right: 30px;
}

.comment-author-img img {
  border-radius: 50%;
}

.comment-meta {
  width: 80%;
}

.comment-author-area {
  margin-bottom: 50px;
}

.comment-title {
  font-weight: 600;
  margin-bottom: 40px;
}

.comment-meta h6 {
  margin-bottom: 20px;
}

.comment-meta h6 span {
  color: #576477;
  font-size: 14px;
  margin-left: 15px;
  font-weight: 400;
}

a.comment-reply-btn {
  font-size: 14px;
  color: #001737;
  font-weight: 600;
  margin-top: 20px;
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.comment-reply-btn:hover {
  color: #00c1b1;
}

a.comment-reply-btn span {
  font-size: 12px;
  color: #00c1b1;
  margin-right: 10px;
}

li.ml-65 {
  margin-left: 65px;
}

.post-form input[type="text"],
.post-form input[type="email"],
.post-form textarea {
  border: 1px solid #e5e9f2;
  background-color: #f9fafc !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.post-form {
  margin-top: 70px;
}

.post-form button.button {
  background-color: #00c1b1;
}

.blog-footer {
  background-color: #001737;
  padding-top: 80px;
}

.blog-footer,
.blog-footer h4,
.blog-footer li a {
  color: white;
}

/*************************
CSS Index
* Header area CSS
* Hero area CSS
* Service area CSS
* Video area CSS
* Features area CSS
* Google Map area CSS
* Rectangle 2 area CSS
*************************/

body {
  counter-reset: section;
}

.title p {
  color: #8392a5;
}

.pb-80 {
  padding-bottom: 80px;
}

/***************
Header area CSS
***************/

.header-leg img {
  border-radius: 50%;
}

.header-leg select {
  background: none;
  border: none;
  color: white;
}

.header-leg select:focus {
  outline: none;
}

.header-leg select option {
  color: black;
}

.header-leg {
  margin-top: 8px;
  text-align: right;
  float: right;
}

.is-sticky .header-leg select {
  color: black;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/***************
Hero area CSS
***************/

.slider-bg-1 {
}

.single-slider {
  background-size: cover;
  background-position: center;
  padding-top: 250px;
  padding-bottom: 150px;
  position: relative;
  z-index: 1;
}

.hero-area.hero-6.hero-7 {
  background: none;
  padding: 0;
}

.single-slider:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #001737;
  content: "";
  opacity: 0.8;
  z-index: -1;
}

p.play-button {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

/****************
Service area CSS
****************/

.s-7-icon {
  margin-bottom: 30px;
}

/****************
Video area CSS
****************/

.video-bg {
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 10px;
  -webkit-box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 5px;
  background-color: white;
}

.video-7-all {
  position: relative;
}

.video-ad span {
  position: absolute;
  left: -65px;
  top: 20%;
  font-size: 100px;
  color: #001737;
  opacity: 0.1;
  line-height: 1;
  z-index: 1;
  -webkit-animation: maskimg 10s linear infinite;
  animation: maskimg 10s linear infinite;
}

.video-ad span.ad-icon-2 {
  left: auto;
  right: -40px;
  top: auto;
  bottom: -50px;
}

.video-ad img {
  position: absolute;
  bottom: -150px;
  left: 50px;
  z-index: 1;
  pointer-events: none;
}

.single-rectangle-7 {
  text-align: center;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 60px 20px 40px;
  border-radius: 5px;
}

.rectangle-7-img {
  margin-top: 30px;
}

.rectangle-7-img img {
  width: 150px;
  background-color: rgba(0, 193, 177, 0.2);
  border-radius: 50%;
}


/******************
Google Map area CSS
******************/

#map {
  width: 100%;
  height: 500px;
  margin-top: 30px;
}

/******************
Rectangle 2 area CSS
******************/

.r-area {
  background-color: #f9fafc;
}

.r-single-7 {
  background-color: white;
  padding: 40px 25px;
  margin-bottom: 30px;
}

.r-icon {
  width: 20%;
}

.r-text {
  width: 80%;
}

.r-text h4 {
  margin-bottom: 0;
}

.r-heading {
  margin-bottom: 20px;
}

.r-icon .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background-color: rgba(0, 193, 177, 0.2);
  color: rgba(0, 193, 177, 1);
  border-radius: 50%;
  font-size: 20px;
}

/*************************
CSS Index
* Header area CSS
* Hero area CSS
* Token area CSS
* Ico Logo area CSS
* Progress area CSS
* Service area CSS
* Team area CSS
* Articles from area CSS
* Get Ready area CSS
* Footer area CSS
*************************/


/**************
Hero area CSS
**************/

.hero-8 {
  position: relative;
  z-index: 1;
  padding: 220px 0 0;
  background-color: white;
  overflow: hidden;
}

.hero-8:after {
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-8 h1,
.hero-8 h4 {
  color: white;
}

.hero-8 h1 {
  line-height: 1.3;
}

.hero-8 h4 {
  line-height: 1.7;
  color: #c0ccda;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero-8 .button {
  background-color: #23985d;
  padding: 12px 30px;
  border-radius: 30px;
  overflow: hidden;
}

.hero-8 .button:after {
  border-radius: 30px;
}

.h-8-img {
  margin-right: calc((-100vw + 100%) / 2);
}

/**************
Token area CSS
**************/

.token-left {
  border-left: 3px solid #ffdb49;
  padding-left: 20px;
  padding-bottom: 30px;
  margin: 0 50px;
}

.token-right {
  border-color: #7783c3;
}

.token-left p {
  font-size: 14px;
}

.token-btn {
  text-align: center;
  margin-top: 50px;
}

.token-btn .button {
  background-color: #ffce63;
  color: #001737;
  font-weight: 600;
  border-radius: 30px;
  overflow: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.token-btn .button:hover {
  color: white;
}

.token-btn .button:after {
  border-radius: 30px;
}

#html {
  margin-top: -5px;
  position: relative;
  z-index: -1;
}

#html .proggress {
  border-radius: 30px 0 0 30px !important;
  border-right: 4px solid white;
}

#html .proggress {
  background: #ffdb49;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffdb49),
    to(#ff9056)
  );
  background: -o-linear-gradient(left, #ffdb49 0%, #ff9056 100%);
  background: linear-gradient(to right, #ffdb49 0%, #ff9056 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffdb49', endColorstr='#ff9056', GradientType=1);
}

#html .progress-contentbar {
  -webkit-box-shadow: 0 0 0 7px white, 0 5px 30px 5px rgba(119, 131, 195, 0.3);
  box-shadow: 0 0 0 7px white, 0 5px 30px 5px rgba(119, 131, 195, 0.3);
}

.m-50 {
  margin: 20px 50px 0;
}

/*****************
Ico Logo area CSS
*****************/

.ico-logo-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 80px;
}

.ico-title h2 {
  font-size: 300px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.1);
}

.ico-img-8 img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
}

.ico-img-8 img:nth-child(1) {
  bottom: 48%;
  left: 2%;
  width: 90px;
}

.ico-img-8 img:nth-child(2) {
}

.ico-img-8 img:nth-child(3) {
  left: 10%;
  bottom: 30%;
  width: 160px;
}

.ico-img-8 img:nth-child(4) {
  left: 16%;
  width: 90px;
  bottom: 7%;
}

.ico-img-8 img:nth-child(5) {
  width: 88px;
  bottom: 44%;
  left: 25%;
}

.ico-img-8 img:nth-child(6) {
  left: 30%;
  width: 150px;
  bottom: 20%;
}

.ico-img-8 img:nth-child(7) {
  left: 38%;
  bottom: 45%;
}

.ico-img-8 img:nth-child(8) {
  left: 47%;
  bottom: 26%;
}

.ico-img-8 img:nth-child(9) {
  width: 96px;
  left: 36%;
  bottom: 4%;
}

.ico-img-8 img:nth-child(10) {
  width: 113px;
  left: auto;
  right: 39%;
  bottom: 8%;
}

.ico-img-8 img:nth-child(11) {
  width: 107px;
  left: auto;
  right: 34%;
  bottom: 46%;
}

.ico-img-8 img:nth-child(12) {
  width: 107px;
  left: auto;
  right: 33%;
  bottom: 30%;
}

.ico-img-8 img:nth-child(13) {
  width: 90px;
  left: auto;
  right: 20%;
  bottom: 40%;
}

.ico-img-8 img:nth-child(14) {
  width: 130px;
  left: auto;
  right: 18%;
}

.ico-img-8 img:nth-child(15) {
  left: auto;
  right: -15px;
  bottom: 50%;
}

.ico-img-8 img:nth-child(16) {
  left: auto;
  right: -15px;
}

/*****************
Progress area CSS
*****************/

.progress-area {
  background-color: #07399d;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.progress-area:after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-size: cover;
  background-position: right center;
}

.progress-area .title h2 {
  color: white;
}

.progress-area .title p {
  color: #c0ccda;
}

.progress-slider {
  text-align: center;
}

.single-progress {
  position: relative;
  z-index: 1;
}

.single-progress:after {
  position: absolute;
  left: 0;
  bottom: 55px;
  width: 100%;
  height: 5px;
  content: "";
  background-color: #23985d;
  z-index: -1;
}

.single-progress:fast-child:after {
  border-radius: 5px;
}

.progress-slider span {
  width: 35px;
  height: 35px;
  border: 7px solid white;
  border-radius: 50%;
  background-color: #23985d;
  position: relative;
  left: 50%;
  top: 7px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
}

.progress-box {
  position: relative;
  left: 0;
  top: 0;
  -webkit-box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.2);
  text-align: left;
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  background-color: white;
  border-radius: 5px;
  margin-bottom: 40px;
}

.single-progress.active .progress-box {
  opacity: 1;
  visibility: visible;
}

.progress-box h5 {
  font-weight: 500;
}

.progress-box p {
  padding: 0;
  color: #576477;
}

.progress-box:after {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 20px;
  height: 20px;
  content: "";
  background-color: white;
  -webkit-transform: translate(-50%, 0%) rotate(45deg) skew(10deg, 10deg);
  -ms-transform: translate(-50%, 0%) rotate(45deg) skew(10deg, 10deg);
  transform: translate(-50%, 0%) rotate(45deg) skew(10deg, 10deg);
  -webkit-box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.2);
}

.progress-slider .owl-nav button {
  position: absolute;
  left: 0;
  bottom: 17%;
}

.progress-slider .owl-nav button i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #23985d;
  border-radius: 50%;
  font-size: 20px;
  color: white;
}

.progress-slider .owl-nav button.owl-next {
  left: auto;
  right: 0;
}

.p-8-left-img img {
  position: absolute;
  left: -100px;
  bottom: 95px;
  pointer-events: none;
}

img.p-8-right-img {
  left: auto;
  right: -4%;
  bottom: 0;
}

.p-8-left-img {
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  bottom: 0;
}

.token-area .percentCount {
  display: none;
}

/****************
Service area CSS
****************/

.service-8-area {
  position: relative;
  z-index: 1;
}

.s-8-img img {
  position: absolute;
  left: -3%;
  bottom: -13%;
  z-index: -1;
}

.service-8-area .title {
  margin-bottom: 50px;
}

.service-8-area .single-s-4-item {
  -webkit-box-shadow: 0 5px 10px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px -4px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 40px;
  border-radius: 5px;
}

/*************
Team area CSS
*************/

.team-8-img {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.team-8-img img {
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 10px white;
  box-shadow: 0 0 0 10px white;
}

.single-team-8 {
  text-align: center;
  margin-bottom: 60px;
}

.team-8-icon {
  width: 40px;
  height: 40px;
  background-color: #0077b5;
  color: white;
  line-height: 40px;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.team-8-icon:hover {
  background-color: white;
  color: #0077b5;
}

.team-social {
  margin-top: -45px;
  position: relative;
  z-index: 1;
}

.team-8-area {
  background-color: #f9fafc;
}

.single-team-8 h3 span {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 500;
  color: #576477;
}

.single-team-8 h3 {
  margin-top: 25px;
}

.image-parent {
  position: relative;
  display: inline-block;
}

.image-parent:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 242px;
  height: 180px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  -webkit-transform: translate(-50%, -42%);
  -ms-transform: translate(-50%, -42%);
  transform: translate(-50%, -42%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.image-parent:hover:before {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

/**********************
Articles from area CSS
**********************/

.user-text h6 {
  margin-bottom: 0;
}

.user-text h6 a {
  color: white;
}

.user-icon i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: white;
  border-radius: 50%;
  text-align: center;
}

.articles-user {
  position: absolute;
  bottom: 8%;
  left: 10%;
}

.articles-img {
  position: relative;
  z-index: 1;
}

.articles-img img {
  border-radius: 5px 5px 0 0;
}

.user-icon {
  margin-right: 15px;
}

.articles-content {
  padding: 30px;
  background-color: #f9fafc;
}

.articles-content h3 a {
  color: #001737;
  line-height: 1.5;
}

.articles-content h3 {
  margin-bottom: 15px;
}

.articles-content a.read-btn {
  font-size: 14px;
  color: #001737;
  font-weight: 600;
  display: block;
  text-align: center;
  border: 1px solid #c0ccda;
  padding: 10px 0;
  border-radius: 30px;
  background-color: white;
  margin-top: 25px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.articles-content a.read-btn:hover {
  background-color: #ffce63;
  border-color: #ffce63;
}

.articles-from .title {
  margin-bottom: 60px;
}

.at-right .articles-content h3 a {
  font-size: 18px;
}

.at-right .articles-content h3 {
  margin-bottom: 0;
}

.at-right .articles-content {
  padding: 20px;
}

.at-right {
  margin-bottom: 30px;
}

.at-right .user-text h6 a {
  font-size: 16px;
}

.at-right .user-icon i {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.at-right .user-icon {
  margin-right: 10px;
}

/******************
Get Ready area CSS
******************/

.get-ready-area {
  position: relative;
  z-index: 2;
}

.get-bg {
  -webkit-box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: white;
}

.get-ready-area .button {
  padding: 10px 40px;
  border-radius: 50px;
  margin: 0 5px;
  background-color: #23985d;
  overflow: hidden;
}

.get-ready-area .button:hover:after {
  border-radius: 50px;
}

.get-ready-area .button:after {
  border-radius: 50px;
}

.get-ready-area .get-8-btn-2 {
  background-color: #ffce63;
  color: black;
  -webkit-box-shadow: 0 10px 30px 0px rgba(255, 206, 99, 0.2);
  box-shadow: 0 10px 30px 0px rgba(255, 206, 99, 0.2);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.get-ready-area .button.get-8-btn-1 {
  -webkit-box-shadow: 0 10px 30px 0px rgba(22, 87, 226, 0.2);
  box-shadow: 0 10px 30px 0px rgba(22, 87, 226, 0.2);
}

.get-ready-area .get-8-btn-2:hover {
  color: white;
}

.get-ready-area .title h4 {
  color: #8392a5;
  margin-top: 18px;
}


/*************************
CSS Index
* Header area CSS
* Hero area CSS
* Increase area CSS
* Subscribe area CSS
* Experience area CSS
* Tab area CSS
* Testimonial area CSS
* Case Study area CSS
* Footer area CSS
*************************/

body {
  counter-reset: section;
}

h3 {
  font-size: 26px;
}

/*************
Hero area CSS
*************/

.hero-9 {
  position: relative;
  z-index: 1;
  background-color: white;
  padding-top: 220px;
}

.hero-9:after {
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  margin-top: -60px;
}

.hero-9 h3 {
  font-size: 24px;
  color: #576477;
  font-weight: 300;
  margin-bottom: 30px;
}

.hero-9 .button {
  background-color: #23985d;
  text-transform: capitalize;
  margin: 0 6px;
  -webkit-box-shadow: 0 15px 40px rgba(22, 87, 226, 0.3);
  box-shadow: 0 15px 40px rgba(22, 87, 226, 0.3);
}

.hero-9 .hero-b-9-right {
  background-color: white;
  color: #001737;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.hero-9 .hero-b-9-right:hover {
  color: white;
}

.hero-9-img {
  margin-top: -60px;
}

/*****************
Increase area CSS
*****************/

.increase-area .title {
  margin-bottom: 50px;
}

.increase-area .title h2 span {
  font-weight: 300;
  color: #001737;
}

.single-increase {
  -webkit-box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.single-increase img {
  border-radius: 0 0 5px 5px;
}

.increase-text {
  padding: 30px;
}

/******************
Subscribe area CSS
******************/

.all-section9 {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}

.all-section9:after {
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  width: 50%;
  height: 100%;
  z-index: -1;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.subscribe9-bg {
  padding: 80px 0;
  background-color: white;
  -webkit-box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.subscribe9-bg:after {
  position: absolute;
  left: 0px;
  top: 40px;
  content: "";
  width: 90%;
  height: 60%;
  z-index: -1;
  background-size: 100% 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.subscribe9-bg h4 {
  color: #8392a5;
  font-weight: 400;
}

.form9 form {
  background-color: #f9fafc;
  border: 1px solid #e5e9f2;
  border-radius: 50px;
}

.form9 form input {
  width: 38%;
  background: none;
  border: none;
  padding: 10px 0 10px 20px;
}

.form9 form input[type="url"] {
  border-right: 1px solid rgba(112, 112, 112, 0.2);
}

.form9 form button {
  margin-right: -30px;
  border-radius: 0 50px 50px 0;
  overflow: hidden;
  background-color: #23985d;
  text-transform: capitalize;
}

.form9 form button:after {
  border-radius: 0 50px 50px 0;
}

/*******************
Experience area CSS
*******************/

.experience-progressbar h5 {
  margin-bottom: 25px;
}

.barfiller {
  margin-bottom: 40px;
}

.experience-img {
  margin-left: -50px;
}

/************
Tab area CSS
************/

.tab-area9 {
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

.tab9-number {
  width: 5%;
  margin-right: 30px;
}

.tab9-text {
  width: 95%;
}

.tab9-number strong {
  width: 34px;
  height: 34px;
  line-height: 34px;
  border: 2px solid #23985d;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  color: #23985d;
}

.tab9-title h2 {
  font-size: 31px;
  font-weight: 600;
}

.tab9-left {
  margin-top: 40px;
}

.tab9-content {
  margin-bottom: 30px;
}

.tab9-text h3 {
  font-weight: 600;
}

.tab9-ct {
  margin-bottom: 0;
}

.tab9-ct {
  padding: 50px 40px 20px;
  -webkit-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 10px;
}

.tab-area9 ul li a.nav-link.active,
.tab-area9 ul li a.nav-link:hover,
.tab-area9 .nav-tabs .nav-link {
  border: none;
  border-radius: 0;
}

.tab-area9 ul li a.nav-link {
  font-size: 50px;
}

.tab-area9 ul li {
  width: 25%;
}

.tab-area9 ul li a {
  position: relative;
  z-index: 1;
  color: #001737;
}

.tab-area9 ul li a:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0;
  content: "";
  -webkit-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  z-index: -1;
}

.tab-area9 ul li a.nav-link.active {
  background-color: #f9fafc;
  border-bottom: 4px solid #23985d;
}

.tab-area9 ul li a.active:after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #23985d;
}

.tab-area9 ul li a h5 {
  font-weight: 500;
}

.tab-area9 ul li a i {
  font-weight: 300;
}

.tab-area9 ul {
  border: 0;
}

/*******************
Case Study area CSS
*******************/

.case-study9 {
  padding-top: 80px;
}

.single-study9 {
  -webkit-box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 10px;
}

.single-study9:hover {
  -webkit-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
}

.single-study9 img {
  border-radius: 10px 10px 0 0;
}

.single-study9 .study-text h3 a {
  color: #001737;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
}

.single-study9 .study-text h3:hover a {
  color: #23985d;
  text-decoration: underline;
}

.case-study9 .title h4 {
  color: #8392a5;
  font-weight: 400;
}

.case-study9 .title {
  margin-bottom: 50px;
}

/***************
Footer area CSS
***************/

.footer9-area {
  position: relative;
  z-index: 1;
  padding-top: 350px;
  padding-bottom: 30px;
}

.footer9-area:after {
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.get-start h2 {
  font-size: 48px;
  font-weight: 600;
  color: white;
  margin-bottom: 30px;
}

.get-start .button {
  background-color: #23985d;
  text-transform: capitalize;
  margin: 0 6px;
  -webkit-box-shadow: 0 15px 40px rgba(22, 87, 226, 0.3);
  box-shadow: 0 15px 40px rgba(22, 87, 226, 0.3);
}

.get-start .start-btn-2 {
  background-color: white;
  color: #001737;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.get-start .start-btn-2:hover {
  color: white;
}

.footer9 h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 30px;
}

.footer9 li {
  display: block;
  margin-bottom: 15px;
}

.footer9 li a {
  display: block;
  color: #c0ccda;
  font-size: 15px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer9 li a:hover {
  color: white;
  text-decoration: underline;
}

.copyright9,
.copyright9 .copyright-section li a {
  color: white;
}

.copy9-after {
  position: relative;
  z-index: 1;
  padding-top: 30px;
}

.copy9-after:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: white;
  z-index: -1;
  opacity: 0.1;
}

/********
Other styles
*********/
sup {
  top: -1em;
  font-size: 0.5em;
  font-weight: normal !important;
}

.star-ratings {
  unicode-bidi: bidi-override;
  color: #ccc;
  font-size: 30px;
  position: relative;
  margin: 0;
  padding: 0;
}
.fill-ratings {
  color: #23985d;
  padding: 0;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
}
.empty-ratings {
  padding: 0;
  display: block;
  z-index: 0;
}

.toggle span:before,
.toggle span,
.toggle span:after {
  background-color: white;
  width: 50px;
}

/* This button is shown on the "community" page, it shares the margin-bottom of .single-blog */
#loadMoreBtn {
  margin-bottom: 50px;
}

.footer a:hover {
  color: white;
  text-decoration: underline;
}

table.no-border td {
  border-top: 0px !important;
  padding: 0.25rem;
}