@charset "utf-8";

:root {
    --transition: all .5s ease-in-out;
    --figcapture-font-size: clamp(0.5rem, 2vw, 1.5rem);
    --h3-font-size: clamp(1.2rem, 3vw, 2rem);
    --text-color: #5B5B5B;
}

.container {
    margin: auto
}

.title {
    text-align: center;
    font-family: Arial;
    margin-top: 50px;
    margin-bottom: 50px
}
.accordion {
    margin-top: 4%;
}

.accordion__item {
    margin-bottom: 10px;
}

.accordion__item__header {
    background-color: rgba(11, 50, 43, .85);
    padding: 15px;
    cursor: pointer;
    position: relative;
    color: white;
    font-family: Roboto400;
    /* font-weight: 300; */
    font-size: clamp(1rem, 2.5vw, 1.5rem);
}

.accordion__item__header::before {
    height: clamp(0.8rem, 2vw, 1.2rem);
    width: clamp(0.8rem, 2vw, 1.2rem);
    content: "";
    position: absolute;
    right: 1.2rem;
    top: 15px;
    transition: .5s all;
    transform: rotate(45deg);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff
}

.accordion__item__header.active {
    background-color: rgba(167, 120, 105, .5);
    color: #0B322B;
    transition: .4s;
}

.accordion__item__header.active::before {
    transform: rotate(-135deg); 
    top: 23px;
    font-size: clamp(1rem, 1.3vw, 1.5rem);

    border-right: 2px solid #0B322B;
    border-bottom: 2px solid #0B322B;

}

.accordion__item__content {
    overflow-y: hidden;
    padding: 2%;
    display: none;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #5B5B5B;
}

.accordion__item__content p {
    padding: 0.5%;
}