@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');


:root {

  --primary-color: #ff2a00; 
  --Background: #262626;
  --Font-color: #fcfcfc;
  --sub-title:#d7d9e0;;
  --bg2:#666;
  --card-bg:#6b757d;
  --bodybg:#262626;
  --btn-hover:#d22300;
  --dark-red:#bf001d;
  --dark-grey:#3f464d;
}

/* Reset margin and padding for all elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}

/* Reset specific element styles */
html,
body {
  height: 100%; 
  width: 100%;
  scroll-behavior: smooth;
  background-color: var(--bodybg) !important;
  /* overflow-x: hidden; */
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none !important;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Header section starts */
.header1
{
  background-color: var(--Background) !important;
  height:150px; 
  position: relative;
}
.logo
{
  height:100px;
  width:200px;
  margin-top: 10px;
  margin-left: 80px;
  z-index: 1000 !important;
}
 .contact-btn
{
  background-color: var(--primary-color) !important;
  color:var(--Font-color);
  position: absolute;
  top:40px;
  right:10%;
  border-radius: 10px;
  font-weight: 700 !important;
  padding: 10px 35px;
  cursor: pointer;
  font-size: 20px;
}
.contact-btn:hover{
  background-color: var(--btn-hover) !important;
}
.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler-icon:focus
{
  outline:none !important;
  box-shadow: none !important;
  border:none !important;  
}
.navbar { 
  background-color: var(--primary-color);
}
.sticky {
  position: fixed !important;
  top: 0 !important;
  width: 100%;
  z-index: 99;
}
.navbar-nav {
  margin-left: 100px !important;
}
.nav-item { 
  position: relative;  
}
.nav-item a
{
  text-transform: uppercase;
  cursor: pointer;
  color: #fff !important;
  font-family: "Roboto", sans-serif;
  font-weight: 700 !important;
  padding: 15px 3px 5px 3px !important;
  font-size: 17px;
  margin: 10px 24px;
  position: relative;
  word-spacing: 1px;
}
.nav-item a::after
{
  content: '' ;
  opacity: 0;
  width: 100% !important;
  height:2px;
  background-color: var(--Font-color);
  position:absolute;
  bottom:-2px;
  transform: scaleX(0);
  transform-origin: center;
  left:0px;
  transition:all 0.5s;
}
.nav-link:hover::after {
opacity:1; 
transform: scaleX(1.1);
} 
.nav-item .active{
  color:var(--Font-color);
  border-bottom: 2px solid var(--Font-color);
  /* width: 100% !important;   */
}
/* .dropdown ul li a
{
  padding: 10px !important;
  margin: 0 !important; 
  background-color: var(--Background);
  color: var(--Font-color) !important;
  text-transform: uppercase;
  font-weight: 400 !important;
  font-size: 16px !important;
}
.dropdown ul li a:hover
{
  transition: all 0.5s ease;
  background-color: var(--bodybg) !important;
  color: var(--primary-color) !important;
} */
.dropdown {
  position: relative;
  display: inline-block;
 }
.dropbtn {
  background-color: var(--primary-color);  
  border: none;
  cursor: pointer; 
  position: relative;  
  color: #fff !important;
  font-family: "Roboto", sans-serif;
  font-weight: 700 !important;
  padding: 15px 3px 5px 3px !important;
  font-size: 17px;
  margin: 10px 24px; 
  word-spacing: 1px; 
}
.arrow {
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.dropdown-content {
  display: none;
  position: absolute;
  color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  background-color: var(--Background) !important;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .arrow {
  transform: rotate(180deg);
  transition: transform 0.3s;
}
.dropdown-content .dropdown-item {
  padding: 10px !important;
  margin: 0 !important;
  background-color: var(--Background) !important;
  color: var(--Font-color) !important;
  text-transform: uppercase;
  font-weight: 400 !important;
  font-size: 16px !important;
  
}
.dropdown-content a:hover {
  color: var(--primary-color) !important;
  background-color: #262626;
}
/* Mobile view starts */
/* @media (max-width: 450px) { */
@media only screen and ( min-width:360px) and (max-width:480px){
  .header1 {
    height: 130px;
  }
  .navbar-nav {
    margin-left: 100px !important;
  }
  .nav-item a {
    font-size: 14px !important;
    margin: 0px 10px;
  }
  .nav-item a:hover::after {
    opacity: 0;
  }
  .logo {
    margin-left: 5px !important;
  }
  .nav-link.active {
    color: #262626 !important;
    border-bottom: none;
  }
  /* .dropdown ul li a {
    padding: 2px 10px !important;
    font-size: 13px !important;
    color: var(--Font-color) !important;
  }
  .dropdown ul li a:hover {
    background-color: var(--bodybg) !important;
    color: var(--primary-color) !important;
  } */
.dropbtn {
  background-color: var(--primary-color);  
  border: none;
  cursor: pointer; 
  position: relative;
  color: #fff !important;
  font-family: "Roboto", sans-serif;
  font-weight: 700 !important;
  padding: 15px 3px 5px 3px !important;
  font-size: 14px;
  margin: 0px 10px; 
  word-spacing: 1px; 
} 
.dropdown-content .dropdown-item {
  padding: 8px 10px !important;
  margin: 0 !important;
  background-color: var(--Background);
  color: var(--Font-color) !important;
  text-transform: uppercase;
  font-size: 14px !important;
  z-index: 1000 !important;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .arrow {
  transform: rotate(180deg);
  transition: transform 0.3s;
}
.dropdown-content a:hover {
  color: var(--primary-color) !important;
  background-color: #262626;
}
.nav-social-links {
  margin-top: 30px;
  margin-left: 50px;
  padding-bottom: 5px;
}
.nav-social-links a {
  background-color: #ffff !important;
  border-radius: 50% !important;
  margin: 0px 3px;
  height: 50px;
  width: 50px;
  text-align: center;
  font-size: 30px;
  display: inline-block;
  position: relative;
  z-index: 100;
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.5);
}
.nav-social-links i {
  color: #262626 !important;
  font-size: 25px;
  margin-top: 12px;
}
.contact-btn {
  background-color: var(--primary-color) !important;
  color: var(--Font-color);
  position: absolute;
  top: 40px;
  right: 5%;
  border-radius: 10px;
  font-weight: 600 !important;
  padding: 8px 17px;
  cursor: pointer;
  font-size: 20px;
}
}
/* Mobile view End */
/* Tablet view start */
@media screen and (min-width: 768px) and (max-width: 992px) {
  .navbar-nav {
    margin-left: 250px !important;
  }
  .nav-item a {
    font-size: 14px !important;
    margin: 5px 10px;
  }
  .nav-item a:hover::after {
    opacity: 0;
  }
  .contact-btn {
    background-color: var(--primary-color) !important;
    color: var(--Font-color);
    position: absolute;
    top: 40px;
    right: 10%;
    font-weight: 600 !important;
    padding: 10px 37px;
    cursor: pointer;
  }
  .contact-btn:hover {
    background-color: var(--btn-hover) !important;
  }
  .nav-link.active {
    color: #262626 !important;
    border-bottom: none;
  }
  .nav-social-links {
    margin-left: 200px;
    margin-top: 20px;
    padding-bottom: 5px;
  }
  .nav-social-links a {
    background-color: #ffff !important;
    border-radius: 50% !important;
    margin: 0px 3px;
    height: 50px;
    width: 50px;
    text-align: center;
    font-size: 30px;
    display: inline-block;
    position: relative;
    z-index: 100;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.5);
  }
  .nav-social-links i {
    color: #262626 !important;
    font-size: 25px;
    margin-top: 10px;
  }
  .dropbtn {
  background-color: var(--primary-color);  
  border: none;
  cursor: pointer; 
  position: relative;
  color: #fff !important;
  font-family: "Roboto", sans-serif;
  font-weight: 700 !important;
  padding: 15px 3px 5px 3px !important;
  font-size: 14px;
  margin: 0px 10px; 
  word-spacing: 1px; 
} 
.dropdown-content .dropdown-item {
  padding: 2px 10px !important;
  margin: 0 !important;
  padding: 0;
  background-color: var(--Background);
  color: var(--Font-color) !important;
  text-transform: uppercase;
  /* font-weight: 400 !important; */
  font-size: 13px !important;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .arrow {
  transform: rotate(180deg);
  transition: transform 0.3s;
}
.dropdown-content a:hover {
  color: var(--primary-color) !important;
  background-color: #262626;
}
}
/* Tablet view end */
/* Header section end */
/*For easy pay finance on the right side of the page*/
.easypay-finance {
  position: fixed;
  top: 50%;
  right: 0.5%;
  z-index: 1000; /* Ensure the button is above other elements */ 
  border-radius: 25px !important; 
}
/* Banner section start */
.contact_banner {
  width: 100%;
  height: 60vh !important;
  position: relative;
  overflow: hidden;
}
.contact_slideimg {
  height: 100vh !important;
  width: 100%;
  background-attachment: fixed !important;
  background-repeat: no-repeat; 
  object-fit: cover;  
  /* opacity: 0.3; */
  background-position: center;
  position: absolute;
  top: -230px;
}
.contact_overlay
{
  height: 80vh; 
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  position: absolute;
  top:0px;
}
.contact_content h1{
  color: var(--Font-color) !important;   
  font-size: 60px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  font-weight: 400 !important;
  position: absolute;
  top:25%;
  left:38%;
  z-index: 1!important;
}
.contact-btn1
{
  background-color: var(--primary-color) !important;
  color:var(--Font-color);
  position: absolute;
  top:41%;
  left:39%;
  font-weight: 500 !important;
  padding: 17px 37px;
  cursor: pointer;
  font-size: 16px;
}
.contact-btn1:hover{
  background-color: var(--btn-hover) !important;
}
/* Mobile view */
/* @media (max-width:450px)
{ */
@media only screen and ( min-width:360px) and (max-width:480px){ 
.contact_banner {
  width: 100%;
  height: 50vh !important; 
}
.contact_overlay
{
  height: 70vh !important; 
}
.contact_slideimg {
  height: 100vh !important;  
}
.contact_content h1{ 
  font-weight: 450 !important; 
  font-size: 40px; 
  position: absolute;
  top:20%;
  left:25%;
 }
.contact-btn1
{  
  position: absolute !important;
  top:32%; 
  left:24%; 
  padding: 10px 7px;  
  display: inline-block;
}
}
/* Mobile view end */
/* Tablet view start */
@media (min-width:768px) and (max-width:992px)
{
.contact_banner {
  width: 100%;
  height: 50vh !important; 
}
.contact_slideimg {
  height: 100vh !important;  
}
.contact_content h1{  
  font-size: 50px; 
  position: absolute;
  top:15%;
  left:35%;
 }
.contact-btn1
{  
  position: absolute !important;
  top:30%; 
  left:38%; 
  padding: 12px 7px ; 
  /* display: inline-block !important;  */
}
}
/* Tablet view end */
/* Banner section end */
/* Contact-deatils section start*/
.contact-row
{
  margin-left: 80px !important;
}
.address_details
{
  margin-top: 40px;
}
.address-title
{
  color: var(--Font-color) ;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  margin-left: 20px;  
}
.email1
{
  margin-top: 40px;
  color: var(--Font-color);
  font-weight:500 ;
  text-decoration: none;
}
.address2 
{
  color:var(--Font-color);
  font-size: 16px;
  font-family: "Roboto", sans-serif; 
  text-align: center;
  margin-top: 60px !important;
  margin-left: 20px;
  font-weight: 300 !important; 
}
.contact-details-container i{
  color:var(--btn-hover);
  /* margin-top: 40px; */
  margin-left: 70px;
  font-size: 35px !important;  
  cursor: pointer;  
}
.phone-icon
{
  margin-top: 40px !important;
  cursor: pointer;
}

/* Mobile view */
/* @media (max-width:450px)
{ */
@media only screen and ( min-width:360px) and (max-width:480px){
.contact-row
{
  margin-left: 80px !important;
}
.email1
{   
margin-left: 0px;   
}
.contact-details-container i{
  color:var(--btn-hover);
  /* margin-top: 40px; */
  margin-left: 100px;
  font-size: 35px !important;    
}
.phone-icon
{
  margin-top: 40px !important;
}
.address2{
  margin-left: 40px;
}
}
/* Tablet view start */
@media (min-width:768px) and(max-width:992px)
{
.contact-row
{
  margin-left: 0px !important;
}
.email1
{   
margin-left: 0px;   
}
.contact-details i{
  color:var(--btn-hover);
  /* margin-top: 40px; */
  margin-left: 100px;
  font-size: 35px !important;    
}
.phone-icon
{
  margin-top: 40px !important;
}
}
/* Tablet view end */
/* form starts */
form{
  margin-top: 40px;
}
.form-container
{
  margin: 20px;
  padding: 30px 100px;
  margin-left: 200px !important;
}
.form-title
{
  color: var(--Font-color) ;
  font-size: 60px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
  font-weight: 500 !important;
 
}
.label
{
  color: var(--Font-color);
  font-size: 18px;
  font-family: "Roboto", sans-serif; 
}
input
{
  width: 70%;
  background-color:transparent;
  /* outline: none; */
  border: none;
  border-bottom: 1px solid #fff;
  color:#fff;
}
textarea
{
  width: 70%;
  background-color:transparent;
  /* outline: none; */
  border: none;
  border-bottom: 1px solid #fff;
  color:#fff;
}
.send-btn
{
  margin:20px 0px 0px 160px;
  font-size: 22px !important; 
  font-family: "Roboto", sans-serif;
  font-weight: 600 !important;
  text-transform: uppercase;
  outline: 0;
  background: var(--primary-color) !important; 
  border: 0;  
  padding:  15px 0px !important;
  color: #FFFFFF !important;   
  transition: all 0.3 ease;
  cursor: pointer;
}
.send-btn:hover
{
  background-color: var(--btn-hover) !important;
}
#response-message {
  margin-top: 20px;
  color: #fff;
  font-size: 25px;    
  /* text-align: center; */
}

/* Tablet view */
@media (min-width:768px) and(max-width:992px)
{
.form-container
{
  margin: 20px;
  padding: 30px 0px;
  margin-left: 20px !important;
}
.send-btn
{
  margin:10px 0px 0px 0px;
  font-size: 18px !important;
}
#response-message {
  margin-top: 20px;
  color: #fff;
  font-size: 20px;    
  /* text-align: center; */
}
}
/* Mobile view */
@media (max-width:450px)
{
.form-container
{    
  margin-left: 20px !important;
}
.send-btn
{
  margin:10px 0px 0px 0px !important;
  font-size: 20px !important;   
  padding:  10px 60px !important;
}
#response-message {
  margin-top: 18px;
  color: #fff;
  font-size: 20px;    
  /* text-align: center; */
}
}
/* Location Map */
    .location-map {
      position: relative;
      width: 100%;
      height: 400px;
    }
    /* Full-screen class */
    .fullscreen-map {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 9999;
      background-color: #292929;
    }
    /* Full-screen button style */
    .fullscreen-btn {
      position: absolute;
      top: 10px;
      right: 50px;
      z-index: 10;
      padding: 10px 15px;
      background-color:#fff;
      color: #000;
      border: none;
      cursor: pointer;
      border-radius: 5px;
    }
    iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }
/* Footer starts */
.quick-links{
  margin-top: 60px;
}
.quick-links ul li a
{  
  color: var(--Font-color) !important;
  font-size: 16px !important;
}

.quick-links ul li
{
 padding:8px 0px !important;
}
/* Logo and address */
.footer-logo
{
  margin-top: 40px;
  margin-left: 10px;
}
.title{
  margin-top: 30px;
  color:var(--Font-color);
  font-size: 18px;
  font-family: "Roboto", sans-serif; 
  margin-left: 60px;
}
.address1 
{
  color:var(--Font-color);
  font-size: 16px;
  font-family: "Roboto", sans-serif; 
  margin-top: 60px !important;
  margin-left: 60px;
  font-weight: 300 !important; 
}
.email
{
  color:var(--Font-color);
  font-size: 16px;
  font-family: "Roboto", sans-serif; 
  text-decoration: underline;
  margin-left: 40px;
  font-weight: 300 !important; 
}
.business-hours
{
  margin-top: 60px;
}
.hour-title
{
  margin-top: 30px;
  color:var(--Font-color);
  font-size: 20px;
  font-family: "Roboto", sans-serif; 
  /* margin-left: 100px; */
  text-align: center;
}
.hour-text {
  margin-top: 30px;
  margin-bottom: 0px !important;
  color: var(--Font-color);
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  margin-left: 60px;
}
.hour-text p{
 margin-top: 5px !important;
}
.footer-dropdown ul li a
{
  /* padding: 5px; */
  padding:0 10px !important;
  background-color: var(--Background);
  color: var(--Font-color) !important;
  text-transform: uppercase;
  font-size: 13px !important;
}
.footer-dropdown ul li a:hover
{
  transition: all 0.5s ease;
  background-color: var(--bodybg) !important;
  color: var(--primary-color) !important;
}
.social-links-title
{
  margin-top: 30px;
  color:var(--Font-color);
  font-size: 20px;
  font-family: "Roboto", sans-serif; 
  /* margin-left: 100px; */
  text-align: center;
}
.social-links ul
{
  margin-top: 15px;
  margin-left: 40px;
  display: flex;
}
.social-links ul li
{
  margin: 0 5px;
  cursor:pointer;
}
.social-links ul li a{
  background-color: var(--primary-color);
  border-radius: 50% !important; 
  /* margin: 3px 10px; */
  height: 60px;
  width: 60px;
  text-align: center;
  /* padding:10px; */
  font-size: 30px;
  transition: 0.6s;
  cursor:pointer;
  display: block;
  position: relative;
  box-shadow: 0 5px 4px rgba(0,0,0,0.5);
}
.social-links i{ 
  color:#fff;
  font-size: 35px; 
  margin-top: 12px;
}
.social-links ul li a:hover 
{
transform: translate(0,-10px);
}
.copyright
{
  text-align: center;
  color:#fff;
  font-size: 16px;
  font-family: "Roboto", sans-serif; 
  height: 70px;
  width: 100%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.copyright1
{
  color:#FFFFFF;
  font-size: 20px;
  text-decoration: underline !important;
  cursor: pointer;
}
/* Mobile view */
@media screen and (max-width:450px) {
.quick-links 
{  
  display:none;
}
.social-links ul
{
  margin-top: 30px;  
}
.footer-logo
{
  margin-top: 20px !important;
  margin-left: 50px;
}
.title{
 display: none;
}
.address1 
{
  display:none; 
  margin: 0;
}
.email
{
  display:none; 
}
.business-hours
{
  margin-top: 0px !important;
}
.hour-text
{
  margin-top: 20px; 
  font-size: 18px; 
  margin-left: 40px;
} 
.social-links ul
{
  margin-top: 15px;
 }
}
/* Tablet view */
@media screen and (min-width:768px) and (max-width:992px){
.quick-links{
  margin-top: 30px;
}
.quick-links ul li a
{  
  color: var(--Font-color) !important;
  font-size: 13px !important;
}
.quick-links ul li
{
 padding:4px !important;
}
.footer-dropdown ul li a
{
  padding:0 5px !important;
  font-size: 13px !important;
}
.footer-logo
{
  margin-top: 40px;
  margin-left: 0px !important;
}
.title{
  display: none;
}
.address1 
{
 display: none; 
}
.email
{
  display: none; 
}
.business-hours
{
  margin-top: 20px;
}
.hour-text
{  
  font-size: 14px;  
  margin-left: 5px;
}
.social-links-title
{
  margin-top: 30px; 
}
.social-links ul
{
  margin-top: 10px;
  margin-left: 0px !important;
  padding:0px;
  display: flex;
}
}
/* Footer end */
/* Scroll top button */
#myBtn { 
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 100;
  font-size: 25px;
  border: none;
  outline: none; 
  color: var(--primary-color);
  cursor: pointer;
  padding: 10px; 
  background-color:var(--Font-color);
  width: 50px;
  height: 50px;
  border-radius: 5px; 
}
/* Whatsapp button */
/* .whatsapp-float {
  position: fixed;
  width: 48px;
  height: 48px;
  bottom: 20px;
  left: 10px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50% !important;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 2000;
}

.whatsapp-float i {
  margin-top: 8px;
} */

.whatsapp-float1 .google-voice{
  position: fixed;
  width: 48px;
  height: 48px;
  border-radius:50% !important;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 2000;
}
@media only screen and (min-width: 768px) {
  /* .whatsapp-float {
    right: 20px;
    left: auto;
    bottom: 80px;
  } */
  #myBtn {
    right: 20px;
  }
}
@media only screen and (min-width:350px)and (max-width: 450px) {
  /* .whatsapp-float {
    position: fixed !important;
    right: 20px !important;
  } */
  #myBtn {
    position: fixed !important;
    right: 20px !important;
  }
   .whatsapp-float1 img {
    position: fixed !important;
    left: 20px !important;
    bottom:20px !important;
  }
}
/* footer end */

