/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  margin: 0;
  background-color: #fff;
  font-family: 'Roboto', sans-serif;
  color: #000;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
}
a{
  color: #2557A4;
  text-decoration: none;
  outline: unset;
}
a:hover {
  color: #C5D54F;
  text-decoration: none;
  outline: unset;
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
    --bs-btn-padding-x: 0.975rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-size: 0.9rem;
}
.btn-thmBlue {
  text-transform: uppercase ;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 1px !important;
  display: inline-block !important;
  padding: 8px 16px !important;
  border-radius: 5px !important;
  transition: 0.5s !important;
  color: #fff !important;
  background-color: #2557a4 !important;
  border: 1px solid #2557a4 !important;
}
.btn-thmBlue:hover {
  background-color: #3072d7;
  border-color: #3072d7;
  color: #fff;
}
.btn-check:checked+.btn-thmBlue, .btn-thmBlue.active, 
.btn-thmBlue.show, .btn-thmBlue:first-child:active, 
:not(.btn-thmBlue-check)+.btn-thmBlue:active{
  background-color: #3072d7;
  border-color: #3072d7;
  color: #fff;
}
.btn-thmGreen{
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 5px;
  transition: 0.5s;
  color: #2557a4;
  background-color: #C5D54F;
  border: 1px solid #C5D54F;
}
.btn-thmGreen:hover {
  background-color: #d9ea53;
  border-color: #d9ea53;
  color: #2557a4;
}
.btn-check:checked+.btn-thmGreen, .btn-thmGreen.active, 
.btn-thmGreen.show, .btn-thmGreen:first-child:active, 
:not(.btn-thmGreen-check)+.btn-thmGreen:active{
  background-color: #d9ea53;
  border-color: #d9ea53;
  color: #2557a4;
}
/*---*/
.bg-thmBlue{
	background-color: #2557a4;
}
.bg-thmGreen{
	background-color: #C5D54F;
}
.text-thmBlue{
	color: #2557a4!important;
}
.text-thmGreen{
	color: #C5D54F!important;
}
.call-now {
    background: #c5d54f;
    border-radius: 0;
    color: #2557a4;
    display: inline-block;
    font-size: 16px;
    line-height: 12px;
    position: fixed;
    right: 45px;
    top: 270px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform-origin: bottom right;
    width: 150px;
    height: 50px;
    z-index: 99;
    font-weight:600;
    border-radius: 0px 0px 10px 10px;
    padding: 8px 0 0;
}
.call-now span{
	font-size: 20px;
}
.call-now:hover{
	background: #2557a4;
    color: #fff;
}
.call-now i {
    font-size: 16px;
    margin-bottom: 5px;
    margin-right: 5px;
}
/*--------------------------------------------------------------
# Top Bar & Header
--------------------------------------------------------------*/
#topbar {
  background: #2557A4;
  min-height: 40px;
  font-size: 16px;
  transition: all 0.5s;
  color: #fff;
  padding: 5px 0;
}
#topbar .contact-info i {
  font-style: normal;
  color: #C5D54F;
}
#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}
#topbar .social-links a {
  color: #C5D54F;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
#topbar .social-links a:hover {
  color: white;
}
/*-----*/
#header .nav-link {
    font-weight: 500;
    color: #2557a4;
    padding: 7px 15px;
    border-radius: 50px;
    margin: 2px;
}
#header .nav-link.active{
    color: #2557a4;
    background: #C5D54F;
}
#header .nav-link:focus, 
#header .nav-link:hover{
	color: #2557a4;
    background: #C5D54F;
}
#header .dropdown-item:focus, 
#header .dropdown-item:hover {
    color: #2557a4;
    background-color: #c5d54f;
}
#header .dropdown-item {
    color: #fff;
}
#header .navbar-toggler {
    padding: 5px 8px;
    font-size: 18px;
    line-height: 1;
    color: rgb(37 87 164);
    background-color: #c5d54f;
    border: var(--bs-border-width) solid #c5d54f;
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}
@media (min-width: 992px) {
    #header .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 25px;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        background: #2557a4;
    }

   #header .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  background: url("../img/hero-bg.jpg") center;
  background-size: cover;
  position: relative;
}
#hero:before {
  content: "";
  background: rgb(15 52 109 / 60%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  position: relative;
}
#hero h1 {
  margin: 0px 0 15px;
  font-size: 45px;
  font-weight: 600;
  line-height: 50px;
  color: #c5d54f;
}
#hero h2 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#hero h2 i{
  font-size: 18px;
  transform: rotate(-90deg);
  margin-right: 5px;
}
#hero h3{
  font-size: 22px;
  margin-right: 5px;
  color: #fff;
  font-weight: 400;
}

#hero .content-box {
	background: rgb(0 0 0 / 50%);
	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: 2.15rem;
	line-height: 2.15rem;
	padding: 10px 15px;
	font-weight: 700;
	color: #2557a4;
	background: #c5d54f;
	margin-bottom: 15px;
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 0 10px;
}
#hero .video-box {
	position: relative;
	background: #c5d54f;
	border-radius: 0 0 10px 10px;
	padding: 10px;
}
#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#c5d54f 50%, rgb(197 213 79 / 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 #000;
  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(197 213 79);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
#hero .play-btn:hover::after {
  border-left: 15px solid #c5d54f;
  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;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
    padding: 15px;
  }

  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero h3 {
    font-size: 16px;
    margin-right: 5px;
    color: #fff;
    font-weight: 400;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 130vh;
  }
}
/**--Section--**/
.section-title {
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 30px;
}
.section-title h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  color: #2557a4;
}
.section-title h3 {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #c5d54f;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  width: auto;
  margin-bottom: 0;
}
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 4px;
    left: 0;
    bottom: 0;
    background: #2557a4;
    border-radius: 2px;
}
.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}
.section-title.section-title-sm::before {
    width: 90px;
    height: 4px;
}
.section-title::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 4px;
    bottom: 0px;
    background: #c5d54f;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}
.section-title.section-title-sm::after {
    width: 6px;
    height: 4px;
}
.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}
.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}
@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}
@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}
@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}

/**--Services Section--**/
.service-item {
    position: relative;
    height: 350px;
    padding: 0 20px;
    transition: .5s;
    background: #2557a4;
    border-bottom: 4px solid #c5d54f;
    border-radius: 10px;
    color: #fff;
}
.service-item h4{
    font-size: 18px;
    color: #c5d54f;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.service-logo {
    background: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    margin-bottom: 30px;
	transition: .3s;
}
.service-item:hover .service-logo {
    box-shadow: 0px 5px 5px #041735;
}
.service-logo img{
    width: 180px;
}
.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2557A4;
    border-radius: 5px;
    transform: rotate(-45deg);
}
.service-item .service-icon i {
    transform: rotate(45deg);
    font-size: 20px;
    color: #dcee54;
}
.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -20px;
    left: 50%;
    margin-left: -30px;
    opacity: 1;
}
.service-item:hover a.btn {
    bottom: -20px;
    opacity: 1;
    margin-left: -15px;
}
/*-----*/
.about {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/about.jpg) left center no-repeat;
    background-size: cover;
}
.about ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.about ul li {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}
.about ul li i{
    color:#c5d54f;
    font-size: 18px;
    vertical-align: middle;
    margin-right: 5px;
}
/*---Footer Section---*/
#footer .ft-top{	
	background: #0d2851;	
	color: #fff;
}
#footer .ft-bot{	
	background: #071c3c;	
	color: #fff;
}
#footer .footer-link a {
   transition: .5s;
}
#footer .footer-link a:hover {
    padding-left: 10px;
}
@media (min-width: 767.98px){
	.footer-about {
		margin-bottom: -75px;
	}
}
/*--Sub Page Styles--*/
#breadcrumb {
    background: #f5f5f5;
    vertical-align: middle;
    padding: 15px 0;
}
#breadcrumb .breadcrumb{
    margin:0px;
}
#breadcrumb .breadcrumb .active{
    color:#2557A4;
	font-weight: 500;
}
#breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #2557A4;
}
/*----*/
.thmTable .table {
    --bs-table-striped-bg: rgb(252 255 233);
    border-color: #e3ed9b;
}
.thmTable .table-bordered>:not(caption)>* {
    border-width: 3px 0;
}
.thmSection{
	margin: 90px 0;
}
/*----*/
.contact-box {
    background: #f5f5f5;
    text-align: center;
    height: 100%!important;
    padding: 3rem!important;
    border-radius: 15px;
    border-bottom: 4px solid #2557a4;
}
.contact-box .cb-icon{
	background-color: #c5d54f;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	width: 90px;
	height: 90px;
	border-radius: 50%!important;
}
/*-----*/
.form-signin {
    background: #f5f5f5;
    padding: 45px 30px;
    border-radius: 15px;
    border-bottom: 4px solid #2557a4;
    border-top: 4px solid #c5d54f;
}
.form-signin .form-floating:focus-within {
    z-index: 2;
}
.form-signin .form-floating input[type="text"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.form-signin .form-floating input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/*--------------------------------------------------------------
# Our Works
--------------------------------------------------------------*/
.works{
	background: #c5d54f;
	padding: 60px 0;
}
.works .dcp-box{
	margin: 10px 10px 30px;
	position: relative;
	background: #fff;
	padding: 15px 15px 25px;
	border-radius: 8px;
	border-bottom: 5px solid #2557a4;
}
.works .dcp-box .dcp-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 125px;
    height: 125px;
    padding: 12px;
    z-index: 1;
    background-color: #2557a4;
    clip-path: polygon(100% 0, 0 0, 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: 8px 0 0 0;
}
.works .dcp-box:hover .dcp-icon {
    left: 0;
    top: 0;
}
.works .dcp-box .dcp-icon img{
    width: 50px;
}
.works .dcp-box h2{
    color: #2557a4;
    text-align: right;
    text-transform: initial;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1.65rem;
    min-height: 90px;
    width: 65%;
    margin-left: auto;
    border-bottom: 3px solid #c5d54f;
    padding-bottom: 10px;
}
.works .dcp-box ul {
    margin-top: 30px;
    min-height: 340px;
    padding-left: 20px;
}
.works .dcp-box ul li{
	font-weight: 600;
	line-height: 1.35rem;
	margin-bottom: 12px;
	position:relative;
}
/*---*/

/*--SideBar Section--*/
.sidebar{
	background: #ffffff;
	padding: 25px;
	margin-bottom: 30px;
	border-radius: 30px;
	border: 8px solid #c5d54f;
	font-size: 14px;
}
.sidebar .heading {
    color: #2557a4;
    margin-bottom: 25px;
    font-size: 1.0rem;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 10px;
    position: relative;
}
.sidebar .heading:after {
	background: #c5d54f;
	width: 60px;
	height: 2px;
	z-index: 2;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
}
.sidebar .heading:before {
    content: '';
    background: rgb(197 213 79);
    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: #c5d54f;
}
/*--Yallow Card--*/
.sidebar-BlueCard {
    background: #2557a4;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 30px;
    font-size: 14px;
    border: 8px solid rgb(67 121 204);
}
.sidebar-BlueCard .heading {
    color: #c5d54f;
    margin-bottom: 15px;
    font-size: 1.15rem;
    text-transform: uppercase;
    padding-bottom: 9px;
    position: relative;
    font-weight: 700;
}
.sidebar-BlueCard .heading:after {
	background: #ffffffa1;
	width: 60px;
	height: 2px;
	z-index: 2;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
}
.sidebar-BlueCard .heading:before {
    content: '';
    background: hsl(0deg 0% 100% / 46%);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.sidebar-BlueCard h1{
    color: #fff;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0px;
}
.sidebar-BlueCard .small, .sidebar-BlueCard small {
    font-size: 65%;
    font-weight: 500;
}
.sidebar-BlueCard h3{
    color: #fff;
    font-size: .95rem;
    line-height: 1.25rem;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 5px;
}
/*----*/
#FuelCard {
    background: #f5f5f5;
}
#FuelCard .image-sec h1{
   color: #2557a4;
   font-size: 2.75rem;
   margin-bottom: 0.75rem;
}
#FuelCard .content-sec{
   color: #000;
   padding: 0 0 0 30px;
}
#FuelCard .content-sec h2 {
    color: #000000;
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}
#FuelCard .content-sec h3 {
    font-size: 2.25rem;
    /* border: 1px dashed #cadd40; */
    padding: 15px 30px 15px 20px;
    border-radius: 15px;
    background: rgb(37 87 164);
    width: fit-content;
    color: #fff;
}
#FuelCard .content-sec h3 span{
	background: #c5d54f;
	color: #000000;
	font-weight: 700;
	padding: 5px 15px;
	border-radius: 50px;
}
#FuelCard .content-sec h3 small{
      font-size: 1.5rem;
}
#FuelCard .content-sec ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
#FuelCard .content-sec ul li {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}
#FuelCard .content-sec ul li i{
    color: #2557a4;
    font-size: 18px;
    vertical-align: middle;
    margin-right: 5px;
}
#FuelCard .content-sec p{
	font-size: 0.75rem;
	font-weight: 300;
}
.themeModal {
--bs-modal-border-color: unset;
overflow-y: auto;
}
.themeModal .sewi-content .icon-box i {
font-size: 60px;
line-height: 60px;
position: relative;
top: 3px;
}
.themeModal .sewi-content .modal-header {
padding: 0.25rem 0.25rem;
background: #33bfbf;
color: #fff;
}
.themeModal .sewi-content .icon-box {
color: #fff;
position: absolute;
margin: 0 auto;
left: 0;
right: 0;
top: -50px;
width: 95px;
height: 95px;
border-radius: 50%;
z-index: 9;
background: #1388CB;
padding: 15px;
text-align: center;
box-shadow: 0px 2px 2px rgb(0 0 0 / 10%);
}
.themeModal .sewi-content h4 {
text-align: center;
font-size: 26px;
margin: 45px 0 15px;
}
.themeTable .table thead th {
background-color: #f8f9fc;
}
.themeModal .modal-header {
padding: 0.75rem 0.75rem;
background: #6c757d;
color: #fff;
}
.fs-5 {
font-size: 1.25rem !important;
}
/*--Theme Form--*/
.themeForm .form-label {
    display: inline-block;
    margin-bottom: 0.65rem;
    text-transform: initial;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
}
.themeForm  .form-label-sm {
    font-size: 12px;
    line-height: 12px;
}
.themeForm .form-control,
.themeForm .form-select {
    border: 1px solid #e3e6f0;
    box-shadow: 0 1px 4px 0px rgb(0 0 0 / 5%);
    height: 47px;
    line-height: 33px!important;
    outline: none;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    display: block;
    background-color: #fff;
    font-weight: 500;
    opacity: 1;
    border-radius: 4px;
}
.themeForm textarea{
	height: auto!important;
}
.themeForm .form-control-sm, 
.themeForm .form-select-sm {
    height: 37px;
    line-height: 27px!important;
}
.themeForm .checkRadio-bg {
    vertical-align: middle;
    max-width: 100%;
    cursor: text;
    padding: 9px 15px;
    width: 100%;
    border: 1px solid #e3e6f0;
	box-shadow: 0 1px 4px 0px rgb(0 0 0 / 5%);
    min-height: 48px;
    outline: none;
    font-size: 14px;
    line-height:26px;
    color: #333;
    box-sizing: border-box;
    display: block;
    background-color: #fff;
    font-weight: 600;
    opacity: 1;
	border-radius: 4px;
}
.themeForm .cr-bg-sm{
	min-height: 37px!important;
	padding: 3px 12px!important;
}
.themeForm .cr-bg-sm .form-check-input {
    padding: 6px;
    margin-right: 5px;
    margin-top: 6px;
}
.themeForm .form-check-input:checked {
    background-color: #33bfbf;
    border-color: #33bfbf;
}
.themeForm .form-check-input:focus {
    border-color: #33bfbf;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(51 191 191 / 25%);
}
.themeForm .form-check-input {
    width: 1em!important;
    height: 1em!important;
    padding: 8px;
    margin-right: 5px;
    margin-bottom: 0;
    vertical-align: middle;
    margin-top: 5px;
    border-color: #33bfbf;
}
.themeForm .table-responsive .form-check-input {
    margin-top: 0.225rem;
}
.form-graybox {
    background-color: #f8f9fc!important;
    opacity: 1;
    border: none!important;
    box-shadow: none!important;
}
.form-graybox.h-auto {
    min-height: 47px!important;
}
.value {
  font-family: initial;
}
.btn{
	box-shadow: 0 1px 4px 0px rgb(0 0 0 / 20%);
}
.tmsub-title {
   /* font-size: 1.1rem;*/
    padding: 10px;
    margin-bottom: 20px;
    border-left: 3px solid #0053b6;
    border-radius: 5px;
    font-weight: 600;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 501 !important;
}
.pagetitle {
    margin-bottom: 20px;
    background: #e2e3e5;
    padding: 10px 15px;
    border-radius: 0 0 8px 8px;
    border-bottom: 0.24rem solid #9fb1c2;
    position: fixed;
    z-index: 99;
    top: 63px;
    margin-right: 25px;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
}
.header {
    transition: all 0.5s;
    z-index: 997;
    min-height: 60px;
    background-color: #fff;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px !important;
  }
}
.btn-thmGreen {
  text-transform: uppercase;
  font-weight: 600 !important;
  font-size: 16px !important;
  letter-spacing: 0.5px !important;
  display: inline-block !important;
  padding: 8px 16px !important;
  border-radius: 5px !important;
  transition: 0.5s !important;
  color: #2557a4 !important;
  background-color: #C5D54F !important;
  border: 1px solid #C5D54F !important;
}
/*--Theme Toast--*/
.toast {
	overflow:hidden;
}
.toast .progress{
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	width: 100%;
	background: #eeeeee;
}
.toast .progress:before{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: #666666;
}
.show .progress:before{
	animation: progress 5s linear forwards;
}
@keyframes progress {
	100%{
		right: 100%;
	}
}
.toast-header{
	font-size: 1rem;
	font-weight: 600;
}
.toast-header i{
	font-size: 1.15rem;
}
.toast-body{
	font-size: 1rem;
	padding-bottom: 1rem;
	background:#fff;
}
/*----*/
.themeToast .toast-header{
	background:#A52A2A;
	border-color:#A52A2A;
	color:#fff;
}
.themeToast .toast-header i{
	margin-right:5px;
}
.themeToast .progress:before{
	background-color: #A52A2A;
}
/*----*/
.successToast .toast-header{
	background:#198754;
	border-color:#198754;
	color:#fff;
}
.successToast .toast-header i{
	margin-right:5px;
}
.successToast .progress:before{
	background-color: #198754;
}

.updateToast .toast-header{
	background:#ea7425;
	border-color:#ea7425;
	color:#fff;
}
.updateToast .toast-header i{
	margin-right:5px;
}
.updateToast .progress:before{
	background-color: #ea7425;
}

.text-update{
	color: #ea7425;
}

th {
	white-space: nowrap;
}
/*----*/
.errorToast .toast-header{
background:#dc3545;
border-color:#dc3545;
color:#fff;
}
.errorToast .toast-header i{
margin-right:5px;
}
.errorToast .progress:before{
background-color: #dc3545;
}
/*----*/
.warningToast .toast-header{
background:#fcbc00;
border-color:#fcbc00;
color:#fff;
}
.warningToast .toast-header i{
margin-right:5px;
}
.warningToast .progress:before{
background-color: #fcbc00;
}
/*----*/
.infoToast .toast-header{
background:#0d6efd;
border-color:#0d6efd;
color:#fff;
}
.infoToast .toast-header i{
margin-right:5px;
}
.infoToast .progress:before{
background-color: #0d6efd;
}
hr.new2 {
  border-top: 2px dashed rgb(0, 0, 255);
}


/*--Loading--*/
.page-loading {
position: absolute;
width: 100%;
z-index: 999;
background: rgb(255 255 255 / 85%);
height: 100vh;
text-align: center;
padding-top: 15%;
padding-bottom: 15%;
}
.page-loading img{
width: 120px;
}
.page-loading h4{
font-weight: 600;
font-size: 26px;
color: #000000;
margin: 15px 0;
line-height: 25px;
letter-spacing: 4px;
}
.nav-link {
	font-family: 'Roboto', sans-serif;
}
.driverUpdateTable {
	overflow-x: hidden !important;
}
.margin-top {
  margin-top: 4rem !important;
}