/*--------------------------------------------------------------
# General Styles 
--------------------------------------------------------------*/
body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #000;
  font-size: 0.9rem;
  line-height: 1.5rem;
  font-weight: 400;
}
a {
	color: #e7a300;
	text-decoration: none;
}
a:hover {
	color: #feb811;
	text-decoration: none;
}
a:focus, input:focus, textarea:focus, button:focus {
    text-decoration: none;
    outline: none;
}
/*--Theme Button Styles--*/
.btn {
	font-weight:600;
	padding: 0.75rem 1.75rem;
	font-size: 1.0rem;
	border-radius: .375rem;
}
.btn-sm {
	padding: 4px 14px!important;
	font-size: 0.85rem;
}
.text-thmYallow {
	 color: #feb811!important;
}
.bg-thmYallow {
	 background-color: #feb811!important;
}
/*--Yallow Button--*/
.btn-thmYallow {
   position: relative;
   padding: 8px 20px;
   z-index: 1;
   font-weight: 600;
   display: inline-block;
   color: #000;
   background: #feb811;
}
.btn-thmYallow i{
    margin-right: 10px;
}
.btn-thmYallow:hover{
   color: #000;
   background: #ffc53a;
}
.btn-check:checked+.btn, 
.btn-thmYallow.active,
.btn-thmYallow.show, 
.btn-thmYallow:first-child:active, 
:not(.btn-check)+.btn-thmYallow:active{
	color: #000;
	background: #ffc53a;
	border-color: #ffc53a;
}
/*--Black Button--*/
.btn-thmBlack {
   position: relative;
   padding: 8px 20px;
   z-index: 1;
   font-weight: 700;
   display: inline-block;
   color: #feb811;
   background: #000;
}
.btn-thmBlack i{
    margin-right: 10px;
}
.btn-thmBlack:hover{
    color: #feb811;
   background: #333;
}
.btn-check:checked+.btn, 
.btn-thmBlack.active,
.btn-thmBlack.show, 
.btn-thmBlack:first-child:active, 
:not(.btn-check)+.btn-thmBlack:active{
	color: #feb811;
	background: #333;
	border-color: #333;
}
.btn-thmBlack:first-child:active{
	color: #feb811!important;
	background: #000!important;
	border-color: #000!important;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid #cda45e;
}
.back-to-top i {
  font-size: 28px;
  color: #cda45e;
  line-height: 0;
}
.back-to-top:hover {
  background: #cda45e;
  color: #1a1814;
}
.back-to-top:hover i {
  color: #444444;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
   [data-aos-delay] {
		transition-delay: 0 !important;
   }
}
@media screen and (max-width: 767px) {
  
   .indexSec02 .dcp-box ul {
		margin-top: 20px!important;
		min-height: auto!important;
	}
}
@media (max-width: 1399.98px) {	
	.btn{
		padding: 10px 14px!important;
		font-size: 0.95rem!important;
	}
	.indexSec02 .dcp-box ul li {
		font-size: 0.9rem!important;
		line-height: 1.15rem!important;
	}
	.indexSec02 .dcp-box ul {
		margin-top: 30px;
		min-height: 310px;
	}
	.indexSec02 .dcp-box {
		padding: 15px 10px 30px;
	}
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #ffffff;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  top: 0;
  border-top: 3px solid #feb811;
}
#header.header-scrolled {
  top: 0;
  background: rgb(255 255 255);
  box-shadow: 0px 0px 5px 4px rgb(0 0 0 / 10%);
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  height: 60px;
}
#header.header-scrolled .logo img {
  top: 0;
  height: 40px;
}

#header.header-scrolled .navbar .dropdown ul{
    top: calc(100% + 15px)!important;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/*** Desktop Navigation */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  padding: 10px 0 10px 20px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.25rem;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 13px;
  line-height: 0;
  margin-left: 5px;
  padding-top: 5px;
}
 .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e7a300;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
    z-index: 99;
 }
 .navbar a:hover:before,
 .navbar li:hover>a:before,
 .navbar .active:before {
    visibility: visible;
    width: 100%;
 }
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #e7a300;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 20px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
  padding: 0;
}
.navbar .dropdown ul a {
  padding: 10px 15px;
  color: #444444;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #feb811;
}
.navbar .dropdown:hover>ul {
  opacity: 1;
  /* top: 100%; */
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/*** Mobile Navigation */
@media (max-width: 768px){
	#topbar {
		height: 50px;
	}
	#header {
		top: 0px;
	}
	#header .logo img {
		height: 50px;
	}
	.navbar>ul>li>a:before{
		display:none;
	}
	.navbar li {
		position: relative;
		padding: 5px 0 5px 0;
	}
}
.mobile-nav-toggle {
  color: #000000;
  font-size: 22px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(254 184 17 / 90%);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 20px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 40px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1a1814;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fca800;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #feb811;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  box-shadow: none;
  background: #feb81126;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") bottom center;
  background-size: cover;
  position: relative;
  padding: 0;
}
#hero:before {
  content: "";
  background: rgb(0 0 0 / 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  padding-top: 110px;
}

#hero .btn {
    padding: 12px 24px!important;
    font-size: 20px!important;
}
@media (max-width: 992px) {
  #hero .container {
    padding-top: 48px;
  }
}
#hero h1 {
  margin: 15px 0 15px;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 2.75rem;
  color: #fff;
  /* text-transform: uppercase; */
}
#hero h1 span {
  color: #feb811;
}
#hero h2 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.5rem;
  line-height: 2.05rem;
  font-weight: 600;
}
#hero .content-box {
	color: #fff;
	padding: 30px;
	border-radius: 10px 10px 0 0;
	margin-top: 15px;
	position: relative;
}
#hero .content-box h3 {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 2.0rem;
	line-height: 2.15rem;
}
#hero .content-box h4 {
	font-weight: 500;
	line-height: 1.85rem;
	margin-bottom: 15px;
}
#hero .content-box .price {
	font-size: 1.95rem;
	line-height: 6.35rem;
	padding: 20px 15px;
	font-weight: 700;
	color: #feb811;
	background: #000000;
	margin-bottom: 15px;
	position: absolute;
	top: 60px;
	left: 30px;
	border-radius: 50%;
	width: 140px;
	height: 140px;
}
#hero .video-box {
	position: relative;
	background: #ffffff;
	border-radius: 0 0 10px 10px;
	padding: 10px;
}
#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffffff 50%, rgb(255 255 255 / 40%) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  overflow: hidden;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}
#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #000000;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#hero .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgb(255 255 255);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
#hero .play-btn:hover::after {
  border-left: 15px solid #ffffff;
  transform: scale(20);
}
#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #000;
  z-index: 200;
  animation: none;
  border-radius: 0;
}
@media (min-width: 1024px) {
  #hero {
    /* background-attachment: fixed; */
  }
}
@media (max-width: 992px) {
  #hero .play-btn {
    margin-top: 30px;
  }
}
@media (max-height: 500px) {
  #hero {
    height: auto;
  }

  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 22px;
    line-height: 28px;
  }

  #hero h2 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  #hero {
    height: auto;
    padding: 30px 0;
  }
  #hero .content-box {
    padding: 15px 15px 35px;
  }
  #hero .content-box h3 {
    font-size: 1.5rem;
    line-height: 1.65rem;
  }
  #hero .content-box .price {
    position: relative;
  }
  #hero .content-box h4 {
    line-height: 1.5rem;
    font-size: 1.15rem;
  }
  #hero .content-box .price {
    font-size: 2.25rem;
    line-height: 8.05rem;
    padding: 20px 15px;
    font-weight: 700;
    color: #feb811;
    background: #000000;
    margin-bottom: 15px;
    position: absolute;
    top: 30px;
    left: 20px;
    border-radius: 50%;
    width: 175px;
    height: 175px;
  }
  #hero .play-btn{
	top: calc(50% - 76px);  
  }
  
  #hero .btn {
    padding: 10px 18px!important;
    font-size: 16px!important;
	}
}

@media (min-width: 320px) and (max-width: 760px) {
  
  #hero .content-box .price {
    font-size: 1.65rem;
    line-height: 5.05rem;
    padding: 20px 15px;
    font-weight: 700;
    color: #feb811;
    background: #000000;
    margin-bottom: 15px;
    position: absolute;
    top: 30px;
    left: 20px;
    border-radius: 75px;
    width: 120px;
    height: 120px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0;
  overflow: hidden;
}
.sec-title{
	padding-bottom: 15px;
}
.sec-title h3{
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 2.15rem;
	color: #000;
}
.sec-title h6{
	font-weight: 800;
	color: #e7a300;
	text-transform: uppercase;
	letter-spacing: 0.35rem;
}
.sec-content p{
	font-weight: 500;
    font-size: 1.0rem;
    line-height: 1.5rem;
}
@media (max-width: 768px){	
	.sec-title h3{
		font-size: 1.35rem;
		font-weight: 700;
		line-height: 1.75rem;
		color: #000;
	}
	.indexSec01 .sec-content p {
	    font-size: 0.95rem!important;
	    line-height: 1.35rem!important;
	}
	section {
	    padding: 35px 0;
	    overflow: hidden;
	}
	.indexSec03 article .title {
	    font-size: 1.25rem;
	    font-weight: 700;
	    padding: 0;
	    margin: 0 0 20px 0;
	    min-height: unset;
	}
	.themePage .alert-warning h5{
		font-size: 1.05rem;
	}
}
@media (min-width: 769px){
	.goverlay {
		background: rgba(0,0,0,0.85);
	}
}
@media screen and (max-height: 420px){
	.goverlay {
		background: rgba(0,0,0,0.85);
	}
}
/*--------------------------------------------------------------
# Index Section 01
--------------------------------------------------------------*/
.indexSec01 .sec-content p{
	font-size: 1.0rem;
	line-height: 1.5rem;
	color: #000;
}
.indexSec01 .video-sec{
	position:relative;
	background: #feb811;
	padding: 5px;
	border-radius: 10px;
}
.indexSec01 .video-sec img{
	border-radius:10px;
}
.indexSec01 .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#feb811 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  overflow: hidden;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}
.indexSec01 .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #000;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.indexSec01 .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgb(254 184 17);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.indexSec01 .play-btn:hover::after {
  border-left: 15px solid #feb811;
  transform: scale(20);
}
.indexSec01 .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #000;
  z-index: 200;
  animation: none;
  border-radius: 0;
}
/*--------------------------------------------------------------
# Index Section 02
--------------------------------------------------------------*/
.indexSec02{
	background: url(../img/service-bg.jpg)no-repeat center center #ececec;
	background-size: cover;
}
.indexSec02 .dcp-box {
    padding:.0 30px 30px 30px;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 6px 6px 0px rgb(129 129 129 / 25%);
    display: flex;
    position: relative;
}
.indexSec02 .dcp-box:hover {
    box-shadow: 6px 6px 0px rgb(254 184 17 / 50%);
}
.dcp-box .dcp-icon {
    width: 110px;
    height: 160px;
    background: #f9f9f9;
    padding: 30px 15px;
    border-radius: 0 0 100px 100px;
    margin-right: 30px;
	transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
.dcp-box .dcp-icon img {
    width:80px;
}
.dcp-box:hover .dcp-icon {
    background: #fff9e9;
    height: 185px;
    padding: 55px 15px 30px ;
}
.dcp-box .dcp-cont {
    margin-top: 30px;
}
.dcp-box .dcp-cont h2 {
    font-size: 1.5rem;
    color: #000;
    font-weight: 600;
    padding-bottom: 25px;
    position: relative;
}
.dcp-box .dcp-cont h2:after {
    content:'';
    position: absolute;
    top: 35px;
    left: 0;
    width: 85px;
    height: 2px;
    background: #feb811;
}
.dcp-box .dcp-cont ul {
    min-height: 215px;
    padding-left: 20px;
    margin: 0;
}
.dcp-box .dcp-cont ul li{
	font-weight: 600;
	font-size: 0.975rem;
	line-height: 1.35rem;
	margin-bottom: 8px;
	position:relative;
	vertical-align: middle;
	color: #000;
}
.dcp-box .dcp-cont ul li::marker{
	color:#feb811;
	font-size: 1.2rem;
}
.dcp-box .dcp-more a{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 60px;
	height: 60px;
	padding: 8px;
	z-index: 1;
	background-color: #000;
	clip-path: polygon(100% 0, 100% 100%, 0% 100%);
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	border-radius: 0 0 8px 0;
	color:#feb811;
}
.dcp-box:hover .dcp-more a{
	color:#000;
	background-color: #feb811;
}
.dcp-box .dcp-more a i{
	font-size: 1.10rem;
	position: relative;
	right: -25px;
	bottom: -22px;
}

@media (min-width: 320px) and (max-width: 760px) {
  
  .indexSec02 .dcp-box {
    padding: .0 15px 15px 15px;
  }
  .dcp-box .dcp-icon {
    margin-right: 15px;
	width: 110px;
    height: 125px;
  }
  .dcp-box .dcp-icon img {
    width: 55px;
  }
  .dcp-box .dcp-cont {
    margin-top: 15px;
  }
  .dcp-box .dcp-cont h2 {
    font-size: 1.15rem;
    color: #000;
    font-weight: 600;
    padding-bottom: 0px;
    position: relative;
  }
  .dcp-box .dcp-cont h2:after{
	display:none;
  }
}
/*--------------------------------------------------------------
# Index Section 03
--------------------------------------------------------------*/
.indexSec03 article {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    border-bottom: 5px solid #000;
    transition: 0.3s;
    margin-right: 10px;
    margin-left: 10px;
}
.indexSec03 article:hover {
    border-bottom: 5px solid #feb811;
}
.indexSec03 article .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}
.indexSec03 article .title {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
    min-height: unset;
}
.indexSec03 article .title a {
    color: #000;
    transition: 0.3s;
}
.indexSec03 article:hover .title a {
    color: #feb811;
}
.indexSec03 article .post-date{
    color: #666;
    font-weight: 600;
}
.indexSec03 article .post-date i{
    color: #feb811;
    margin-right: 5px;
}
.indexSec03 article .content{
    font-size:1.0rem;
    font-weight: 500;
    min-height: 78px;
}
.indexSec03 article .read-more {
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-transform: capitalize;
    color: #666;
    position: relative;
    padding-left: 30px;
}
.indexSec03 article .read-more:before {
    background-color: #feb811;
    position: absolute;
    content: "";
    width: 20px;
    height: 4px;
    left: 0;
    top: calc(50% - 0px);
}

/*--------------------------------------------------------------
# Index Section 04
--------------------------------------------------------------*/
.indexSec04{
	background: #feb811;
}
.indexSec04 .form-check-input {
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.275em;
    margin-right: 10px;
    border: none;
}
.indexSec04 .form-check-input:checked {
    background-color: #000000;
    border-color: #000000;
}
.indexSec04 .form-control {
    color: #000000;
    background-color: rgb(255 255 255);
    border: 1px solid #ffffff;
    padding: 0.575rem 0.75rem;
    margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 15px 0;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 400;
}
#footer .footer-top {
  background: #0c0b09;
  border-top: 1px solid #37332a;
  border-bottom: 1px solid #28251f;
  padding: 45px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info img{
  width:150px;
  margin-bottom:15px;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 22px;
  display: inline-block;
  background: #2c2c2c;
  color: #feb811;
  line-height: 1;
  padding: 13px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 46px;
  height: 46px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #feb811;
  color: #000;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 7px;
  color: #feb811;
  font-size: 10px;
  line-height: 16px;
  vertical-align: middle;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  /* align-items: center; */
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #feb811;
}
#footer .copyright {
  text-align: center;
  padding-top: 15px;
}
#footer .credits {
  padding-top: 0;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
#footer .footer-links .dotc-sec {
  margin-bottom:30px;
}
#footer .footer-links .dotc-sec img{
  height: 50px;
}
#footer .footer-links .auth-sec img{
	height: 80px;
	background: #fff;
    padding: 5px;
    border-radius: 5px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 10px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background: #e7e7e7;
  margin-top: 80px;
}
.breadcrumbs .page-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
}
.breadcrumbs .page-header .breadcrumb{
  margin-bottom: 0;
  font-size: 12px;
}
.breadcrumbs .page-header .breadcrumb .breadcrumb-item,
.breadcrumbs .page-header .breadcrumb .breadcrumb-item a,
.breadcrumbs .breadcrumb-item+.breadcrumb-item::before
 {
  color: #000000;
  font-weight:600;
}

/*--------------------------------------------------------------
# Page Section
--------------------------------------------------------------*/
.themeTitle{
	    color: #000000;
	    margin-bottom: 25px;
	    font-size: 1.15rem;
	    font-weight: 600;
	    /* text-transform: uppercase; */
	    padding-bottom: 13px;
	    position: relative;
	    width: fit-content;
}
.themeTitle:before {
    content: '';
    background: rgb(0 0 0);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.themeTitle:after {
    background: #feb811;
    width: 60px;
    height: 2px;
    z-index: 2;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.themePage .content h3 {
    margin-bottom: 15px;
    background: #000;
    color: #feb811;
    font-size: 1.15rem;
    padding: 10px 30px 10px 20px;
    border-radius: 0 50px 50px 0;
    border-bottom: 4px solid #feb811;
    width: max-content;
}
.themePage .content p {
    font-size: 0.95rem;
    line-height: 1.65rem;
    font-weight: 500;
}
.additional-service .img-box {
  text-align: center;
  box-shadow: 2px 2px 3px #e2e2e2;
  padding: 15px;
  transition: all ease-in-out 0.3s;
  border-radius: 8px;
  min-height: 325px;
  background: #fafafa;
  margin-bottom: 30px;
}
.additional-service .img-box img {
	width: 200px;
	padding: 10px;
	margin-bottom: 15px;
	border-bottom: 1px solid #ccc;
}
.additional-service .img-box h4 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: #000000;
}
.additional-service .img-box p {
  line-height: 1.40rem;
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 500;
  min-height: 160px;
}
.contactus .cs-box {
    background-color: #ffffff;
    box-shadow: 0px 2px 10px rgb(0 0 0 / 8%);
    border-top: 5px solid #000000;
    padding: 30px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.contactus .cs-box .icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    text-align: center;
    background-position: 50%;
    background-image: linear-gradient(310deg,#feb811,#ffdc89);
    box-shadow: 0 0.3125rem 0.625rem 0 rgba(0,0,0,.12);
    border-radius: 10px;
    display: inline-block;
    margin-right: 20px;
}
.contactus .cs-box .icon i{
    color: #000;
    top: 20px;
    position: relative;
    font-size: 2.0rem;
}
.contactus .cs-box .text h6 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    padding-bottom: 5px;
    color: #feb811;
}
.contactus .cs-box .text p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: 26px;
}

/*--contactus Email Form--*/
.contactus .php-email-form {
	margin-top:30px;
	min-height: 505px;
}
.contactus .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contactus .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contactus .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contactus .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contactus .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contactus .php-email-form input, .contactus .php-email-form textarea {
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px 0px rgb(0 0 0 / 5%);
  padding: 0.725rem 0.75rem;
  border-radius: 10px;
}
.contactus .php-email-form input:focus, .contactus .php-email-form textarea:focus {
  border-color: #feb811;
}
.contactus .php-email-form input {
  padding: 10px 15px;
  height: calc(2.75em + .75rem + 2px);
}
.contactus .php-email-form textarea {
  padding: 12px 15px;
}
.contactus .php-email-form button[type="submit"] {
  background: #feb811;
  border: 0;
  padding: 15px 30px;
  border-radius: 15px;
  color: #000;
  transition: 0.4s;
  margin-top: 20px;
  font-weight: 600;
}
.contactus .php-email-form button[type="submit"]:hover {
  background: #008da6;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.contact-map iframe {
    margin: -6px 0;
}

@media (max-width: 768px){	

	.contactus .cs-box {
		padding: 15px;
	}
	.contactus .cs-box .icon {
		width: 60px;
		height: 60px;
		min-width: 60px;
	}
	.contactus .cs-box .icon i {
		color: #000;
		top: 18px;
		position: relative;
		font-size: 1.5rem;
	}
}
/*--SideBar Section--*/
.sidebar{
	background: #ffffff;
	padding: 25px;
	margin-bottom: 30px;
	border-radius: 30px;
	border: 8px solid #ffe7ae;
	font-size: 14px;
}
.sidebar .heading {
    color: #000000;
    margin-bottom: 25px;
    font-size: 1.0rem;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 10px;
    position: relative;
}
.sidebar .heading:after {
	background: #feb811;
	width: 60px;
	height: 2px;
	z-index: 2;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
}
.sidebar .heading:before {
    content: '';
    background: rgb(255 231 174);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.sidebar .list {
    padding-left: 0px;
    list-style: none;
}
.sidebar .list li a {
    color: #333;
    line-height: 30px;
    font-size: .85rem;
}
.sidebar .list li {
    margin-bottom: 5px;
    transition: all 0.4s ease;
    border-bottom: 1px dashed #e6e6e6;
    padding-bottom: 3px;
}
.sidebar .list li:hover {
    padding-left: 10px;
}
.sidebar .list li a i {
    padding-right: 5px;
    color: #feb811;
}
/*--Yallow Card--*/
.sidebar-yallowCard {
    background: #feb811;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 30px;
    font-size: 14px;
    border: 8px solid rgb(255 203 79);
}
.sidebar-yallowCard .heading {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.15rem;
    text-transform: uppercase;
    padding-bottom: 9px;
    position: relative;
    font-weight: 700;
}
.sidebar-yallowCard .heading:after {
	background: #ffffffa1;
	width: 60px;
	height: 2px;
	z-index: 2;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
}
.sidebar-yallowCard .heading:before {
    content: '';
    background: hsl(0deg 0% 100% / 46%);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.sidebar-yallowCard h1{
    color: #000;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0px;
}
.sidebar-yallowCard .small, .sidebar-yallowCard small {
    font-size: 65%;
    font-weight: 500;
}
.sidebar-yallowCard h3{
    color: #000;
    font-size: .95rem;
    line-height: 1.25rem;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 5px;
}
/*--Theme Form--*/
.theme-form label {
    font-size: 0.85rem;
    line-height: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}
.theme-form .form-control, .theme-form .form-select{
	font-size: 14px;
	font-weight: 500;
	border: 1px solid #e0e0e0;
	box-shadow: 0 1px 4px 0px rgb(0 0 0 / 5%);
	padding: 0.725rem 0.75rem;
	border-radius: 10px;
}
.theme-form .form-control input {
    height: calc(2.75em + 0.75rem + 2px);
}
.theme-form .form-text {
    margin-top: 0.25rem;
    font-size: .775em;
    color: #feb811;
    font-weight: 600;
}
.theme-form .form-checkRadio {
	background: #fff;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid #e0e0e0;
	box-shadow: 0 1px 4px 0px rgb(0 0 0 / 5%);
	padding: 0.65rem 0.75rem;
	border-radius: 10px;
	height: 45.8px;
}
.theme-form .form-checkRadio .form-check{
	margin-bottom: 0;
}
.theme-form .form-checkRadio .form-check label{
	margin-bottom: 0;
}
.theme-form .form-checkRadio .form-check-input {
    margin-top: 0.35em;
}
.form-check-input:checked {
    background-color: #feb811;
    border-color: #feb811;
}
.form-check-input:focus {
    border-color: #feb811;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(254 184 17 / 25%);
}
/*--SignUp Section--*/
.signup-sec .nav-item{
	margin-right:15px;
}
.signup-sec .nav-link{
	font-weight: 700;
	font-size: 15px;
	color: #000;
	display: inline-block;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	background-color: #feb811;
	text-align: left;
	padding: 0;
	margin-bottom: 5px;
}
.signup-sec .nav-link.active{
	background-color: #000000;
	color: #feb811;
}
.signup-sec .nav-link .step {
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: rgb(0 0 0 / 15%);
    font-size: 18px;
    margin-right: 10px;
}
.signup-sec .nav-link.active .step {
	background-color: rgb(255 255 255 / 25%);
}
.signup-sec .nav-link .title {
    text-transform: capitalize;
    display: inline-block;
}
.signup-sec .tab-content {
    background: #ffffff;
    padding: 10px;
    border-radius: 15px;
}
@media (max-width: 768px){	
	.signup-sec .nav-link .title {
		display: none;
	}
	.signup-sec .nav-fill .nav-item .nav-link {
		width: 45px;
	}
	.signup-sec .nav-link .step{
		background-color: rgb(0 0 0 / 0%);
	}
	.signup-sec .nav-item {
		margin-right: 10px;
	}
	.btn {
		padding: 8px 10px!important;
		font-size: 0.85rem!important;
	}
	.theme-form .form-control, .theme-form .form-select {
		padding: 0.525rem 0.5rem;
	}
	.theme-form label {
		font-size: 0.75rem;
	}
	.overflow-400 {
		overflow-x: scroll;
		height: 400px;
	}
	
	.themePage .content h3 {
		margin-bottom: 15px;
		background: #000;
		color: #feb811;
		font-size: 1.15rem;
		line-height: 1.75rem;
		padding: 10px 30px 10px 20px;
		border-radius: 0 50px 50px 0;
		border-bottom: 4px solid #feb811;
		width: 340px;
	}
}
/*-----*/
.driverCard {
    padding: 10px 12px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}
.driverCard h5{
    font-weight:600;
    font-size: 1.15rem;
}
.driverCard p span{
    font-weight:600;
}
.driverCard .btn-sec a i{
    background: #000000;
    color: #feb811;
    padding: 7px 4px;
    width: 26px;
    height: 26px;
    text-align: center;
    vertical-align: middle;
    border-radius: 5px;
    font-size: 12px;
}
.driverCard .btn-sec a .fa-xmark{
    font-size: 13px;
}
.driverCard .btn-sec a i:hover{
    background: #feb811;
    color: #000000;
}
/*--Theme Modal--*/
.themeModal .modal-header{
	padding: 8px 12px;
	background: #000000;
}
.themeModal .modal-header h1{
	font-size: 20px;
	font-weight: 600;
	color: #feb811;
}
.themeModal .btn-close {
	opacity: 1;
    background-color: #feb811;
	width: 0.75em;
    height: 0.75em;
}
/*--Info Box--*/
.info-box {
    padding: 10px 15px;
    background: #fff9ec;
    border: 1px solid #ffdb90;
    border-radius: 10px;
    min-height: 130px;
    border-top: 4px solid #ffdb90;
}
.info-box p {
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 1.25rem;
}

/*--New Styles--*/
.indexSec01 .video-inner{
  position: relative;
  display: block;
  margin-right: 70px;
}

.indexSec01 .video-inner .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.indexSec01 .video-inner .image-box:before{
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.indexSec01 .video-inner:hover .image-box:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.indexSec01 .video-inner .image-box img{
  width: 100%;
}

.indexSec01 .video-inner .video-btn{
  position: absolute;
  right: -15px;
  top: 70px;
  width: 155px;
  height: 155px;
  text-align: center;
  background: #ffffff;
  padding: 10px;
  border-radius: 50%;
}

.indexSec01 .video-inner .video-btn a{
  position: relative;
  display: inline-block;
  width: 135px;
  height: 135px;
  line-height: 135px;
  text-align: center;
  border-radius: 50%;
  font-size: 36px;
  color: #fff;
  z-index: 1;
}

.indexSec01 .video-inner .video-btn a:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  border-radius: 50%;
  opacity: 0.85;
  z-index: -1;
  background: #ffb400;
}

.indexSec01 .video-inner .video-btn:after, 
.indexSec01 .video-inner .video-btn:before {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  -webkit-box-shadow: 0 0 0 0 rgb(254 184 17 / 60%);
  box-shadow: 0 0 0 0 rgb(254 184 17 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.indexSec01 .video-inner .video-btn:after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/*--Blog Post--*/
.blogPost{
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
	transition: 0.3s;
	height: 100%!important;
	position: relative!important;
	border-top: 4px solid #000000;
}
.blogPost .bp-img{
	position: relative!important;
	overflow: hidden!important;
}
.blogPost .bp-img img{
	transition: 0.5s;
}
.blogPost:hover .bp-img img {
    transform: scale(1.1);
}
.blogPost .bp-date{
	position: absolute;
    right: 0;
    bottom: 0;
    background-color: #feb811;
    color: #000;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 600;
}
.blogPost .bp-content{
	padding: 21px;
	display: flex!important;
	flex-direction: column!important;
}
.blogPost .bp-content p{
	font-size: 0.95rem;
	line-height: 1.5rem;
	height: 100px;
	overflow-y: hidden;
}
.blogPost .bp-content .title{
	font-size: 1.45rem;
	line-height: 1.95rem;
	color: #000;
	font-weight: 700;
	transition: 0.3s;
	margin-bottom: 10px;
	height: 98px;
	overflow-y: hidden;
}
.blogPost:hover .bp-content .title{
    color: #feb811;
}
.blogPost .bp-content .info {
    padding: 0;
    display: flex;
}
.blogPost .bp-content .info li{
   margin-right:15px;
}
.blogPost .bp-content .info li i{
   color: #feb811;
}
.blogPost .bp-content .info li a{
   color: #000000;
   font-weight: 500;
}
.blogPost .readmore {
    background-color: #000000;
    color: #feb811;
    padding: 10px 15px;
    font-weight: 600;
}
.blogPost:hover .readmore {
    background-color: #feb811;
    color:#000;
}
/*----*/
@media (min-width: 320px) and (max-width: 767.5px){	
	.indexSec01 .video-inner .video-btn a {
		width: 85px;
		height:85px;
		line-height: 85px;
		font-size: 30px;
	}
	.indexSec01 .video-inner .video-btn:after,
	.indexSec01 .video-inner .video-btn:before {
		width: 105px;
		height: 105px;
	}
	.indexSec01 .video-inner .video-btn {
		position: absolute;
		right: -23px;
		top: 25px;
		width: 105px;
		height: 105px;
		text-align: center;
		background: #ffffff;
		padding: 10px;
		border-radius: 50%;
	}
}
/*--Driver Schedule Test Section Styles--*/
.driverScheduleTest .tab-list{	
	width: 35%;
    padding: 0 30px 0 0;
    margin: 0;
}
.driverScheduleTest .tab-list h5,
.driverScheduleTest .tab-content h5{
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.0rem;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 10px;
    position: relative;
}
.driverScheduleTest .tab-list h5:before,
.driverScheduleTest .tab-content h5:before {
    content: '';
    background: rgb(255 231 174);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.driverScheduleTest .tab-list h5:after,
.driverScheduleTest .tab-content h5:after {
    background: #feb811;
    width: 60px;
    height: 2px;
    z-index: 2;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.driverScheduleTest .tab-list li{
	margin-left: 0px;
	padding-left: 0px;
}
.driverScheduleTest .tab-list li .fa-li{
	color:#feb811;
	padding-left: 40px;
}
.driverScheduleTest .tab-list li a{
	font-weight: 500;
	border-bottom: 1px dashed #e6e6e6;
	padding: 10px 0 10px 35px;
	transition: all 0.4s ease;
	line-height: 1.10rem;
}
.driverScheduleTest .tab-list li a small{
	font-size: .775em;
}
.driverScheduleTest .tab-list li a .tested{
	position: absolute;
    right: 15px;
    top: 30px;
    font-size: 1.0rem;
    color: #179739;
}
.driverScheduleTest .tab-list li a .nottest{
	position: absolute;
    right: 15px;
    top: 30px;
    font-size: 1.0rem;
    color: #cccccc;
}
.driverScheduleTest .tab-list li a.active {
    background: #fff6e2;
    font-weight: 600;
}
.driverScheduleTest .tab-list li a:hover {
    background: #fff6e2;
    font-weight: 600;
}
.driverScheduleTest .tab-content{	
	width: 65%;
}
.myLoader {
    border: 10px solid #feb811;
    border-radius: 50%;
    border-top: 10px solid #000000;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.driverScheduleMap {
    border: 5px solid #fff6e2;
    padding: 10px;
}

/*--Radio Card--*/
.radio-card {
    padding-right: 15px;
    min-height: 260px;
    max-height: 560px;
    overflow-y: scroll;
}
.radio-card .card{
	background-color: #fff;
	border-radius: 0.5em;
	position: relative;
	border: none;
}
.radio-card .card:hover {
    box-shadow: 3px 3px 6px rgb(0 0 0 / 10%);
}
.radio-card .card .radio {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 50%;
    cursor: pointer;
    height: 1.5em;
    outline: none;
    transition: background 0.2s ease-out, border-color 0.2s ease-out;
    width: 1.5em;
    font-size: inherit;
    margin: 0;
    position: absolute;
    left: 0.5rem;
    top: 0.75rem;
}
.radio-card .card:hover .rc-details {
    border-color: #000000;
    background: #fff;
    color: #000000;
}
.radio-card .card:hover .radio {
    border-color: #feb811;
    background: #feb811;
}
.radio-card .card .radio::after {
    border: 3px solid #fff;
    border-top: 0;
    border-left: 0;
    content: "";
    display: block;
    height: 0.715rem;
    left: 25%;
    position: absolute;
    top: 45%;
    transform: rotate(45deg) translate(-50%, -50%);
    width: 0.375rem;
}
.radio-card .card .radio:checked {
    background: #feb811;
    border-color: #feb811;
}
.radio-card .card .rc-details {
    border: 1px solid #ccc;
    border-radius: 0.75em;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 0.65rem 0.75rem 0.75rem 2.5rem;
    transition: border-color 0.2s ease-out;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.5rem;
    min-height: 110px;
    color: #aaa;
}
.radio-card .card .rc-details h6{   
	font-weight: 600;   
	font-size: 1.10rem;
}
.radio-card .card .rc-details p{   
	margin-bottom: 0;
}
.radio-card .card .radio:checked ~ .rc-details {
    border-color: #000000;
    color: #000;
}
@media (min-width: 320px) and (max-width: 767.5px){	
	.driverScheduleTest .tab-list {
		width: 100%;
		padding: 0;
		margin: 0 0 30px;
		height: 200px;
		overflow-x: scroll;
	}
	.driverScheduleTest .tab-content {
		width: 100%;
	}
}

.text-thmRed {
  color: #FF0000;
  /* Pure Red */
}