/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Lato", sans-serif;
}

/* Global Colors */
:root {
  --color-default: #212529;
  --color-default-rgb: 33, 37, 41;
  --color-background: #ffffff;
  --color-background-rgb: 255, 255, 255;
  --color-primary: #e84545;
  --color-primary-rgb: 232, 69, 69;
  --color-secondary: #32353a;
  --color-secondary-rgb: 50, 53, 58;
  --color-box-background: #f5f5f7;
  --color-box-background-rgb: 255, 255, 255;
  --color-inverse: #ffffff;
  --color-inverse-rgb: 255, 255, 255;
}

/* Nav Menu Colors */
:root {
  --color-nav: #3a3939;
  --color-nav-hover: #e84545;
  --color-nav-dropdown: #3a3939;
  --color-nav-dropdown-hover: #e84545;
  --color-nav-dropdown-background: #ffffff;
  --color-nav-mobile-background: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--color-default);
  background-color: var(--color-background);
  font-family: var(--font-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(var(--color-primary-rgb), 0.7);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

section {
  color: var(--color-default);
  background-color: var(--color-background);
  padding: 60px 0;
  overflow: clip;
}

h1 {
    font-weight: 800;
    font-size: 3rem;
}

@media (max-width: 768px) {
 h1 {
    font-size: 1.8rem;
}

  p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
h1 {
    font-size: 1.8rem;
  }
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
}

.section-title h2 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

.section .no-margin{
margin-top:0px;    
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --color-background: #ffffff;
  --color-inverse: #ffffff;
  color: var(--color-default);
  background-color: var(--color-background);
  padding: 5px;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--color-secondary);
}

.header .logo span {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--color-inverse);
  background: var(--color-primary);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 20px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color-inverse);
  background: rgba(var(--color-primary-rgb), 0.85);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 768px) {
.header {
    padding: 5px 0px;
  }
.header .logo img {
    max-width: 180px;
  }  
  
}

@media (max-width: 480px) {
.header .logo img {
    max-width: 140px;
  }
.header .btn-getstarted, .header .btn-getstarted:focus {border-radius: 0;padding: 6px 10px;} 
}


/* Global Header on page scroll
------------------------------*/
.scrolled .header {
  --color-background: #ffffff;
  --color-secondary: #444444;
  --color-nav: #444444;
  --color-nav-hover: #e84545;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Scroll Margin Top
------------------------------*/
section {
  scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 66px;
  }
}

/* Home Page Custom Header
------------------------------*/
.index-page .header {
  --color-background: rgb(10 10 10);
  --color-secondary: #ffffff;
  --color-nav: rgba(255, 255, 255, 0.515);
  --color-nav-hover: #ffffff;
}

/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
  --color-background: rgb(10 10 10);
  --color-secondary: #ffffff;
  --color-nav: rgba(255, 255, 255, 0.515);
  --color-nav-hover: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
	padding-right: 20px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fafafa;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--font-secondary);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--color-nav-hover);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--color-nav-dropdown-background);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-nav-dropdown);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--color-nav-dropdown-hover);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--color-nav-dropdown-background);
    box-shadow: 0px 0px 20px rgba(var(--color-default-rgb), 0.1);
    display: block;
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--color-nav-dropdown);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--color-nav-dropdown-hover);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(var(--color-default-rgb), 0.15);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--color-nav);
    font-size: 28px;
    line-height: 0;
    margin-right: 0px;
    cursor: pointer;
    transition: color 0.3s;
    margin-left: 5px;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--color-nav-mobile-background);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(var(--color-default-rgb), 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--color-nav-dropdown);
    padding: 10px 20px;
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(var(--color-primary-rgb), 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--color-primary);
    color: var(--color-inverse);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--color-nav-dropdown-hover);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--color-primary);
    color: var(--color-inverse);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul,
  .navmenu .megamenu ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--color-nav-dropdown-background);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul,
  .navmenu .megamenu ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active,
  .navmenu .megamenu>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgba(var(--color-primary-rgb), 0.8);
  color: #ffffff;
}

.scroll-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;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-default);
  font-size: 14px;
  padding-bottom: 50px;
}

.footer .footer-top {
  padding-top: 10px;
}

.footer .footer-about .logo {
    line-height: 0;
    margin-bottom: 10px;
    opacity: 0.5;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--color-secondary);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--font-primary);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-default-rgb), 0.5);
  font-size: 16px;
  color: rgba(var(--color-default-rgb), 0.5);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.footer h4 {
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(var(--color-default-rgb), 0.8);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--color-primary);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.footer-about {text-align:center}
.social-links, .footer .logo {
	justify-content:center;
}

.social-links .bi-twitter::before {
    color: #fff;
}
.social-links .bi-facebook::before {
    color: #fff;
}
.footer .social-links a {
    background: #000;
}
.footer .footer-about p {
    font-weight: 600;
    font-size: 20px;
    font-family: 'Poppins';	
}
/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/
.hero {
  --color-default: #ffffff;
  --color-default-rgb: 255, 255, 255;
  --color-background: #000000;
  --color-background-rgb: 0, 0, 0;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 160px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero:before {
  content: "";
  background: rgba(var(--color-background-rgb), 0.5);
  position: absolute;
  inset: 0;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}

.hero p {
  color: rgba(var(--color-default-rgb), 0.8);
  margin: 5px 0 0 0;
  font-size: 20px;
}

.hero-video {
  position: relative;
  height: 70vh;
  width: 100%;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

.hero-content {
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
  color: #fff;
  text-align: center;
  width:100%;
  z-index:99;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
.hero-btn{
  border-style: solid;
  border-width: 2px;
  border-color: rgb(230, 90, 78);
  border-radius: 24px;
  background-color: rgba(230, 90, 78, 0);
	padding: 15px 35px;
	color: #e65a4e;
	font-weight: 600;  
}

@media (max-width: 991px) {
.hero-content h1 {
    font-size: 1.8rem;
}

  .hero p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
.hero-content h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.hero-content {
    top: 15%;
  }
}

/* About Section - Home Page
------------------------------*/
.about, .service-section, .section {
  --color-background: #f4f4f4;
}

.about .content h3 {
  padding: 10px 20px;
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  color: var(--color-secondary);
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--color-primary);
  color: var(--color-inverse);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
  padding-right: 19px;
}

.about .content{
margin-right:auto;
margin-left:auto;
max-width:900px;	
	
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about p {
  font-size: 1.2rem;
  font-family: "Poppins";
  color: rgb(92, 92, 93);
  font-weight: 500;
}

.slide{
    display:flex;
    align-items:center;
    position:relative;
}

.section{
    display: block;
    height: 100vh;
    position:relative;
    
}

.about img{
    max-width: 450px;
}

.about  h2.main-title {
    font-weight: 800;
    font-size: 2.4rem;
}

.about  h2 {
    font-weight: 800;
    font-size: 2rem;
}

.service-section h2 {font-size:2.4rem; font-weight: 800;}

.about h3 {
    font-weight: 700;
    font-size: 2.1rem;
}

@media (max-width: 991px) {
.about p {
    font-size: 1.2rem;
    margin-bottom:20px;
  }
.about img{
    max-width: 400px;
}
.about h2 {
    font-size: 1.6rem;
  }
.service-section h2 {
    font-weight: 800;
    font-size: 2.4rem;    
}  
.about h3 {
    font-size: 1.8rem;
}  
}


@media (max-width: 480px) {
.about p {
    font-size: 1.0rem;
    margin-bottom:20px;
  }
.about h2 {
    font-size: 1.4rem;
  } 

.about img{
    max-width: 300px;
} 
.service-section h2 {font-size:1.6rem}
.about h2.main-title {
    font-size: 1.6rem;
}
.about h3 {
    font-size: 1.5rem;
}
.inner-page-content img {
    max-width: 300px;
}
}



/* Testimonials Section - Home Page
------------------------------*/
.testimonials {
  --color-background: #f4f4f4;
  height: 90vh;
}

.testimonials .info h3 {
  color: var(--color-secondary);
  font-weight: 800;
  font-size: 2.1rem;
}

@media (max-width: 991px) {
 .testimonials .info h3 {
    font-size: 1.8rem;
  }   
}

@media (max-width: 480px) {
 .testimonials .info h3 {
    font-size: 1.5rem;
  }   
}



.testimonials {
  background: #fff;
  position: relative;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  margin-right: 10px;
}

.testimonials.section {
    display: flex;
    align-items: center;
}

.content-margin-bottom {margin-bottom:90px}
.content-margin-top {margin-top:90px}

.content-padding-bottom {padding-bottom:90px}
.content-padding-top {padding-top:90px}

.testimonials .testimonial-item h3 {
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: rgba(var(--color-default-rgb), 0.5);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(var(--color-primary-rgb), 0.4);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item  p {
    font-size: 1.2rem;
    font-family: "Poppins";
    color: rgb(92, 92, 93);
    font-weight: 500;
    max-width: 450px;
    margin: auto;    
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(var(--color-default-rgb), 0.15);
  opacity: 1;
  border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    margin: 15px;
  }
.testimonials .testimonial-item .testimonial-img {
    max-width: 180px;

  }
.testimonials .testimonial-item p {
    margin-top: 15px;
    font-size: 1.0rem;
}   
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.8rem;
}

.testimonials h1 {
    font-weight: 600;
    font-size: 1.8rem;
}

.testimoanial-items-wrapper {
    margin:auto;
    position:relative;
}

/* Contact Section - Home Page
------------------------------*/
.contact {
background: var(--color-box-background);
padding-bottom: 20px;  
}

.contact h1 {
    font-weight: 800;
    font-size: 2.4rem;
    margin-top: 0px;
}

.contact .info-item {
  background: var(--color-box-background);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--color-primary);
}

.contact .info-item h3 {
  color: var(--color-secondary);
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  padding: 30px;
  height: 100%;
}

.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--color-background);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact.section {
    display: flex;
    align-items: center;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--color-primary);
  border-top-color: var(--color-background);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 45px;	
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--color-default);
    border-style: solid;
    border-width: 1px;
    border-color: rgb(190, 190, 190);
    background-color: rgb(255, 255, 255);
    
}

.contact .php-email-form input[type=text]::-moz-placeholder,
.contact .php-email-form input[type=email]::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: rgba(var(--color-default-rgb), 0.8);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(var(--color-default-rgb), 0.8);
}

.contact .php-email-form button[type=submit] {
background: #e65a4e;
    color: #fff;
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-style: solid;
    border-width: 2px;
    border-color: #e65a4e;
    background-color: rgb(230, 90, 78);
    width: 300px;
    border-radius: 20px;
    font-size: 18px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.contact .content-margin-top{
	margin-top:120px;
}




section {
    position:relative;
	display:block;
	height: 100vh;
	padding:0;
	margin:0;
}

#services-section.fixed-top {
    top: 100px;
	margin-top: 40px;
	display:none;
}

.services-show {
  display:block !important;
  animation-duration: 3s;  
  }
  
.content-wrapper {
    position:absolute;
    top:20%;
    left:0;
    right:0;
	z-index: 99;
}

.inner-content-wrapper{
    position:absolute;
    top:40%;
    left:0;
    right:0;
    margin-top: 30px;
}  

@media (max-width:480px) {
  .hero-video video {
    position: absolute;
    top: 25%;
  }
  #footer-section .content-wrapper {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
}
  .contact .php-email-form button[type=submit] {
    padding:5px 30px;
  }
  .testimonials h1 {
    font-weight: 600;
    font-size: 1.2rem;
}
#services-four.about img,
#services-five.about img {
  max-width: 190px;
}
  .contact .php-email-form textarea {
    max-height: 60px;
  }
.address.mt-2  {
  margin-top: 0 !important;
}
.contact .col-md-12.text-center {
  margin-top:10px;
}
.contact .php-email-form input[type=text], .contact .php-email-form input[type=email] {
  height: 35px;
}
.address.mt-2  img {max-width: 250px; }
 #contact .content-wrapper {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
}
  .content-wrapper {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
}
.services-title h1 {
  font-size: 1rem;
}

.contact h1 {
  font-weight: 800;
  font-size: 1.6rem;
  margin-top: 0px;
  margin-bottom: 0;
}

.about p {
  font-family: "Poppins";
  color: rgb(92, 92, 93);
  font-weight: 500;
  margin-bottom: 0;
}
.about img {
  max-width: 250px;
}

.about h1.main-title {
    font-weight: 800;
    font-size: 1.6rem;
}

.about h1 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.8rem !important;
}
.about .content .read-more{
  font-size: 0.8rem;
}
 }
 
.fp-controlArrow {display:none;}

@media (max-height:480px) {
  .content-wrapper {
    top: 20%;
  }    
}

.contact .inner-content-wrapper {
    top: 22%;
}

.swiper-button-next, .swiper-button-prev {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}
.inner-page-content {min-height:40vh;
    display:flex;
    align-items:center;
}

.inner-page-hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    z-index: 1;
    margin-top: 70px;
}

section.inner-page-hero {
    height: 720px;
    min-height: unset;
}

.inner-page-hero h1, .inner-page-hero p {color:#111;}
.inner-page-content img {max-width:500px;}
.inner-page-content.localbus img,
.inner-page-content.onlinebus img {max-width:300px;}
.inner-page-content h3 {
    font-size: 1.6rem;
}

.inner-page-content h4 {
    font-size: 1.4rem;
}

.inner-page-content h2 {
    font-size: 2.2rem;
    font-weight:700;    
}

.inner-page-content h3 {
    font-size: 1.6rem;
}

.page-content {margin-top:150px;}

@media screen and (min-width: 798px) and (max-width: 1100px) {
.inner-page-hero img {
    object-fit: cover;
    height: 100%;
    object-position: 100% 50%;
    margin-top: 0px;
  }
}


@media screen and (max-width: 798px) {

.inner-page-content h2 {
    font-size: 1.7rem;
}  
  
.inner-page-content h3 {
    font-size: 1.5rem;
}     
.inner-page-content h4 {
    font-size: 1.3rem;
}    
}



@media screen and (max-width: 480px) {
.inner-page-hero img {
    object-fit: cover;
    height: 100%;
    object-position: 70% 50%;
    margin-top: 0px;
  }
.inner-page-content img {
    max-width: 300px !important;
 }
.inner-page-content {
    margin-top: 60px !important;
 }
.hero p {
    font-size: 16px;
  }
.inner-page-content h2 {
    font-size: 1.5rem;
}  
  
.inner-page-content h3 {
    font-size: 1.4rem;
} 

.inner-page-content h4 {
    font-size: 1.2rem;
}
}