/* 
 Style of Production page template
*/

.prod_csl {
    width: 100%;
    background-color: white;
    padding: 6rem 2rem;
}
.slides_container,
.mySlides_box,
.mySlides {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mySlides_box {
    position: relative;
    flex-direction: column;
    width: clamp(min(85%, 1250px), 65vw + 1rem, max(55%, 1250px));
}
.mySlides {
    display: none;
    padding-left: clamp(4rem, 7vw + 1rem, 8rem);
    min-height: 400px;
    max-height: 400px;
}
/* IMAGE */
.prod_csl .circle_img_box {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: unset;
}
.prod_csl_img {
    position: relative;
    width: clamp(28%, 17vw, 40%);
    right: clamp(1%, 0vw + 1rem, 18%);
    z-index: 1;
}
/* CIRCLE */
.prod_csl_img .circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.prod_csl_img .circle_img_box {
    height: clamp(270px, 25vw, 380px);
    width: clamp(270px, 25vw, 380px);
    box-shadow: none;
}
/* PARENTHESIS */
.prod_csl_img .parenthesis {
    width: clamp(310px, 25vw, 450px);
    height: clamp(310px, 25vw, 450px);
}
.prod_csl_img .parenthesis::before {
    width: clamp(315px, 30vw, 455px);
    height: clamp(320px, 30vw, 460px);
}
.prod_csl_img .parenthesis::after {
    width: clamp(340px, 32vw, 480px);
    height: clamp(310px, 30vw, 450px);
}
.prod_csl_img .parenthesis::before,
.prod_csl_img .parenthesis::after {
    transform: scale(1);
}
.prod_csl_img .parenthesis::before {
    background: linear-gradient(99deg, white 35%, transparent 30%);
}
.prod_csl_img .parenthesis::after {
    background: linear-gradient(99deg, var(--main-gold) 15%, transparent 30%);
}
/* TEXT */
.prod_csl_txt {
    padding: 3% 4% 3% 10%;
    background-color: var(--light-grey);
    width: clamp(75%, 40vw, 100%);
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: min(max(1rem, 1.1vw), 1.5rem);
}
.prod_csl .little_title {
    font-weight: 600;
    text-transform: unset;
    width: 100%;
}
.prod_csl .little_title.desktop {
    position: absolute;
    top: -40px;
    left: 235px;
    transform: translateX(-50%);
}
.prod_csl .little_title.mobile {
    display: none;
}
.prod_csl .slide_span {
    font-weight: 800;
    color: var(--main-gold);
}
.prod_csl i {
    display: inline;
}
.prod_csl .slide_title {
    font-weight: 700;
}
.prod_csl_txt .slide_text {
    min-height: 110px;
    display: flex;
    align-items: center;
}
/* BUTTONS */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 12.5px));
    max-width: 60px;
    max-height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(10px, .5vw + 1rem, 30px);
    background-color: rgba(197, 176, 127, 1);
    cursor: pointer;
    transition: all .3s ease;
}
.prev:hover,
.next:hover {
    background-color: var(--main-grey);
}
.prev {
    left: -35px;
}
.next {
    right: -35px;
}
.prev svg,
.next svg,
.prev .prevChevron,
.next .nextChevron {
    width: 100%;
    height: 100%;
    min-width: clamp(35px, 2vw + 1rem, 50px);
    min-height: clamp(35px, 2vw + 1rem, 50px);
}
/* DOTTED LINE */
.dotted-spaced {
    border: .5px solid white;
    border-radius: 150px;
    background-image: radial-gradient(circle, rgba(120, 120, 120, .99) 0%, rgba(120, 120, 120, 0.9) 25%, rgba(120, 120, 120, 0) 30%);
    background-position: center;
    background-repeat: repeat-x;
    background-size: 10.5px 2px;
}
.next .dotted-spaced,
.prev .dotted-spaced {
    left: -150px;
    position: absolute;
    min-width: 150px;
    height: 5px;
}
.prev .dotted-spaced {
    left: -150px;
}
.next .dotted-spaced {
    left: 80px;
}
/* DOTS */
.dots {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.dot {
    width: 25px;
    height: 25px;
    margin: 0 2px;
    border-radius: 50%;
    background-color: var(--main-gold);
    color: white;
    font-weight: 700;
    vertical-align: middle;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    transition: .3s ease;
}
.dot.active,
.dot:hover {
    background-color: var(--main-grey);
}
.dot:last-child {
    line-height: 1.75;
}
/* RESPONSIVE */
@media (max-width: 1200px) {
    .prod_csl_txt .slide_text {
        min-height: 150px;
    }
}
@media (max-width: 1100px) {
    .prod_csl_txt {
        padding: 4% 6% 2% 15%;
    }
}
@media (max-width: 1000px) {
    .prod_csl_txt {
        padding: 4% 6% 4% 17%;
    }
}
@media (max-width: 950px) {
    .prod_csl_img {
        width: clamp(28%, 21vw, 40%);
    }
    .mySlides_box {
        gap: 2rem;
    }
    .prod_csl {
        padding: 6rem 1rem;
    }
    .mySlides {
        justify-content: flex-end;
        flex-direction: column;
        padding-left: 0;
    }
    .prod_csl_img {
        right: unset;
        height: unset;
    }
    .prod_csl_img .circle {
        left: 50%;
        transform: translate(-50%, -64.5%);
    }
    .prod_csl_img .circle .parenthesis::before {
        background: linear-gradient(180deg, white 64%, var(--light-grey) 30%);
    }
    .prod_csl_txt {
        padding: 8rem 3rem 1rem;
        width: 100%;
    }
    .prod_csl .little_title {
        position: static;
        transform: none;
    }
    .prod_csl .little_title.mobile {
        display: block;
    }
    .prod_csl .little_title.desktop {
        display: none;
    }
    .prod_csl .prev,
    .prod_csl .next {
        transform: translateY(-50%);
    }
    .dots {
        justify-content: center;
    }
}
@media (max-width: 500px) {
    .mySlides {
        min-height: unset;
    }
    .prod_csl .slide_text {
        min-height: 210px;
    }
    .slide_span {
        display: block;
    }
}
@media (max-width: 480px) {
    .prod_csl .slide_text {
        min-height: 235px;
    }
    .prod_csl_img .circle {
        transform: translate(-50%, -63%);
    }
    .prod_csl .parenthesis::before {
        width: 270px;
        height: 290px;
    }
    .prod_csl .parenthesis::after {
        width: 285px;
        height: 280px;
    }
    .prod_csl .circle_img_box {
        width: 230px;
        height: 230px;
    }
}
@media (max-width: 450px) {
    .prod_csl .slide_text {
        min-height: 210px;
        padding-bottom: 2rem;
    }
}
@media (max-width: 350px) {
    .mySlides_box {
        width: 100%;
    }
    .prod_csl_img .circle {
        transform: translate(-50%, -62%);
    }
    .prod_csl_img .parenthesis::before {
        width: 250px;
        height: 270px;
    }
    .prod_csl_img .parenthesis::after {
        width: 265px;
        height: 260px;
    }
    .prod_csl_img .circle_img_box {
        width: 220px;
        height: 220px;
    }
}