@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
body {
  font-family: Helvetica, sans-serif !important;
}
:root {
  --color1: #d62839;
  --color2: #4c1a57;
  --color3: #a288e3;
  --color4: #ffc107;
}
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 */
body,
span,
a,
button,
li {
  font-family: Helvetica, sans-serif;
}
/* header */
header.header .logo {
  width: 9em;
}
header.header #mainMenu {
  clip-path: polygon(8% 0%, 100% 0, 100% 100%, 0 100%);
  position: absolute;
  width: 80%;
  top: 90px;
  right: 20px;
  z-index: 9999;
}

/* Navbar Links Styling */
.navbar-nav .nav-item .nav-link {
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease-in-out;
  color: #fff;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:hover {
  color: #fff !important;
  background-color: var(--color1);
}

.navbar-nav .nav-item .nav-link.active::after,
.navbar-nav .nav-item .nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
}
header.header .beside-logo {
  margin-left: 9em;
  flex-wrap: wrap;
}

/* index-first */
section.index-first {
  overflow: hidden;
}
section.index-first .moving-image {
  position: relative;
  transition: transform 0.1s ease-out;
  max-width: 100%;
  height: auto;
}
/* cloud divider */
.cloud-layer {
  background-image: url("../images/cloud.png");
  background-color: #4c1a57;
  background-position: center;
  background-size: auto;
  background-repeat: repeat-x;
  height: 10em;
  /* transform: scaleX(-1); Flip only the background */
}
.cloud-layer-invert {
  background-image: url("../images/cloud.png");
  background-color: #4c1a57;
  background-position: center;
  background-size: auto;
  background-repeat: repeat-x;
  height: 10em;
  transform: scaleY(-1);
}
/* index-counter */
/***** Fun Fact Area *****/
.fun-fact-area {
  background-color: #4c1a57;
}

/* Background Images */
.single-fact-wrap {
  background: url(../images/icon1b.png);
  background-position: center !important;
  background-repeat: no-repeat !important;
  margin-bottom: 30px;
}
.single-fact-wrap.style-2 {
  background: url(../images/icon2b.png);
}
.single-fact-wrap.style-3 {
  background: url(../images/icon3b.png);
}
.single-fact-wrap.style-4 {
  background: url(../images/icon4b.png);
}

/* Adjustments */
.single-fact-wrap .thumb {
  height: 48px;
}
.single-fact-wrap h2 {
  margin: 20px 0 2px;
}
.single-fact-wrap h2 span {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
}
.single-fact-wrap .fact-title {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff; /* White for contrast */
}
/* products section */

section.products-section {
  background-image: url("../images/products-bg.webp");
  padding: 80px 0;
}

.heading1-w {
  text-align: center;
}

.heading1-w h2 {
  font-size: 32px;
  color: var(--color4);
}

.heading1-w p {
  color: #555;
}

.product-box {
  margin-top: 30px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  transition: all 0.4s;
  background-color: var(--color3);
  padding: 20px;
  text-align: center;
}

.product-box .image img {
  width: 100%;
  transition: all 0.4s;
  border-radius: 4px;
}

.product-box .hover-area {
  position: absolute;
  bottom: 0;
  margin: 24px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s;
  z-index: 2;
}

.product-box .hover-area p {
  color: rgba(255, 255, 255, 0.9);
}

/* 🔥 Improved Hover Animation */
.product-box::after {
  content: "";
  position: absolute;
  bottom: -400px;
  right: -30px;
  height: 500px;
  width: 600px;
  background-color: var(--color1);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s;
}

.product-box:hover::after {
  opacity: 1;
  bottom: -250px; /* Reduced animation lag */
}

.product-box:hover .image img {
  transform: scale(1.1) rotate(2deg);
}

.product-box:hover .hover-area {
  opacity: 1;
  transform: translateY(0);
}

.product-box.active .hover-area {
  opacity: 1;
  transform: translateY(0);
}

.product-box.active::after {
  opacity: 1;
}

section.products-section .hover-area h4 a {
  color: var(--color4);
}

.theme-btn3 {
  background: var(--color2);
  color: #fff;
  padding: 12px 25px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s;
  display: inline-block;
}

.theme-btn3:hover {
  background: var(--color4);
  color: #000000 !important;
}

.product-swiper {
  width: 100%;
  padding: 40px 0;
}

.product-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 🔥 Fixed Autoplay Progress */
.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #ffffff;
}

.autoplay-progress svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: #007bff;
  fill: none;
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
/* index parallax */
section.index-parallax {
  position: relative;
  height: auto;
  background-image: url("../images/index-parallax.jpg");
  background-color: rgba(0, 0, 0, 0.4901960784);
  background-blend-mode: overlay;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  padding: 6em 2em;
}
/* index why choose us */
.why-choose-us {
  background-color: #fff;
}

.why-choose-us h1 {
  color: var(--color1);
  font-weight: bold;
}

.why-choose-us h2 {
  color: var(--color2);
}

/* Feature Card Styling */
.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.feature-card h3 {
  color: var(--color2);
  font-weight: bold;
  margin-bottom: 8px;
}

.feature-card p {
  color: #333;
  font-size: 16px;
  margin: 0;
}

/* Hover Effects */
.feature-card:hover {
  transform: translateY(-5px);
  background-color: var(--color1);
}
.feature-card:hover h3 {
  color: #ffffff;
}
.feature-card:hover p {
  color: #ffffff;
}
.feature-card::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 5px;
  background: var(--color1);
  left: 0;
  top: 0;
  transition: width 0.3s ease-in-out;
}

.feature-card:hover::after {
  width: 100%;
  opacity: 0.2;
}

/* WOW.js Animation */
.wow {
  visibility: hidden;
}
/* about page */
.about-intro {
  background-color: #f8f2f2a1;
  background-blend-mode: overlay;
  background-image: url("../images/about-intro-bg.png");
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.section-title span {
  color: #d9534f; /* Fireworks Theme Color */
}

/* Image Hover Effect */
.image-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.image-wrapper img {
  transition: transform 0.3s ease-in-out;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

/* List Hover Effect */
.highlights {
  list-style: none;
  padding: 0;
}

.highlights li {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
  transition: color 0.3s ease-in-out;
}

.highlights li:hover {
  color: #d9534f;
}

.highlights i {
  color: #d9534f;
  margin-right: 8px;
}
/* about parallax */
#banner-6 {
  background: url("../images/about-parallax.webp") center center;
  background-color: #100f0feb;
  background-blend-mode: multiply;
  background-size: cover;
  background-attachment: fixed;
}

#banner-6 .banner-6-content {
  background: var(--color4); /* Gold/Yellow from your theme */
  color: #222;
  padding: 30px;
  border-radius: 5px;
}
#banner-6 .banner-6-text {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 0, 0.226);
  border-radius: 1em;
}
#banner-6 .banner-6-text h2 {
  color: var(--color1); /* Red */
  font-weight: bold;
}

#banner-6 .banner-6-text p {
  color: #222;
  font-size: 1.1rem;
  line-height: 1.6;
}

#banner-6 .banner-6-text .btn:hover {
  background: var(--color1);
  color: white;
  transform: scale(1.05);
}
/* about vision,mission,values */
.vision-mission-values {
  background-color: #f8f9fa;
}

/* Box styling */
.box {
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 15px var(--color1) !important; /* Stronger shadow on hover */
  border: 1px solid transparent;
}
.box.h3 {
  color: var(--color1);
}

/* Hover effect */
.box:hover {
  box-shadow: 0 6px 15px rgba(105, 5, 148, 0.781) !important; /* Stronger shadow on hover */
  transform: translateY(-5px); /* Slight lift */
}
.box:hover p {
  color: white;
}
.box:hover h3 {
  color: var(--color4);
}
.box:hover i.icon {
  color: #ffffff;
}

.icon {
  font-size: 40px;
  color: #d9534f;
  margin-bottom: 15px;
  transition: color 0.3s ease-in-out;
}

.box:hover .icon {
  color: #c9302c; /* Darker red on hover */
}

section.vision-mission-values h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color1);
}

section.vision-mission-values p {
  font-size: 16px;
  color: #555;
}
/* about page brand swiper */
.our-brands {
  background-color: #ffffff;
  overflow: hidden;
}
.our-brands .wow {
  visibility: hidden;
}
.our-brands .animated {
  visibility: visible !important;
}

.our-brands .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  will-change: opacity, transform;
}
.our-brands .swiper-slide-active {
  opacity: 1;
  transform: translateY(0);
}

.our-brands .swiper-slide img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Hover effect */
.our-brands .swiper-slide:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* safety page */
/* General Styles */
section.safety-tips {
  overflow: hidden;
}
.safety-tips .arial {
  font-weight: 600;
}
.safety-tips .smallfnt {
  font-size: 14px;
}

.safety-tips .helvetica {
  font-family: Helvetica, sans-serif;
}

/* Color Styles */
.safety-tips .clr1 {
  color: #c91325 !important;
}

.safety-tips .greenclr1 {
  color: #5d8700;
  font-weight: bold;
}

.safety-tips .greenclr2 {
  color: #5d8700;
}

.safety-tips .redclr1 {
  color: #ad3737;
  font-weight: bold;
}

.safety-tips .redclr2 {
  color: #dd2f45;
}

/* Card Styles */
.safety-tips .docardheading {
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #298145;
  padding: 10px 0px 10px 0px;
  border-radius: 20px 20px 0 0;
}
.safety-tips .dontcardheading {
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #ad3737;
  padding: 10px 0px 10px 0px;
  border-radius: 20px 20px 0 0;
}
.safety-tips .docard {
  border: 2px solid #5d8700;
  border-radius: 25px;
}

.safety-tips .dontcard {
  border: 2px solid #ad3737;
  border-radius: 25px;
}

.safety-tips .docardheadingbottom {
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #298145;
  padding: 20px 0;
  border-radius: 0 0 20px 20px;
}

.safety-tips .dontcardheadingbottom {
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #ad3737;
  padding: 20px 0;
  border-radius: 0 0 20px 20px;
}
/* contact page */
.contact-section {
  padding: 50px 0;
}

/* Heading Styles */
.contact-section__small-heading {
  font-size: 16px;
  font-weight: normal;
  color: #555;
}

.contact-section__description {
  font-size: 16px;
  color: #000000;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Cards */
.contact-card {
  width: 100%;
  height: 100%;
}

.contact-card__inner {
  background: linear-gradient(45deg, #ea4c07, #c91325);
  color: #fff;
  border: 5px solid var(--color4);
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  clip-path: polygon(
    10% 0%,
    90% 0%,
    100% 15%,
    100% 85%,
    90% 100%,
    10% 100%,
    0% 85%,
    0% 15%
  );
  transition: transform 0.3s ease-in-out;
  height: 12em;
}

.contact-card__inner:hover {
  transform: translateY(-5px);
}

.contact-card__icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/* Center Map */
.contact-map {
  width: 100%;
  max-width: 400px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}

/* utility classes */
.small-fnt {
  font-size: 14px;
}
.bg-red {
  background-color: var(--color1) !important;
}
.bg-violet {
  background-color: var(--color2) !important;
}
.text-red {
  color: var(--color1) !important;
}
.text-violet {
  color: var(--color2) !important;
}
.text-ltviolet {
  color: var(--color3) !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, sans-serif;
  font-weight: bold !important;
}
p,
span {
  font-family: Helvetica, sans-serif;
}
.f-arial {
  font-family: Arial, sans-serif !important;
}
.f-helvetica {
  font-family: Helvetica, sans-serif !important;
}
/* theme button */
.theme-btn {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(45deg, #ff4e50, #f9d423);
  border: none;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

/* Before - Left to Right animation */
.theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease-in-out;
}

/* After - Border glow effect */
.theme-btn::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Hover Effects */

a.theme-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 78, 81, 0.707) !important;
}
a:hover {
  color: white !important;
}

.theme-btn:hover::before {
  left: 100%;
}

.theme-btn:hover::after {
  opacity: 1;
}

/* Active State */
.theme-btn:active {
  transform: scale(0.98);
  box-shadow: 0 3px 10px rgba(255, 78, 80, 0.4);
}

/* Focus State */
.theme-btn:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(255, 78, 80, 0.8);
}
/* underline image adjustment */
.heading-container {
  display: inline-block;
  position: relative;
  text-align: center;
}

.underline-img {
  display: block;
  width: 100%;
  max-width: 20%;
  margin: 10px auto 20px;
}
/* mask image */
.round-mask {
  width: 100%;
  height: auto;

  /* Apply a hard-edged circular mask */
  -webkit-mask-image: radial-gradient(circle, black 50%, transparent 51%);
  mask-image: radial-gradient(circle, black 50%, transparent 51%);

  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
/* mask image1 */
.design-mask {
  width: 100%;
  height: auto;

  /* Apply a hard-edged circular mask */
  -webkit-mask-image: radial-gradient(circle, black 74%, transparent 80%);
  mask-image: radial-gradient(circle, black 74%, transparent 80%);

  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* Button Hover Effect */
.custom-btn {
  background-color: #d9534f;
  border: none;
  transition: background 0.3s ease-in-out, transform 0.2s;
}

.custom-btn:hover {
  background-color: #c9302c;
  transform: translateY(-3px);
}

/* footer styling */
.footer-bg {
  background-color: #222;
  position: relative;
  padding-bottom: 20px;
}

.footer-wave svg {
  width: 100%;
  position: absolute;
  top: -1px;
  left: 0;
}

/* Quick Links - Updated */
.footer-links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px !important;
}

a.footer-link {
  display: inline-block;
  background-color: white;
  color: #ff1b1c;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}

a.footer-link:hover {
  background-color: #ff1b1c;
  color: white;
}

.text-yellow {
  color: #ff1b1c;
}

.border-light {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.footer-quick-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 300px;
}

.footer-link {
  background-color: white;
  color: #ff1b1c;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}

.footer-link:hover {
  background-color: #ff1b1c;
  color: white;
}
.fadeInUp {
  animation: fadeInUp 0.6s ease-in-out;
}
header #mainMenu .pricelist a.pricelist-btn {
  position: relative; /* Ensures proper rendering */
  animation: ripple-border 2s infinite !important; /* Forces override */
  border-radius: 4px; /* Smooth edges for ripple */
}
header #mainMenu .pricelist a.pricelist-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255, 0, 0, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  /* animation: ripple-border 2s infinite; */
  pointer-events: none;
}

/* 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;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ripple-border {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 0, 0, 0.7);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

/* mobile media query */
@media (min-width: 1px) and (max-width: 767.98px) {
  .pad {
    padding: 40px 0;
  }
  /* header */
  header.header #mainMenu {
    clip-path: none;
    position: static;
    width: 80%;
  }
  nav.navbar .beside-logo {
    margin-left: unset;
  }
  header.header #mainMenu .navbar-nav li.nav-item a.nav-link {
    text-align: center;
  }
  /* index first */
  section.index-first h2 {
    font-size: 1.8rem;
  }
  /* index parallax */
  section.index-parallax h2 {
    font-size: 1.8rem;
  }
  section.why-choose-us .feature-card h3 {
    font-size: 1.5rem;
  }
}
/* tablet media query */
@media (min-width: 768px) and (max-width: 991.98px) {
  .pad {
    padding: 40px 0;
  }
  /* Remove Clip-Path */
  header.header #mainMenu {
    clip-path: none;
    position: static;
    transition: height 0.2s ease-in-out; /* Smooth transition */
    transform: translateZ(0);
    will-change: height, transform;
  }

  /* Navbar Toggler Button */
  .navbar-toggler {
    display: block;
    border: 1px solid #fff;
    background-color: transparent;
    padding: 8px 12px;
  }

  .navbar-toggler:focus,
  .navbar-toggler:hover {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
  }

  /* Navbar Toggler Icon */
  .navbar-toggler .bi-three-dots-vertical {
    font-size: 1.8rem;
    color: #fff; /* Make sure it's visible */
  }

  /* Mobile & Tablet Navbar Background */
  /* Remove Clip-Path */
  header.header #mainMenu {
    clip-path: none;
  }
  header.header .beside-logo {
    margin-left: unset;
    flex-wrap: unset;
  }
  /* Navbar Toggler Button */
  .navbar-toggler {
    display: block;
    border: 1px solid #fff;
    background-color: transparent;
    padding: 8px 12px;
  }

  .navbar-toggler .bi-three-dots-vertical {
    font-size: 1.8rem;
    color: #fff;
  }

  /* Mobile & Tablet Navbar Background */
  .navbar-collapse {
    background-color: #ffc107;
    padding: 10px;
  }

  /* Center Navbar Items */
  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navbar-nav .nav-item {
    text-align: center;
    width: 100%;
  }

  .navbar-nav .nav-item .nav-link {
    display: block;
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
  }

  /* Fix Logo Size */
  header.header .navbar-brand img {
    max-width: 80%;
    height: auto;
  }
  .beside-logo {
    margin-left: 0;
  }
  /* index page */
  section.index-first h2 {
    font-size: 2rem;
  }
}

#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);
}
