@import url("https://fonts.googleapis.com/css2?family=Prompt: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");

:root {
  --color-main: #1c75bc;
  --color-sub: #05c3de;
  --color-sub-2: #ade3ef;
}
* {
  font-family: "Prompt", sans-serif !important;
}
body {
  /* background: #05C3DE; */
  /* background: linear-gradient(0deg, #479FD5 0%, #05C3DE 100%); */
  color: #58595b;
}
.bg-light {
  background-color: #ebf6fb !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Prompt", sans-serif !important;
  font-weight: 400 !important;
}

.text-main {
  color: #1c75bc !important;
}
.text-sub {
  color: #05c3de !important;
}
.border-main {
  border: 1px solid #1c75bc !important;
}
.border-sub {
  border: 1px solid #05c3de !important;
}
.bg-sub {
  background-color: #f9f9f9 !important;
}

a,
a:hover,
a:active {
  text-decoration: none;
}
.logo {
  height: 30px;
  margin-right: 15px;
}
.myBanner {
  position: relative;
}
.myBanner .swiper-slide .banner-content {
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  font-size: 10px;
}
.banner-image {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.product-wrapper {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 60px 0;
}
/* .product-wrapper::before {
    content: '';
    background-color: var(--color-sub);
    display: block;
    height: 50%;
    width: 30%;
    border-radius: 0 50% 50% 0;
    position: absolute;
    top: 40%;
    left: 0%;
    transform: translate(0%, -50%);
    -ms-transform: translate(-0%,-50%);
}
.product-wrapper::after {
    content: '';
    background-color: var(--color-sub);
    display: block;
    height: 50%;
    width: 30%;
    border-radius: 50% 0 0 50%;
    position: absolute;
    top: 40%;
    right: 0%;
    transform: translate(0%, -50%);
    -ms-transform: translate(0%,-50%);
    z-index: -1;
} */
.product-image {
  padding: 100px 0;
  height: 500px;
  scale: 1;
  transition: 0.3s;
}
.swiper-slide.swiper-slide-active .product-image {
  scale: 1.5;
}
.product-content {
  opacity: 0;
  transition: 0.3s;
}
.product-content strong {
  font-size: 24px;
}
.swiper-slide.swiper-slide-active .product-content {
  opacity: 1;
}

footer {
  background-image: url("../web_images/Footer-01.jpg");
  background-repeat: no-repeat;
  background-position: right;
  font-size: 10px;
  background-size: cover;
}

@media (max-width: 450px) {
  .product-image {
    padding: 120px 0 70px 0;
    height: 350px;
  }
  .swiper-slide.swiper-slide-active .product-image {
    scale: 1.5;
    height: 400px;
    padding: 70px 0 80px 0;
  }
  .product-content strong {
    font-size: 15px;
  }
  .swiper-slide.swiper-slide-active .product-content {
    position: absolute;
    left: 50%;
    bottom: -0;
    transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    width: 350px;
  }
  .myProducts .swiper-slide {
    height: 500px !important;
  }
}
@media (min-width: 451px) {
  .myBanner .swiper-slide .banner-content {
    font-size: 20px;
  }
  .btn-banner-more {
    font-size: 24px;
  }
  .banner-image {
    height: auto;
  }

  footer {
    font-size: 13px;
  }
}
.article-title-image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}
.select2-container--default .select2-selection--single {
  border-radius: 0;
}
.select2-container .select2-selection--single {
  height: 45px;
  background-color: #00000000;
  border: 1px solid #e3e3e3;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 45px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  top: 80%;
}
.btn-product-type {
  background-color: #00000000;
}
.btn-product-type:hover {
  background-color: #343a40;
}
.img1-1 {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.popup-overlay.show {
  visibility: visible;
  opacity: 1;
}
.popup-box {
  position: relative;
  max-width: 600px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.popup-image {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}
.popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: white;
  border: none;
  font-size: 20px;
  padding: 0 8px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  height: 30px;
  width: 30px;
}
.navbar-collapse.collapse.show .nav-item {
  border-bottom: 1px solid var(--color-sub);
  padding-bottom: 4px;
  margin-bottom: 6px;
}
.product-box h4 {
  font-size: 20px !important;
}
@media (max-width: 450px) {
  .product-box h4 {
    font-size: 10px !important;
  }
  .btn-product-type {
    width: 250px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left;
    padding: 0.25rem 2.5rem !important;
    background-color: var(--color-sub-2);
    margin-bottom: 12px;
  }
  .btn-product-type:hover {
    background-color: white;
    color: black !important;
  }
  .btn-product-type:hover a {
    color: black !important;
  }
}
.bg-sub {
  background-color: var(--color-sub);
}

.banner-about-content {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  -ms-transform: translate(-0%, -50%);
  width: 100%;
}
