.single-product-custom {
    padding-bottom: 100px;
}

.single-product-custom > section {
    display: flex;
}

.single-product-custom > section > div {
    flex-basis: 50%;
    font-family: "Montserrat", sans-serif;
    color: var(--COLOR-616161);
}

.single-product-custom > section > div strong {
    color: var(--COLOR-232323);
}

.single-product-bottom-section {
    flex-direction: column;
}

.single-product-top-section {
    align-items: center;
}

.single-product-main-description > div {
    display: none;
}

.single-product-main-description > div:first-child {
    display: block;
}

.single-product-bottom-section nav ul {
    display: flex;
}

.single-product-bottom-section nav ul li:before {
    content: none;
}

.single.single-product h1 {
    font-size: var(--SIZE-40);
}

.single-product-short-description {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 15px;
}

.other-products {
    flex-direction: column;
}

.other-products > div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.other-products .single-archive-product-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.other-products .archive-product-img-wrap {
    width: 100%;
}

.other-products h4 {
    text-align: center;
}

.other-products .archive-product-img-wrap img {
    width: 100%;
}

/* owl-carousel */

.carousel-certificates.owl-carousel {
    margin-top: 30px;
}

.carousel-certificates .owl-dot span {
    background-color: #A3FDDD !important;
    opacity: .4;
    height: 22px !important;
    width: 22px !important;
    border: none !important;
}

.carousel-certificates .owl-dot span::after {
    display: none !important;
}

.carousel-certificates .owl-dot.active span {
    background-color: #EE6E92 !important;
    opacity: 1;
}

.carousel-certificates .owl-nav {
    display: none !important;
}

.carousel-certificates.owl-carousel .item {
    height: 335px;
    overflow: hidden;
    display: flex;
}

.carousel-certificates.owl-carousel .item .content {
    align-self: center;
}

.carousel-certificates.owl-carousel .item .img-area img {
    object-fit: contain;
    max-height: 293px;
    height: 100%;
    width: auto;
    margin: auto;
}

.carousel-certificates.owl-carousel p {
    text-transform: uppercase;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.owl-carousel .item .content .img-area img {
    animation: fadeIn 2s ease-in-out;
}

.owl-carousel .item .content .ccontent-text {
    animation: fadeIn 2s ease-in-out;
}

.wrapper {
    width: 100vw;
}

.carousel-main {
    width: 100%;
    height: 860px;
}

.carousel-main .owl-item .img-area {
    height: 860px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 5%;
}

.fadeOut {
    animation: fadeOut 1s ease-in-out;
}
.fadeIn {
    animation: fadeIn 1s ease-in-out;
}

.owl-nav {
    opacity: 1 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
}

.owl-prev, .owl-next {
    transform: rotate(90deg);
    height: 45px !important;
    width: 120px !important;
    border: none !important;
    background: #fff !important;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.owl-prev::before,
.owl-prev::after,
.owl-next::before,
.owl-next::after {
    display: none;
}

.owl-prev {
    left: -37px !important;
}
.owl-next {
    right: -37px !important;
}

@keyframes fadeOutText {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-content {
    color: #fff;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    display: flex;
    flex-direction: column;
}

.text-content h2 {
    margin: 0;
    font-size: 24px;
    margin-bottom: 10px;
}

.custom-button {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.fadeInText {
    animation: fadeInText 0.5s ease-in-out forwards;
}

.fadeOutText {
    animation: fadeOutText 0.5s ease-in-out forwards;
}

.title-slider {
    font-family: "Marck Script", Sans-serif;
    font-size: 80px;
    font-weight: 400;
    color: #926F28;
    font-size: 5em !important;
    text-align: left;
    line-height: 1em !important;
    margin-bottom: 0em !important;
}

.first-slide {
    font-size: 3.5em !important;
    margin-top: -1em !important;
}

.promo-slider {
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 2.5em !important;
}

.carousel-main a .custom-button {
    border-color:  #fff !important;
    color: #fff !important;
}

.first-logo {
    margin: 0% 0% 27% 7%;
}

.logo-class {
    width: 350px;
}

.logo-class {
    transform: translateX(-100%);
    opacity: 0;
}



@keyframes fadeInLogo {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0%); opacity: 1; }
}

@keyframes fadeOutLogo {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-100%); opacity: 0;}
}
.fadeInLogo {
    animation: fadeInLogo 1s ease-in-out forwards;
}

.fadeOutLogo {
    animation: fadeOutLogo 1s ease-in-out forwards;
}

.carousel-main .container {
    padding: 0 15px;
}
@media only screen and (min-width: 768px) {
    .carousel-main .container {
        padding: 0 30px;
    }
}
@media only screen and (min-width: 992px) {
    .carousel-main .container {
        padding: 0 125px;
    }
}
@media only screen and (min-width: 1526px) {
    .carousel-main .container {
        max-width: 1920px;
        padding: 0 175px;
    }
}



@media (max-width: 1200px) {
    .other-products > div {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    .title-slider {
        font-size: 3em !important;
    }
    .first-slide {
        font-size: 2.2em !important;
    }
}
@media (max-width: 1000px) {
    .other-products > div {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 768px) {
    .single-product-custom > section {
        flex-direction: column;
        margin-bottom: 50px;
    }
    .logo-class {
        display: none;
    }
    .promo-slider {
        text-align: left;
    }
    .carousel-main .owl-item .img-area,
    .carousel-main {
        height: 460px;
    }
    .title-slider {
        font-size: 2.5em !important;
    }

    .single-product-bottom-section nav ul {
        flex-direction: column;
    }

    .carousel-main .custom-button:after {
        transform: rotate(14deg) translate(6%, 220%) scaleX(1.2) !important;
    }

    .carousel-main .custom-button:hover:after {
        transform: none !important;
    }
}

@media (max-width: 425px) {
    .other-products > div {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .title-slider {
        font-size: 2em !important;
    }
}

.product-consists{
    font-size: var(--SIZE-12);
}

.carousel-main .content {
    width: 100vw !important;
    margin: 0 !important;
}