@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Raleway+Dots&display=swap');

header {
    /* background-color: #F7F7F7; */
    background-color: #134185;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    height: 46px;
    width: 46px;
    object-fit: contain;
    padding: 5px
}

.header__menu ul {
    display: flex;
    align-items: center;
    margin-bottom: 0
}

.header__menu ul li {
    list-style: none;
}

.header__menu ul li a {
    /* border-right: 1px solid #134185; */
    text-decoration: none;
    font-size: 18px;
    color: white;
    padding: 20px;
    display: block;
}

.header__menu ul li a.active {
    background-color: #134185;
}

.header__menu ul li:first-child {
    /* border-left: 1px solid #134185; */
}

.header__menu ul li a:hover {
    color: #040809
}

@-webkit-keyframes stickySlideUp {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes stickySlideUp {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes stickySlideDown {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes stickySlideDown {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.header__downToggle {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    border: none !important;
    -webkit-animation: stickySlideDown 2s cubic-bezier(0.23, 1, 0.32, 1) both;
    -moz-animation: stickySlideDown 2s cubic-bezier(0.23, 1, 0.32, 1) both;
    animation: stickySlideDown 2s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@media screen and (min-width: 1024px) {
    .header__downToggle {
        /* background-color: #fff; */
        -webkit-box-shadow: 4px 4px 10px 0 rgba(42, 67, 113, 0.15);
        -moz-box-shadow: 4px 4px 10px 0 rgba(42, 67, 113, 0.15);
        box-shadow: 4px 4px 10px 0 rgba(42, 67, 113, 0.15);
        /* -webkit-backdrop-filter: blur(20px) saturate(180%); */
        backdrop-filter: blur(20px) saturate(180%);
    }
}

/* Home page Slider */
.banner__slider {
    height: 620px;
}

.banner__slider .swiper {
    height: 100%;
}

.banner__slider img {
    height: 100%;
    width: 100%;
}

/* Home category */
.category__container {
    margin: 4rem 0;
    color: #134185;
}

.category__header h1 {
    font-size: 52px;
    text-align: center;
    font-family: 'Great Vibes', cursive;
}

.category__header p {
    font-size: 24px;
    /* font-family: 'Great Vibes', cursive; */
    text-align: center;
}

.category-slider img {
    height: 220px;
    object-fit: contain;
}

.category__item {
    text-align: center;
}

.category__title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: #134185;
}

/* Category Product Homepage */
.category__content {
    display: flex;
    grid-gap: 0;
    align-items: center;
    /* background: linear-gradient(to right, #134185, #2E1F2A, #A93F6B); */
    background: linear-gradient(to right, #134185, #733B99, #A93F6B)
}

.category__banner {
    padding: 3rem 0;
    width: 50%;
    text-align: center;
}

.category__banner-title h4 {
    font-size: 32px;
    color: white;
}

.category__banner-title p {
    color: white;
}

.category__banner-body {
    margin-top: 4rem;
}

.category__banner-body ul {
    list-style: none;
    display: flex;
    grid-gap: 30px;
    justify-content: center;
}

.category__banner-body ul li a {
    border: 2px solid #FFFFFF;
    padding: 10px 20px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    display: block;
    transition: background-color 0.5s ease-in-out;
}

.category__banner-body ul li a:hover {
    background-color: #FFF;
    color: #134185;
}

.category__product {
    width: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.category__product-content {
    padding-bottom: 4rem;
}

.category__product-image img {
    width: 100%;
    height: 320px;
    object-fit: contain;
}

.category__product-btn {
    text-align: center;
    display: block;
}

.category__product-btn a {
    background-color: #134185;
    color: #FFFFFF;
    padding: 10px 30px;
    display: block;
    width: fit-content;
    text-decoration: none;
    border-radius: 25px;
    margin: auto;
    transition: background-color 0.3s ease-in-out;
}

.category__product-btn a:hover {
    background-color: #040809;
}

/* Blog Section Homepage */
.blog__section {
    /* background-color: #4B515C; */
    background: linear-gradient(to right, #134185, #2E1F2A, #A93F6B);
    padding: 4rem 0;
}

.blog__section-title h2 {
    color: white;
}

.blog__category {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.blog__category ul {
    list-style: none;
    display: flex;
    grid-gap: 30px;
    justify-content: center;
}

.blog__category ul li a {
    border: 2px solid #FFFFFF;
    padding: 10px 20px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    display: block;
    transition: background-color 0.5s ease-in-out;
    text-transform: uppercase;
}

.blog__category ul li a:hover {
    background-color: #FFF;
    color: #134185;
}

.blog__slider-title {
    text-align: start;
}

.blog__slider-title h2 {
    color: white;
    font-size: 22px;
    padding: 20px;
    text-align: center;
}

.blog__section p {
    color: white;
    font-size: 14px;
}

.blog__slider-btn a {
    background-color: #FFFFFF;
    color: #4B515C;
    padding: 10px 30px;
    display: block;
    width: fit-content;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease-in-out;
}

.blog__slider-btn a:hover {
    background-color: #040809;
    color: white;
}

/* Brand Home Page */
.brand__section {
    padding: 6rem 0;
}

.brand__section-title h2 {
    color: #134185;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    text-transform: uppercase;
}

.brand__slider {
    background: white;
    padding: 3rem;
}

.brand__slider-item img {
    height: 160px;
    object-fit: contain;
}

/* Footer */
footer {
    /* border-top: 4px solid #AC5D18; */
    /* border-top: 4px solid #134185; */
    /* background-color: #191919;#040809 */
    background-color: #040809;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

footer ul li {
    list-style: none;
}

footer h3 {
    color: white;
    font-size: 24px;
    min-width: max-content;
    font-weight: 300;
    margin-bottom: 16px;
}

footer ul {
    padding: 0;
    margin: 0;
}

footer ul li a {
    text-decoration: none;
    color: white;
    font-weight: 300;
}

footer p {
    color: white;
    font-weight: 300
}

footer i {
    color: white;
    padding-right: 10px;
    font-size: 16px
}

.footer__brand--logo {
    text-align: right;
}

.footer__brand--logo img {
    height: 120px;
}

.footer__copyright {
    background-color: #134185
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__content span {
    color: #F2F2F2;
}

.footer__copyright a {
    color: #F2F2F2;
    font-weight: 400;
    text-decoration: none;
}

.footer__copyright strong {
    font-weight: 400;
    color: #F2F2F2;
}