/*--------------------------------------------------------------------------
|  Header
--------------------------------------------------------------------------*/
.bg-main {
    background: var(--color-highlight);
}

.entire-action-header {
  position: relative;
}

.entire-action-header .form-dropdown {
  position: absolute;
  padding: 10px;
  background-color: #ffffff;
  width: 300px;
  top: 100%;
  left: auto;
  right: 0;
  z-index: 1000;
  margin-bottom: 0;
  -webkit-animation: nav_menu_anim_close 0.3s both;
  -o-animation: nav_menu_anim_close 0.3s both;
  animation: nav_menu_anim_close 0.3s both;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  filter: opacity(0);
  visibility: hidden;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
}

.entire-action-header:hover .form-dropdown {
  -webkit-animation: nav_menu_anim_open 0.3s both;
  -o-animation: nav_menu_anim_open 0.3s both;
  animation: nav_menu_anim_open 0.3s both;
  opacity: 1;
  filter: opacity(1);
  visibility: visible;
  pointer-events: unset;
}

.search-section .btn-submit {
  padding: 0 0.75rem !important;
  font-size: 13px;
}

/*--------------------------------------------------------------------------
|  Main
--------------------------------------------------------------------------*/
.bg-about {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0;
}

.bottom-me {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}

.prd-cate-item {
    background: rgb(0 0 0 / 71%);
    bottom: 0;
}

.prd-cate-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.inner-content {
    min-height: 67px;
}

.bg-module {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 0;
}

.article-item.item-home .inner-content {
    background: rgb(9 60 76 / 71%);
    bottom: 0;
}

.swiper-client--title {
    font-size: 1.9rem;
    font-weight: bold;
}

.swiper-client--name {
    font-size: 1.8rem;
    font-weight: bold;
}


/*--------------------------------------------------------------------------
|  Footer
--------------------------------------------------------------------------*/
footer {
    background: var(--color-main);
    color: white;
}

.title-footer {
    font-size: 1.9rem;
    font-weight: bold;
}

.footer-menu-section ul {
    margin-bottom: 0;
}

.footer-menu-section ul li {
    margin-bottom: 12px;
}

.footer-menu-section ul li a {
    color: var(--white);
    font-size: 15px;
}

.footer-menu-section ul li:last-child {
    margin-bottom: 0;
}

.checkout-payment .btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/*--------------------------------------------------------------------------
|  Responsive
--------------------------------------------------------------------------*/
@media (min-width:1000px) {
    .menu-section .active, .menu-section > ul > li:hover > a, .menu-section > ul > li > a:hover {
        color: var(--color-main) !important;
        background: var(--color-highlight) !important;
        border-radius: 5px;
    }
}

@media (max-width: 500px) {
     .row-mobile > .container > .row > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.image-bct img {
    transform: scale(1);
    transition: transform .25s ease;
}

.image-bct:hover img {
    transform: scale(1.05);
}