@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
	--white: #ffffff;
	--dark: #002147;
	--color-primary: #2c50a5;
	--color-secondary: #0b57e3;
	--color-heading: #0e0e0e;
	--font-default: 'Open Sans', sans-serif;
	--font-heading: 'Poppins', sans-serif;
	--fontawesome: "Font Awesome 5 Pro";
	--bg-gray: #f9f9f9;
}


* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body,
html {
	height: 100%;
}

html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

html, body, div, span, img,
ol, ul, li, a, p, h1, h2, h3,
h4, h5, h6, option, legend, label,
table, th, td, tr, article, aside,
caption, figure, footer, header, hgroup,
mark, nav, section, time, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

.wrapper {
	height: 100%;
}

img {
	border: none;
	outline: none;
	max-width: 100%;
}

label {
	display: inline-block;
	font-weight: normal;
	margin-bottom: 5px;
	max-width: 100%;
}


body {
  font-family: var(--font-default);
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  overflow-x: hidden;
  background-color: var(--white);
}

html, body, .wrapper {
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color-heading);
	font-weight: normal;
	line-height: 1.2;
	font-family: var(--font-heading);
	letter-spacing: 0;
	margin: 0;
	margin-bottom: 15px;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 27px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 14px;
}


h5,h5 {
  margin-bottom: 10px;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 5px;
  max-width: 100%;
}

a, .btn, button {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  outline: medium none;
}

a img, iframe {
  border: none;
}

p {
  color: var(--color-heading);
  line-height: 1.8;
  margin: 0 0 15px;
  text-transform: none;
  font-weight: 400;
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #eee;
}

pre {
  display: block;
  margin: 0 0 30px;
  padding: 9.5px;
  word-wrap: break-word;
  word-break: break-all;
  color: #333;
  border: 1px solid #ededed;
  border-radius: inherit;
  background-color: var(--bg-gray);
  font-size: 13px;
  line-height: 1.42857143;
}

input:focus, textarea:focus, 
 select:focus {
  outline: none;
  box-shadow: inherit;
}

ul {
	list-style-type: none;
}

ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}

b {
	font-weight: 600;
}

strong {
	font-weight: 600;
}

.row {
	--bs-gutter-x: 30px;
}


a, a:active, a:focus, a:hover {
  outline: none;
  text-decoration: none;
  color: #002147;
}

a:hover {
  color: #002147;
}

a {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  text-decoration: none;
  font-family: var(--font-heading);
}

b, strong {
  font-weight: 900;
}

.btn.active, .btn:active {
  background-image: inherit !important;
}

.btn.focus, 
 .btn:active:focus, 
 .btn:active:hover, 
 .btn:focus, 
 .btn:hover {
  outline: 0;
}

.btn.circle {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.btn.active, .btn:active {
  outline: 0;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

input {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  box-shadow: inherit;
  min-height: 50px;
}
/* Default CSS */
.container-half {
  margin: 0 auto;
  width: 60%;
  padding: 0 15px;
}

.bg-cover {
  background-position: center center;
  background-size: cover;
}

.bg-fixed {
  background-attachment: fixed;
  background-position: center top;
  background-size: cover;
}

.bg-gray {
  background-color: var(--bg-gray);
}

.bg-gray-hard {
  background: linear-gradient(90deg, rgba(237,245,255,1) 0%, rgba(204,223,247,1) 100%);
}

.bg-light {
  background-color: var(--white) !important;
}

.bg-theme {
  background-color: var(--color-primary);
}

.color-yellow .bg-theme {
  background-color: var(--color-secondary);
}

.align-right {
  float: right;
}

.text-light h1, 
 .text-light h2, 
 .text-light h3, 
 .text-light h4, 
 .text-light h5, 
 .text-light h6, 
 .text-light p, 
 .text-light a {
  color: var(--white);
}

.shadow {
  position: relative;
  z-index: 1;
}

.shadow.dark::after {
  background: #002147 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.shadow.dark-hard::after {
  background: #002147 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.75;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.shadow.light::after {
  background: var(--white) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.3;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.shadow.theme::after {
  background: var(--color-primary) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.colo-yellow.shadow.theme::after,
.colo-yellow .shadow.theme::after {
  background: var(--color-secondary) none repeat scroll 0 0;
}

.shadow.theme-hard::after {
  background: var(--color-primary) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.color-yellow.shadow.theme-hard::after,
.color-yellow .shadow.theme-hard::after {
  background: var(--color-secondary) none repeat scroll 0 0;
}

.default-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.default-padding-top {
  padding-top: 120px;
}

.default-padding-bottom {
  padding-bottom: 120px;
}

.default-padding.bottom-less {
  padding-top: 120px;
  padding-bottom: 90px;
}

.default-padding.bottom-30 {
  padding-top: 120px;
  padding-bottom: 70px;
}

.default-padding.bottom-20 {
  padding-top: 120px;
  padding-bottom: 80px;
}

.padding-xl {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media screen and (min-width: 1200px) {
  .item-flex {
    display: flex;
  }

}

.item-flex.center {
  align-items: center;
}


.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  letter-spacing: 1px;
  border-radius: inherit;
  overflow: hidden;
}

.btn-md {
  padding: 10px 40px 10px;
}

.btn-sm {
  padding: 8px 35px;
  font-size: 12px;
}

.btn-xsm {
  padding: 5px 18px;
  font-size: 12px;
}

.btn.btn-sm-pro {
  font-size: 10px;
  font-weight: 600;
  margin-top: 5px;
  padding: 4px 35px;
  display: inline-block;
}

.btn-border-light {
  border: 2px solid var(--white);
}

.btn.btn-sm-pro.btn-border-light:hover, 
 .btn.btn-sm-pro.btn-border-light:focus {
  background-color: var(--white);
  color: #002147;
  border: 2px solid var(--white);
}

.btn-gray {
  background: #f5f5f5 none repeat scroll 0 0;
  border: 2px solid #e7e7e7;
}

.btn-gray:hover {
  background: transparent none repeat scroll 0 0;
  border: 2px solid #e7e7e7;
}

.btn-dark {
  background-color: #002147;
  color: var(--white);
  border: 2px solid #002147;
}

.btn-dark.border {
  background-color: transparent;
  color: #002147;
  border: 2px solid #002147;
}

.btn-dark.border:hover {
  background-color: #002147;
  color: var(--white) !important;
  border: 2px solid #002147;
}

.btn.btn-light {
  background: var(--white) none repeat scroll 0 0;
  border: 2px solid var(--white);
  color: #002147;
}

.btn.btn-light:hover, 
 .btn.btn-light:focus {
  background: transparent none repeat scroll 0 0;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn.btn-light.effect:hover, 
 .btn.btn-light.effect:focus {
  background-color: var(--color-primary);
  color: var(--white) !important;
  border: 2px solid var(--color-primary);
}

.btn.btn-light.border {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn.btn-light.border:hover {
  background: var(--white) none repeat scroll 0 0 !important;
  /* border: 2px solid var(--white) !important; */
  color: #002147 !important;
}

.btn-dark:hover, 
 .btn-dark:focus {
  color: #002147 !important;
  background: transparent;
}

.bg-dark {
  background: #002147  none repeat scroll 0 0 !important;
}

.bg-gradient {
  background: linear-gradient(90deg, rgba(0,33,71,1) 0%, rgba(14,32,173,1) 100%);
}

.btn-theme,
.button-theme {
  background-color: var(--color-primary);
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-theme.border {
  background-color: transparent;
  color: var(--color-primary) !important;
  border: 1px solid var(--color-primary);
}

.btn-theme.border:hover {
  background-color: var(--color-primary);
  color: var(--white) !important;
  border: 1px solid var(--color-primary);
}

.btn-theme.effect:hover, 
 .btn-theme.effect:focus {
  background: var(--color-secondary) none repeat scroll 0 0;
  /* background: #ffd134 none repeat scroll 0 0; */
  /* border: 1px solid #ffd134; */
  /* color: var(--white) !important; */
}

.button-theme:hover, 
 .button-theme:focus {
  background: #ffd134 none repeat scroll 0 0;
  color: var(--white) !important;
}

.btn.btn-sm-lm {
  font-size: 12px;
  padding: 4px 35px;
}

.btn.border.btn-light.standard {
  padding-left: 20px;
  padding-right: 50px;
  position: relative;
  z-index: 1;
}

.btn.border.btn-light.standard::after {
  background: var(--white) none repeat scroll 0 0;
  content: "";
  height: 53px;
  position: absolute;
  right: -18px;
  top: -10px;
  transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  -moz-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  width: 50px;
  z-index: -1;
}

.btn.border.btn-light.standard::before {
  color: var(--color-primary);
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  height: 100%;
  position: absolute;
  right: 0;
  width: 25px;
}

.button-sm {
  border: medium none;
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 8px 25px;
  text-transform: uppercase;
}

.banner-area.shadow.dark-hard .content .btn.btn-theme.effect:hover,
.banner-area.shadow.dark-hard .content .btn.btn-light.effect:hover,
.banner-area.shadow.dark-hard .content .btn.btn-dark.effect:hover {
  background: transparent none repeat scroll 0 0;
  border: 2px solid var(--white);
  color: var(--white) !important;
}

a.btn-icon {
  background: #f1f1f1 none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: var(--color-primary);
  display: inline-block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  width: 50px;
}

.bg-fixed {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
}

.bg-cover {
  background-position: center center;
  background-size: cover;
}

.container-full {
  padding: 0 15px;
  width: 100%;
}

.oh {
  overflow: hidden;
}

.less-margin {
  margin: 0;
}

.owl-nav .owl-prev, 
.owl-nav .owl-next {
  border: none;
}

header {
  position: relative;
}

header nav.navbar.border.bootsnav.navbar-fixed.no-background {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a {
  position: relative;
  z-index: 1;
  margin-left: 3px;
}

header nav.navbar.border.bootsnav.navbar-fixed.no-background .attr-nav ul li a {
  border: medium none;
}

header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a::after {
  background: var(--white) none repeat scroll 0 0;
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  width: 0;
}

header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a.active::after,
header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a:hover::after {
  width: 100%;
}

header nav.navbar.border.bootsnav.navbar-fixed.no-background .attr-nav ul li a.active::after,
header nav.navbar.border.bootsnav.navbar-fixed.no-background .attr-nav ul li a:hover::after {
  width: 0;
}

.attr-nav .social.right li {
  margin-left: 20px;
}

.attr-nav .social li a {
  font-size: 16px;
}

/* Navbar */
nav.bootsnav.navbar-default.info-topbar .navbar-header {
  display: none;
}

nav.bootsnav.navbar-default.info-topbar ul li a {
  margin-right: 30px;
  padding: 35px 0;
}

nav.bootsnav.navbar-default.info-topbar.active-full ul li a {
  margin-right: 0;
  padding: 35px 20px;
}

.attr-nav > a.btn-theme.effect:hover, 
.attr-nav > a.btn-theme.effect, 
.attr-nav > a.btn-theme.effect:focus {
  background: var(--color-primary) none repeat scroll 0 0;
  border: 2px solid var(--color-primary);
  color: var(--white) !important;
}

nav.bootsnav.navbar-default.info-topbar.sticked ul li a {
  margin-right: 30px;
  padding: 35px 0;
}

.attr-nav.social li {
  display: inline-block;
  padding: 25px 0 !important;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.attr-nav.social li a {
  border: 1px solid #f4f4f4;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: var(--color-primary);
  display: inline-block;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  margin-left: 10px;
  padding: 0 !important;
  text-align: center;
  width: 40px;
}

nav.navbar.bootsnav.sticked .attr-nav.social li {
  display: inline-block;
  padding: 20px 0 !important;
}

nav.navbar.bootsnav.navbar-transparent.pad-top {
  background: transparent none repeat scroll 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 63px;
}

#navbar-menu li:last-child > a {
  padding-right: 0;
}

#navbar-menu li:last-child > a:hover,
#navbar-menu li:last-child > a:focus {
  text-decoration: none;
}

#navbar-menu .request-btn {
  background: var(--color-primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition-duration: 0.2s;
}
#navbar-menu .request-btn:hover {
  background: var(--color-secondary);
}
.top-bar-area {
  padding: 10px 0;
  overflow: hidden;
}

.top-bar-area {
  padding: 10px 0;
}

.top-bar-area .user-login a {
  display: inline-block;
  margin-left: 5px;
}

.top-bar-area .user-login a i {
  margin-right: 4px;
}

.top-bar-area .address-info li {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  font-family: var(--font-heading);
  margin-right: 18px;
  padding-right: 20px;
  color: var(--white);
  line-height: 24px;
}

.top-bar-area.address-one-lines .address-info li {
  margin-right: 10px;
  padding-right: 15px;
}

.top-bar-area.address-one-lines .address-info li span {
  display: inline-block;
  font-weight: normal;
  padding-left: 5px;
}

.top-bar-area .address-info li span {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}

.top-bar-area .address-info li p {
  line-height: 24px;
  margin: 0;
}

.top-bar-area .address-info li:last-child {
  border: medium none;
  margin: 0;
}

.top-bar-area .address-info li i {
  margin-right: 3px;
}

.top-bar-area.address-one-lines .address-info {
  margin: 8px 0;
}

.top-bar-area .menu li {
  display: inline-block;
  margin-left: 10px;
  padding-left: 15px;
  position: relative;
  z-index: 1;
}

.top-bar-area .menu li a {
  display: inline-block;
  font-weight: 500;
  text-transform: capitalize;
}

.top-bar-area.bg-dark .menu li a {
  color: var(--white);
}

.top-bar-area .menu li a:hover {
  color: var(--color-primary);
}

.top-bar-area.bg-theme .menu li a:hover {
  color: var(--white);
}

.top-bar-area .menu li::before {
  background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 1px;
}

.top-bar-area.bg-theme .menu li::before {
  background: #002147;
}

.top-bar-area .menu li:first-child {
  margin: 0;
  padding: 0;
}

.top-bar-area .menu li:first-child::before {
  display: none;
}

.top-bar-area .menu {
  padding: 8px 0;
}

.top-bar-area .row.align-center {
  display: flex;
  align-items: center;
  justify-content: center;
}


.top-bar-area .simple-link a {
  margin-left: 20px;
}
.top-bar-area .simple-link a:first-child {
  margin-left: 0;
}
.top-bar-area .simple-link a i {
  margin-right: 3px;
}
.top-bar-area .simple-link {
  position: relative;
  z-index: 1;
  font-weight: 600;
}
.top-bar-area .simple-link::after {
  position: absolute;
  top: -30px;
  content: "";
  height: 100px;
  width: 800px;
  background: var(--color-primary);
  left: 0;
  z-index: -1;
  transform: skew(25deg);
}
.top-bar-area .simple-link a {
  color: #232323;
}

.site-heading {
  margin-bottom: 60px;
  margin-top: -5px;
  overflow: hidden;
}

.site-heading h2 {
  display: inline-block;
  font-weight: 700;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}

.bg-dark .site-heading h2 {
  color: var(--white);
}

.bg-dark .site-heading p {
  color: #cccccc;
}

.site-heading h2::before {
  background: var(--color-primary) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -40px;
  position: absolute;
  width: 40px;
  z-index: 1;
}

.site-heading h2::after {
  background: var(--color-primary) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: 5px;
  position: absolute;
  width: 40px;
}

.site-heading.text-left h2::before {
  left: 0;
  margin: 0;
}

.site-heading.text-left h2::after {
  left: 45px;
  margin: 0;
  width: 20px;
}

.form-group {
  margin-bottom: 15px;
}


body, .banner-area, 
 .banner-area div {
  height: 100%;
}

.banner-area.auto-height, 
.banner-area.auto-height div {
  height: auto;
}

.banner-area .box-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.banner-area .box-table {
  display: table;
  width: 100%;
}

.banner-area .box-cell, 
 .banner-area .box-cell div {
  height: auto;
}

.banner-area {
  position: relative;
  overflow: hidden;
  height: 60%;
}

.banner-area .content {
  overflow: hidden;
}


.banner-area .carousel-control {
  font-size: 40px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  margin-top: -25px;
  background: transparent;
  opacity: 1;
  z-index: 1;
  transition: all 0.35s ease-in-out;
}

.banner-area .carousel-control.shadow {
  background: transparent none repeat scroll 0 0;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  margin-top: -25px;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 1;
  color: var(--white);
  text-shadow: inherit;
  box-shadow: none !important;
}

.banner-area .carousel-control.shadow::after {
  background: #002147 none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.banner-area .carousel-control.left {
  left: -50px;
}

.banner-area:hover .carousel-control.left {
  left: 0;
}

.banner-area:hover .carousel-control.shadow.left {
  left: 20px;
}

.banner-area .carousel-control.right {
  right: -50px;
}

.banner-area:hover .carousel-control.right {
  right: 0;
}

.banner-area:hover .carousel-control.shadow.right {
  right: 20px;
}


.banner-area .item h1:first-child, 
 .banner-area .item h2:first-child, 
 .banner-area .item h3:first-child, 
 .banner-area .item h4:first-child, 
 .banner-area .item h5:first-child, 
 .banner-area .item h6:first-child {
  animation-delay: .5s;
}

.banner-area .item h1:nth-child(2), 
 .banner-area .item h2:nth-child(2), 
 .banner-area .item h3:nth-child(2), 
 .banner-area .item h4:nth-child(2), 
 .banner-area .item h5:nth-child(2), 
 .banner-area .item h6:nth-child(2) {
  animation-delay: .6s;
}

.carousel-caption h1:nth-child(3), 
 .carousel-caption h2:nth-child(3), 
 .carousel-caption h3:nth-child(3), 
 .carousel-caption h4:nth-child(3), 
 .carousel-caption h5:nth-child(3), 
 .carousel-caption h6:nth-child(3) {
  animation-delay: .9s;
}

.banner-area .item p {
  animation-delay: .5s;
}

.banner-area .item a, 
 .banner-area .item button {
  animation-delay: .7s;
  margin-right: 3px;
}

.banner-area.text-center .item a, 
.banner-area.text-center .item button,
.banner-area .text-center .item a, 
.banner-area .text-center .item button {
  margin-right: 3px;
  margin-left: 3px;
}



.carousel-fade .carousel-inner .item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.carousel-fade .carousel-inner .item, 
 .carousel-fade .carousel-inner .active.left, 
 .carousel-fade .carousel-inner .active.right {
  opacity: 0;
}

.carousel-fade .carousel-inner .active, 
 .carousel-fade .carousel-inner .next.left, 
 .carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-inner .next, 
 .carousel-fade .carousel-inner .prev, 
 .carousel-fade .carousel-inner .active.left, 
 .carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
}

.carousel-fade .carousel-control {
  z-index: 2;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@-moz-keyframes zoom {
  from {
    -moz-transform: scale(1, 1);
  }

  to {
    -moz-transform: scale(1.2, 1.2);
  }
}

@-o-keyframes zoom {
  from {
    -o-transform: scale(1, 1);
  }

  to {
    -o-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.2, 1.2);
  }
}

.carousel-inner .item > .slider-thumb {
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}

.banner-area .carousel-zoom .slider-thumb {
  height: 100%;
  position: absolute;
  width: 100%;
}

.banner-area.transparent-nav .content {
  padding-top: 80px;
}



.banner-area.banner-search.content-top-heading .content h1 {
  margin-bottom: 50px;
}

.banner-area.text-normal h3 {
  font-size: 36px;
  text-transform: uppercase;
}

.banner-area.text-normal h1 {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: capitalize;
  margin-top: -8px;
}

.banner-area.text-normal.banner-style-four h1 {
  font-size: 60px;
}

.banner-area.text-normal.heading-weight-600 h1 {
  font-weight: 600;
}

.banner-area.text-normal p {
  font-size: 16px;
}

.banner-area.text-normal span {
  color: var(--color-primary);
}

.banner-area.text-normal.less-paragraph h1 {
  margin-bottom: 15px;
  margin-top: 0;
}

.banner-area.text-normal.banner-style-one h1 {
  font-size: 60px;
}

.banner-area.text-normal a {
  margin-top: 15px;
}

.banner-area .col-md-10.col-md-offset-1 p {
  padding: 0 10%;
}

.banner-area.text-small h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.banner-area.text-small a {
  margin-top: 15px;
}

.banner-area.text-small p {
  font-size: 16px;
}

.banner-area.text-dark p {
  color: #002147;
}

.banner-area form {
  position: relative;
  z-index: 1;
  width: 80%;
  margin: 50px auto auto;
}

.banner-area form input {
  border: medium none;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  box-shadow: inherit;
  min-height: 60px;
  padding: 15px 30px;
}

.banner-area form button {
  background: var(--color-primary) none repeat scroll 0 0;
  border: medium none;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 500;
  height: 50px;
  margin: 0 !important;
  padding: 0 30px;
  position: absolute;
  right: 5px;
  text-transform: capitalize;
  top: 5px;
}

.banner-area.auto-height .content {
  padding: 150px 0;
}


.banner-area.text-default .content h1 {
  font-size: 50px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 25px;
}
.banner-area.text-default .content a {
  margin-top: 15px;
}
.banner-area.text-default .content h4 {
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 25px;
  letter-spacing: 0.6px;
}

.banner-area.banner-box {
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 50px;
  border-radius: 10px;
}

.banner-area.banner-box .thumb img {
  margin-top: 50px;
}

.banner-area.banner-box .content {
  padding: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-area.banner-box .content {
      padding: 0;
      padding-top: 100px;
  }
}


.banner-area.standard .thumb {
    position: relative;
    z-index: 1;
    padding-left: 50px;
    margin-bottom: 120px;
}

.banner-area.standard .thumb img:first-child {
    max-width: 70%;
}

.banner-area.standard .thumb img:nth-child(2) {
    position: absolute;
    width: 200px;
    bottom: -120px;
    margin-left: 30px;
}

.banner-area.standard .thumb img {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
}

.banner-area.standard .thumb .join {
    position: absolute;
    right: -50px;
    top: 50px;
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 25px 35px;
    border-radius: 10px;
}

.banner-area.standard .thumb .join .fun-fact {
    background: transparent;
    box-shadow: inherit !important;
    padding: 0;
    border-left: 1px solid #e7e7e7;
    padding-left: 20px;
}

.banner-area.standard .thumb .join i {
    display: inline-block;
    font-size: 60px;
    color: var(--color-primary);
    margin-right: 15px;
}

.banner-area.standard .thumb .join h4 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 24px;
}

.banner-area.standard .thumb .join .fun-fact span {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
}


.banner-area.standard .thumb::after {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -150px;
    content: "";
    height: 450px;
    width: 450px;
    border: 80px solid var(--white);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: infiUpDown;
    animation-name: infiUpDown;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.banner-area.standard form {
    margin: 0;
    margin-top: 40px;
}

.banner-area.standard form input {
    border-radius: 5px;
}

.banner-area.standard form button {
    background: transparent;
}

.banner-area.standard .content-box h1 {
    font-weight: 600;
    font-size: 55px;
    margin-bottom: 35px;
}

.banner-area.standard {
    padding-top: 60px;
}



.item-animated {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  -webkit-animation-name: infiUpDown;
  animation-name: infiUpDown;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@keyframes infiUpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes infiUpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}


.about-area .our-features .item {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 50px 20px 20px;
  row-gap: 30px;
  border: 1px solid #cccccc;
  height: 100%;
  background-color: var(--white);
  transition: all 0.2s ease-in-out;
  
}

.about-area .our-features .item:hover {
  background-color: #00c4681f;
}

.about-area.bg-dark .our-features .item {
  box-shadow: inherit;
}

.about-area.our-featues-area .our-features .item {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}



.about-area .thumb {
  padding-right: 35px;
  position: relative;
}

.overlay-video {
  left: 50%;
  margin-left: -15px;
  margin-top: -70px;
  position: absolute;
  top: 50%;
}

.about-area .overlay-video {
  margin-left: -15px;
}

.our-featues-area.inc-trending-courses .overlay-video {
  margin-left: -25px;
}

.about-area .about-info.item-block .info {
  margin-top: 30px;
}

.about-area .info > a {
  margin-top: 10px;
}

.seperator .border {
  margin-bottom: 50px;
  padding-bottom: 50px;
  overflow: hidden;
  float: left;
  width: 100%;
  border: none !important;
  border-bottom: 1px solid rgba(20, 23, 28, 0.1) !important;
}



.about-area .our-features .item .icon i {
  display: inline-block;
  font-size: 80px;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.about-area.inc-trending-courses .our-features .item .icon i {
  display: inline-block;
}

.about-area .our-features.text-light .item .icon i {
  color: var(--white);
}

.about-area .our-features.inc-counter .item .info h4 {
  margin: 0;
  text-transform: uppercase;
}

.about-area .our-features.inc-counter .item .info .timer {
  color: var(--white);
  display: block;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 15px;
}

.about-area .our-features .item .info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  line-height: 1.3;
}

.about-area .our-features {
  margin-top: 60px;
}

.about-area .our-features .item .info a {
  color: var(--color-heading);
  text-transform: uppercase;
}

.about-area .our-features.text-light .item .info a {
  color: var(--white);
}

.about-area .info h1,
.about-area .info h2 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}

.about-area .info h1::before,
.about-area .info h2::before {
  background: var(--color-primary) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 40px;
  z-index: 1;
}

.about-area .info h1::after,
.about-area .info h2::after {
  background: var(--color-primary) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 45px;
  position: absolute;
  width: 20px;
}

.about-area .info.less-bar h1::before, 
.about-area .info.less-bar h1::after {
  display: none;
}

.about-area .info.less-bar h1 {
  margin-bottom: 20px;
  padding-bottom: 0;
}

.about-area .info h5 {
  color: var(--color-heading);
  font-size: 18px;
  text-transform: uppercase;
}

.about-area .info h1 span,
.about-area .info h2 span {
  color: var(--color-primary);
}

.about-area .info h4 {
  line-height: 30px;
  margin-bottom: 20px;
}

.our-features .item.mariner i {
  color: #307ad5;
}

.our-features .item.java i {
  color: #1ec1d9;
}

.our-features .item.malachite i {
  color: #10c45c;
}

.our-features .brilliantrose i {
  color: #e948ae;
}

.our-features .casablanca i {
  color: #f9bd44;
}

.our-features .emerald i {
  color: #47c58e;
}

.our-featues-area .about-info .thumb {
  padding-right: 0;
}


.wcs-area .site-heading {
  margin-bottom: 20px;
}

.wcs-area .thumb, 
.wcs-area .content {
  display: table-cell;
  float: none;
  vertical-align: middle;
}

.wcs-area.content-default .thumb, 
.wcs-area.content-default .content {
  display: inline-block;
  float: left;
}

.wcs-area.content-default .content {
  padding: 0 15px;
}

.wcs-area .content {
  padding: 120px 50px;
  padding-right: 120px;
}

.wcs-area .item .icon, .wcs-area .item .info {
  display: table-cell;
  vertical-align: top;
}

.wcs-area .item .info {
  padding-left: 20px;
}

.wcs-area .item .icon i {
  border: 1px solid var(--white);
  -moz-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  -o-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  color: var(--white);
  display: inline-block;
  font-size: 50px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  width: 80px;
}

.wcs-area.bg-light .item .icon i {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  font-size: 40px;
}

.wcs-area .item .info h4 {
  color: var(--white);
  font-weight: 600;
  text-transform: capitalize;
}

.wcs-area.bg-light .item .info h4 a {
  color: #002147;
}

.wcs-area.bg-light .item .info p {
  color: var(--color-heading);
}

.wcs-area .item {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.wcs-area.bg-light .item {
  border-bottom: inherit;
  margin-bottom: 50px;
  padding-bottom: 0;
}

.wcs-area .item .info p {
  margin: 0;
  color: var(--bs-success-bg-subtle);
  font-size: 16px;
}

.wcs-area h2 {
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.wcs-area .item:last-child {
  border: medium none;
  margin: 0;
  padding: 0;
}


.popular-courses-items .item {
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
}

.circle .popular-courses-items .item {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.circle .popular-courses-items .item img {
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

.popular-courses-items .thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.popular-courses-items .thumb .overlay {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  opacity: 0;
}

.popular-courses-items .item:hover .overlay {
  opacity: 1;
}

.popular-courses-items .info {
  background: var(--white) none repeat scroll 0 0;
  overflow: hidden;
  padding: 20px 30px 30px;
}

.popular-courses-items .thumb .price {
  background: #f4f4f4 none repeat scroll 0 0;
  border-bottom: 1px solid #e7e7e7;
  border-top: 1px solid #e7e7e7;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px;
  text-align: center;
  text-transform: uppercase;
}

.popular-courses-items .author-info .thumb, 
.popular-courses-items .author-info .others {
  display: table-cell;
  vertical-align: middle;
}

.popular-courses-items .author-info .others {
  padding-left: 15px;
}

.popular-courses-items .author-info .others .rating {
  display: block;
}

.popular-courses-items .author-info .thumb img {
  border: 1px solid #e7e7e7;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  height: 70px;
  padding: 5px;
  width: 70px;
}

.popular-courses-items .author-info {
  margin-bottom: 25px;
}

.popular-courses .author-info .rating span {
  color: var(--color-heading);
}

.popular-courses-items .author-info .others .rating i {
  color: var(--color-primary);
}

.popular-courses-items .author-info .others a {
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
}

.popular-courses-items .info h4 {
  font-weight: 600;
  text-transform: capitalize;
}

.popular-courses-items .info .cats a {
  color: var(--color-heading);
  display: inline-block;
  padding-right: 7px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.popular-courses-items .info .cats {
  margin-bottom: 15px;
}

.popular-courses-items .info .cats a::after {
  bottom: 0;
  content: ",";
  font-size: 20px;
  position: absolute;
  right: 0;
  font-family: "Times New Roman";
}

.popular-courses-items .info .cats a:last-child::after {
  display: none;
}

.popular-courses-items .info .cats i {
  margin-right: 3px;
  color: var(--color-heading);
}

.popular-courses-items .info h4 a:hover {
  color: var(--color-primary);
}

.popular-courses-items .info p {
  margin: 0;
}

.popular-courses .extra li {
  background: #f4f4f4 none repeat scroll 0 0;
  display: inline-block;
  padding: 5px 10px;
  position: relative;
  z-index: 1;
}

.popular-courses .bottom-info {
  float: left;
  margin-top: 15px;
  padding-top: 20px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.popular-courses .bottom-info::after {
  background: #ececec none repeat scroll 0 0;
  content: "";
  height: 1px;
  left: -20%;
  position: absolute;
  top: 0;
  width: 150%;
}

.popular-courses .extra li i {
  font-weight: 500;
}

.popular-courses .extra {
  margin-top: 10px;
}

.popular-courses .bottom-info a {
  background: var(--color-primary) none repeat scroll 0 0;
  color: var(--white);
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 20px;
  text-transform: uppercase;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.popular-courses .bottom-info .price-btn {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  display: inline-block;
  float: right;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 0;
  text-transform: uppercase;
}

.popular-courses .bottom-info a:hover {
  background: var(--color-secondary) none repeat scroll 0 0;
}

.carousel-shadow .owl-stage-outer {
  margin: -15px -15px 0;
  padding: 15px;
}

.default-padding.carousel-shadow {
  padding-bottom: 105px;
}

.popular-courses .popular-courses-items .owl-nav {
  margin: 0;
}

.popular-courses .popular-courses-items .owl-nav .owl-prev, 
.popular-courses .popular-courses-items .owl-nav .owl-next {
  background: var(--white) none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: 0 0 1px 1px rgba(20, 23, 28, 0.1), 0 3px 1px 0 rgba(20, 23, 28, 0.1);
  -webkit-box-shadow: 0 0 1px 1px rgba(20, 23, 28, 0.1), 0 3px 1px 0 rgba(20, 23, 28, 0.1);
  -o-box-shadow: 0 0 1px 1px rgba(20, 23, 28, 0.1), 0 3px 1px 0 rgba(20, 23, 28, 0.1);
  box-shadow: 0 0 1px 1px rgba(20, 23, 28, 0.1), 0 3px 1px 0 rgba(20, 23, 28, 0.1);
  color: var(--color-heading);
  font-size: 25px;
  height: 45px;
  left: 0;
  line-height: 45px;
  margin-top: -23px;
  padding: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  width: 45px;
  opacity: 0;
}

.popular-courses .popular-courses-items:hover .owl-nav .owl-prev, 
.popular-courses .popular-courses-items:hover .owl-nav .owl-next {
  opacity: 1;
}

.popular-courses .popular-courses-items:hover .owl-nav .owl-prev {
  left: -70px;
}

.popular-courses .popular-courses-items:hover .owl-nav .owl-next {
  right: -70px;
}

.popular-courses .popular-courses-items .owl-nav .owl-prev:hover, 
.popular-courses .popular-courses-items .owl-nav .owl-next:hover {
  background: var(--white) none repeat scroll 0 0;
  color: var(--color-primary);
}

.popular-courses .popular-courses-items .owl-nav .owl-next {
  left: auto;
  right: 0;
}

.popular-courses-items .thumb .best-seller-badge {
  background: var(--color-primary) none repeat scroll 0 0;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 10px;
  position: absolute;
  right: 5px;
  text-transform: uppercase;
  top: 25px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  z-index: 1;
}

.popular-courses-items .thumb .best-seller-badge::before {
  border-bottom: 23px solid var(--color-primary);
  border-right: 23px solid transparent;
  border-top: 23px solid var(--color-primary);
  bottom: 0;
  content: "";
  position: absolute;
  right: -20px;
}

.popular-courses.without-carousel .equal-height {
  margin-bottom: 30px;
}

.popular-courses .button {
  margin-top: 20px;
}

.clients-review-carousel .thumb {
  padding-left: 0;
}

.clients-review-carousel .item img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.clients-review-carousel .info {
  padding-right: 0;
}

.clients-review-carousel .item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  -o-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 30px;
}

.clients-review-carousel .item .info p {
  position: relative;
  z-index: 1;
}

.clients-review-carousel .item .info p::after {
  content: ",,";
  font-family: "Times New Roman";
  font-size: 180px;
  left: -7px;
  letter-spacing: -15px;
  opacity: 0.1;
  position: absolute;
  top: 70px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.clients-review-carousel .item .info h4 {
  margin-bottom: 5px;
  text-transform: capitalize;
}

.clients-review-carousel .item .info span {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
}

.testimonials-area .clients-review-carousel .owl-nav {
  margin: 0;
}

.testimonials-area .clients-review-carousel .owl-nav .owl-prev, 
.testimonials-area .clients-review-carousel .owl-nav .owl-next {
  background: var(--white) none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: 0 0 1px 1px rgba(20, 23, 28, 0.1), 0 3px 1px 0 rgba(20, 23, 28, 0.1);
  -webkit-box-shadow: 0 0 1px 1px rgba(20, 23, 28, 0.1), 0 3px 1px 0 rgba(20, 23, 28, 0.1);
  -o-box-shadow: 0 0 1px 1px rgba(20, 23, 28, 0.1), 0 3px 1px 0 rgba(20, 23, 28, 0.1);
  box-shadow: 0 0 1px 1px rgba(20, 23, 28, 0.1), 0 3px 1px 0 rgba(20, 23, 28, 0.1);
  color: var(--color-heading);
  font-size: 25px;
  height: 45px;
  left: 0;
  line-height: 45px;
  margin-top: -23px;
  opacity: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  width: 45px;
}

.testimonials-area .clients-review-carousel:hover .owl-nav .owl-prev, 
.testimonials-area .clients-review-carousel:hover .owl-nav .owl-next {
  opacity: 1;
}

.testimonials-area .clients-review-carousel:hover .owl-nav .owl-prev {
  left: -70px;
}

.testimonials-area .clients-review-carousel:hover .owl-nav .owl-next {
  right: -70px;
}

.testimonials-area .clients-review-carousel .owl-nav .owl-prev:hover, 
.testimonials-area .clients-review-carousel .owl-nav .owl-next:hover {
  background: var(--white) none repeat scroll 0 0;
  color: var(--color-primary);
}

.testimonials-area .clients-review-carousel .owl-nav .owl-next {
  left: auto;
  right: 0;
}


.faq-area .faq-picture {
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
.faq-area .faq-content .panel-group {
  margin-bottom: 0;
}

.faq-items h2 {
  font-weight: 700;
}

.faq-area .sign-up {
  background: #002147;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  -o-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 50px;
}

.testimonials-area .faq-items .panel-group {
  margin: 0;
}

.faq-area.color-crimson .sign-up {
  background: #e22a31;
}

.faq-area.color-yellow .sign-up {
  background: #fbba42;
}

.faq-area .signup-form {
  padding-right: 30px;
}

.accordion-item {
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e7e7e7;
}

.accordion-item button.accordion-button {
  background: transparent;
  padding: 15px 0;
  border-radius: 0;
  font-weight: 600;
  padding-right: 60px;
  position: relative;
  border: none;
  box-shadow: none;
  font-size: 18px;
}

.accordion-item button.accordion-button::after {
  right: 0;
  margin: 0;
  position: absolute;
}

.accordion-item .accordion-body {
  border: none;
  padding: 0;
  padding-bottom: 15px;
  border-top: 1px solid #e7e7e7;
  padding-top: 15px;
  margin-top: 5px;
}

.accordion-item .accordion-header {
  border: none;
}

.accordion-item .accordion-body p {
  margin: 0;
  font-size: 16px;
  padding-left: 20px;
  font-weight: 600;
  color: #d1002c;
}

.accordion-item .accordion-body ul li {
  display: block;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
}

.accordion-item .accordion-body ul li::before {
  content: "\f560";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.accordion-item:last-child {
  border: none;
}

.contact-info-area {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.contact-info-area .heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.contact-info-area .heading p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.contact-info-area .google-maps iframe {
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-area .contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-area .contact-info .item {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact-info-area .contact-info .item.active {
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
}

.contact-info-area .contact-info .info h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.contact-info-area .contact-info .info p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.contact-info-area .contact-info .social-links {
  list-style: none;
  padding: 0;
}

.contact-info-area .contact-info .social-links li {
  display: inline-block;
  margin-right: 10px;
}

.contact-info-area .contact-info .social-links li a {
  font-size: 16px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.contact-info-area .contact-info .social-links li a:hover {
  color: var(--color-primary);
}


form.white-popup-block {
  background: var(--white) none repeat scroll 0 0;
  border-radius: 5px;
  margin: auto;
  padding: 50px 30px;
  position: relative;
  width: 35%;
  max-width: 480px;
  overflow: hidden;
}

form.white-popup-block button.mfp-close {
  color: red;
}

form.white-popup-block li {
  display: inline-block;
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
}

form.white-popup-block li a {
  background: #002147 none repeat scroll 0 0;
  border: medium none;
  color: var(--white);
  display: inline-block;
  font-size: 16px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  width: 50px;
}

form.white-popup-block li.facebook a {
  background: #3b5998 none repeat scroll 0 0;
}

form.white-popup-block li.twitter a {
  background: #1da1f2 none repeat scroll 0 0;
}

form.white-popup-block li.pinterest a {
  background: #bd081c none repeat scroll 0 0;
}

form.white-popup-block li.g-plus a {
  background: #db4437 none repeat scroll 0 0;
}

form.white-popup-block li.linkedin a {
  background: #0077b5 none repeat scroll 0 0;
}

form.white-popup-block .col-md-6:last-child {
  border-left: 1px solid #e7e7e7;
}

form.white-popup-block .col-md-6:last-child {
  border-left: 1px solid;
}

form.white-popup-block h3,
form.white-popup-block h4 {
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

form.white-popup-block input {
  border: 1px solid #e7e7e7;
  box-shadow: inherit;
}

form.white-popup-block .lost-pass-link {
  float: right;
}

form.white-popup-block .lost-pass-link:hover {
  text-decoration: underline;
}

form.white-popup-block label {
  float: left;
}

form.white-popup-block label input {
  float: left;
  margin-right: 5px;
  min-height: 20px;
}

form.white-popup-block button[type="submit"] {
  background: var(--color-primary) none repeat scroll 0 0;
  border: medium none;
  display: inline-block;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-top: 10px;
  padding: 8px 50px;
  text-transform: uppercase;
}

form.white-popup-block .link-bottom {
  display: block;
  float: left;
  margin-bottom: 0;
  margin-top: 15px;
  width: 100%;
}

form.white-popup-block .link-bottom a:hover {
  text-decoration: underline;
}

.login-area form.white-popup-block {
  width: auto;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
}

footer .f-items .item {
  padding-right: 30px;
}

footer .f-items .item:last-child {
  padding-right: 15px;
}

.f-items {
  overflow: hidden;
}

footer .f-item p {
  color: #cccccc;
}

footer.bg-fixed .f-item p {
  color: var(--white);
}

footer.bg-light .f-item p {
  color: var(--color-heading);
}

footer .f-item > h3,
footer .f-item > h4,
footer .f-item > h5 {
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

footer .f-item > img {
  margin-bottom: 30px;
  width: auto;
}

footer p.text-italic {
  font-style: italic;
  margin-bottom: 20px;
}

footer p.text-italic {
  font-style: italic;
  margin-bottom: 20px;
}

footer .subscribe form {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  position: relative;
  width: 100%;
}

footer .subscribe form input, footer .subscribe form input:focus {
  background: transparent none repeat scroll 0 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px !important;
  box-shadow: none;
  padding: 0 20px;
  color: var(--color-heading);
}

footer.bg-dark .subscribe form input, 
footer.bg-dark .subscribe form input:focus {
  color: var(--white);
}


footer.bg-dark .subscribe form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #cccccc;
}
footer.bg-dark .subscribe form input::-moz-placeholder { /* Firefox 19+ */
  color: #cccccc;
}
footer.bg-dark .subscribe form input:-ms-input-placeholder { /* IE 10+ */
  color: #cccccc;
}
footer.bg-dark .subscribe form input:-moz-placeholder { /* Firefox 18- */
  color: #cccccc;
}

footer.bg-light .subscribe form input,
footer.bg-light .subscribe form input:focus {
  border: 1px solid #e7e7e7;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  width: 100%;
}

footer.bg-fixed .subscribe form input {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

footer.bg-fixed .subscribe form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #cccccc;
}
footer.bg-fixed .subscribe form input::-moz-placeholder { /* Firefox 19+ */
  color: #cccccc;
}
footer.bg-fixed .subscribe form input:-ms-input-placeholder { /* IE 10+ */
  color: #cccccc;
}
footer.bg-fixed .subscribe form input:-moz-placeholder { /* Firefox 18- */
  color: #cccccc;
}

footer .subscribe form {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  padding: 0;
}

footer .subscribe form button {
  background: var(--white) none repeat scroll 0 0;
  border: medium none;
  border-radius: 30px !important;
  color: var(--color-primary);
  font-size: 20px;
  min-height: 40px;
  padding: 0 30px;
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 9;
}

footer .subscribe form .input-group {
  width: 100%;
}

footer.bg-light .subscribe form button {
  background: var(--color-primary) none repeat scroll 0 0;
  color: var(--white);
}

footer .f-item.address i, 
footer .f-item.address p {
  display: table-cell;
  vertical-align: middle;
}

footer .f-item.address i {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  height: 40px;
  text-align: center;
  width: 40px;
  font-size: 20px;
}

footer.bg-light .f-item.address i {
  border: 1px solid #e7e7e7;
  color: var(--color-primary);
}

footer.bg-fixed .f-item.address i {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

footer .f-item.address p {
  font-weight: 500;
  margin: 0;
  padding-left: 10px;
  text-transform: uppercase;
}

footer .f-item.address p span {
  display: block;
  text-transform: lowercase;
}

footer .f-item.address li {
  margin-bottom: 15px;
}

footer .f-item.address li:last-child {
  margin: 0;
}

footer .f-item.address li a {
  color: #cccccc;
  font-family: "Open Sans",sans-serif;
}

footer.bg-fixed .f-item.address li a {
  color: var(--white);
}

footer.bg-light .f-item.address li a {
  color: var(--color-heading);
  font-family: "Open Sans",sans-serif;
  font-weight: normal;
}

footer .opening-info {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  color: #cccccc;
  margin-top: 20px;
  padding-top: 20px;
}

footer.bg-light .opening-info {
  border-top: 1px dashed #e7e7e7;
  color: var(--color-heading);
}

footer.bg-fixed .opening-info {
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
}

footer .opening-info h5 {
  margin-bottom: 15px;
  text-transform: uppercase;
}

footer .opening-info li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  margin-bottom: 10px !important;
  padding-bottom: 10px;
}

footer.bg-light .opening-info li {
  border-bottom: 1px dashed #cccccc;
  color: var(--color-heading);
}

footer.bg-fixed .opening-info li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  color: var(--white);
}

footer .opening-info li:last-child {
  border: medium none;
  margin: 0 !important;
  padding: 0 !important;
}


/* Recent Post */
footer .f-item.recent-post li a {
  color: #cccccc;
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

footer.bg-fixed .f-item.recent-post li a {
  color: var(--white);
}

footer.bg-light .f-item.recent-post li a {
  color: #002147;
}

footer .f-item.recent-post li a:last-child {
  display: inline-block;
  font-weight: 400;
}

footer .f-item.recent-post .meta-title {
  color: #cccccc;
  font-family: var(--font-heading);
  margin-top: 10px;
}

footer.bg-light .f-item.recent-post .meta-title {
  color: var(--color-heading);
}

footer.bg-fixed .f-item.recent-post .meta-title {
  color: var(--white);
}

footer.bg-fixed .f-item.recent-post .meta-title {
  color: var(--white);
}

footer .f-item.recent-post li a:hover {
  color: var(--color-primary);
}

footer .f-item.recent-post li a span {
  display: inline-block;
  color: #cccccc;
}

footer .f-item.recent-post li span {
  display: inline-block;
  text-transform: capitalize;
}

footer .f-item.recent-post .meta-title a {
  text-transform: capitalize;
}

footer .f-item.recent-post li {
  color: #cccccc;
}

footer.bg-fixed .f-item.recent-post li {
  color: var(--white);
}

footer.bg-light .f-item.recent-post li {
  color: var(--color-heading);
}

footer .f-item.recent-post li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

footer.bg-fixed .f-item.recent-post li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

footer .f-item.recent-post li:last-child {
  border: medium none;
  margin: 0;
  padding: 0;
}

footer .f-item.recent-post li:last-child {
  margin: 0;
}

footer .f-item.recent-post li .thumb {
  display: table-cell;
  padding-top: 5px;
  vertical-align: top;
  width: 80px;
}

footer .f-item .thumb img {
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

footer .f-item.recent-post li .info {
  display: table-cell;
  padding-left: 20px;
  vertical-align: top;
  line-height: 26px;
  color: #837f7e;
}

/* Footer Social */
footer .social li {
  display: inline-block;
}

footer .social li a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  font-size: 14px;
  height: 40px;
  line-height: 39px;
  margin-right: 5px;
  text-align: center;
  width: 40px;
  font-weight: 500;
}

footer.bg-light .social li a {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  color: #002147;
  line-height: 40px;
}

footer.bg-light .social li a:hover {
  background: #002147 none repeat scroll 0 0;
  border: medium none;
  color: var(--white);
  border: 1px solid transparent;
}

footer.bg-fixed .social li a {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

footer .social li a:hover {
  border: 1px solid transparent;
  background-color: rgba(255, 255, 255, 0.1);
}

footer.bg-fixed .social li a:hover {
  border: 1px solid transparent;
  background-color: var(--white);
  color: var(--color-primary);
}

footer .social {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding-top: 20px;
}

footer.bg-fixed .social {
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
}

/* Footer Link */
footer .f-item > img {
  margin-bottom: 30px;
}

footer .f-item.link li {
  display: block;
  margin-bottom: 15px;
}

footer .f-item.link li a {
  color: #cccccc;
  display: inline-block;
  font-weight: 400;
  padding-left: 15px;
  position: relative;
  text-transform: capitalize;
  font-family: "Open Sans",sans-serif;
}

footer.bg-fixed .f-item.link li a {
  color: var(--white);
}

footer.bg-light .f-item.link li a {
  color: var(--color-heading);
}

footer .f-item.link li a::before {
  background: #cccccc none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 0;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 4px;
}

footer.bg-fixed .f-item.link li a::before {
  background: var(--white) none repeat scroll 0 0;
}

footer.bg-light .f-item.link li a::before {
  background: var(--color-heading) none repeat scroll 0 0;
}

footer .f-item.link li a:hover {
  color: var(--white);
}


/* Footer Bottom */
.footer-bottom .col-md-6:first-child {
  padding-left: 0;
}

.footer-bottom .col-md-6:last-child {
  padding-right: 0;
}

.footer-bottom .link li {
  display: inline-block;
}

.footer-bottom .link li a {
  color: var(--white);
  display: inline-block;
  font-weight: 400;
  line-height: 40px;
  margin-left: 10px;
  padding-left: 15px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.footer-bottom.bg-light .link li a {
  color: var(--color-heading);
}

.footer-bottom .link li a::before {
  background: var(--white) none repeat scroll 0 0;
  content: "";
  height: 12px;
  left: 0;
  position: absolute;
  top: 15px;
  width: 1px;
}

.footer-bottom .link li:first-child a::before {
  display: none;
}

.footer-bottom.bg-light .link li a::before {
  background: #999999 none repeat scroll 0 0;
}

.footer-bottom .link li:first-child a {
  margin: 0;
  padding: 0;
}

.footer-bottom .link li:first-child::before {
  display: none;
}

.footer-bottom .link li a:hover {
  color: var(--color-primary);
}

footer .footer-bottom p a {
  color: var(--color-primary);
  text-transform: capitalize;
  font-weight: 600;
}

footer .footer-bottom {
  background: #03173d none repeat scroll 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding: 10px 0;
}

footer .footer-bottom.bg-light {
  background: var(--white) none repeat scroll 0 0;
  border-top: 1px solid #e7e7e7;
}

footer .footer-bottom.bg-transparent {
  background: transparent none repeat scroll 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .footer-bottom p {
  color: var(--white);
  margin: 0;
  text-transform: capitalize;
  line-height: 40px;
}

footer .footer-bottom.bg-light p {
  color: var(--color-heading);
}


@media (max-width: 991px) {
  .footer-bottom .text-end {
    text-align: center !important;
  }
}


/* Tablet Layout: 768px.*/
@media only screen and (min-width: 768px) and (max-width: 991px) {

  .top-bar-area.inc-transparent-nav {
    display: none;
  }

  .top-bar-area .simple-link {
    display: none;
  }

  .banner-area.transparent-nav .content {
    padding-top: 60px;
  }

  .banner-area.banner-box .thumb {
    display: none;
  }

  .banner-area.banner-box .content {
    padding: 120px 0;
  }

  .banner-area.standard {
    padding-top: 150px;
    padding-bottom: 120px;
    height: auto !important;
  }

  .banner-area.standard .thumb {
    padding-left: 15px;
    margin-top: 50px;
    margin-bottom: 0;
  }

  .banner-area.standard .thumb img:nth-child(2) {
    bottom: 0;
  }

  .banner-area.standard .thumb .join {
    right: 0;
  }

  /* What you learn */
  .what-learn-area .row > .info {
    padding-right: 15px;
    margin-bottom: 30px;
  }

  /* About */
  .about-area .thumb {
    margin-bottom: 30px;
    padding-right: 15px;
  }

  .about-area .our-features .item {
    text-align: center;
    padding: 30px;
  }

  .about-area .our-features .item .info h4 {
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .about-area .our-features .col-md-3:last-child .item,
  .about-area .our-features .col-md-4:last-child .item,
  .about-area .our-features .col-md-6:last-child .item {
    margin-bottom: 0;
  }

  .about-area .our-features .item .icon, 
  .about-area .our-features .item .info {
    display: block;
  }

  .about-area .our-features .item .icon {
    margin-bottom: 20px;
    padding-right: 0;
  }

  .wcs-area.content-default .content {
    margin-top: 30px;
  }

  .wcs-area .thumb, 
  .wcs-area .content {
    display: block;
  }

  .wcs-area .thumb {
    min-height: 350px;
  }

  .wcs-area .content {
    padding: 80px 50px;
  }

  /* Popular Courses */
  .popular-courses .popular-courses-items .owl-nav {
    display: none;
  }

  .popular-courses .popular-courses-items:hover .owl-nav .owl-prev {
    left: 5px;
  }

  .popular-courses .popular-courses-items:hover .owl-nav .owl-next {
    right: 5px;
  }

  .course-details-area .sidebar {
    margin-top: 50px;
    padding-left: 0;
  }


  .clients-review-carousel {
    text-align: center;
    ;
  }

  .clients-review-carousel .item .thumb img {
    border-radius: 50%;
    height: 150px;
    margin: auto auto 30px;
    width: 150px;
  }

  .clients-review-carousel .thumb,
  .clients-review-carousel .info {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonials-area .clients-review-carousel .owl-nav {
    display: none;
  }

  .testimonials-area .clients-review-carousel:hover .owl-nav .owl-prev {
    left: 30px;
  }

  .testimonials-area .clients-review-carousel:hover .owl-nav .owl-next {
    right: 30px;
  }

  
  .contact-info-area .maps-form .form {
    margin-top: 30px;
    padding-left: 15px;
  }

  form.white-popup-block {
    width: 80%;
  }


  footer .f-items .item {
    margin-bottom: 50px;
    padding-right: 15px;
  }

  footer .f-items .item:last-child {
    margin-bottom: 0;
  }

  footer .footer-bottom {
    text-align: center;
  }

  .footer-bottom .col-md-6:first-child {
    padding-left: 15px;
  }

  .footer-bottom .col-md-6:last-child {
    padding-right: 15px;
    text-align: center;
  }

  footer .f-items .f-item.link ul {
    margin-top: -10px;
  }
}


@media only screen and (min-width: 850px) and (max-width: 991px) {

  .popular-courses .popular-courses-items:hover .owl-nav .owl-prev {
    left: -60px;
  }

  .popular-courses .popular-courses-items:hover .owl-nav .owl-next {
    right: -60px;
  }

  .testimonials-area .clients-review-carousel:hover .owl-nav .owl-prev {
    left: -60px;
  }

  .testimonials-area .clients-review-carousel:hover .owl-nav .owl-next {
    right: -60px;
  }
}


@media only screen and (max-width: 767px) {

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
    line-height: 1.4;
  }

  h5, h6 {
    font-size: 14px;
    line-height: 1.4;
  }

  .default-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .padding-xl {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .default-padding.bottom-less {
    padding-bottom: 20px;
    padding-top: 50px;
  }

  .default-padding-bottom {
    padding-bottom: 50px;
  }

  .default-padding-top {
    padding-top: 50px;
  }

  .default-padding.bottom-30 {
    padding-bottom: 0;
    padding-top: 50px;
  }

  .default-padding.bottom-20 {
    padding-bottom: 20px;
    padding-top: 50px;
  }

  .site-heading {
    margin-bottom: 30px;
  }

  .default-padding.carousel-shadow {
    padding-bottom: 35px;
  }

  .seperator .border {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .side {
    width: 320px;
  }

  .top-bar-area {
    display: none;
  }

  .top-bar-area.inc-transparent-nav {
    display: none;
  }

  .top-bar-area .address-info {
    display: none;
  }

  .top-bar-area .address-info li {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: rgba(255, 255, 255, 0.2);
    border-image: none;
    border-style: none none solid;
    border-width: medium medium 1px;
    color: #ffffff;
    display: block;
    font-family: "Poppins",sans-serif;
    line-height: 24px;
    margin-bottom: 15px;
    margin-right: 0;
    padding-bottom: 15px;
    padding-right: 0;
    text-align: center;
  }

  .top-bar-area .user-login {
    text-align: center;
    margin: 10px 0;
  }

  .top-bar-area .user-login a {
    margin: 0 3px;
  }

  .nav-pills {
    text-align: center;
  }

  .nav-pills > li {
    display: block;
    float: none;
  }

  .nav-pills > li button {
    margin-right: 0 !important;
    width: 100%;
  }


  .banner-area.text-normal h3 {
    font-size: 24px;
  }

  .banner-area.text-normal h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
  }

  .banner-area.text-normal.banner-style-four h1,
  .banner-area.text-normal.banner-style-one h1 {
    font-size: 36px;
  }
  

  .banner-area.transparent-nav .content {
    padding-top: 100px;
  }

  .banner-area.auto-height {
    padding: 0;
  }

  .banner-area.auto-height .content {
    padding: 50px 0;
  }

  .banner-area.auto-height.banner-box {
    padding: 0;
  }

  .banner-area.text-default .content h1 {
    font-size: 36px;
  }

  .banner-area form {
    width: 100%;
  }

  .banner-area.banner-box {
    margin: 0;
    border-radius: inherit;
  }

  .banner-area.banner-box .thumb {
    display: none;
  }

  .banner-area.banner-box .content {
    padding: 60px 0;
  }

  .banner-area.standard {
    padding-top: 100px;
    padding-bottom: 50px;
    height: auto !important;
  }

  .banner-area.standard .content-box h1 {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .banner-area.standard .thumb {
    display: none;
  }

  .banner-area.text-normal a {
    margin-left: 0 !important;
  }

  .what-learn-area .row > .info {
    padding-right: 15px;
    margin-bottom: 30px;
  }


  .about-area .thumb {
    margin-bottom: 30px;
    padding-right: 15px;
  }

  .about-area .our-features .item {
    margin-bottom: 30px;
    height: auto;
    text-align: center;
  }

  .about-area .our-features .col-md-3:last-child .item,
  .about-area .our-features .col-md-4:last-child .item,
  .about-area .our-features .col-md-6:last-child .item {
    margin-bottom: 0;
  }

  .about-area .our-features .item .icon, 
  .about-area .our-features .item .info {
    display: block;
  }

  .about-area .our-features .item .icon {
    margin-bottom: 15px;
    padding-right: 0;
  }

  .about-area.inc-trending-courses .about-info {
    padding-right: 15px;
  }
  .wcs-area .site-heading {
    margin-bottom: 20px;
    text-align: center;
  }

  .wcs-area .site-heading h2::before {
    background: #ffb606 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -40px;
    position: absolute;
    width: 40px;
    z-index: 1;
  }

  .wcs-area .site-heading h2::after {
    background: #ffb606 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: 5px;
    position: absolute;
    width: 40px;
  }

  .wcs-area.content-default .content {
    margin-top: 30px;
  }

  .wcs-area .item .icon, .wcs-area .item .info {
    display: block;
    text-align: center;
  }

  .wcs-area .item .icon {
    margin-bottom: 20px;
  }

  .wcs-area .item .info {
    padding-left: 0;
  }

  .wcs-area .thumb, .wcs-area .content {
    display: block;
  }

  .wcs-area .thumb {
    min-height: 300px;
  }

  .wcs-area .content {
    padding: 50px 15px;
  }

  .popular-courses.heading-less.default-padding {
    padding-top: 35px;
  }

  .popular-courses .popular-courses-items .owl-nav {
    display: none;
  }

  .popular-courses .popular-courses-items:hover .owl-nav .owl-prev {
    left: 5px;
  }

  .popular-courses .popular-courses-items:hover .owl-nav .owl-next {
    right: 5px;
  }

  .clients-review-carousel {
    text-align: center;
    ;
  }

  .clients-review-carousel .item .thumb img {
    border-radius: 50%;
    height: 150px;
    margin: auto auto 30px;
    width: 150px;
  }

  .clients-review-carousel .thumb,
  .clients-review-carousel .info {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonials-area .clients-review-carousel .owl-nav {
    display: none;
  }

  .testimonials-area .clients-review-carousel:hover .owl-nav .owl-prev {
    left: 5px;
  }

  .testimonials-area .clients-review-carousel:hover .owl-nav .owl-next {
    right: 5px;
  }

  .contact-info-area .maps-form .form {
    margin-top: 30px;
    padding-left: 15px;
  }

  .contact-info-area .item {
    margin-bottom: 30px;
  }

  .contact-info-area .col-md-4:last-child .item {
    margin-bottom: 0;
  }

  .contact-info-area .maps-form iframe {
    height: 300px;
  }


  form.white-popup-block {
    width: 95%;
  }

  form.white-popup-block .lost-pass-link {
    float: left;
    text-decoration: underline;
  }

  form.white-popup-block label {
    float: left;
    margin-right: 5px;
  }

  footer .f-items .item {
    margin-bottom: 50px;
    padding-right: 15px;
  }

  footer .f-items .item:last-child {
    margin-bottom: 0;
  }

  footer .footer-bottom {
    margin-top: 50px;
    text-align: center;
  }

  .footer-bottom .col-md-6:first-child {
    padding-left: 15px;
  }

  .footer-bottom .col-md-6:last-child {
    padding-right: 15px;
    text-align: center;
  }

  footer .f-items .f-item.link ul {
    margin-top: -10px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  form.white-popup-block .lost-pass-link {
    float: right;
    text-decoration: none;
  }

  form.white-popup-block label {
    float: left;
  }
}

@media only screen and (min-width: 600px) and (max-width: 800px) {

  .portfolio-area .portfolio-items .pf-item,
  .portfolio-area .portfolio-items.colums-2 .pf-item,
  .portfolio-area .portfolio-items.colums-3 .pf-item,
  .portfolio-area .portfolio-items.colums-4 .pf-item,
  .portfolio-area .portfolio-items.colums-6 .pf-item {
    width: 50%;
  }

  .popular-courses .popular-courses-carousel .bottom-info ul {
    width: 100%;
    margin-bottom: 20px;
  }

  .popular-courses .popular-courses-carousel .bottom-info .price-btn {
    display: block;
    float: left;
    padding: 0;
  }

  .popular-courses .popular-courses-carousel .bottom-info a {
    float: left;
  }
}

@media only screen and (max-width: 480px) {
  .popular-courses .bottom-info ul {
    width: 100%;
    margin-bottom: 20px;
  }

  .popular-courses .popular-courses-items.bottom-price .bottom-info ul {
    width: auto;
  }

  .popular-courses .bottom-info a {
    float: left;
  }

  .popular-courses .bottom-info .price-btn {
    display: block;
    float: left;
    padding: 0;
  }

  .popular-courses .popular-courses-items.bottom-price .bottom-info .price-btn {
    float: right;
    padding: 5px 0;
  }
}

@media only screen and (max-width: 600px) {

.course-offer-area .offer-box .info .item {
  width: 50%;
}

}