@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  overflow-x: hidden;
  --primary-color: #165380;
}
a {
  text-decoration: none;
  font-size: 16px;
  color: #000;
}
p {
  font-size: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  font-size: 35px;
  color: #000000;
}

form {
  margin-top: 20px;
}

input:focus {
  outline: none;
}

iframe {
  border-radius: 11px;
}

input {
  background: #fff;
  border: 1.43675px solid #02549a;
  border-radius: 14px;
  padding: 16px 10px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
}

textarea:focus {
  outline: none;
}

textarea {
  background: #fff;
  border: 1.43675px solid #02549a;
  border-radius: 14px;
  padding: 16px 10px;
  width: 100%;
  max-height: 120px;
  margin-top: 15px;
  font-size: 16px;
}
.container {
  max-width: 1320px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.columns-1 {
  width: 100%;
  display: grid;
  overflow: hidden;
}

.columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.single .columns-2 {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 0;
}

.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.columns-4 {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.primary-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 16px 25px;
  display: inline-block;
  border-radius: 31px;
  min-width: 200px;
  text-align: center;
  transition: all 0.4s;
  border: 1px solid var(--primary-color);
  width: auto;
}
/* .sp-full-screen-button.sp-fade-full-screen {
  height: 79%;
  width: 100%;
  transform: rotate(0);
  -webkit-transform: rotate(0);
} */
.slider-pro img.sp-image,
.slider-pro img.sp-thumbnail {
  width: 100% !important;
  height: 100% !important;

  object-fit: contain !important;
}
@media only screen and (min-width: 991px) {
  .primary-btn:hover {
    transition: all 0.4s;
    background-color: #fff;
    color: var(--primary-color);
  }
}

.product-info-icon-img img {
    height: 100%;
    width: auto;
}
.product-info-icon-img {
	height:50px
}
.first-sectin-box img {
  width: 100%;
}
.first-sectin-box {
  height: 80dvh;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  padding: 11px 0;
}

nav {
  display: flex;
  align-items: center;
}
.menu-header-menu-en-container {
  width: 100%;
}
.menu-header-menu-container {
  width: 100%;
}
.navbar {
  display: flex;
  list-style: none;
  width: calc(100% - 75px);
  justify-content: flex-end;
  align-items: center;
}
.navbar li a {
  color: #000;
}
.navbar li {
  margin: 0 20px;
}
.current-menu-item a {
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color) !important;
}

.navbar li:last-child a {
  background-color: var(--primary-color);
  color: #fff !important;
  padding: 10px;
  border-radius: 10px;
  display: inline-block;
}
.language {
  width: 60px;
  position: absolute;
  text-align: center;
  right: 15px;
}

.footer-logo p {
  color: #595959;
  margin: 15px 0;
}
.footer-logo i {
  color: var(--primary-color);
  font-size: 25px;
}

.footer-div {
  display: grid;
  grid-template-columns: 50% 30% 1fr;
  padding: 30px 0;
  margin-top: 60px;
  position: relative;
}
.footer-div::before {
  position: absolute;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(22, 83, 128, 0.17) 0%,
    #165380 50%,
    rgba(22, 83, 128, 0.17) 100%
  );
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
}
.footer-div::after {
  position: absolute;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(22, 83, 128, 0.17) 0%,
    #165380 50%,
    rgba(22, 83, 128, 0.17) 100%
  );
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
}
.footer-copyright {
  text-align: center;
  padding: 20px 0;
}

.footer-logo {
  max-width: 500px;
}
.footer-resources h4 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.footer-resources p {
  margin-bottom: 10px;
}
.footer-resources a {
  color: var(--primary-color);
}
.btn-send {
  text-align: center;
}
.footer-contact h4 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer-contact a {
  color: var(--primary-color);
  margin-left: 5px;
}

/* products homepage */
.products-homepage {
  padding: 80px 0;
}

.products-box {
  margin-top: 15px;
  transition: all 0.4s;
  cursor: pointer;
}

.products-box-image {
  max-height: 320px;
  overflow: hidden;
  border-radius: 11px;
  transition: all 0.6s;
}
.products-box-image img {
  transition: all 0.6s;
}
@media only screen and (min-width: 991px) {
  .products-box-image:hover img {
    transform: scale(1.02);
    transition: all 0.6s;
  }
}

.products-box-image img {
  width: 100%;
  height: auto;
}

.products-homepage .btn-send {
  margin-top: 50px;
}

/* location */
.location-columns {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 15px;
  overflow: hidden;
}

.location-info-box {
  margin-bottom: 20px;
}

.location-map img {
  width: 100%;
}
.location-info {
  text-align: center;
}
.location-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info-box h4 {
  font-size: 20px;
}
.first-section-div {
  overflow: hidden;
}

.first-section-div .swiper-slide {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.home .swiper-wrapper {
  max-height: 80dvh;
}

.first-section-div .swiper-slide::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(30, 30, 30, 0.5) 100%
  );
  border-radius: 20px;
  z-index: 99;
  bottom: 0;
}

.swiper-pagination {
  width: 100%;
  bottom: 25px;
}
.first-section-div {
  margin-top: 100px;
  border-radius: 21px;
}
.swiper-pagination-bullet {
  width: 80px;
  height: 7px;
  border-radius: 10px;
  border: 1px solid #ffffff;
  background-color: transparent;
  opacity: 1;
  margin: 0 3px;
}
.swiper-pagination-bullet-active {
  background-color: #fff;
}

/* about homepage */
.about-section-homepage {
  padding: 100px 0;
}

.about-homepage-image img {
  width: 100%;
  border-radius: 11px;
}

.subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: var(--primary-color);
}
.title {
  font-weight: 400;
  font-size: 35px;
  line-height: 68px;
  color: #000000;
}
.about-homepage-details p {
  color: #595959;
}
.about-homepage-skills {
  background: #ffffff;
  box-shadow: 32px 13px 52px 0 rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 370px;
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
  margin-top: 15px;
}
.about-homepage-info img {
    max-height: 110px;
}
.about-homepage-skills::before {
  position: absolute;
  content: url(../images/arrow-up.svg);
  bottom: 10px;
}
.columns-skills {
  margin-top: 100px;
}
.about-homepage-info p {
  color: var(--primary-color);
  font-size: 22px;
}
.about-homepage-skills:hover .about-homepage-skills-details {
  transition: all 0.4s;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.about-homepage-skills-details {
  background-color: rgba(22, 83, 128, 0.95);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(15px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  border-radius: 10px;
}
.about-homepage-skills-details p {
  color: #fff;
}
.about-homepage-skills-details h5 {
  color: #fff;
  font-size: 25px;
}
.about-section-homepage .btn-send {
  margin-top: 50px;
}
.about-homepage-image {
  display: flex;
  align-items: center;
}

/* services homepage */
.services-homepage {
  padding: 20px 0 80px 0;
}
.services-homepage-image {
  border-radius: 10px;
  display: flex;
  height: 100%;
}
.services-homepage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-page-box button {
  color: var(--primary-color);
  border: 0;
  font-size: 16px;
  background-color: #fff;
  display: block;
}
.services-page-box {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  margin-top: 15px;
  transition: all 0.4s;
}
.services-page-box p {
  text-transform: uppercase;
  transition: all 0.4s;
}
.services-page-box .first-btn {
  transition: all 0.6s;
}
.services-page-image {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  margin-bottom: 10px;
  max-height: 330px;
}
.services-page-image img {
  transition: all 0.4s;
}
.service-box-details {
  position: relative;
}
@media only screen and (min-width: 991px) {
  .services-page-box:hover img {
    transform: scale(1.02);
    transition: all 0.6s;
  }
  .services-page-box:hover .service-box-details .first-btn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s;
  }
  .services-page-box .service-box-details .second-btn {
    transform: translateY(0);
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
    top: 0;
    cursor: pointer;
  }
  .services-page-box:hover .service-box-details .second-btn {
    transform: translateY(-25px);
    transition: all 0.4s;
    opacity: 1;
    visibility: visible;
  }
}

.services-homepage-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  max-height: 400px;
  margin-top: 15px;
  transition: all 0.6s;
  cursor: pointer;
}
.services-homepage-box img {
  transition: all 0.4s;
}

.services-homepage-box a {
  transition: all 0.4s;
}
.second-title {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  transform: translateY(15px);
}

@media only screen and (min-width: 991px) {
  .services-homepage-box:hover .first-title {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s;
  }
  .services-homepage-box:hover .second-title {
    transform: translateY(0);
    transition: all 0.4s;
    opacity: 1;
    visibility: visible;
  }

  .services-homepage-box:hover img {
    transform: scale(1.02);
    transition: all 0.6s;
  }
}

.services-homepage-box::before {
  position: absolute;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(30, 30, 30, 0.5) 100%
  );
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.services-homepage-details {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  z-index: 9;
  width: 100%;
}

.services-homepage-details a {
  color: #fff;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
}

.services-homepage-details a img {
  margin-left: 10px;
  height: 10px;
}

.services-homepage .btn-send {
  margin-top: 50px;
}

.contact {
  padding: 80px 0;
}
.contact .columns-contact p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.contact .columns-contact p br {
  display: none;
}
.wpcf7-not-valid-tip {
  font-size: 14px;
}
.wpcf7 form .wpcf7-response-output {
  font-size: 14px;
  text-align: center;
}
/* gallery homepage */
.gallery {
  padding: 30px 0 50px 0;
}
.gallery .btn-send {
  margin-top: 50px;
}
.gallery-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  gap: 15px;
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.gallery-columns div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.rows-2 {
  grid-row: span 2;
}
.cols-2 {
  grid-column: span 2;
}

.gallery-columns div {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s;
}
.gallery-columns div:hover img {
  transform: scale(1.1);
  transition: all 0.4s;
}

.hamburger {
  display: none;
  height: 40px;
  width: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 999;
}
.line {
  height: 2px;
  width: 20px;
  background-color: var(--primary-color);
  margin: 2px;
  transition: all 0.3s ease;
}

.top-page-banner {
  margin-top: 100px;
}
.top-page-div {
  margin-bottom: 0;
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 17px;
}
.top-page-div::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  border-radius: 20px;
  z-index: 99;
  bottom: 0;
}
.top-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-page-div h3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 99;
  width: 100%;
  text-align: center;
}

.categories-products {
  text-align: center;
  padding: 12px 0;
  margin-bottom: 20px;
  position: relative;
}
.categories-products::before {
  position: absolute;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(22, 83, 128, 0.17) 0%,
    #165380 50%,
    rgba(22, 83, 128, 0.17) 100%
  );
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
}
.categories-products a {
  margin: 0 25px;
  position: relative;
}
.active-cat::before {
  position: absolute;
  content: "";
  height: 4px;
  width: 100%;
  background-color: var(--primary-color);
  bottom: -14px;
  color: var(--primary-color);
}
.active-cat {
  position: absolute;
  color: var(--primary-color);
}
.service-page {
  padding-top: 80px;
}
.location-contact {
  margin-top: 30px;
  padding: 30px 0;
  position: relative;
}
.location-contact::before {
  position: absolute;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(22, 83, 128, 0.17) 0%,
    #165380 50%,
    rgba(22, 83, 128, 0.17) 100%
  );
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
}
.location-contact::after {
  position: absolute;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(22, 83, 128, 0.17) 0%,
    #165380 50%,
    rgba(22, 83, 128, 0.17) 100%
  );
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
}
.location-contact .location-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.map {
  width: 100%;
}
.top-page-image {
  width: 100%;
  height: 100%;
}
.contact .primary-btn {
  margin-top: 10px;
  cursor: pointer;
}
.wpcf7-spinner {
  display: none !important;
}
.about-homepage-details p {
  margin-bottom: 10px;
}

.singular-section {
  padding: 80px 0;
  margin-top: 50px;
}

.product-detail h5 {
  padding: 10px 0;
  margin: 10px auto;
  color: #000;
  font-size: 20px;
  position: relative;
}

.product-detail h5::before {
  position: absolute;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(22, 83, 128, 0.17) 0%,
    #165380 50%,
    rgba(22, 83, 128, 0.17) 100%
  );
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
}
.product-detail h5::after {
  position: absolute;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(22, 83, 128, 0.17) 0%,
    #165380 50%,
    rgba(22, 83, 128, 0.17) 100%
  );
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
}
.product-detail h6 {
  color: var(--primary-color);
  font-size: 25px;
}
.product-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 35px 0;
}
.product-info-box {
  display: flex;
  align-items: center;
}
.product-info-icon {
  display: grid;
}
.product-info-icon span {
  color: var(--primary-color);
	font-size: 14px;
}
.product-info-box p {
      padding-left: 15px;
}
.modula-item:hover img {
  transform: scale(1.02);
}
.language a {
  color: var(--primary-color);
}
.active-language {
  font-weight: bold;
}
.page-template-about .btn-send {
  display: none;
}

.show-info-div {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  box-shadow: 4px 2px 9.2px -1px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  position: absolute;
  padding: 20px;
  background-color: #fff;
  z-index: 99;
  top: 85px;
	    width: 95%;
    left: 50%;
    transform: translate(-50%, 0);
}
.visible-info {
  opacity: 1;
  visibility: visible;
}
.show-info-hover {
  position: absolute;
  right: 40px;
  padding: 10px;
  z-index: 99;
  top: 40px;
  cursor: pointer;
}
.show-info-div h6 {
  margin-bottom: 20px;
}
.show-info-div p {
  display: flex;
  margin-bottom: 20px;
}
.show-info-div p img {
  padding-right: 10px;
}
.product-info-box p span {
    display: block;
    color: var(--primary-color);
}
@media only screen and (max-width: 1120px) {
  .menu-header-menu-container ul li a {
    font-size: 14px;
  }
  .menu-header-menu-container ul li {
    margin: 0 11px;
  }
}
@media only screen and (max-width: 991px) {
	

  .second-btn {
    display: none !important;
  }
  .second-title {
    display: none;
  }
  .navbar li {
    margin: 5px 11px !important;
  }
  .navbar li a {
    font-size: 18px !important;
  }
  .first-section-div {
    margin-top: 80px;
  }
  .about-homepage-info img {
    max-height: 100px;
  }
  .about-page .columns-3 {
    grid-template-columns: 1fr;
  }
  .contact .columns-contact p {
    grid-template-columns: 1fr;
  }
  .contact {
    padding: 40px 0;
  }
  .top-page-banner {
    margin-top: 80px;
  }
  .top-page-div {
    height: 200px;
  }
  .title {
    font-size: 28px;
    line-height: 1.4;
  }
  .menu-open .overlay {
    position: fixed;
    top: 68px;
    left: 0;
    height: 100dvh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .hamburger {
    display: flex;
  }

  .menu-header-menu-container {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    width: 250px;
    z-index: 99;
    transform: translateX(250px);
    transition: all 0.4s;
  }
  .menu-header-menu-en-container {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    width: 250px;
    z-index: 99;
    transform: translateX(250px);
    transition: all 0.4s;
  }
  .navbar {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    width: 100%;
    align-items: baseline;
  }
  .menu-open .menu-header-menu-container {
    transform: translateX(0);
    transition: all 0.4s;
    box-shadow: 0px 4px 4px #52525229;
  }
  .menu-open .menu-header-menu-en-container {
    transform: translateX(0);
    transition: all 0.4s;
    box-shadow: 0px 4px 4px #52525229;
  }
  .about-section-homepage .columns-2 {
    grid-template-columns: 1fr;
  }
  p {
    font-size: 15px;
  }
  .about-section-homepage .columns-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .about-homepage-skills {
    margin-top: 0;
  }
  .primary-btn {
    padding: 10px 20px;
  }
  .products-homepage .columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo img {
    height: 50px;
    width: auto;
  }
  nav {
    justify-content: space-between;
  }
  .swiper-container {
    position: relative;
  }
  .about-section-homepage {
    padding: 60px 0;
  }
  .products-homepage {
    padding: 60px 0;
  }
  .language {
    right: 185px;
    font-size: 15px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }
  .menu-open .language {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s;
    transition-delay: 0.2s;
  }
}
@media only screen and (max-width: 767px) {
  .location-contact .location-info {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .services-homepage .columns-3 {
    grid-template-columns: 1fr;
  }
  .services-homepage-box {
    margin-top: 0;
    max-height: 260px;
  }
  .services-homepage .title {
    margin-bottom: 15px;
  }
  .location-columns {
    grid-template-columns: 1fr;
  }
  .footer-div {
    grid-template-columns: 1fr;
  }
  .footer-logo {
    width: 100%;
  }
  .footer-contact {
    margin: 15px 0;
  }
  .contact .columns-2 {
    grid-template-columns: 1fr;
  }
  .gallery-columns {
    display: block;
  }
  .gallery-columns img {
    margin-top: 10px;
  }
  .gallery .btn-send {
    margin-top: 20px;
  }
  .products-homepage .btn-send {
    margin-top: 20px;
  }
  .services-homepage .btn-send {
    margin-top: 20px;
  }
  .about-section-homepage .btn-send {
    margin-top: 20px;
  }
  .first-sectin-box {
    height: 500px;
  }
  .first-sectin-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .swiper-slide::before {
    bottom: 0;
  }
  .swiper-pagination-bullet {
    width: 30px;
  }
  .products-homepage .columns-2 {
    grid-template-columns: 1fr;
  }
  .categories-products {
	      display: flex;
    overflow-x: scroll;
    text-wrap: nowrap;
  }
  .categories-products a {
    margin: 0 15px;
  }
  .active-cat::before {
    bottom: -12px;
  }
  .about-homepage-skills {
    min-height: 270px;
  }
}

/* Modal Styles */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.modal-content {
  position: relative;
  margin: auto;
  padding-bottom: 25px;
  width: 80%;
  background-color: #fff;
  border-radius: 10px;
  align-items: center;
}
.modal-content img {
  width: 100%;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  background-color: var(--primary-color);
  color: #fff;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding-top: 2px;
}

#modalTitle {
  font-size: 25px;
  padding: 15px 15px 5px 15px;
  text-align: center;
}
#modalContent {
  padding: 0 20px 20px 20px;
  text-align: center;
  color: #595959;
}
.service-quote {
  padding: 10px 0;
  max-width: 600px;
  margin: 10px auto;
  text-align: center;
  color: #000;
  position: relative;
}

.service-quote::before {
  position: absolute;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(22, 83, 128, 0.17) 0%,
    #165380 50%,
    rgba(22, 83, 128, 0.17) 100%
  );
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
}
.service-quote::after {
  position: absolute;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(22, 83, 128, 0.17) 0%,
    #165380 50%,
    rgba(22, 83, 128, 0.17) 100%
  );
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
}

#modalImage {
  max-height: 400px;
  overflow: hidden;
}

#modalImage img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.product-detail {
  box-shadow: 4px 2px 9.2px -1px rgba(0, 0, 0, 0.25);
  padding: 25px;
  border-radius: 0px 10px 10px 0px;
  position: relative;
}
@media only screen and (max-width: 991px) {
	.show-info-div {
    top: 56px;
    width: 100%;
}
	.show-info-hover {
    right: -10px;
    top: 10px;
}
	.product-detail h5 {
		text-align:center;
		font-size:18px
	}
		.product-detail {
    box-shadow: unset;
    padding: 10px 0;
    border-radius: 0px ;
}
  .modal-content {
    width: 95%;
  }
  .modal-content {
    margin: 3% auto;
  }
  .columns-skills {
    margin-top: 40px;
  }
  .singular-section .columns-2 {
    grid-template-columns: 1fr;
  }
  .singular-section {
    padding: 0;
    margin-top: 80px;
  }
}

.mySwiper2 {
  width: calc(100% - 130px);
  overflow: hidden;
}

.singular-slider {
  position: absolute;
  left: 0;
  top: 0;
}
.singular-slider .swiper-wrapper {
  flex-direction: column;
}

.mySwiper .swiper-slide {
  width: 120px !important;
  height: 110px !important;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery .swiper-slide img {
	object-fit:contain
}
.product-gallery {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items:baseline
}
@media only screen and (max-width: 767px) {
	.mySwiper {
		margin-top:5px
	}
	.mySwiper .swiper-slide img {
		object-fit:cover
	}
  .singular-slider {
    position: relative;
  }
  .product-gallery {
    display: block;
  }
  .mySwiper2 {
    width: 100%;
  }
  .singular-slider .swiper-wrapper {
    flex-direction: row;
  }
}
.modula-best-grid-gallery .fancybox__container.has-sidebar .fancybox__caption {
	display:none !important
}