/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */
/* ===================================
                About
   =================================== */

/*
    Theme Name: Digital University
    Theme URI:
    Author: Themes Industry
    Author URI:
    Description: One Page , Multi Parallax Template
    Tags: One page, multi page, multipurpose, parallax, creative, html5

 */

/* ===================================
          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;
}

/* ===================================
        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: #12b975;
  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);
  }
}

/* ===================================
    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: 2px solid rgb(0, 0, 0);*/
  border-radius: 50%;
  pointer-events: none;
  opacity: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 999999999;
}

/*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: #12b975;
  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: #12b975;
  padding: 8px 35px;
  border-radius: 25px;
  color: #ffffff !important;
  transition: 0.5s ease;
  border-color: #12b975;
  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: #12b975 !important;
}
.bg-green {
  background-color: #12b975 !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: #12b975;
  margin-bottom: 15px;
}
.sub-heading span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #12b975;
  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: 15px;
  color: #3d3d3d;
  margin-bottom: 40px;
}

.green-btn {
  border: solid 1px #12b975;
  color: #ffffff;
  font-weight: 500;
  padding: 12px 35px;
  background-color: #12b975;
  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.px-16 {
  padding-inline: 16px;
}
.green-btn:hover {
  border: solid 1px #3d3d3d;
  color: #ffffff;
}
.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 #12b975;
  color: #12b975;
}
.green-trans-btn:hover {
  border: solid 1px #ffffff !important;
  color: #ffffff !important;
}
.green-trans-btn span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #12b975;
  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: 100%;
}
.header-appear .navbar-brand img {
  max-width: 90%;
}
header .navbar-brand .logo-simple {
  display: block;
}
header .navbar-brand .logo-fixed {
  display: none;
}
header .main-navigation {
  padding-top: 30px;
}
header .main-navigation .navbar {
  padding: 0;
}
header .main-navigation nav .navbar-nav .nav-link {
  display: inline-block;
  /*margin-right: 25px;*/
  min-width: 85px;
  text-align: center;
}
header .main-navigation nav .navbar-nav .nav-link {
  padding-top: 0;
  padding-bottom: 0;
  color: #ffffff;
  font-family: Oswald, sans-serif;
  font-size: 16px;
  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: #fa2851;*/
}

/* ===================================
         header appear css
====================================== */
.header-appear {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1111;
  background-color: #12b975;
  /*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: 15px;
  padding-bottom: 15px;
}
.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: 25px;
}
.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(18, 185, 117, 0.9);
}
.side-menu {
  width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  /*background: rgba(247, 28, 82, 0.6);*/
  background-image: url("../img/side-menu.jpg");
  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;
  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: 40px;
  display: inline-block;
}
.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background: #ffffff;
  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 span {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  margin-bottom: 5px;
}
.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: 52px;
  font-weight: 700;
  /*margin: auto;*/
}
.slider-area .slider-content .text {
  color: #ffffff;
}

/*slider form*/
.slider-form {
  position: absolute;
  z-index: 11;
  top: 67%;
  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);
} */
/* ===================================
    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: 18px;
  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;
  font-size: 15px;
  color: #3d3d3d;
}

.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: #12b975;
}
.services-sec .our-services .service-card:hover .image-holder {
  animation: 0.8s rotateIn;
}

/* ===================================
    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 {
  height: 100%;
  width: 100%;
}

.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;
}

/* ===================================
    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: #12b975;
}

.cube-portfolio1 .cbp-l-filters-button .cbp-filter-item:hover {
  color: #12b975;
}

.cube-portfolio1 .cbp-l-grid-mosaic-flat .cbp-caption-activeWrap {
  color: #12b975;
}

.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: #12b975;
  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: #12b975;
}
.qoute-sec .writer {
  color: #12b975;
  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: #12b975;
  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: #12b975;
}
.pricing-sec .pricing-card.active:nth-child(2) .pricing-amount {
  color: #12b975;
}
.pricing-sec .pricing-card.active:nth-child(2) .pricing-amount span {
  color: #12b975;
}
.pricing-sec .pricing-card.active:nth-child(2) .pricing-amount i {
  color: #12b975;
}
.pricing-sec .pricing-card.active:nth-child(2) .pricing-btn {
  background-color: #12b975;
  border: solid 1px #12b975;
  color: white;
}
.pricing-sec .pricing-card.active:nth-child(2) .pricing-btn:hover {
  background-color: transparent;
  color: #12b975;
}

.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: #12b975;
}
.pricing-sec .pricing-card:hover .pricing-amount {
  color: #12b975;
}
.pricing-sec .pricing-card:hover .pricing-amount span {
  color: #12b975;
}
.pricing-sec .pricing-card:hover .pricing-amount i {
  color: #12b975;
}
.pricing-sec .pricing-card:hover .pricing-btn {
  background-color: #12b975;
  border: solid 1px #12b975;
  color: white;
}
.pricing-sec .pricing-card:hover .pricing-btn:hover {
  background-color: transparent;
  color: #12b975;
}

/* ===================================
    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: #12b975;
  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: 15px;
  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: #12b975;
}
.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: #12b975;
  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: #12b975;
  color: #ffffff !important;
}

.company-about {
  font-size: 14px;
  color: #3d3d3d;
}
.company-about a {
  color: #3d3d3d;
}
.company-about a:hover {
  color: #12b975;
}

/* ===================================
   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: #12b975;
}
.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: #12b975;
  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: #12b975;
}
.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: #12b975;
}
.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: #12b975;
}
/*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: #12b975;
  margin-bottom: 20px;
}
.standalone-area .sub-heading {
  color: #12b975;
  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: 18px;
  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;
}

@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 {
    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;
  }
  .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%;
  }
}
