@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto";
}

.rounded-fill-btn {
  border-radius: 100px;
  padding: 14px 30px;
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #eebe00;
  display: inline-block;
}

.title {
  margin-bottom: 80px;
}
.title .title-box {
  text-align: center;
}
.title .title-box h4 {
  font-family: "Pacifico";
  font-size: 28px;
  color: #e95c41;
  margin-bottom: 40px;
}
.title .title-box h3 {
  font-size: 28px;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.title .title-box h3 .background-text {
  font-size: 120px;
  color: rgba(0, 0, 0, 0.05);
  /* Light faded */
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  font-family: "Pacifico";
}
.title .title-cont {
  text-align: center;
  padding-top: 80px;
}
.title .title-cont p {
  font-size: 18px;
  color: #a3a5a8;
  font-weight: 600;
}

header #navbar {
  transition: background-color 0.3s ease;
  background-color: transparent;
}
header #navbar .navbar-brand .header-logo {
  max-width: 180px;
}
header #navbar .navbar-nav {
  gap: 20px;
}
header #navbar .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  transition: all 0.5s ease;
}
header #navbar .navbar-nav .nav-item .nav-link.active {
  color: #eebe00;
}
header #navbar .navbar-nav .nav-item .nav-link:hover {
  color: #eebe00;
}
header #navbar.scrolled {
  background-color: #e95c41;
  /* Change to match your design */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Optional shadow */
}

.hero-sec {
  background-color: #e95c41;
  color: #ffffff;
  padding-top: 200px;
}
.hero-sec .title p {
  color: #eebe00;
  margin-bottom: 20px;
}
.hero-sec .title h2 {
  font-size: 54px;
  margin-bottom: 30px;
  font-weight: 600;
  max-width: 600px;
}
.hero-sec .cont p {
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 500px;
}

.our-value {
  padding: 100px 0px;
  background-color: #edeeee;
}
.our-value .content .img-box {
  text-align: center;
}
.our-value .value-cont p {
  color: #a3a5a8;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
  max-width: 500px;
  margin-bottom: 20px;
}
.our-value .value-cont p:last-child {
  margin-bottom: 0px;
}

.unmatched-packaging {
  padding: 100px 0px;
}
.unmatched-packaging .slider .slider {
  display: flex;
  margin: 0 auto;
  padding: 20px;
  gap: 30px;
  align-items: center;
}
.unmatched-packaging .slider .slider-images,
.unmatched-packaging .slider .slider-content {
  flex: 1 1 50%;
  padding: 10px;
}
.unmatched-packaging .slider .slider-images img {
  width: 100%;
  max-height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.unmatched-packaging .slider .slide {
  display: none;
}
.unmatched-packaging .slider .slide.active {
  display: block;
}
.unmatched-packaging .slider .content h2 {
  color: #ff5722;
}
.unmatched-packaging .slider .pagination {
  margin-top: 20px;
}
.unmatched-packaging .slider .pagination button {
  border: 1px solid #ff5722;
  background: none;
  color: #ff5722;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 5px;
  cursor: pointer;
}
.unmatched-packaging .slider .pagination button.active {
  background: #ff5722;
  color: white;
}
@media (max-width: 768px) {
  .unmatched-packaging .slider .slider {
    flex-direction: column;
  }
}

.procedure .slider-box {
  background-image: url("../images/Step_Graphic-01.png");
  background-size: cover;
  height: 700px;
  background-repeat: no-repeat;
  margin-top: 200px;
  padding: 100px 0px;
  display: flex;
  align-items: center;
}
.procedure .slider-box .slider-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.procedure .slider-box .slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
  gap: 30px;
  align-items: center;
}
.procedure .slider-box .slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.procedure .slider-box .slide img {
  width: 400px;
  max-width: 100%;
  border-radius: 4px;
}
.procedure .slider-box .text-content h2 {
  color: #e53935;
  /* Step title color */
  margin-bottom: 10px;
}
.procedure .slider-box .text-content p {
  max-width: 400px;
  font-size: 16px;
  color: #111;
}
.procedure .slider-box .dots {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}
.procedure .slider-box .dots button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #e53935;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.procedure .slider-box .dots button.active {
  background: #e53935;
  color: white;
}

.wide-range {
  margin-top: 150px;
}

.explore-our-range {
  margin-top: 150px;
}

.animation-box .product-fix-box {
  margin-top: 200px;
  display: grid;
  gap: 70px;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
}
.animation-box .banner {
  position: relative;
  margin-top: 200px;
}

.product-box {
  width: 100%;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.product-box img {
  margin: 0 auto; 
  margin-bottom: 40px;
  width: 70% !important; 
}
.product-box .box-detail {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.product-box .box-detail .cont {
  text-align: start;
}
.product-box .box-detail .cont h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.product-box .box-detail .cont p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0px;
}
.product-box .box-detail .cont h6 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0px;
}

.size-container {
  margin-top: 200px;
}
.size-container .size-cont-box {
  text-align: center;
}
.size-container .size-cont-box img {
  margin-bottom: 20px;
  background-color: #e95c41;
}
.size-container .size-cont-box .cont p {
  font-size: 20px;
  font-weight: 600;
  max-width: 175px;
  margin: 0 auto;
}

.functionality-of-iml {
  margin-top: 200px;
}
.functionality-of-iml .rounded-section {
  /* Absolute radial positions based on uploaded image */
  /* Top center */
  /* Upper right */
  /* Mid right */
  /* Lower right */
  /* Bottom center */
  /* Lower left */
  /* Mid left */
}
.functionality-of-iml .rounded-section .circle-section {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 550px;
  margin: 0 auto;
}
.functionality-of-iml .rounded-section .center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #f6a400, #ffcf57);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.functionality-of-iml .rounded-section .center-circle img {
  width: 350px;
  height: auto;
}
.functionality-of-iml .rounded-section .feature {
  position: absolute;
  width: 300px;
  font-size: 14px;
  text-align: center;
}
.functionality-of-iml .rounded-section .feature h3 {
  color: #f44336;
  font-size: 16px;
  margin-bottom: 0.5rem;
}
.functionality-of-iml .rounded-section .f1 {
  top: 40px;
  left: 20%;
  transform: translateX(-50%);
  text-align: end;
}
.functionality-of-iml .rounded-section .f2 {
  top: 200px;
  left: 15%;
  transform: translateX(-50%);
  text-align: end;
}
.functionality-of-iml .rounded-section .f3 {
  top: 400px;
  left: 20%;
  transform: translateX(-50%);
  text-align: end;
}
.functionality-of-iml .rounded-section .f4 {
  top: 40px;
  left: 78%;
  transform: translateX(-50%);
  text-align: start;
}
.functionality-of-iml .rounded-section .f5 {
  top: 200px;
  left: 83%;
  transform: translateX(-50%);
  text-align: start;
}
.functionality-of-iml .rounded-section .f6 {
  top: 400px;
  left: 78%;
  transform: translateX(-50%);
  text-align: start;
}
.functionality-of-iml .rounded-section .f7 {
  top: 550px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .functionality-of-iml .rounded-section .circle-section {
    height: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .functionality-of-iml .rounded-section .feature,
  .functionality-of-iml .rounded-section .center-circle {
    position: static;
    width: 90%;
    max-width: 400px;
    transform: none;
    margin: 1rem 0;
  }
  .functionality-of-iml .rounded-section .center-circle {
    width: 200px;
    height: 200px;
  }
  .functionality-of-iml .rounded-section .center-circle img {
    width: 100px;
  }
}

#footer {
  margin-top: 150px;
  padding-top: 100px;
  padding-bottom: 20px;
  background-color: #e95c41;
  color: #ffffff;
}
#footer .about-sec {
  margin-bottom: 100px;
}
#footer .about-sec .footer-logo {
  max-width: 200px;
}
#footer .footer-links {
  margin-bottom: 40px;
}
#footer .footer-links .footer-link h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}
#footer .footer-links .footer-link ul {
  margin-bottom: 0px;
  padding-left: 0px;
  list-style: none;
}
#footer .footer-links .footer-link ul li {
  margin-bottom: 16px;
}
#footer .footer-links .footer-link ul li:last-child {
  margin-bottom: 0px;
}
#footer .footer-links .footer-link ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}
#footer .footer-links .footer-link .address {
  margin-bottom: 30px;
}
#footer .footer-links .footer-link .address h6 {
  font-size: 14px;
  font-weight: 600;
}
#footer .footer-links .footer-link .address ul li {
  font-size: 14px;
  font-weight: 400;
}
#footer .footer-links .footer-link .btn-box {
  margin-bottom: 30px;
}
#footer .footer-links .footer-link .btn-box a {
  font-size: 14px;
}
#footer .footer-links .footer-link .email-phone ul li {
  font-size: 14px;
  font-weight: 400;
}
#footer .copyright {
  background-color: #df7e6b;
  padding: 20px 40px;
}
#footer .copyright p {
  margin-bottom: 0px;
}
#footer .copyright .social-links {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}
#footer .copyright .social-links a {
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 100px;
  max-width: 38px;
  max-height: 38px;
  width: 100%;
  transition: all 0.5s ease;
}
#footer .copyright .social-links a:hover {
  background-color: #eebe00;
  border-color: #eebe00;
}

.about-page .hero-sec {
  padding-bottom: 100px;
}
.about-page .our-team {
  margin-top: 100px;
}
.about-page .our-team .title {
  margin-bottom: 130px;
}
.about-page .our-team .team-slider .team-box {
  border: 2px solid #a3a5a8;
}
.about-page .our-team .team-slider .team-box .team-details {
  padding: 20px;
}
.about-page .our-team .team-slider .team-box .team-details h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
.about-page .our-team .team-slider .team-box .team-details p {
  font-size: 16px;
  color: #a3a5a8;
  margin-bottom: 20px;
}
.about-page .our-team .team-slider .team-box .team-details .social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-page .our-team .team-slider .team-box .team-details .social-links a {
  text-decoration: none;
  color: #e95c41;
  font-size: 24px;
  padding: 10px;
  border: 1px solid #e95c41;
  transition: all 0.5s ease;
  background-color: transparent;
  max-width: 50px;
  max-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .our-team .team-slider .team-box .team-details .social-links a:hover {
  color: #ffffff;
  background-color: #e95c41;
  border-color: #eebe00;
}

.service-page .service-cont {
  margin-top: 100px;
}
.service-page .service-cont .value-cont h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}
.service-page .service-cont .value-cont p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 26px;
  color: #a3a5a8;
}
.service-page .service-cont .value-cont p:last-child {
  margin-bottom: 0px;
}

.product-page .product-list-box {
  display: flex;
}
.product-page .product-list-box .product-filter {
  background-color: #e8e8e9;
  min-width: 330px;
}
.product-page .product-list-box .product-filter .search-box {
  padding: 40px 20px;
}
.product-page .product-list-box .product-filter .search-box input:focus {
  box-shadow: none;
  border-color: #a3a5a8;
}
.product-page .product-list-box .product-filter .filter h4 {
  font-size: 26px;
  font-weight: 600;
  padding: 0px 20px;
}
.product-page .product-list-box .product-filter .filter .filter-box {
  margin-bottom: 20px;
  padding: 20px 20px 20px 20px;
  border-bottom: 1px solid #a3a5a8;
}
.product-page .product-list-box .product-filter .filter .filter-box:last-child {
  border-bottom: none;
}
.product-page .product-list-box .product-filter .filter .filter-box .form-check label {
  font-size: 18px;
  font-weight: 500;
  transition: all 0.5s ease;
  cursor: pointer;
}
.product-page .product-list-box .product-filter .filter .filter-box .form-check input {
  border-color: #a3a5a8;
  cursor: pointer;
}
.product-page .product-list-box .product-filter .filter .filter-box .form-check input:focus {
  box-shadow: none;
  border-color: #a3a5a8;
}
.product-page .product-list-box .product-filter .filter .filter-box:hover .form-check label {
  color: #e95c41;
}
.product-page .product-list-box .pproduct-list {
  background-color: #eebe00;
  flex: 1;
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 40px;
}
.product-page .product-list-box .pproduct-list .product-box {
  text-align: center;
}
.product-page .product-list-box .pproduct-list .product-box img {
  margin-bottom: 30px;
  max-width: 100%;
}

.product-page .product-list-box .pproduct-list .product-box2 {
  text-align: center;
}

.product-page .product-list-box .pproduct-list .product-box2 img {
  margin-bottom: 30px;
  max-width: 100%;
}

.product-page .product-list-box .pproduct-list .product-box2 h4 {
  font-size: 22px;
  max-width: 200px;
  margin: 0 auto;
}

.product-page .product-list-box .pproduct-list .product-box h4 {
  font-size: 22px;
  max-width: 200px;
  margin: 0 auto;
}
.product-page #footer {
  margin-top: 0px;
}

.samplekit-page .hero-sec {
  padding-bottom: 150px;
}
.samplekit-page .hero-sec .title {
  text-align: center;
}
.samplekit-page .hero-sec .title h6 {
  font-size: 24px;
}
.samplekit-page .our-value .value-cont {
  margin-bottom: 40px;
}
.samplekit-page .our-value .value-cont h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}
.samplekit-page .our-value .value-cont p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 26px;
  color: #a3a5a8;
  max-width: 100%;
}
.samplekit-page .our-value .value-cont p:last-child {
  margin-bottom: 0px;
}
.samplekit-page .our-value .number {
  text-align: end;
}
.samplekit-page .our-value .number h5 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}
.samplekit-page .our-value .number a {
  font-size: 22px;
  padding: 14px 50px;
}
.samplekit-page #footer {
  margin-top: 0px;
}

.contact-page .hero-sec {
  padding-bottom: 150px;
}
.contact-page .hero-sec .title {
  text-align: center;
}
.contact-page .hero-sec .title h6 {
  font-size: 24px;
}
.contact-page .contact-box {
  margin-top: 100px;
}
.contact-page .contact-box .contect-card .icon-box {
  text-align: center;
  background-color: #eebe00;
  color: #e95c41;
  padding: 100px;
  border-radius: 100%;
  max-width: 300px;
  max-height: 300px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.contact-page .contact-box .contect-card .icon-box i {
  font-size: 100px;
}
.contact-page .contact-box .contect-card .cont {
  text-align: center;
}
.contact-page .contact-box .contect-card .cont h3 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 30px;
}
.contact-page .contact-box .contect-card .cont p {
  font-size: 18px;
  color: #a3a5a8;
  margin-bottom: 10px;
}
.contact-page .contact-box .contect-card .cont p:last-child {
  margin-bottom: 0px;
}
.contact-page .contact-box .contect-card .cont .call-list-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  gap: 30px;
}
.contact-page .form-map-box {
  margin-top: 100px;
}
.contact-page .form-map-box form label {
  color: #a3a5a8;
}
.contact-page .form-map-box form input:focus {
  box-shadow: none;
  border-color: #a3a5a8;
}
.contact-page .form-map-box form textarea:focus {
  box-shadow: none;
  border-color: #a3a5a8;
}
.contact-page .form-map-box form button {
  border: none;
  padding: 12px 50px;
  font-size: 18px;
  font-weight: 500;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 100px;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: rgba(163, 165, 168, 0.3882352941);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.timeline-container.left {
  padding: 0px 100px 10px 0px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container.right {
  padding: 0px 0px 10px 100px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.timeline-container::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -50px;
  background-color: #eebe00;
  color: #e95c41;
  top: 0px;
  border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
}

.timeline-container.tml-line-1::after {
  content: "1998";
}

.timeline-container.tml-line-2::after {
  content: "2004";
}

.timeline-container.tml-line-3::after {
  content: "2008";
}

.timeline-container.tml-line-4::after {
  content: "2016";
}

.timeline-container.tml-line-5::after {
  content: "2018";
}

.timeline-container.tml-line-6::after {
  content: "2020";
}

.timeline-container.tml-line-7::after {
  content: "2022";
}

.timeline-container.tml-line-8::after {
  content: "2024";
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 50px;
  width: 70px;
  z-index: 1;
  right: 30px;
  border: medium solid rgba(163, 165, 168, 0.3882352941);
  border-width: 2px;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 50px;
  width: 70px;
  z-index: 1;
  left: 30px;
  border: medium solid rgba(163, 165, 168, 0.3882352941);
  border-width: 2px;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -50px;
}

/* The actual content */
.content {
  padding: 20px 0px;
  position: relative;
  border-radius: 6px;
}

.timeline-container.left-sub {
  padding: 0px 0px 10px 100px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container.left-sub::after {
  display: none;
}

.timeline-container.right-sub {
  padding: 0px 100px 10px 0px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container.right-sub::after {
  display: none;
}

.timeline .both-side-cont:has(.right-sub) .right {
  left: 0px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 767px) {
  /* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }
  /* Full-width containers */
  .timeline-container.left {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-container.right {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-container::after {
    width: 60px;
    height: 60px;
  }
  .timeline-container.left-sub {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-container.right-sub {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline .both-side-cont .right {
    order: 1;
  }
  .timeline .both-side-cont .right-sub {
    order: 2;
  }
  /* Make sure that all arrows are pointing leftwards */
  .timeline-container::before {
    display: none;
  }
  /* Make sure all circles are at the same spot */
  .left::after,
  .right::after {
    left: 0px;
  }
  /* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}
.investor-relation-page .con-sec {
  margin-top: 100px;
}
.investor-relation-page .con-sec .left-side .nav {
  gap: 20px;
}
.investor-relation-page .con-sec .left-side .nav button {
  background-color: transparent;
  color: #e95c41;
  text-align: start;
}
.investor-relation-page .con-sec .left-side .nav button.active {
  background-color: #eebe00;
  color: #ffffff;
}
.investor-relation-page .con-sec .left-side .nav button.active:hover {
  color: #ffffff;
}
.investor-relation-page .con-sec .left-side .nav button:hover {
  color: #eebe00;
}
.investor-relation-page .con-sec .right-side .tab-content .tab-pane .content-box h4 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 600;
}
.investor-relation-page .con-sec .right-side .tab-content .tab-pane .content-box p {
  margin-bottom: 20px;
  color: #a3a5a8;
}
.investor-relation-page .con-sec .right-side .tab-content .tab-pane .content-box p:last-child {
  margin-bottom: 0px;
}
.investor-relation-page .con-sec .right-side .tab-content .tab-pane .content-box ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.investor-relation-page .con-sec .right-side .tab-content .tab-pane .content-box ul li {
  margin-bottom: 10px;
  color: #a3a5a8;
}
.investor-relation-page .con-sec .right-side .tab-content .tab-pane .content-box ul li:last-child {
  margin-bottom: 0px;
}

.image-pin-area {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  /* invisible marker */
  transform: translate(-50%, -50%);
}

section.slider-section1,
section.slider-section2 {
  position: relative;
  height: 60vh;
  min-height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.animated-image {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*width: 300px;*/
  height: auto;
  z-index: 10;
  /*transition: opacity 0.5s, transform 0.5s ease;*/
  transition: opacity 0.5s, transform 1s ease;
  opacity: 0;
  pointer-events: none;
  border-radius: 10px;
}

.show-image {
  opacity: 1 !important;
}

section.bg-section1,
section.bg-section2 {
  height: 100vh;
  background: url("../images/round-container-banner-image-1.jpg") no-repeat center center/contain;
  position: relative;
}

.bg-pinned-img-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.bg-pinned-img-wrapper img {
  display: block;
  border-radius: 10px;
  max-width: 90vw;
  height: auto;
}/*# sourceMappingURL=style.css.map */


#footerSlider{
  background: #fff;
    padding: 8px 20px;
}