/* section 1 */
body {
  color: #22475a;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
 font-family: 'Roboto', sans-serif;
}

.Discover-wrapper {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
}

.Discover-wrapper::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}
.slider-container {
  position: relative;
  width: 100%;
  padding-top: 70px;
}
.Discover {
  min-width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: start;
  scroll-snap-align: start;
  position: relative;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
	padding-top: 100px;
}

/* .Discover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
} */

.Discover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.Discover-t{
 color: #fff;
  background-color: #f36f21;
  font-size: 18px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: absolute; /* This allows you to position the button relative to its container */
  right: 20px;      /* This moves the button 20px from the right edge */
  bottom: 20px; 
}

.Discover-text {
  color: white;
  padding: 20px;
  text-align: start;
  /* background: rgba(255, 255, 255, 0.6); */
  margin-left: 100px;
  position: relative;
  z-index: 1;
}

.Discover-text h2 {
  color: #f36f21;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.Discover-text p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6;
}
.Discover-text button {
  color: #fff;
  background-color: #f36f21;
  font-size: 18px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 50px;
}
.Discover-text button:hover {
  background-color: rgba(102, 102, 102, 0.9);
}

@media screen and (max-width: 768px) {
  .slider-container {
    padding-top: 50px;
  }
	.Discover-t {
    font-size: 15px;
		padding: 9px 12px;
	}
}
@media screen and (max-width: 425px) {
  .slider-container {
    padding-top: 0px;
  }
		.Discover-t {
    font-size: 12px;
	}
}

/* Navigation Buttons */
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.nav-prev {
  left: 20px;
}

.nav-next {
  right: 20px;
}

@media screen and (max-width: 1200px) {
  .Discover {
    height: 500px;
  }
}

@media screen and (max-width: 992px) {
  .Discover-text h2 {
    font-size: 2rem;
  }

  .Discover-text p {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 768px) {
  .Discover {
    /* height: 400px; */
    min-height: auto;
  }
}

@media screen and (max-width: 576px) {
  .Discover {
    height: 350px;
  }

  .Discover-text br {
    display: none;
  }
  .nav-button {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
@media screen and (max-width: 425px) {
  .Discover-text {
    margin: auto 10px;
  }
  .Discover {
    min-height: auto;
  }
}

@media screen and (max-width: 375px) {
  .Discover-text {
    margin: auto 10px;
  }
  .nav-button {
    display: none;
  }
}

/* section 2 */

.picture-heading {
	text-align:center;
	margin-top:80px;
	font-size:45px;
}

.picture-para{
	text-align:center;
	color: orange;
}

.picture {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 80px;
  padding-top:20px;
  justify-content: center;
  align-items: center;
	    margin: auto;
    max-width: 1400px;
}

.picture > div {
  padding: 10px;
  border: 3px solid transparent; /* Default: no highlight */
  transition: border 0.3s, background-color 1s ease-in-out;
  width: 100%;
  height: auto;
  text-align: center;
}

.picture > div img {
  max-width: 100%;
/*   height: auto; */
  border: 8px solid white;
  transition: 0.6s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.picture > div img:hover {
  border: 8px solid rgba(243, 110, 33, 0.7);
}

.highlight {
  background-color: #fca45c;
}

.picture p {
  font-size: 18px;
  font-weight: bold;
  color: #24445c;
  margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .picture {
    grid-template-columns: repeat(4, 1fr);
    padding: 60px;
  }
}

@media (max-width: 1024px) {
  .picture {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px;
    gap: 20px;
  }
  .picture-heading {
    font-size: 38px;
  }
  .picture p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .picture {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 15px;
  }
  .picture-heading {
    font-size: 32px;
    margin-top: 60px;
  }
  .picture p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .picture {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }
  .picture-heading {
    margin-top: 40px;
    font-size: 28px;
  }
  .picture > div {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 320px) {
    .picture-heading {
        font-size: 24px;
        margin-top: 30px;
    }
    .picture p {
        font-size: 12px;
    }
}

/* section 3 */

.dummy {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 40px; */
}

.dummy-1 {
  width: 50%;
  display: flex;
  justify-content: center;
}

.dummy-1 img {
  width: 100%;
  max-height: 800px;
  object-fit: cover;
}

.dummy-2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  padding: 20px;
  position: relative;
}

.dum-img1 img {
  width: 250px;
  height: auto;
  position: absolute;
  right: 0;
  top: -50px;
  z-index: -1;
}

.dum-img2 img {
  width: 300px;
  height: auto;
  position: relative;
  top: 80px;
  left: 100%;
}

.d-text {
  text-align: start;
  padding: 20px;
  max-width: 80%;
}

.d-text h2 {
  font-size: 65px;
  font-weight: 400;
  font-family: Yeseva One;
}

.d-text p {
  font-size: 20px;
  margin: 15px 0;
  color: #898989;
}
@media only screen and (min-width: 1440px) and (max-width: 1650px) {
.dum-img1 img{
  width: 200px;
  top: -50px;
}
}


@media (max-width: 1024px) {
  .dummy {
    flex-direction: column;
    /* text-align: center; */
    padding: 30px;
    max-width: 95%;
  }

  .dummy-1,
  .dummy-2 {
    width: 100%;
  }

  /* .dummy-1 img {
      max-height: 600px;
    } */

  .dum-img1 img {
    width: 250px;
    top: 0px;
  }

  .dum-img2 img {
    width: 250px;
    z-index: -1;
    display: none;
  }
  .dum-img1 img {
    display: none;
  }
  .d-text {
    max-width: 100%;
  }

  .d-text h2 {
    font-size: 50px;
  }

  .d-text p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .dummy {
    padding: 10px;
  }

  /* .dummy-1 img {
      max-height: 400px;
    } */

  .dum-img1 img,
  .dum-img2 img {
    width: 200px;
    display: none;
  }

  .d-text {
    max-width: 100%;
    padding: 10px;
  }

  .d-text h2 {
    font-size: 35px;
  }

  .d-text p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .dummy {
    flex-direction: column;
    padding: 5px;
  }

  .dum-img1 img,
  .dum-img2 img {
    width: 150px;
  }
  .dum-img1 img {
    top: 0px;
    z-index: -1;
    display: none;
  }

  .d-text {
    text-align: start;
  }

  .d-text h2 {
    font-size: 28px;
  }

  .d-text p {
    font-size: 14px;
  }
}

/* section 4 */

.custom-home-products {
  width: 100%;
  height: auto;
  padding-top: 100px;
  margin-top: 100px;
}

.custom-home-products h2 {
  text-align: center;
  font-size: 40px;
  color: #22475a;
  margin-bottom: 0px;
}

.custom-home-products p {
  margin: auto;
  text-align: center;
  margin-top: 0px;
  padding-top: 0px;
  margin-bottom: 50px;
  color: #fca45c;
}

.feature-category-products {
  display: grid;
  grid-template-columns: auto auto auto auto;
  /*   padding: 60px; */
  padding-top: 0px;
  justify-content: space-between;
  width: 100%;
    max-width: 1500px;
    margin: auto;
}
.feature-product-item {
  margin: 20px;
  /* margin-bottom: 50px; */
}
.back-orange {
  margin: auto;
  text-align: center;
  padding: 8px 10px;
}

.back-orange:hover {
  /* background-color: #f36f21; */
  transition: 0.6s ease-in-out;
}

.feature-product-item a {
  text-decoration: none;
}

.get {
  width: 100%;
  max-width: 400px;
  margin-top: 5px;
  max-height: 380px;
  height: 100%;
border: rgba(39, 38, 37, 0.7) solid 2px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}


.get:hover  {
  border: rgba(243, 110, 33, 0.7) solid 3px;
}
.feature-product-item h3 {
  text-align: center;
}

.feature-product-item h3 a {
  text-align: center;
  color: #555;
}

@media (max-width: 1440px) {
  .feature-category-products {
    grid-template-columns: auto auto auto;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .feature-category-products {
    display: grid;
    grid-template-columns: auto auto;
  }
  .custom-home-products {
    padding-top: 0px;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .feature-category-products {
    display: grid;
    grid-template-columns: auto auto;
  }

  .get {
    max-width: 300px;
  }
}

@media (max-width: 425px) {
  .feature-category-products {
    display: grid;
    grid-template-columns: auto;
  }

  .feature-category-products {
    /* padding: 30px; */
  }
  .feature-product-item {
    margin: 0px;
  }
  .get {
    max-width: 200px;
  }
}

@media (max-width: 375px) {
  .custom-home-products h2 {
    font-size: 35px;
  }

  .get {
    max-width: 200px;
  }
}

@media (max-width: 320px) {
  .feature-category-products {
    display: grid;
    grid-template-columns: auto;
  }
  .feature-product-item {
    margin: 0px;
  }
  .custom-home-products h2 {
    font-size: 28px;
  }

  .get {
    max-width: 180px;
  }
  .feature-category-products {
    padding: 30px 0px;
  }
  .feature-product-item {
    margin: 0px;
  }
}

/* section 5 */

.Better {
  display: flex;
  width: 100%;
  height: auto;
  margin: 100px auto;
  max-width: 1600px;
}

.Better-1 {
  width: 40%;
}

.Better-text {
  max-width: 70%;
  padding: 50px 100px;
  font-size: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.Better-text h2 {
  font-size: 45px;
  text-transform: uppercase;
  font-family: Yeseva One;
  margin: 0 0 20px 0;
}

.Better-text p {
  margin: 20px auto;
  line-height: 1.8;
  color: #898989;
}

.Better-2 {
  width: 60%;
}

.Better-2 img {
  width: 100%;
  height: auto;
  display: block;
  /* box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2); */
}

.Better-text button {
  color: #fff;
  background-color: #f36f21;
  font-size: 18px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 50px;
  transition: background-color 0.3s ease;
}

.Better-text button:hover {
  background-color: #898989;
}

/* Large Desktop */
@media (max-width: 1440px) {
  .Better-text {
    padding: 0px 80px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1250px) {
  .Better-2 img {
    padding-top: 50px;
  }
  .Better-text p {
    font-size: 15px;
  }
  .Better-text h2 {
    font-size: 35px;
  }
}

/* Desktop/Laptop */
@media (max-width: 1024px) {
  .Better {
    flex-direction: column;
    padding: 30px;
    max-width: 95%;
    margin: 50px auto;
  }

  .Better-1,
  .Better-2 {
    width: 100%;
  }

  .Better-text {
    max-width: 100%;
    padding: 30px;
    text-align: start;
    width: 100%;
  }

  .Better-text h2 {
    font-size: 35px;
  }

  .Better-text p {
    font-size: 18px;
  }

  .Better-text button {
    margin-top: 30px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .Better {
    margin: 30px auto;
    padding: 20px;
  }

  .Better-text {
    padding: 20px;
    max-width: 100%;
    width: 100%;
  }

  .Better-text h2 {
    font-size: 28px;
  }

  .Better-text p {
    font-size: 16px;
    margin: 15px 0;
    width: 100%;
  }

  .Better-text button {
    font-size: 16px;
    padding: 10px 20px;
    margin-top: 25px;
  }

  .Better-2 img {
    width: 100%;
    margin-top: 20px;
  }
}

/* Mobile Landscape */
@media (max-width: 640px) {
  .Better {
    margin: 20px auto;
    padding: 15px;
  }

  .Better-text {
    padding: 15px;
  }

  .Better-text h2 {
    font-size: 26px;
  }

  .Better-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  .Better-text button {
    font-size: 15px;
    padding: 9px 18px;
    margin-top: 20px;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .Better {
    flex-direction: column;
    text-align: start;
    padding: 15px;
    margin: 15px auto;
  }

  .Better-text {
    padding: 20px 0px;
    max-width: 100%;
    width: 100%;
  }

  .Better-text h2 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .Better-text p {
    font-size: 14px;
    margin: 15px 0;
    line-height: 1.6;
    width: 100%;
    max-width: none;
  }

  .Better-text button {
    font-size: 14px;
    padding: 8px 16px;
    margin-top: 20px;
    width: auto;
  }

  .Better-2 img {
    margin-top: 15px;
  }
}

/* Small Mobile */
@media (max-width: 360px) {
  .Better {
    padding: 10px;
    margin: 10px auto;
  }

  .Better-text {
    padding: 10px 0px;
  }

  .Better-text h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .Better-text p {
    font-size: 13px;
    margin: 12px auto;
  }

  .Better-text button {
    font-size: 13px;
    padding: 7px 14px;
    margin-top: 15px;
  }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
  .Better-text {
    padding: 8px 0px;
  }

  .Better-text h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .Better-text p {
    font-size: 12px;
    margin: 10px auto;
  }

  .Better-text button {
    font-size: 12px;
    padding: 6px 12px;
    margin-top: 12px;
  }
}
/* section 5 */

.across {
  display: flex;
  width: 100%;
  padding: 70px;
}
.across-1 {
  width: 50%;
  text-align: center;
}
.across-1 img {
  padding: 20px;
  height: auto;
  width: 100%;
  max-width: 95%;
}

.across-2 {
  width: 50%;
}
.across-2 {
  max-width: 70%;
  padding: 120px;
  font-size: 20px;
}
.across-2 h2 {
  font-size: 45px;
  text-transform: uppercase;
  font-family: Yeseva One;
}

.across-2 p {
  margin: 10px;
  width: 80%;
  line-height: 1.8;
  color: #6d6d6d;
}

.across-2 button {
  color: #fff;
  background-color: #f36f21;
  font-size: 18px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 50px;
}
.across-2 button:hover {
  background-color: #898989;
}
@media (max-width: 1024px) {
  .across {
    flex-direction: column-reverse;
    text-align: center;
    padding: 0px;
  }

  .across-1,
  .across-2 {
    width: 100%;
  }

  .across-2 {
    max-width: 100%;
    padding: 40px 20px;
    text-align: start;
  }

  .across-2 h2 {
    font-size: 35px;
  }

  .across-2 p {
    font-size: 18px;
    width: 90%;
  }
}

@media (max-width: 768px) {
  .across-2 h2 {
    font-size: 28px;
  }

  .across-2 p {
    font-size: 16px;
  }

  .across-2 button {
    font-size: 16px;
    padding: 10px 20px;
  }

  .across-1 img {
    width: 90%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .across-2 h2 {
    font-size: 24px;
  }

  .across-2 p {
    font-size: 14px;
    margin: 0;
  }

  .across-2 button {
    font-size: 14px;
    padding: 8px 16px;
    margin-top: 20px;
  }

  .across-1 img {
    height: auto;
  }
}

@media (max-width: 320px) {
  .across-2 {
    padding: 20px 10px;
  }

  .across-2 h2 {
    font-size: 22px;
  }

  .across-2 p {
    font-size: 13px;
  }

  .across-2 button {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* section 6 */

.service {
  width: 100%;
  margin: 60px auto;
}

.service h2 {
  text-align: center;
  font-size: 60px;
  margin-bottom: 60px;
  font-family: Yeseva One;
}
.service hr {
  max-width: 100px;
  margin: auto;
}

.service-1 {
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}

.ser-1 {
  border-radius: 10px;
  text-align: center;
  background-color: #90616117;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	padding:15px;
}

.ser-1 img {
  max-width: 100px;
  height: auto;
}
.ser-1:hover img {
  transform: scale(1.15);
}
.ser-1 h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.ser-1:hover h3 {
  color: #000000d2;
  transform: scale(1.15);
}
.ser-1 p {
  font-size: 20px;
  color: #6d6d6d;
  margin-top: 16px;
  padding: 10px;
}

@media (max-width: 1024px) {
  .service-1 {
    grid-template-columns: auto auto;
    gap: 30px;
  }

  .ser-1 h3 {
    font-size: 20px;
  }

  .ser-1 p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .service-1 {
    grid-template-columns: auto auto;
    gap: 20px;
    padding: 0 10px;
  }

  .ser-1 {
    padding: 15px;
  }

  .ser-1 h3 {
    font-size: 18px;
  }

  .ser-1 p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  /* .service {
      padding: 40px 15px;
    } */

  .ser-1 img {
    max-width: 60px;
  }

  .ser-1 h3 {
    font-size: 16px;
  }

  .ser-1 p {
    font-size: 13px;
  }
  .service h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media (max-width: 425px) {
    .service-1 {
        grid-template-columns: auto;
        gap: 20px;
        padding: 0 10px;
    }
}

/* section 7 */

.product {
  width: 100%;
  height: auto;
  min-height: 700px;
  background-color: #f36f21;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
}

.pro-text {
  font-size: 30px;
  margin-bottom: 20px;
  color: #2f2f2f;
  text-align: start;
  margin-left: 100px;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 40px;
}
.product a {
  text-decoration: none;
}
.slide-button {
  color: #f36f21;
  background-color: #fff;
  font-size: 18px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 50px;
  /* font-weight: 500; */
  font-weight: bold;
}
.slide-button:hover {
  background-color: #6d6d6d;
  color: #ffff;
  transition: 0.3s;
}

.productimg {
  display: flex;
/*   width: max-content; */
  transition: transform 0.5s ease-in-out;
  gap: 50px;
}

.as {
  text-align: center;
  flex: 0 0 auto;
}

.as img {
/*   width: 100%; */
  max-width: 350px;
  height: auto;
  min-height: 300px;
}

.img-name {
  color: white;
  font-size: 23px;
  font-weight: 600;
  margin-top: 10px;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Responsive Design Adjustments */
@media (max-width: 1200px) {
    .pro-text {
        margin-left: 50px;
    }
}

@media (max-width: 1024px) {
  .product {
    padding: 30px 15px;
    min-height: auto;
  }
  .pro-text {
    font-size: 24px;
    margin-left: 30px;
  }
    .as img {
        max-width: 300px;
        min-height: 250px;
    }
    .img-name {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
  .pro-text {
    font-size: 22px;
    text-align: center;
    margin-left: 0;
  }
  .productimg {
    gap: 30px;
  }
  .as img {
    max-width: 250px;
    min-height: 200px;
  }
    .img-name {
        font-size: 18px;
    }
    .slide-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .product {
        padding: 20px 10px;
    }
  .pro-text {
    font-size: 20px;
    margin-left: 0;
  }
  .productimg {
    gap: 20px;
    justify-content: flex-start;
  }
  .as {
      flex: 0 0 93%;
  }
  .as img {
    max-width: 100%;
    min-height: auto;
    height: 220px;
  }
  .img-name {
    font-size: 16px;
  }
  .prev-btn,
  .next-btn {
    font-size: 18px;
    padding: 8px 12px;
    top: 40%;
  }
    .slide-button {
        margin-top: 30px;
    }
}


/* section blogs */

.home-blog {
  padding: 50px;
  width: 100%;
}

.home-text {
  margin: 0px 100px;
  padding-left: 50px;
}
.card {
  width: 100%;
  max-width: 40%;
  font-size: 20px;
  margin: 20px;
}
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: start;
  font-family: Yeseva One;
  font-size: 30px;
  padding: 0px;
}
.card-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 300px;
}
.read-more-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 15px;
  background-color: #f36f21;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}
.card a {
  text-decoration: none;
}
@media (max-width: 1024px) {
  .home-blog {
    padding: 0px;
  }
  .home-text {
    padding-left: 0px;
    margin: 15px 50px;
  }
  .cards-container {
    justify-content: center;
  }

  .card {
    max-width: 40%;
  }
}
@media (max-width: 599px) {
  .card {
    max-width: 100%;
	}
}

@media (max-width: 425px) {
  .card {
    max-width: 100%;
  }
  .card-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
  }
  .home-blog {
    margin-top: 40px;
  }
  .home-text {
    margin: 0px 15px;
  }
}


@media only screen and  (min-width:426px) and (max-width: 480px) {
    .slider-container {
        padding-top: 0px;
    }
}