/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
   font-family: "Manrope", sans-serif;
  color: #000;
}

a {
  color: #E30613;
}

a:hover {
  color:#092B66;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Manrope", sans-serif;
  color: #092B66;
  font-weight:700;
}

p {
  font-family: "Manrope", sans-serif;
  color: #000;
  font-weight: 400;
  font-size: 16px;
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1400px;
  }
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 70px;
  transition: all 0.5s;
  transition: all 0.5s;
  padding: 10px 0;
  background: #fff;
  z-index: 997;
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #000;
  padding: 12px 8px;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #E30613;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #101010;
  text-transform: capitalize;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color:#e30613;
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
  color: #092B66;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

.search-icon {
  width: 20px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

@media screen and (min-width:992px) and (max-width:1199px) {
  .nav-menu a {
     padding: 10px 6px;
        font-size: 10px;
  }
	.phone-area-top a {
    font-size: 12px !important;
}
	.phone-area-top li:last-child a {
    padding: 12px 10px!important;
}
}


/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #092B66;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #e3f0fc;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #e20613;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color:#e20613;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(31, 53, 72, 0.7);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
/*   height: calc(100vh - 90px); */
  padding: 0;
  overflow: hidden;
}

#hero .carousel-item {
  width: 100%;
/*   height: calc(100vh - 90px); */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

#hero .carousel-item::before {
  content: '';
  /*background-color: rgba(13, 30, 45, 0.6);*/
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

#hero .carousel-content {
  text-align: left;
}

@media (max-width: 992px) {
  #hero,
  #hero .carousel-item {
    height: calc(100vh - 70px);
  }
  #hero .carousel-content.container {
    padding: 0 50px;
  }
}

#hero h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 45px;
  font-weight: 800;
}

#hero p {
  font-size: 20px;
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
  opacity: 1;
  bottom: 15px!important;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-control-next-icon img,
#hero .carousel-control-prev-icon img {
  width: 35px;
}

#hero .carousel-indicators li {
  cursor: pointer;
  width: 20px;
}

#hero .carousel-indicators .active {
  width: 30px;
}

#hero .arrow-carousel-left-hover,
#hero .arrow-carousel-right-hover {
  display: none;
}

#hero .carousel-control-prev_hover .arrow-carousel-left-hover,
#hero .carousel-control-next_hover .arrow-carousel-right-hover {
  display: block;
}

#hero .carousel-control-prev_hover .arrow-carousel-left,
#hero .carousel-control-next_hover .arrow-carousel-right {
  display: none;
}

#hero .carousel-control-next {
  left: 40px;
}

#hero .carousel-control-prev {
  right: 0px;
}

#hero .carousel-control-next,
#hero .carousel-control-prev {
  position: absolute;
  top: auto;
  bottom: 38px;
  width: 50px;
  color: #fff;
  height: 40px;
}

#hero .carousel-control-prev {
  right: auto;
}

#hero .btn-get-started {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 16px 25px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #000;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 80%;
  }
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

#hero .carousel-indicators .active {
  background-color: #16ABB3;
}

@media (min-width:768px) {
  .carousel-indicators {
    left: unset!important;
    margin-right: 2%;
  }
}

#hero .carousel-indicators li {
  opacity: 1!important;
}

@media (max-width:767px) {
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    display: none;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
  padding: 80px 0;
}

@media (max-width:767px) {
  section {
    padding: 50px 0;
  }
}

.phone-area-top {
    margin-bottom: 0px;
    padding-left: 0px;
}
.phone-area-top li {
    display: inline-block;
}
.phone-area-top li {
    margin-right: 15px;
}.phone-area-top li:last-child {
    margin-right:0px;
}
.phone-area-top li:last-child a {
    background: #E30613;
    padding: 12px 25px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.phone-area-top a {
    color: #092B66;
    font-weight: 600;
    font-size: 14px;
}
.tagline {
    color: #E30613;
    margin-bottom: 0px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #ddd;
    padding-bottom: 18px;
    margin-bottom: 18px;
}
.who-we-are {
    background: -moz-linear-gradient(to right, #F2F2F2 65%, white 35%);
    background: -webkit-linear-gradient(to right, #F2F2F2 65%, white 35%);
    background: linear-gradient(to right, #F2F2F2 65%, white 35%);
}
.main-title {
    font-size: 48px;
    margin-bottom: 20px;
}
.about-left {
    max-width: 590px;
    /* float: left; */
    /* margin-right: 0px !important; */
    margin: 0 0 0 auto;
    padding-right: 80px;
}
.btn-theme .btn {
    padding: 0px;
    color: #092B66;
    font-weight: 600;
    position: relative;
}
.btn-theme .btn:after {
    content: url(../img/arrow.png);
    position: absolute;
}
.btn-theme .btn:hover {
    text-decoration: underline;
    text-underline-offset: 8px;
}
section.who-we-are {
    padding-bottom: 0px;
}
.about-left .btn-theme {
    margin-top: 30px !important;
}
.footer-top {
    padding: 60px 0px 30px;
}
.widget-title {
    font-size: 24px;
    margin-bottom: 20px;
}
footer#footer {
    background: #F6F6F6;
}
.title-foo {
    color: #333;
    margin-bottom: 4px;
    font-size: 16px;
}
.phone-links a {
    color: #000;
}
.email-links a {
    color: #3676E5;
}
.social-link-img a {
    margin-right: 5px;
}
.social-link-img {
    margin-bottom: 0px;
}
ul.foo-link {
    padding-left: 0px;
}
ul.foo-link li {
    margin-bottom: 6px;
    display: block;
    color: #333;
}
ul.foo-link li a{
    color: #333;
}
.foo-address p {
    font-weight: 600;
    color: #000;
}
.copyright p {
    text-align: center;
    color: #333;
    font-size: 14px;
}
.copyright a{
  color: #333;
}
footer#footer a:hover {
    color: #e30613;
}
.btn-theme-red {
    background: #E30613;
    color: #fff;
    padding: 13px 30px;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 0px;
    text-align: center;
    min-width: 144px;
    font-weight: 600;
}
.btn-theme-red:hover{
  background:#092B66 ;
   color: #fff;
}
.our-expertise .theme-red-btn {
    text-align: right;
}
.box-slide .title-blurb {
    font-size: 24px;
    color: #000;
    margin-top: 20px;
}
.box-slide .para {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}
button:focus
{
  outline: none;
}
 .our-expertise .owl-nav button {
    margin-right: 5px;
    margin-left: 5px;
}
.expertise-slider {
    padding-top: 30px;
}
@media (min-width: 980px)
{
  .our-expertise .owl-nav {
    position: absolute;
    top: -75px;
    right: 175px;
}
}
.white
{
  color: #fff;
}
.our-fleet-sec {
    background: #092B66;
}
.our-fleet-sec .theme-red-btn {
    text-align: right;
}
.btn-theme-red.btn-white {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.btn-theme-red.btn-white:hover {
    background: #E30613;
    border: 1px solid #E30613;
}
.fleet-box {
/*     display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px; */
    padding-top: 30px;
}
.fleet-grid {
    background: #fff;
}
.fleet-desc {
    padding: 15px;
}
.fleet-name {
    font-size: 24px;
}
.fleet-no {
    color: #333;
}
.fleet-box  table.table td {
    padding-left: 0px;
    padding-right: 0px;
     color: #333;
}
.fleet-box table.table td:last-child {
    text-align: right;
    font-weight: 600;
}
.fleet-box .btn-theme-red {
    width: 100%;
}
.cta-bg
{
  background: url('../img/what-we-offers.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
      padding: 180px 0px;
}
.cta-bg .arrow-right {
    text-align: right;
    margin-bottom: 0px;
    position: absolute;
    right: 110px;
}
.cta-box-desc .btn-theme-red {
    margin-top:20px;
}
.breadcrumbs {
    padding: 80px 0;
    position: relative;
    background: #092B66;
}
.breadcrumb-title {
    color: #fff;
    text-align: center;
    margin-bottom: 0px;
    font-size: 40px;
    text-transform: uppercase;
}
.et_pb_main_blurb_image {
    width: 65px;
    height: 65px;
    background: #092b66;
    border-radius: 50px;
    margin: 0 auto 20px;
        padding: 10px;
}
.et_pb_main_blurb_image img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(1) invert(40);
}
.et_pb_module_header {
    font-size: 18px;
}
.expertise-bx {
    text-align: center;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 24%);
    border-bottom: 3px solid #e30613;
       padding: 30px 10px;
    margin-bottom: 30px;
}
.practise-para ul {
    padding-left: 20px;
	    margin-left: 0px;
}
.practise-para ul li {
    margin-bottom: 5px;
}
.about-img img {
    border: 6px solid #ddd;
}
.team-grids-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.team-box {
    text-align: center;
    background: #DDD;
    padding: 40px;
    border-bottom: 5px solid #1c4188;
}
.team-box img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50px;
}
.team-box .profile-name {
    font-size: 22px;
    margin-top: 30px;
}
.team-box .designation-role {
    color: #e30613;
    font-size: 16px;
    margin-bottom: 30px;
}



/* The Modal (background) */
.modal.gallery-model {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000000b8;
    z-index: 99;
}
.gallery-certified .column img {
    padding: 20px;
    height: 240px;
    object-fit: contain;
    width: 100%;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 24%);
    border-bottom: 3px solid #092b66;
}
.gallery-certified .column img {
    margin-bottom: 30px;
}

/* Modal Content */
.gallery-model .modal-content {
  position: relative;
      background-color: transparent;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}
.gallery-model .mySlides {
    text-align: center;
}
/* The Close Button */
.gallery-model .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 50px;
    font-weight: bold;
    opacity: 1;
}

.gallery-model .close:hover,
.gallery-model .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.gallery-model .mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.gallery-model .prev,
.gallery-model .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 10px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
      background: #092B66;
      width: 50px;
      height: 50px;
      border-radius: 50px!important;
          text-align: center;
}

/* Position the "next button" to the right */
.gallery-model .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.gallery-model .prev:hover,
.gallery-model .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.gallery-ceified-sec .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.demo {
  opacity: 0.6;
}

.gallery-ceified-sec .active,
.gallery-ceified-sec .demo:hover {
  opacity: 1;
}

.gallery-ceified-sec img.hover-shadow {
  transition: 0.3s;
}

.gallery-ceified-sec .hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.info-para-certied p {
    font-size: 20px;
    border-left: 3px solid #092b66;
    padding-left: 20px;
    background: #dddddd24;
    padding: 21px;
    margin-bottom: 39px;
}
.about-fleet p {
    text-align: center;
}
.training-bx {
    text-align: center;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 24%);
    border-bottom: 3px solid #e30613;
    padding: 30px 10px;
    margin-bottom: 30px;
    min-height: 500px;
}
.num-text {
    text-transform: uppercase;
    font-size: 48px;
    color: transparent;
    -webkit-text-stroke: 1px #e30613;
}
.trainig-top-space
{
  margin-top: 40px;
}
.contact-details .title-foo {
    color: #092a65;
    font-weight: 700;
    font-size: 20px;
}
.get-touch-bx {
    background: #ddd;
    padding: 30px;
}
.foo-phone div {
    overflow: hidden;
    padding-left: 15px;
}
.foo-email div {
    overflow: hidden;
    padding-left: 15px;
}
.foo-location div {
    overflow: hidden;
    padding-left: 15px;
}
.fas {
    font-size: 20px;
    color: #092b66;
    float: left;
    position: relative;
    top: 6px;
}

/*******Responsive css*********/
.fleet-box .owl-nav {
    text-align: center;
    margin-top: 20px;
}
.fleet-box .owl-nav button {
    margin: 8px;
}
@media (max-width: 992px) {
    #hero, #hero .carousel-item {
               height: 100%;
    }
}
@media (max-width:991px)
{
	.phone-menu-top {
    display: none;
}
		.our-expertise .owl-nav {
    text-align: center;
    margin-top: 20px;
}
	.copyright-foo-area {
    padding-bottom: 40px !important;
}
}
.breadcrumb-title {
    margin-top: 0px;
}
@media (max-width:767px)
{
	.contact-details .foo-phone {
    text-align: left;
}
	.contact-details .foo-email {
    text-align: left;
}
	.contact-details .foo-social {
    text-align: left;
}
	.main-title {
    font-size: 28px;
    margin-bottom: 15px;
}
	section.who-we-are {
    background: #f2f2f2;
}
	.about-left {
    padding-right: 20px;
    padding-left: 20px;
}
	.who-we-are .col-lg-6.col-md-6.pr-0 {
    padding-right: 15px!important;
}
	.about-img {
    margin-top: 20px;
}
	.about-left .btn-theme {
    margin-top: 10px !important;
}
.our-expertise .main-title {
    text-align: center;
}	
.our-expertise .theme-red-btn {
    margin-top: 10px;
	text-align: center;
}	
	.our-fleet-sec .main-title {
    text-align: center;
}
	.our-fleet-sec .theme-red-btn {
    margin-top: 10px;
	text-align: center;
}
	.cta-box-desc {
    text-align: center;
}
	.cta-bg {
    padding: 100px 0px;
}
	.cta-bg .arrow-right {
    display: none;
}
	.cta-box-desc p {
    max-width: 80%;
    margin: 0 auto;
}
	.widget-title {
    text-align: center;
}
	.foo-phone {
    text-align: center;
}
	.foo-email {
    text-align: center;
}
	.foo-social {
    text-align: center;
    margin-bottom: 20px;
}
	ul.foo-link {
    text-align: center;
    margin-left: 0px;
}
	.foo-address {
    text-align: center;
}
	.footer-logo {
    text-align: center;
    margin-top: 20px;
}
	.et_pb_module_header {
    font-size: 16px;
}
	.expertise-bx {
    padding: 20px 10px;
    min-height: 180px;
}
	.breadcrumb-title {
    font-size: 35px;
}
		.team-grids-area {
    display: block;
}
	.team-box {
    padding: 20px;
    margin-bottom: 15px;
}
	.about-left-s h3 {
    font-size: 20px;
}
	.training-bx {
    min-height: auto;
}
}
ul.foo-link {
    margin-left: 0px;
}
@media (min-width:768px) and (max-width:991px)
{
	.team-grids-area {
    grid-template-columns: repeat(2, 1fr);
}
	.main-title {
    font-size: 35px;
}
.about-left {
    max-width: 100%;
    padding-right: 0px;
}
	.who-we-are .container-fluid {
    width: 90%;
}
	.who-we-are .col-lg-6.col-md-12.pr-0 {
    padding-left: 0px;
    margin-top: 30px;
}
	section.who-we-are {
    background: #F2F2F2;
}
	#footer .col-lg-3.col-md-6 {
    margin-bottom: 30px;
}
	.footer-top {
    padding-bottom: 0px;
}
	.expertise-bx {
    min-height: 200px;
}
}
@media (min-width:992px) and (max-width:1270px)
{
	.expertise-bx {
    min-height: 200px;
}
	.about-left {
    padding-right: 20px;
    padding-left: 60px;
}
	.phone-area-top {
    margin-left: 0px;
}
	#header .col-lg-6.col-md-4.col-3 {
    padding: 0px 10px;
}
}
@media (min-width:1200px) and (max-width:1228px)
{
.nav-menu a {
    font-size: 13px;
}	
	.phone-area-top li:last-child a {
    padding: 12px 20px;
}
}
@media (min-width:1271px) and (max-width:1336px)
{
	.phone-area-top {
    margin-left: 0px;
}
}
.mobile-show-details {
    display: flex !important;
    align-items: center;
    position: fixed !important;
    padding: 0px !important;
    z-index: 9990;
    width: 100%;
    left: 0;
    bottom: 0;
    top: auto;
    margin-bottom: 0;
    background: #092a65;
    text-align: center;
}
.mobile-show-details .fas {
    color: #fff;
    font-size: 30px;
    text-align: center;
    width: 100%;
}
.mobile-show-details a {
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 10px;
    margin: 0 auto;
}
.phone-icos
{
border-right: 2px solid #fff;	
}
.mobile-show-details .col-md-6.col-6 {
    padding: 0px;
}
@media (min-width:992px)
{
	.mobile-show-details {
    display: none !important;
}
	.desktop-menu-hide {
    display: none !important;
}
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
    width: 100%;
    padding: 10px!important;
    margin-bottom: 10px;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    height: 100px;
}
.wpcf7-submit {
    background: #E30613!important;
    color: #fff!important;
    padding: 18px 30px!important;
    font-size: 16px!important;
    text-transform: capitalize!important;
    border-radius: 0px!important;
    text-align: center!important;
    min-width: 144px!important;
    font-weight: 600!important;
	margin-top: 10px;
}
.wpcf7-submit:hover{
	    background: #092B66!important;
    color: #fff!important;
}
.wpcf7-not-valid-tip {
    font-size: 14px;
}
.gallery-about-us .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.gallery-views {
    padding-top: 30px;
}
#header .logo img {
    width: 100%;
    object-fit: contain;
}

.gallery-views .gallery-item {
    margin-bottom: 35px;
}
.about-img {
    text-align: center;
}
.box-slide .para {
    padding-bottom: 20px;
}
@media (max-width:768px)
{
    .glightbox-clean .gnext {
        top: 45%!important;
		        right: 0px !important;
    }
    .glightbox-clean .gprev {
        top: 45%!important;
		        left: 0px !important;
    }
	.glightbox-container .gslide-inner-content {
    width: 90%!important;
}.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
    background: #00000073;
}
}

section.cta-bg {
    display: none;
}
#header .col-lg-6.col-md-4.col-3 {
    padding: 0px;
}
@media screen and (min-width:1200px) and (max-width:1260px) {
  .nav-menu a {
    padding: 12px 6px;
}
	    .nav-menu a {
        font-size: 13px;
    }
}
@media screen and (min-width:1261px) and (max-width:1302px) {
  .nav-menu a {
    padding: 12px 6px;
}
}
.wpcf7-submit {
    border: none;
}