@charset "UTF-8";

/* ===================================
    home-clients
===================================== */
section.home-clients {
    margin-bottom: 120px;
}
    @media (max-width: 575px) {
        section.home-clients {
            margin-bottom: 75px;
        }
    }
    @media (min-width: 576px) {
        section.home-clients {
            margin-bottom: 100px;
        }
    }
    @media (min-width: 1200px) {
        section.home-clients {
            margin-bottom: 120px;
        }
    }
section.home-clients .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 3.125rem 0 6rem 0;
    text-align: center;
    gap: 20px;
}
    @media (max-width: 575px) {
        section.home-clients .content {
            gap: 10px;
        }
    }
    @media (min-width: 576px) {
        section.home-clients .content {
            gap: 12px;
        }
    }
    @media (min-width: 768px) {
        section.home-clients .content {
            gap: 15px;
        }
    }
    @media (min-width: 1200px) {
        section.home-clients .content {
            gap: 20px;
        }
    }
section.home-clients .content .title h1 {
    font-family: 'Gilmer-Bold';
}
[data-bs-theme="dark"] section.home-clients .content .title h1 {
    color: var(--glam-light);
}
[data-bs-theme="light"] section.home-clients .content .title h1 {
    color: var(--glam-black);
}

section.home-news .content .description p {
    font-size: var(--fs-16);
}
[data-bs-theme="dark"] section.home-clients .content .description p {
    color: var(--glam-light);
}
[data-bs-theme="light"] section.home-clients .content .description p {
    color: var(--glam-black);
}

section.home-clients .clients-column {
    margin-bottom: 6.25rem;
}
    @media (max-width: 575px) {
        section.home-clients .clients-column {
            margin-bottom: 3.75rem;
        }
    }
    @media (min-width: 576px) {
        section.home-clients .clients-column {
            margin-bottom: 3.75rem;
        }
    }
    @media (min-width: 768px) {
        section.home-clients .clients-column {
            margin-bottom: 5rem;
        }
    }
    @media (min-width: 992px) {
        section.home-clients .clients-column {
            margin-bottom: 6.25rem;
        }
    }
section.home-clients .clients-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    margin: 0 auto;
}
section.home-clients .clients-item .item-show {
    min-width: 210px;
    max-width: 210px;
}
@media (max-width: 575px) {
    section.home-clients .clients-item .item-show {
        min-width: 150px;
        max-width: 150px;
    }
}
@media (min-width: 576px) {
    section.home-clients .clients-item .item-show {
        min-width: 210px;
        max-width: 210px;
    }
}
section.home-clients .clients-item .item-show img {
    width: 100%;
}
section.home-clients .clients-item .item-show img.theme-image {
    display: none;
}
html[data-bs-theme="light"] section.home-clients .clients-item .item-show img.light-theme-image {
    display: block;
}
html[data-bs-theme="dark"] section.home-clients .clients-item .item-show img.dark-theme-image {
    display: block;
}


section.home-clients .direction-button {
    padding: 3rem 0 3rem 0;
    text-align: center;
}
section.home-clients .direction-button .link a {
    font-family: 'Gilmer-Medium';
    position: relative;
    color: #000;
    font-size: 20px;
    line-height: 20px;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--glam-gray-3);
}
[data-bs-theme="dark"] section.home-clients .direction-button .link a {
    color: #fff;
    border-bottom: 1px solid var(--glam-gray-5);
}
[data-bs-theme="light"] section.home-clients .direction-button .link a {
    color: #000;
    border-bottom: 1px solid var(--glam-gray-3);
}
section.home-clients .direction-button .link a i {
    font-size: 20px;
    margin-left: 10px;
}
section.home-clients .direction-button .link a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    content: '';
    -webkit-transition: 0.5s width ease;
    transition: 0.5s width ease;
}
[data-bs-theme="dark"] section.home-clients .direction-button .link a::after {
    background-color: #fff;
}
[data-bs-theme="light"] section.home-clients .direction-button .link a::after {
    background-color: #000;
}
section.home-clients .direction-button .link a:hover::after {
    width: 100%;
}
