@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.11.3/font/bootstrap-icons.min.css");
a {
  text-decoration: none !important;
}
li {
  list-style-type: none !important;
}
.heading1 {
  font-size: 2.5rem;
}
.heading2 {
  font-size: 2rem;
}
.heading3 {
  font-size: 1.75rem;
}
.heading4 {
  font-size: 1.5rem;
}
.heading5 {
  font-size: 1.25rem;
}
.heading6 {
  font-size: 1rem;
}
.pad {
  padding: 90px 0;
}
.wrdbrk {
  white-space: pre;
}
.fullpad {
  padding: 0 !important;
  margin: 0 !important;
}
/* write custom css here */
.top-bg {
  background-color: #f7b32b;
}
/* Remove default fixed-top behavior initially */
#mainNavbar.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: all 0.3s ease;
}

/* Add shadow when sticky */
#mainNavbar.shadow {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-dark .navbar-nav > .nav-link {
  text-transform: uppercase !important;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: white !important;
}
.navbar-dark .navbar-nav .active > .nav-link {
  color: #fee500 !important;
}
section.nav-contact {
  background-image: url("../images/nav-bg-trans.webp");
  background-size: contain;
  background-position: bottom;
  background-repeat: repeat;
}
section.nav-contact .phone {
  display: flex;
  align-items: center; /* Vertically center both elements */
  justify-content: center; /* Aligns content to the right inside the div */
  width: 282px;
  height: 70px;
  margin: 10px 10px 25px 10px;
  background: url(../images/phone-outlinebox.png) no-repeat;
  border-left: transparent;
  gap: 10px; /* Optional: space between the p and span */
}
.navbar-dark .navbar-nav .nav-link {
  color: #ffffff !important;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #fee500 !important;
}
section.nav-contact .phone .phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; /* Adjust as needed */
  height: 30px; /* Adjust as needed */
}
section.nav-contact .phone p {
  text-transform: uppercase;
  color: blueviolet;
  font-size: 14px;
  margin: 0;
}
section.nav-contact .phone span {
  color: #292929;
  font-size: 13px;
}
section.nav-contact img.nav-icons {
  width: 50%;
}
section.nav-contact .logo-link .logo {
  width: 130px;
}
/*hero section */
img.hero-img {
  border-top-left-radius: 8em;
  border-bottom-right-radius: 8em;
}
/* index-parallax */
section.parallax .image-container {
  background-image: url(../images/parallax.webp);
  background-color: #000000ae;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  background-attachment: fixed;
  position: relative;
}
section.parallax a.about-btn {
  margin-bottom: 5em;
}
/* counter section */
.counter-section .counter-box {
  top: -96px;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(255, 69, 0, 0.3);
  border-color: rgba(255, 69, 0, 0.8);
  padding: 1em 0;
}
.counter-box h6 {
  color: #c42424 ;
}
.counter-section .counter-box.large {
  height: 13em;
  padding: 1em;
  margin-bottom: 2em;
}
.counter-section .counter-box.small {
  height: 15em;
  margin-bottom: 2em;
  padding: 1em;
}
.counter-section .counter-box.lastbox {
  margin-bottom: 0;
}
.counter-section .counter-box i {
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.counter-section .counter-box .counter-number {
  font-size: 2.5rem;
  font-weight: bold;
}
.counter-section .counter-box .slow-counter {
  font-size: 2.5rem;
  font-weight: bold;
}
.counter-section .counter-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 0, 0, 0.1),
    rgba(255, 255, 0, 0.1)
  );
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.counter-section .counter-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0px 10px 20px rgba(255, 69, 0, 0.3);
  border-color: rgba(255, 69, 0, 0.8);
}
.counter-section .counter-box:hover::before {
  opacity: 1;
}
.counter-section .counter-box:hover i {
  color: #ff4500;
}
.counter-section .counter-box:hover h6 {
  color: #651983;
}
/* our products index */
section.our-products {
  background-color: whitesmoke;
  padding: 60px 0;
}
section.our-products h2 {
  padding-bottom: 3em;
}
section.our-products .product-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
  -webkit-clip-path: polygon(
    0% 15%,
    15% 15%,
    15% 0%,
    85% 0%,
    85% 15%,
    100% 15%,
    100% 85%,
    85% 85%,
    85% 100%,
    15% 100%,
    15% 85%,
    0% 85%
  );
  clip-path: polygon(
    0% 15%,
    15% 15%,
    15% 0%,
    85% 0%,
    85% 15%,
    100% 15%,
    100% 85%,
    85% 85%,
    85% 100%,
    15% 100%,
    15% 85%,
    0% 85%
  );
}
section.our-products .product-card:hover {
  transform: scale(1.05);
}
section.our-products .product-img {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}
section.our-products .product-img img {
  width: 100%;
  border-radius: 15px;
  display: block;
  transition: transform 0.3s ease-in-out;
}
section.our-products .product-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #c42424 , #f7b32b, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
section.our-products .product-img:hover::before {
  opacity: 1;
}
section.our-products .product-img .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out;
}
section.our-products .product-img h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  transform: translateY(-10px);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}
section.our-products .product-img a.btn {
  background-color: #ff4500;
  border: none;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
section.our-products .product-img a.btn:hover {
  background-color: #000359;
  color: #fff;
}
section.our-products .product-img:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}
section.our-products .product-img:hover h3,
section.our-products .product-img:hover a.btn {
  opacity: 1;
  transform: translateY(0);
}
/* index cta section */
/* Background Image Container */
section.cta-index .bg-image-container {
  background-image: url("../images/index-cta-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 25em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 0;
}

/* Centering the Text Container */
section.cta-index .text-container {
  max-width: 900px;
  width: 90%;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* SVG Container: Ensuring Proper Alignment */
section.cta-index .svg {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Fix the Extra Space Below SVG */
section.cta-index .col-md-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo Styling: Align Properly */
section.cta-index .logo-container {
  position: absolute;
  bottom: 4em;
  left: 17em;
  width: 100%;
}

section.cta-index .logo-container img {
  width: 150px;
  max-width: 100%;
  display: block;
}
section.cta-index a.cta-btn {
  position: relative;
  top: -1em;
}

/* our brands */
.indexSwiper {
  width: 100%;
  height: 100%;
}

.indexSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #c42424 ;
  box-shadow: 2px 7px 17px black;
  display: flex;
  justify-content: center;
  align-items: center;
}
.indexSwiper .swiper-slide:hover {
  transform: scale(1.2);
}

.indexSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tagcloud a {
  background: #090909;
  padding: 6px 10px;
  float: left;
  font-style: italic;
  font-size: 12px;
  margin: 0 5px 5px 0;
  color: white;
}
/* about page */
/* about banner */

/* about-intro */
.about-intro {
  padding: 60px 0;
  position: relative;
}

/* Text Container */
.about-intro .text-container h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-in-out forwards;
}

.about-intro .text-container p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-in-out 0.2s forwards;
}

/* Image Styling */
.about-intro img {
  border-radius: 10px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
  transition: transform 0.3s ease-in-out;
}

.about-intro img:hover {
  transform: scale(1.05);
}
.about-experience {
  position: absolute;
  bottom: 7em;
  left: 13em;
  transform: translate(-50%, 50%);
  background-color: transparent;
}
.about-experience figure {
  margin: 0;
}
.about-experience img {
  animation: rotate 30s infinite linear;
  max-width: 100%;
}

/* Icon Effects */
.about-intro .bi {
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.about-intro .col-md-4:hover .bi {
  transform: rotate(15deg) scale(1.1);
  color: #ff4500;
}

.about-intro .col-md-4:hover h2 {
  color: #ff4500;
}

/* Heading & Text */
.about-intro h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  transition: color 0.3s ease-in-out;
}

.about-intro p {
  font-size: 0.9rem;
  color: #666;
}
/* about parallax */
section.about-parallax {
  position: relative;
  height: auto;
  background-image: url("../images/about-parallax.webp");
  background-color: rgba(0, 0, 0, 0.4901960784);
  background-blend-mode: overlay;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  text-align: center;
  padding: 6em 2em;
}
/* about why choose us */
.why-choose-us {
  padding: 80px 0;
  background: #fff;
  color: #000;
  text-align: center;
  position: relative;
}

.section-title h3 {
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title h2 {
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.section-title p {
  font-size: 18px;
  color: #ccc;
}

/* Why Choose Item */
.why-choose-item {
  padding: 20px;
  margin: 15px 0;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  text-align: right;
  color: #28a745;
  height: 11em;
}
.why-choose-item p {
  color: #000;
}
.why-choose-item h3 {
  font-size: 20px;
  font-weight: 600;
}

.why-choose-item:hover {
  transform: translateY(-5px);
  background: #ffcc00;
  color: #111 !important;
  box-shadow: 0px 8px 20px rgba(255, 204, 0, 0.5);
}

.icon-box img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.why-choose-item:hover .icon-box img {
  transform: rotate(15deg) scale(1.1);
}

/* Center Image */

.why-choose-image img:hover {
  transform: scale(1.05);
  transition: 1.5s ease-in-out;
}
/* safety page */

/* General Section Styling */
.safety-tips {
  background-color: #f8f9fa;
  background-image: url("../images/safety-confetti.webp");
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #ff5733;
}

.safety-description {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  color: #333;
}

/* Do's and Don'ts Titles */
.dos-title {
  color: #28a745;
  font-weight: 700;
}

.donts-title {
  color: #dc3545;
  font-weight: 700;
}

/* Safety Card */
.safety-card {
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.safety-card h4 {
  font-weight: 600;
}

.safety-card p {
  font-size: 14px;
  color: #666;
}

.safety-card .safety-icon {
  font-size: 28px;
  color: #28a745;
}

/* Danger Cards (For Don'ts) */

.safety-card.danger .safety-icon {
  color: #dc3545;
}
/* products page */
section.products .products-banner {
  background-image: url("../images/products-banner.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 30em;
  width: 100%;
  text-align: center;
}
/* contact page */

/* contact page */
.contact-box-content {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 2px 10px rgba(240, 4, 4, 0.473);
}

.contact-box-content:hover {
  background: #fff;
  box-shadow: 0px 4px 15px rgba(221, 210, 7, 0.566);
  transform: translateY(-5px);
}

.contact-box-content p.heading2 i {
  font-size: 28px;
  color: #ff5722;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.contact-box-content:hover p.heading2 i {
  color: #d84315;
  transform: scale(1.2);
}
.contact-box-content.small-box {
  height: 15em;
}

.text3 h1 {
  font-size: 20px;
  font-weight: bold;
}

.text3 p {
  font-size: 16px;
  color: #555;
}
.map-container iframe {
  border: none !important;
}
/* footer */
.footer-bg {
  background-color: #c42424 !important;
}
.footer-bg > .quick-links > a {
  background-color: #fff;
}
/* utility classes */
.text-yellow {
  color: #f7ff00  !important;
}
.bg-yellow {
  background-color: #f7ff00  !important;
}
.text-red {
  color: #c42424 !important;
}
.bg-red {
  background-color: #c42424 !important;
}
.bg-blue {
  background-color: #000359 !important;
}
.text-dark-purple {
  color: #2d1e2f !important;
}
.bg-dark-purple {
  background-color: #2d1e2f !important;
}
.arial{font-family: Arial, sans-serif;}
h1,
h2,
h3,
h4,
h5,
h6{
  font-family: Arial, sans-serif;
}
p,
a,
button {
  font-family: Helvetica, sans-serif;
}
.font-arial, .arial {
  font-family: Arial, Helvetica, sans-serif;
}
.font-helvetica, .helvetica {
  font-family: Helvetica, sans-serif;
}
/* theme button */
.theme-btn {
  position: relative;
  top: 30px;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #ff5733, #ffbd33);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 15px rgba(255, 87, 51, 0.4);
  z-index: 1;
  will-change: transform, opacity; /* Prevents flickering */
}

/* Fireworks burst effect */
.theme-btn::before,
.theme-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 10%,
    rgba(255, 255, 255, 0) 60%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-out;
  opacity: 0.7;
}

.theme-btn::before {
  animation: fireworks-burst 1s infinite ease-out;
}

.theme-btn::after {
  animation: fireworks-burst 1.5s infinite ease-out;
}
/* Prevent Bootstrap default hover color */
.theme-btn:hover,
.theme-btn:focus,
.theme-btn:active {
  color: #fff !important; /* Keeps text color white */
  text-decoration: none !important;
  background: linear-gradient(135deg, #ffbd33, #ff5733); /* Reverse gradient */
  transform: scale(1.05);
  box-shadow: 0px 6px 20px rgba(255, 87, 51, 0.6);
}

/* Ensure Bootstrap doesn't add a blue color */
.theme-btn:hover::before {
  color: inherit !important;
  background: inherit !important;
}

/* Hover effect */
.theme-btn:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 20px rgba(255, 87, 51, 0.6);
}

.theme-btn:hover::before,
.theme-btn:hover::after {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0;
}

.theme-btn:active {
  transform: scale(0.95);
  box-shadow: 0px 2px 10px rgba(255, 87, 51, 0.4);
}
.theme-btn1 {
  display: inline-block;
  padding: 1em;
  background-color: #ff4500; /* Replace with your preferred color */
  color: #fff; /* Text color */
  font-weight: 700; /* Adjust as needed */
  position: relative;
  z-index: 1;
  border-radius: 7px;
  padding: 16px 20px;
  overflow: hidden;
  transition: background-color 0.4s ease-in-out;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* Background image behind the text */
.theme-btn1::after {
  content: "";
  position: absolute;
  background-image: url(../images/play.png);
  height: 100%;
  width: 0%;
  top: 0;
  right: 0;
  z-index: -1; /* Moves the image behind the text */
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1.5);
  animation: shape-animation 5s infinite alternate ease-in-out;
  background-position: center;
  transition: width 0.4s ease-in-out;
}

.theme-btn1:hover {
  background-color: #000; /* Darker shade on hover */
  color: #ffffff !important;
}

.theme-btn1:hover::after {
  width: 100%;
}

/* Remove Bootstrap default blue color for <a> */
a,
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
  color: inherit; /* Ensures the link inherits the button text color */
}

/* custom css ends */
.w0 {
  width: 0%;
}
.fixed {
  position: fixed;
  z-index: 2;
}
.priceicn {
  width: 50px;
}
.priceicn2 {
  width: 120px;
}
.point {
  bottom: 10px;
  left: 10px;
}
.point1 {
  bottom: 70px;
  left: 10px;
}
.point2 {
  bottom: 15px;
  right: 10px;
}
.blink {
  -webkit-animation: blink 1s;
  animation: blink 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
/* Animation */

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fireworks-burst {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
@keyframes shape-animation {
  0% {
    transform: scale(1.5) rotate(0deg);
  }
  50% {
    transform: scale(1.6) rotate(10deg);
  }
  100% {
    transform: scale(1.5) rotate(-10deg);
  }
}

/* mobile media query */
@media (min-width: 1px) and (max-width: 767.98px) {
  .pad {
    padding: 40px 0;
  }
  /* nav section */
  section.nav-contact img.nav-icons {
    width: 20%;
  }
  /* index parallax section */
  section.parallax h3 {
    font-size: 2rem;
  }
  /* index cta */
  section.cta-index .bg-image-container {
    height: 100%;
  }
  section.cta-index .logo-container {
    top: 0em;
    left: 11em;
  }
  section.cta-index .text-container {
    text-align: center;
  }
  section.cta-index a.cta-btn {
    top: 0em;
  }
  /* counter section */
  .counter-section .counter-box {
    position: static;
    margin-top: 2em;
  }
  section.our-products h2 {
    padding-bottom: 1em;
    padding-top: 1em;
  }
  /* about page intro */
  section.about .about-banner {
    height: 8em;
    background-size: cover;
    background-position: center top;
  }
  .about-intro {
    text-align: center;
  }
  .about-intro .about-experience {
    display: none;
  }
  .about-intro .text-container h2 {
    font-size: 1.8rem;
  }

  .about-intro img {
    margin-bottom: 20px;
  }

  .about-intro .bi {
    font-size: 2rem;
  }
  section.about-first h3 {
    font-size: 1.5rem;
  }
  section.about-parallax h2 {
    font-size: 1.5rem;
  }
  /* products page */
  section.products .products-banner {
    height: 8em;
    background-size: cover;
    background-position: center top;
  }
  /* safety page */
  section.safety .safety-banner {
    height: 8em;
    background-size: cover;
    background-position: center top;
  }
  .safety-card {
    padding: 5px;
  }
  /* contact page */
  section.contact .contact-banner {
    height: 8em;
    background-size: cover;
    background-position: center top;
  }
}
/* tablet media query */
@media (min-width: 768px) and (max-width: 991.98px) {
  .pad {
    padding: 40px 0;
  }
  section.cta-index .text-container {
    text-align: center;
    padding: 0;
  }
  section.cta-index svg.svg {
    width: 100%; /* Make it scale inside the container */
    height: 100%;
    max-width: 334px; /* Adjust as needed */
    display: block;
    margin: 0 auto; /* Centers it */
  }
  section.cta-index .logo-container {
    bottom: 1em;
    left: 12em;
  }
  section.cta-index a.cta-btn {
    top: -0.5em;
  }
  .counter-section .counter-box {
    position: static;
    margin-top: 2em;
  }
  section.our-products h2 {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  section.parallax a.about-btn {
    margin-bottom: 0;
  }
  /* about page */
  section.about-intro h2 {
    font-size: 0.7rem;
  }
  section.about-first h3 {
    font-size: 1.7rem;
  }
  section.about-intro .about-experience {
    bottom: 21em;
    left: 5em;
  }
  /* contact page */
  .contact-box-content.small-box {
    height: 15em;
    width: 100%;
  }
}

#notfound {
  position: relative;
  height: 100vh;
}
#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.notfound {
  max-width: 410px;
  width: 100%;
  text-align: center;
}
.oopslogo {
  width: 350px;
}
.notfound h2 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
}
.notfound p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  margin-top: 5px;
}
.notfound a {
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  background: #0046d5;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0px 4px 15px -5px #0046d5;
}

@media only screen and (max-width: 767px) {
  .notfound .notfound-404 {
    height: 142px;
  }
}

.time-of-year {
  margin: 100px 75px 10px 75px;
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.time-of-year .tooltip {
  background: #db2a1b;
  border-radius: 3px;
  bottom: -49px;
  font-size: 20px;
  display: block;
  left: -67px;
  padding: 15px;
  pointer-events: none;
  position: absolute;
  width: 320px;
  height: 100px;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}
.time-of-year .tooltip::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #db2a1b;
  bottom: 58px;
  content: " ";
  position: absolute;
  left: 0%;
  margin-left: -13px;
  transform: rotate(92deg);
}
.time-of-year:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
