ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}
img{
  width: 100%;
  height: auto;
}
.section-bg {
  background-color: var(--section-bg-color);
}
.section-overlay {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}
.bg-copyright{
  background-color:#1E130C
}
.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.form-control{
  border-radius: 50px;
}
.btn{
  min-width: 150px;
}
.custom-btn {
    background: var(--primary-color);
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    color: #fff;
    line-height: normal;
    transition: all 0.3s;
    padding: 8px 15px;
}

.custom-btn:hover {
  background:  var(--secondary-color);
  color: var(--white-color);
}

.btn-white {
  background: #fff;
  border: 2px solid #fff;
  border-radius: var(--border-radius-large);
  color: var(--primary-color);
}

.btn-white:hover {
  background: var(--secondary-color);
  border-color: transparent;
   color: #fff;
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.site-header {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  padding-top: 150px;
  padding-bottom: 80px;
}

.site-header .container {
  height: 100%;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--white-color);
}

.site-header .custom-icon {
  color: var(--white-color);
  font-size: var(--h4-font-size);
}

.site-header .custom-icon:hover {
  color: var(--secondary-color);
}

.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.navbar {
  padding: 0;
  background: transparent;
  z-index: 9;
}
.navbar-white{
  background: #fff;
  border-bottom: 1px solid var(--primary-color);
}
.navbar-tran{
  background: transparent;
  border-bottom: 0;
}
.sticky-wrapper.is-sticky .navbar {
  background-color:#fff;
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}
.navbar-brand {
  display: block;
  padding: 10px 15px;
}
.navbar-white .navbar-brand{
  padding: 0
}
.transition{
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: all 0.3s ease;
}
.navbar-white .logo,.logo{
  width: 100px;
}
.navbar-brand::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  height: 100%;
  z-index: -1;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}
.navbar-white .navbar-brand::before{
  display: none;
}
.sticky-wrapper.is-sticky .navbar .navbar-brand::before{
  display: none;
}
.sticky-wrapper.is-sticky .navbar .logo{
  width: 90px;
}
.sticky-wrapper.is-sticky .navbar .navbar-brand{
  padding: 0;
}
.icon-social,.nav-text{
  color: #fff;
}
.icon-social{
  font-size: 22px;
}
.sticky-wrapper.is-sticky .icon-social,.sticky-wrapper.is-sticky .nav-text{
  color: var(--primary-color);
}
.nav-text:hover,.nav-text.active{
  font-size: 17px;
  font-weight: 500;
}
.navbar-white .icon-social,.navbar-white .nav-text{
  color: var(--primary-color);
}
.navbar-brand span {
  font-family: var(--title-font-family);
}
.navbar-nav .nav-link{
  display: inline-block;
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.sticky-wrapper.is-sticky .navbar .nav-link{
  color: var(--primary-color);
}
.sticky-wrapper.is-sticky .navbar .nav-link.active{
  color: #fff;
}
.navbar-expand-lg .navbar-nav .nav-link{
  border-radius: var(--border-radius-large);
  margin: 0 5px;
  padding: 8px 15px;
}
.navbar-white .nav-link{
  color: var(--primary-color);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #fff !important;
  background-color: var(--primary-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1500px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1420px;
  }
}
.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}


.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}
.sticky-wrapper.is-sticky .navbar-toggler .navbar-toggler-icon ,.sticky-wrapper.is-sticky .navbar-toggler .navbar-toggler-icon:before,.sticky-wrapper.is-sticky .navbar-toggler .navbar-toggler-icon:after{
   background: var(--primary-color);
}
.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent !important;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.section-banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.section-banner::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    z-index: 2;
    background: #fff;
    -webkit-clip-path: ellipse(150vw 100vw at 50% 100vw);
    clip-path: ellipse(150vw 100vw at 50% 100vw);
}
.section-banner .swiper-slide{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.banner-slide img {
    object-fit: cover;
    height: 100vh;
}
.section-banner-home h1{
  font-size: 20px;
}
.section-banner-home h2{
  font-size: 58px;
  line-height: 1.1;
}
.section-banner-home h6{
  font-weight: 400;
  font-size: 16px;
}
.section-banner-full {
  height: 100vh;
}
.h-line {
  width: 28%;
  height: 7px;
  background-color: var(--primary-color);
  margin-bottom: .6rem;
  border-radius: 15px;
}
.p-line{
  height: 2px;
}
svg{
  width: 25px;
  height: 25px;
}
.svg-youtube {
    width: 30px;
    height: 35px;
}
.svg-bg{
  fill: #fff;
}
.navbar-white .svg-bg{
  fill: var(--primary-color)
}
.sticky-wrapper.is-sticky .svg-bg{
  fill: var(--primary-color);
}
.svg-bar{
  fill: #000;
}
.navbar-white .svg-bar{
  fill: #fff;
}
.list-style-none{
  list-style: none;
}
.line-clamp{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.clamp-1{
    -webkit-line-clamp: 1;
}
.clamp-2{
    -webkit-line-clamp: 2;
}
.custom-block {
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 97%;
  margin: auto;
  height: 100%;
}

.custom-block:hover {
  transform: translateY(-3px);
}

.custom-block > a {
  width: 100%;
}

.custom-block .img {
  border-radius: 50px;
  max-height: 230px;
  object-fit: cover;
}

.custom-block-overlay-text {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

.keep-right{
  width: 100%;
  margin-left: auto !important;
  padding-left: 15px;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
}
#section_1 .swiper-pagination{
    bottom: 15px;
}
.swiper-pagination-bullet { width: 18px; height: 18px; background: transparent; border: 1px solid var(--primary-color); opacity: 1; }
.swiper-pagination-bullet-active { transition: width .5s; background: var(--primary-color); border: 1px solid transparent; }
#section_1 .swiper-pagination-bullet { width: 18px; height: 18px; background: transparent; border: 1px solid #fff; opacity: 1; }
#section_1 .swiper-pagination-bullet-active { transition: width .5s; background: #fff; border: 1px solid transparent; }
.social-share {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 20px 35px;
}

.social-share .bi-bookmark {
  color: var(--white-color);
  font-size: var(--h5-font-size);
}

.social-share .bi-bookmark:hover {
  color: var(--secondary-color);
}

.mt-section{
  margin-top: 5rem;
}
.page-list img {
  border-radius: 96px;
  width: 80%;
  margin: auto;
  display: block;
}
.page-list h3{
  color: var(--primary-color);
}
.google-map {
  border-radius: var(--border-radius-medium);
}
.background-join{
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 96px;
  min-height: 45vh;
  z-index: 2;
  margin-bottom: 5rem;
}
.background-join::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 96px;
    background: rgb(0 0 0 / 30%);
}
.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}

.subscribe-form {
  width: 95%;
}
.font-primary {
  color: var(--primary-color);
}
.ul-2 {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
.footer-icon{
  width: 30px;
}
.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  display: block;
  list-style: none;
  line-height: normal;
}

.site-footer-link {
  color: #000;
  font-size: var(--copyright-font-size);
  line-height: normal;
}
.site-footer {
  position: relative;
  background-color: #E8E8E8;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  padding-top: 2rem;
}
.copyright-text {
  font-size: var(--copyright-font-size);
}

.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
.product figure{
  width: 55%;
  height: fit-content;
  display: block;
  margin: auto;
  overflow: hidden;
  margin-bottom: 1rem;
}
.item-load figure{
  display: block;
  overflow: hidden;
     -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  border-radius: 30px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.product figure img,.item-load figure img{
  -webkit-transform: scale(1);
	transform: scale(1);
   -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.product:hover figure img,.item-load:hover figure img{
  -webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.text-download{
  color: #292932;
}
.item-load:hover .text-download{
  color: var(--primary-color);
}
.product::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 85%;
  z-index: -1;
  background: #DFE1E3;
   -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
  width: 85%;
  margin: auto;
}
.p-name {
  padding: 30px 5px;
  background-color: #fff;
  box-shadow: 0px 2px 6px #00000029;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px;
  width: 85%;
  font-size: 22px;
  font-weight: 600;
}
.bg-detail{
    -moz-border-radius: 60px;
  -webkit-border-radius: 60px;
  -khtml-border-radius: 60px;
  border-radius: 60px;
}
.product:hover .p-name {
  color: var(--primary-color);
}
.svg-primary{
  fill: var(--primary-color);
}
.rounded-pill{
  width: 300px;
  box-shadow: 0px 5px 6px #00000029;
}
.rounded-pill svg{
  width: 20px;
  height: 20px;
}
ol, ul {
    padding-left: 1rem;
}
.product-detail{
  width: 80%;
}
.product-dimension{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  width: fit-content;
  color: #000;
  background-color: transparent;
}
.pro-mb{
  margin-bottom: 5rem;
}
.bg-download{
    -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  border-radius: 30px;
  padding: 2rem 3rem;
  background-color: var(--primary-color);
}
.needs-validation{
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  border-radius: 30px;
}
.gap-ul {
    gap: 10px;
}
.page-link {
    border: none!important;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    color: #000;
}
.page-item:first-child .page-link {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}
.page-item:last-child .page-link {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}
.active>.page-link, .page-link.active {
    border-color: unset;
}
.active>.page-link, .center-child:hover, .page-link.active,.page-link:hover {
    color: #fff;
    background-color: var(--primary-color);
    z-index: 2;
    border-color: 0;
}
.page-link:hover svg{
  fill: #fff;
}
.img-download{
 -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  border-radius: 30px;
}
.icon-download{
  width: 30px;
  height: 30px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
}
.icon-download i{
  color: var(--primary-color);
}
.contact iframe{
 width: 100%;
 height: 50vh;
}
.loading-spinner{width:30px;height:30px;border:2px solid indigo;border-radius:50%;border-top-color:#0001;display:inline-block;animation:.7s linear infinite loadingspinner}@keyframes loadingspinner{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}
#contact .form-control{
   -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  -khtml-border-radius: 15px;
  border-radius: 15px;
}
.top-page{
  margin-top: 85px;
}
address{
  text-decoration: none;
}
.address-footer .fac{
  padding-right: .7rem;
  width: 50%;
}
.address-footer .office{
  width: 50%;
  padding-left: .7rem;
}
.col1{flex: 0 0 auto;width: 53%;}
.col2{flex: 0 0 auto;width: 16.66666667%;}
.col3{flex: 0 0 auto;width: 19.66666667%;}
.col4{flex: 0 0 auto;width: 10.66666667%;}
.mb-2rem{
  margin-bottom: 2rem;
}
.mb-3rem{
  margin-bottom: 3rem;
}
.about-detail{
  width: 85%;
}
.news-detail h1,.news-detail h2{
  color: var(--primary-color) !important;
  font-size: 30px;
}
.news-detail img{
  max-width: max-content;
  margin: 2rem auto;
  border-radius: var(--border-radius-large);
}
.news-detail p{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.img-new p{
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.border-bottom-primary{
  border-bottom:  2px solid var(--primary-color);
}
.dropdown-menu {
  min-width: 280px;
  text-align: center;
  border-radius: 0;
  padding: 5px 15px;
}
.product-select{
    width: 200px;
}
.s-hidden {
    visibility: hidden;
}
.select {
    cursor: pointer;
    position: relative;
}
.styledSelect {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -khtml-border-radius: 30px;
    border-radius: 30px;
    color: #fff;
    background-color: var(--primary-color);
    padding: 0 26px 0 10px;
    box-shadow: 0px 5px 6px #00000029;
    text-transform: uppercase;
}
.styledSelect:after {
    content: "";
    width: 0;
    height: 0;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
}
.options {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0 0;
    padding: 0 0;
    list-style: none;
    background-color: #fff;
    text-align: center;
}
.options li {
    padding: 8px 10px;
    list-style: none !important;
    border-bottom: 1px solid rgba(172, 172, 172, 0.4);
    color: #000;
    transition: .3s;
}
.options li:hover{
  color: var(--primary-color);
}
.options li:last-child {
    border-bottom: none;
}
.title-border::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  width: 75%;
  height: 2px;
  margin: 0 auto;
  background-color: #fff;
}
.swiper-pb{
  padding-bottom: 5rem;
}
.gallery-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    }
    .gallery-main .swiper-button-prev, .gallery-main .swiper-button-next {
    position: absolute;
    bottom: 0;
    right: 0;
    top: auto;
    left: auto;
    height: 75px;
    width: 40px;
    color: #e9e9e9;
    background: #1e1e1e;
    }
    .gallery-main .swiper-button-prev::after, .gallery-main .swiper-button-next::after {
    font-size: 12px;
    }
    .gallery-main .swiper-button-prev {
    right: 40px;
    border-right: 1px solid #e9e9e9;
    }
    .gallery-main img{
        width: 60%;
    }

    .gallery-main {
        position: relative;
        flex: 0 0 auto;
        width: 75%;
        height: 50vh;
        height: auto;
        margin: auto;
    }
    .gallery-thumbs {
        flex: 0 0 auto;
        overflow: hidden;
        width: 100px;
        height: 50vh;
    }
    .gallery-thumbs .swiper-slide {
        height: auto !important;
        min-height: 10vh !important;
        margin-bottom: 10px;
    }
    .gallery-thumbs .swiper-slide {
    opacity: 0.7;
    }
    .gallery-thumbs .swiper-slide img {
    transition: 0.3s;
    }
    .gallery-thumbs .swiper-slide-active {
    opacity: 0.7
    }
    .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    }

    .images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    }

    @-webkit-keyframes slide-in {
    from {
        opacity: 0;
        right: -50%;
    }
    }

    @keyframes slide-in {
    from {
        opacity: 0;
        right: -50%;
    }
    }

.img-scroll {
    overflow: scroll;
    overflow-X: hidden;
}
.img-scroll img {
    cursor: pointer;
    margin-bottom: 10px;
}
.img-scroll img:last-child {
    margin-bottom: 0;
}
.img-scroll::-webkit-scrollbar {
    width: 0;
}
.swiper-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-popup-container {
    position: relative;
    width: 80%;
    max-width: 1200px;
}
.close-swiper-popup {
    position: absolute;
    top: 0;
    right: 10px;
    color: white;
    font-size: 35px;
    cursor: pointer;
    z-index: 10;
}
.gallerySwiper {
    width: 100%;
    height: 80vh;
}
.gallerySwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallerySwiper .image-container {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallerySwiper .image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.gallerySwiper .swiper-button-next::after,
.gallerySwiper .swiper-button-prev::after {
    content: "";
}
.gallerySwiper .swiper-button-prev,
.gallerySwiper .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 24px;
    padding: 8px;
}
@media only screen and (max-width: 1240px) {
  .col1{width: 70%;}
  .col2{width: 30%;}
  .col3{width: 37%;}
  .col4{width: 30%;}
}
@media screen and (max-width: 1024px) {
  .logo {
      width: 75px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 0;
    padding: 5px 8px;
  }
  .navbar-brand {
    padding: 5px 10px;
  }
  .input-box{
    flex-wrap: wrap;
  }
  .input-group{
    flex: 0 0 auto;
    width: 80%;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }
  .navbar {
    background: rgb(56 52 52 / 30%);
    box-shadow: 0px 2px 6px #00000029;
  }
  .navbar-white.navbar {
    background: rgb(255 255 255 / 1);
  }
  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .nav-item{
    text-align: center;
  }
  .navbar-expand-lg .navbar-nav {
    padding: 20px 0;
  }
  .navbar-white .navbar-toggler .navbar-toggler-icon {
    background: var(--primary-color);
  }
  .navbar-toggler .navbar-toggler-icon:before, .navbar-toggler .navbar-toggler-icon:after{
     background: var(--primary-color);
  }
  .product::before {
    width: 100%;
  }
  .swiper-pb{
    padding-bottom: 3rem;
  }
  .pro-mb{
    margin-bottom: 3rem;
  }
  .swiper-popup-container {
    width: 90%;;
  }
}
@media only screen and (max-width: 767px) {
  .col1,.col2,.col3,.col4{width: 100%;}
  .top-page-mb{
    margin-top: 81px;
  }
  .p-name {
    width: 100%;
  }
  .product-detail {
    width: 80%;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 2rem;
  }
  .address-footer .fac ,.address-footer .office{
    padding-right: 0;
      padding-left: 0;
  }
}
@media screen and (max-width: 575px) {
  .site-footer {
    padding-bottom: 2rem;
  }
  .page-list img {
  width: 90%;
  }
  .navbar-white .logo, .logo {
    width: 80px;
  }
  .address-footer .fac,.address-footer .office{
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
  address br,.col3{
    display: none;
  }
  .background-join,.background-join::after{
    border-radius: 0;
  }
  .site-footer {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .p-name {
    padding: 15px 5px;
    font-size: 19px;
  }
  .gallery-main {
    width: 70%;
  }
  .gallery-thumbs {
    width: 80px;
  }
  .gallery-container{
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 16px;
  }
  .logo {
    width: 80px;
  }
  .section-banner-home h2 {
    font-size: 32px;
  }
  .section-banner-full {
    height: 60vh;
  }
  .section-banner::before {
    height: 35px;
  }
  .mt-section {
    margin-top: 2rem;
  }
  .mt-section-0{
    margin-top: 0 !important;
  }
  .page-list img {
      -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -khtml-border-radius: 30px;
    border-radius: 30px;
    margin-bottom: 1rem;
  }
  .bg-detail{
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -khtml-border-radius: 30px;
    border-radius: 30px;
    height: 35vh;
    object-fit: cover;
  }
  .about-detail p{
    margin-bottom: 1.5rem;
  }
  .address-footer{
    flex-direction: column;
  }
  .site-footer {
    padding-bottom: 2rem;
  }
  .custom-block .img {
    max-height: fit-content;
  }
}
@media screen and (max-width: 425px) {
  .mb-full .col-6{
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .p-name {
    font-size: 14px;
}
  .dimension{
    font-size: 10px;
  }
}
