/*
	Template Name: Aduca
	Version: 4.1.3
	Author: TechyDevs
	Author Email: contact@techydevs.com
	Description: Aduca - Education HTML5 Template

*/
/*------------------------------------------------------------------
[Table of contents]
	+ General
		- Global Styles
		- general Styles
		- Preloader
		- Back To Top
		- theme-btn
		- section-heading
		- Move bg
		- Move bg 2
		- section divider
	+ Header
		- Logo
		- Category
		- Seach form
		- Main Navigation
		- Dropdown
		- Offcanvas menu
		- Admission
	+ Content
		+ Main Files
			- index.html
			- home-2.html
		+ Banner Area
			- Breadcrumb
	    + About
	        - About us
	    + Courses
	        - Course Grid
	        - Course Detail
		+ Pages
			- Teacher
			- Teacher Detail
			- FAQs
			- Admission
			- Gallery
			- Pricing Table
			- Sing up
			- Log in
			- Error 404 page
		+ Blog
		    - Blog Grid
		    - Blog Single
		+ Contact
		    - Contact
	+ Footer
		+ Top Footer
			- Logo
			- Company
			- Courses
			- Mobile app
		+ Bottom Footer
		    - Copyright
		    - Language Select
	+ Responsive Design Styles
            - $laptop_ls: 'only screen and (min-width: 320px) and (max-width: 1919px)';
            - $laptop_l: '(max-width: 1440px)';
            - $laptop_m: '(max-width: 1366px)';
            - $laptop_m_two: '(max-width: 1280px)';
            - $laptop_m_three: '(max-width: 1200px)';
            - $laptop_m_four: '(max-width: 1199px)';
            - $laptop_m_five: '(max-width: 1024px)';
            - $laptop_m_six: '(min-width: 1200px)';
            - $medium_device: 'only screen and (min-width: 992px) and (max-width: 1200px)';
            - $tab_device: 'only screen and (min-width: 768px) and (max-width: 991px)';
            - $tab_device-and-mobile: 'only screen and (min-width: 320px) and (max-width: 990px)';
            - $tab_device_two: '(max-width: 768px)';
            - $tab_device_three: '(max-width: 991px)';
            - $tab_device_four: '(min-width: 991px)';
            - $large_mobile: 'only screen and (min-width: 480px) and (max-width: 767px)';
            - $large_mobile: ' (max-width: 600px)';
            - $large_mobile: ' (max-width: 575px)';
            - $large_mobile: ' (max-width: 480px)';
            - $small_mobile: 'only screen and (min-width: 320px) and (max-width: 479px)';
            - $small_mobile: ' (max-width: 425px)';
            - $small_mobile: '(max-width: 400px)';
            - $small_mobile: '(max-width: 320px)';
            - $small_mobile: '(max-width: 375px)';
            - $device-1600: '(max-width: 1600px)';
            - $device-767: '(max-width: 767px)';
            - $device-992: '(max-width: 992px)';
            - $device-767: '(max-width: 767px)';
            - $device-481: '(max-width: 481px)';
            - $device-384: '(max-width: 384px)';
-------------------------------------------------------------------*/
/*==== font size ====*/
/*==== font weight ====*/
/*==== color ====*/
/*---------------- css loader ----------------*/
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
/*---------------- dot-move ----------------*/
@-webkit-keyframes dot-move {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(88px);
    transform: translateX(88px);
  }
}
@-webkit-keyframes dot-move {
  from {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -ms-transform: translateX(88px);
    transform: translateX(88px);
  }
}
@keyframes dot-move {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(88px);
    transform: translateX(88px);
  }
}
/*---------------- dot-move 2 ----------------*/
@-webkit-keyframes dot-move2 {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(48px);
    transform: translateX(48px);
  }
}
@-webkit-keyframes dot-move2 {
  from {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -ms-transform: translateX(48px);
    transform: translateX(48px);
  }
}
@keyframes dot-move2 {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(48px);
    transform: translateX(48px);
  }
}
/*============== play-button-pulse ==============*/
@-webkit-keyframes play-button-pulse {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@-moz-keyframes play-button-pulse {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@-ms-keyframes play-button-pulse {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@-o-keyframes play-button-pulse {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes play-button-pulse {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes blink {
  50% {
    opacity: 1;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

a:hover,
a:focus {
  text-decoration: none !important;
}

button:focus,
input:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #233d63;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

body {
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  color: #7f8897;
  position: relative;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
}

.cursor-pointer {
  cursor: pointer;
}

.z-index-n1 {
  z-index: -1;
}

.z-index-6 {
  z-index: 6 !important;
}

/*===== container =======*/
.container {
  max-width: 1200px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
/*====== position =======*/
.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

/*====== opacity =======*/
.opacity-1 {
  opacity: 0.1 !important;
}

.opacity-2 {
  opacity: 0.2 !important;
}

.opacity-3 {
  opacity: 0.3 !important;
}

.opacity-4 {
  opacity: 0.4 !important;
}

.opacity-5 {
  opacity: 0.5 !important;
}

.opacity-6 {
  opacity: 0.6 !important;
}

/*====== font-family =======*/
.theme-font-2 {
  font-family: "Noto Serif JP", serif !important;
}

/*====== hover effect =======*/
.hover-y,
.hover-s {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.hover-y:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

.hover-s:hover {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
}

/*====== bg =======*/
.bg-gray {
  background-color: #f7f7ff !important;
}

.bg-1 {
  background-color: #ec5252 !important;
}

.bg-2 {
  background-color: #7e3cf9 !important;
}

.bg-3 {
  background-color: #f68a03 !important;
}

.bg-4 {
  background-color: #358ff7 !important;
}

.bg-5 {
  background-color: #38bb0c !important;
}

.bg-6 {
  background-color: #dd493d !important;
}

.bg-7 {
  background-color: #3e5b99 !important;
}

.bg-gradient {
  /*background: #00d2ff;  !* fallback for old browsers *!
  background: -webkit-linear-gradient(to right, #928DAB, #00d2ff);  !* Chrome 10-25, Safari 5.1-6 *!
  background: linear-gradient(to right, #928DAB, #00d2ff); !* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ *!*/
  background: -moz-linear-gradient(-45deg, #ec5252 0%, #f58585 100%);
  background: -webkit-linear-gradient(-45deg, #ec5252 0%, #f58585 100%);
  background: linear-gradient(135deg, #ec5252 0%, #f58585 100%);
}

.bg-radial-gradient-gray {
  background: rgb(246, 246, 246) !important;
  background: radial-gradient(circle, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 88%) !important;
}

/*====== color =======*/
.text-black {
  color: #233d63 !important;
}

.text-gray {
  color: #7f8897 !important;
}

.text-color {
  color: #ec5252 !important;
}

.text-color-2 {
  color: #7e3cf9 !important;
}

.text-color-3 {
  color: #f68a03 !important;
}

.text-color-4 {
  color: #358ff7 !important;
}

.text-color-5 {
  color: #38bb0c !important;
}

.text-color-6 {
  color: #dd493d !important;
}

.text-color-7 {
  color: #3e5b99 !important;
}

.text-color-8 {
  color: #3aaae1 !important;
}

.svg-icon-color-gray path {
  fill: #7f8897;
}

.svg-icon-color-white path {
  fill: #fff;
}

.svg-icon-color-1 path {
  fill: #7e3cf9;
}

.svg-icon-color-2 path {
  fill: #f68a03;
}

.svg-icon-color-3 path {
  fill: #358ff7;
}

.svg-icon-color-4 path {
  fill: #38bb0c;
}

.svg-icon-color-5 path {
  fill: #dd493d;
}

.svg-icon-color-6 path {
  fill: #3e5b99;
}

.svg-icon-color-7 path {
  fill: #3aaae1;
}

/*====== border color =======*/
.border-gray {
  border-color: rgba(128, 137, 150, 0.1) !important;
}

.border-top-gray {
  border-top-color: rgba(128, 137, 150, 0.1) !important;
}

.border-right-gray {
  border-right-color: rgba(128, 137, 150, 0.1) !important;
}

.border-bottom-gray {
  border-bottom-color: rgba(128, 137, 150, 0.1) !important;
}

.border-left-gray {
  border-left-color: rgba(128, 137, 150, 0.1) !important;
}

/*====== width =======*/
.w-50px {
  width: 50px !important;
}

.w-60px {
  width: 60px !important;
}

.w-70px {
  width: 70px !important;
}

.w-80px {
  width: 80px !important;
}

.w-90px {
  width: 90px !important;
}

.w-100px {
  width: 100px !important;
}

/*====== padding =======*/
.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section--padding {
  padding-top: 120px;
  padding-bottom: 90px;
}

/*====== padding top =======*/
.pt-200px {
  padding-top: 200px !important;
}

.pt-190px {
  padding-top: 190px !important;
}

.pt-180px {
  padding-top: 180px !important;
}

.pt-170px {
  padding-top: 170px !important;
}

.pt-160px {
  padding-top: 160px !important;
}

.pt-150px {
  padding-top: 150px !important;
}

.pt-140px {
  padding-top: 140px !important;
}

.pt-130px {
  padding-top: 130px !important;
}

.pt-120px {
  padding-top: 120px !important;
}

.pt-115px {
  padding-top: 115px !important;
}

.pt-110px {
  padding-top: 110px !important;
}

.pt-100px {
  padding-top: 100px !important;
}

.pt-95px {
  padding-top: 95px !important;
}

.pt-90px {
  padding-top: 90px !important;
}

.pt-85px {
  padding-top: 85px !important;
}

.pt-80px {
  padding-top: 80px !important;
}

.pt-75px {
  padding-top: 75px !important;
}

.pt-70px {
  padding-top: 70px !important;
}

.pt-60px {
  padding-top: 60px !important;
}

.pt-50px {
  padding-top: 50px !important;
}

.pt-50px {
  padding-top: 50px !important;
}

.pt-45px {
  padding-top: 45px !important;
}

.pt-40px {
  padding-top: 40px !important;
}

.pt-35px {
  padding-top: 35px !important;
}

.pt-30px {
  padding-top: 30px !important;
}

.pt-20px {
  padding-top: 20px !important;
}

.pt-10px {
  padding-top: 10px !important;
}

/*====== padding bottom =======*/
.pb-200px {
  padding-bottom: 200px !important;
}

.pb-190px {
  padding-bottom: 190px !important;
}

.pb-180px {
  padding-bottom: 180px !important;
}

.pb-170px {
  padding-bottom: 170px !important;
}

.pb-160px {
  padding-bottom: 160px !important;
}

.pb-150px {
  padding-bottom: 150px !important;
}

.pb-140px {
  padding-bottom: 140px !important;
}

.pb-130px {
  padding-bottom: 130px !important;
}

.pb-120px {
  padding-bottom: 120px !important;
}

.pb-115px {
  padding-bottom: 115px !important;
}

.pb-110px {
  padding-bottom: 110px !important;
}

.pb-100px {
  padding-bottom: 100px !important;
}

.pb-95px {
  padding-bottom: 95px !important;
}

.pb-90px {
  padding-bottom: 90px !important;
}

.pb-85px {
  padding-bottom: 85px !important;
}

.pb-80px {
  padding-bottom: 80px !important;
}

.pb-75px {
  padding-bottom: 75px !important;
}

.pb-70px {
  padding-bottom: 70px !important;
}

.pb-60px {
  padding-bottom: 60px !important;
}

.pb-50px {
  padding-bottom: 50px !important;
}

.pb-45px {
  padding-bottom: 45px !important;
}

.pb-40px {
  padding-bottom: 40px !important;
}

.pb-35px {
  padding-bottom: 35px !important;
}

.pb-30px {
  padding-bottom: 30px !important;
}

.pb-20px {
  padding-bottom: 20px !important;
}

.pb-10px {
  padding-bottom: 10px !important;
}

/*======= padding right ========*/
.pe-150px {
  padding-right: 150px !important;
}

.pe-140px {
  padding-right: 140px !important;
}

.pe-130px {
  padding-right: 130px !important;
}

.pe-120px {
  padding-right: 120px !important;
}

.pe-110px {
  padding-right: 110px !important;
}

.pe-100px {
  padding-right: 100px !important;
}

.pe-95px {
  padding-right: 95px !important;
}

.pe-90px {
  padding-right: 90px !important;
}

.pe-85px {
  padding-right: 85px !important;
}

.pe-80px {
  padding-right: 80px !important;
}

.pe-70px {
  padding-right: 70px !important;
}

.pe-60px {
  padding-right: 60px !important;
}

.pe-55px {
  padding-right: 55px !important;
}

.pe-50px {
  padding-right: 50px !important;
}

.pe-45px {
  padding-right: 45px !important;
}

.pe-40px {
  padding-right: 40px !important;
}

.pe-30px {
  padding-right: 30px !important;
}

/*======== padding left ========*/
.ps-150px {
  padding-left: 150px !important;
}

.ps-140px {
  padding-left: 140px !important;
}

.ps-130px {
  padding-left: 130px !important;
}

.ps-120px {
  padding-left: 120px !important;
}

.ps-110px {
  padding-left: 110px !important;
}

.ps-100px {
  padding-left: 100px !important;
}

.ps-95px {
  padding-left: 95px !important;
}

.ps-90px {
  padding-left: 90px !important;
}

.ps-85px {
  padding-left: 85px !important;
}

.ps-80px {
  padding-left: 80px !important;
}

.ps-70px {
  padding-left: 70px !important;
}

.ps-60px {
  padding-left: 60px !important;
}

.ps-55px {
  padding-left: 55px !important;
}

.ps-50px {
  padding-left: 50px !important;
}

.ps-45px {
  padding-left: 45px !important;
}

.ps-40px {
  padding-left: 40px !important;
}

.ps-30px {
  padding-left: 30px !important;
}

/*===== margin top ====*/
.mt-200px {
  margin-top: 200px;
}

.mt-190px {
  margin-top: 190px;
}

.mt-180px {
  margin-top: 180px;
}

.mt-160px {
  margin-top: 160px;
}

.mt-150px {
  margin-top: 150px;
}

.mt-140px {
  margin-top: 140px;
}

.mt-130px {
  margin-top: 130px;
}

.mt-120px {
  margin-top: 120px;
}

.mt-110px {
  margin-top: 110px;
}

.mt-100px {
  margin-top: 100px;
}

.mt-95px {
  margin-top: 95px;
}

.mt-90px {
  margin-top: 90px;
}

.mt-85px {
  margin-top: 85px;
}

.mt-80px {
  margin-top: 80px;
}

.mt-70px {
  margin-top: 70px;
}

.mt-60px {
  margin-top: 60px;
}

.mt-55px {
  margin-top: 55px;
}

.mt-50px {
  margin-top: 50px;
}

.mt-45px {
  margin-top: 45px;
}

.mt-40px {
  margin-top: 40px;
}

.mt-35px {
  margin-top: 35px;
}

.mt-30px {
  margin-top: 30px;
}

.mt-28px {
  margin-top: 28px;
}

.mt-20px {
  margin-top: 20px;
}

.mt-10px {
  margin-top: 10px;
}

.mt-5px {
  margin-top: 5px;
}

/*======= margin bottom =======*/
.mb-200px {
  margin-bottom: 200px;
}

.mb-190px {
  margin-bottom: 190px;
}

.mb-180px {
  margin-bottom: 180px;
}

.mb-170px {
  margin-bottom: 170px;
}

.mb-160px {
  margin-bottom: 160px;
}

.mb-150px {
  margin-bottom: 150px;
}

.mb-140px {
  margin-bottom: 140px;
}

.mb-130px {
  margin-bottom: 130px;
}

.mb-120px {
  margin-bottom: 120px;
}

.mb-110px {
  margin-bottom: 110px;
}

.mb-100px {
  margin-bottom: 100px;
}

.mb-95px {
  margin-bottom: 95px;
}

.mb-90px {
  margin-bottom: 90px;
}

.mb-85px {
  margin-bottom: 85px;
}

.mb-80px {
  margin-bottom: 80px;
}

.mb-70px {
  margin-bottom: 70px;
}

.mb-60px {
  margin-bottom: 60px;
}

.mb-50px {
  margin-bottom: 50px;
}

.mb-55px {
  margin-bottom: 55px;
}

.mb-45px {
  margin-bottom: 45px;
}

.mb-40px {
  margin-bottom: 40px;
}

.mb-35px {
  margin-bottom: 35px;
}

.mb-30px {
  margin-bottom: 30px;
}

.mb-28px {
  margin-bottom: 28px;
}

.mb-20px {
  margin-bottom: 20px;
}

.mb-10px {
  margin-bottom: 10px;
}

.mb-5px {
  margin-bottom: 5px;
}

/*======= border radius =======*/
.rounded-rounded {
  -webkit-border-radius: 12px !important;
  -moz-border-radius: 12px !important;
  border-radius: 12px !important;
}

.rounded-pill {
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
}

.rounded--pill {
  -webkit-border-radius: 100px !important;
  -moz-border-radius: 100px !important;
  border-radius: 100px !important;
}

.rounded-full {
  -webkit-border-radius: 100% !important;
  -moz-border-radius: 100% !important;
  border-radius: 100% !important;
}

/*======= before after none =======*/
.after-none::after {
  display: none !important;
}

.before-none::before {
  display: none !important;
}

.before-after-none::before, .before-after-none::after {
  display: none !important;
}

/*========== font size ========*/
.fs-80 {
  font-size: 80px !important;
}

.fs-70 {
  font-size: 70px !important;
}

.fs-65 {
  font-size: 65px !important;
}

.fs-60 {
  font-size: 60px !important;
}

.fs-55 {
  font-size: 55px !important;
}

.fs-50 {
  font-size: 50px !important;
}

.fs-45 {
  font-size: 45px !important;
}

.fs-40 {
  font-size: 40px !important;
}

.fs-35 {
  font-size: 35px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-27 {
  font-size: 27px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-25 {
  font-size: 25px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-23 {
  font-size: 23px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-21 {
  font-size: 21px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-11 {
  font-size: 11px !important;
}

/*======== font-weight =======*/
.font-weight-thin {
  font-weight: 100 !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-regular {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semi-bold {
  font-weight: 600 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-black {
  font-weight: 800 !important;
}

/*========== line-height ===========*/
.lh-90 {
  line-height: 90px !important;
}

.lh-85 {
  line-height: 85px !important;
}

.lh-80 {
  line-height: 80px !important;
}

.lh-75 {
  line-height: 75px !important;
}

.lh-70 {
  line-height: 70px !important;
}

.lh-65 {
  line-height: 65px !important;
}

.lh-60 {
  line-height: 60px !important;
}

.lh-58 {
  line-height: 58px !important;
}

.lh-57 {
  line-height: 57px !important;
}

.lh-56 {
  line-height: 56px !important;
}

.lh-55 {
  line-height: 55px !important;
}

.lh-52 {
  line-height: 52px !important;
}

.lh-50 {
  line-height: 50px !important;
}

.lh-48 {
  line-height: 48px !important;
}

.lh-46 {
  line-height: 46px !important;
}

.lh-45 {
  line-height: 45px !important;
}

.lh-40 {
  line-height: 40px !important;
}

.lh-35 {
  line-height: 35px !important;
}

.lh-30 {
  line-height: 30px !important;
}

.lh-28 {
  line-height: 28px !important;
}

.lh-27 {
  line-height: 27px !important;
}

.lh-26 {
  line-height: 26px !important;
}

.lh-25 {
  line-height: 25px !important;
}

.lh-24 {
  line-height: 24px !important;
}

.lh-22 {
  line-height: 22px !important;
}

.lh-20 {
  line-height: 20px !important;
}

.lh-18 {
  line-height: 18px !important;
}

/*-================== loading-area ==============-*/
.preloader {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader .spinner {
  animation: rotate 2s linear infinite;
  z-index: 2;
  width: 50px;
  height: 50px;
}
.loader .spinner .path {
  stroke: #ec5252;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

/*======== section-block =========*/
.section-block {
  height: 1px;
  background-color: rgba(127, 136, 151, 0.1);
}

.hover-underline:hover {
  text-decoration: underline !important;
}

/*======== divider =========*/
.divider {
  border-bottom: 1px solid rgba(128, 137, 150, 0.1);
  height: 1px;
  margin: 0.5em 0 1.5em;
}
.divider span {
  display: block;
  width: 50px;
  height: 1px;
  background-color: #ec5252;
}

/*======== ribbon =========*/
.ribbon {
  display: inline-block;
  padding-right: 8px;
  padding-left: 8px;
  line-height: 22px;
  background-color: rgba(246, 138, 3, 0.1);
  color: #f68a03;
  font-size: 11px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.ribbon-white {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ribbon-lg {
  font-size: 16px;
  padding-right: 12px;
  padding-left: 12px;
  line-height: 28px;
}

.ribbon-blue-bg {
  background: rgba(53, 143, 247, 0.1) !important;
  color: #358ff7 !important;
}

/*===== link =====*/
a {
  text-decoration: none;
}

/*===== tooltip-inner =====*/
.tooltip-inner {
  background-color: #fff;
  color: #233d63;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-weight: 500;
}

.tooltip.bs-tooltip-right .arrow:before {
  border-right-color: #fff !important;
}

.tooltip.bs-tooltip-left .arrow:before {
  border-left-color: #fff !important;
}

.tooltip.bs-tooltip-auto .tooltip-arrow:before {
  border-top-color: #fff !important;
}

.tooltip.bs-tooltip-bottom .arrow:before {
  border-bottom-color: #fff !important;
}

.tooltip.bs-tooltip-top .arrow:before {
  border-top-color: #fff !important;
}

/*---------------- section-heading ----------------*/
.section-heading {
  position: relative;
  z-index: 1;
}

.section__title {
  font-size: 35px;
  font-weight: 700;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .section__title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .section__title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .section__title.fs-70 {
    font-size: 45px !important;
  }
}

.section__desc {
  line-height: 32px;
  font-size: 18px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section__title br,
  .section__desc br {
    display: none;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .section__title br,
  .section__desc br {
    display: none;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .section__title br,
  .section__desc br {
    display: none;
  }
}

/*======== section-divider ========*/
.section-divider {
  display: inline-block;
  position: relative;
  height: 5px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: #ec5252;
  width: 90px;
  margin-top: 25px;
  margin-bottom: 25px;
  overflow: hidden;
}
.section-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: #fff;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: dot-move;
  animation-name: dot-move;
}

/*======= section--divider =======*/
.section--divider {
  width: 50px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.section--divider:after {
  top: -0.1px;
  width: 5px;
  -webkit-animation-name: dot-move2;
  animation-name: dot-move2;
}

/*======= section-divider-white =======*/
.section-divider-white {
  background-color: rgba(255, 255, 255, 0.1);
}

/*====================================================
    input-number-group
 ====================================================*/
.input-number-group {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.input-number-group input[type=number]::-webkit-inner-spin-button,
.input-number-group input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}
.input-number-group .input-number {
  outline: none;
  display: block;
  text-align: center;
  border: none;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.input-number-group .input-number,
.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
  background-color: rgba(127, 136, 151, 0.1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 600;
  font-size: 18px;
  color: #233d63;
}
.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.input-number-group .input-number-decrement:hover,
.input-number-group .input-number-increment:hover {
  background-color: #ec5252;
  color: #fff;
}
.input-number-group .input-number-decrement {
  margin-right: 0.5rem;
  margin-left: 1rem;
  font-size: 30px;
}
.input-number-group .input-number-increment {
  margin-left: 0.5rem;
  font-size: 22px;
}

/*========= review-stars =========*/
.review-stars span {
  color: #f68a03;
  margin-left: -3px;
}
.review-stars span.rating-number {
  margin-left: 0;
  margin-right: 3px;
  color: #233d63;
  font-weight: 600;
}

/*========= before-price =========*/
.before-price {
  font-size: 16px;
  margin-right: 3px;
  color: #7f8897;
  text-decoration: line-through;
}

/*========= price-discount =========*/
.price-discount {
  color: #7f8897;
}

/*======== label =========*/
label {
  margin-bottom: 8px;
}

/*======== form-group =========*/
.form-group {
  margin-bottom: 16px;
}

/*======== generic-list-item =========*/
.generic-list-item li {
  color: #7f8897;
  line-height: 24px;
  margin-bottom: 10px;
}
.generic-list-item li a {
  text-decoration: none !important;
  color: #7f8897;
  display: block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.generic-list-item li a:hover {
  color: #ec5252;
}

/*============ generic-list-item-bullet =========*/
.generic-list-item-bullet li {
  position: relative;
  padding-left: 16px;
}
.generic-list-item-bullet li::after {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background-color: rgba(128, 137, 150, 0.6);
}

/*============ generic-list-item--bullet =========*/
.generic-list-item--bullet li {
  padding-right: 14px;
}
.generic-list-item--bullet li:first-child {
  padding-left: 0;
}
.generic-list-item--bullet li:first-child::after {
  display: none;
}

/*======== generic-list-item-white =========*/
.generic-list-item-white li {
  color: rgba(255, 255, 255, 0.8);
}
.generic-list-item-white li a {
  color: rgba(255, 255, 255, 0.8);
}
.generic-list-item-white li a:hover {
  color: #ec5252;
}

/*======== generic-list-item-arrow =========*/
.generic-list-item-arrow li {
  position: relative;
  padding-left: 12px;
  margin-left: 12px;
}
.generic-list-item-arrow li:first-child {
  padding-left: 0;
  margin-left: 0;
}
.generic-list-item-arrow li:first-child::after {
  display: none;
}
.generic-list-item-arrow li::after {
  position: absolute;
  content: "\f105";
  top: 1px;
  left: -7px;
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 14px;
}

/*====== generic-list-item-boxed =====*/
.generic-list-item-boxed li {
  border: 1px solid rgba(128, 137, 150, 0.2);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.generic-list-item-boxed li a {
  padding: 8px 18px;
}
.generic-list-item-boxed li:hover {
  border-color: #ec5252;
}

/*====== generic-list-item-flash =====*/
.generic-list-item-flash li {
  border-bottom: 1px solid rgba(128, 137, 150, 0.1);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.generic-list-item-flash li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

/*====== social-icons =====*/
.social-icons li {
  display: inline-block;
  margin-right: 10px;
}
.social-icons li a {
  color: #233d63;
  display: block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.social-icons li a:hover {
  color: #ec5252;
}

/*====== social-icons-styled =====*/
.social-icons-styled li a {
  color: #233d63;
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(35, 61, 99, 0.1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.social-icons-styled li a:hover {
  color: #fff;
  background-color: #ec5252;
}
.social-icons-styled li a.facebook-bg, .social-icons-styled li a.twitter-bg, .social-icons-styled li a.instagram-bg, .social-icons-styled li a.linkedin-bg, .social-icons-styled li a.youtube-bg {
  color: #fff;
}
.social-icons-styled li a.facebook-bg {
  background-color: #3e5b99;
}
.social-icons-styled li a.twitter-bg {
  background-color: #3aaae1;
}
.social-icons-styled li a.instagram-bg {
  background-color: #dd493d;
}
.social-icons-styled li a.linkedin-bg {
  background-color: #358ff7;
}
.social-icons-styled li a.youtube-bg {
  background-color: #ff0000;
}

/*=== social--icons-styled ===*/
.social--icons-styled li a {
  background-color: #fff;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.social--icons-styled li a:hover {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  color: #ec5252;
  background-color: #fff;
}

/*=== perticles-bg ===*/
#perticles-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.invite-icon {
  margin-top: -55px;
}

/* datedropper */
div.datedropper .picker ul.pick .pick-arw {
  font-size: 12px;
}
div.datedropper .picker ul.pick:hover .pick-arw {
  opacity: 1;
}
div.datedropper .picker .pick-lg-b li {
  color: #7f8897;
}

/*========= bootstrap-tagsinput =========*/
.bootstrap-tagsinput {
  display: block;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  line-height: 38px;
  border-color: rgba(127, 136, 151, 0.2);
  font-size: 14px;
}
.bootstrap-tagsinput .tag {
  font-size: 13px;
  font-weight: 500;
  padding: 5px 8px;
}

/*========= cd-words-wrapper =========*/
.cd-words-wrapper b {
  font-weight: 700;
}

/*========= iti =========*/
.iti {
  display: block;
}
.iti .iti__country-list {
  z-index: 8 !important;
}

.iti__selected-flag {
  outline: none;
}

/*=== scroll-top ===*/
#scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #fff;
  color: #7f8897;
  font-size: 18px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  line-height: 40px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  text-align: center;
  cursor: pointer;
  -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.075);
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.075);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#scroll-top:hover {
  background-color: #ec5252;
  color: #fff;
}

/*-========= select-container =========-*/
.select-container {
  position: relative;
  width: 130px;
}
.select-container .bootstrap-select {
  width: 100% !important;
}
.select-container .bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
}
.select-container .bootstrap-select.show .dropdown-toggle {
  border-color: #ec5252;
}
.select-container .show > .btn-light.dropdown-toggle {
  background-color: #fff;
  color: #7f8897;
}
.select-container .dropdown-toggle {
  padding: 12px 20px;
  border-color: rgba(127, 136, 151, 0.2);
  background-color: #fff;
  color: #7f8897;
}
.select-container .dropdown-toggle:focus {
  background-color: #fff;
  outline: none;
}
.select-container .dropdown-menu {
  border-color: rgba(127, 136, 151, 0.2);
}
.select-container .dropdown-menu .bs-searchbox .form-control {
  border-color: rgba(127, 136, 151, 0.2);
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
  padding-left: 8px;
}
.select-container .dropdown-menu .bs-searchbox .form-control:focus {
  border-color: rgba(127, 136, 151, 0.5);
}
.select-container .dropdown-menu .inner::-webkit-scrollbar {
  width: 8px;
}
.select-container .dropdown-menu .inner::-webkit-scrollbar-track {
  background-color: rgba(128, 137, 150, 0.1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.select-container .dropdown-menu .inner::-webkit-scrollbar-thumb {
  background-color: rgba(128, 137, 150, 0.2);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.select-container .dropdown-menu .inner::-webkit-scrollbar-thumb:hover {
  background-color: rgba(128, 137, 150, 0.6);
}
.select-container .dropdown-item {
  color: #7f8897;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding-right: 15px;
  padding-left: 15px;
}
.select-container .dropdown-item.active {
  background-color: #ec5252;
  color: #fff;
}
.select-container .dropdown-item.active:hover {
  color: #fff;
}
.select-container .dropdown-item:focus {
  outline: none !important;
}
.select-container .dropdown-item:hover {
  color: #ec5252;
}

/*-========= select--container =========-*/
.select--container {
  width: 160px;
}
.select--container .dropdown-toggle {
  padding: 8px 16px;
  border: 0;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}

.select-container-sm .dropdown-toggle {
  padding: 6px 12px;
}

/*======= filter-bar =======*/
.course-area .filter-bar .filter-bar-inner .select2-container--default {
  width: 100% !important;
}

.filter-bar {
  background-color: #fff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 20px 20px;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .filter-bar .select-container {
    margin-left: auto;
    margin-right: auto;
  }
}

/*======= filter-nav ========*/
.filter-nav li {
  display: inline-block;
  margin-right: 2px;
}
.filter-nav li:last-child {
  margin-right: 0;
}
.filter-nav li a {
  padding: 3px 8px;
  display: block;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  color: #7f8897;
  font-size: 18px;
}
.filter-nav li a:hover {
  color: #ec5252;
}
.filter-nav li a.active {
  background-color: #ec5252;
  color: #fff;
}

.filter-bar-inner .select2-container--default {
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
  border: 0;
}

/*======= generic-action-wrap ========*/
.generic-action-wrap .action-btn {
  color: rgba(127, 136, 151, 0.7);
  font-size: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.generic-action-wrap .action-btn:hover {
  color: #7f8897;
}
.generic-action-wrap .dropdown-menu {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 10px;
  -webkit-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.05);
  min-width: 140px;
  border-color: rgba(127, 136, 151, 0.1);
}
.generic-action-wrap .dropdown-menu .dropdown-header {
  font-size: 15px;
  padding: 4px 14px;
}
.generic-action-wrap .dropdown-menu .collection-link {
  color: #7f8897;
}
.generic-action-wrap .dropdown-menu .dropdown-item {
  color: #7f8897;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-weight: 500;
  padding: 4px 14px;
  font-size: 15px;
}
.generic-action-wrap .dropdown-menu .dropdown-item:hover {
  background-color: rgba(127, 136, 151, 0.1);
}

.generic--action-wrap .action-btn {
  color: #fff;
  font-size: 30px;
  line-height: 39px;
  border: 1px solid rgba(127, 126, 151, 0.2);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.generic--action-wrap .action-btn:hover {
  border-color: rgba(127, 126, 151, 0.5);
  color: #fff;
}

/*======= generic--action-wrap-2 ========*/
.generic--action-wrap-2 .dropdown-menu {
  min-width: 240px;
}

/*======= generic--action-wrap-3 ========*/
.generic--action-wrap-3 .dropdown-menu {
  min-width: 90px;
}
.generic--action-wrap-3 .dropdown-menu .dropdown-item {
  line-height: 20px;
  font-size: 13px;
}

.collection-link .la {
  color: #ec5252;
}
.collection-link .la.active {
  display: none;
}

/*-====== pagination-box ====-*/
.pagination-box {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  display: inline-block;
  padding: 15px 20px;
}
.pagination-box .page-item {
  margin-right: 5px;
}
.pagination-box .page-item:last-child {
  margin-right: 0;
}
.pagination-box .page-item.active .page-link {
  background-color: #ec5252;
  color: #fff;
}
.pagination-box .page-link {
  border: 0;
  margin-left: 0;
  color: #233d63;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.pagination-box .page-link:hover {
  background-color: rgba(128, 137, 150, 0.1);
}

/*===== typing-director =======*/
.typing-director {
  position: relative;
}
.typing-director span {
  height: 6px;
  width: 6px;
  float: left;
  margin: 0 1px;
  background-color: #7f8897;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  opacity: 0.4;
}
.typing-director span:nth-of-type(1) {
  animation: 1s blink infinite 0.3333s;
}
.typing-director span:nth-of-type(2) {
  animation: 1s blink infinite 0.6666s;
}
.typing-director span:nth-of-type(3) {
  animation: 1s blink infinite 0.9999s;
}

/*===== qty =======*/
.qtyInput {
  width: 40px;
  border: 0;
  text-align: center;
  color: #233d63;
  font-weight: 500;
  pointer-events: none;
  font-size: 17px;
}

.qtyBtn {
  width: 33px;
  height: 33px;
  line-height: 33px;
  font-size: 17px;
  background-color: rgba(128, 137, 150, 0.1);
  color: #233d63;
  text-align: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.qtyBtn:hover {
  background-color: rgba(128, 137, 150, 0.3);
}

/*===== badge =======*/
.text-bg-info {
  color: #fff !important;
}

.d--block {
  display: block !important;
}

/*========= theme-btn ========*/
.theme-btn {
  background-color: #ec5252;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
}
.theme-btn:hover {
  background-color: #ef6767;
  color: #fff;
}
.theme-btn:hover .icon {
  padding-left: 5px;
}

.icon {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*===== theme-btn-white ======*/
.theme-btn-white {
  background-color: #fff;
  color: #233d63;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
}
.theme-btn-white:hover {
  background-color: #ec5252;
  color: #fff;
}
.theme-btn-white:hover svg {
  fill: #f1e77f;
}

/*===== theme-btn-transparent ======*/
.theme-btn-transparent {
  background-color: transparent;
  color: #233d63;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(128, 138, 150, 0.2);
}
.theme-btn-transparent:hover {
  background-color: transparent;
  border-color: rgba(128, 138, 150, 0.5);
  color: #233d63;
}

/*===== theme-btn-sm ======*/
.theme-btn-sm {
  padding: 6px 14px;
  font-size: 14px;
}

/*===== icon-btn ======*/
.icon-btn {
  width: 43px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 22px;
}
.icon-btn:hover {
  background-color: #fff;
  border-color: #fff;
  color: #ec5252;
}

/*===== icon-element ======*/
.icon-element {
  color: #233d63;
  font-size: 40px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 40px rgba(14, 16, 48, 0.07);
  -moz-box-shadow: 0 0 40px rgba(14, 16, 48, 0.07);
  box-shadow: 0 0 40px rgba(14, 16, 48, 0.07);
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}

/*===== icon-element-lg ======*/
.icon-element-lg {
  width: 110px;
  height: 110px;
  line-height: 110px;
  font-size: 50px;
}

/*===== icon-element-md ======*/
.icon-element-md {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 30px;
}

/*===== icon-element-sm ======*/
.icon-element-sm {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
}

/*===== icon-element-xs ======*/
.icon-element-xs {
  width: 33px;
  height: 33px;
  line-height: 33px;
  font-size: 17px;
}

/*===== btn-text ======*/
.btn-text {
  color: #7f8897;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}
.btn-text:hover {
  color: #ec5252;
}
.btn-text:hover .icon-btn {
  background-color: #fff;
  border-color: #fff;
  color: #ec5252;
}

.play-button svg {
  width: 70px;
}

/*==== collapse-btn =====*/
.collapse-btn {
  text-decoration: none;
}
.collapse-btn[aria-expanded=true] .collapse-btn-show {
  display: inline-block;
}
.collapse-btn[aria-expanded=true] .collapse-btn-hide {
  display: none;
}
.collapse-btn[aria-expanded=false] .collapse-btn-show {
  display: none;
}

.collapse--btn {
  color: #7f8897;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.collapse--btn:hover {
  color: #ec5252;
}

.btn--group .btn.active {
  border-color: #ec5252;
}

/*===== theme-picker-btn =====*/
.theme-picker-btn {
  font-size: 14px;
  color: #233d63;
  border: 0;
  outline: none;
  display: inline-flex;
  align-items: center;
  background-color: transparent;
}
.theme-picker-btn:hover svg {
  fill: #f1e77f;
}
.theme-picker-btn svg {
  width: 19px;
  height: 19px;
  fill: transparent;
  stroke: rgba(0, 0, 0, 0.7);
  transition: stroke 0.2s;
}

.light-mode-btn {
  display: none;
}

/*===== input-group-append =====*/
.input-group .input-group-append {
  margin-left: -1px;
  display: flex;
}
.input-group .input-group-append .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/*======== info-box =========*/
.info-box {
  background-color: #fff;
  -webkit-box-shadow: 0 0 40px rgba(14, 16, 48, 0.05);
  -moz-box-shadow: 0 0 40px rgba(14, 16, 48, 0.05);
  box-shadow: 0 0 40px rgba(14, 16, 48, 0.05);
  padding: 50px 40px 42px 40px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  z-index: 1;
  text-align: center;
}
.info-box .info__title {
  font-weight: 600;
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.info-box::before {
  position: absolute;
  content: "";
  top: 30%;
  left: -90px;
  width: 540px;
  height: 540px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transition: all 0.5s ease;
  -webkit-transform: translateY(100%) rotate(10deg);
  -moz-transform: translateY(100%) rotate(10deg);
  -ms-transform: translateY(100%) rotate(10deg);
  -o-transform: translateY(100%) rotate(10deg);
  transform: translateY(100%) rotate(10deg);
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .info-box::before {
    width: 640px;
  }
}
.info-box:hover {
  border-color: #ec5252;
  background-color: #ec5252;
}
.info-box:hover .info__title,
.info-box:hover .info__text {
  color: #fff;
}
.info-box:hover:before {
  transition-delay: 0.2s;
  -webkit-transform: translateY(0) rotate(10deg);
  -moz-transform: translateY(0) rotate(10deg);
  -ms-transform: translateY(0) rotate(10deg);
  -o-transform: translateY(0) rotate(10deg);
  transform: translateY(0) rotate(10deg);
}
.info-box:hover .info-overlay::before, .info-box:hover .info-overlay::after {
  -webkit-transform: translateY(0) rotate(10deg);
  -moz-transform: translateY(0) rotate(10deg);
  -ms-transform: translateY(0) rotate(10deg);
  -o-transform: translateY(0) rotate(10deg);
  transform: translateY(0) rotate(10deg);
}
.info-box:hover .info-overlay::after {
  transition-delay: 0.1s;
}

/*======== info--box =========*/
.info--box {
  overflow: inherit;
  text-align: left;
}
.info--box::before {
  display: none;
}
.info--box:hover {
  background-color: #fff;
}
.info--box:hover .info__title {
  color: #233d63;
}
.info--box:hover .info__text {
  color: #7f8897;
}
.info--box:hover::before {
  -webkit-transform: translateY(0) rotate(0deg);
  -moz-transform: translateY(0) rotate(0deg);
  -ms-transform: translateY(0) rotate(0deg);
  -o-transform: translateY(0) rotate(0deg);
  transform: translateY(0) rotate(0deg);
}

/*======== info--box-2 =========*/
.info--box-2 {
  padding: 40px 20px;
  text-align: center;
}
.info--box-2::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 70px;
  height: 4px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #7f8897;
  opacity: 0.2;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.info--box-2.border-red::after {
  background-color: #ec5252;
}
.info--box-2.border-purple::after {
  background-color: #7e3cf9;
}
.info--box-2.border-yellow::after {
  background-color: #f68a03;
}
.info--box-2.border-blue::after {
  background-color: #358ff7;
}
.info--box-2:hover::after {
  opacity: 1;
}

/*======== info-overlay =========*/
.info-overlay:before, .info-overlay:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -90px;
  width: 540px;
  height: 540px;
  z-index: -1;
  transition: all 0.5s ease;
  -webkit-transform: translateY(100%) rotate(10deg);
  -moz-transform: translateY(100%) rotate(10deg);
  -ms-transform: translateY(100%) rotate(10deg);
  -o-transform: translateY(100%) rotate(10deg);
  transform: translateY(100%) rotate(10deg);
  background-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .info-overlay:before, .info-overlay:after {
    width: 640px;
  }
}
.info-overlay:after {
  top: 70%;
  background-color: rgba(255, 255, 255, 0.3);
}

/*======== info-box-layout-2 =========*/
.info-area {
  position: relative;
}
.info-area:after {
  position: absolute;
  content: "";
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  -o-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  width: 60px;
  height: 60px;
  background-color: #7f8897;
}

/*========== generic-accordion =========*/
.generic-accordion .generic-list-item li {
  font-size: 15px;
  color: rgba(35, 61, 99, 0.8);
  font-weight: 400;
}
.generic-accordion .generic-list-item li:last-child {
  margin-bottom: 0;
}
.generic-accordion .card {
  border: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.generic-accordion .card-header {
  padding: 0;
  background-color: transparent;
  border-bottom: 0;
}
.generic-accordion .card-header .btn {
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 10px 20px 10px 50px;
  text-align: left;
  color: #233d63;
  text-decoration: none;
  font-size: 17px;
  position: relative;
  font-weight: 600;
  background-color: rgba(127, 136, 151, 0.07);
  border: 0;
}
.generic-accordion .card-header .btn[aria-expanded=true] .la-angle-up,
.generic-accordion .card-header .btn[aria-expanded=true] .la-minus {
  display: block;
}
.generic-accordion .card-header .btn[aria-expanded=false] .la-angle-down,
.generic-accordion .card-header .btn[aria-expanded=false] .la-plus {
  display: block;
}
.generic-accordion .card-header .btn .la {
  display: none;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
}

/*========== generic--accordion =========*/
.generic--accordion .card-header .btn {
  padding-left: 20px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.generic--accordion .card-header .btn .la {
  left: auto;
  right: 20px;
  font-size: 16px;
}
.generic--accordion .card-header .btn:hover {
  background-color: rgba(127, 136, 151, 0.1);
}
.generic--accordion .card {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.generic--accordion .card:first-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.generic--accordion .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/*========== generic-accordion-layout-2 =========*/
.generic-accordion-layout-2 .card {
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.075);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.075);
  border: 1px solid rgba(128, 137, 150, 0.1);
}
.generic-accordion-layout-2 .card-header .btn {
  padding-top: 17px;
  padding-bottom: 17px;
  background-color: #fff;
}
.generic-accordion-layout-2 .card-header .btn[aria-expanded=true] {
  background-color: #ec5252;
  color: #fff;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .review-wrap .media-card,
  .feedback-wrap .media-card {
    flex-direction: column;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .review-wrap .media-card,
  .feedback-wrap .media-card {
    flex-direction: column;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .review-wrap .media-body,
  .feedback-wrap .media-body {
    width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .review-wrap .media-body,
  .feedback-wrap .media-body {
    width: 100%;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .review-wrap .media-img {
    margin-right: 0 !important;
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .review-wrap .media-img {
    margin-right: 0 !important;
    margin-bottom: 16px;
  }
}

.review-rating-summary {
  width: 180px;
  text-align: center;
  border-right: 1px solid rgba(128, 137, 150, 0.1);
  padding-right: 30px;
  margin-right: 40px;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .review-rating-summary {
    width: 100%;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 40px;
    border-right: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .review-rating-summary {
    width: 100%;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 40px;
    border-right: 0;
  }
}

.stats-average__count {
  color: #f68a03;
  font-size: 65px;
  font-weight: 700;
}

.review-bars {
  position: relative;
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .review-bars {
    flex-direction: column;
  }
}

.review-bars__text {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  margin-right: 15px;
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .review-bars__text {
    width: 100%;
    text-align: left;
    margin-right: 0;
    margin-bottom: 8px;
  }
}

.review-bars__fill {
  width: 400px;
  margin-right: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .review-bars__fill {
    width: 320px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .review-bars__fill {
    width: 320px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .review-bars__fill {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }
}

.review-bars__percent {
  opacity: 0.8;
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .review-bars__percent {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/*======== leave-rating =======*/
.leave-rating {
  width: auto;
  display: inline-block;
  position: relative;
}
.leave-rating input {
  display: none;
}
.leave-rating input:checked ~ label::before {
  color: #f68a03;
}
.leave-rating input:nth-of-type(5):checked ~ .rating-result-text::before {
  content: "Awful!";
}
.leave-rating input:nth-of-type(4):checked ~ .rating-result-text::before {
  content: "Poor!";
}
.leave-rating input:nth-of-type(3):checked ~ .rating-result-text::before {
  content: "Average!";
}
.leave-rating input:nth-of-type(2):checked ~ .rating-result-text::before {
  content: "Good!";
}
.leave-rating input:nth-of-type(1):checked ~ .rating-result-text::before {
  content: "Amazing!!";
}
.leave-rating label {
  float: right;
  display: inline-block;
  position: relative;
  padding-right: 8px;
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 0;
}
.leave-rating label::before {
  content: "\f005";
  color: rgba(128, 137, 150, 0.4);
  font-family: "Line Awesome Free";
  font-weight: 900;
}
.leave-rating label:hover ~ label::before {
  color: #f68a03;
}
.leave-rating label:hover::before {
  color: #f68a03;
}
.leave-rating label:nth-of-type(5):hover ~ .rating-result-text::before {
  content: "Awful!";
}
.leave-rating label:nth-of-type(4):hover ~ .rating-result-text::before {
  content: "Poor!";
}
.leave-rating label:nth-of-type(3):hover ~ .rating-result-text::before {
  content: "Average!";
}
.leave-rating label:nth-of-type(2):hover ~ .rating-result-text::before {
  content: "Good!";
}
.leave-rating label:nth-of-type(1):hover ~ .rating-result-text::before {
  content: "Amazing!!";
}

/*======= leave--rating =======*/
.leave--rating {
  background-color: rgba(128, 137, 150, 0.1);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 10px 18px;
}

/*======= rating-result-text =======*/
.rating-result-text {
  color: #233d63;
  padding-bottom: 10px;
  position: absolute;
  width: 100%;
  bottom: 100%;
}
.rating-result-text::before {
  content: "Select Rating";
}

/*==== category-item =====*/
.category-item {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.category-item .cat__img {
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.category-item .category-content {
  position: absolute;
  text-align: center;
  padding-top: 50px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.category-item .cat__title {
  color: #fff;
  font-size: 22px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 600;
}
.category-item .cat__title a {
  text-decoration: none !important;
  color: #fff;
}
.category-item .cat__meta {
  margin-top: 4px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.category-item .btn {
  opacity: 0;
  visibility: hidden;
}
.category-item::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #233d63;
  opacity: 0.7;
  content: "";
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.category-item:hover .category-content {
  padding-top: 0;
}
.category-item:hover .cat__meta {
  opacity: 0;
  visibility: hidden;
  margin: 0;
}
.category-item:hover .btn {
  opacity: 1;
  visibility: visible;
}
.category-item:hover img {
  -webkit-transform: scale(1.1) rotate(3deg);
  -moz-transform: scale(1.1) rotate(3deg);
  -ms-transform: scale(1.1) rotate(3deg);
  -o-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}

/*===== category-item-layout-2 =====*/
.category-item-layout-2 {
  background-color: #fff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.08);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.08);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.08);
}
.category-item-layout-2 .category-content {
  color: #233d63;
  position: inherit;
  top: auto;
  left: auto;
  display: block;
  padding: 40px 20px;
}
.category-item-layout-2 .cat__title {
  padding-top: 15px;
  color: #233d63;
  font-size: 19px;
}
.category-item-layout-2::after {
  display: none;
}
.category-item-layout-2:hover .category-content {
  padding-top: 40px;
}
.category-item-layout-2:hover .icon-element {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .category-btn-box {
    text-align: left !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .category-btn-box {
    text-align: left !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .category-btn-box {
    text-align: left !important;
  }
}

.category-carousel .owl-stage-outer {
  padding: 40px;
  margin: -40px;
}

/*-========= counter-item ===========-*/
.counter-item {
  margin-bottom: 30px;
  text-align: center;
}
.counter-item .counter__title {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #233d63;
}
.counter-item .counter__meta {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.counter-item:hover .icon-element {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}

/*======= file upload ========*/
.file-upload-wrap {
  position: relative;
}
.file-upload-wrap .file-upload-input {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 100%;
  border: 2px dashed rgba(128, 137, 150, 0.2);
  height: 120px;
  text-align: center;
  cursor: pointer;
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-indent: -99999px;
}
.file-upload-wrap .file-upload-input:hover {
  border-color: rgba(128, 137, 150, 0.4);
  background-color: rgba(128, 137, 150, 0.03);
}
.file-upload-wrap .file-upload-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  line-height: 120px;
  text-align: center;
  font-size: 16px;
  color: rgba(128, 137, 150, 0.9);
  font-weight: 500;
}
.file-upload-wrap .MultiFile-list {
  margin-top: 20px;
}
.file-upload-wrap .MultiFile-list > .MultiFile-label {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: rgba(128, 137, 150, 0.06);
  display: inline-block;
  border: 2px solid rgba(128, 137, 150, 0.1);
  padding: 16px;
  position: relative;
  width: 100%;
}
.file-upload-wrap .MultiFile-list > .MultiFile-label + .MultiFile-label {
  margin-top: 20px;
}
.file-upload-wrap .MultiFile-list > .MultiFile-label > span {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.file-upload-wrap .MultiFile-list .MultiFile-remove {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  background-color: #fff;
  color: #233d63;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  top: -16px;
  right: -16px;
  z-index: 1;
}
.file-upload-wrap .MultiFile-list .MultiFile-remove:hover {
  color: #ec5252;
}

/*======== file-upload-wrap-2 =======*/
.file-upload-wrap-2 .file-upload-input {
  border: 1px solid rgba(128, 137, 150, 0.1);
  height: 50px;
  background-color: rgba(128, 137, 150, 0.04);
  width: 191px;
}
.file-upload-wrap-2 .file-upload-text {
  line-height: 50px;
  width: auto;
  left: 20px;
}

/*======== file--upload-wrap =======*/
.file--upload-wrap .MultiFile-list > .MultiFile-label {
  padding: 5px 12px;
  font-size: 15px;
}
.file--upload-wrap .MultiFile-list .MultiFile-remove {
  width: 25px;
  height: 25px;
  line-height: 25px;
}

/*======== file-upload-wrap-3 =======*/
.file-upload-wrap-3 .file-upload-input {
  width: 30px;
  border: 0;
  height: 25px;
  background-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.file-upload-wrap-3 .file-upload-input:hover {
  background-color: transparent;
}
.file-upload-wrap-3 .file-upload-text {
  line-height: 30px;
  font-size: 20px;
}
.file-upload-wrap-3 .MultiFile-list {
  position: absolute;
  right: 0;
  bottom: 55px;
}

/*-======== member-card =======-*/
.member-card {
  padding-top: 40px;
}
.member-card .card-image {
  width: 100px;
  height: 100px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  margin-left: auto;
  margin-right: auto;
}
.member-card .card-image .card-img-top {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.member-card:after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: rgba(127, 136, 151, 0.2);
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.member-card:hover:after {
  background-color: #ec5252;
}

/*======== contact-form-action =========*/
.label-text {
  font-size: 15px;
  color: #233d63;
  font-weight: 500;
}

.form--control {
  height: 50px;
  padding-left: 45px;
  font-size: 14px;
  color: #233d63;
  border-color: rgba(127, 136, 151, 0.2);
  font-weight: 400;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.form--control:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #ec5252;
}

.form--control-gray {
  background-color: rgba(127, 136, 151, 0.1);
  border-color: transparent;
}
.form--control-gray:focus {
  background-color: rgba(127, 136, 151, 0.1);
}

.form-group {
  position: relative;
}

.input-group .form-control:not(:first-child) {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.input-icon {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 18px;
  z-index: 4;
}

.search-close-icon,
.search-icon {
  position: absolute;
  top: 0;
  right: 0;
}

.search-close-icon {
  color: #233d63;
  padding: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
}

.search-icon {
  color: #233d63;
  padding: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 18px;
  background-color: transparent;
  border: none;
}
.search-icon:hover {
  color: #ec5252;
}

/*=========== toggle-password =============*/
.toggle-password .eye-off {
  display: none;
}
.toggle-password.active .eye-off {
  display: block;
}
.toggle-password.active .eye-on {
  display: none;
}

/*=========== custom-control-label =============*/
.custom--control-label {
  cursor: pointer;
}
.custom--control-label::before, .custom--control-label:after {
  top: 0.4rem;
}

.custom--control-label-boxed {
  display: block;
  border: 1px solid rgba(128, 137, 150, 0.1);
  background-color: #fff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  padding: 20px 20px 20px 50px;
}
.custom--control-label-boxed::before, .custom--control-label-boxed:after {
  top: 1.7rem;
  left: 1.5rem;
}

.custom-control-input:checked ~ .custom--control-label-boxed {
  border-color: #ec5252;
}
.custom-control-input:checked ~ .custom--control-label::before {
  background-color: #ec5252;
  border-color: #ec5252;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.custom-control-input:focus:not(:checked) ~ .custom--control-label::before {
  border-color: #ec5252;
}
.custom-control-input:focus ~ .custom--control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(236, 82, 82, 0.25);
  -moz-box-shadow: 0 0 0 0.2rem rgba(236, 82, 82, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(236, 82, 82, 0.25);
}

/*-======= MAP ========-*/
#map {
  width: 100%;
  height: 500px;
}

/*==== leaflet-bar ======*/
.leaflet-bar {
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
}
.leaflet-bar a {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border-bottom: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 4px;
  font-size: 20px;
}
.leaflet-bar a:hover {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border-bottom: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #ec5252;
  color: #fff;
}

.payment-logo {
  position: absolute;
  right: 20px;
  top: 21px;
}

.payment-tab-toggle {
  padding-right: 20px;
  padding-left: 20px;
}
.payment-tab-toggle > label {
  cursor: pointer;
  display: block;
  position: relative;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 30px;
  margin-bottom: 0;
  font-weight: 600;
  color: #233d63;
}
.payment-tab-toggle > label:before {
  background-color: #fff;
  border: 2px solid #eeeeee;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.payment-tab-toggle > label:after {
  background-color: #eeeeee;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  content: "";
  position: absolute;
  left: 5px;
  top: 23px;
  width: 8px;
  height: 8px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.payment-tab-toggle > input {
  position: absolute;
  visibility: hidden;
}
.payment-tab-toggle > input:checked ~ label:before {
  border-color: #ec5252;
}
.payment-tab-toggle > input:checked ~ label:after {
  background-color: #ec5252;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/*====== payment-tab =======*/
.payment-tab {
  background-color: #fff;
  max-height: 55px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 10px 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 10px 40px rgba(82, 85, 90, 0.1);
  margin-bottom: 15px;
}
.payment-tab.is-active {
  max-height: 400px;
}
.payment-tab.is-active .payment-tab-content {
  visibility: visible;
  opacity: 1;
}

.payment-tab-content {
  padding: 0 20px 20px 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.contact-success-message {
  display: none;
}

/*=============== comments-wrapper ===============*/
.meta-tags a {
  color: #ec5252;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  padding-right: 8px;
  padding-left: 4px;
}
.meta-tags a::after {
  position: absolute;
  content: "";
  top: 7px;
  right: 0;
  width: 3px;
  height: 3px;
  background-color: rgba(127, 136, 151, 0.4);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.meta-tags a:first-child {
  padding-left: 0;
}
.meta-tags a:hover {
  color: #233d63;
}

.helpful-action .btn {
  border-color: rgba(128, 137, 150, 0.3);
  padding: 0 10px;
  color: #7f8897;
  margin-right: 2px;
  font-size: 15px;
}
.helpful-action .btn:hover {
  background-color: rgba(128, 137, 150, 0.1);
  color: #233d63;
}

.review-reply {
  margin-left: 104px;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .review-reply {
    margin-left: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .review-reply {
    margin-left: 0;
  }
}

/*===== client-logo-item =======*/
.client-logo-area .section-heading .section__title .text-color {
  text-decoration: none;
}

.client-logo-item {
  display: inline-block;
}
.client-logo-item img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.client-logo-item:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

/*====== client--logo-item ========*/
.client--logo-item {
  padding-top: 10px;
  padding-bottom: 10px;
}
.client--logo-item img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

/*====== client--logo-item-2 ========*/
.client--logo-item-2 img {
  max-width: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-logo-2 {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .client-logo-2 {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .client-logo-2 {
    margin-top: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-logo-wrap {
    text-align: center !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .client-logo-wrap {
    text-align: center !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .client-logo-wrap {
    text-align: center !important;
  }
}

/*====== testimonial-carousel ========*/
.testimonial-carousel .owl-stage-outer,
.testimonial-carousel-3 .owl-stage-outer {
  padding-top: 30px;
}

/*====================================================
    GALLERY
 ====================================================*/
.portfolio-filter {
  text-align: center;
}
.portfolio-filter li {
  display: inline-block;
  padding: 8px 25px;
  cursor: pointer;
  color: #233d63;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.portfolio-filter li.active {
  color: #ec5252;
  -webkit-box-shadow: 0 6px 25px rgba(14, 16, 48, 0.1);
  -moz-box-shadow: 0 6px 25px rgba(14, 16, 48, 0.1);
  box-shadow: 0 6px 25px rgba(14, 16, 48, 0.1);
  background-color: #fff;
}

.generic-portfolio-item {
  position: relative;
  z-index: 1;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.generic-portfolio-item img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.generic-portfolio-item:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.generic-portfolio-item:hover .generic-portfolio-content .portfolio-link {
  opacity: 1;
  visibility: visible;
}
.generic-portfolio-item:hover .generic-portfolio-content .portfolio-link .icon-element, .generic-portfolio-item:hover .generic-portfolio-content .portfolio-link:after {
  visibility: visible;
  opacity: 1;
}
.generic-portfolio-item:hover .generic-portfolio-content .portfolio-link .icon-element {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.generic-portfolio-content {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.generic-portfolio-content .portfolio-link {
  display: block;
}
.generic-portfolio-content .portfolio-link .icon-element {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.4);
  -moz-transform: translate(-50%, -50%) scale(1.4);
  -ms-transform: translate(-50%, -50%) scale(1.4);
  -o-transform: translate(-50%, -50%) scale(1.4);
  transform: translate(-50%, -50%) scale(1.4);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.generic-portfolio-content .portfolio-link:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*-============ cta-content-wrap =============-*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-content-wrap svg {
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .cta-content-wrap svg {
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .cta-content-wrap svg {
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .cta-content-wrap .section__title {
    font-size: 35px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-btn-box {
    text-align: left !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .cta-btn-box {
    text-align: left !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .cta-btn-box {
    text-align: left !important;
  }
}

.chart-legend li {
  font-size: 15px;
  margin-bottom: 3px;
  display: inline-block;
  padding-right: 15px;
}
.chart-legend li:last-child {
  padding-right: 0;
}

[class$=-legend] {
  cursor: pointer;
}
[class$=-legend] li {
  display: inline-block;
  padding-right: 14px;
  font-size: 15px;
}
[class$=-legend] li:last-child {
  padding-right: 0;
}
[class$=-legend] li.hidden {
  text-decoration: line-through;
}
[class$=-legend] li span {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
  height: 10px;
  margin-right: 5px;
  width: 10px;
}

/*======================================
      faq-area
 ======================================*/
.faq-panel {
  margin-bottom: 10px;
}
.faq-panel.is-active .faq-heading .faq__title {
  background-color: #ec5252;
  color: #fff;
}
.faq-panel.is-active .faq-heading .faq__title i {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.faq-heading .faq__title {
  color: #233d63;
  width: 100%;
  cursor: pointer;
  padding: 20px 30px 18px 30px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 500;
  font-size: 20px;
  background-color: rgba(127, 136, 151, 0.1);
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .faq-heading .faq__title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .faq-heading .faq__title {
    font-size: 16px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .faq-heading .faq__title {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.faq-heading .faq__title i {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.faq-heading .faq__title:hover {
  background-color: #ec5252;
  color: #fff;
}

.faq-content {
  padding: 20px;
  display: none;
}
.faq-content .faq__desc {
  font-size: 16px;
  color: #7f8897;
  line-height: 28px;
}

.body-overlay {
  background: rgba(30, 30, 28, 0.9);
  left: 0;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 1024;
}
.body-overlay.active {
  opacity: 1;
  visibility: visible;
}

/*---------------- fixed-nav ----------------*/
.fixed-nav .header-top {
  height: 0;
  border: none;
  opacity: 0;
  visibility: hidden;
}

.fixed-nav .header-menu-content {
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}

/*===== owl-action-styled =======*/
@media (max-width: 480px) {
  .owl-action-styled .owl-nav {
    text-align: center;
  }
}
.owl-action-styled .owl-nav div {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: 0 6px 30px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 6px 30px rgba(82, 85, 90, 0.1);
  box-shadow: 0 6px 30px rgba(82, 85, 90, 0.1);
  background-color: #fff;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .owl-action-styled .owl-nav div {
    display: inline-block;
    position: inherit;
    top: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    width: 33px;
    height: 33px;
    line-height: 33px;
  }
}
.owl-action-styled .owl-nav div:hover {
  background-color: #ec5252;
  color: #fff;
}
.owl-action-styled .owl-nav div.owl-prev {
  left: 20px;
}
@media (max-width: 480px) {
  .owl-action-styled .owl-nav div.owl-prev {
    left: auto;
    margin-right: 10px;
  }
}
.owl-action-styled .owl-nav div.owl-next {
  left: auto;
  right: 20px;
}
@media (max-width: 480px) {
  .owl-action-styled .owl-nav div.owl-next {
    right: auto;
  }
}
.owl-action-styled .owl-dots {
  width: 100%;
  text-align: center;
}
.owl-action-styled .owl-dots div {
  width: 14px;
  height: 14px;
  background-color: rgba(128, 137, 150, 0.2);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  display: inline-block;
  margin: 0 5px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.owl-action-styled .owl-dots div::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.owl-action-styled .owl-dots div.active {
  background-color: #ec5252;
}
.owl-action-styled .owl-dots div.active::after {
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  -ms-transform: scale(0.4);
  -o-transform: scale(0.4);
  transform: scale(0.4);
}

/*===== owl-action-styled =======*/
.owl--action-styled .owl-nav div.owl-prev {
  left: -80px;
}
@media (max-width: 1280px) {
  .owl--action-styled .owl-nav div.owl-prev {
    left: -20px;
  }
}
.owl--action-styled .owl-nav div.owl-next {
  right: -80px;
}
@media (max-width: 1280px) {
  .owl--action-styled .owl-nav div.owl-next {
    right: -20px;
  }
}

/*===== owl-action-styled-2 =======*/
.owl-action-styled-2 .owl-nav div {
  width: 35px;
  height: 35px;
  line-height: 35px;
}
.owl-action-styled-2 .owl-nav div.owl-prev {
  left: -17px;
}
.owl-action-styled-2 .owl-nav div.owl-next {
  right: -17px;
}

/*===== custom-scrollbar-styled =====*/
.custom-scrollbar-styled::-webkit-scrollbar {
  width: 8px;
}
.custom-scrollbar-styled::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.custom-scrollbar-styled::-webkit-scrollbar-thumb {
  background: rgba(128, 137, 150, 0.2);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.custom-scrollbar-styled::-webkit-scrollbar-thumb:hover {
  background: rgba(128, 137, 150, 0.4);
}

/*===== avatar sizes =====*/
.avatar-lg {
  width: 120px !important;
  height: 120px !important;
}

.avatar-md {
  width: 65px !important;
  height: 65px !important;
}

.avatar-sm {
  width: 48px !important;
  height: 48px !important;
}

.avatar-xs {
  width: 32px !important;
  height: 32px !important;
}

/*===== dot-bg =====*/
.dot-bg {
  position: relative;
  z-index: 1;
}
.dot-bg:before, .dot-bg:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-position: center;
  background-image: url("../images/dots.png");
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
  transform: rotate(10deg);
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
}
.dot-bg:after {
  top: -80px;
  left: auto;
  bottom: auto;
  right: 0;
}

/*======== ring-shape ========*/
.ring-shape {
  position: absolute;
  border: 2px solid rgba(128, 137, 150, 0.2);
  width: 25px;
  height: 25px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.ring-shape.ring-shape-1 {
  left: 4%;
  top: 15%;
}
.ring-shape.ring-shape-2 {
  left: 10%;
  top: 30%;
}
.ring-shape.ring-shape-3 {
  left: 5%;
  top: 50%;
}
.ring-shape.ring-shape-4 {
  left: 10%;
  bottom: 15%;
}
.ring-shape.ring-shape-5 {
  right: 5%;
  top: 10%;
}
.ring-shape.ring-shape-6 {
  right: 15%;
  top: 30%;
}
.ring-shape.ring-shape-7 {
  right: 6%;
  bottom: 20%;
}

/*======= stroke-shape ========*/
.stroke-shape {
  position: absolute;
  width: 200px;
  -webkit-transform: rotate(-55deg);
  -moz-transform: rotate(-55deg);
  -ms-transform: rotate(-55deg);
  -o-transform: rotate(-55deg);
  transform: rotate(-55deg);
  opacity: 0.1;
  background-color: #7f8897;
  height: 2px;
  display: block;
}
.stroke-shape.stroke-shape-1, .stroke-shape.stroke-shape-2, .stroke-shape.stroke-shape-3 {
  top: 175px;
}
.stroke-shape.stroke-shape-1 {
  left: 70px;
}
.stroke-shape.stroke-shape-2 {
  left: 90px;
}
.stroke-shape.stroke-shape-3 {
  left: 110px;
}
.stroke-shape.stroke-shape-4 {
  right: 70px;
}
.stroke-shape.stroke-shape-5 {
  right: 90px;
}
.stroke-shape.stroke-shape-6 {
  right: 110px;
}
.stroke-shape.stroke-shape-4, .stroke-shape.stroke-shape-5, .stroke-shape.stroke-shape-6 {
  bottom: 0;
  -webkit-transform: rotate(55deg);
  -moz-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  -o-transform: rotate(55deg);
  transform: rotate(55deg);
}

/*============= ring--shape =================*/
.ring--shape {
  width: 50px;
  height: 50px;
  border-width: 8px;
  border-color: #fff;
  opacity: 0.1;
}
.ring--shape.ring-shape-1 {
  top: -20%;
}
.ring--shape.ring-shape-2 {
  top: 73%;
  left: 50%;
}
.ring--shape.ring-shape-3 {
  top: 5%;
  left: auto;
  right: 10%;
}

/*============= img-bg =================*/
.img-bg,
.img-bg-2,
.img-bg-3,
.pattern-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.img-bg {
  background-image: url(../images/img7.jpg);
}

.img-bg-2 {
  background-image: url("../images/breadcrumb-bg.jpg");
}

.img-bg-3 {
  background-image: url("../images/breadcrumb-bg-2.jpg");
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: #000;
  opacity: 0.8;
}

.pattern-bg {
  background-image: url("../images/pattern.png");
}

/*============= generic-img-box =================*/
.generic-img-box {
  position: relative;
  height: 100%;
}
.generic-img-box::after {
  position: absolute;
  content: "";
  right: -50px;
  bottom: 150px;
  width: 200px;
  height: 150px;
  background-image: url(../images/dots.png);
  background-position: center;
  background-size: cover;
  pointer-events: none;
  opacity: 0.2;
  z-index: -1;
}
.generic-img-box .img__item {
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  position: absolute;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .generic-img-box .img__item {
    position: inherit;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .generic-img-box .img__item {
    position: inherit;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .generic-img-box .img__item {
    position: inherit;
  }
}
.generic-img-box .img__item-1 {
  top: 0;
  right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .generic-img-box .img__item-1 {
    top: auto;
    right: auto;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .generic-img-box .img__item-1 {
    top: auto;
    right: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .generic-img-box .img__item-1 {
    top: auto;
    right: auto;
  }
}
.generic-img-box .img__item-2 {
  bottom: 100px;
  left: -60px;
  width: 250px;
  border: 10px solid #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .generic-img-box .img__item-2 {
    bottom: auto;
    left: auto;
    width: 100%;
    border: 0;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .generic-img-box .img__item-2 {
    bottom: auto;
    left: auto;
    width: 100%;
    border: 0;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .generic-img-box .img__item-2 {
    bottom: auto;
    left: auto;
    width: 100%;
    border: 0;
    margin-top: 30px;
  }
}

/*============= generic-img-box-layout-2 =================*/
.generic-img-box-layout-2::after {
  display: none;
}
.generic-img-box-layout-2 img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  width: 100%;
  height: 100%;
}
.generic-img-box-layout-2 .img__item {
  width: 220px;
  height: 220px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .generic-img-box-layout-2 .img__item {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .generic-img-box-layout-2 .img__item {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .generic-img-box-layout-2 .img__item {
    margin-left: auto;
    margin-right: auto;
  }
}
.generic-img-box-layout-2 .img__item-1 {
  right: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .generic-img-box-layout-2 .img__item-1 {
    right: auto;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .generic-img-box-layout-2 .img__item-1 {
    right: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .generic-img-box-layout-2 .img__item-1 {
    right: auto;
  }
}
.generic-img-box-layout-2 .img__item-2 {
  left: 20px;
  top: 0;
  bottom: auto;
  border: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .generic-img-box-layout-2 .img__item-2 {
    left: auto;
    top: auto;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .generic-img-box-layout-2 .img__item-2 {
    left: auto;
    top: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .generic-img-box-layout-2 .img__item-2 {
    left: auto;
    top: auto;
  }
}
.generic-img-box-layout-2 .img__item-3 {
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .generic-img-box-layout-2 .img__item-3 {
    bottom: auto;
    left: auto;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    margin-top: 30px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .generic-img-box-layout-2 .img__item-3 {
    bottom: auto;
    left: auto;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    margin-top: 30px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .generic-img-box-layout-2 .img__item-3 {
    bottom: auto;
    left: auto;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    margin-top: 30px;
  }
}
.generic-img-box-layout-2 .generic-img-box-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  flex-direction: column;
  color: #fff;
}
.generic-img-box-layout-2 .generic-img-box-content h3 {
  color: #fff;
}

.generic-img-box-layout-3 {
  height: auto;
}
.generic-img-box-layout-3 .img__item {
  position: inherit;
}
.generic-img-box-layout-3 .img__item-1 {
  top: auto;
  right: auto;
}
.generic-img-box-layout-3::before {
  position: absolute;
  content: "";
  top: 0;
  left: 35%;
  height: 100%;
  width: 10px;
  background-color: #fff;
  z-index: 1;
}
.generic-img-box-layout-3::after {
  right: -40px;
  bottom: -40px;
}

/*======= half-shape ======*/
.half-shape {
  position: relative;
}
.half-shape::after {
  content: "";
  position: absolute;
  width: 10000px;
  height: 100vh;
  left: 0;
  top: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  z-index: -1;
}

/*===== quiz-action-content ====*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .quiz-action-content {
    display: block !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .quiz-action-content {
    display: block !important;
  }
}

/*===== quiz-nav ====*/
.quiz-nav li {
  margin-right: 20px;
}
@media (max-width: 375px) {
  .quiz-nav li {
    margin-bottom: 10px;
  }
}
.quiz-nav li:last-child {
  margin-right: 0;
}
.quiz-nav li img {
  width: 40px;
  margin-right: 15px;
}
.quiz-nav li a {
  color: #7f8897;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.quiz-nav li a:hover {
  color: #ec5252;
}
.quiz-nav li p {
  line-height: 22px;
}
.quiz-nav li p a {
  color: #233d63;
  font-size: 17px;
}

/*===== quiz-course-nav =====*/
.quiz-course-nav {
  position: relative;
  z-index: 1;
}
.quiz-course-nav::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: calc(50% - 1px);
  height: 2px;
  background-color: #fff;
  opacity: 0.1;
  z-index: -1;
}

/*====== quiz-nav-btns ======*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .quiz-nav-btns {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .quiz-nav-btns {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .quiz-nav-btns {
    margin-top: 10px;
  }
}
.quiz-nav-btns .theme-btn {
  font-size: 15px;
  font-weight: 500;
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .quiz-nav-btns .theme-btn {
    margin-bottom: 10px;
  }
}

/*====== quiz-action ======*/
.quiz-content .quiz-desc {
  width: 700px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .quiz-content .quiz-desc {
    width: auto;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .quiz-content .quiz-desc {
    width: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .quiz-content .quiz-desc {
    width: auto;
  }
}

/*====== quiz-result-content ======*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .quiz-result-content {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .quiz-result-content {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .quiz-result-content {
    margin-bottom: 30px;
  }
}

/*===== level-timeline =======*/
.level-timeline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .level-timeline {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .level-timeline {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .level-timeline {
    margin-top: 60px;
  }
}
.level-timeline .icon-element {
  position: relative;
  margin-right: 10px;
  margin-left: 10px;
  background-color: #eeeeee;
  flex-shrink: 0;
}
.level-timeline .level-active {
  background-color: #ec5252;
  color: #fff;
}
.level-timeline .level-active .level-dot {
  background-color: #ec5252;
}
.level-timeline .level-dot {
  position: absolute;
  top: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.level-timeline::before {
  position: absolute;
  content: "";
  background-color: #eeeeee;
  z-index: -1;
  width: 70%;
  height: 5px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
}

.level-dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background-color: #eeeeee;
  border: 2px solid #fff;
}

/*-===============================
    FEATURE AREA
===============================-*/
.feature-area {
  position: relative;
  z-index: 2;
}

.feature-content-wrap {
  margin-top: -60px;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .feature-content-wrap {
    margin-top: 120px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .feature-content-wrap {
    margin-top: 80px;
  }
}

.dot-status {
  height: 14px;
  width: 14px;
  background-color: #f7f7ff;
  display: block;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.scrolled-box {
  max-height: 410px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.scrolled--box {
  max-height: 550px;
}

/*===== jqte =====*/
.jqte {
  margin: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border-color: rgba(128, 137, 150, 0.2);
}
.jqte * {
  font-family: "Arial", sans-serif !important;
}
.jqte ul,
.jqte dl,
.jqte ol {
  padding: 5px 5px 5px 16px;
}
.jqte ul {
  list-style: disc;
}

.jqte_toolbar {
  background-color: rgba(128, 137, 150, 0.1);
  border-bottom-color: rgba(128, 137, 150, 0.2);
}

.jqte_tool {
  padding: 3px;
}
.jqte_tool:hover {
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
}

.jqte_tool,
.jqte_tool_icon,
.jqte_tool_label {
  border-color: transparent !important;
}

.jqte_title {
  font-weight: 600;
}

.jqte_tool.jqte_tool_1 .jqte_tool_label {
  width: 80px;
  height: 24px;
  padding: 0;
}

.jqte_formats,
.jqte_fontsizes,
.jqte_cpalette,
.jqte_linktypes {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  border-color: rgba(128, 137, 150, 0.3);
}

.jqte_formats .jqte_format:hover,
.jqte_fontsizes .jqte_fontsize:hover,
.jqte_linktypes a:hover {
  background-color: rgba(128, 137, 150, 0.1);
}

.jqte_editor,
.jqte_source {
  min-height: 160px;
}

.jqte_placeholder {
  display: block;
}

.jqte_placeholder_text {
  top: 49px;
  color: #7f8897;
  font-weight: 500;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .jqte_placeholder_text {
    top: 80px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .jqte_placeholder_text {
    top: 80px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .jqte_placeholder_text {
    top: 130px;
  }
}

.jqte_linktypeview {
  border-color: rgba(128, 137, 150, 0.3);
  padding: 4px 10px;
}

.jqte_linktypearrow {
  bottom: 13px;
  right: 13px;
}

.jqte_linkinput {
  border-color: rgba(128, 137, 150, 0.3);
  padding-top: 4px;
  padding-bottom: 4px;
  color: #233d63;
}
.jqte_linkinput:focus, .jqte_linkinput:hover {
  border-color: rgba(128, 137, 150, 0.8);
}

.jqte_linkbutton {
  background-color: rgba(128, 137, 150, 0.1);
  border-color: rgba(128, 137, 150, 0.4);
  color: #233d63;
  -webkit-box-shadow: inset 0 0;
  -moz-box-shadow: inset 0 0;
  box-shadow: inset 0 0;
  padding-top: 4px;
  padding-bottom: 4px;
}
.jqte_linkbutton:hover {
  background-color: rgba(128, 137, 150, 0.3);
}

/*======== pulse-btn =======*/
.pulse-btn {
  position: relative;
  z-index: 1;
}
.pulse-btn:before, .pulse-btn:after {
  position: absolute;
  content: "";
  top: -25px;
  left: -25px;
  bottom: -25px;
  right: -25px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: play-button-pulse 1.8s linear infinite;
  -moz-animation: play-button-pulse 1.8s linear infinite;
  animation: play-button-pulse 1.8s linear infinite;
  opacity: 0;
  z-index: -1;
}
.pulse-btn:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.pulse-btn:hover {
  color: #ec5252;
}

/*====== story-img-item =======*/
.story-img-item {
  position: relative;
  width: 300px;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .story-img-item.mt-90px {
    margin-top: 0;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .story-img-item.mt-90px {
    margin-top: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .story-img-item.mt-90px {
    margin-top: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .story-img-item {
    width: 280px;
    height: 280px;
  }
}
.story-img-item img {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.story-img-item .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.story-img-item:hover .video-play-btn {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
  -moz-transform: translate(-50%, -50%) scale(1.2);
  -ms-transform: translate(-50%, -50%) scale(1.2);
  -o-transform: translate(-50%, -50%) scale(1.2);
  transform: translate(-50%, -50%) scale(1.2);
}

.video-box {
  width: auto;
  height: auto;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.video-box img {
  height: 450px;
  object-fit: cover;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .register-content {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .register-content {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .register-content {
    margin-top: 30px;
  }
}

/*======= request-demo-area ========*/
.request-demo-area {
  z-index: 1;
}

.request-demo-cta {
  border-left: 8px solid #ec5252;
  padding: 20px 0 20px 32px;
}

/*======= Responsive column ========*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .responsive-column-half {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .responsive-column-half {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .responsive-column-half {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*======= flip-box ==========*/
.flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.flip-box .flip-img {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  width: 100%;
}
.flip-box .flip-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 25px;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  -webkit-transform: translateZ(60px) scale(0.88);
  -moz-transform: translateZ(60px) scale(0.88);
  -ms-transform: translateZ(60px) scale(0.88);
  -o-transform: translateZ(60px) scale(0.88);
  transform: translateZ(60px) scale(0.88);
  color: #fff;
}
.flip-box .flip-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.flip-box:hover .flip-box-front {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.flip-box:hover .flip-box-back {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box-front,
.flip-box-back {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -ms-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.flip-box-front:after,
.flip-box-back:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  opacity: 0.6;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/*-===============================
    PACKAGE AREA
===============================-*/
.package-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #ec5252;
  color: #fff;
  font-weight: 600;
  display: block;
  text-align: center;
  padding: 14px 10px;
  font-size: 17px;
}

.package-item-active {
  padding-top: 55px;
  margin-top: -24px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .package-item-active {
    margin-top: 0;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .package-item-active {
    margin-top: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .package-item-active {
    margin-top: 0;
  }
}

/*===== generic-tab =====*/
.generic-tab {
  border-bottom: 0;
}
.generic-tab .nav-item {
  margin-right: 5px;
  margin-bottom: 5px;
}
.generic-tab .nav-link {
  color: #7f8897;
  border: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.generic-tab .nav-link:hover {
  color: #ec5252;
}
.generic-tab .nav-link.active {
  color: #ec5252;
  -webkit-box-shadow: 0 6px 25px rgba(14, 16, 48, 0.1);
  -moz-box-shadow: 0 6px 25px rgba(14, 16, 48, 0.1);
  box-shadow: 0 6px 25px rgba(14, 16, 48, 0.1);
}

/*===== generic-tab-layout-2 =====*/
.generic-tab-layout-2 .nav-item {
  margin-right: 10px;
  margin-bottom: 0;
}
.generic-tab-layout-2 .nav-link {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  position: relative;
}
.generic-tab-layout-2 .nav-link::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #233d63;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.generic-tab-layout-2 .nav-link.active {
  color: #ec5252;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.generic-tab-layout-2 .nav-link.active .shop-cart-btn {
  color: #ec5252;
}
.generic-tab-layout-2 .nav-link.active::after {
  opacity: 1;
  visibility: visible;
  background-color: #ec5252;
}

/*======= generic-table ========*/
.table {
  --bs-table-bg: $table-bg;
  --bs-table-color: $table-bg;
}

.generic-table {
  color: #233d63;
  margin-bottom: 0;
  background: transparent !important;
}
.generic-table thead {
  background-color: rgba(127, 126, 151, 0.1);
}
.generic-table thead th {
  border: none;
  font-weight: 600;
}
.generic-table tbody th,
.generic-table tbody td {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: none;
  vertical-align: middle;
  font-weight: 500;
  border-bottom: 1px solid rgba(127, 126, 151, 0.1);
}

/* modal container */
textarea {
  height: 100px !important;
}

.modal-container.fade .modal-dialog {
  -webkit-transform: scale(0.8) translate(0, 0);
  -moz-transform: scale(0.8) translate(0, 0);
  -ms-transform: scale(0.8) translate(0, 0);
  -o-transform: scale(0.8) translate(0, 0);
  transform: scale(0.8) translate(0, 0);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.modal-container .close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  background: none !important;
}
.modal-container .close span {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.modal-container .close:hover span {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #ec5252;
}
.modal-container .modal-content {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.modal-container .modal-dialog {
  -webkit-transform: scale(0.8) translate(0, 0);
  -moz-transform: scale(0.8) translate(0, 0);
  -ms-transform: scale(0.8) translate(0, 0);
  -o-transform: scale(0.8) translate(0, 0);
  transform: scale(0.8) translate(0, 0);
}
.modal-container.show {
  display: block;
}
.modal-container.show .modal-dialog {
  -webkit-transform: scale(1) translate(0, 0);
  -moz-transform: scale(1) translate(0, 0);
  -ms-transform: scale(1) translate(0, 0);
  -o-transform: scale(1) translate(0, 0);
  transform: scale(1) translate(0, 0);
}

/*========== copy-to-clipboard ============*/
.copy-to-clipboard {
  position: relative;
}

.success-message {
  background-color: #38bb0c;
  color: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 3px 6px;
  position: absolute;
  top: -10px;
  left: 45%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
}
.success-message.active {
  top: -40px;
  opacity: 1;
  visibility: visible;
}
.success-message:after {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  -o-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  background-color: #38bb0c;
  width: 8px;
  height: 8px;
}

/*======== card-item =========*/
.card {
  color: inherit !important;
}

.card-item {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  border: 0;
}
.card-item .card-title {
  color: #233d63;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 1px;
  font-size: 20px;
}
.card-item .card-title a {
  text-decoration: none !important;
  color: #233d63;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}


.card-item .card-body img {
    width: 100%;
    object-fit: cover;
}


.card-item .card-title a:hover {
  color: #ec5252;
}
.card-item .card-text a {
  text-decoration: none !important;
  color: #7f8897;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.card-item .card-text a:hover {
  color: #ec5252;
}
.card-item .card-body {
  padding: 1.6rem;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-item .card-body.d-flex {
    flex-direction: column;
    text-align: center;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .card-item .card-body.d-flex {
    flex-direction: column;
    text-align: center;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .card-item .card-body.d-flex {
    flex-direction: column;
    text-align: center;
  }
}

/*======== card-image =========*/
.card-image {
  position: relative;
}
.card-image .card-img-top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.card-image .course-badge-labels {
  position: absolute;
  top: 10px;
  left: 10px;
}
.card-image .course--badge-labels {
  left: auto;
  right: 10px;
}
.card-image .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.6);
  -moz-transform: translate(-50%, -50%) scale(0.6);
  -ms-transform: translate(-50%, -50%) scale(0.6);
  -o-transform: translate(-50%, -50%) scale(0.6);
  transform: translate(-50%, -50%) scale(0.6);
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.card-image:hover .play-button {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

/*======= course-badge =======*/
.course-badge {
  background-color: #f68a03;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  padding: 4px 10px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.2px;
}
.course-badge.blue {
  background-color: #358ff7;
}
.course-badge.green {
  background-color: #38bb0c;
}
.course-badge.red {
  background-color: #dd493d;
}
.course-badge.sky-blue {
  background-color: #3aaae1;
}

/*======= share-wrap ======*/
.share-wrap {
  position: relative;
}
.share-wrap .social-icons {
  position: absolute;
  top: 2px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  width: 115px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.share-wrap .social-icons.social-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-45px);
  -moz-transform: translateX(-45px);
  -ms-transform: translateX(-45px);
  -o-transform: translateX(-45px);
  transform: translateX(-45px);
}

.share-toggle {
  z-index: 1;
  position: relative;
}
.share-toggle.share-toggle-active i::before {
  content: "\f00d";
}

/*======= card-item-list-layout ======*/
.card-item-list-layout {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 280px;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .card-item-list-layout {
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .card-item-list-layout {
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
  }
}
.card-item-list-layout .card-image {
  width: 33%;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .card-item-list-layout .card-image {
    width: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .card-item-list-layout .card-image {
    width: auto;
    height: 250px;
  }
}
.card-item-list-layout .card-image a {
  height: 100%;
}
.card-item-list-layout .card-image .card-img-top {
  border-top-right-radius: 0;
  border-bottom-left-radius: 8px;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .card-item-list-layout .card-image .card-img-top {
    height: auto;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .card-item-list-layout .card-image .card-img-top {
    height: 100%;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
  }
}
.card-item-list-layout .card-body {
  width: 67%;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .card-item-list-layout .card-body {
    width: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .card-item-list-layout .card-body {
    width: auto;
  }
}

/*====== card-preview =======*/
.tooltip_templates {
  display: none;
}

.tooltipster-sidetip {
  width: 380px !important;
}
.tooltipster-sidetip .tooltipster-box {
  background: #fff;
  border: 0;
  -webkit-box-shadow: 0 0 10px rgba(82, 85, 90, 0.2);
  -moz-box-shadow: 0 0 10px rgba(82, 85, 90, 0.2);
  box-shadow: 0 0 10px rgba(82, 85, 90, 0.2);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.tooltipster-sidetip .tooltipster-content {
  color: inherit;
  line-height: inherit;
  padding: 0;
}
.tooltipster-sidetip .card-item {
  margin-bottom: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #fff;
  top: 2px;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #fff;
  left: 0;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  top: 50% !important;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
  left: -1px;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  left: 0;
  border-left-color: #fff;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  top: 50% !important;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
  right: -1px;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #fff;
  top: -2px;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border, .tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border, .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border, .tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border: none;
}

/*======== media-card =======*/
.media-card .media-img {
  width: 80px;
  height: 80px;
  margin-right: 15px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.media-card .media-img img {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.media-card .media--img {
  border: 4px solid #fff;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.05);
}
.media-card .media-img-md {
  width: 100px;
  height: 100px;
}
.media-card .media-img-lg {
  width: 200px;
  height: 200px;
}
.media-card .media-body h5 {
  color: #233d63;
  font-weight: 600;
  line-height: 18px;
}
.media-card .media-body h5 a {
  color: #233d63;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.media-card .media-body h5 a:hover {
  color: #ec5252;
}

/*-========= header-menu-area ==========-*/
.header-menu-area {
  position: relative;
  z-index: 1023;
}

.dashboard-menu-content {
  width: calc(100% - 320px);
  margin-left: auto;
}
@media (max-width: 1199px) {
  .dashboard-menu-content {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .dashboard-menu-content .menu-wrapper {
    margin-top: 0;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .dashboard-menu-content .menu-wrapper {
    margin-top: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .dashboard-menu-content .menu-wrapper {
    margin-top: 0;
  }
}
.dashboard-menu-content .row {
  margin-left: 0;
  margin-right: 0;
}

/*===== header top =====*/
@media (max-width: 1600px) {
  .header-top {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top {
    text-align: center;
    display: none;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .header-top {
    text-align: center;
    display: none;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .header-top {
    text-align: center;
    display: none;
  }
}

/*===== header-widget =====*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-widget .generic-list-item {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .header-widget .generic-list-item {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .header-widget .generic-list-item {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}
.header-widget .generic-list-item li {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-widget.justify-content-end {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .header-widget.justify-content-end {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .header-widget.justify-content-end {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}

/*===== shop-cart ======*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop-cart {
    text-align: left;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .shop-cart {
    text-align: left;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .shop-cart {
    text-align: left;
  }
}
.shop-cart > ul > li {
  position: relative;
}
.shop-cart > ul > li:hover .cart-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 45px;
}

/*===== shop-cart-btn ======*/
.shop-cart-btn {
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  color: #233d63;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.shop-cart-btn .dot-status {
  position: absolute;
  top: 6px;
  right: -6px;
}
.shop-cart-btn:hover {
  color: #ec5252;
}

/*===== product-count ======*/
.product-count {
  width: 18px;
  height: 18px;
  line-height: 17px;
  text-align: center;
  background-color: #ec5252;
  color: #fff;
  font-size: 14px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
}

/*===== cart-dropdown-menu ======*/
.cart-dropdown-menu {
  position: absolute;
  right: 0;
  top: 50px;
  width: 325px;
  background-color: #fff;
  padding: 20px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .cart-dropdown-menu {
    right: -145px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .cart-dropdown-menu {
    right: -90px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .cart-dropdown-menu {
    right: -80px;
    width: 300px;
  }
}
.cart-dropdown-menu li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(127, 136, 151, 0.1);
}
.cart-dropdown-menu li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.cart-dropdown-menu .media-body {
  font-size: 14px;
}
.cart-dropdown-menu .media-body h5 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  max-height: 3.4rem;
  font-size: 14px;
}
.cart-dropdown-menu:after {
  top: -8px;
  content: "";
  position: absolute;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #fff;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .cart-dropdown-menu:after {
    right: 50%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .cart-dropdown-menu:after {
    right: 100px;
  }
}

/*====== notification-dropdown-menu=======*/
.notification-dropdown-menu li {
  margin-bottom: 0;
  padding-bottom: 0;
}
.notification-dropdown-menu li.menu-heading-block {
  padding: 15px 20px;
}
.notification-dropdown-menu .generic-list-item {
  font-size: 14px;
}
.notification-dropdown-menu .generic-list-item li {
  border-bottom: 0;
}
.notification-dropdown-menu .generic-list-item a {
  padding: 8px 20px;
}

.menu-heading-block h4 {
  font-size: 16px;
  font-weight: 600;
}
.menu-heading-block p {
  font-weight: 400;
  font-size: 14px;
}

.notification-body a {
  padding: 15px 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(128, 137, 150, 0.1);
}
.notification-body a:last-child {
  border-bottom: 0;
}
.notification-body a:hover {
  background-color: rgba(128, 137, 150, 0.04);
}
.notification-body a:hover.message-active {
  background-color: rgba(53, 143, 227, 0.07);
}

/*====== user-profile-cart =======*/
.user-profile-cart .cart-dropdown-menu {
  width: 280px;
}

/*====== header-menu-content =======*/
.header-menu-content {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 1600px) {
  .header-menu-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.header-menu-content.fixed-top {
  -webkit-box-shadow: 0 0 40px rgba(14, 16, 48, 0.07);
  -moz-box-shadow: 0 0 40px rgba(14, 16, 48, 0.07);
  box-shadow: 0 0 40px rgba(14, 16, 48, 0.07);
}

/*====== off-canvas-menu-toggle =======*/
.search-menu-toggle,
.off-canvas-menu-toggle {
  display: none;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .search-menu-toggle,
  .off-canvas-menu-toggle {
    display: inline-block;
  }
}
.search-menu-toggle:hover,
.off-canvas-menu-toggle:hover {
  color: #ec5252;
}

/*====== sub-nav-toggler =======*/
.sub-nav-toggler {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #233d63;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: none;
  outline: none;
  z-index: 2;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0.35rem rgba(0, 0, 0, 0.085);
  -moz-box-shadow: 0 0 0.35rem rgba(0, 0, 0, 0.085);
  box-shadow: 0 0 0.35rem rgba(0, 0, 0, 0.085);
}
.sub-nav-toggler .la {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1199px) {
  .sub-nav-toggler {
    display: block;
  }
}
.sub-nav-toggler:hover {
  color: #ec5252;
}
.sub-nav-toggler.active {
  color: #ec5252;
}
.sub-nav-toggler.active .la {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

/*====== logo-box =======*/
.logo-box {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.logo-box img {
    width: 100%;
    object-fit: contain;
}
@media (max-width: 1199px) {
  .logo-box {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.logo-box .logo {
  display: inline-block;
}

.logo--box {
  display: none;
}
@media (max-width: 1199px) {
  .logo--box {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
  }
}

/*====== menu-category =======*/
@media (max-width: 1199px) {
  .menu-category {
    display: none;
  }
}
.menu-category > ul > li {
  position: relative;
}
.menu-category > ul > li a {
  color: #233d63;
  text-transform: capitalize;
  padding-bottom: 35px;
  text-decoration: none !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.menu-category > ul > li a:hover {
  color: #ec5252;
}
.menu-category > ul > li .cat-dropdown-menu {
  position: absolute;
  left: 0;
  top: 60px;
  width: 320px;
  background-color: #fff;
  display: block;
  padding: 25px 0 25px 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.menu-category > ul > li .cat-dropdown-menu > li {
  margin-bottom: 8px;
  position: relative;
}
.menu-category > ul > li .cat-dropdown-menu > li:last-child {
  margin-bottom: 0;
}
.menu-category > ul > li .cat-dropdown-menu > li > a {
  text-decoration: none !important;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 0;
}
.menu-category > ul > li .cat-dropdown-menu > li > a .la-angle-right {
  font-size: 13px;
}
.menu-category > ul > li .cat-dropdown-menu > li .sub-menu {
  position: absolute;
  top: -24px;
  left: 96%;
  width: 280px;
  background-color: #fff;
  padding: 25px 0 25px 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  visibility: hidden;
  opacity: 0;
}
.menu-category > ul > li .cat-dropdown-menu > li .sub-menu li {
  margin-bottom: 5px;
}
.menu-category > ul > li .cat-dropdown-menu > li .sub-menu li:last-child {
  margin-bottom: 0;
}
.menu-category > ul > li .cat-dropdown-menu > li .sub-menu li a {
  color: #7f8897;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
  padding-right: 0;
  padding-left: 0;
  margin-left: 30px;
  padding-bottom: 0;
}
.menu-category > ul > li .cat-dropdown-menu > li .sub-menu li a:after {
  width: 0;
  height: 1px;
  position: absolute;
  content: "";
  bottom: 1px;
  right: 0;
  background-color: #ec5252;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.menu-category > ul > li .cat-dropdown-menu > li .sub-menu li a:hover {
  color: #ec5252;
}
.menu-category > ul > li .cat-dropdown-menu > li .sub-menu li a:hover:after {
  width: 100%;
  right: auto;
  left: 0;
}
.menu-category > ul > li .cat-dropdown-menu > li .sub-menu.active {
  display: block;
}
.menu-category > ul > li .cat-dropdown-menu > li:hover .sub-menu {
  left: 100%;
  opacity: 1;
  visibility: visible;
}
.menu-category > ul > li .cat-dropdown-menu:after {
  top: -8px;
  content: "";
  position: absolute;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #fff;
}
.menu-category > ul > li:hover .cat-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 43px;
}

/*===== main-menu-content ======*/
.main-menu-content {
  position: relative;
}
@media (max-width: 1199px) {
  .main-menu-content {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
@media (max-width: 1199px) {
  .main-menu-content .col-lg-2,
  .main-menu-content .col-lg-3 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*===== menu-wrapper ======*/
.menu-wrapper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media (max-width: 1199px) {
  .menu-wrapper {
    display: none;
  }
}
.menu-wrapper form {
  width: 350px;
  margin-right: 25px;
  margin-left: 25px;
}
@media (max-width: 1600px) {
  .menu-wrapper form {
    width: 300px;
  }
}
@media (max-width: 1366px) {
  .menu-wrapper form {
    width: 300px;
  }
}
@media (max-width: 1280px) {
  .menu-wrapper form {
    width: 280px;
    margin-right: 15px;
    margin-left: 15px;
  }
}

/*===== main-menu ======*/
.main-menu {
  margin-right: 18px;
}
.main-menu > ul > li {
  display: inline-block;
  margin-right: 18px;
  text-transform: capitalize;
  position: relative;
}
.main-menu > ul > li.mega-menu-has {
  position: static;
}
.main-menu > ul > li a {
  text-decoration: none !important;
  font-size: 15px;
  color: #233d63;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding-bottom: 33px;
}
.main-menu > ul > li a:hover {
  color: #ec5252;
}
.main-menu > ul > li:last-child {
  margin-right: 0;
}
.main-menu > ul > li .dropdown-menu-item {
  position: absolute;
  left: 0;
  top: 60px;
  width: 220px;
  background-color: #fff;
  padding: 15px 25px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  opacity: 0;
  visibility: hidden;
}
.main-menu > ul > li .dropdown-menu-item > li {
  display: block;
  margin-right: 0;
  margin-bottom: 4px;
  text-transform: capitalize;
}
.main-menu > ul > li .dropdown-menu-item > li:last-child {
  margin-bottom: 0;
}
.main-menu > ul > li .dropdown-menu-item > li > a {
  color: #7f8897;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0;
  margin-bottom: 0;
}
.main-menu > ul > li .dropdown-menu-item > li > a:hover {
  color: #ec5252;
}
.main-menu > ul > li .dropdown-menu-item > li .menu-banner img {
  object-fit: cover;
}
.main-menu > ul > li .mega-menu {
  top: 95px;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
.main-menu > ul > li .mega-menu > ul > li {
  margin-bottom: 0;
  border-left: 1px solid rgba(128, 137, 150, 0.1);
  padding: 15px 30px;
}
.main-menu > ul > li .mega-menu > ul > li:first-child {
  padding-left: 0;
  border-left: 0;
}
.main-menu > ul > li .mega-menu > ul > li:last-child {
  border-left: 0;
  padding-right: 0;
}
.main-menu > ul > li .mega-menu > ul > li > a {
  padding-bottom: 5px;
  display: block;
}
.main-menu > ul > li:hover .dropdown-menu-item {
  top: 50px;
  opacity: 1;
  visibility: visible;
}
.main-menu > ul > li:hover .mega-menu {
  top: 70px;
}

.menu-banner-content .btn {
  padding-bottom: 6px;
  line-height: 28px;
  display: block;
}
.menu-banner-content .btn:hover {
  color: #fff;
}

.down-button {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30px;
  text-align: center;
  height: 22px;
  line-height: 20px;
  background-color: rgba(128, 137, 150, 0.1);
  color: #7f8897;
  display: none;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  z-index: 3;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.down-button .la {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.down-button.active .la {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.down-button:hover {
  color: #fff;
  background-color: #ec5252;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .down-button {
    display: block;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .down-button {
    display: block;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .down-button {
    display: block;
  }
}

/*======= nav-right-button =======*/
@media (max-width: 1199px) {
  .nav-right-button .course-cart {
    display: none;
  }
}
.nav-right-button .generic-list-item li {
  margin-bottom: 0;
  margin-right: 10px;
  display: inline-block;
}
.nav-right-button .generic-list-item li a {
  color: #233d63;
}
.nav-right-button .generic-list-item li a:hover {
  color: #ec5252;
}
.nav-right-button .generic-list-item li:last-child {
  margin-right: 0;
}
.nav-right-button .notification-dropdown-menu .generic-list-item li {
  margin-right: 0;
  margin-bottom: 0;
  display: block;
}

/*====== user-action-wrap =======*/
@media (max-width: 1199px) {
  .user-action-wrap {
    display: none !important;
  }
}

/*====== off-canvas-menu-close =======*/
.off-canvas-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.off-canvas-menu-close i {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.off-canvas-menu-close:hover {
  color: #ec5252;
}
.off-canvas-menu-close:hover i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

/*====== off-canvas-menu-heading =======*/
.off-canvas-menu-heading {
  padding-right: 20px;
  padding-left: 20px;
  font-size: 14px;
  color: #7f8897;
  font-weight: 700;
}

/*====== off-canvas-menu =======*/
.off-canvas-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 325px;
  height: 100vh;
  background-color: #fff;
  overflow-x: hidden;
  z-index: 1035;
  -webkit-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  -ms-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
@media (max-width: 375px) {
  .off-canvas-menu {
    width: 320px;
  }
}

.off--canvas-menu {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
@media (max-width: 1199px) {
  .off--canvas-menu {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.main-off-canvas-menu.active,
.category-off-canvas-menu.active,
.user-off-canvas-menu.active,
.off--canvas-menu.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

/*====== off-canvas-menu-list ========*/
.off-canvas-menu-list li {
  margin-bottom: 0;
  font-size: 15px;
}
.off-canvas-menu-list li svg {
  fill: #233d63;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.off-canvas-menu-list li a {
  background-color: #fff;
  color: #233d63;
  text-transform: capitalize;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 6px 20px;
  border-right: 2px solid transparent;
}
.off-canvas-menu-list li .sub-menu {
  display: none;
}
.off-canvas-menu-list li .sub-menu li a {
  color: #7f8897;
}
.off-canvas-menu-list li .sub-menu li a:hover {
  color: #ec5252;
}

/*=========== off--canvas-menu-list ===========*/
.off--canvas-menu-list li a {
  padding-top: 12px;
  padding-bottom: 12px;
  justify-content: flex-start;
}
.off--canvas-menu-list li a:hover {
  color: #358ff7;
}
.off--canvas-menu-list li a:hover svg {
  fill: #358ff7;
}
.off--canvas-menu-list li.page-active svg {
  fill: #358ff7;
}
.off--canvas-menu-list li.page-active a {
  background-color: rgba(53, 143, 227, 0.04);
  color: #358ff7;
  border-right-color: #358ff7;
}

.mobile-search-form {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.mobile-search-form.active {
  opacity: 1;
  visibility: visible;
}

.search-bar-close {
  cursor: pointer;
}
.search-bar-close i {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.search-bar-close:hover {
  color: #ec5252;
}
.search-bar-close:hover i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

/*======== sidebar-user-action-list ========*/
.sidebar-user-action-list > li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(127, 136, 151, 0.1);
}
.sidebar-user-action-list > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.sidebar-user-action-list .media-body h5 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  max-height: 3.4rem;
  font-size: 14px;
}
.sidebar-user-action-list .media-body span,
.sidebar-user-action-list .media-body p {
  font-size: 14px;
}
.sidebar-user-action-list .generic-list-item li a {
  color: #233d63;
  font-size: 15px;
}
.sidebar-user-action-list .generic-list-item li a:hover {
  color: #ec5252;
}
.sidebar-user-action-list .notification-body a {
  padding-right: 0;
  padding-left: 0;
}

.dashboard-menu-close {
  display: none;
  z-index: 3;
}
@media (max-width: 1199px) {
  .dashboard-menu-close {
    display: inline-block;
  }
}

/*======== dashboard-menu-toggler ========*/
.dashboard-menu-toggler {
  display: none;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .dashboard-menu-toggler {
    display: inline-block;
  }
}
.dashboard-menu-toggler:hover {
  background-color: rgba(127, 136, 151, 0.1);
}

/*======== dashboard-content-wrap =========*/
.dashboard-content-wrap {
  height: 100vh;
  padding-top: 45px;
  width: calc(100% - 325px);
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .dashboard-content-wrap {
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}

/*======== profile-detail =========*/
.profile-detail .generic-list-item li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .profile-detail .generic-list-item li {
    display: block;
  }
}
.profile-detail .generic-list-item li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.profile-detail .generic-list-item li .profile-name {
  color: #233d63;
  font-weight: 600;
  width: 300px;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .profile-detail .generic-list-item li .profile-name {
    width: auto;
    display: block;
    margin-bottom: 4px;
  }
}
.profile-detail .generic-list-item li .profile-desc {
  width: 500px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .profile-detail .generic-list-item li .profile-desc {
    width: 400px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .profile-detail .generic-list-item li .profile-desc {
    width: auto;
  }
}

/*======= message =========*/
.dashboard-message-wrapper {
  border: 1px solid rgba(127, 136, 151, 0.1);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.03);
  box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.03);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .dashboard-message-wrapper {
    flex-direction: column;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .dashboard-message-wrapper {
    flex-direction: column;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .dashboard-message-wrapper {
    flex-direction: column;
  }
}

/*======= message-sidebar =========*/
.message-sidebar {
  width: 350px;
  border-right: 1px solid rgba(127, 136, 151, 0.1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .message-sidebar {
    width: 100%;
    border-right: 0;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .message-sidebar {
    width: 100%;
    border-right: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .message-sidebar {
    width: 100%;
    border-right: 0;
  }
}

/*======= message-active =========*/
.message-active {
  background-color: rgba(53, 143, 227, 0.07);
}

/*======= conversation-wrap =========*/
.conversation-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
}

.conversation-box {
  max-height: 620px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-right: 30px;
  padding-left: 30px;
}

/*======= conversation-item =========*/
.conversation-item .media-body {
  flex: inherit;
}
.conversation-item .message-body {
  display: inline-block;
  padding: 10px 15px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  position: relative;
  background-color: #eeeeee;
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .conversation-item .message-body {
    width: 100%;
  }
}
.conversation-item .message-body .la-check {
  display: none;
}
.conversation-item .message-body::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: #eeeeee;
}
.conversation-item .message-typing {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}
.conversation-item .message-typing .typing-director {
  padding-top: 8px;
  margin-left: 3px;
}

/*======= message-sent =========*/
.message-sent .media {
  flex-direction: row-reverse;
}
.message-sent .message-body {
  background-color: #358ff7;
  color: #fff;
}
.message-sent .message-body .la-check {
  display: inline-block;
}
.message-sent .message-body h5 {
  color: #fff;
}
.message-sent .message-body span {
  opacity: 0.8;
  text-align: right;
}
.message-sent .message-body::after {
  background-color: #358ff7;
}
.message-sent .avatar-sm {
  margin-right: 0 !important;
  margin-left: 1rem;
}

/*======= message-reply =========*/
.message-reply .media-body {
  flex-direction: row-reverse;
}
.message-reply .message-body::after {
  right: auto;
  left: -6px;
}

/*======= message-reply-body =========*/
.message-reply-body .emojionearea-emojis-list {
  padding-top: 20px;
}
.message-reply-body .emojionearea {
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.message-reply-body .emojionearea-search {
  height: auto !important;
}
.message-reply-body .emojionearea-search > input {
  height: auto !important;
  border: 1px solid rgba(128, 137, 150, 0.1);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 3px 12px;
}
.message-reply-body .emojionearea-editor {
  width: 100%;
  min-height: 60px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 0;
  margin-right: 10px;
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: #233d63;
  border: none;
  resize: none;
  outline: none;
}
.message-reply-body .emojionearea-editor:before {
  color: #7f8897 !important;
}
.message-reply-body .emojionearea-button {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*========= data-list =========*/
@media (max-width: 1199px) {
  .data-list .btn-group {
    width: 100%;
    margin-bottom: 15px;
  }
}
.data-list .btn.active {
  background-color: #ec5252;
  color: #fff;
}

@media (max-width: 1199px) {
  .data-list .btn-group {
    width: 100%;
    margin-bottom: 15px;
  }
}
.data-list .btn-group .btn {
  border-radius: 0;
}
.data-list .btn-group .btn input {
  position: absolute;
  left: 0px;
  top: 9px;
  z-index: -1;
  opacity: 0;
}
.data-list .btn-group .btn.active {
  background-color: #ec5252;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .dashboard-info-card .card-body.d-flex {
    flex-direction: row;
    text-align: left;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .dashboard-info-card .card-body.d-flex {
    flex-direction: row;
    text-align: left;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .dashboard-info-card .card-body.d-flex {
    flex-direction: row;
    text-align: left;
  }
}

@media (max-width: 320px) {
  .emojionearea .emojionearea-picker.emojionearea-picker-position-top {
    right: -100px;
  }
}

/*========= data-list-wrap =========*/
.data-list-wrap label {
  height: 50px;
  margin-bottom: 0;
  line-height: 28px;
}
.data-list-wrap label:first-child {
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}
.data-list-wrap label:last-child {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

/*========= setting body =========*/
.setting-body .MultiFile-intercepted .custom-radio {
  position: relative;
}
.setting-body .MultiFile-intercepted .custom-radio .custom-control-input {
  position: absolute;
  top: 22px;
  left: 42px;
  transform: translateX(50%);
}
.setting-body .MultiFile-intercepted .custom-radio .custom-control-label {
  margin-left: 0;
}

/*=================================
  Skillbar
 =================================*/
.skill {
  margin-bottom: 20px;
}

.progress_bg {
  background-color: rgba(127, 136, 151, 0.1);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  margin-top: 10px;
}
.progress_bg .progress_bar {
  height: 10px;
  background-color: #ec5252;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  position: relative;
}
.progress_bg .progress_bar:after {
  position: absolute;
  content: "";
  top: -4px;
  right: -1px;
  width: 18px;
  height: 18px;
  background-color: #ec5252;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

/*======== skillbar ========*/
.skillbar {
  position: relative;
  display: block;
  width: 100%;
  background-color: rgba(127, 136, 151, 0.1);
  height: 15px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  -webkit-transition-property: width, background-color;
  -moz-transition-property: width, background-color;
  -ms-transition-property: width, background-color;
  -o-transition-property: width, background-color;
  transition-property: width, background-color;
}

.skillbar-skillbar {
  height: 7px;
}

.skillbar-skillbar-2 {
  height: 4px;
}

.skillbar-bar {
  height: 15px;
  width: 0;
  background-color: #7f8897;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.skillbar--bar {
  height: 7px;
}

.skillbar--bar-2 {
  height: 4px;
}

.skill-bar-percent {
  font-size: 15px;
  font-weight: 600;
  color: #233d63;
}

.skillbar-title {
  font-size: 15px;
}

/*======== my-course-progress-bar-wrap ========*/
.my-course-progress-bar-wrap .skillbar-title {
  width: 26%;
}
@media (max-width: 1024px) {
  .my-course-progress-bar-wrap .skillbar-title {
    width: 100%;
  }
}
.my-course-progress-bar-wrap .skillbar-box {
  width: 56%;
}
@media (max-width: 1024px) {
  .my-course-progress-bar-wrap .skillbar-box {
    width: 100%;
  }
}
.my-course-progress-bar-wrap .skill-bar-percent {
  width: 18%;
  text-align: right;
}
@media (max-width: 1024px) {
  .my-course-progress-bar-wrap .skill-bar-percent {
    position: absolute;
    width: auto;
    top: 0;
    right: 0;
  }
}

/*-=========== hero-bg ==========-*/
.hero-bg-1 {
  background-image: url("../images/slider-img1.jpg");
}

.hero-bg-2 {
  background-image: url("../images/slider-img2.jpg");
}

.hero-bg-3 {
  background-image: url("../images/slider-img3.jpg");
}

.hero-bg-4 {
  background-image: url("../images/slider-img4.jpg");
}

.hero-bg-5 {
  background-image: url("../images/slider-img5.jpg");
}

/*-=========== hero-slider ==========-*/
@media (max-width: 480px) {
  .hero-slider .owl-nav {
    display: none;
  }
}
.hero-slider .hero-slider-item .section__title,
.hero-slider .hero-slider-item .section__desc {
  -webkit-transform: translateY(70px);
  -moz-transform: translateY(70px);
  -ms-transform: translateY(70px);
  -o-transform: translateY(70px);
  transform: translateY(70px);
  opacity: 0;
  visibility: hidden;
}
.hero-slider .hero-slider-item .hero-btn-box {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(60px);
  -moz-transform: translateY(60px);
  -ms-transform: translateY(60px);
  -o-transform: translateY(60px);
  transform: translateY(60px);
}
.hero-slider .hero-slider-item .hero-btn-box a {
  text-decoration: none !important;
}
.hero-slider .owl-nav div {
  background-color: rgba(255, 255, 255, 0.1);
}
.hero-slider .owl-dots {
  position: relative;
  bottom: 140px;
}
.hero-slider .owl-dots div {
  border-color: #fff;
}
.hero-slider .owl-item.active .section__title,
.hero-slider .owl-item.active .section__desc,
.hero-slider .owl-item.active .hero-btn-box {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.hero-slider .owl-item.active .section__title {
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
.hero-slider .owl-item.active .section__desc {
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}
.hero-slider .owl-item.active .hero-btn-box {
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transition-delay: 1100ms;
  -moz-transition-delay: 1100ms;
  -ms-transition-delay: 1100ms;
  -o-transition-delay: 1100ms;
  transition-delay: 1100ms;
}

/*-=========== hero-slider-item ==========-*/
.hero-slider-item {
  position: relative;
  z-index: 2;
  padding-top: 200px;
  padding-bottom: 270px;
}
@media (max-width: 480px) {
  .hero-slider-item {
    padding-top: 120px;
    padding-bottom: 200px;
  }
}
.hero-slider-item:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #233d63;
  opacity: 0.9;
  content: "";
  z-index: -1;
}
.hero-slider-item:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/shape.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
}

/*-=========== hero-content ==========-*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-content .section__title {
    font-size: 50px !important;
    line-height: 60px !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero-content .section__title {
    font-size: 40px !important;
    line-height: 55px !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .hero-content .section__title {
    font-size: 30px !important;
    line-height: 40px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-content form {
    width: 100% !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero-content form {
    width: 100% !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .hero-content form {
    width: 100% !important;
  }
}

/*-=========== hero-area-2 ===========-*/
.hero-area-2 .hero-slider-item,
.hero-area-3 .hero-slider-item {
  padding-top: 140px;
}
.hero-area-2 .hero-slider-item:before,
.hero-area-3 .hero-slider-item:before {
  display: none;
}
.hero-area-2 .hero-slider-item:after,
.hero-area-3 .hero-slider-item:after {
  opacity: 0.6;
}

.hero-area-2 .hero-slider-item {
  padding-bottom: 0;
}

/*-=========== hero-area-3 ===========-*/
.hero-area-3 .hero-slider-item {
  padding-bottom: 150px;
}
@media (max-width: 480px) {
  .hero-area-3 .hero-slider-item {
    padding-top: 120px;
    padding-bottom: 130px;
  }
}

/*-=========== hero-area-4 ===========-*/
.hero-area-4 .hero-slider-item {
  padding-top: 165px;
  padding-bottom: 180px;
}
@media (max-width: 480px) {
  .hero-area-4 .hero-slider-item {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.hero-area-4 .hero-slider-item::before {
  background-image: url("../images/hero-shape.jpg");
  z-index: -1;
}
.hero-area-4 .hero-content .form-control {
  height: 60px;
  font-size: 16px;
}

/*-=========== hero-feature-wrap ===========-*/
.hero-feature-wrap {
  margin-top: 150px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-category-wrap {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero-category-wrap {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .hero-category-wrap {
    padding-top: 60px;
  }
}
.hero-category-wrap .col-lg-4 {
  padding-right: 5px;
  padding-left: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-category-wrap .col-lg-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero-category-wrap .col-lg-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .hero-category-wrap .col-lg-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.hero-category-wrap .category-item {
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-category-wrap .category-item {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero-category-wrap .category-item {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .hero-category-wrap .category-item {
    margin-bottom: 30px;
  }
}

.breadcrumb-content p a {
  text-decoration: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-content .section__title {
    padding-bottom: 5px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .breadcrumb-content .section__title {
    padding-bottom: 5px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .breadcrumb-content .section__title {
    font-size: 30px !important;
    line-height: 40px !important;
    padding-bottom: 5px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .breadcrumb-content .section__title.fs-30 {
    font-size: 22px !important;
    line-height: 30px !important;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .breadcrumb-content .section__desc {
    font-size: 16px;
    line-height: 24px !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .breadcrumb-content .section__desc {
    font-size: 16px;
    line-height: 24px !important;
  }
}
@media (max-width: 375px) {
  .breadcrumb-content .media-card {
    flex-direction: column;
  }
}
@media (max-width: 375px) {
  .breadcrumb-content .media-card .media-img {
    margin-right: auto;
    margin-bottom: 15px;
  }
}
.breadcrumb-content .media-card .media-body h5 a {
  text-decoration: none;
}
@media (max-width: 375px) {
  .breadcrumb-content .media-card .media-body {
    width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .breadcrumb-content .file-upload-wrap {
    margin-top: 20px;
  }
}
.breadcrumb-content .video-box {
  position: relative;
  bottom: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-logo {
    text-align: left !important;
    padding-top: 20px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .breadcrumb-logo {
    text-align: left !important;
    padding-top: 20px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .breadcrumb-logo {
    text-align: left !important;
    padding-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-btn-box.text-end {
    text-align: left !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .breadcrumb-btn-box.text-end {
    text-align: left !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .breadcrumb-btn-box.text-end {
    text-align: left !important;
  }
}

/*============ ERROR AREA =========*/
.error-content svg {
  width: 300px;
  fill: #7f8897;
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .error-content svg {
    width: 250px;
  }
}

/*====== sidebar-negative =======*/
.sidebar-negative {
  position: relative;
  z-index: 3;
  margin-top: -100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-negative {
    margin-top: 0;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .sidebar-negative {
    margin-top: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .sidebar-negative {
    margin-top: 0;
  }
}

/*====== widget-panel =======*/
.widget-panel {
  margin-bottom: 30px;
}

.preview-course-video {
  position: relative;
}
.preview-course-video .overlay {
  background: linear-gradient(180deg, rgba(30, 30, 28, 0) 0%, rgba(30, 30, 28, 0.9) 100%);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  z-index: -1;
}
.preview-course-video:hover .play-button {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.preview-course-video-content {
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 20px;
  z-index: 1;
}

.play-button {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*================ course-overview-card ===================*/
.course-overview-card {
  margin-bottom: 30px;
}
.course-overview-card .overview-list-item {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.course-overview-card .overview-list-item li {
  margin-bottom: 15px;
  width: 50%;
  padding-right: 20px;
  position: relative;
  padding-left: 25px;
  font-size: 15px;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .course-overview-card .overview-list-item li {
    width: 100%;
    padding-right: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .course-overview-card .overview-list-item li {
    width: 100%;
    padding-right: 0;
  }
}
.course-overview-card .overview-list-item li i {
  position: absolute;
  top: 5px;
  left: 0;
}
.course-overview-card h3 a {
  text-decoration: none;
}
.course-overview-card .review-wrap .select2-full-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  padding-right: 0;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .curriculum-header {
    flex-direction: column;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .curriculum-header {
    flex-direction: column;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .curriculum-header h3 {
    width: 100%;
    text-align: left;
    padding-bottom: 4px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .curriculum-header h3 {
    width: 100%;
    text-align: left;
    padding-bottom: 4px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .curriculum-duration {
    width: 100%;
    text-align: left;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .curriculum-duration {
    width: 100%;
    text-align: left;
  }
}

.instructor-wrap .media-card h5 a {
  text-decoration: none;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .instructor-wrap .media-card {
    flex-direction: column;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .instructor-wrap .media-card {
    flex-direction: column;
  }
}

.instructor-img {
  margin-right: 40px;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .instructor-img {
    margin-bottom: 40px;
    margin-right: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .instructor-img {
    margin-bottom: 40px;
    margin-right: 0;
  }
}
.instructor-img .media-img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  width: 120px;
  height: 120px;
}
.instructor-img .media-img img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

/*================ course-dashboard-container ===================*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .course-dashboard-container {
    display: block !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .course-dashboard-container {
    display: block !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .course-dashboard-container {
    display: block !important;
  }
}

/*================ course-dashboard-column ===================*/
.course-dashboard-column {
  width: 75%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 1366px) {
  .course-dashboard-column {
    width: calc(100% - 400px);
  }
}
@media (max-width: 1024px) {
  .course-dashboard-column {
    width: calc(100% - 350px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .course-dashboard-column {
    width: 100%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .course-dashboard-column {
    width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .course-dashboard-column {
    width: 100%;
  }
}
.course-dashboard-column.active {
  width: 100%;
}

.lecture-video-detail {
  position: relative;
  z-index: 3;
}

/*==== lecture-tab-body ======*/
.lecture-tab-body .generic-tab .mobile-menu-nav-item {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .lecture-tab-body .generic-tab .mobile-menu-nav-item {
    display: block;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .lecture-tab-body .generic-tab .mobile-menu-nav-item {
    display: block;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .lecture-tab-body .generic-tab .mobile-menu-nav-item {
    display: block;
  }
}

/*==== lecture-video-detail-body ======*/
.lecture-video-detail-body {
  padding: 20px 50px 50px 50px;
}

/*================ lecture-overview-item ===================*/
.lecture-overview-item {
  margin-bottom: 30px;
  margin-top: 30px;
}
.lecture-overview-item .generic-list-item li span {
  color: #233d63;
  margin-right: 8px;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .question-overview-result-header {
    display: block !important;
  }
}

/*================ lecture-overview-stats-wrap ===================*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .lecture-overview-stats-wrap {
    display: block !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .lecture-overview-stats-wrap {
    display: block !important;
  }
}
.lecture-overview-stats-wrap > *.lecture-overview-stats-wide-item {
  width: 75%;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .lecture-overview-stats-wrap > *.lecture-overview-stats-wide-item {
    width: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .lecture-overview-stats-wrap > *.lecture-overview-stats-wide-item {
    width: auto;
  }
}
.lecture-overview-stats-wrap > * {
  width: 25%;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .lecture-overview-stats-wrap > * {
    width: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .lecture-overview-stats-wrap > * {
    width: auto;
  }
}
.lecture-overview-stats-wrap > *:first-child {
  width: 20%;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .lecture-overview-stats-wrap > *:first-child {
    width: auto;
    margin-bottom: 12px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .lecture-overview-stats-wrap > *:first-child {
    width: auto;
  }
}

/*====== lecture-description ======*/
.lecture-description p,
.lecture-description .generic-list-item {
  padding-bottom: 20px;
}

.lecture-owner-decription p {
  padding-bottom: 10px;
}
.lecture-owner-decription strong {
  font-weight: 600;
  color: #233d63;
}

/*================ question-overview-filter-wrap ===================*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .question-overview-filter-wrap {
    display: block !important;
  }
}
.question-overview-filter-wrap .select2-full-width .select2-container--default {
  height: 44.5px !important;
}
.question-overview-filter-wrap .select2-full-width .select2-container--default .select2-selection--single {
  height: 44.5px !important;
  line-height: 0;
}

.question-overview-filter-item {
  flex: 1;
  margin-right: 8px;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .question-overview-filter-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }
}
.question-overview-filter-item:last-child {
  margin-right: 0;
}
.question-overview-filter-item .generic-action-wrap .theme-btn {
  font-weight: 400;
  color: #7f8897;
  text-align: left;
}
.question-overview-filter-item .generic-action-wrap .theme-btn:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Line Awesome Free";
  font-size: 15px;
  color: #7f8897;
  pointer-events: none;
  display: inline-block;
  content: "\f107";
  right: 15px;
  font-weight: 900;
}
.question-overview-filter-item .generic-action-wrap .dropdown-menu {
  min-width: 100%;
}

/*================ lecture-quest-wrap ===================*/
.lecture-quest-wrap {
  position: relative;
  width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1366px) {
  .lecture-quest-wrap {
    width: 700px;
  }
}
@media (max-width: 1024px) {
  .lecture-quest-wrap {
    width: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .lecture-quest-wrap {
    width: auto;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .lecture-quest-wrap {
    width: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .lecture-quest-wrap {
    width: auto;
  }
}

.replay-question-wrap,
.new-question-wrap {
  background-color: #fff;
  padding-top: 30px;
  display: none;
}
.replay-question-wrap.active,
.new-question-wrap.active {
  display: block;
}

/*====== new-question-wrap ========*/
.new-question-wrap .new-question-body .custom-control-wrap .custom-control {
  position: relative;
}
.new-question-wrap .new-question-body .custom-control-wrap .custom-control .custom-control-input {
  position: absolute;
  top: 20px;
  left: 44px;
  transform: translateX(50%);
}

.new-question-wrap,
.search-course-wrap {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .new-question-wrap,
  .search-course-wrap {
    width: auto;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .new-question-wrap,
  .search-course-wrap {
    width: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .new-question-wrap,
  .search-course-wrap {
    width: auto;
  }
}

/*====== replay-question-body ========*/
.replay-question-body .question-list-item .media:hover {
  background-color: transparent;
}

.replay-action-bar {
  border: 1px solid rgba(127, 136, 151, 0.2);
  background-color: rgba(127, 136, 151, 0.1);
  border-bottom: 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.replay-action-bar .btn-group .btn {
  color: #233d63;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
}
.replay-action-bar .btn-group .btn:first-child {
  -webkit-border-radius: 4px 0 0 0;
  -moz-border-radius: 4px 0 0 0;
  border-radius: 4px 0 0 0;
}
.replay-action-bar .btn-group .btn:last-child {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.replay-action-bar .btn-group .btn:hover {
  background-color: #ec5252;
  color: #fff;
}

.question-replay-body .form--control {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/*====== question-overview-result-wrap ========*/
.question-overview-result-wrap.active {
  display: none;
}

/*================ question-list-item ===================*/
.question-list-item .media-body {
  overflow: hidden;
}
.question-list-item .media:hover {
  background-color: rgba(127, 136, 151, 0.05);
}

.question-meta-content {
  overflow: hidden;
  padding-right: 145px;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .question-meta-content {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .question-meta-content {
    padding-right: 20px;
  }
}

/*========= number-upvotes ==========*/
.number-upvotes span {
  font-weight: 600;
}
.number-upvotes button {
  border: none;
  margin-left: 10px;
  font-size: 15px;
  color: #7f8897;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  line-height: 25px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: transparent;
  outline: none;
}
.number-upvotes button:hover {
  color: #233d63;
  background-color: rgba(127, 136, 151, 0.2);
}

/*================ lecture-announcement-wrap ===================*/
.lecture-announcement-wrap {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .lecture-announcement-wrap {
    width: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .lecture-announcement-wrap {
    width: auto;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .lecture-announcement-wrap {
    width: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .lecture-announcement-wrap {
    width: auto;
  }
}

/*============= my-course-filter-wrap ==============*/
/*============= my-course-sort-by-content ==============*/
.my-course-sort-by-content {
  width: 18%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .my-course-sort-by-content {
    width: 100%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .my-course-sort-by-content {
    width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .my-course-sort-by-content {
    width: 100%;
  }
}

/*============= my-course-filter-by-content ==============*/
.my-course-filter-by-content {
  padding-left: 10px;
  width: 50%;
}
@media (max-width: 1199px) {
  .my-course-filter-by-content {
    width: 58%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .my-course-filter-by-content {
    padding: 10px 0 10px 0;
    width: 100%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .my-course-filter-by-content {
    padding: 10px 0 10px 0;
    width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .my-course-filter-by-content {
    padding: 10px 0 10px 0;
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .my-course-filter-by-content-inner {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .my-course-filter-by-content-inner {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .my-course-filter-by-content-inner {
    flex-wrap: wrap;
  }
}
.my-course-filter-by-content-inner .select-container {
  width: 33%;
  margin-right: 10px !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .my-course-filter-by-content-inner .select-container {
    width: 48%;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .my-course-filter-by-content-inner .select-container {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .my-course-filter-by-content-inner .select-container {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.my-course-search-content {
  width: 32%;
  padding-left: 20px;
}
@media (max-width: 1199px) {
  .my-course-search-content {
    width: 25%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .my-course-search-content {
    width: 100%;
    padding-left: 0;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .my-course-search-content {
    width: 100%;
    padding-left: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .my-course-search-content {
    width: 100%;
    padding-left: 0;
  }
}

/*================ course-alert-info ===================*/
.course-alert-info .close {
  padding: 22px 15px;
  background: none;
  font-size: 24px !important;
}
.course-alert-info .alert-link {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.course-alert-info .alert-link:hover {
  color: #ec5252;
}

/*================ my-course-info ===================*/
@media (max-width: 375px) {
  .my-course-info form {
    margin-top: 15px;
    width: 100%;
  }
}

/*================ course-dashboard-side-heading ===================*/
.course-dashboard-side-heading {
  padding: 20px;
  position: relative;
}

.sidebar-open,
.sidebar-close {
  background-color: transparent;
  border: none;
  font-size: 22px;
  color: #233d63;
  outline: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.sidebar-open:hover,
.sidebar-close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #ec5252;
}

.sidebar-open {
  padding: 10px 16px;
  background-color: #233d63;
  color: #fff;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  position: absolute;
  top: 20px;
  left: -40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 15px;
  font-weight: 600;
  z-index: -1;
}
.sidebar-open .la {
  margin-right: 5px;
}
.sidebar-open.active {
  opacity: 1;
  visibility: visible;
}
.sidebar-open:hover {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  color: #fff;
  left: -155px;
}

.course-duration span {
  font-size: 13px;
  color: #7f8897;
  position: relative;
  padding-right: 12px;
  padding-left: 2px;
  font-weight: 500;
  display: inline-block;
}
.course-duration span:first-child {
  padding-left: 0;
}
.course-duration span:last-child {
  padding-right: 0;
}
.course-duration span:last-child:after {
  display: none;
}
.course-duration span:after {
  position: absolute;
  content: "";
  top: 7px;
  right: 0;
  width: 4px;
  height: 4px;
  background-color: rgba(127, 136, 151, 0.4);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

/*======= lecture-viewer-container ========*/
.lecture-viewer-container {
  position: relative;
}

.lecture-viewer-text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 4;
  display: none;
  padding-bottom: 50px;
}
.lecture-viewer-text-wrap.active {
  display: block;
}

.lecture-viewer-text-content {
  overflow: auto;
  height: 100%;
  padding: 50px 80px 0 80px;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .lecture-viewer-text-content {
    padding: 30px 30px 0 30px;
  }
}

.lecture-viewer-text-body {
  width: 700px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1440px) {
  .lecture-viewer-text-body {
    width: auto;
  }
}

.lecture-viewer-content-detail .generic-list-item li {
  font-size: 17px;
  line-height: 32px;
  margin-bottom: 12px;
}
.lecture-viewer-content-detail .generic-list-item li strong {
  color: #233d63;
  font-weight: 600;
}

/*======= curriculum-sidebar-list ========*/
.curriculum-sidebar-list .course-item-link {
  cursor: pointer;
  padding: 12px 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.curriculum-sidebar-list .course-item-link.active {
  background-color: rgba(53, 143, 247, 0.1);
}
.curriculum-sidebar-list .course-item-link.active:hover {
  background-color: rgba(53, 143, 247, 0.2);
}
.curriculum-sidebar-list .course-item-link:hover {
  background-color: rgba(127, 136, 151, 0.1);
}

.course-item-content-wrap {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.course-item-content-wrap .custom-checkbox .custom-control-label::before {
  top: -6px;
  left: -3px;
}
.course-item-content-wrap .custom-checkbox .custom-control-label::after {
  top: -3px;
  left: 0px;
}

.course-item-content {
  flex-grow: 1;
  padding-left: 20px;
}

.courser-item-meta-wrap {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.course-item-meta {
  font-size: 14px;
}
.course-item-meta i {
  margin-right: 3px;
}

/*================ course-dashboard-sidebar-column ===================*/
.course-dashboard-sidebar-column {
  width: 25%;
  height: 100vh;
  position: fixed;
  right: 0;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 5;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(127, 136, 151, 0.2);
  border-top: 0;
}
@media (max-width: 1366px) {
  .course-dashboard-sidebar-column {
    width: 400px;
  }
}
@media (max-width: 1024px) {
  .course-dashboard-sidebar-column {
    width: 350px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .course-dashboard-sidebar-column {
    display: none;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .course-dashboard-sidebar-column {
    display: none;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .course-dashboard-sidebar-column {
    display: none;
  }
}
.course-dashboard-sidebar-column.active {
  right: -25%;
}
@media (max-width: 1366px) {
  .course-dashboard-sidebar-column.active {
    right: -400px;
  }
}
@media (max-width: 1024px) {
  .course-dashboard-sidebar-column.active {
    right: -350px;
  }
}

.course-dashboard-sidebar-wrap {
  height: 100%;
  overflow-x: hidden;
  padding-bottom: 90px;
  background-color: #fff;
  z-index: 5;
}

/*======= footer-item ==========*/
.footer-item {
  margin-bottom: 40px;
}
.footer-item img {
    width: 80%;
    object-fit: contain
}

.copy-desc {
  font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copy-desc {
    padding-bottom: 5px;
    text-align: center;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .copy-desc {
    padding-bottom: 5px;
    text-align: center;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .copy-desc {
    padding-bottom: 5px;
    text-align: center;
  }
}
.copy-desc a {
  color: #7f8897;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.copy-desc a:hover {
  color: #ec5252;
}

/*===== copyright-content =======*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .dashboard-copyright-content .justify-content-end,
  .copyright-content .justify-content-end {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .dashboard-copyright-content .justify-content-end,
  .copyright-content .justify-content-end {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .dashboard-copyright-content .justify-content-end,
  .copyright-content .justify-content-end {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copyright-content .social-icons {
    text-align: center !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .copyright-content .social-icons {
    text-align: center !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .copyright-content .social-icons {
    text-align: center !important;
  }
}
.copyright-content .generic-list-item li {
  margin-bottom: 0;
}

/*===== dark-theme ======*/
.dark-theme {
  background-color: #1b1b1b;
  color: #eeeeee !important;
  /*===== general =====*/
  /*===== generic-list-item =====*/
  /*===== main-menu =====*/
  /*===== form--control =====*/
  /*===== hero-slider-item =====*/
  /*===== menu-category =====*/
  /*===== cart-dropdown-menu =====*/
  /*====== info-box =====*/
  /*===== info-overlay ======*/
  /*===== category-item ======*/
  /*===== generic-tab ======*/
  /*===== card ======*/
  /*===== tooltipster ======*/
  /*===== owl-action-styled ======*/
  /*===== button ======*/
  /*===== stroke-shape ======*/
  /*===== menu-banner-content ======*/
  /*===== off-canvas-menu-list ======*/
  /*===== select-container ======*/
  /*===== select-container ======*/
}
.dark-theme h1,
.dark-theme h2,
.dark-theme h3,
.dark-theme h4,
.dark-theme h5,
.dark-theme h6,
.dark-theme .generic-tab .nav-link,
.dark-theme .form-group .search-icon,
.dark-theme .media-card .media-body h5,
.dark-theme .card-item .card-title,
.dark-theme .review-stars span.rating-number,
.dark-theme .label-text,
.dark-theme .copy-desc a:hover,
.dark-theme .category-item-layout-2 .category-content,
.dark-theme .category-item-layout-2 .cat__title,
.dark-theme .info--box:hover .info__title,
.dark-theme .info--box:hover .info__text,
.dark-theme .filter-nav li a,
.dark-theme .pagination-box .page-link,
.dark-theme .modal-container .close,
.dark-theme .modal-container .close:hover span,
.dark-theme .generic-accordion .card-header .btn,
.dark-theme .helpful-action .btn:hover,
.dark-theme .lecture-overview-item .generic-list-item li span,
.dark-theme .lecture-owner-decription strong,
.dark-theme .question-overview-filter-item .generic-action-wrap .theme-btn,
.dark-theme .generic-action-wrap .dropdown-menu .dropdown-item,
.dark-theme .replay-action-bar .btn-group .btn,
.dark-theme .lecture-viewer-content-detail .generic-list-item li strong,
.dark-theme .sidebar-open,
.dark-theme .sidebar-close,
.dark-theme .rating-result-text,
.dark-theme .light-mode-btn,
.dark-theme .skill-bar-percent,
.dark-theme .btn,
.dark-theme .icon-element,
.dark-theme #scroll-top,
.dark-theme .file-upload-wrap .file-upload-text,
.dark-theme .profile-detail .generic-list-item li .profile-name,
.dark-theme .generic-table,
.dark-theme .message-reply-body .emojionearea-editor,
.dark-theme .bootstrap-tagsinput input,
.dark-theme .jqte *,
.dark-theme .social--icons-styled li a,
.dark-theme .sub-nav-toggler,
.dark-theme .portfolio-filter li,
.dark-theme .qtyBtn,
.dark-theme .qtyInput,
.dark-theme .payment-tab-toggle > label {
  color: #eeeeee;
}
.dark-theme .light-mode-btn {
  display: block;
}
.dark-theme .dark-mode-btn {
  display: none;
}
.dark-theme .shadow-sm {
  box-shadow: inset 0 0 0 #777, 0 2px 2px rgba(0, 0, 0, 0.6) !important;
}
.dark-theme .bg-white {
  background-color: #1b1b1b !important;
}
.dark-theme .bg-gray {
  background-color: rgba(238, 238, 238, 0.1) !important;
}
.dark-theme .bg-radial-gradient-gray {
  background: rgb(56, 56, 56) !important;
  background: radial-gradient(circle, rgb(56, 56, 56) 0%, rgb(27, 27, 27) 100%) !important;
}
.dark-theme .off-canvas-menu-list li a,
.dark-theme .off-canvas-menu,
.dark-theme .pagination-box .page-link,
.dark-theme .mobile-search-form,
.dark-theme .modal-content,
.dark-theme .custom--control-label-boxed,
.dark-theme .course-dashboard-sidebar-column,
.dark-theme .course-dashboard-sidebar-wrap,
.dark-theme .lecture-viewer-text-wrap,
.dark-theme .custom-control-label::before,
.dark-theme .dashboard-message-wrapper,
.dark-theme .message-reply-body .emojionearea-editor,
.dark-theme .jqte_formats,
.dark-theme .generic-accordion-layout-2 .card-header .btn {
  background-color: #292929;
}
.dark-theme .replay-question-wrap,
.dark-theme .new-question-wrap,
.dark-theme .half-shape::after,
.dark-theme .list-group-item,
.dark-theme .jqte_editor,
.dark-theme .jqte_source,
.dark-theme .iti__country-list,
.dark-theme .qtyInput,
.dark-theme .payment-tab {
  background-color: #1b1b1b;
}
.dark-theme .icon-element,
.dark-theme .owl-action-styled .owl-nav div,
.dark-theme #scroll-top,
.dark-theme .level-timeline::before,
.dark-theme .conversation-item .message-body,
.dark-theme .conversation-item .message-body::after,
.dark-theme .social--icons-styled li a,
.dark-theme .select2-dropdown,
.dark-theme .sub-nav-toggler {
  background-color: #3a3a3a;
}
.dark-theme .theme-picker-btn svg {
  stroke: #eeeeee;
}
.dark-theme .border-gray {
  border-color: rgba(238, 238, 238, 0.1) !important;
}
.dark-theme .border-top-gray {
  border-top-color: rgba(238, 238, 238, 0.1) !important;
}
.dark-theme .border-right-gray {
  border-right-color: rgba(238, 238, 238, 0.1) !important;
}
.dark-theme .border-bottom-gray {
  border-bottom-color: rgba(238, 238, 238, 0.1) !important;
}
.dark-theme .border-left-gray {
  border-left-color: rgba(238, 238, 238, 0.1) !important;
}
.dark-theme .footer__logo,
.dark-theme .logo img {
  -webkit-filter: brightness(900%) brightness(200%);
  filter: brightness(900%) brightness(200%);
}
.dark-theme .menu-category > ul > li a,
.dark-theme .shop-cart-btn,
.dark-theme .media-card .media-body h5 a,
.dark-theme .card-item .card-title a,
.dark-theme .collapse--btn,
.dark-theme .meta-tags a,
.dark-theme .number-upvotes button,
.dark-theme .quiz-nav li p a,
.dark-theme .quiz-nav li a {
  color: #eeeeee;
}
.dark-theme .menu-category > ul > li a:hover,
.dark-theme .shop-cart-btn:hover,
.dark-theme .media-card .media-body h5 a:hover,
.dark-theme .card-item .card-title a:hover,
.dark-theme .collapse--btn:hover,
.dark-theme .meta-tags a:hover,
.dark-theme .number-upvotes button:hover,
.dark-theme .quiz-nav li p a:hover,
.dark-theme .quiz-nav li a:hover {
  color: rgba(238, 238, 238, 0.6);
}
.dark-theme .text-black {
  color: #eeeeee !important;
}
.dark-theme .rating-total,
.dark-theme .card-item .card-text a,
.dark-theme .before-price {
  color: rgba(238, 238, 238, 0.6);
}
.dark-theme .text-black-50,
.dark-theme .text-gray {
  color: rgba(238, 238, 238, 0.6) !important;
}
.dark-theme .section-block,
.dark-theme .ribbon,
.dark-theme .pagination-box .page-link:hover,
.dark-theme .list-group-item-action:focus,
.dark-theme .list-group-item-action:hover,
.dark-theme .off--canvas-menu-list li.page-active a,
.dark-theme .file-upload-wrap .file-upload-input:hover,
.dark-theme .jqte_toolbar,
.dark-theme .iti--separate-dial-code .iti__selected-flag,
.dark-theme .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.dark-theme .iti__country.iti__highlight {
  background-color: rgba(238, 238, 238, 0.1);
}
.dark-theme .divider span {
  background-color: #eeeeee;
}
.dark-theme .off-canvas-menu-list li svg {
  fill: #eeeeee;
}
.dark-theme .off--canvas-menu-list li.page-active svg {
  fill: #358ff7;
}
.dark-theme img {
  filter: brightness(0.7) contrast(1.2);
}
.dark-theme .generic-list-item li {
  color: #eeeeee;
}
.dark-theme .generic-list-item li a {
  color: #eeeeee;
}
.dark-theme .generic-list-item li a:hover {
  color: rgba(238, 238, 238, 0.6);
}
.dark-theme .main-menu > ul > li a {
  color: #eeeeee;
}
.dark-theme .main-menu > ul > li a:hover {
  color: rgba(238, 238, 238, 0.6);
}
.dark-theme .main-menu > ul > li .dropdown-menu-item {
  background-color: #292929;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}
.dark-theme .main-menu > ul > li .dropdown-menu-item > li > a {
  color: #eeeeee;
}
.dark-theme .main-menu > ul > li .dropdown-menu-item > li > a:hover {
  color: rgba(238, 238, 238, 0.6);
}
.dark-theme .bootstrap-tagsinput,
.dark-theme .select-container .dropdown-menu .bs-searchbox .form-control,
.dark-theme .select2-container--default,
.dark-theme .select2-search__field,
.dark-theme .form--control {
  background-color: rgba(238, 238, 238, 0.1);
  color: #eeeeee;
}
.dark-theme .bootstrap-tagsinput:focus,
.dark-theme .select-container .dropdown-menu .bs-searchbox .form-control:focus,
.dark-theme .select2-container--default:focus,
.dark-theme .select2-search__field:focus,
.dark-theme .form--control:focus {
  border-color: rgba(238, 238, 238, 0.4);
}
.dark-theme .bootstrap-tagsinput::-webkit-input-placeholder,
.dark-theme .select-container .dropdown-menu .bs-searchbox .form-control::-webkit-input-placeholder,
.dark-theme .select2-container--default::-webkit-input-placeholder,
.dark-theme .select2-search__field::-webkit-input-placeholder,
.dark-theme .form--control::-webkit-input-placeholder {
  color: rgba(238, 238, 238, 0.6);
}
.dark-theme .bootstrap-tagsinput:-ms-input-placeholder,
.dark-theme .select-container .dropdown-menu .bs-searchbox .form-control:-ms-input-placeholder,
.dark-theme .select2-container--default:-ms-input-placeholder,
.dark-theme .select2-search__field:-ms-input-placeholder,
.dark-theme .form--control:-ms-input-placeholder {
  color: rgba(238, 238, 238, 0.6);
}
.dark-theme .bootstrap-tagsinput::placeholder,
.dark-theme .select-container .dropdown-menu .bs-searchbox .form-control::placeholder,
.dark-theme .select2-container--default::placeholder,
.dark-theme .select2-search__field::placeholder,
.dark-theme .form--control::placeholder {
  color: rgba(238, 238, 238, 0.6);
}
.dark-theme .hero-slider-item:after {
  background-color: #1b1b1b;
}
.dark-theme .menu-category > ul > li .cat-dropdown-menu {
  background-color: #292929;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}
.dark-theme .menu-category > ul > li .cat-dropdown-menu li .sub-menu {
  background-color: #292929;
  border: 1px solid rgba(238, 238, 238, 0.05);
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}
.dark-theme .menu-category > ul > li .cat-dropdown-menu li .sub-menu a {
  color: #eeeeee;
}
.dark-theme .menu-category > ul > li .cat-dropdown-menu li .sub-menu a:after {
  background-color: rgba(238, 238, 238, 0.6);
}
.dark-theme .menu-category > ul > li .cat-dropdown-menu li .sub-menu a:hover {
  color: rgba(238, 238, 238, 0.6);
}
.dark-theme .menu-category > ul > li .cat-dropdown-menu:after {
  border-bottom-color: #292929;
}
.dark-theme .cart-dropdown-menu {
  background-color: #292929;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}
.dark-theme .cart-dropdown-menu:after {
  border-bottom-color: #292929;
}
.dark-theme .info-box {
  background-color: #292929;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}
.dark-theme .info-box:before {
  background-color: rgba(27, 27, 27, 0.3);
}
.dark-theme .info-overlay:before {
  background-color: rgba(27, 27, 27, 0.5);
}
.dark-theme .info-overlay:after {
  background-color: rgba(27, 27, 27, 0.6);
}
.dark-theme .category-item::after {
  background-color: #1b1b1b;
}
.dark-theme .generic-tab .nav-link:hover {
  color: rgba(238, 238, 238, 0.6);
}
.dark-theme .generic-tab .nav-link.active {
  color: #1b1b1b;
  -webkit-box-shadow: 0 6px 25px rgba(41, 41, 41, 0.1);
  -moz-box-shadow: 0 6px 25px rgba(41, 41, 41, 0.1);
  box-shadow: 0 6px 25px rgba(41, 41, 41, 0.1);
}
.dark-theme .card,
.dark-theme .category-item-layout-2,
.dark-theme .filter-bar {
  background-color: #292929;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}
.dark-theme .card-item .card-text a:hover {
  color: #eeeeee;
}
.dark-theme .tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #292929;
}
.dark-theme .tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #292929;
}
.dark-theme .tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #292929;
}
.dark-theme .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #292929;
}
.dark-theme .owl-action-styled .owl-nav div {
  color: #eeeeee;
}
.dark-theme .owl-action-styled .owl-nav div:hover {
  background-color: #ec5252;
}
.dark-theme .theme-btn-white {
  background-color: #3a3a3a;
  color: #eeeeee;
}
.dark-theme .theme-btn-white:hover {
  background-color: #fff;
  color: #1b1b1b;
}
.dark-theme .theme-btn-white:hover svg {
  stroke: #1b1b1b;
}
.dark-theme .theme-btn-transparent {
  color: #eeeeee;
  border-color: rgba(238, 238, 238, 0.1);
}
.dark-theme .theme-btn-transparent:hover {
  border-color: rgba(238, 238, 238, 0.5);
}
.dark-theme .generic-list-item-boxed li:hover {
  border-color: rgba(238, 238, 238, 0.5);
}
.dark-theme .stroke-shape {
  background-color: #eeeeee;
}
.dark-theme .menu-banner-content .btn:hover {
  color: #1b1b1b;
}
.dark-theme .off-canvas-menu-list li .sub-menu li a {
  color: rgba(238, 238, 238, 0.6);
}
.dark-theme .off-canvas-menu-list li .sub-menu li a:hover {
  color: #eeeeee;
}
.dark-theme .select-container .dropdown-toggle,
.dark-theme .dropdown-menu,
.dark-theme .filter-nav li a,
.dark-theme .pagination-box,
.dark-theme .pagination-box .page-link {
  background-color: #3a3a3a;
}
.dark-theme .filter-nav li a.active {
  background-color: #eeeeee;
  color: #1b1b1b;
}
.dark-theme .select-container .dropdown-toggle {
  color: #eeeeee;
}
.dark-theme .select-container .show > .btn-light.dropdown-toggle {
  background-color: #3a3a3a;
  color: #eeeeee;
  border-color: rgba(238, 238, 238, 0.2);
}
.dark-theme .select-container .dropdown-item {
  color: rgba(238, 238, 238, 0.6);
}
.dark-theme .select-container .dropdown-item.active {
  background-color: rgba(238, 238, 238, 0.2);
  color: #eeeeee;
}
.dark-theme .select-container .dropdown-item.active:hover {
  background-color: rgba(238, 238, 238, 0.2);
}
.dark-theme .select-container .dropdown-item:hover {
  background-color: rgba(238, 238, 238, 0.02);
  color: #eeeeee;
}
.dark-theme .cart-dropdown-menu li,
.dark-theme .iti__divider {
  border-bottom-color: rgba(238, 238, 238, 0.1);
}
.dark-theme .file-upload-wrap-2 .file-upload-input,
.dark-theme .file-upload-wrap .file-upload-input,
.dark-theme .list-group-item,
.dark-theme .iti__country-list {
  border-color: rgba(238, 238, 238, 0.1);
}
.dark-theme .level-timeline .level-active,
.dark-theme #scroll-top:hover,
.dark-theme .message-sent .message-body,
.dark-theme .message-sent .message-body::after,
.dark-theme .generic-accordion-layout-2 .card-header .btn[aria-expanded=true] {
  background-color: #ec5252;
}
.dark-theme .media-card .media--img {
  border-color: #3a3a3a;
}
.dark-theme .portfolio-filter li.active {
  color: #ec5252;
}

/*-========= select02 style  ==========-*/
.select2-dropdown .select2-search {
  padding: 8px;
}
.select2-dropdown .select2-search__field {
  border-radius: 5px;
}
.select2-dropdown .select2-results__option--highlighted {
  background-color: initial !important;
  color: #dd493d !important;
}
.select2-dropdown .select2-results__option--selected {
  background: #dd493d !important;
  color: #fff !important;
}

.select2-container--default {
  background-color: #fff;
  color: #7f8897;
  border-radius: 5px;
}
.select2-container--default .select2-dropdown {
  border-color: rgba(127, 136, 151, 0.2);
  z-index: 99 !important;
}
.select2-container--default .select2-dropdown .select2-search__field {
  border-color: rgba(127, 136, 151, 0.2);
}
.select2-container--default .selection .select2-selection--single {
  background-clip: padding-box !important;
  border: 1px solid rgba(128, 138, 151, 0.2);
  padding: 6px 12px;
  position: relative;
  height: 38px;
  background: none;
  border-radius: 5px;
  align-items: center;
  justify-content: space-between;
  display: flex;
}
.select2-container--default .selection .select2-selection__rendered {
  color: #7f8897;
  font-weight: 400;
  font-size: 16px;
}
.select2-container--default .selection .select2-selection__arrow {
  position: relative;
}

.select2-container--open {
  z-index: 9999 !important;
}
.select2-container--open .select2-selection--single {
  border: 1px solid #dd493d !important;
}

/*========= select2-full-width =========*/
.select2-full-width .select2-container--default {
  width: 100% !important;
}

/*========= select2-full-wrapper =========*/
.select2-full-wrapper .select2-container--default {
  width: 100% !important;
  height: 50px !important;
}
.select2-full-wrapper .select2-container--default .selection .select2-selection--single {
  height: 50px;
}

/*-========= media style  ==========-*/
.media {
  -webkit-box-display: flex;
  -ms-flexbox-display: flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.media-body h5 a {
  text-decoration: none;
}

/*====== Custom-cotrol  ========*/
.custom-control {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.custom-control::after {
  display: block;
  clear: both;
  content: "";
  box-sizing: border-box;
}
.custom-control .custom-control-input {
  margin-left: -1.5em;
  width: 1em;
  height: 1em;
  margin-top: 0.4em;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  float: left;
  border: 1px solid #adb5bd;
  border-radius: 4px;
}

/*====== CheckBox  ========*/
.custom-checkbox .custom-control-input:checked {
  background-image: url("../images/after-right.svg");
  background-color: #ec5252;
  border-color: #ec5252;
}

/*====== Radio  ========*/
.custom-radio .custom-control-input {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked {
  background-image: url("../images/after-dot.svg");
  background-color: #ec5252;
  border-color: #ec5252;
}

.top-bottom-left-radius-5 {
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}


section.our-mission-area.section--padding.bg-gray .col-lg-6.responsive-column-half {
    height: 230px;
}

section.our-mission-area.section--padding.bg-gray .col-lg-6.responsive-column-half .img-box {
    height: 195px;
    width: 100%;
}


section.our-mission-area.section--padding.bg-gray .col-lg-6.responsive-column-half .img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card.card-item.hover-s.text-center img {
    width: auto;
}




section.blog-area.section--padding .card.card-item .card-image {
    height: 300px;
}

section.blog-area.section--padding .card.card-item .card-image a {
    height: 100%;
}



section.blog-area.section--padding .card.card-item .card-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

section.blog-area.section--padding .card.card-item {
    height: 520px;
}


section.blog-area.section--padding ul.generic-list-item {
    height: 80px;
}












.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    height: 42px;
    padding: 8px;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #333;
        line-height: 26px;
    }
