/* ===================================
          Table of Contents
   =================================== */

/*
01 body
02 Custom Classes
   02-1 short codes
   02-2 loader
03 navigation
04 owl & revolution
05 Page header
06 detail page
07 contact us
08 Footer
09 Media Queries

/*Table Of Contents ends */

/*Global Styling*/

/*IMPORT GOOGLE FONT */

@import url("https://fonts.googleapis.com/css?family=Oswald:300,400,600,700,800|Roboto:400,500,700|Raleway:400&display=swap");

html {
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
/* ===================================
        Preloader
   ====================================== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #ffffff;
  z-index: 999;
  overflow: hidden;
}
.center {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.loader {
  position: relative;
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-gap: 2px;
  width: 100px;
  height: 100px;
}
.loader > div {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fe6e1f;
  transform: scale(0);
  transform-origin: center center;
  animation: loader 2s infinite linear;
}
.loader > div:nth-of-type(1),
.loader > div:nth-of-type(5),
.loader > div:nth-of-type(9) {
  animation-delay: 0.4s;
}
.loader > div:nth-of-type(4),
.loader > div:nth-of-type(8) {
  animation-delay: 0.2s;
}
.loader > div:nth-of-type(2),
.loader > div:nth-of-type(6) {
  animation-delay: 0.6s;
}
.loader > div:nth-of-type(3) {
  animation-delay: 0.8s;
}

@keyframes loader {
  0% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

.inner-skill-wraper h1{
	font-size:28px;
}

/* ===================================
    menu-line
====================================== */
.menu-line {
  position: absolute;
  top: -20px;
  font-size: 18px;
  color: #ffffff;
  left: 0;
  display: block;
  text-align: center;
  width: 85px;
  height: 30px;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1);
  -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
  transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
}

.nav-icon .navbar-nav .nav-link:nth-child(1).active ~ .menu-line {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(2).active ~ .menu-line {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(3).active ~ .menu-line {
  -webkit-transform: translate3d(200%, 0, 0);
  transform: translate3d(200%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(4).active ~ .menu-line {
  -webkit-transform: translate3d(300%, 0, 0);
  transform: translate3d(300%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(5).active ~ .menu-line {
  -webkit-transform: translate3d(400%, 0, 0);
  transform: translate3d(400%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(6).active ~ .menu-line {
  -webkit-transform: translate3d(500%, 0, 0);
  transform: translate3d(500%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(7).active ~ .menu-line {
  -webkit-transform: translate3d(600%, 0, 0);
  transform: translate3d(600%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(1):hover ~ .menu-line {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(2):hover ~ .menu-line {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(3):hover ~ .menu-line {
  -webkit-transform: translate3d(200%, 0, 0);
  transform: translate3d(200%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(4):hover ~ .menu-line {
  -webkit-transform: translate3d(300%, 0, 0);
  transform: translate3d(300%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(5):hover ~ .menu-line {
  -webkit-transform: translate3d(400%, 0, 0);
  transform: translate3d(400%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(6):hover ~ .menu-line {
  -webkit-transform: translate3d(500%, 0, 0);
  transform: translate3d(500%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(7):hover ~ .menu-line {
  -webkit-transform: translate3d(600%, 0, 0);
  transform: translate3d(600%, 0, 0);
}
/* ===================================
    Cursor
====================================== */

/* .magic{
    display: none !important;
}
.aimated-cursor {
    position: absolute;
    left: 0;
    display: none;
    top: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 10000;
    -webkit-transition: opacity 0.2s ease-in-out 0.5s;
    -o-transition: opacity 0.2s ease-in-out 0.5s;
    transition: opacity 0.2s ease-in-out 0.5s;
}

.cursor-light:hover ~ .aimated-cursor{
    display: inline-block;
    z-index: 9999999;
}
.cursor {
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 50%;
    pointer-events: none;
    opacity: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 999999999;
} */

section {
  padding: 3rem 0;
}

/* banner section */
.banner-section {
  padding-top: 230px;
  background-image: url("../img/home/hadder.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 2000px rgb(0 0 0 / 50%);
}
.banner-section-about {
  padding-top: 230px;
  background-image: url("../img/about/hadder.png");
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 2000px rgb(0 0 0 / 50%);
}
.banner-section-assignment {
  padding-top: 230px;
  background-image: url("../img/assignment/hadder.png");
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 2000px rgb(0 0 0 / 50%);
}
.banner-section-dissertation {
  padding-top: 230px;
  background-image: url("../img/dissertation/hadder.png");
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 2000px rgb(0 0 0 / 50%);
}
.banner-section-essay {
  padding-top: 230px;
  background-image: url("../img/essay/hadder.png");
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 2000px rgb(0 0 0 / 50%);
}
.banner-section-contact {
  padding-top: 230px;
  background-image: url("../img/contact/hadder.png");
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 2000px rgb(0 0 0 / 50%);
}
.banner-card {
  border-radius: 0.75rem;
  border-color: #fe6e1f;
}
.card-body input {
  border-color: #fe6e1f;
}
.card-body input:focus {
  border-color: #fe6e1f !important;
}

.offset-md-1 h1 {
  padding-bottom: 35px;
}

/* Contact Page */
.contact-card {
  border-radius: 0.75rem;
  box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.2);
  /* border-color: #fe6e1f; */
}
.form-body input {
  border-color: #fe6e1f;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}
.form-body textarea {
  border-color: #fe6e1f;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}
.form-body input:focus {
  border-color: #fe6e1f !important;
}
.form-body textarea:focus {
  border-color: #fe6e1f !important;
}

/* .offset-md-1 h1 {
    padding-bottom: 35px;
} */
.contact-form {
  background-image: url("../img/c3.jpg");
}
.address i {
  font-size: 30px;
}

/*slider social*/

.slider-social {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
}
.side-nav-menu .slider-social {
  right: auto;
}
.slider-social li {
  list-style: none;
}

.slider-social a {
  text-decoration: none;
  width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 30px;
  border-radius: 50px;
  font-size: 16px;
  margin: 2px;
  border: 1px solid transparent;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

/* ===================================
   Scroll Top
====================================== */

.scroll-top-arrow,
.scroll-top-arrow:focus {
  font-size: 23px;
  line-height: 47px;
  color: #fff;
  background-color: #fe6e1f;
  display: none;
  height: 45px;
  width: 45px;
  cursor: pointer;
  padding: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: center;
  text-decoration: none;
  z-index: 80;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.scroll-top-arrow:hover {
  background-color: #3d3d3d;
}

/* ===================================
      Custom css
  ==================================== */
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
a {
  text-decoration: none;
}
.btn-primary {
  background-color: #fe6e1f;
  padding: 8px 35px;
  border-radius: 25px;
  color: #ffffff !important;
  transition: 0.5s ease;
  border-color: #fe6e1f;
  font-size: 25px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}
.btn-primary:hover {
  background-color: #3d3d3d;
  border-color: #3d3d3d;
}
.parallax-disable {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}
.color-green {
  color: #fe6e1f !important;
}
.bg-green {
  background-color: #fe6e1f !important;
}
.padding-top {
  padding-top: 120px;
}
.padding-bottom {
  padding-bottom: 120px;
}
.position-relative {
  position: relative;
}
.font-large {
  font-size: 50px !important;
}
/*.text{*/
/*    color: #202020;*/
/*    font-family: Roboto, sans-serif;*/
/*    font-size: 16px;*/
/*    font-weight: 300;*/
/*}*/

.sub-heading {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  color: #fe6e1f;
  margin-bottom: 15px;
}
.sub-heading span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #fe6e1f;
  margin-right: 8px;
  margin-bottom: 3px;
}
.heading {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  color: #3d3d3d;
  font-weight: 500;
  width: 95%;
  /*margin: auto;*/
  margin-bottom: 50px;
  text-transform: uppercase;
}
.text {
  font-family: Roboto, sans-serif;
  font-weight: lighter;
  font-size: 17px;
  color: #2b2727;
  margin-bottom: 18px;
}

.green-btn {
  border: solid 1px #fe6e1f;
  color: #ffffff;
  font-weight: 500;
  padding: 12px 35px;
  background-color: #fe6e1f;
  font-size: 14px;
  font-family: Roboto, sans-serif;
  border-radius: 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.8s ease;
  text-decoration: none;
}
.green-btn:hover {
  border: solid 1px #000;
  color: #ffffff;
  background-color: #000!important;
}
.green-btn span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #3d3d3d;
  transform: translateY(150%);
  border-radius: 50%;
  transition: 0.5s;
  z-index: -1;
}
.grey-btn {
  border: solid 1px #3d3d3d;
  color: #ffffff;
  font-weight: 500;
  padding: 12px 35px;
  background-color: #3d3d3d;
  font-size: 14px;
  font-family: Roboto, sans-serif;
  border-radius: 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.8s ease;
  text-decoration: none;
}
.grey-btn:hover {
  border: solid 1px #ffffff;
  color: #3d3d3d;
}
.grey-btn span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #ffffff;
  transform: translateY(150%);
  border-radius: 50%;
  transition: 0.5s;
  z-index: -1;
}
.white-btn {
  border: solid 1px #ffffff;
  color: #3d3d3d;
  font-weight: 500;
  padding: 10px 35px;
  background-color: #ffffff;
  font-size: 14px;
  font-family: Roboto, sans-serif;
  border-radius: 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.8s ease;
  text-decoration: none;
}
.white-btn:hover {
  border: solid 1px #3d3d3d;
  color: #ffffff !important;
}
.white-btn span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #3d3d3d;
  transform: translateY(150%);
  border-radius: 50%;
  transition: 0.5s;
  z-index: -1;
}
.green-trans-btn {
  border: solid 1px #3d3d3d;
  color: #3d3d3d;
  font-weight: 700;
  padding: 10px 35px;
  background-color: transparent;
  font-size: 14px;
  font-family: Roboto, sans-serif;
  border-radius: 0.5em;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.8s ease;
  text-decoration: none;
}
.pricing-sec .pricing-card.active:nth-child(2) .green-trans-btn,
.pricing-sec .pricing-card:hover .green-trans-btn {
  border: solid 1px #fe6e1f;
  color: #fe6e1f;
}
.green-trans-btn:hover {
  border: solid 1px #ffffff !important;
  color: #ffffff !important;
}
.green-trans-btn span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #fe6e1f;
  transform: translateY(150%);
  border-radius: 50%;
  transition: 0.5s;
  z-index: -1;
}
.green-btn:hover span,
.grey-btn:hover span,
.green-trans-btn:hover span,
.white-btn:hover span {
  transform: translateY(0) scale(3.1);
}
.green-btn span:nth-child(1),
.grey-btn span:nth-child(1),
.green-trans-btn span:nth-child(1),
.white-btn span:nth-child(1) {
  left: calc((1 - 1) * 25%);
  transition-delay: calc((1 - 1) * 0.1s);
}
.green-btn span:nth-child(2),
.grey-btn span:nth-child(2),
.green-trans-btn span:nth-child(2),
.white-btn span:nth-child(2) {
  left: calc((2 - 1) * 25%);
  transition-delay: calc((2 - 1) * 0.1s);
}
.green-btn span:nth-child(3),
.grey-btn span:nth-child(3),
.green-trans-btn span:nth-child(3),
.white-btn span:nth-child(3) {
  left: calc((3 - 1) * 25%);
  transition-delay: calc((3 - 1) * 0.1s);
}

.green-btn span:nth-child(4),
.grey-btn span:nth-child(4),
.green-trans-btn span:nth-child(4),
.white-btn span:nth-child(4) {
  left: calc((4 - 1) * 25%);
  transition-delay: calc((4 - 1) * 0.1s);
}
.green-btn span:nth-child(5),
.grey-btn span:nth-child(5),
.green-trans-btn span:nth-child(5),
.white-btn span:nth-child(5) {
  left: calc((5 - 1) * 25%);
  transition-delay: calc((5 - 1) * 0.1s);
}
/* ===================================
        Header
   ====================================== */
header {
  /*! position: absolute; */
  left: 0;
  right: 0;
  top: 0;
  z-index: 111;
}
/*main navigation*/

header .navbar-brand img {
  max-width: 200px;
}
.header-appear .navbar-brand img {
  max-width: 65%;
}
header .navbar-brand .logo-simple {
  display: block;
}
header .navbar-brand .logo-fixed {
  display: none;
}
header .main-navigation {
  padding-top: 10px;
  padding-bottom: 10px;
}
header .main-navigation .navbar {
  padding: 0;
}
header .main-navigation nav .navbar-nav .nav-link {
  display: inline-block;
  /*margin-right: 25px;*/
  min-width: 110px;
  text-align: center;
}
header .main-navigation nav .navbar-nav .nav-link {
  padding-top: 0;
  padding-bottom: 0;
  color: #000;
  font-family: Oswald, sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.5s ease;
}
header .main-navigation nav .navbar-nav .nav-link:hover,
header .main-navigation nav .navbar-nav .nav-link.active {
  color: #fe6e1f;
}

/* ===================================
         header appear css
====================================== */
.header-appear {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1111;
  background-color: #fff;
  /*background:linear-gradient(30deg, rgba(53, 13, 130, 0.9) 0%, rgba(128, 33, 181, 0.9) 100%);*/
  -webkit-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.header-appear .navbar-brand .logo-simple {
  display: none;
}
.header-appear .navbar-brand .logo-fixed {
  display: block;
}
.header-appear .main-navigation {
  padding-top: 10px;
  padding-bottom: 10px;
}
.header-appear .main-navigation nav .navbar-nav .nav-link .nav-link {
  /*color: #202020;*/
}
.header-appear .main-navigation .simple-navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-appear .fixed-nav-links {
  display: block;
}
.header-appear .fixed-nav-links {
  display: inline-block;
  transform: translateY(-5px);
  margin-left: 25px;
}
.header-appear .sidemenu_btn {
  top: 45px;
}
.header-appear .sidemenu_btn span {
  /*background-color: #202020;*/
}
@-webkit-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* ===================================
    Side Menu
====================================== */
.side-menu .bg-overlay {
  background: rgba(10, 10, 10, 0.5);
}
.side-menu {
  width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  /*background: rgba(247, 28, 82, 0.6);*/
  background-image: url("../img/about/hadder.png");
  background-size: cover;
  background-position: center;
  z-index: 2032;
  height: 100%;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: -o-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  overflow: hidden;
}
.side-menu.left {
  left: 0;
  right: auto;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.side-menu-opacity {
  opacity: 0;
}
.side-menu.before-side {
  width: 280px;
}
.side-menu.side-menu-active,
.side-menu.before-side {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.pul-menu .side-menu.side-menu-active {
  visibility: visible;
  opacity: 1;
}
.side-menu .navbar-brand {
  margin: 0 0 2.5rem 0;
}

/*Side overlay*/
#close_side_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #202020;
  -webkit-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  display: none;
  z-index: 1031;
  opacity: 0.4;
}

/*side clode btn*/
.side-menu .btn-close {
  height: 33px;
  width: 33px;
  background: none;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 42px;
  left: 40px;
  cursor: pointer;
}
/*.header-appear ~ .side-menu .btn-close {*/
/*    top:50px;*/
/*}*/
.side-menu.before-side .btn-close {
  display: none;
}
.side-menu .btn-close::before,
.side-menu .btn-close::after {
  position: absolute;
  left: 16px;
  content: " ";
  height: 24px;
  width: 2px;
  background: #fff;
  top: 5px;
}
.side-menu .btn-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.side-menu .btn-close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*side open btn*/

.sidemenu_btn {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 36px;
  padding: 6px;
  margin-right: 1rem;
  margin-top: 0.4rem;
  position: absolute;
  left: 40px;
  top: 50px;
  display: inline-block;
}
.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background: #000;
  display: block;
  margin: auto;
  transition: 0.5s ease;
}
.sidemenu_btn:hover span {
  /*background: #fa2851;*/
}
.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  width: 70%;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}

.side-menu .inner-wrapper {
  padding: 3.5rem 5rem;
  height: 100%;
  position: relative;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pul-menu.pushwrap .side-menu .inner-wrapper {
  padding: 3.5rem 2.5rem;
}
.side-menu .side-nav {
  margin-bottom: 30px;
  display: block;
}
.side-nav .navbar-nav .nav-link {
  display: block;
  margin: 3px 0;
  padding: 0 !important;
  opacity: 0;
  -webkit-transition: all 0.8s ease 500ms;
  -o-transition: all 0.8s ease 500ms;
  transition: all 0.8s ease 500ms;

  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
}
.side-nav .navbar-nav .nav-link:first-child {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.side-nav .navbar-nav .nav-link:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.side-nav .navbar-nav .nav-link:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.side-nav .navbar-nav .nav-link:nth-child(4) {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.side-nav .navbar-nav .nav-link:nth-child(5) {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.side-nav .navbar-nav .nav-link:nth-child(6) {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.side-nav .navbar-nav .nav-link:nth-child(7) {
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.side-nav .navbar-nav .nav-link:nth-child(8) {
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.side-nav .navbar-nav .nav-link:nth-child(9) {
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.side-menu.side-menu-active .side-nav .navbar-nav .nav-link {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #fff;
  padding: 2px 0 3px 0 !important;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  position: relative;
  border-radius: 0;
  font-family: Oswald, sans-serif;
}
.side-nav .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  background: #fff;
  display: inline-block;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
  -o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
  width: 100%;
}
.side-nav .navbar-nav .nav-link.active {
  background: transparent;
}
.side-menu-inner-content {
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  padding-bottom: 30px;
}
.side-menu p {
  margin-bottom: 0;
}
.menu-company-details {
  margin-bottom: 25px;
  margin-top: -15px;
}
.menu-company-details a {
  display: block;
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  margin-bottom: 5px;
}
.menu-company-details a:hover {
  opacity: 0.7;
}
.social-icons-simple {
  margin-bottom: 0;
  margin-left: -10px;
}

.social-icons-simple li {
  display: inline-block;
  padding-left: 8px;
}
.social-icons-simple li:first-child {
  padding-left: 0;
}
.social-icons-simple li a {
  display: block;
  font-size: 16px;
  height: 40px;
  line-height: 42px;
  border: 1px solid transparent;
  text-align: center;
  width: 40px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  color: #ffffff;
}
.social-icons-simple li a:hover {
  background-color: #ffffff;
}

.social-icons-simple li.animated-wrap a:hover {
  background-color: transparent;
  /*color: #ffffff;*/
}
@-webkit-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* ===================================
    Slider sec css
====================================== */
.slider-area .slider-overlay {
  background-color: rgba(61, 61, 61, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  z-index: 11;
  align-items: center;
}
.slider-area .item {
  height: 100vh;
  background-size: cover;
}
.slider-area .item img {
  height: 100%;
  width: 100%;
}

.slider-area .banner-social li {
  list-style: none;
  margin-bottom: 8px;
}
.slider-area .banner-social li a i {
  font-size: 18px;
  color: #ffffff;
}
.slider-area .slider-content {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
.slider-area .slider-content .heading {
  color: #ffffff;
  font-size: 53px;
  font-weight: 700;
  /*margin: auto;*/
}
.slider-area .slider-content .text {
  color: #ffffff;
}

/*slider form*/
.slider-form {
  position: absolute;
  z-index: 11;
  top: 75%;
  transform: translateY(50%);
  left: 0;
  right: 0;
}
.slider-form .contact-form {
  background-color: #ffffff;
  padding: 15px 0;
}
.slider-form .contact-form .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.slider-form .contact-form label {
  margin-bottom: 0;
  color: #3d3d3d7d;
  position: relative;
  left: 13px;
  z-index: 11;
  font-size: 17px;
}
.slider-form .contact-form input {
  color: #8799a3;
  font-size: 16px;
  height: 50px;
  padding: 25px;
}
.slider-form .contact-form .form-control {
  border-radius: 0;
  border: solid 2px transparent;
  margin-bottom: 0;
  border-right: solid 2px #eceef2;
}
.slider-form .contact-form .form-control:last-child {
  border-right: none;
}
.slider-form .contact-form input::placeholder {
  color: #8799a3;
  font-size: 16px;
}
.slider-form .green-btn {
  padding: 15px 35px;
}
.form-control:focus {
  border-color: #80bdff00;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0);
}

.tabs {
  margin: 4rem auto;
  width: 100%;
  /* max-width: 1130px; */
}
.tabs .tabsBody {
  margin: 0;
  padding: 0;
  zoom: 1;
}
.tabs .tabsBody:after {
  clear: both;
  content: "";
  display: table;
}
.tabs .tabsBody li {
  margin: 0;
  display: inline;
}
.tabs .tabsBody li .tabHeader {
  border: none;
  background: none;
  border-bottom: 4px solid #f2f2f2;
  transition: 0.5s;
  font-size: 20px;
  margin: 0;
  padding: 20px 0.4em 10px;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  color: #000;
  width: 23%;
  white-space: nowrap;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  position: relative;
  transition: 0.3s;
}
.tabs .tabsBody li .tabHeader::before {
  content: "";
  background: #020063;
  display: block;
  position: absolute;
  height: 4px;
  right: 0;
  bottom: -4px;
  left: 0;
  z-index: 1;
  transition: transform 0.5s;
  transform: scale(0, 1);
  transform-origin: bottom right;
}
.tabs .tabsBody li .tabHeader:hover::before,
.tabs .tabsBody li .tabHeader:focus::before,
.tabs .tabsBody li .tabHeader.active::before {
  transform: scale(1, 1);
  transform-origin: bottom left;
}
.tabs .tabsBody li .tabHeader.active ~ .tabContent > div .tab-text {
  animation-name: comeUp;
  animation-duration: 0.6s;
  opacity: 1;
}
.tabs .tabsBody li .tabContent {
  display: none;
  padding: 2rem;
  /* background: #fff; */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  margin-top: 0.7rem;
  float: left;
}
@media screen and (max-width: 1000px) {
  .tabs .tabsBody li .tabContent {
    margin-top: 0;
    padding: 0;
  }
  .tabs .tabsBody li .tabContent .button {
    display: flex;
  }
}
.tabs .tabsBody li .tabContent > * {
  display: flex;
}
@media screen and (max-width: 1000px) {
  .tabs .tabsBody li .tabContent > * {
    flex-direction: column;
    flex-flow: column-reverse;
  }
}
.tabs .tabsBody li .tabContent > * .tab-text {
  padding: 1rem;
  width: 50%;
}
.tabs .tabsBody li .tabContent > * .tab-text h4 {
  font-family: "AvantGardeforMTBb", sans-serif;
}
.tabs .tabsBody li .tabContent > * .tab-text p {
  margin-bottom: 2rem;
}
@media screen and (max-width: 1000px) {
  .tabs .tabsBody li .tabContent > * .tab-text {
    width: 100%;
    padding: 1rem 1rem 2rem;
  }
}
.tabs .tabsBody li .tabContent > * .img-wrap {
  transform: translatex(4rem);
}
@media screen and (max-width: 1000px) {
  .tabs .tabsBody li .tabContent > * .img-wrap {
    transform: translatex(0);
  }
}
.tabs .tabsBody li .tabContent > * img {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .tabs .tabHeader {
    box-sizing: border-box;
  }
  .tabs .tabHeader span {
    display: block;
    background: currentcolor;
    height: 18px;
    width: 3px;
    position: relative;
    right: 0.5rem;
    transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .tabs .tabHeader span:after {
    content: "";
    background: currentcolor;
    height: 3px;
    width: 18px;
    top: 8px;
    left: -8px;
    position: absolute;
  }
  .tabs .tabHeader.active span {
    transform: rotate(225deg);
  }
  .tabs .tabsBody li {
    display: block;
    margin: 0;
    width: auto;
  }
  .tabs .tabsBody li .tabContent {
    float: none;
  }
  .tabs .tabsBody li .tabHeader {
    width: 100%;
  }
}
.tabs .no-js .tabsBody li {
  display: block;
}
.tabs .no-js .tabsBody li .tabHeader {
  display: block;
}
.tabs .no-js .tabsBody li .tabContent {
  display: block;
}
@keyframes comeUp {
  0% {
    opacity: 0;
    transform: scale(0.8) translatey(-30px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/* body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    width: 100%;
    height: 100vh;
  }
  
  button {
    font-family: "Poppins", sans-serif;
    font-size: 1.17em;
  }
  
  h4 {
    font-size: 2rem;
    color: #222;
    margin: 1rem 0;
  } */

.divider {
  display: block;
  margin: 3rem 0;
  height: 8rem;
  background: #e1e1e1;
}

/* .button {
    position: relative;
    color: #fff;
    background: #72a32d;
    padding: 0.8rem 2.4rem;
    text-decoration: none;
    font-family: "AvantGardeforMTBb", sans-serif;
    white-space: nowrap;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #72a32d;
    font-size: 18px;
    font-weight: 600;
  }
  .button:hover {
    background: #4e7616;
    color: #fff;
    text-decoration: none;
  }
  .button::after {
    position: absolute;
    content: "";
    opacity: 0;
    width: 10px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    transform: rotate(-45deg);
    transition: all 300ms ease 0ms;
    right: 1.8rem;
  }
  .button:hover::after {
    opacity: 1;
    right: 1.3rem;
  } */
/* ===================================
    Services section css
====================================== */

.services-sec .services-details .heading {
  margin-left: auto;
  margin-right: auto;
}
.services-sec .services-details .sub-heading {
  margin-bottom: 50px;
}
.services-sec .services-details .sub-heading span {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.services-sec .our-services {
  padding-top: 70px;
  overflow: hidden;
  padding-bottom: 10px;
}
.services-sec .our-services .service-card {
  padding-top: 30px;
  padding-bottom: 30px;
  transition: 0.8s ease;
}

.services-sec .our-services .service-card .image-holder {
  margin-bottom: 30px;
}
.services-sec .our-services .service-card .image-holder i {
  font-size: 50px;
  font-weight: 300;
  transition: 0.8s ease;
}
.services-sec .our-services .service-card .service-card-heading {
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
  transition: 0.8s ease;
}
.services-sec .our-services .service-card .service-card-detail {
  font-family: Roboto, sans-serif;
  font-weight: lighter;
  line-height: 30px;
  font-size: 18px;
  color: #3d3d3d;
  padding: 30px 20px 30px 20px;
}

.services-sec .our-services a {
  text-decoration: none;
  color: #3d3d3d;
}
.services-sec .our-services .service-card:hover {
  border-radius: 20px;
  box-shadow: 0 0 15px #e1e1e1;
  cursor: pointer;
}
.services-sec .our-services .service-card:hover .service-card-heading {
  color: #fe6e1f;
}
.services-sec .our-services .service-card:hover .image-holder {
  animation: 0.8s rotateIn;
}

/*========================================
Counters Sec
========================================*/
/* .bg-dark {
  background-color: #020063 !important;
} */
.serial-box {
  text-align: center;
  color: #ffffff;
  font-size: 42px;
}
.serial-box p {
  color: #ffffff;
  font-size: 16px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
}
.serial-box span {
  font-size: 42px;
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding-bottom: 20px;
}
.padding-50 {
  padding: 50px 0 50px 0;
}

/************* sec5 start *****************/
.h_m_sec5 {
  position: relative;
  padding: 50px 0;
  background: transparent no-repeat;
  background-size: cover;
  background-position: center;
}
.h_m_sec5 h2 {
  margin-bottom: 30px;
  font-weight: 700;
  color: #2d3a51;
}
.h_m_sec5 .listing ul {
  text-align: center;
}
.h_m_sec5 .listing ul li {
  position: relative;
  font-size: 14px;
  color: #42526e;
  text-transform: capitalize;
  border: 1px solid #cbd6e2;
  display: inline-block;
  padding: 11px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease-out;
}
.h_m_sec5 .listing ul li + li {
  margin-left: 9px;
}
.h_m_sec5 .listing ul li:hover {
  color: #020063;
  border: 1px solid #020063;
  transform: scale(1.04);
}
.h_m_sec5 .slick-prev::before {
  content: "\f104";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  left: 0;
  color: #000000;
  top: -25px;
  bottom: 0;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 900;
}
.h_m_sec5 .slick-next::before {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  right: 0;
  color: #000000;
  top: -25px;
  bottom: 0;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 900;
}

/************* sec5 end *****************/

/* ===================================
    Skill sec strat
====================================== */
.skill-sec {
  overflow: hidden;
}

.skill-sec .row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.skill-sec .skill-banner {
  padding-right: 0 !important;
}
.skill-sec .skill-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skill-sec .skill-detail .inner-skill-wraper {
  width: 90%;
}
.skill-sec .skill-detail .heading {
  width: 100%;
}
.skill-sec .skill-detail .skill-bars {
  margin-bottom: 35px;
}
.skill-sec .skill-detail .skill-bars .progress-item .progress-bar {
  background: linear-gradient(
    30deg,
    #3d3d3d 30%,
    rgba(18, 185, 117, 0.55) 70%,
    rgba(18, 185, 117, 0.87) 100%
  ) !important;
  position: relative;
}
.progress-item .progress-bar span {
  display: block;
  position: absolute;
  top: -25px;
  font-size: 13px;
  line-height: 10px;
  padding: 2px 3px 2px 4px;
  right: -1.4em;
  border-radius: 2px;
  color: #3d3d3d;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
}

.skill-sec .skill-detail .skill-bars .progress-item .progress {
  height: 11px !important;
  overflow: visible;
}
.skill-sec .skill-detail .skill-bars .progress-item h6 {
  font-family: "Roboto", sans-serif;
  font-weight: lighter;
  font-size: 15px;
  color: #3d3d3d;
  margin-bottom: 15px;
}
.skill-sec .skill-detail .skill-bars .progress-item {
  margin-bottom: 20px;
}
.skill-sec .hover-effect {
  width: 100%;
  height: 100%;
}
.skill-sec .hover-effect::before,
.skill-sec .hover-effect::after {
  content: "";
  background: #fff;
  height: 0;
  width: 0;
  z-index: 1;
  position: absolute;
  -webkit-transition-duration: 1.3s;
  -o-transition-duration: 1.3s;
  transition-duration: 1.3s;
  /*border-radius: 10%;*/
}
.skill-sec .hover-effect::before {
  right: 0;
  opacity: 1;
  top: 0;
}
.skill-sec .hover-effect::after {
  bottom: 0;
  opacity: 0.7;
  left: 0;
}
.skill-sec .hover-effect:hover::after,
.skill-sec .hover-effect:hover::before {
  height: 100%;
  opacity: 0;
  width: 100%;
}
.skill-sec .skill-detail .green-btn {
  margin-top: 20px;
  margin-bottom: 20px;
}
.hover-effect img{
  border-radius: 20px;
}
.bg-dark {
  background-color: #212529 !important;
  border-radius: 20px!important;
}
.bg-new{
  background-color: #ebebd9;
  padding: 20px;
  border-radius: 20px!important;
}

/* ===================================
    Cube Portfolio
====================================== */
#portfolio .heading {
  width: 90%;
}

.cube-portfolio1 .cbp-l-filters-button .cbp-filter-item {
  background: transparent;
  border: none;
  margin: 10px 4px 6px 4px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: #3d3d3d;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.cube-portfolio1 .cbp-l-filters-button .cbp-filter-item.cbp-filter-item-active {
  color: #fe6e1f;
}

.cube-portfolio1 .cbp-l-filters-button .cbp-filter-item:hover {
  color: #fe6e1f;
}

.cube-portfolio1 .cbp-l-grid-mosaic-flat .cbp-caption-activeWrap {
  color: #fe6e1f;
}

.cube-portfolio1 .cbp-caption-zoom .cbp-caption:hover .cbp-caption-activeWrap {
  opacity: 0.8;
}

.cbp-l-caption-alignCenter {
  position: absolute;
  top: 0;
  z-index: 4;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cube-portfolio1
  .cbp-caption-zoom
  .cbp-caption:hover
  .cbp-l-caption-alignCenter {
  opacity: 1;
}

.cbp-l-caption-body p {
  font-size: 12px;
}

.cbp-l-caption-body h5 {
  font-weight: 400;
}

.plus {
  display: block;
  margin: 0 auto;
  height: 70px;
  width: 70px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.plus::before {
  width: 2px;
  margin-left: -1px;
  left: 50%;
  top: 5px;
  bottom: 5px;
}
.plus::after {
  height: 2px;
  margin-top: -1px;
  top: 50%;
  left: 5px;
  right: 5px;
}

.plus::before,
.plus::after {
  content: " ";
  position: absolute;
  background: #fff;
}

/*-------------------------------*/
/* Gallery Portfolio */
/*-------------------------------*/

.portfolio_top {
  position: relative;
  overflow: hidden;
}
#portfolio_top::before,
#portfolio_top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  height: 90px;
  width: 100%;
}
#portfolio_top::before {
  top: 0;
}
#portfolio_top::after {
  bottom: 0;
}
.text_wrap {
  padding: 50px 2rem 0.5rem 2rem;
}
.itemshadow .cbp-item-wrapper {
  -webkit-box-shadow: 0 0 4px 1px rgba(101, 101, 101, 0.2);
  box-shadow: 0 0 4px 1px rgba(101, 101, 101, 0.2);
  padding-bottom: 2px;
  padding-top: 5px;
}
.border-portfolio .cbp-item img {
  border: 20px solid #fff;
}
.bottom-text {
  display: table;
}
.bottom-text > .cells {
  display: table-cell;
  vertical-align: middle;
  padding: 15px;
}
.bottom-text p {
  font-size: 15px;
  margin-bottom: 0;
}
.bottom-text .port_head {
  font-weight: 600;
  font-size: 5.625rem;
  line-height: 1;
}

/*Overlays*/

.overlay-two {
  position: absolute;
  left: 20px;
  top: 25px;
  right: 20px;
  bottom: 22px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  -webkit-transition: all 0.5s ease-in 0.1s;
  -o-transition: all 0.5s ease-in 0.1s;
  transition: all 0.5s ease-in 0.1s;
}
.overlay-two:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fe6e1f;
  opacity: 0.7;
}

.cbp-item:hover .overlay-two,
.cbp-item:focus .overlay-two {
  opacity: 1;
  visibility: visible;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.cbp-item:hover .overlay-two {
  opacity: 1;
  visibility: visible;
}
.plus {
  display: inline-block;
  height: 70px;
  width: 70px;
  position: relative;
  overflow: hidden;
}
.overlay-two > h4,
.overlay-two > p {
  position: relative;
  color: #ffffff;
}

.plus::before,
.plus::after {
  content: " ";
  position: absolute;
  background: #fff;
}
.plus::after {
  height: 2px;
  margin-top: -1px;
  top: 50%;
  left: 5px;
  right: 5px;
}
.plus::before {
  width: 2px;
  margin-left: -1px;
  left: 50%;
  top: 5px;
  bottom: 5px;
}
.plus p {
  font-size: 13px;
}

.bottom-text > .cells {
  display: table-cell;
  vertical-align: middle;
  padding: 15px;
}

/* ===================================
    Qoute sec
====================================== */

.qoute-sec .qoute {
  font-size: 28px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #3d3d3d;
  line-height: 1.4;
  width: 64%;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
.qoute-sec .qoute span {
  color: #fe6e1f;
}
.qoute-sec .writer {
  color: #fe6e1f;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  /*text-transform: uppercase;*/
}
.qoute-sec i.fa-quote-left {
  position: absolute;
  font-size: 25px;
  top: -27px;
  left: 15%;
}
.qoute-sec i.fa-quote-right {
  position: absolute;
  font-size: 25px;
  right: 22%;
  bottom: 10%;
}

/*===================================
    Project section css
====================================== */
.project-sec .project-detail-area {
  display: flex;
  align-items: center;
}
.project-sec .project-img-area .project-img-slide {
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: -15px;
}
.project-sec .project-detail-area .project-detail-slide .inner-content {
  width: 65%;
  transform: translateX(40%);
}
.project-sec
  .project-detail-area
  .project-detail-slide
  .inner-content
  .sub-heading {
  color: #ffffff;
}
.project-sec
  .project-detail-area
  .project-detail-slide
  .inner-content
  .sub-heading
  span {
  background-color: #ffffff;
}
.project-sec
  .project-detail-area
  .project-detail-slide
  .inner-content
  .heading {
  color: #ffffff;
}
.project-sec .project-detail-area .project-detail-slide .inner-content .text {
  color: #ffffff;
  opacity: 0.8;
}
.project-sec .project-links {
  position: absolute;
  bottom: 5%;
  left: 11.5%;
  z-index: 1111;
  cursor: pointer;
  transform: translateX(40%);
}
.project-sec .project-links a i {
  color: white;
  font-size: 22px;
  transition: 0.8s ease;
}
.project-sec .project-links a:hover i {
  color: #3d3d3d;
}

/* ===================================
   Pricing sec css
====================================== */

.pricing-sec {
  padding-top: 100px;
  padding-bottom: 100px;
}
.pricing-sec .pricing-details {
  margin-bottom: 50px;
}
.pricing-sec .pricing-details .heading {
  width: 65%;
  margin: 50px auto;
}
.pricing-sec .pricing-details .sub-heading span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fe6e1f;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
/*.pricing-sec .pricing-details .pricing-heading{*/
/*    font-size:30px;*/
/*    font-family: 'Oswald', sans-serif;*/
/*    color: #3d3d3d;*/
/*    font-weight: 500;*/
/*    margin-bottom: 40px;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*    width: 50%;*/
/*    text-transform: uppercase;*/
/*}*/
/*.pricing-sec .pricing-details .pricing-text{*/
/*    font-family: "Roboto", sans-serif;*/
/*    font-weight: lighter;*/
/*    font-size: 15px;*/
/*    color: #3d3d3d;*/
/*    margin-bottom: 33px;*/
/*}*/

.pricing-sec .pricing-cards {
  overflow: hidden;
}
.pricing-sec .pricing-card {
  padding-top: 60px;
  padding-bottom: 100px;
  padding-left: 18.5px;
  padding-right: 18.5px;
  transition: 0.5s ease;
}
.pricing-sec .pricing-card .pricing-card-heading {
  font-size: 24px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #3d3d3d;
  transition: 0.5s ease;
  text-transform: uppercase;
}
.pricing-sec .pricing-card .pricing-card-text {
  font-size: 14px;
  color: #3d3d3d;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  transition: 0.5s ease;
  width: 85%;
  margin: auto;
  margin-bottom: 25px;
}
.pricing-sec .pricing-card .pricing-amount {
  font-size: 60px;
  color: #3d3d3d;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  position: relative;
  margin-bottom: 25px;
  transition: 0.5s ease;
  display: inline-block;
}
.pricing-sec .pricing-card .pricing-amount span {
  font-size: 15px;
  color: #3d3d3d;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  margin-left: 5px;
  transition: 0.5s ease;
}
.pricing-sec .pricing-card .pricing-amount i {
  font-size: 15px;
  color: #3d3d3d;
  font-weight: bolder;
  position: absolute;
  left: -18px;
  top: 22%;
  transition: 0.5s ease;
}
.pricing-sec .pricing-card .pricing-features {
  padding-right: 0;
  text-align: center;
  margin-bottom: 30px;
  transition: 0.5s ease;
}
.pricing-sec .pricing-card .pricing-features li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #3d3d3d;
  text-decoration: none;
}

.pricing-sec .pricing-card.active:nth-child(2) {
  box-shadow: 1px 1px 15px #e1e1e1;
  border-radius: 10px;
}
.pricing-sec .pricing-card.active:nth-child(2) .pricing-card-heading {
  color: #fe6e1f;
}
.pricing-sec .pricing-card.active:nth-child(2) .pricing-amount {
  color: #fe6e1f;
}
.pricing-sec .pricing-card.active:nth-child(2) .pricing-amount span {
  color: #fe6e1f;
}
.pricing-sec .pricing-card.active:nth-child(2) .pricing-amount i {
  color: #fe6e1f;
}
.pricing-sec .pricing-card.active:nth-child(2) .pricing-btn {
  background-color: #fe6e1f;
  border: solid 1px #fe6e1f;
  color: white;
}
.pricing-sec .pricing-card.active:nth-child(2) .pricing-btn:hover {
  background-color: transparent;
  color: #fe6e1f;
}

.pricing-sec .pricing-card:hover {
  box-shadow: 1px 1px 15px #e1e1e1;
  border-radius: 10px;
  cursor: pointer;
}
.pricing-sec .pricing-card:hover .pricing-card-heading {
  color: #fe6e1f;
}
.pricing-sec .pricing-card:hover .pricing-amount {
  color: #fe6e1f;
}
.pricing-sec .pricing-card:hover .pricing-amount span {
  color: #fe6e1f;
}
.pricing-sec .pricing-card:hover .pricing-amount i {
  color: #fe6e1f;
}
.pricing-sec .pricing-card:hover .pricing-btn {
  background-color: #fe6e1f;
  border: solid 1px #fe6e1f;
  color: white;
}
.pricing-sec .pricing-card:hover .pricing-btn:hover {
  background-color: transparent;
  color: #fe6e1f;
}

/* ===================================
    client css
====================================== */
.client-sec {
  /*background: url("../../portfolio/img/clients-banner.jpg");*/
  background: url("../../digital-university/img/clients-banner.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
.parallax-dis {
  background-attachment: inherit !important;
}
.client-sec img {
  height: 100%;
  width: 100%;
}
.client-sec .client-container {
  position: relative;
  padding-top: 305px;
  padding-bottom: 305px;
}
.client-sec .client-sec-overlay {
  opacity: 0.9;
  background-color: #fe6e1f;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50%;
  z-index: 1;
}
.client-sec .client-container .client-img-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  /*height: 50%;*/
  /*z-index: 1;*/
}
.client-sec .client-container .client-img-overlay .client-symbol-qoute {
  padding-top: 30px;
  padding-bottom: 30px;
}
.client-sec .client-container .client-img-overlay .client-symbol-qoute i {
  color: white;
}
.client-sec .client-container .client-img-overlay .client-text {
  font-size: 16px;
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
.client-sec .client-container .client-img-holder {
  height: 160px;
  width: 160px;
  background-color: #e1e1e1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
}
.client-sec .client-container .client-detail {
  position: absolute;
  left: 50%;
  top: 75%;
  transform: translate(-50%, -50%);
}
.client-sec .client-container .client-detail .client-name {
  font-size: 20px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #fe6e1f;
}
.client-sec .client-container .client-detail .client-des {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 8px;
}
.client-sec .client-container .client-detail .client-s-media {
  padding-left: 0;
  top: 20px;
  left: calc(50% - 45%);
}
.client-sec .client-container .client-detail .client-s-media li {
  list-style: none;
  display: inline-block;
  margin-right: 5px;
}
.client-sec .client-container .client-detail .client-s-media li a {
  color: #3d3d3d;
  font-size: 16px;
}
.facebook-text-hvr:hover i.fa-facebook-f {
  color: #3b579d;
}
.twitter-text-hvr:hover i.fa-twitter {
  color: #2caae1;
}
.youtube-text-hvr:hover i.fa-youtube {
  color: #e13f28;
}
.linkedin-text-hvr:hover i.fa-linkedin-in {
  color: #007bb6;
}
.google-text-hvr:hover i.fa-google-plus-g {
  color: red;
}
.instagram-text-hvr:hover i.fa-instagram {
  background: #d6249f;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===================================
    contact us css
====================================== */

.contact-us-sec .contact-details {
  padding-top: 50px;
  padding-bottom: 50px;
}
.contact-us-sec .contact-details .contact-sub-heading {
  color: #fe6e1f;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}
.contact-us-sec .contact-details .contact-heading {
  color: #3d3d3d;
  font-size: 44px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}
.contact-us-sec .contact-details .contact-address {
  font-size: 14px;
  color: #3d3d3d;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
}
.contact-us-sec .contact-details .contact-list {
  padding-left: 0;
}
.contact-us-sec .contact-details .contact-list li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  list-style: none;
}
.contact-us-sec .contact-details .contact-list li:nth-child(even) {
  margin-bottom: 20px;
}
.contact-us-sec .contact-details .contact-list li:last-child {
  margin-bottom: 50px;
}
.contact-us-sec .contact-details .contact-s-media {
  padding-left: 0;
  margin-bottom: 0;
  right: auto;
  left: -15px;
}
.contact-us-sec .contact-details .contact-s-media li {
  list-style: none;
  display: inline-block;
}
.contact-us-sec .contact-details .contact-s-media li:last-child {
  margin-right: 0;
}
.contact-us-sec .contact-details .contact-s-media li a {
  color: #3d3d3d;
}
.contact-us-sec .contact-details .contact-s-media li a i {
  font-size: 18px;
  transition: 0.8s ease;
}
.contact-us-sec .contact-details .page-footer {
  left: calc(50% - 125px);
}
#map {
  height: 100%;
  width: 100%;
}
.slider-sec #map {
  height: 300px;
  width: 100%;
}
.contact-us-sec .contact-details .contact-s-media li a:hover i.fa-facebook-f {
  color: #3b579d;
}
.contact-us-sec .contact-details .contact-s-media li a:hover i.fa-twitter {
  color: #2caae1;
}
.contact-us-sec .contact-details .contact-s-media li a:hover i.fa-linkedin-in {
  color: #007bb6;
}
.contact-us-sec
  .contact-details
  .contact-s-media
  li
  a:hover
  i.fa-google-plus-g {
  color: red;
}
.contact-us-sec .contact-details .contact-s-media li a:hover i.fa-instagram {
  background: #d6249f;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* ===================================
   Footer
====================================== */

.footer-style-1 {
  padding: 5rem 0;
}

.footer-social ul {
  margin: 0;
  padding: 0;
}

.footer-social li {
  display: inline-block;
}

.footer-social a {
  display: block;
  color: #3d3d3d;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  border-radius: 50px;
  font-size: 17px;
  margin: 0 10px 0 0;
  border: 1px solid transparent;
  -webkit-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

.footer-social li:nth-last-child(1) a {
  margin-right: 0;
}

.footer-social li a:hover {
  background-color: #fe6e1f;
  color: #ffffff !important;
}
.ui-block-01.footer.footer .f-sec2 ul li a:hover {
  color: #fe6e1f;
  transition: background-color 0.2s ease-in-out;
}
.ui-block-01.footer a:hover {
  color: #fe6e1f;
  transition: background-color 0.2s ease-in-out;
}
.company-about {
  font-size: 14px;
  color: #3d3d3d;
}
.company-about a {
  color: #3d3d3d;
}
.company-about a:hover {
  color: #fe6e1f;
}

.banner-text-1 i {
  font-size: 25px;
  color: #fff !important;
}
.banner-text i {
  font-size: 25px;
  color: #fe6e1f !important;
}

/* ===================================
   Other Page
====================================== */
/* ===================================
     courses page css
====================================== */
.blog-content .main_content {
  /*display: inline-block;*/
}
.blog-content .main_content .c_blog {
  margin-top: 0;
  border-bottom: none;
}
.blog-content .main_content .c_blog:hover .single_img img {
  transform: scale(1.1);
}
.blog-content .main_content .course_block {
  padding: 20px;
  border: solid 1px #eee;
}
.blog-content .main_content .course_block:last-child {
  border-bottom: solid 1px #eee;
}
.blog-content .nav-style2 {
  display: block;
  margin-top: 80px;
  text-align: center;
}
.blog-content .nav-style2 nav {
  display: inline-block;
  margin-bottom: 0;
}
.blog-content .nav-style2 nav ul {
  margin-bottom: 0;
}
.blog-content nav ul li a {
  border-radius: 0;
  border: solid 1px #eee;
  font-size: 16px;
  margin-right: 0;
}
.blog-content nav ul li a.active {
  border-radius: 0;
}
.blog-content li:first-child a,
.blog-content li:last-child a {
  border: solid 1px #eee;
}

/* ===================================
     courses detail page css
====================================== */

.course-detail {
  font-family: "Roboto", sans-serif;
}
.course-detail .course-mini-detail {
  background-color: #fe6e1f;
}
.course-detail .course-mini-detail .mini-course-des {
  padding: 30px 15px;
}
.course-detail .course-mini-detail .course-detail-img img {
  width: 100%;
}
.course-detail .course-mini-detail .mini-course-des .course-heading {
  color: #fff;
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
  font-family: "Oswald", sans-serif;
}
.course-detail .course-mini-detail .mini-course-des ul {
  padding-left: 0;
  text-align: center;
  border-bottom: solid 1px #fff;
  padding-bottom: 20px;
  padding-top: 10px;
}
.course-detail .course-mini-detail .mini-course-des ul li {
  list-style: none;
  display: inline-block;
}
.course-detail .course-mini-detail .mini-course-des ul li:last-child {
  display: block;
}

.course-detail .course-mini-detail .mini-course-des ul li i {
  color: #ffffff;
  font-size: 14px;
}
.course-detail .course-mini-detail .mini-course-des .sub-heading {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  padding-left: 3px;
}
.course-detail .course-mini-detail .mini-course-des .instructor {
  margin-bottom: 10px;
}
.course-detail .course-mini-detail .mini-course-des .instructor .ins-img {
  height: 50px;
  width: 50px;
  display: inline-block;
  margin-right: 10px;
}

.course-detail .course-mini-detail .mini-course-des .instructor .ins-name {
  font-size: 14px;
  color: #fff;
  display: inline-block;
}

.course-detail .course-detail-box {
  font-family: "Roboto", sans-serif;
}
.course-detail .course-detail-box .sub-heading {
  color: #fe6e1f;
  font-weight: 500;
}
.course-detail .course-detail-box .main-heading-detail {
  color: #3d3d3d;
  margin-top: 10px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 40px;
}
.blue-color {
  color: #fe6e1f;
}
.course-detail .course-detail-box .text {
  color: #3d3d3d;
  /*opacity: .8;*/
}
.course-detail .course-accordion {
  margin-top: 40px;
}
.course-detail .course-accordion .card-header {
  background-color: transparent;
  padding-left: 0;
  border-bottom: none;
}
.course-detail .course-accordion .card-header h2 {
  font-size: 18px;
  color: #3d3d3d;
  /*text-align: left;*/
  opacity: 0.8;
  transition: 0.5s ease;
}
.course-detail .course-accordion .btn-link {
  text-decoration: none;
}
.course-detail .course-accordion .btn-link:hover {
  text-decoration: none;
}
.course-detail .course-accordion .btn-link:hover h2 {
  color: #fe6e1f;
}
.course-detail .course-accordion .card-body {
  border-top: solid 1px #eee;
}
/***********************************/
/********standalone page css********/
/***********************************/
.slider-sec {
  min-height: 500px;
  position: relative;
}
.slider-sec .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.slider-sec .overlay h4 {
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  font-size: 48px;
  color: #ffffff;
  margin-top: 40%;
  margin-bottom: 10px;
}
.crumbs {
  position: relative;
}
.crumbs .breadcrumb-items {
  display: inline-block;
}
.crumbs .breadcrumb {
  margin-bottom: 0;
  border-radius: 0;
  padding: 15px 50px;
  background-color: transparent;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff;
}
.crumbs .breadcrumb li a {
  color: #ffffff;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
}
.crumbs .breadcrumb li a:hover {
  color: #fe6e1f;
}
/*crumbs end*/

.standalone-row:not(:last-child) {
  margin-bottom: 3rem;
}
.standalone-row .stand-img-des {
  padding-left: 30px;
  text-align: center;
}
.standalone-row:nth-child(2) .stand-img-des {
  padding-left: 0;
  padding-right: 30px;
}
.standalone-detail .sub-heading {
  color: #fe6e1f;
  margin-bottom: 20px;
}
.standalone-area .sub-heading {
  color: #fe6e1f;
  margin-bottom: 8px;
}
.standalone-detail .heading {
  margin-bottom: 20px;
  font-size: 40px;
  color: #3d3d3d;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}

.standalone-detail .para_text {
  color: #3d3d3d;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 15px;
  margin: 0 auto;
  opacity: 0.8;
  line-height: 2.1;
}

.standalone-area {
  padding-bottom: 120px;
}
.standalone-detail {
  /*padding-top: 120px;*/
  padding-bottom: 100px;
}
.standalone-area .gradient-text1 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  margin-bottom: 12px;
}
.standalone-area .stand-img-des .para_text {
  font-family: "Roboto", sans-serif;
  color: #3d3d3d;
  font-weight: 300;
  opacity: 0.8;
}

/* Process Model */
.custom-container {
  position: relative;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-wrap: wrap; */
}
.custom-container .card {
  position: relative;
  width: 100%;
  height: 420px;
  background: #fff;
  margin: 15px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

.custom-container:hover .card {
  /* filter: blur(20px); */
  transform: scale(0.9);
  /* opacity: 0.5; */
}

.custom-container .card:hover {
  filter: blur(0px);
  transform: scale(1.1);
  opacity: 1;
}

.custom-container .card .circle {
  position: relative;
  width: 100%;
  height: 25%;
  background: #000;
  clip-path: circle(180px at center 0);
  text-align: center;
}

.custom-container .card .circle h2 {
  color: #fff;
  font-size: 2.1em;
  padding: 30px 0;
}

.custom-container .card .content {
  position: absolute;
  bottom: 10px;
  padding: 20px;
  page-break-after: 20px;
  text-align: center;
}

.custom-container .card .content p {
  color: #666;
}

.custom-container .card .content a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  margin-top: 20px;
}

.custom-container .card:nth-child(1) .circle,
.custom-container .card:nth-child(1) .content a {
  background: #ffaf00;
}

.custom-container .card:nth-child(2) .circle,
.custom-container .card:nth-child(2) .content a {
  background: #da2268;
}

.custom-container .card:nth-child(3) .circle,
.custom-container .card:nth-child(3) .content a {
  background: #bb02ff;
}

/* Testimonials */
.heading {
  text-align: center;
  color: #454343;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
.white-heading {
  color: #ffffff;
}
.heading:after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  height: 40px;
  width: 180px;
  border-radius: 4px;
  transform: translateX(-50%);
  /* background: url('/assets/img/home/testimonials.png'); */
  background-repeat: no-repeat;
  background-position: center;
}
.white-heading:after {
  background: url("/assets/img/home/testimonials.png");
  background-repeat: no-repeat;
  background-position: center;
}

.heading span {
  font-size: 18px;
  display: block;
  font-weight: 500;
}
.white-heading span {
  color: #ffffff;
}

/*-----Testimonial-------*/

/*.testimonial:after {
  position: absolute;
  top: -0 !important;
  left: 0;
  content: " ";
  background: url("/assets/img/home/testimonials.png");
  background-size: 100% 100px;
  width: 100%;
  height: 100px;
  float: left;
  z-index: 99;
}*/

.testimonial {
  min-height: 375px;
  position: relative;
  background: url("../img/home/testimonials-bgg.jpg");
  padding-top: 50px;
  padding-bottom: 50px;
  background-position: center;
  background-size: cover;
}
#testimonial4 .carousel-inner:hover {
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
#testimonial4 .carousel-inner:active {
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
#testimonial4 .carousel-inner .item {
  overflow: hidden;
}

.testimonial4_indicators .carousel-indicators {
  left: 0;
  margin: 0;
  width: 100%;
  font-size: 0;
  height: 20px;
  bottom: 15px;
  padding: 0 5px;
  cursor: e-resize;
  overflow-x: auto;
  overflow-y: hidden;
  position: absolute;
  text-align: center;
  white-space: nowrap;
}
.testimonial4_indicators .carousel-indicators li {
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  text-indent: 0;
  margin: 2px 3px;
  cursor: pointer;
  display: inline-block;
  background: #ffffff;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators .active {
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  margin: 2px 3px;
  background-color: #9dd3af;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar {
  height: 3px;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb {
  background: #eeeeee;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.testimonial4_control_button .carousel-control {
  top: 175px;
  opacity: 1;
  width: 40px;
  bottom: auto;
  height: 40px;
  font-size: 10px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  line-height: 38px;
  text-shadow: none;
  text-align: center;
  position: absolute;
  background: transparent;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
  transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
}
.testimonial4_control_button .carousel-control.left {
  left: 7%;
  top: 50%;
  right: auto;
}
.testimonial4_control_button .carousel-control.right {
  right: 7%;
  top: 50%;
  left: auto;
}
.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover {
  color: #000;
  background: #fff;
  border: 2px solid #fff;
}

.testimonial4_header {
  top: 0;
  left: 0;
  bottom: 0;
  width: 550px;
  display: block;
  margin: 30px auto;
  text-align: center;
  position: relative;
}
.testimonial4_header h4 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial4_slide {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  margin: auto;
  padding: 20px;
  position: relative;
  text-align: center;
}
.testimonial4_slide img {
  top: 0;
  left: 0;
  right: 0;
  width: 136px;
  height: 136px;
  margin: auto;
  display: block;
  color: #f2f2f2;
  font-size: 18px;
  line-height: 46px;
  text-align: center;
  position: relative;
  border-radius: 50%;
  box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}
.testimonial4_slide p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.4;
  margin: 40px 0 20px 0;
}
.testimonial4_slide h4 {
  color: #ffffff;
  font-size: 22px;
}

.testimonial .carousel {
  padding-bottom: 50px;
}
.testimonial .carousel-control-next-icon,
.testimonial .carousel-control-prev-icon {
  width: 35px;
  height: 35px;
}
/* ------testimonial  close-------*/

@media (min-width: 768px) and (max-width: 991px) {
  .sidemenu_btn {
    right: 90px;
  }
  .side-menu .btn-close {
    right: 90px;
  }
  .services-sec .our-services .service-card {
    width: 60%;
    margin: auto;
  }
  .pricing-sec .price-cards {
    width: 60%;
    margin: auto;
  }
  .heading {
    font-size: 45px;
    margin-left: auto;
    margin-right: auto;
  }
  .slider-area .heading {
    font-size: 52px;
  }
  .font-large {
    font-size: 52px !important;
  }
  .project-sec .project-detail-area .project-detail-slide .inner-content {
    width: 60%;
  }
  .pricing-sec .pricing-details .heading {
    width: 85%;
  }
  .qoute-sec i.fa-quote-left {
    left: -2%;
  }
}

@media screen and (max-width: 991px) {
  .header-appear .sidemenu_btn {
    left: auto;
    top: 24px;
  }
  .slider-area .slider-content {
    width: 100%;
  }
  .heading {
    font-size: 44px;
  }
  .slider-area .slider-icons {
    display: none;
  }
  .slider-form {
    position: relative;
    z-index: 11;
    top: auto;
    transform: translateY(0%);
    left: auto;
    right: auto;
    padding-top: 80px;
  }
  .slider-form .contact-form .form-group {
    margin-bottom: 20px;
  }
  .slider-form .contact-form .form-group:last-child {
    margin-bottom: 50px;
  }
  .slider-form .contact-form .form-group input {
    border-bottom: solid 1px #eeeeee;
  }
  .skill-sec .skill-detail .inner-skill-wraper {
    width: 90%;
    margin: auto;
    margin-top: 50px;
  }
  .sidemenu_btn {
    right: 20px;
    left: auto;
  }
  .side-menu .btn-close {
    right: 30px;
    left: auto;
  }
  .side-menu .inner-wrapper {
    padding: 3.5rem 3rem;
  }
  .side-menu-inner-content {
    margin: auto;
  }
  .navbar-brand {
    margin-right: auto;
    margin-left: 1rem;
  }
  .font-large {
    font-size: 38px !important;
  }
  .qoute-sec .qoute {
    width: 94%;
  }
  .qoute-sec i.fa-quote-left {
    left: 6%;
  }
  .qoute-sec i.fa-quote-right {
    right: 17%;
    bottom: 17%;
  }
  .project-sec .project-detail-area .project-detail-slide .inner-content {
    width: 90%;
    transform: translateX(0%);
    margin: auto;
  }
  .project-sec .project-detail-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .project-sec
    .project-detail-area
    .project-detail-slide
    .inner-content
    .sub-heading
    span {
    display: block;
    margin: auto;
    margin-bottom: 10px;
  }
  #portfolio .heading {
    width: 100%;
  }
  .pricing-sec .pricing-card {
    margin-bottom: 20px;
  }
  .pricing-sec .pricing-details .heading {
    width: 100%;
  }
  .contact-us-sec .contact-details {
    padding-top: 0;
    padding-bottom: 0;
  }
  .contact-us-sec .contact-details .contact-s-media {
    right: auto;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
  }
  .slider-area .slider-content .text {
    font-size: 18px;
  }
  .client-sec .client-container {
    padding-bottom: 483px;
  }
  /***********************************/
  /********Courses detail page css********/
  /***********************************/
  .course-detail .course-detail-box {
    margin-bottom: 50px;
  }
  /***********************************/
  /********Courses page css********/
  /***********************************/
  .blog-content .main_content .course_block {
    width: 100%;
  }
  .blog-content .main_content .course_block:nth-child(2) {
    margin-top: 30px;
  }
  .blog-content .main_content .course_block:nth-child(odd) {
    margin-right: 0;
  }
  /***********************************/
  /********standalone page css********/
  /***********************************/
  .standalone-row:not(:last-child) {
    margin-bottom: 8rem;
  }
  .standalone-area .sub-heading {
    margin-top: 20px;
  }
  .standalone-row:nth-child(2) .stand-img-des {
    padding-left: 18px;
    padding-right: 18px;
  }
  .standalone-row .stand-img-des {
    padding-left: 18px;
    padding-right: 18px;
  }
  .standalone-area {
    /*padding-bottom: 0;*/
  }
  .project-sec .project-area .project-detail {
    left: 0;
  }
}

@media (max-width: 767.9px) {
  .header-appear .sidemenu_btn {
    top: 16px;
  }
  .new-top-head {
    display: none;
  }
  .ui-block-01.footer.footer .footer-container {
    padding-bottom: 120px !important;
    padding-left: 15px !important;
  }
  .services-sec .our-services .service-card .service-card-detail {
    font-size: 22px;
    font-weight: normal;
  }
  .header-appear .navbar-brand img {
    max-width: 100%;
  }
  header .navbar-brand img {
    max-width: 100%;
  }
  .sidemenu_btn {
    top: 20px;
  }
  .text {
    font-size: 21px;
    font-weight: normal;
  }
  .testimonial4_slide {
    width: 90%;
  }
  .custom-container {
    display: block;
  }
  .custom-container .card {
    margin: 0 0 10px 0;
  }
  /* .navbar-brand img {
        width: 100%;
    } */
  .slider-sec .overlay h4 {
    font-size: 40px;
  }
  .slider-area .slider-content .heading {
    font-size: 36px;
  }
  .side-nav .navbar-nav .nav-link {
    font-size: 28px;
  }
  .heading {
    font-size: 36px;
  }
  .qoute-sec i.fa-quote-right {
    right: 12%;
    bottom: 14%;
  }
}

@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1340px) {
  .project-sec .project-links {
    bottom: 4.5%;
    left: 3.5%;
  }
  .sidemenu_btn {
    left: auto;
    margin-bottom: 15px;
  }
  .side-menu .btn-close {
    left: auto;
  }
}
