body
{
 
 scroll-behavior: smooth;
  
}
: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: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default:rgb(245, 105, 105);
  --color-primary: rgb(255, 33, 33);
  --color-secondary: #080808;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}
p
{
  font-family: "Anek Devanagari", sans-serif;
  font-optical-sizing: auto;

  font-style: normal;
  font-variation-settings:
    "wdth" 100;

}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color:var(--color-primary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.sections-bg {
  background-color: #f6f6f6;
}

.section-header {
  text-align: center;
  padding-bottom: 0px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {

  max-height: fit-content;
  position: relative;
  background-color: var(--color-secondary);
}
.page-header .contact-banner
{
  justify-content: space-between;
  display: flex;
  text-align: center;
  align-items: center;
  width: 100%;
  padding-left: 200px;
  padding-right: 200px;
}
@media (max-width:768px) {
  .page-header .contact-banner
  {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.page-header .contact-banner h1
{
  font-size: 100px;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-primary);
  text-shadow: 4px 4px 10px gray;
}
.page-header img
{
  width: 300px;
  height: 300px;
  filter: drop-shadow(10px 10px 20px rgba(72, 71, 71, 0.644));
}
@media (max-width:768px) {
  .page-header .contact-banner h1
  {
    font-size: 40px;
    
  }
  .page-header img
  {
    width: 100px;
    height: 100px;
  }
}
.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f6f6f6;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: black;
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

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

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

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

  /* QUICK-CONTACT-CSS */
  .chat-container
  {

  color:var(--color-secondary);
	position: fixed;
	right: 45px;
	bottom: 50px;
	text-align: center;
	line-height: 35px;
	z-index: 999;
	transition: 0.7s;
	cursor: pointer;
    font-size: 25px;
  }

  @media (max-width:768px) {
    .chat-container
    {
      right: 20px;
      bottom:20px;
    }
  }

.chat-button {
  display: flex;
  align-items: center;
  background-color: var(--color-primary);
  border-radius: 25px;
  padding: 10px 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.chat-button:hover {
  transform: scale(1.1);
  transition: 0.4s;
}

.icon {
  font-size: 25px;
  color: white;
}

.chat-text {
  margin-left: 10px;
  font-size: 16px;
  color: white;
  transition: opacity 0.3s ease;
  font-family: var(--font-primary);
}

.dropdown-1 {
  position: absolute;
  bottom: 60px;
  display: none;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(20px);
  z-index: 999;
}

.dropdown-item-1 {
  background-color:var(--color-primary);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
  z-index: 999;
}

.dropdown-item-1:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  transition: 0.4s;
  text-decoration: none;
}

.dropdown-1.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: linear-gradient(45deg,#fc0606 50%, #0f0f0f 50%);
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color:var(--color-primary);
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color:var(--color-primary);
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color:var(--color-secondary);
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 12px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color:#ffff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  position: sticky;
  width: 100%;
  height: 12vh;
  transition: all 0.7s;
  z-index: 997;
  height: 90px;
  background-color:#fff;
  
}

.header.sticked {
  width: 100%;
  background-color: #ffff;
  top:0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 4px 4px 8px red;
  transition: all 0.7s;
}

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

.header .logo h2 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color:red;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
@media (max-width:768px) {
  .header .logo h2 
  {
    font-size: 25px;
  }
}

.header .logo h2 span {
  color: #212121;
}

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}

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

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

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color:var(--color-secondary);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: red;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .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: red;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    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;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: var(--color-primary);
  }

  .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: var(--color-secondary);
  }

  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background:var(--color-secondary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #131212;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #131212;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(162, 198, 240, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color:var(--color-secondary);
    border: 1px solid var(--color-primary);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color:var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: var(--color-primary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

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

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgb(0, 106, 94);
    z-index: 9996;
  }
}
/* redirect page css */

.city select
{
  width: 300px;
  height: 50px;
}
.city button
{
  width: 300px;
  height: 50px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
}
.city button:hover
{
  background-color: black;
  transition: 0.6s;
}
/*hro section css*/
.banner .carousel .carousel-item .heading
{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    font-weight:600;
    width:100%;
    height:100vh;
    background:linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7));
    justify-content:center;
    align-items:center;
    color:white;
    
}
.carousel-item .heading .box
{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}
.carousel-item .heading .box h1
{
    font-size:40px;
    font-weight:600;
}
@media(max-width:768px){
    .carousel-inner .heading .box h1
    {
        font-size:17px;
    }
    .carousel-inner .heading .box h5
    {
        font-size:12px;
    }
}
/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/

.about
{
  width: 100%;
  height: fit-content;
  background-image:linear-gradient(rgba(255, 255, 255, 0.678),rgba(255, 255, 255, 0.678)),url(about.jpeg);
  background-size:cover;
  background-repeat:no-repeat;
}
.about img
{

  border: 3px solid red;
  border-radius: 10px;
 
}
.about i 
{
  color:white;
  font-size: 15px;
  background-color: var(--color-default);
  border-radius: 50%;
}
.about .about-btn
{
  background-color:var(--color-primary);
  margin-top: 20px;
  padding: 5px;
  border: none;
  outline: none;
  color: white;
  font-family: var(--font-primary);
  letter-spacing: 2px;
}


/*Know section css*/
.know 
{
    width:100%;
    height:auto;
    background:#f1f1f1;
}
.knowHeading h2
{
    font-weight:600;
    letter-spacing:1px;
    
}


.service
{
  width: 100%;
  max-height: fit-content;

}
.service h6
{
  color: rgb(245, 105, 105);
  text-transform: uppercase;
  font-weight: 400;
}
.service h3
{
  font-weight: 600;
  color: red;
}
.service img
{
  border-radius: 10px;
  border: 4px solid #f1f1f1;
}

/* why section */
@media(max-width:768px){
    .why
{
  width: 100%;
  max-height: fit-content;
  background-image:linear-gradient(rgba(255, 255, 255, 0.678),rgba(255, 255, 255, 0.678)) ,url(bg-2.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size:100% 100%;
}
}
.why
{
  width: 100%;
 max-height: fit-content;
  background-image:linear-gradient(rgba(255, 255, 255, 0.678),rgba(255, 255, 255, 0.678)) ,url(bg-2.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size:cover;
}
.why h2
{
  font-weight: 600;
}
.why .box
{
  display: flex;
  background-color: transparent;
  border: 2px solid black;
  width: 100%;
  height: 250px;
  
}
@media (max-width:768px) {
 .why .box
 {
  width: 100%;
  height: auto;
 } 
}
.why .box  i
{
   font-size: 50px;
   margin-right: 10px;
   color: red;
}
.why .box .box-title h4
{
  font-weight: 500;
}
.why .box .box-title  p 
{
  font-size: 17px;

}
  /* testimonial section */
  .testimonial{
    padding-top: 70px;
    margin: 50px 15px 0;
    border: 1px solid #fff;
    text-align: center;
    position: relative;
    transition: all 0.7s ease 0s;
}
.testimonial:hover{ border-color: #e7e3e3; }
.testimonial .pic{
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #fff;
    padding: 7px;
    position:absolute;
    top: -50px;
    left: 50%;
    overflow: hidden;
    transform: translateX(-50%);
    transition: all 0.7s ease 0s;
}
.testimonial:hover .pic{ background: #1d3033; }
.testimonial .pic img{
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.testimonial .title{
    font-size: 16px;
    font-weight: 700;
    color:var(--color-primary);
    text-transform: uppercase;
    margin: 0 0 10px 0;
}
.testimonial .description{
    font-size: 15px;
    color: #999;
    line-height: 25px;
    border-bottom: 1px solid #f7f7f7;
    padding: 0 25px 35px;
    margin: 0;
}
.testimonial .testimonial-content{
    padding: 15px 25px 12px;
    border: 1px solid #f7f7f7;
    border-top: none;
    position: relative;
    text-align: left;
    transition: all 500ms ease 0s;
}
.testimonial:hover .testimonial-content{ border-color: #1d3033; }
.testimonial .testimonial-content:after{
    content: "";
    width: 100%;
    height: 0;
    background: #1d3033;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: all 0.7s ease 0s;
}
.testimonial:hover .testimonial-content:after{ height: 100%; }
.testimonial-content .testimonial-profile{ display: inline-block; }
.testimonial .name{
    font-size: 16px;
    font-weight: 700;
    color: #3d3d3d;
    text-transform: uppercase;
    margin: 0 0 3px;
    transition: all 700ms ease 0s;
}
.testimonial:hover .name{ color: #fff; }
.testimonial .post{
    font-size: 14px;
    color:var(--color-default);
    text-transform: capitalize;
}
.testimonial .rating{
    display: inline-block;
    padding: 1px 5px;
    margin: 0;
    list-style: none;
    background:var(--color-default);
    position: absolute;
    right: 25px;
}
.testimonial .rating li{
    display: inline-block;
    font-size: 14px;
    color: #fff;
   
}
.owl-theme .owl-controls{
    width: 100%;
    position: absolute;
    top: 50%;
}
.owl-theme .owl-controls .owl-buttons div{
    width: 45px;
    height: 40px;
    line-height: 37px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #ececec;
    padding: 0;
    opacity: 1;
    transition: all 0.4s ease-in-out 0s;
}
.owl-theme .owl-controls .owl-buttons div:hover{
    background: #eabd44;
    border-color: #eabd44;
}
.owl-prev,
.owl-next{
    position: absolute;
    left: -3%;
}
.owl-next{
    left: auto;
    right: -3%;
}
.owl-prev:before,
.owl-next:before{
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 25px;
    color: #ececec;
}
.owl-next:before{ content: "\f105"; }
@media only screen and (max-width: 990px){
    .owl-theme .owl-controls,
    .owl-prev,
    .owl-next{
        position: relative;
        left: 0;
        right: 0;
    }
}
@media only screen and (max-width: 768px){
    .testimonial .testimonial-content{
        padding: 15px 10px 12px;
    }
    .testimonial .rating{
        right: 12px;
    }
}

/* document section */
 .document 
 {
  width: 100%;
  height: fit-content;
  background-color: #f1f1f1;
 }
.document .box  i
{
  font-size: 50px;
   margin-right: 10px;
   color: red;
   background-color: #fff;
}
.document .box
{
  display: flex;
  background-color:var(--color-default);
  width: 100%;

  
}
.document .box .box-title h5:hover
{
  background-color: var(--color-primary);
  color: #fff;
  transition: 0.5s;
}
.document .box:hover
{
  background-color: var(--color-primary);
  color: #fff;
  transition: 0.5s;
}
.document .box .box-title h5
{
  color:black;
  font-weight: 500;
}

/* contact section */
.contact 
{
  width: 100%;
  height: fit-content;
}
.contact .info-container {
  background-color:#f1f1f1;
  height: 100%;
  padding: 20px;
  border-radius: 0px 10px 10px 0px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
  width: 100%;
  background-color:var(--color-default);
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color:#fff;
  float: left;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

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

.contact .info-item:hover i {
  background:var(--color-primary);
  color: var(--color-secondary);
}

.contact .php-email-form {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px 0px 0px 10px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

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

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

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

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.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 #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background:var(--color-primary);
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background:var(--color-secondary);
}

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

  100% {
    transform: rotate(360deg);
  }
}

/* footer section */
.footer
{
  background-image:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.968)), url(footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.footer .footer-links li a,
.footer .footer-links h4

{
  color: #fff;
}
.footer p 
{
  color: #fff;
}
.footer .social-links i 
{
  margin-right: 20px;
  font-size: 18px;
}
.testimonial .medias img
{
    width:100%;
    max-height:80px;
    object-fit:contain;
    aspect-ratio:3/2;
}