@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;
}

/* 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 starts */
.speciality_banner {
  width: 100%;
  height: 60vh !important;
  position: relative;
  overflow: hidden;
}
.speciality_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: -140px;
}
.speciality_overlay
{
  height: 80vh; 
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  position: absolute;
  top:0px;
}
.speciality_content h1{
  color: var(--Font-color) !important;
  font-size: 55px;
  font-family: "Oswald", sans-serif ;
  letter-spacing: 1px;
  font-weight: 400 !important;
  position: absolute;
  top:26%;
  left:33%;
  z-index: 1!important;
}
.speciality-btn
{
  background-color: var(--primary-color) !important;
  color:var(--Font-color);
  position: absolute;
  top:40%;
  left:40% ;
  font-weight: 700 !important;
  padding: 17px 37px;
  cursor: pointer;
}
.speciality-btn:hover{
  background-color: var(--btn-hover) !important;
}
/* Mobile view */
/* @media (max-width:450px)
{ */
@media only screen and ( min-width:360px) and (max-width:480px){
.speciality_banner {
  width: 100%;
  height: 40vh !important; 
}
.speciality_slideimg {
  height: 70vh !important;  
}

.speciality_content h1{
  font-weight: 450 !important;  
  font-size: 30px; 
  position: absolute;
  top:15%;
  left:20%;
 }
.speciality-btn
{  
  position: absolute;
  top:25%;
  left:18%; 
  padding: 10px 37px;  
}
}
/* Mobile view end */
/* Tablet view start */
@media (min-width:768px) and (max-width:992px)
{
.speciality_banner {
  width: 100%;
  height: 60vh !important; 
}
.speciality_slideimg {
  height: 100vh !important;  
}
.speciality_content h1{  
  font-size: 35px; 
  position: absolute;
  top:28%;
  left:35%;
}
.speciality-btn
{  
  position: absolute;
  top:38%;
  left:37%; 
  padding: 10px 37px;  
}
}
/* Tablet view end */
/* Banner section end */

.whitespace
{
  height:100px;
  background-color: #fff;
  width: 100%;
}
.text{
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 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) { */
@media only screen and ( min-width:360px) and (max-width:480px){
.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;
}
}
/* 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 */

