/* Fonts */
:root {
  --default-font: "Montserrat", sans-serif;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #000;
  --default-color-rgb: 33, 37, 41;
  --heading-color: #222;
  --heading-color-rgb: 122, 105, 96;
  --accent-color: #262634;
  --accent-color-rgb: 94, 44, 141;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
}

/* Nav Menu Colors */
:root {
  --nav-color: #000;
  --nav-hover-color: #eb2328;
  --nav-dropdown-color: #262634;
  --nav-dropdown-hover-color: #eb2328;
  --nav-dropdown-background-color: #ffffff;
}

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

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

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

a:hover {
  color: (var(--accent-color-rgb), 0.75);
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

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

.mt-6 {
  margin-top: 4rem;
}
.mt-7 {
  margin-top: 5rem !important;
}

.mt-8 {
  margin-top: 6rem !important;
}

nav {
  color: #fff;
  padding: 1em 0;
  position: relative;
  z-index: 9999;
}

nav::after {
  content: "";
  clear: both;
  display: table;
}

.container {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}
.top-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  float: left;
  font-size: 1em;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}

.logo img {
  width: 100%;
  max-width: 150px;
}

.logo span {
  font-weight: 300;
}
.site-nav {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 90%;
  right: 0;
  background: white;
  height: 0px;
  overflow: hidden;
}

.site-nav a.active {
  color: var(--nav-dropdown-hover-color);
}
.site-nav a.active::after {
  background-color: var(--nav-dropdown-hover-color);
}

.site-nav--open {
  height: 100vh;
}

.site-nav li {
  border-bottom: 1px solid #575766;
}

.site-nav li:last-child {
  border-bottom: none;
}

.site-nav a {
  color: var(--accent-color);
  font-family: var(--default-color);
  text-decoration: none;
  text-transform: capitalize;
  display: block;
  padding: 1em 2em;
  position: relative;
  overflow: hidden;
  line-height: 50px;
  font-size: 15px;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.site-nav a:hover::after {
  background-color: var(--nav-dropdown-hover-color);
}

.site-nav a:hover {
  color: var(--nav-dropdown-hover-color);
}

.box-content-inner p {
  margin: 0;
}
.site-nav--icon {
  display: inline-block;
  font-size: 12px;
  margin-right: 1em;
  width: 1.1em;
  text-align: right;
}
.right-cont {
  display: flex;
  align-items: end;
  justify-content: space-around;
  color: black;
}
.container-fluid {
  width: 100%;
  padding-right: 50px !important;
  padding-left: 50px !important;
  margin-right: auto;
  margin-left: auto;
}
.menu-toggle {
  padding: 1em;
  position: relative;

  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  background: var(--default-color);
  height: 3px;
  width: 25px;
  border-radius: 3px;
  transition: all ease-in-out 500ms;
}

.hamburger::before {
  transform: translatey(-7px);
}

.hamburger::after {
  transform: translatey(4px);
}

.open .hamburger {
  transform: rotate(45deg);
}

.open .hamburger::before {
  opacity: 0;
}

.open .hamburger::after {
  transform: translatey(-3px) rotate(-90deg);
}

.head-download a {
  background: #eb2328;
  padding: 10px 20px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
}

.head-download a:hover {
  background: var(--default-color);
  color: #fff;
}

@media (min-width: 700px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    height: auto;
    position: relative;
    background: transparent;
    float: right;
  }

  .site-nav li {
    display: inline-block;
    border: none;
    margin: 0 1em;
  }

  .site-nav a {
    padding: 0;
  }

  .site-nav a:hover,
  .site-nav a:focus {
    background: transparent;
  }

  .site-nav--icon {
    display: none;
  }
}
@media (max-width: 700px) {
  .head-download {
    display: none;
  }
  .site-nav {
    width: 100%;
  }
}

/*  Hero banner  */

.slideshowContainer {
  position: relative;
  overflow: hidden;
  margin: 0 0 0;
  width: 100%;
  height: 90vh;
}

.imageSlides {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: -1;
}

.imageSlides img {
  width: 100%;
}

.heroContent {
  position: absolute;
  width: 32%;
  left: 4%;
  top: 45%;
  transform: translate(0%, -50%);
}
.heroContent h1 {
  text-align: left;
  font-size: 2.6rem;
  font-family: var(--default-font);
  font-weight: 600;
}

.heroContent h1 span {
  color: var(--nav-hover-color);
}

.heroContent p {
  text-align: left;
  font-size: 15px;
  font-family: var(--default-font);
  font-weight: 500;
}

.hero .btn {
  background: var(--default-color);
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--default-font);
}

.hero .btn:hover {
  background: var(--nav-hover-color);
  color: #fff;
}

/* add 'visible' class via Javascript */
.visible {
  opacity: 1;
}

.slideshowArrow {
  font-size: 7em;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
  display: none;
}

.slideshowArrow:hover {
  opacity: 0.75;
}

#leftArrow {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#rightArrow {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translate(50%, -50%);
}

.slideshowCircles {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  visibility: hidden;
}

.circle {
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: solid 2px rgba(255, 255, 255, 0.5);
  transition: 1s ease-in-out;
}

.dot {
  background-color: rgba(255, 255, 255, 0.7);
  border: solid 2px rgba(255, 255, 255, 0.5);
}
@media (max-width: 1360px) and (min-width: 1300px) {
  .slideshowContainer {
    height: 85vh;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .slideshowContainer {
    height: 58vh;
  }
}

@media (max-width: 1023px) and (min-width: 701px) {
  .heroContent {
    width: 60%;
    border-radius: 5px;
    background: rgb(255 255 255 / 40%);
    padding: 20px;
    top: 50%;
  }
  .slideshowContainer {
    height: 38vh;
  }
}

@media (max-width: 701px) {
  .heroContent {
    width: 85%;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 20px 30px;
    left: 30px;
  }
  .heroContent h1,
  .heroContent p {
    color: #fff;
  }
  .imageSlides img {
    width: max-content;
  }
  .heroContent h1 {
    font-size: 2rem;
  }
}

/*  Hero banner  */

/*  counter  */

#counter {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  padding: 40px 0px;
  width: 100%;
}
.counter {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
}
#counter .item {
  background: #fff;
  width: 250px;
  padding: 35px 40px;
  margin: 10px;
  text-align: center;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
  -moz-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
  box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
}
#counter .item .count {
  color: var(--nav-hover-color);
  margin-bottom: 5px;
  font-size: 4rem;
}
#counter .item h3 {
  color: var(--accent-color);
  text-transform: capitalize;
  font-size: 20px;
}

@media (max-width: 700px) {
  .counter {
    display: grid;
    grid-template-columns: auto auto;
    width: 100%;
  }
  #counter .item {
    width: 90%;
    padding: 30px;
  }
}
/*  counter  */

/*  About Start */

.about {
  padding: 80px 0;
  background: url(../images/pattern.svg) no-repeat;
  background-size: cover;
}

.about h4 {
  color: var(--nav-hover-color);
  font-size: 22px;
}
.about h2 {
  font-family: var(--default-font);
  font-weight: 600;
  margin-bottom: 20px;
}

.about p {
  text-align: justify;
  font-size: 15px;
}

.about img {
  width: 55%;
  margin: 0 auto;
  display: table;
}
.mob_view {
  display: none;
}

@media (max-width: 700px) {
  .about {
    padding: 50px 0;
  }
  .mob_view {
    display: block;
  }
  .desk_view {
    display: none;
  }
  .about img {
    width: 70%;
    margin-bottom: 20px;
  }
  .about p {
    padding-bottom: 0;
  }
}

@media (min-width: 700px) and (max-width: 1023px) {
  .about img {
    width: 100%;
    margin-top: 4rem;
  }
}

/*  About End */

/* Product Slider Start */

.product {
  padding: 80px 0;
  /* background: #faf8fb; */
  background: #fafafa;
}

.product h2 {
  text-align: center;
  font-family: var(--default-font);
  font-weight: 600;
  margin-bottom: 2rem;

  font-size: 36px;
}

.home-demo .item {
  background: #fff;
  padding: 10px 0;
  border-radius: 5px;
  /* margin-bottom: 20px; */
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #ff3f4d !important;
}

.owl-theme .owl-dots {
  display: none;
}
/* .home-demo h2 {
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  margin: 0;

  font-weight: 300;
} */

.owl-theme .owl-nav {
  display: none;
}

.product h2 {
  color: var(--accent-color);
  text-align: center;
  font-size: 36px;
}
.product p {
  color: var(--accent-color);
  text-align: center;
  font-size: 15px;
  margin-bottom: 3rem;
}

/* Product Slider End */

/* Why choose us Start */

#Whychooseus {
  padding: 80px 0;
  /* background: url(../images/pattern.svg) no-repeat;
  background: #cacaca url(../images/pattern.svg) repeat; */
  background-size: cover;
}

#Whychooseus h2 {
  color: #000;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  padding-bottom: 5px;
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 3rem;
  text-align: center;
}

.serb {
  border-radius: 15px;
  border: solid 1px #e0e0e0;
  padding: 20px 30px;
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  gap: 10px;
  background: #efeeee url(../images/pattern.svg) repeat;
}

.ron-cntr {
  width: 179px;
  margin: 10px 0px;
}

.ron-cntr h4 {
  display: none;
}

.rounderer {
  background: #fafafa;

  border-radius: 50%;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  margin-bottom: 0.5rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.rounderer:hover {
  scale: 1.2;
}

.rounderer img {
  width: max-content;
  margin: 0 auto;
  display: table;
  padding: 13px;
}

.ron-cntr h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  width: 100%;
  color: #000;
  text-align: center;
}

@media (max-width: 700px) {
  .serb {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0;
    padding: 20px 0;
  }
  #Whychooseus {
    padding: 50px 0;
  }
  .ron-cntr {
    width: 150px;
  }
}

@media (max-width: 1023px) and (min-width: 700px) {
  .serb {
    grid-template-columns: auto auto auto;
  }
}

/* Why choose us End*/

/* Contact Start*/

#Contact {
  padding: 80px 0;
}

.info {
  padding: 40px;
  background: #fafafa;
}

#Contact h2 {
  font-family: var(--default-font);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

#Contact p {
  text-align: center;
  margin-bottom: 3rem;
}

#Contact h4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.map {
  padding-top: 3rem;
}

.map iframe {
  border-radius: 20px;
}

#Contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

#Contact .info-item .icon_box {
  font-size: 20px;
  color: var(--accent-color);
  background: rgba(var(--accent-color-rgb), 0.08);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

#Contact .email-form {
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
}

#Contact .email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--nav-dropdown-hover-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

#Contact .email-form button[type="submit"]:hover {
  background: var(--default-color);
}

#Contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  text-align: left;
}
#Contact .info-item {
  margin-bottom: 40px;
}

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

.footer .footer-top {
  padding-top: 50px;
}
.footer .footer-contact p {
  margin-bottom: 5px;
  width: 80%;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

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

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

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

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

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

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

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

.footer .social-links a:hover svg {
  color: var(--nav-dropdown-hover-color);
}

@media (max-width: 700px) {
  .container-fluid {
    padding: 0 15px !important;
  }
}

#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 100);
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
}
#return-to-top svg {
  color: #fff;
  margin: 0;
  position: relative;
  left: 13px;
  top: 12px;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
}
#return-to-top:hover {
  background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
  color: #fff;
  top: 5px;
}
.whatsapp-button {
  position: fixed;
  z-index: 1000;
  bottom: 80px;
  right: 20px;
  background: #25d366;
  color: #fff;
  /* padding: 16px; */
  border-radius: 50px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 45px;
}

#prg-counter {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  padding: 40px 0px;
  width: 100%;
}

#prg-counter .prg-container {
  display: flex;
  gap: 20px;
  text-align: center;
  width: 80%;
  margin: auto;
}

#prg-head h1 {
  text-align: center;
}

#prg-counter h3.prg-count {
  background-color: rgba(0, 0, 0, 0);
  color: blue;
  font-size: 2.5em;
  /* padding: 20px 20px 6px 20px; */
  color: var(--nav-hover-color);
  margin-bottom: 5px;
  font-size: 2.5rem;
}

#prg-counter h3.prg-count::after {
  content: " +";
  display: inline-block;
}

/*#prg-counter h3.prg-count {
  border: 5px solid blue;
  border-radius: 50%;
  width: 150px;
  height: 150px;
}*/

#prg-counter h4.prg-count-title {
  background-color: rgba(0, 0, 0, 0);
  font-size: 20px;
  color: var(--accent-color);
  text-transform: capitalize;
}

.count_item {
  background: #fff;
  width: 250px;
  padding: 35px 40px;
  text-align: center;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
  -moz-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
  box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
}

#prg-container {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  padding: 40px 0px;
  width: 100%;
}

@media (max-width: 700px) {
  .count_item {
    width: 100%;
    padding: 30px 5px;
  }
  #prg-counter .prg-container {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
    padding: 0;
    width: 100%;
  }
  #prg-counter h4.prg-count-title {
    font-size: 16px;
  }
}
