:root {
  --base-color: #8a47cb;
  --dark-gray: #0c1327;
  --medium-gray: #7e8287;
  --light-gray: #eceae9;
  --light-medium-gray: #7e8691;
  --extra-medium-gray: #e4e4e4;
  --base-font: 'Space Grotesk', sans-serif;
  --primary-font: 'DM Sans', sans-serif;
}
@font-face {
  font-family: 'ReeyRegular';
  src: url('../fonts/ReeyRegular.eot');
  src: url('../fonts/ReeyRegular.eot') format('embedded-opentype'),
       url('../fonts/ReeyRegular.woff2') format('woff2'),
       url('../fonts/ReeyRegular.woff') format('woff'),
       url('../fonts/ReeyRegular.ttf') format('truetype'),
       url('../fonts/ReeyRegular.svg#ReeyRegular') format('svg');
}

* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
    position: relative;
    padding: 0;
    font-family:var(--primary-font);
    overflow-x: hidden;
    margin: 0 auto;
    font-size: 17px;
}

 section {
  padding-top:100px;
  padding-bottom:100px
}
.container{
    width: 100%;
    max-width: 1200px;
}
.container-fluid {
    width: 100%;
    padding: 0 40px;
}
a, a:hover, a:focus {
	text-decoration:none;
    outline:none;
    color:var(--base-color);
}
b, strong {
    font-weight: 700;
}

img {
	max-width:100%;
	height: auto;
}
ol, ul{
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
}

h1{
    font-family: var(--base-font);
    font-size: 60px;
    line-height:66px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}
h2{
    font-family: var(--base-font);
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
}
h3{
    font-family: var(--base-font);
    font-size:26px;
    line-height:36px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
}
h4{
    font-family: var(--base-font);
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
}
h5{
    font-family: var(--base-font);
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
}
h6{
    font-family: var(--base-font);
    font-size: 18px;
    line-height: 24.2px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
}
p{
    font-family: var(--primary-font);
    font-size: 17px;
    line-height:30px;
    font-weight: 400;
    color: var(--medium-gray);
    margin-bottom: 20px;
    letter-spacing: 0.3;
}

.common-btn {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  padding: 15px 60px;
  font-weight: 700;
  letter-spacing: 0.1em;
  overflow: hidden;
  text-transform: capitalize;
  font-family: var(--base-font);
  color: #ffffff;
  border-radius: 50px;
  z-index: 1;
  background:var(--dark-gray);
  transition: all 500ms ease;
}
.common-btn:hover {
  background-color:var(--base-color);
  color: #fff;
}
.common-btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50px;
  background-color: var(--base-color);
  -webkit-clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
  clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
  min-width: 200px;
}
.common-btn:hover:before {
  -webkit-clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
          clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}
/* preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--base-color);
  border-top-color: var(--dark-gray);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bounce-y {
  -webkit-animation: bounce-y 10s infinite linear;
          animation: bounce-y 10s infinite linear;
}

.bounce-x {
  -webkit-animation: bounce-x 10s infinite linear;
          animation: bounce-x 10s infinite linear;
}

.spin-one {
  -webkit-animation: fa-spin 10s infinite linear;
          animation: fa-spin 10s infinite linear;
}

.zoom-one {
  -webkit-animation: zoom-one 5s infinite linear;
          animation: zoom-one 5s infinite linear;
}

.zoom-two {
  -webkit-animation: zoom-two 10s infinite linear;
          animation: zoom-two 10s infinite linear;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes zoom-one {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
@keyframes zoom-one {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
@-webkit-keyframes zoom-two {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoom-two {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* header */

.outer-menu {
  padding: 0;
  height: 70px;
  max-height: 100px;
}
.header .mob-logo  {
  display: none;
}

.social-icons li {
  margin-right: 10px;
}
.social-icons li:last-child {
  margin-right: 0;
}
.social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.social-icons li a {
  position: relative;
  z-index: 2;
  display: block;
  width: 23px;
  height: 23px;
  line-height: 23px;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  color:var(--base-color);
  background-color: #fff;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.social-icons li:hover a {
  background-color: #f4f4f4;
}

/* header top */

/* header */
.outer-menu {
  padding: 0;
  height: 100px;
  max-height: 100px;
  margin-bottom: 0;
}
.outer-menu ul li{
  margin-right: 40px;
  position: relative;
}
.outer-menu ul li a{
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  display: block;
  position: relative;
  color: var(--dark-gray);
  line-height: 30px;
  letter-spacing: .4px;
  padding:0 0;
  transition: all 0.5s ease;
  font-family: var(--base-font);
}
.navbar .dropdown::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border: none;
  vertical-align: middle;
  margin-left: 0;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.outer-menu ul li a:hover, .outer-menu ul li a.active{
  color:var(--base-color) ;
  transition: all 0.5s ease;
}
.outer-menu ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color:var(--base-color);
  transition: 0.5s ease;
}
.outer-menu ul li a.active::before,
.outer-menu ul li a:hover::before {
  width: 100%;
}
.mobile-menu {
  display: none;
}
.outer-menu img.logo {
max-height: 60px;
width: auto;
}
.navbar-nav {
  margin-left: auto;
}
.outer-menu ul li .submenu {
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateY(10px);
  width: auto;
  min-width: 235px;
  box-shadow: 0 2px 6px 0 rgba(40,40,40,.1);
  padding: 25px 0 23px;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  margin: 0;
  border: none;
}
.outer-menu ul li.dropdown:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.outer-menu ul li .submenu li {
  padding: 0 40px;
  margin-right: 0;
}
.outer-menu ul li .submenu li a{
  font-size: 14px;
  color:var(--base-color) ;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 36px !important;
  white-space: nowrap;
  position: relative;
}
.outer-menu ul li .submenu li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 2px;
  opacity: 0;
  background-color:var(--base-color) ;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.outer-menu ul li .submenu li a::before {
  display: none;
}
.outer-menu ul li .submenu li a:hover {
  color:var(--base-color);
}
.outer-menu ul li .submenu li a:hover::after {
  opacity: 1;
  left: -15px;
}
header {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background-color:#fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1040;
  }
  .sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    border-bottom: 0 !important;
    height: 80px !important;
    max-height: 80px !important;
    background-color:#fff!important;
    box-shadow: 0 3px 4px rgba(0,0,0,.07);
    animation: translateHeader 0.8s;
  }
  .sticky .outer-menu {
    height: 80px;
    max-height: 80px;
  }
  @keyframes translateHeader {
    0% {
      opacity:0;
      -webkit-transform:translateY(-100%);
      transform:translateY(-100%)
    }
    100% {
      opacity:1;
      -webkit-transform:translateY(0);
      transform:translateY(0)
    }
  }
  @keyframes headerAnimation {
    0% {
      opacity:0;
      -webkit-transform:translateY(-100%);
      transform:translateY(-100%)
    }
    100% {
      opacity:1;
      -webkit-transform:translateY(0);
      transform:translateY(0)
    }
  }
  .is-sticky .logo {
    display: inline-block;
    width: 180px;
    margin-top: -6px;
  }
  .is-sticky.outer-menu ul li a {
    line-height: 80px;
  }
  .is-sticky .gallery-trigger {
    height: 80px;
  }
  @media (min-width: 992px) {
    .close-mobile-menu {
      display: none;
    }
    }

/* header */

/* banner  */

.banner {
  width: 100%;
  position: relative;
  background-position: center top;
  background-size: cover;
  padding: 200px 0 100px;
  min-height: 820px;
  background-image: url(../images/banner-bg.jpg);
  background-repeat: no-repeat;
  overflow: hidden;
}
.banner h1 {
 color: var(--dark-gray);
 font-size: 80px;
 line-height: 80px;
 letter-spacing: -2px;
 font-weight: bold;
 max-width: 540px;
}
.banner h6 {
 color: #fff;
 font-family:var(--primary-font);
 color:var(--light-medium-gray);
 font-size: 16px;
 line-height: 30px;
 font-weight: 700;
 margin-bottom: 8px;
 text-transform: uppercase;
 width: 60%;
 max-width: 320px;
 margin-bottom: 30px;
 position: relative;
}
.banner p {
  max-width: 400px;
  margin-bottom: 30px;
}
.banner span {
  display: inline-block;
  color: #f89321;
  font-weight: 700;
  font-family: 'ReeyRegular';
}
.banner h6::before {
  position: absolute;
  left: 0;
  top: 100%;
  height: 15px;
  width: 221px;
  background: url(../images/icon-lines.png) center no-repeat;
  content: "";
}
.bg-images {
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
  width: 60%;
  z-index: 5;
  height: 100%;
}
.bg-images .circle1 {
  position: absolute;
  top: 200px;
  left: 100px;
}
.bg-images .circle2 {
  position: absolute;
  top: auto;
  bottom: -10px;
  left: 0;
  z-index: 1;
}
.bg-images .circle3 {
  position: absolute;
  top: 110px;
  left:150px;
  z-index: 1;
}
.bg-images .icon2 {
  position: absolute;
  top: 200px;
  left:-110px;
  z-index: 1;
}
.bg-images .icon1 {
  position: absolute;
  top: auto;
  bottom: 100px;
  left:-100px;
  z-index: 1;
}
.bg-images .icon3 {
  position: absolute;
  top: 175px;
  right:50px;
  z-index: 1;
}
.banner-image {
  position: absolute;
  right: 50px;
  bottom: 0;
  top: auto;
  z-index: 10;
}

/* about */

.about {
  position: relative;
  padding: 100px 0 0;
}
.about-image {
  position: relative;
}
.about-image::after {
  width: 623px;
  height: 576px;
  background-image: url(../images/icon-dotted-map-2.png);
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  right: 0;
  bottom: 0;
}
.about:before {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 278px;
  height: 317px;
  background-image: url(../images/icon-paper-plan.png);
  content: "";
  left: -76px;
  bottom: -35px;
}
.about .about-image .about-image1 {
  position: relative;
  z-index: 5;
  max-width: 460px;
}
.about .about-image .about-image2 {
  position: absolute;
  top: 0;
  right: 55px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 0;
  z-index: 5;
}
.about .experience {
  position: absolute;
  bottom: -40px;
  right: 140px;
  width: 290px;
  height: 101px;
  background-image: url(../images/exp.png);
  padding: 24px 20px 20px 110px;
  font-size: 22px;
  line-height: 1.2em;
  color: #ffffff;
  font-weight: 700;
  -webkit-box-shadow: 0 25px 40px rgba(0, 0, 0, 0.24);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.24);
  -webkit-animation: bounce-y 10s infinite linear;
  animation: bounce-y 10s infinite linear;
  z-index: 10;
}
.about .experience .count {
  position: absolute;
  left: 25px;
  top: 18px;
  font-size: 70px;
  line-height: 1em;
  font-weight: 700;
  color: #fff;
}
.about-text ul {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
}
.about-text ul li {
  position: relative;
  padding-left: 70px;
  min-height: 50px;
  font-size: 20px;
  line-height: 30px;
  color: var(--dark-gray);
  font-weight: 700;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
  padding-right: 20px;
  letter-spacing: -0.01em;
  width: 50%;
}
.about-text ul li .icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color:#ef5c72;
  box-shadow: 0 10px;
  transition: all 300ms ease;
}
.about-text ul li:nth-child(4n+2) .icon {
  background-color: #8a47cb;
}
.about-text ul li:nth-child(4n+3) .icon {
  background-color:#f89321;
}
.about-text ul li:nth-child(4n+4) .icon {
  background-color: #00c7c4;
}
.about-text h6,
.courses h6,
.categories h6,
.team h6,
.testimonial h6,
.news h6,
.countdown h6,
.contact-details-info h6 {
  color: #8a47cb;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Courses */

.courses {
  position: relative;
  padding-top: 120px;
}
.courses h2 {
  max-width: 50%;
}
.course-slider .inner-box {
  position: relative;
  background-color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.07);
}
.course-slider .image-box {
  position: relative;
}
.course-slider .image-box .image {
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 10px 10px 0 0;
}
.course-slider .image-box .price {
  position: absolute;
  right: 0;
  top: 20px;
  height: 30px;
  width: 80px;
  background:#ef5c72;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  border-radius: 20px 0 0 20px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.course-slider .image-box .value {
  position: absolute;
  left: 30px;
  bottom: -15px;
  height: 30px;
  background: var(--base-color);
  padding: 5px 20px;
  font-size: 11px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.course-slider .content-box {
  position: relative;
  padding: 30px 30px 30px;
}
.course-slider .content-box .course-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.course-slider .content-box .course-info li {
  position: relative;
  font-size: 14px;
  line-height: 25px;
  color: #767676;
  font-weight: 400;
  margin-right: 14px;
}
.course-slider .content-box .course-info li:last-child {
  margin-right: 0;
}
.course-slider .content-box .course-info li svg {
  margin-right: 2px;
  color: var(--base-color);
  font-size: 14px;
}
.course-slider .content-box .title {
  margin-bottom: 15px;
}
.course-slider .content-box .title a {
  color: var(--dark-gray);
}
.course-slider .content-box .title:hover a {
  color: var(--base-color)
}
.course-slider .content-box .other-info {
  position: relative;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #dae6e6;
  padding-top: 15px;
}
.course-slider .content-box .rating-box .text {
  font-size: 14px;
  color: #7d8185;
  margin-bottom: 0;
  line-height: 24px;
  margin-bottom: 8px;
  display: block;
}
.course-slider .content-box .rating-box .rating {
  font-size: 12px;
  line-height: 1em;
  letter-spacing: 1px;
  color: #f89321;
}
.course-slider .duration {
  position: relative;
  font-size: 14px;
  line-height: 25px;
  color: #767676;
  font-weight: 400;
}
.course-slider .content-box {
  position: relative;
  padding: 30px 26px 30px;
}
.course-slider {
  margin: 40px 0;
  position: relative;
}
.course-slider .swiper-slide {
  padding: 15px;
}
.course-slider .swiper-button-prev::after, 
.course-slider .swiper-button-next::after { 
  display: none;
}
.course-slider .swiper-nav {
  position: absolute;
  right: 15px;
  top: -130px;
  display: flex;
  align-items: center;
  min-width: 110px;
}
.course-slider .swiper-button-prev, 
.course-slider .swiper-button-next {
  display: block;
  height: 54px;
  width: 54px;
  left: 0;
  color: #191e24;
  border-radius: 50%;
  border: 2px solid #191e24;
  font-size: 20px;
  line-height: 50px;
  font-weight: 700;
  text-align: center;
  opacity: 0.2;
  transition: all 500ms ease;
  margin: 0 10px 10px 0;
  position: relative;
}
.course-slider .swiper-button-next {
  right: 0;
  left: auto;
}
.course-slider .swiper-button-prev:hover, .course-slider .swiper-button-next:hover {
  opacity: 1;
}
.courses .bottom-text .content {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #7d8185;
  line-height: 30px;
  font-weight: 400;
  padding: 8px;
  padding-left: 58px;
  border: 2px solid var(--dark-gray);
  border-radius: 50px;
  margin: 0 auto;
}
.courses .bottom-text strong {
  font-size: 20px;
  font-weight: 700;
  color:#ef5c22;
  margin-right: 5px;
}
.courses .bottom-text .common-btn {
  padding: 10px 40px;
  line-height: 30px;
  margin-left: 30px;
}
.bottom-text {
  text-align: center;
}
.courses-list .course-block {
  margin-bottom: 40px;
}
.courses-list .course-slider .course-block .image-box .image img {
  width: 100%;
  height: auto;
}
.courses-list {
  padding: 80px 0;
}

/* features */ 

.features {
  position: relative;
  padding: 80px 0 30px;
  background-color: var(--base-color) !important;
  z-index: 2;
}
.features:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../images/pattern-1.png);
  content: "";
}
.feature-block {
  position: relative;
  margin-bottom: 50px;
  z-index: 1;
}
.feature-block:last-child .inner-box:before {
  display: none;
}
.feature-block .inner-box {
  position: relative;
  overflow: hidden;
  padding-left: 80px;
  min-height: 64px;
  margin-left: 10px;
}
.feature-block .inner-box:before {
  position: absolute;
  right: 0;
  top: 0;
  height: 64px;
  width: 1px;
  background-color: #fff;
  opacity: 0.3;
  content: "";
}
.feature-block .inner-box:hover .icon {
  transform: scaleX(-1);
}
.feature-block .icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 64px;
  font-weight: 900;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.feature-block .title {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0;
}
.feature-block .text {
  position: relative;
}

/* categories */

.categories {
  position: relative;
  background-color: #f1f7f7;
  text-align: center;
}
.categories::before {
  position: absolute;
  content: "";
  left: -300px;
  top: 180px;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  animation: bounce-y 10s infinite linear;
  width: 433px;
  height: 696px;
  background-image: url(../images/icon-group-1.png);
  animation: bounce-y 10s infinite linear;
}
.categories::after {
  position: absolute;
  right: -320px;
  top: 200px;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  animation: bounce-y 10s infinite linear;
  width: 412px;
  height: 689px;
  background-image: url(../images/icon-group-2.png);
  animation: bounce-y 10s infinite linear;
  content: "";
}
.category-items {
  margin-top: 50px;
}
.category-block-current {
  position: relative;
  margin-bottom: 50px;
}
.category-block-current .inner-box {
  position: relative;
  text-align: center;
  max-width: 160px;
  margin: 0 auto;
}
.category-block-current .inner-box h6 {
  text-transform: none;
  letter-spacing: 0;
}
.category-block-current .icon-box {
  position: relative;
  height: 170px;
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 2px dashed #00c7c4;
  border-radius: 50%;
  margin-bottom: 20px;
}
.category-block-current .icon-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  width: 130px;
  background-color: #ffffff;
  font-size: 64px;
  line-height: 1em;
  border-radius: 50%;
  color:#00c7c4;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.category-block-current .inner-box:hover .icon {
  -webkit-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
  color: #ffffff !important;
  background-color: #00c7c4;
}
.category-block-current h6 a {
  color: var(--dark-gray);
}
.category-block-current:nth-child(6n+2) .inner-box .icon-box {
  border-color: #ef5c72;
}
.category-block-current:nth-child(6n+2) .inner-box:hover .icon {
  background-color: #ef5c72;
}
.category-block-current:nth-child(6n+2) .inner-box .icon {
  color: #ef5c72;
}
.category-block-current:nth-child(6n+3) .inner-box .icon-box {
  border-color: #f8b81f;
}
.category-block-current:nth-child(6n+3) .inner-box:hover .icon {
  background-color: #f8b81f;
}
.category-block-current:nth-child(6n+3) .inner-box .icon {
  color: #f8b81f;
}
.category-block-current:nth-child(6n+4) .inner-box .icon-box {
  border-color: #22d17e;
}
.category-block-current:nth-child(6n+4) .inner-box:hover .icon {
  background-color: #22d17e;
}
.category-block-current:nth-child(6n+4) .inner-box .icon {
  color: #22d17e;
}
.category-block-current:nth-child(6n+5) .inner-box .icon-box {
  border-color: #8e56ff;
}
.category-block-current:nth-child(6n+5) .inner-box:hover .icon {
  background-color: #8e56ff;
}
.category-block-current:nth-child(6n+5) .inner-box .icon {
  color: #8e56ff;
}
.category-block-current:nth-child(6n+6) .inner-box .icon-box {
  border-color: #41c2fa;
}
.category-block-current:nth-child(6n+6) .inner-box:hover .icon {
  background-color: #41c2fa;
}
.category-block-current:nth-child(6n+6) .inner-box .icon {
  color: #41c2fa;
}

/* signup */

.signup {
  position: relative;
  padding: 0;
}
.signup h2 {
  color: #fff;
}
.signup p {
  color: rgba(255, 255, 255, 0.6);
}
.signup:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  max-height: 190px;
  background-color: #f1f7f7;
  z-index: -1;
  content: "";
}
.signup::after {
  top: -50px;
  left:0;
  z-index: 10;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 243px;
  height: 201px;
  background-image: url(../images/icon-paper-clip.png);
  content: "";
  position: absolute;
  animation: bounce-x 10s infinite linear;
}
.signup .outer-box::after {
  position: absolute;
  right: -90px;
  bottom: -210px;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 970px;
  height: 387px;
  background-image: url(../images/icon-pencil-line.png);
  content: "";
  position: absolute;
}
.signup .float-icon {
  position: absolute;
  right: -90px;
  bottom: -210px;
  z-index: 0;
}
.signup .outer-box {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 120px 120px;
  border-radius: 30px;
  z-index: 10;
  overflow: hidden;
}
.signup .form-column .inner-column {
  margin-left: -20px;
}

.signup-form {
  position: relative;
}
.signup-form .form-group {
  position: relative;
  margin-bottom: 20px;
}
.signup-form .form-group:last-child {
  margin-bottom: 0;
}
.signup-form .form-group .select2-container--default .select2-selection--single,
.signup-form .form-group input:not([type=submit]),
.signup-form .form-group textarea,
.signup-form .form-group select {
  position: relative;
  display: block;
  height: 60px;
  width: 100%;
  padding: 15px 40px;
  font-size: 16px;
  color: var(--theme-color1);
  line-height: 28px;
  font-weight: 400;
  background-color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.signup-form .form-group ::-webkit-input-placeholder {
  color: #7d8185;
}
.signup-form .form-group ::-moz-input-placeholder {
  color: #7d8185;
}
.signup-form .form-group ::-ms-input-placeholder {
  color: #7d8185;
}
.signup-form .form-group input:focus,
.signup-form .form-group select:focus,
.signup-form .form-group textarea:focus {
  border-color: var(--base-color);
}
.signup-form .form-group textarea {
  height: 100px;
  resize: none;
}
.signup-form .form-group input[type=submit],
.signup-form .form-group button {
  margin-top: 5px;
  text-transform: uppercase;
  border: none;
  box-shadow: none;
  outline: none;
}

/* team */ 

.team {
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
  text-align: center;
}
.team-block {
  position: relative;
  margin-top: 25px;
}
.team-block .inner-box {
  position: relative;
}
.team-block .inner-box:hover .image-box:after {
  border-color: var(--base-color);
  -webkit-clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
          clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}
.team-block .inner-box:hover .image img {
    transform: scale(1.1);
    transform-origin: top center;
}
.team-block .inner-box:hover .social-links {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.team-block .inner-box:hover .share-icon {
  background-color: var(--base-color);
}
.team-block .image-box {
  position: relative;
  height: 275px;
  width: 275px;
  border-radius: 50%;
  padding: 27px 27px;
  margin: 0 auto 20px;
}
.team-block .image-box:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  border: 8px solid #f2f8f8;
  border-top: 0;
  content: "";
  border-radius: 0 0 200px 200px;
  transition: all 700ms ease;
}
.team-block .image-box:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  border: 8px solid #f2f8f8;
  border-top: 0;
  clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
  content: "";
  border-radius: 0 0 200px 200px;
  transition: all 700ms ease;
}
.team-block .image-box .image {
  position: relative;
  overflow: hidden;
  height: 220px;
  width: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0;
  z-index: 1;
}
.team-block .image-box .image img {
  width: 100%;
  transition: all 400ms ease;
}
.team-block .share-icon {
  position: absolute;
  left: 30px;
  top: 20px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: var(--base-color);
  background-color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 300ms ease;
  z-index: 3;
}
.team-block .social-links {
  position: absolute;
  left: 35px;
  top: 28px;
  display: flex;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  background-color: #ffffff;
  transform: scaleY(0);
  transform-origin: top;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  transition: all 400ms ease;
  border-radius: 20px;
  overflow: hidden;
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.team-block .social-links a {
  position: relative;
  height: 35px;
  width: 40px;
  display: block;
  font-size: 14px;
  line-height: 35px;
  text-align: center;
  color: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.team-block .social-links a:hover {
  color: var(--base-color);
}
.team-block .info-box {
  position: relative;
  text-align: center;
}
.team-block .info-box .name {
  z-index: 2;
  margin-bottom: 10px;
}
.team-block .info-box .name a {
  color: var(--dark-gray);
}
.team-block .info-box .designation {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #7d8185;
  letter-spacing: 1px;
  z-index: 2;
  line-height: 1em;
  transition: all 400ms ease;
}

/* call to action */

.anim-icons {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
.anim-icons .icon {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.call-to-action {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
  padding: 0;
}
.call-to-action .icon-calculator {
  top: -50px;
  left: -410px;
}
.call-to-action .icon-pin-clip {
  left: -320px;
  bottom: 50px;
}
.call-to-action .icon-dots {
  top: 50px;
  left: 570px;
  animation: fa-spin 100s infinite linear;
}
.call-to-action .title-column .inner-column {
  position: relative;
  padding: 120px 0;
}
.call-to-action h1 {
  color: #fff;
  margin-bottom: 40px;
}
.call-to-action .title-column .style-font {
  display: block;
  font-size: 44px;
  color: #f89321;
  margin-left: 190px;
  line-height: 1.2em;
  margin-bottom: 20px;
  font-family: 'ReeyRegular';
}
.call-to-action .image-column .image {
  position: relative;
  margin-top: -90px;
  margin-right: -375px;
  margin-left: -30px;
  margin-bottom: 0;
}
.icon-calculator {
  width: 336px;
  height: 332px;
  background-image: url(../images/icon-calculator.png);
}
.icon-pin-clip {
  width: 188px;
  height: 178px;
  background-image: url(../images/icon-pin-clip.png);
}
.icon-dots {
  width: 214px;
  height: 214px;
  background-image: url(../images/icon-dots.png);
}
.content-box {
  position: relative;
}

/* testimonial */

.testimonial {
  position: relative;
  padding: 120px 0 75px;
  background-color: #f2f8f8;
}
.testimonial::before {
  position: absolute;
  content: '';
  left: -540px;
  top: -100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 623px;
  height: 576px;
  background-image: url(../images/icon-dotted-map-2.png);
}
.testimonial .carousel-outer {
  position: relative;
  margin-right: -415px;
  margin-left: -15px;
}
.testimonial .owl-dots {
  position: absolute;
  left: -382px;
  bottom: 130px;
  display: flex;
}
.testimonial .owl-dots .owl-dot {
  display: block;
  height: 15px;
  width: 15px;
  background-color: #c7ccce;
  border: 3px solid #f2f8f8;
  border-radius: 50%;
  margin-right: 2px;
}
.testimonial .owl-dots .owl-dot.active {
  opacity: 1;
  border: 3px solid var(--base-color);
  background-color: #f2f8f8;
}
.testimonial-block {
  position: relative;
  margin-bottom: 30px;
}
.testimonial-block .inner-box {
  position: relative;
  padding: 70px 15px 15px;
}
.testimonial-block .content-box {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 55px 60px 60px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.testimonial-block .content-box:before {
  position: absolute;
  width: 334px;
  height: 265px;
  right: 0;
  top: 0;
  background-image: url(../images/border-dashed.png);
  background-repeat: no-repeat;
  content: "";
}
.testimonial-block .content-box .thumb {
  position: absolute;
  right: 40px;
  top: -70px;
  height: 140px;
  width: 140px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.testimonial-block .content-box .thumb img {
  border-radius: 50%;
}
.testimonial-block .content-box .rating {
  font-size: 20px;
  color: #f89321;
  margin-bottom: 15px;
}
.testimonial-block .content-box .rating i {
  margin-right: 5px;
}
.testimonial-block .content-box .text {
  position: relative;
  font-size: 20px;
  line-height: 36px;
  color: #7d8185;
  margin-bottom: 30px;
}
.testimonial-block .info-box {
  position: relative;
  padding-left: 90px;
  min-height: 70px;
  display: flex;
  justify-content: center;
  -webkit-box-orient: vertical;
  flex-direction: column;
}
.testimonial-block .info-box .icon-quote {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #7054e6;
  background-image: url(../images/icon-quote.png);
  background-repeat: no-repeat;
  background-position: center;
}
.testimonial-block .info-box .name {
  margin-bottom: 2px;
}
.testimonial-block .info-box .designation {
  position: relative;
  text-transform: uppercase;
  display: block;
  font-size: 13px;
  color: #808287;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1em;
}

/* middle content  */

.middle-content {
  position: relative;
  padding: 120px 0 70px;
}
.middle-content h2 {
  font-size: 46px;
}
.middle-content .content-column .inner-column {
  position: relative;
  padding-left: 40px;
}
.middle-content::before {
  left: -98px;
  top: 300px;
  width: 207px;
  height: 205px;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  background-image: url(../images/icon-e.png);
}
.middle-content::after {
  left: -60px;
  bottom: 70px;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  animation: bounce-x 10s infinite linear;
  width: 196px;
  height: 266px;
  background-image: url(../images/icon-dots-2.png);
  content: "";
  animation: bounce-x 10s infinite linear;
}
.middle-content .content-column {
  position: relative;
  margin-bottom: 20px;
  z-index: 1;
}
.middle-content .content-column .inner-column {
  position: relative;
  padding-left: 40px;
}
.middle-content .content-column p {
  margin-top: 45px;
  margin-bottom: 70px;
}
.middle-content .image-column {
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
.about-block {
  position: relative;
  margin-bottom: 30px;
}
.about-block .inner-box {
  position: relative;
}
.about-block .info-text {
  position: relative;
  display: inline-block;
  margin-left: 40px;
  background-color: #ef5c72;
  font-size: 17px;
  line-height: 1.2em;
  color: #fff;
  font-weight: 400;
  padding: 15px 20px;
  margin-bottom: 10px;
}
.about-block .info-text:before {
  position: absolute;
  left: 30px;
  bottom: -16px;
  border-right: 23px solid transparent;
  border-top: 16px solid #ef5c72;
  z-index: 1;
  content: "";
}
.about-block .info-box {
  position: relative;
  background-color: #f1f1f1;
  max-width: 200px;
  padding: 40px 20px 35px;
  text-align: center;
}
.about-block .info-box .thumb {
  height: 84px;
  width: 84px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
}
.about-block .info-box .name {
  margin-bottom: 8px;
}
.about-block .info-box .designation {
  display: block;
  font-size: 12px;
  line-height: 1em;
  color: #81868a;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.about-block.style-two {
  margin-top: 55px;
}
.about-block.style-two .info-text {
  background-color: #7054e6;
}
.about-block.style-two .info-text:before {
  border-top-color: #7054e6;
}

/* Counter */

.countdown {
  position: relative;
  padding: 120px 0 110px;  
  text-align:center;
}
.countdown-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation: zoom-two 10s infinite linear;
  background-image: url(../images/counter-bg.jpg);
}
.countdown h2 {
  color: #fff;
}
.countdown h6 {
  color: #00c7c4;
}
.countdown-section .content-box {
  position: relative;
}
.countdown-section .content-box .time-counter {
  margin-top: 80px;
}
.time-counter {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
}
.time-counter .counter-column {
  position: relative;
  display: inline-flex;
  -webkit-box-orient: vertical;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  height: 160px;
  font-size: 22px;
  color: #fff;
  line-height: 2em;
  letter-spacing: 0.01em;
  font-weight: 700;
  z-index: 7;
  margin: 10px 10px;
  border-radius: 50%;
  background: #ffffff;
}
.time-counter .counter-column .count {
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 0.8em;
  color: #ffffff;
  letter-spacing: 0em;
  font-weight: 700;
  margin-top: 10px;
}
.time-counter .counter-column:nth-child(4n+1) {
  background-color: #ef5c72;
}
.time-counter .counter-column:nth-child(4n+2) {
  background-color: #f16101;
}
.time-counter .counter-column:nth-child(4n+3) {
  background-color: #8e56ff;
}
.time-counter .counter-column:nth-child(4n+4) {
  background-color: #2da397;
}

/* news */

.news {
  position: relative;
  padding: 120px 0 70px;
  overflow: hidden;
  text-align: center;
}
.news-block {
  position: relative;
  margin: 50px 0;
  text-align: left;
}
.news-block .inner-box {
  position: relative;
  transition: all 300ms ease;
}
.news-block .inner-box:hover .image-box .image a:after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 400ms linear;
}
.news-block .inner-box:hover .image img {
  transform: scale(1.1);
}
.news-block .image-box {
  position: relative;
}
.news-block .image-box .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.news-block .image-box .image img {
  display: block;
  width: 100%;
  border-radius: 15px;
  transition: all 400ms ease;
}
.news-block .image-box .image a:after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}
.news-block .image-box .date {
  position: absolute;
  right: 30px;
  top: 0px;
  background: #ef5c72;
  color: #fff;
  z-index: 1;
  display: flex;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  height: 60px;
  width: 50px;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
  border-radius: 0 0 50px 50px;
  letter-spacing: 1px;
}
.news-block .image-box .date b {
  display: block;
  font-weight: 600;
  font-size: 20px;
  line-height: 16px;
  color: #fff;
}
.news-block .content-box {
  position: relative;
  margin-top: -100px;
  padding: 0 20px;
}
.news-block .content-box .content {
  position: relative;
  padding: 20px 30px 1px;
  background-color: #fff;
  border-radius: 15px 15px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
}
.news-block .content-box .post-info {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.news-block .content-box .post-info li {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  color: #7d8185;
  font-weight: 400;
  margin-right: 14px;
}
.news-block .content-box .post-info li svg {
  margin-right: 2px;
  color: var(--base-color);
  font-size: 14px;
}
.news-block .content-box .title {
  margin-bottom: 25px;
}
.news-block .content-box .title a {
  color: var(--dark-gray);
}
.news-block .content-box .title:hover a {
  color: #ef5c72;
}
.news-block .read-more {
  font-size: 14px;
  line-height: 30px;
  color: #7d8185;
  padding: 10px 30px;
  font-weight: 400;
  margin-left: -30px;
  margin-right: -30px;
  border-top: 1px solid #dae6e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-block .read-more i {
  margin-left: 10px;
  color: #7d8185;
  font-size: 16px;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
}
.news-block .read-more:hover {
  color: #f89321;
}
.news-block .read-more:hover i {
  color: #f89321;
}

/* clients */

.clients {
  position: relative;
  z-index: 1;
  border-top: 1px solid #dae6e6;
  padding: 85px 0;
}

.clients .slide-item {
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}
.clients .slide-item:hover {
  background-color: #f2f8f8;
}
.clients .slide-item:hover img {
  opacity: 1;
}
.clients .slide-item img {
  display: inline-block;
  max-width: 100%;
  width: auto;
  height: auto;
  opacity: 0.3;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}


/* footer */

.main-footer {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 120px 0 10px;
  background-color: #000;
}
.main-footer-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation: zoom-two 10s infinite linear;
  display: none;
}
.main-footer .footer-column {
  position: relative;
  margin-bottom: 40px;
}
.main-footer .footer-widget {
  position: relative;
}
.main-footer .widget-title {
  position: relative;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}
.main-footer .about-widget {
  position: relative;
}
.main-footer .about-widget .logo {
  position: relative;
  margin-bottom: 22px;
}
.main-footer .about-widget p {
  font-size: 20px;
  color: #ffffff;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

/*=== User LInks ===*/
.user-links {
  position: relative;
}
.user-links li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #989ea6;
  font-weight: 400;
  margin-bottom: 10px;
}
.user-links li:last-child {
  margin-bottom: 0;
}
.user-links li a {
  position: relative;
  display: inline-block;
  color: inherit;
  transition: all 300ms ease;
}
.user-links li a:hover {
  color: #FFFFFF;
}
.user-links li a:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #f89321;
  content: "";
  transition: all 300ms ease;
}
.user-links li a:hover:before {
  width: 100%;
}

/* Contact Widget */
.contact-widget {
  position: relative;
}
.contact-widget .contact-info {
  position: relative;
  margin-bottom: 25px;
}
.contact-widget .contact-info li {
  position: relative;
  padding-left: 38px;
  font-size: 16px;
  line-height: 24px;
  color: #989ea6;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 300ms ease;
}
.contact-widget .contact-info li a {
  color: #989ea6;
  font-weight: 500;
  transition: none;
}
.contact-widget .contact-info li svg {
  position: absolute;
  left: 0;
  top: 5px;
  color: #f89321;
  line-height: 26px;
  width: 20px;
  font-size: 14px;
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.contact-widget .contact-info li:hover a {
  color: #f89321;
}

/* Subscribe Form */
.subscribe-form {
  position: relative;
}
.subscribe-form .form-group {
  position: relative;
  margin-bottom: 0;
}
.subscribe-form .form-group input[type=text],
.subscribe-form .form-group input[type=email] {
  position: relative;
  display: block;
  height: 64px;
  width: 100%;
  font-size: 14px;
  line-height: 30px;
  color: #797f7d;
  padding: 17px 30px;
  padding-right: 60px;
  background: #ffffff;
  border-radius: 50px;
  transition: all 300ms ease;
  border: none;
  box-shadow: none;
  outline: none;
}
.subscribe-form .form-group .theme-btn {
  position: absolute;
  right: 12px;
  top: 12px;
  display: block;
  text-align: center;
  height: 40px;
  width: 40px;
  padding: 0;
  color: #ffffff;
  font-weight: 700;
  line-height: 40px;
  background-color: #ef5c72;
  border-radius: 50%;
  border: none;
  box-shadow: none;
  outline: none;
}

/*=== Footer Bottom ===*/
.footer-bottom {
  position: relative;
  width: 100%;
}
.footer-bottom .inner-container {
  position: relative;
  text-align: center;
  padding: 25px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom .copyright-text {
  position: relative;
  font-size: 16px;
  color: #989ea6;
  line-height: 25px;
}
.footer-bottom .copyright-text a {
  color: inherit;
}
.footer-bottom .copyright-text a:hover {
  color: #ffffff;
}
.social-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social-icon li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 8px;
}
.social-icon li:first-child {
  margin-left: 0;
}
.social-icon li a {
  position: relative;
  display: block;
  line-height: 42px;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  border-radius: 50%;
  background-color: #2a3037;
  transition: all 300ms ease;
}
.social-icon li a:hover {
  color: #ffffff;
  background-color: #f89321;
}

/* inner banner */

.inner-banner {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0 110px;
  min-height: 250px;
}
.inner-banner::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #131313;
  opacity: 0.8;
  content: "";
}
.title-outer {
  position: relative;
  z-index: 5;
}
.inner-banner h1 {
  color: #ffffff;
  margin-bottom: 17px;
}
.breadcrumb {
  position: relative;
  margin-top: 5px;
}
.breadcrumb li {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  padding-right: 13px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.breadcrumb li:last-child {
  padding-right: 0px;
  margin-right: 0px;
}
.breadcrumb li::after {
  position: absolute;
  content: "\f105";
  right: -6px;
  top: 1px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #ffffff;
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb li a {
  color: #00c7c4;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

/* team details */

.team-details {
  position: relative;
}
.team-details-top-left {
  position: relative;
  display: block;
  margin-right: 20px;
}
.team-details-top-img {
  position: relative;
  display: block;
  border-radius: 30px;
}
.team-details-top-img img {
  width: 100%;
  border-radius: 30px;
}
.team-details-top-right {
  position: relative;
  display: block;
  margin-left: 50px;
}
.team-details-social {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 28px;
}
.team-details-social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color:#ef5c72;
  color: #fff;
  font-size: 15px;
  border-radius: 50%;
  transition: all 500ms ease;
}
.team-details-social a + a {
  margin-left: 10px;
}
.team-details-social a:hover {
  background-color: var(--base-color);
}
.team-details-bottom {
  position: relative;
  display: block;
  border-top: 1px solid #e4e5ea;
  padding-top: 60px;
  margin-top: 80px;
}
.team-details-bottom-left {
  position: relative;
  display: block;
  margin-right: 70px;
}
.team-details-bottom-right {
  position: relative;
  display: block;
  margin-left: 70px;
  margin-top: 1px;
}
.team-details-progress {
  position: relative;
  display: block;
  width: 100%;
}
.team-details-progress .bar {
  position: relative;
  width: 100%;
  height: 13px;
  background-color: #eef0f6;
  border-radius: 7px;
  margin-bottom: 22px;
}
.team-details-progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 13px;
  border-radius: 7px;
  background-color: var(--base-color);
  transition: all 1500ms ease;
}
.team-details-progress .count-text {
  position: absolute;
  right: 0px;
  bottom: 21px;
  color: var(--dark-grey);
  line-height: 24px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  opacity: 1;
  transition: all 500ms ease;
}
.team-details-bottom-right h5,
.team-details-top-content h3 {
  margin-bottom: 5px;
}
.mb-30 {
  margin-bottom: 30px;
}

/* course details page */

.course-details {
  position: relative;
  padding: 80px 0;
}
.course-details-info {
  margin-bottom: 30px;
  border-style: dashed;
  border-width: 1px;
  border-color: var(--base-color);
}
.course-details-info-link {
  display: flex;
  align-items: center;
  color: #81868a;
  font-size: 18px;
  font-weight: 600;
  padding: 25px;
  transition: all 0.4s ease;
}
.course-details-info-link + .course-details-info-link {
  border-top: 1px dashed;
    border-top-color: currentcolor;
  border-color: var(--theme-color3);
}
.course-details-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  position: relative;
} 
.course-details-info-icon svg {
  color: #fff;
  font-size: 16px;
}
.course-details-info-link span {
  color: #012237;
  margin-left: 15px;
}
.course-details-info-link:nth-child(1) .course-details-info-icon {
  background-color:#191e24;
} 
.course-details-info-link:nth-child(2) .course-details-info-icon {
  background-color: #00c7c4;
}
.course-details-info-link:nth-child(3) .course-details-info-icon {
  background-color: #7054e6;
}
.course-details-info-link:nth-child(4) .course-details-info-icon {
  background-color: #f89321;
}
.course-details-info-link:nth-child(5) .course-details-info-icon {
  background-color: #ef5c72;
}
.latest-course {
  border-style: solid;
  border-width: 2px;
  border-color: #f1f1f1;
  padding: 30px;
}
.latest-course h5 {
  color: #81868a;
  margin: 0;
  line-height: 1em;
  margin-top: 10px;
  margin-bottom: 10px;
}
.latest-course h5 a {
  color: inherit;
  transition: all 0.4s ease;
}
.latest-course h5 a:hover {
  color: var(--base-color);
}
.latest-course-item {
  display: flex;
  align-items: center;
}
.latest-course-item + .latest-course-item {
  border-top: 2px solid #f1f1f1;
  padding-top: 30px;
  margin-top: 30px;
}
.latest-course-img {
  width: 67px;
  margin-right: 30px;
}
.latest-course-img > img {
  width: 100%;
}
.latest-course-author {
  font-size: 14px;
  color: #81868a;
  line-height: 1em;
  display: flex;
}
.latest-course-author span {
  color: #ef5c72;
  margin-left: 6px;
}
.latest-course-stars {
  display: inline-block;
}
.latest-course-stars svg {
  font-size: 14px;
  color: #ff9a28;
}
.latest-course-stars span {
  font-size: 14px;
  font-weight: 500;
  color: #012237;
  line-height: 1em;
  margin-left: 10px;
}

.course-details .category-block-current {
  position: relative;
  margin-bottom: 30px;
}
.course-details  .category-block-current .inner-box {
  position: relative;
  text-align: center;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  padding: 20px 40px 50px;
  text-align: center;
  transition: all 300ms ease;
  max-width: 100%;
}
.course-details .category-block-current .inner-box:before {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid #dae6e6;
  content: "";
  transition: all 300ms ease;
}
.course-details .category-block-current .inner-box:hover {
   transform: translateY(-15px);
}
.course-details .category-block-current .inner-box:hover::before {
  border-color: var(--base-color);
}
.course-details .category-block-current .icon-box {
  position: relative;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #ffffff;
  font-size: 52px;
  background-color: var(--base-color);
  border-radius: 0 0 10px 10px;
  margin: 0 auto 25px;
  border: none;
}
.course-details .category-block-current .title {
  margin-bottom: 10px;
}
.course-details .category-block-current .title:hover {
  color: var(--base-color);
}
.course-details .category-block-current .sub-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.course-details .category-block-current:nth-child(6n+2) .inner-box .icon-box {
  background-color: #ef5c72;
}
.course-details .category-block-current:nth-child(6n+2) .inner-box:hover::before {
  border-color: #ef5c72;
}
.course-details .category-block-current:nth-child(6n+2) .inner-box .sub-title {
  color: #ef5c72;
}
.course-details .category-block-current:nth-child(6n+2) .inner-box .title:hover {
  color: #ef5c72;
}
.course-details .category-block-current:nth-child(6n+3) .inner-box .icon-box {
  background-color: #00c7c4;
}
.course-details .category-block-current:nth-child(6n+3) .inner-box:hover::before {
  border-color: #00c7c4;
}
.course-details .category-block-current:nth-child(6n+3) .inner-box .sub-title {
  color: #00c7c4;
}
.course-details .category-block-current:nth-child(6n+3) .inner-box .title:hover {
  color: #00c7c4;
}
.course-details .category-block-current:nth-child(6n+4) .inner-box .icon-box {
  background-color: var(--bg-theme-color4);
}
.course-details .category-block-current:nth-child(6n+4) .inner-box:hover::before {
  border-color: var(--border-theme-color4);
}
.course-details .category-block-current:nth-child(6n+4) .inner-box .sub-title {
  color: var(--theme-color4);
}
.course-details .category-block-current:nth-child(6n+4) .inner-box .title:hover {
  color: var(--theme-color4);
}

/* faq */

.accordion-box {
  position: relative;
}
.accordion-box .block {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #dae6e6;
  border-radius: 25px;
  margin-bottom: 10px;
}
.accordion-box .block {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #dae6e6;
  border-radius: 25px;
  margin-bottom: 10px;
}
.accordion-box .block .acc-btn {
  position: relative;
  font-size: 18px;
  line-height: 26px;
  color: var(--theme-color1);
  font-weight: 700;
  cursor: pointer;
  padding: 16px 30px;
  padding-right: 70px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.accordion-box .block .acc-btn .icon {
  position: absolute;
  right: 30px;
  top: 16px;
  height: 26px;
  font-size: 18px;
  line-height: 26px;
  color: var(--dark-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.accordion-box .block .acc-btn.active .icon::before {
  content: "\f107";
  color: var(--base-color);
}
.accordion-box .block .acc-btn.active {
  color: var(--base-color);
}
.accordion-box .block .acc-btn.active .icon {
  color:var(--dark-gray) ;
}
.accordion-box .block .acc-btn.active .icon:before {
  content: "\f107";
  color: var(--base-color);
}
.accordion-box .block .acc-content {
  position: relative;
  display: none;
}
.accordion-box .block .acc-content .content {
  position: relative;
  padding: 0px 30px 25px;
}
.accordion-box .block .acc-content .content .text {
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #7d8185;
  margin-bottom: 0;
}
.accordion-box .block .acc-content.current {
  display: block;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
}
.news-list {
  padding: 60px 0;
}
/*  blog details */

.blog-details {
  position: relative;
  display: block;
}
.blog-details-left {
  position: relative;
  display: block;
}
.blog-details-img {
  position: relative;
  display: block;
  border-radius: 10px;
}
.blog-details-img img {
  width: 100%;
  border-radius: 10px;
}
.blog-details-date {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--dark-gray);
  text-align: center;
  padding: 21px 24px 20px;
  align-items: center;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  display: flex;
  flex-direction: column;
}
.blog-details-date .day {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  line-height: 16px;
}
.blog-details-date .month {
  position: relative;
  display: block;
  font-size: 10px;
  font-weight:bold;
  color: #fff;
  line-height: 12px;
  text-transform: uppercase;
}
.blog-details-content {
  position: relative;
  display: block;
  margin-top: 22px;
}
.blog-details-date {
  display: flex;
  align-items: center;
}
.blog-details-content ul li + li {
  margin-left: 18px;
}
.blog-details-content ul li a {
  font-size: 15px;
  color: #777;
  font-weight: 500;
  transition: all 500ms ease;
}
.blog-details-content ul li a:hover {
  color: var(--base-color);
}
.blog-details-content ul li a i {
  color: var(--base-color);
  margin-right: 6px;
}

.blog-details-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 0 30px;
  margin-top: 49px;
  border-top: 1px solid #ece9e0;
}
.blog-details-bottom p {
  margin: 0;
}
.blog-details-tags span {
  color: #0e2207;
  font-size: 20px;
  margin-right: 14px;
  font-weight:bold;
}
.blog-details-tags a {
  position: relative;
  font-size: 12px;
  background-color: var(--dark-gray);
  color: #fff;
  display: inline-block;
  padding: 5px 30px 5px;
  font-weight:bold;
  transition: all 500ms ease;
  border-radius: 35px;
}
.blog-details-tags a:hover {
  background-color: var(--base-color);
  color: #fff;
  text-decoration: none;
}
.blog-details-tags a + a {
  margin-left: 6px;
}
.blog-details-social-list {
  display: flex;
  align-items: center;
}
.blog-details-social-list a {
  position: relative;
  height: 43px;
  width: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color:#fff;
  background-color: var(--dark-gray);
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
  z-index: 1;
}
.blog-details-social-list a:hover {
  color: #fff;
  background-color: var(--base-color);
}
.blog-details-social-list a:hover:after {
  opacity: 1;
  transform: scaleY(1);
}
.blog-details-social-list a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--base-color);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.4s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}
.blog-details-social-list a + a {
  margin-left: 10px;
}
.blog-details-pagenation-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 53px;
}
.blog-details-pagenation {
  position: relative;
  display: block;
}
.blog-details-pagenation li {
  position: relative;
  float: left;
  font-size: 20px;
  color: #0e2207;
  font-weight:bold;
  color: var(--dark-gray);
  background-color: var(--base-color);
  line-height: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  max-width: 370px;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 52px;
  padding-bottom: 52px;
  border-radius: 10px;
}
.blog-details-pagenation li:hover {
  background-color: var(--base-color);
  color: var(--dark-gray);
}
.blog-details-pagenation li + li {
  margin-left: 30px;
}
.reply-btn {
  font-size: 14px;
  padding: 5px 20px;
  border-radius: 30px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #f89321;
  color: #fff;
}
.reply-btn:hover {
  background-color: var(--base-color);
  color: #fff;
}
.comment-one h3 {
  margin-bottom: 30px;
}
.comment-one .comment-one-single {
  display: flex;
  border-bottom: 1px solid #ece9e0;
  padding-bottom: 60px;
  margin-bottom: 60px;
  align-items: top;
}
.comment-one .comment-one-content {
  position: relative;
  margin-left: 45px;
}
.comment-one .comment-one-content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 24px;
}
.comment-one .comment-one-content p {
  font-size: 16px;
  font-weight: 500;
}
.comment-one .comment-one-btn {
  padding: 5px 30px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
}
.comment-one .comment-one-image {
  position: relative;
  display: block;
  border-radius: 50%;
  flex: 100px 0 0;
}
.comment-one .comment-one-image img {
  border-radius: 50%;
}
.comment-form .comment-form-title {
  margin-top: -7px;
}
.sidebar-search {
  position: relative;
  display: block;
}
.sidebar-search-form {
  position: relative;
}
.sidebar-search-form input[type=search] {
  display: block;
  border: none;
  outline: none;
  background-color:#00c7c4;
  color: var(--dark-gray);
  font-size: 16px;
  font-weight: 500;
  padding-left: 50px;
  height: 74px;
  width: 100%;
  padding-right: 80px;
  border-radius: 10px;
}
.sidebar-search-form input[type=search]::-webkit-input-placeholder {
  color: var(--dark-gray);
  opacity: 1;
}
.sidebar-search-form input[type=search]::-webkit-input-placeholder, 
.sidebar-search-form input[type=search]:-ms-input-placeholder, 
.sidebar-search-form input[type=search]::-ms-input-placeholder, 
.sidebar-search-form input[type=search]::placeholder {
  color: var(--dark-gray);
  opacity: 1;
}
.sidebar-search-form button {
  background-color: transparent;
  color: #111;
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  padding: 0;
}
.sidebar-post {
  position: relative;
  display: block;
  padding: 46px 30px 30px;
  color: var(--dark-gray);
  background-color: #f8f6f1;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
.sidebar-single + .sidebar-single {
  margin-top: 30px;
}
.sidebar-post .sidebar-title {
  margin-left: 20px;
}
.sidebar-post .sidebar-post-list {
  margin: 0;
}
.sidebar-post .sidebar-post-list li {
  display: flex;
  align-items: center;
  padding: 16px 20px 17px;
  transition: all 500ms ease;
}
.sidebar-post .sidebar-post-list li:hover {
  background-color: #ffffff;
  border-radius: 10px;
}
.sidebar-post .sidebar-post-list li + li {
  margin-top: 11px;
}
.sidebar-post .sidebar-post-list .sidebar-post-image {
  margin-right: 20px;
  flex: 70px 0 0;
}
.sidebar-post .sidebar-post-list .sidebar-post-image > img {
  width: 80px;
  border-radius: 10px;
}
.sidebar-post .sidebar-post-list .sidebar-post-content {
  position: relative;
  top: -3px;
}
.sidebar-post .sidebar-post-list .sidebar-post-content h3 {
  font-size: 18px;
  margin: 0;
  line-height: 26px;
  letter-spacing: 0;
}
.sidebar-post .sidebar-post-list .sidebar-post-content h3 a {
  color: #0e2207;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.sidebar-post .sidebar-post-list .sidebar-post-content-meta {
  font-size: 14px;
  font-weight: 500;
  color: #757873 !important;
  transition: all 500ms ease;
}
.sidebar-post .sidebar-post-list .sidebar-post-content-meta svg {
  color: var(--base-color);
  font-size: 14px;
  padding-right: 3px;
}
.sidebar-category {
  position: relative;
  display: block;
  color: var(--dark-gray);
  background-color: #f8f6f1;
  border-radius: 10px;
  padding: 45px 30px 38px;
  overflow: hidden;
  z-index: 1;
}
.sidebar-category .sidebar-title {
  padding-left: 20px;
  margin-bottom: 9px;
}
.sidebar-category-list {
  margin: 0;
}
.sidebar-category-list li + li {
  margin-top: 4px;
}
.sidebar-category-list li a {
  color: #757873;
  font-size: 16px;
  position: relative;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 12px 20px;
  font-weight: 500;
  border-radius: 10px;
}
.sidebar-category-list li a:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: #0e2207;
  text-shadow: 1px 0 0 rgba(14, 34, 7, 0.5);
}
.sidebar-category-list li a:hover span {
  color: #ffcd1e;
  transform: translateY(-50%) scale(1);
}
.sidebar-category-list li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) scale(0);
  transition: all 500ms ease;
  color: var(--base-color);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.sidebar-category-list li.active a {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: #0e2207;
  border-radius: 10px;
  text-shadow: 1px 0 0 rgba(14, 34, 7, 0.5);
}
.sidebar-category-list li.active a span {
  transform: translateY(-50%) scale(1);
  color: #ffcd1e;
}
.sidebar-tags {
  position: relative;
  display: block;
  color: var(--dark-gray);
  background-color: #f8f6f1;
  padding: 46px 45px 50px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
.sidebar-tags .sidebar-title {
  margin-left: 5px;
  margin-bottom: 25px;
}
.sidebar-tags-list {
  margin-top: -10px;
}
.sidebar-tags-list a {
  font-size: 14px;
  color: #0e2207;
  transition: all 0.4s ease;
  background: #ffffff;
  display: inline-block;
  padding: 5px 28px 5px;
  margin-left: 5px;
  border-radius: 30px;
}
.sidebar-tags-list a:hover {
  color: #fff;
  background: var(--dark-gray);
}
.sidebar-tags-list a + a {
  margin-left: 5px;
  margin-top: 10px;
}
.sidebar-comments {
  position: relative;
  display: block;
  color: var(--dark-gray);
  background-color: #f8f6f1;
  padding: 46px 50px 43px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
.sidebar-comments-list {
  position: relative;
  display: block;
}
.sidebar-comments-list li {
  position: relative;
  display: block;
  padding-left: 65px;
}
.sidebar-comments-list li:hover .sidebar-comments-icon {
  background-color: var(--base-color);
  color: #fff;
}
.sidebar-comments-list li + li {
  margin-top: 23px;
}

.sidebar-comments-icon {
  height: 45px; 
  width: 45px;
  background-color: #ef5c72;
  border-radius: 50%;
  font-size: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}
.sidebar-comments-text-box p {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  font-weight: 500;
}
.sidebar-comments-text-box p span {
  color: #0e2207;
}
.sidebar-comments-text-box h5 {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  color: #757873;
  font-weight: 500;
  letter-spacing: 0;
}

/* Contact */

.contact-details-info {
  position: relative;
  display: block;
  margin-top: 41px;
}
.contact-details-info li {
  position: relative;
  display: flex;
  align-items: center;
}
.contact-details-info li .icon {
  height: 80px;
  width: 80px;
  background-color: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.contact-details-info li .icon svg {
  color: #fff;
  font-size: 25px;
  transition: all 500ms ease;
}
.contact-details-info li:hover .icon {
  background-color: #ef5c72;
}
.contact-details-info li:hover .icon span {
  color: #fff;
}
.contact-details-info li:hover .text a {
  color: var(--notech-base);
}
.contact-details-info li:hover .text a span {
  color: var(--notech-gray);
}
.contact-details-info li .text {
  margin-left: 30px;
}
.contact-details-info li h6 {
  text-transform: capitalize;
  letter-spacing: 0;
  font-weight: bold;
  color: var(--dark-gray);
  margin-bottom: 6px;
}
.contact-details-info li .text p {
  font-size: 14px;
  line-height: 24px;
}
.contact-details-info li .text a {
  font-size: 18px;
  color: var(--notech-black);
  transition: all 500ms ease;
}
.contact-details-info li .text span {
  font-size: 20px;
  color: var(--notech-black);
}
.contact-details-info li + li {
  margin-top: 19px;
}
.form-control, .input-text {
  height: calc(2.25rem + 27px);
  padding: 14px 30px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
}
.form-control::-webkit-input-placeholder, .input-text::-webkit-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-moz-placeholder, .input-text::-moz-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::placeholder, .input-text::placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: #686a6f;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: #686a6f;
}
textarea.form-control {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}
.btn-style-one {
  position: relative;
  font-size: 12px;
  line-height: 24px;
  padding: 15px 60px;
  font-weight: 700;
  letter-spacing: 0.1em;
  overflow: hidden;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 50px;
  z-index: 1;
  background: var(--dark-gray);
  transition: all 500ms ease;
  border: none;
  box-shadow: none;
  outline: none;
}
.btn-style-one.bg-theme-color5 {
  background: #ef5c72;
}


 /* Media query  */

 @media only screen and (max-width:1400px){
  .about::before { 
    left: -110px;
  }
 }
 @media only screen and (max-width:1200px){
  .banner-image { 
    right: 0;
  }
  .banner {
    padding: 150px 0 50px;
    min-height: 780px;
  }
  section,
  .countdown {
    padding: 80px 0;
  }
  .about,
  .main-footer  {
    padding: 80px 0 0;
  }
  .courses {
    padding-top: 100px;
  }
  .course-slider .content-box {
    padding: 25px 15px 25px;
  }
  .course-slider .image-box .value {
    left: 15px;
  }
  .features {
    padding: 60px 0 10px;
  }
  .signup .outer-box {
    padding: 120px 80px;
  }
  .team {
    padding: 80px 0 90px;
  }
  .call-to-action .title-column .inner-column {
    padding: 80px 0;
  }
  .call-to-action .image-column .image {
    margin-left: -215px;
  }
  .testimonial,
  .middle-content,
  .news {
    padding: 80px 0 50px;
  }
  .clients {
    padding: 50px 0;
  }
  .middle-content .content-column .inner-column {
    padding-left: 10px;
  }
  .middle-content h2 {
    font-size: 44px;
  }
  .middle-content .content-column p {
    margin-top: 35px;
    margin-bottom: 50px;
  }  
  h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .banner h1 {
    font-size: 70px;
    line-height: 70PX;
  }
}
@media only screen and (max-width:1100px){
  .call-btn {
    display: none;
  }
  .navbar-collapse {
    padding: 0 15px;
  }
  .outer-menu ul li:nth-last-child(3) {
    margin-right: 0;
  }  
  .banner-image {
    right: -36px;
  }
  .about-text ul li {
    font-size: 18px;
  }
  .courses .inner-box .image-box img {
    width: 100%;
    height: auto;
  }
  .feature-block .inner-box::before { 
    display: none;
  }
  .feature-block .inner-box {
    margin-left: 0;
  }
  .feature-block .icon img {
    width: 54px;
    height: auto;
  }
  .feature-block .title {
    font-size: 18px;
    line-height: 24px;
  }
  .call-to-action .image-column .image {
    margin-left: 0;
    margin-top: -40px;
  }
  .call-to-action .image-column .image img { 
    height: 430px;
    width: auto;
  }
  .call-to-action {
    overflow: hidden;
  }
}
@media only screen and (max-width:991px){
  h1 {
    font-size: 42px;
    line-height: 50px;
  }
  h2 {
    font-size: 35px;
    line-height: 40px;
  } 
  h3 {
    font-size: 24px;
    line-height: 24px;
  } 
  h4 {
    font-size: 20px;
    line-height: 26px;
  } 
  h5 {
    font-size: 18px;
    line-height: 24px;
  } 
  h6 {
    font-size: 16px;
    line-height: 22px;
  } 
  p {
    font-size: 15px;
    line-height: 26px;
  }
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .header .mob-logo {
    display: block;
    margin-left: 8px;
    margin-bottom: 20px;
  }
  .header .mob-logo img.logo {
    height: 40px;
    width: auto;
  }
  .mob-social-icons.mobile-menu,
  .mobile-menu {
    display: block !important;
  }
  .mob-social-icons .social-icons {
    margin-left: 0;
    margin-top: 15px;
  }
  .mob-social-icons .social-icons li {
    margin-right: 6px !important;
  }
  .mob-social-icons .social-icons li a {
    background-color:var(--base-color);
    color: #fff;
    display: block;
    width: 23px;
    height: 23px;
    line-height: 23px !important;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
    padding: 0 !important;
  }
  .mob-social-icons .social-icons li a:hover {
    background-color: #222;
    color: #fff;
  }
  .outer-menu {
    padding: 0;
    height: 70px;
    max-height: 70px;
  } 
  .outer-menu .navbar-toggler{
    border: none;
    box-shadow: none;
    position: absolute;
    right: 15px;
    height: 13px;
    border-radius: 0;
    width: 23px;
    padding: 0;
  }
  .outer-menu .navbar-toggler .menu-lines {
    display: inline-block;
  }
  .outer-menu .navbar-toggler .menu-lines::before, 
  .outer-menu .navbar-toggler .menu-lines::after {
    content: '';
    position: absolute;
    left: 0;
    width: 23px;
    height: 1px;
    display: inline-block;
    background-color: var(--base-color);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .outer-menu .navbar-toggler .menu-lines::before {
    top: 0;
  }
  .outer-menu .navbar-toggler .menu-lines::after {
    top: 12px;
  }
  .outer-menu .navbar-toggler .menu-lines span {
    position: absolute;
    top: 6px;
    left: 0;
    width: 18px;
    height: 1px;
    background-color:var(--base-color);
  }
  .outer-menu .collapse:not(.show) {
    display: block;
  }
  .outer-menu .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0,0,0,.6);
    z-index: 1000;
    padding: 0;
    transition: 0.4s ease;
  }
  .outer-menu .navbar-collapse.menu-opened {
    opacity: 1;
    visibility: visible;
  }
  .outer-menu .navbar-collapse.menu-opened .navbar-nav {
    opacity: 1;
    transform: translateX(0);
  }
  .outer-menu .navbar-collapse .navbar-nav {
    opacity: 0;
    width: 240px;
    height: 100%;
    overflow-y: auto;
    padding: 10px 15px 20px;
    background-color: #fff;
    transform: translateX(-100%);
    transition: 0.3s ease;
    transition-delay: 0s;
    transition-delay: 0.4s;
    margin: 0;
  }
  .outer-menu .navbar-collapse.menu-opened .close-mobile-menu {
    opacity: 1;
    transform: scale(1);
  }
  .outer-menu .close-mobile-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1100;
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transform: scale(.8);
    transition: all 0.4s ease;
    transition-delay: 0s;
    transition-delay: 0.5s;
    background-color: transparent;
    box-shadow: none;
  }
  .outer-menu li a {
    color: #303030;
    line-height: 35px !important;
    padding-left: 15px;
  }
  .outer-menu ul li a.active::before, 
  .outer-menu ul li a:hover::before,
  .outer-menu ul li a::before {
   display: none;
  } 
  .navbar .submenu li a {
    padding: 0;
  }
  .outer-menu ul li.dropdown:hover > .submenu {
    display: none;
  }
  .outer-menu ul li.dropdown .submenu {
    transform:none !important;
    position: static;
    float: none;
    display: none;
    padding: 0;
    box-shadow: none;
  }
  .outer-menu ul li.dropdown.open .submenu {
    visibility: visible;
    opacity: 1;
  }
  .navbar .dropdown::after {
    top: 17px;
  }
  .outer-menu .common-btn {
    display: none;
  }
  .outer-menu ul li a {
    color: var(--dark-gray);
  }
  .bg-images {
    display: none;
  }
  .banner {
    min-height: 700px;
  }
  .banner-image {
    right: -234px;
  }
  .about .col-md-6,
  .about .col-md-6 {
    width: 100%;
  }
  .about-text {
    padding-top: 40px;
  }
  .call-to-action .title-column .style-font {
    margin-left: 0;
  }
  .call-to-action .sec-title.light {
    text-align: center;
  }
  .call-to-action .title-column .inner-column {
    padding: 60px 0;
  }
  .testimonial,
  .middle-content,
  .news {
    padding: 60px 0 40px;
  }
  .clients {
    padding: 30px 0;
  }
  section,
  .countdown {
    padding: 60px 0;
  }
  .about,
  .main-footer  {
    padding: 60px 0 0;
  }
  .courses {
    padding-top: 80px;
  }  
  .features {
    padding: 40px 0 10px;
  }
  .signup .outer-box {
    padding: 80px 60px 120px;
  }
  .team {
    padding: 60px 0 70px;
  }
  .call-to-action .image-column .image img,
  .middle-content .image-column .image img {
    height: auto;
    width: 100%;
  }
  .call-to-action .image-column .image {
    margin-right: 0;
  }
  .testimonial h2 br,
  .signup h2 br {
    display: none;
  }
  .middle-content h2 {
    font-size: 35px;
  } 
  .middle-content .image-column {
    margin-bottom: 30px;
  }
  .news-block {
    margin: 30px 0;
  }
  .banner h1 {
    font-size: 60px;
    line-height: 60PX;
  }
  .about::before { 
    display: none;
  }
}
@media only screen and (max-width:767px){ 
  h1 {
    font-size: 40px;
    line-height: 48px;
  }
  h2 {
    font-size: 32px;
    line-height: 36px;
  } 
 
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .call-to-action .title-column .inner-column {
    padding: 40px 0;
  }
  .testimonial,
  .middle-content,
  .news {
    padding: 40px 0 20px;
  }
  .clients {
    padding: 20px 0;
  }
  section,
  .countdown {
    padding: 40px 0;
  }
  .about,
  .main-footer  {
    padding: 40px 0 0;
  }
  .courses {
    padding-top: 60px;
  }  
  .features {
    padding: 40px 0 10px;
  }
  .signup .outer-box {
    padding: 80px 60px 120px;
  }
  .team {
    padding: 40px 0 50px;
  }
  .banner h1 {
    font-size: 50px;
    line-height: 50px;
    max-width: 300px;
  }
  .banner p {
    max-width: 300px;
  }
  .banner {
    min-height: 600px;
  }
  .banner-image {
    right: 0;
  }
  .banner-image img {
    height: 400px;
    width: auto;
  }
  .banner {
    padding: 100px 0 50px;
  }
  .courses .bottom-text .content {
    padding: 15px;
    display: block;
  }
  .courses .bottom-text .content strong {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .courses .bottom-text .common-btn {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
  .about-block.style-two {
    margin-top: 30px;
  }
  .sidebar-search-form input[type=search] {
    padding-left: 30px;
  }
  .sidebar-comments {
    padding: 30px;
  }
  .sidebar-tags {
    padding: 30px;
  }
  .sidebar-category {
    padding: 30px 15px 30px;
  }
  .sidebar-post .sidebar-post-list li {
    padding: 16px 0;
  }
  .sidebar-post .sidebar-title {
    margin-left: 0;
  }
  .sidebar-post {
    padding: 30px;
  }
  .sidebar-search-form button[type=submit] {
    width: 42px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 38px;
    line-height: 46px;
  }
  h2 {
    font-size: 30px;
    line-height: 34px;
  } 
  h3 {
    font-size: 22px;
    line-height: 22px;
  } 
  h4 {
    font-size: 19px;
    line-height: 25px;
  } 
  h5 {
    font-size: 17px;
    line-height: 23px;
  } 
  h6 {
    font-size: 15px;
    line-height: 20px;
  } 
  p {
    font-size: 14px;
    line-height: 24px;
  }
  .banner {
    min-height: 400px;
    padding: 50px 0 50px;
  }
  .banner-image {
    right: -58px;
  }
  .banner h1 {
    font-size: 46px;
    line-height: 46px;
    max-width: 300px;
  }
  .banner h6 {
    font-size: 14px;
    line-height: 28px;
  }
  .call-to-action .title-column .inner-column {
    padding: 60px 0;
  }
}
@media (max-width: 500px) {
  .testimonial-block .content-box {
    padding: 55px 30px 30px;
  }
  .middle-content h2 {
    font-size: 31px;
  }
  .middle-content .content-column p {
    margin-top: 15px;
    margin-bottom: 30px;
  }
  .about-block.style-two {
    margin-top: 10px;
  }
  .news-block {
    margin: 20px 0;
  }
  .call-to-action .title-column .style-font {
    font-size: 30px;
  }
  .navbar-brand {
    padding: 14px 0;
  }
  .common-btn {
    padding: 15px 30px;
  }
  .about-text ul {
    display: block;
  }
  .about-text ul li {
    width: 100%;
  }
  .courses h2 {
    max-width: 100%;
    margin-bottom: 0;
  } 
  .course-slider .swiper-nav {
    display: none;
  }
  .about .experience {
    right: 10px;
  }
}
@media (max-width: 400px) {
  .banner h1 {
    font-size: 35px;
    line-height: 39px;
  }
  .banner-image img {
    height: 250px;
    width: auto;
  }
  .banner p {
    max-width: 222px;
  }
  .about .experience {
    right: 0;
  }
}