/* Apply Poppins font to the whole website */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a{
  text-decoration: none;
}

.primary-bg-color {
  background-color: #16365f;
}

.secondary-bg-color {
  background-color: #b2832c;
}

.primary-text-color {
  color: #16365f;
}

.secondary-text-color {
  color: #b2832c;
}

.defender-text-white {
  color: #fff;
}

.fs-25 {
  font-size: 25px;
}

.fs-20 {
  font-size: 20px;
}

.fs-16 {
  font-size: 16px;
}
.fw-300 {
  font-weight: 300;
}
.fw-200 {
  font-weight: 200;
}
.fw-600 {
  font-weight: 600;
}

/* Main navbar styles */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  /* padding: 0 20px; */
  padding: 67px 91px;
  z-index: 1000;
  width: 100vw;
}

nav.sticky {
  background: rgba(13, 54, 100, 0.95); /* solid or semi-transparent */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px); /* optional glass effect */
}

/* Other styles remain the same */
nav .logo {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
}

nav .nav-items {
  display: flex;
}

nav .nav-items li {
  list-style: none;
  padding: 0 15px;
}

nav .nav-items li a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

nav .nav-items li a:hover {
  color: #000000;
}

/* Social media icons */
nav .social-icons {
  display: flex;
  gap: 15px;
}

nav .social-icons a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

nav .social-icons a:hover {
  color: #0084ff;
}

/* Hamburger and cancel (cross) button styling */
nav .menu-icon,
nav .cancel-icon {
  display: none; /* Initially hidden */
  color: white; /* White color for the hamburger and cancel icons */
  font-size: 24px;
  padding: 0 10px;
  cursor: pointer;
}

.hide {
  display: none; /* Hide element */
}

.show {
  display: block; /* Show element */
}

/* Optionally, add transition effects for smooth visibility changes */
.menu-icon span,
.cancel-icon {
  transition: opacity 0.3s ease;
}

nav .cancel-icon {
  display: none;
}

/* Hero section */
.home-hero-section {
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(to right, #0d3664, #0d3664, #7c5b1df1);
  color: white;
  position: relative;
  z-index: 5;
}

/* hero image zoom slider  start */
.main-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  height: 100vh;
  width: 100%;
}

/* .main-slider-container::after {
	background-color: #000;
	content: '';
	position: absolute;
	opacity: 0.3;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
} */

.slide-hero-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 100%;
  width: 100vw;
  transform: scale(1.15);
  transition: opacity 0.6s ease;
}

.slide-hero-image.active {
  animation: grow 6s linear forwards;
  opacity: 1;
}

@keyframes grow {
  0%,
  20% {
    transform: scale(1);
  }

  75%,
  100% {
    transform: scale(1.15);
  }
}

/* hero image zoom slider  end */

.contact-heading {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  nav {
    padding: 0;
  }
  .logo {
    margin-right: 160px;
  }

  nav .menu-icon {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 100;
  }

  nav .logo {
    flex: 2;
    text-align: center;
  }

  nav .nav-items {
    position: fixed;
    z-index: 99;
    overflow: hidden;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100% - 70px);
    padding: 10px 50px;
    text-align: center;
    background: #14181f;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  nav .nav-items.active {
    left: 0;
  }

  nav .nav-items li {
    margin: 30px 0;
    line-height: 40px;
    list-style: none;
  }

  nav .nav-items li a {
    font-size: 15px;
    color: white;
    text-decoration: none;
  }

  /* Hide social icons on mobile */
  nav .social-icons {
    display: none;
  }

  /* Show cancel (cross) icon when menu is open */
  nav .cancel-icon.show {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px; /* Align to the top */
    z-index: 100; /* Ensure it stays above other elements */
  }

  /* Hide hamburger icon when the menu is open */
  nav .menu-icon.hide {
    display: none; /* Hide hamburger icon when menu is active */
  }

  .contact-heading {
    font-size: 2rem; /* Size of the heading */
    font-weight: bold; /* Make it bold */
    letter-spacing: 3px; /* Space out the letters */
    text-transform: uppercase; /* Make text uppercase */
  }
}

.contact-us-hero-section {
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(to right, #0d3664, #0d3664, #7c5b1df1);
  color: white;
  position: relative;
  z-index: 5;
}
.about-us-hero-section {
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(to right, #0d3664, #0d3664, #7c5b1df1);
  color: white;
  position: relative;
  z-index: 5;
}

.contact-heading {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  nav {
    padding: 0;
  }
  .logo {
    margin-right: 160px;
  }

  nav .menu-icon {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 100;
  }

  nav .logo {
    flex: 2;
    text-align: center;
  }

  nav .nav-items {
    position: fixed;
    z-index: 99;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100% - 70px);
    padding: 10px 50px;
    text-align: center;
    background: #14181f;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  nav .nav-items.active {
    left: 0;
  }

  nav .nav-items li {
    margin: 25px 0;
    line-height: 25px;
    list-style: none;
  }

  nav .nav-items li a {
    font-size: 15px;
    color: white;
    text-decoration: none;
  }

  nav .social-icons {
    display: none;
  }

  /* Show cancel (cross) icon when menu is open */
  nav .cancel-icon.show {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 100;
  }

  nav .menu-icon.hide {
    display: none;
  }

  .contact-heading {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
}
/* Main navbar styles end*/

/* video style start  */
.video-section {
  background: url("../images/testimonial-bg.png");
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
}
.play-button-icon img {
  height: 130px;
  width: 130px;
  border-radius: 100%;
  cursor: pointer;
}

/* video style end */

/* aboutus section start */
.containe {
  padding: 10px 20px;
  /* margin-top: 200px; */
  margin-bottom: 10px;
}

.image-frame {
  position: relative;
  width: 50%;
  display: block;
}

.frame-image {
  width: 46%;
  height: auto;
}

.inner-image-1 {
  position: absolute;
  width: 62%;
  height: auto;
  left: 14%;
  bottom: 30%;
}

.inner-image-2 {
  position: absolute;
  width: 50%;
  height: auto;
  top: 23%;
  left: 50%;
}

.inner-image-2 {
  position: absolute;
  width: 50%;
  height: auto;
  top: 26%;
  left: 48%;
}
.inner-image-3{
  height: 32vw;
  width: 100%;
}
.image-frame {
  position: relative;
  display: block;
  width: 75%;
  margin-bottom: 70px;
}

.btn-custom:hover {
  background-color: #8a6a26;
}
/* For mobile devices (max-width: 767px) */
@media (max-width: 767px) {
  .containe {
    margin-top: 80px;
  }
  .row {
    padding-left: 0;
    padding-right: 0;
  }
  .frame-image {
    width: 46%;
  }
  .inner-image-1 {
    width: 62%;
    left: 14%;
    bottom: 25%;
  }
  .inner-image-3{
    height: 100%;
  }
}

/* For devices up to 900px (small tablets, large smartphones) */
@media (max-width: 900px) {
  .containe {
    margin-top: 80px;
  }
  .row {
    padding-left: 10px;
    padding-right: 10px;
  }
  .frame-image {
    width: 50%;
  }
  .inner-image-1 {
    width: 55%;
    left: 20%;
    bottom: 45%;
  }
}

/* For tablets (min-width: 768px and max-width: 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .containe {
    margin-top: 80px;
  }
  .row {
    padding-left: 15px;
    padding-right: 15px;
  }
  .frame-image {
    width: 50%;
  }
  .inner-image-1 {
    width: 62%;
    left: 16%;
    bottom: 77%;
  }
  
}

/* For small laptops (min-width: 1025px and max-width: 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
  .containe {
    margin-top: 100px;
  }
  .row {
    padding-left: 20px;
    padding-right: 20px;
  }
  .frame-image {
    width: 45%;
  }
  .inner-image-1 {
    left: 12%;
    bottom: 25%;
  }
}

/* For larger laptops and desktops (min-width: 1441px) */
@media (min-width: 1441px) {
  .containe {
    margin-top: 80px;
  }
  .row {
    padding-left: 30px;
    padding-right: 30px;
  }
  .frame-image {
    width: 40%;
  }
  .inner-image-1 {
    width: 40%;
    left: 5%;
    bottom: 40%;
  }
}

/* about us section end */
/* swiper slider style start */
.swiper {
  width: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-button-next:after {
  font-size: 24px !important;
  font-weight: bold !important;
  color: #16365f !important;
}
.swiper-button-prev:after {
  font-size: 24px !important;
  font-weight: bold !important;
  color: #16365f !important;
}

.swiper-button-prev {
  position: absolute;
  top: 70%;
  left: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
}
.swiper-button-next {
  position: absolute;
  top: 70%;
  left: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
}

.business-card {
  position: relative;
  width: 100%; /* Ensure it takes full width */
  max-width: 300px; /* Control max width for the card */
  margin: 0 auto; /* Center align card */
  padding: 20px;
}

.shape-image {
  position: absolute; /* Position the shape image */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1; /* Shape goes behind the circle */
  display: flex; /* Center align shape image */
  justify-content: center;
  align-items: center;
}

.circle-image {
  position: relative;
  z-index: 2; /* Circle above the shape */
  width: 80px; /* Control size */
  height: 80px; /* Control size */
  margin: 0 auto; /* Center the circle */
  text-align: center; /* Center align text inside the circle */
}

.business-info {
  position: absolute; /* Position it inside the circle */
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Shift back to center */
  z-index: 3; /* Above all */
  text-align: center;
}

.buttonSwipper a {
  color: #000; /* Button text color */
  text-decoration: none; /* Remove underline */
}

/* Responsive settings */
@media (max-width: 768px) {
  .swiper-slide {
    justify-content: center; /* Center on mobile */
    /* flex-direction: column;  */
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: block; /* Show navigation arrows */
    opacity: 1; /* Ensure visibility */
  }

  .business-card {
    max-width: none; /* Allow full width on mobile */
  }
}

.testimonial-bg-image {
  background-image: url("../images/testimonial-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative; /* Create positioning context */
  width: 100%;
  height: 300px;
  /* background: #b2832c; */
}

/* Overlay color */
.testimonial-bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(209, 141, 15, 0.774); /* Semi-transparent green */
  z-index: 1; /* Behind content */
}

.testimonial-section {
  padding: 20px 0px;

  color: #fff;
}

.testimonials {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
}
.testimonials-heading {
  font-weight: 600;
  font-size: 36px;
}

.testimonial-text {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
}

.testimonial-client-name {
  font-size: 16px;
  font-weight: 300;
  padding: 5px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.rating {
  color: #ffcc00;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;

  border: 1px solid white;

  transition: opacity 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: white;
}
/* swiper slider style end  */

/* about us style start */
.custom-right-border {
  border-right: 5px solid #b2832c;
  height: 180px;
}

/* Home page section style */
/* Layout styling */
.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px; /* Control width to match design */
  margin: 0 auto; /* Center on larger screens */
}

.gold-border {
  position: absolute;
  top: 100px;
  left: 20px;
  width: 50%;
  z-index: 1; /* Behind the building images */
}

.building-image-1 {
  position: absolute;
  left: 80px;
  width: 70%;
  z-index: 2;
}

.building-image-2 {
  position: absolute;
  top: 180px;
  left: 260px;
  width: 60%;
  z-index: 3;
}

.text-blue {
  color: #0d2c6a;
  font-weight: bold;
}

.text {
  color: #555;
}

.contact-info {
  font-weight: bold;
  color: #0d2c6a;
}

.btn-custom {
  background-color: #b68934;
  color: #fff;
  padding: 10px 30px;
}

.btn-custom:hover {
  background-color: #8a6a26;
}

.text-colour {
  color: #b68934;
}

.phone-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 68px; /* Adjust width and height as needed */
  height: 68px;
  border-radius: 50%; /* Makes the shape round */
  background-color: #f8f1e4; /* Button color */
  color: #b68934; /* Icon color */
  font-size: 20px; /* Icon size */
  margin-right: 10px; /* Space between icon and text */
}

.phone-icon i {
  margin: 0; /* Remove any default margin */
}

/* Responsive adjustments */

@media (max-width: 768px) {
  /* Center the content on smaller screens */
  .about-section {
    text-align: center; /* Center content */
  }

  .image-wrapper {
    max-width: 100%; /* Allow full width on mobile */
  }

  .gold-border {
    position: relative; /* Change to relative positioning */
    display: block; /* Stack the images */ /* Center images and give space */
    width: 40%;
    top: 20; /* Add some space above the border */
  }

  .building-image-1 {
    /* Change to relative positioning */
    display: block; /* Stack the images */ /* Center images and give space */
    width: 65%;
    top: 0; /* Adjust to keep overlapping effect */
  }

  .building-image-2 {
    position: relative; /* Change to relative positioning */
    display: block;
    top: 0;
    left: 10; /* Stack the images */ /* Center images and give space */
    width: 40%; /* Adjust to maintain the stacking */
  }

  .aboutsection {
    padding: 0 15px; /* Add some padding on mobile */
  }

  .mt-4 {
    margin-top: 1.5rem;
  }
}

/* General styling for the section */
.business-section {
  padding: 60px 0;
  background-color: #ebebebc4;
}
.buttonSwipper {
  background-color: #16365f;
  padding: 8px 6px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 200;
}

.business-section h2 {
  font-weight: bold;
  font-size: 24px;
  color: #2d2d2d;
}
.textt {
  color: #b68934;
}
.line {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #16365f;
  margin-top: 10px;
}
.line2 {
  color: #b68934;
}

/* about us style end */

/* contact us style start  */

.get-in-touch {
  padding: 80px 60px;
  background-color: #f1f1f2;
}

.vision-mission-section {
  background-color: #16365f;

  color: white;
  padding: 50px 0;
}

.vision-mission-content {
  display: flex;
  justify-content: space-between;
}

.vision,
.mission {
  width: 45%;
  /* Adjust as needed */
}

.commonH2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .vision-mission-content {
    flex-direction: column;
    text-align: center;
  }

  .vision,
  .mission {
    width: 100%;
  }
}

.chairman-section {
  padding: 50px 0;
  background-color: #f8f9fa;
}

.chairman-title {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 20px;
}

.speech-highlight {
  color: #b2832c;
  /* Highlight color for "Speech" */
}

.chairman-info h2 {
  font-size: 1.8rem;
  font-weight: bold;
}

.chairman-info h2 span {
  color: #b2832c;
}

.chairman-info p {
  margin-top: 10px;
}

.speech-image {
  width: 230px;
  height: 230px;
  border-radius: 100%;
}

.chairman-name {
  font-size: 36px;
  font-weight: 800;
}

.crman {
  color: #b2832c;
}
.details {
  color: #16365f;
  font-size: 16px;
  font-weight: 500;
}
.name {
  font-weight: bold;
}

@media (max-width: 768px) {
  .chairman-info {
    text-align: center;
  }

  .chairman-title {
    font-size: 2rem;
  }
  .details {
    text-align: center;
  }
}

@media (max-width: 376px) {
  /* For small devices */
  .contact-section .container {
    background-color: #b2832c !important;
    padding-top: 20px;
  }
}

/* For medium devices and up */
@media (min-width: 768px) {
  .contact-section {
    background-color: #b2832c;
  }
}


.contact-section {
  background: linear-gradient(
      to bottom,
      #b2832c98 20%,
      /* Pure white for the top 10% */ #b2832c98 0,
      /* Brownish color starting immediately after 10% */ #b2832c9c 80%,
      /* Brownish color for the middle 70% */ #c4a557a8 0,
      /* Gold-like color starting immediately after 80% */ #c4a557b7 100%
        /* Gold-like color for the bottom 10% */
    ),
    url("../images/contact-us-background.png") no-repeat center center/cover;
  padding: 50px 0;
  opacity: 1;
}

.contact-info {
  color: #fff;
}

.contact-info h4 {
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 24px;
}

.call-icon img {
  height: 50px;
  width: 50px;
}

.contact-info p {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-info .phone {
  font-weight: bold;
  font-size: 20px;
}

.contact-form {
  background-color: #1c3551;
  padding: 30px;
  border-radius: 10px;
  color: #fff;
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  background-color: #3b4b61;
  border: 1px solid #fff;
  color: #fff;
  margin-bottom: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b3b3b3;
}

.submit-btn {
  background-color: #c69e57;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  width: 100%;
}

.submit-btn:hover {
  background-color: #b38744;
}

@media (max-width: 768px) {
  .contact-info,
  .contact-form {
    margin-bottom: 30px;
  }
  .clients {
    margin-top: 80px;
  }
}

.contact-touch {
  color: #c4a557;
  word-spacing: 5px;
  font-weight: 600;
  font-size: 20px;
}
.contact-text {
  font-size: 35px;
  font-weight: 600;
  color: #fff;
}
.border-bottom {
  font-size: 3px;
  color: #fff;
}

.custom-input {
  background-color: #635c45;
  border: 0;
  color: #fff;
  padding: 30px;
  font-size: 16px;
  font-weight: 300;
}

.custom-input::placeholder {
  color: white;
}

.custom-input:focus {
  outline: none;
}

.custom-button {
  background: linear-gradient(to right, #c4a557, #b2832c);
  color: #fff;
  padding: 20px;
  width: 100%;
  font-weight: 600;
  font-size: 28px;
}

.contact-us-custom-bg {
  background-color: #c4a557;
  height: 100px;
}

/* contact us style end */

/* footer style start  */
.footer-logo img {
  height: 2.5rem;
  width: auto;
}
.footer-font-style {
  font-size: 15px;
  font-weight: 200;
}
.defender-text-white a {
  text-decoration: none;
  color: #fff;
}

.barcode img {
  height: 115px;
  width: 115px;
}
.social-media-style {
  font-size: 10px;
  font-weight: 100;
}
.footer-bottom {
  background-color: #221f1f;
}
/* footer style end */

/* ========= */
/* General styling for the section */

.business-section h2 {
  font-weight: bold;
  font-size: 24px;
  color: #2d2d2d;
}
.textt {
  color: #b68934;
}

.line {
  font-size: 34px;
  margin-bottom: 40px;
  font-weight: 600;
  color: #16365f;
  margin-top: 10px;
}
.line2 {
  color: #b68934;
}

.about-us-text {
  font-weight: 400;
  font-size: 22px;
  color: #b2832c;
}
.accross-in {
  color: #b2832c;
  font-size: 34px;
  font-weight: 600;
}

/* Business card container */
.card-bg-color {
  color: #8f9192;
}
.business-card {
  position: relative;
  text-align: center;
  height: 368px;
}

/* Circle image styling */
.circle-image {
  top: 500px;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Shape image underneath */
.shape-image {
  position: relative;
  margin-top: -170px;
}

.shape-image img {
  width: 100%;
  height: auto;
}

/* Business info styling (inside the shape) */
.business-info {
  position: absolute;
  top: 70%;
  width: 60%;
  text-align: center;
  color: #fff;
  left: 60px;
}

.business-info h3 {
  font-size: 20px;
  font-weight: 500;
}

.business-info a {
  background-color: #ff9900;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

/* Responsive design */
@media (max-width: 768px) {
  .circle-image {
    width: 80px;
    height: 80px;
  }

  /* .swiper-slide {
      width: 100%; 
  } */

  .business-info h3 {
    font-size: 16px;
  }

  .business-info a {
    font-size: 12px;
    padding: 6px 14px;
  }
}
/* ========= */

/* play button custom animation  start */
.play-button-animation {
  border-radius: 50%;
  animation: pulse-border 1.5s linear infinite;
}

@keyframes pulse-border {
  0% {
    scale: 1;
  }
  25% {
    scale: 1.1;
  }
  50% {
    scale: 1.2;
  }
  75% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
/* play button custom animation  end */

/* xs: max-width 575px */
@media only screen and (max-width: 575px) {
  .main-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    height: 33vh;
    width: 100%;
  }
  .containe {
    margin-top: 10px;
  }
  .text-sm-black {
    color: black;
  }
  .inner-image-3{
    height: 100%;
  }
}
