/********** Template CSS **********/
:root {
  --primary: #eaa636;
  --secondary: #545454;
  --light: #fdf5eb;
  --dark: #1e1916;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 60px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.fixed-top {
  display: none;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link {
  padding: 20px 15px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 600;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    right: 15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: var(--primary);
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: -1px;
  border-left: 16px solid #ffffff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

.hero-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--secondary);
}

/*** Facts ***/
.fact-item {
  transition: 0.3s;
}

.fact-item:hover {
  margin-top: -10px;
  background: #ffffff !important;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

/*** About ***/
.img-twice::before {
  position: absolute;
  content: "";
  width: 60%;
  height: 80%;
  top: 10%;
  left: 20%;
  border: 1rem solid var(--light);
  z-index: -1;
}

/*** Service ***/
.service-item,
.service-item * {
  transition: 0.3s;
}

.service-item:hover {
  margin-top: -10px;
  background: var(--primary) !important;
}

.service-item:hover * {
  color: var(--light);
}

.service-item .service-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

.service-item:hover .service-overlay {
  opacity: 1;
}

/*** Project ***/
.project-item {
  position: relative;
}

.project-item .project-title {
  position: absolute;
  top: auto;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  text-align: center;
  background: #ffffff;
  transition: 0.5s;
}

.project-item:hover .project-title {
  color: #ffffff;
  background: var(--primary);
}

/*** Team ***/
.team-img::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  border: 30px solid;
  border-color: transparent transparent #ffffff transparent;
}

@media (min-width: 576px) {
  .flex-sm-row .team-img::after,
  .flex-lg-row-reverse .team-img::after {
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
    border-color: transparent #ffffff transparent transparent;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .flex-sm-row-reverse .team-img::after {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 0;
    transform: translateY(-50%);
    border-color: transparent transparent transparent #ffffff;
  }
}

@media (min-width: 992px) {
  .flex-lg-row-reverse .team-img::after,
  .flex-sm-row-reverse .team-img::after {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 0;
    transform: translateY(-50%);
    border-color: transparent transparent transparent #ffffff;
  }

  .flex-sm-row-reverse.flex-lg-row .team-img::after {
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
    border-color: transparent #ffffff transparent transparent;
  }
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
  width: 60px;
  height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: #ffffff !important;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 22px;
  color: var(--light);
  background: var(--primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--primary);
  background: var(--dark);
}

/*** Footer ***/
@media (min-width: 992px) {
  .footer::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: var(--secondary);
  }
}

.footer-shape::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 100%;
  top: 0;
  left: -40px;
  background: var(--secondary);
  transform: skew(40deg);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}
/* ***************************************************** */
/* .cs-portfolio_1_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.cs-portfolio_1_heading .cs-isotop_filter {
  margin-bottom: 15px;
}

.cs-portfolio.cs-style1 {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 500px;
  display: block;
  position: relative;
}
.cs-portfolio.cs-style1 .cs-portfolio_hover {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  background-color: rgba(22, 22, 22, 0.4);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 2;
}
.cs-portfolio.cs-style1 .cs-plus {
  position: absolute;
  height: 60px;
  width: 60px;
  left: 50%;
  z-index: 1;
  top: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0.4);
  transform: translate(-50%, -50%) scale(0.4);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cs-portfolio.cs-style1 .cs-plus::before,
.cs-portfolio.cs-style1 .cs-plus::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cs-portfolio.cs-style1 .cs-plus::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.cs-portfolio.cs-style1:hover .cs-portfolio_hover {
  opacity: 1;
}
.cs-portfolio.cs-style1:hover .cs-plus {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.cs-portfolio.cs-style1 .cs-portfolio_bg {
  height: 100%;
  width: 100%;
  border-radius: inherit;
}
.cs-portfolio.cs-style1 .cs-portfolio_info {
  height: 300px;
  width: 300px;
  border-radius: 50%;
  padding: 105px 20px 80px 65px;
  bottom: -60px;
  left: -40px;
  position: absolute;
  z-index: 2;
}
.cs-portfolio.cs-style1 .cs-portfolio_info_bg {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  left: 0;
  top: 0;
}
.cs-portfolio.cs-style1 .cs-portfolio_title {
  font-size: 22px;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
}
.cs-portfolio.cs-style1 .cs-portfolio_subtitle {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding-right: 30px;
  color: rgba(254, 254, 254, 0.7);
}
.cs-portfolio.cs-style1 .cs-portfolio_subtitle::after {
  content: "";
  height: 1px;
  width: 20px;
  background-color: currentColor;
  border-radius: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: 2px;
}
.cs-portfolio.cs-style1.cs-type1 {
  height: 465px;
}
.cs-portfolio.cs-style1.cs-type1 .cs-portfolio_info_bg {
  left: -50px;
  top: 50px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cs-portfolio.cs-style1.cs-type1:hover .cs-portfolio_info_bg {
  left: 0px;
  top: 0px;
  opacity: 1;
}
.cs-portfolio.cs-style1.cs-type1 img,
.cs-portfolio.cs-style1.cs-type2 img {
  width: 100%;
}
.cs-portfolio.cs-style1.cs-type1 .cs-portfolio_title,
.cs-portfolio.cs-style1.cs-type1 .cs-portfolio_subtitle,
.cs-portfolio.cs-style1.cs-type2 .cs-portfolio_title,
.cs-portfolio.cs-style1.cs-type2 .cs-portfolio_subtitle {
  top: 15px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cs-portfolio.cs-style1.cs-type1:hover .cs-portfolio_title,
.cs-portfolio.cs-style1.cs-type2:hover .cs-portfolio_title {
  top: 0px;
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.cs-portfolio.cs-style1.cs-type1:hover .cs-portfolio_subtitle,
.cs-portfolio.cs-style1.cs-type2:hover .cs-portfolio_subtitle {
  top: 0px;
  opacity: 1;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.cs-portfolio.cs-style1.cs-type2 {
  border-radius: 5px;
}
.cs-portfolio.cs-style1.cs-type2 .cs-portfolio_hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 74, 23, 0.7)),
    to(rgba(0, 0, 0, 0.8))
  );
  background: linear-gradient(
    180deg,
    rgba(255, 74, 23, 0.7) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}
.cs-portfolio.cs-style1.cs-type2 .cs-portfolio_info_bg {
  display: none;
}
.cs-portfolio.cs-style1.cs-type2 .cs-portfolio_info {
  height: 100%;
  width: 100%;
  border-radius: 0%;
  padding: 30px 20px 30px 25px;
  bottom: 0;
  left: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.cs-portfolio.cs-style1.cs-lightbox_item:hover {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.cs-portfolio.cs-style1.cs-size1 {
  height: 299px;
}
.cs-portfolio.cs-style1.cs-size2 {
  height: 622px;
}
.cs-portfolio.cs-style1.cs-size3 {
  height: 600px;
}

.cs-portfolio.cs-style2 {
  position: relative;
  max-width: 1920px;
  margin: auto;
}
.cs-portfolio.cs-style2 .cs-gradient_shape {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  height: 600px;
  width: 600px;
  border-radius: 50%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(41, 0, 208, 0.2) 0%,
    rgba(24, 24, 24, 0.2) 100%
  );
  -webkit-filter: blur(50px);
  filter: blur(50px);
}
.cs-portfolio.cs-style2 .cs-portfolio_img.active .cs-shine_hover_1::before {
  -webkit-animation: shine 1.3s;
  animation: shine 1.3s;
}
.cs-portfolio.cs-style2 .cs-section_heading.cs-style1 {
  position: relative;
  z-index: 2;
}
.cs-portfolio.cs-style2 .cs-portfolio_img_title {
  margin: 0;
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
  left: calc((100vw - 1300px) / 2 / 2);
  margin: 0 0 0 -30px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 2px #ff4a17;
  font-size: 50px;
}
.cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img_title {
  left: initial;
  right: calc((100vw - 1300px) / 2 / 2);
  margin: 0 -30px 0 0;
}
.cs-portfolio.cs-style2.cs-type1 .cs-gradient_shape {
  right: initial;
  left: 0;
}

@media screen and (max-width: 1540px) {
  .cs-portfolio.cs-style1 {
    height: 450px;
  }
  .cs-portfolio.cs-style1.cs-size3 {
    height: 500px;
  }
}
@media screen and (max-width: 1400px) {
  .cs-portfolio.cs-style2 .cs-portfolio_img_title {
    left: calc((100vw - 1120px) / 2 / 2);
    font-size: 40px;
    margin: 0 0 0 -27px;
  }
  .cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img_title {
    left: initial;
    right: calc((100vw - 1120px) / 2 / 2);
    margin: 0 -27px 0 0;
  }
}
@media screen and (max-width: 1380px) {
  .cs-portfolio.cs-style1 .cs-portfolio_title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .cs-portfolio.cs-style2 .cs-portfolio_img_title {
    left: calc((100vw - 940px) / 2 / 2);
  }
  .cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img_title {
    left: initial;
    right: calc((100vw - 940px) / 2 / 2);
  }
}
@media screen and (max-width: 1080px) {
  .cs-portfolio.cs-style2 .cs-portfolio_img {
    padding-left: 60px;
  }
  .cs-portfolio.cs-style2 .cs-portfolio_img_title {
    margin-left: 0;
  }
  .cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img {
    padding-right: 60px;
  }
  .cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img_title {
    margin-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .cs-portfolio.cs-style1 {
    height: 380px;
  }
  .cs-portfolio.cs-style2 .cs-portfolio_img,
  .cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img {
    position: relative;
    padding-left: 70px;
    padding-right: 0;
  }
  .cs-portfolio.cs-style2 .cs-portfolio_img_title,
  .cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img_title {
    left: 30px;
    right: initial;
    margin: 0 0 0 -27px;
  }
  .cs-portfolio.cs-style2 .cs-section_heading.cs-style1,
  .cs-portfolio.cs-style2.cs-type1 .cs-section_heading.cs-style1 {
    padding-left: 70px;
  }
}
@media screen and (max-width: 575px) {
  .cs-portfolio.cs-style1 {
    height: 380px;
  }
  .cs-portfolio.cs-style2 .cs-portfolio_img_title,
  .cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img_title {
    margin: 0px 0 0 -20px;
    font-size: 32px;
  }
} */
/* ************************************************************ */
/* /* Container for the Portfolio Heading */
/* General Styles */
/* Container styling */
/* General Styling */
.container {
  padding: 0 10px;
}

.cs-portfolio_1_heading {
  text-align: center;
  margin-bottom: px;
}

.cs-section_heading {
  margin-bottom: 30px;
}

.cs-section_subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cs-section_title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
}

.cs-isotop_filter {
  margin-top: 30px;
}

.cs-isotop_filter ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.cs-isotop_filter li {
  font-size: 14px;
}

.cs-isotop_filter li a {
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.cs-isotop_filter li.active a,
.cs-isotop_filter li a:hover {
  color: #f39c12; /* Highlight active link */
}

/* Grid Layout */
.cs-isotop {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.cs-isotop_item {
  position: relative;
  width: calc(25% - 24px); /* 4 items per row */
  height: 300px; /* Set a consistent height for images */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cs-isotop_item:hover {
  transform: scale(1.05); /* Slight zoom on hover */
}

.cs-portfolio {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.cs-portfolio_bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cs-portfolio_hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cs-isotop_item:hover .cs-portfolio_hover {
  opacity: 1;
}

.cs-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cs-isotop_item:hover .cs-plus {
  opacity: 1;
}

.cs-portfolio_info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cs-isotop_item:hover .cs-portfolio_info {
  opacity: 1;
}

.cs-portfolio_info_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.cs-portfolio_subtitle {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

/* Filter item active state */
.cs-isotop_filter li.active a {
  color: #f39c12; /* Highlight active link */
}

/* Load More Button */
.cs-text_btn {
  display: inline-block;
  padding: 10px 30px;
  background-color: #f39c12;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cs-text_btn:hover {
  background-color: #e67e22;
}

.cs-text_btn svg {
  width: 26px;
  height: 12px;
  margin-left: 10px;
  fill: currentColor;
}

.cs-height_90,
.cs-height_lg_40,
.cs-height_lg_45 {
  height: 40px;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .cs-isotop_item {
    width: calc(33.33% - 16px); /* 3 items per row */
  }
}

@media (max-width: 768px) {
  .cs-isotop_item {
    width: calc(50% - 16px); /* 2 items per row */
  }
}

@media (max-width: 480px) {
  .cs-isotop_item {
    width: 100%; /* 1 item per row */
  }
}
