/*
The single template page stylesheet
*/
/* 
main.single-activites {
    background-color: var(--light-grey);
}
.template {
    padding: 0 3rem;
}
/* TITLE */
/* .template .circle.for_title.mobile {
    display: none;
}
.template .circle.for_title {
    padding: 3rem 0 0 0;
}
.template .parenthesis {
    flex-direction: column;
}
.template .circle.for_title .parenthesis::before {
    width: 100%;
    height: 120%;
    background-color: var(--light-grey);
}
.template .circle.for_title .parenthesis::after {
    width: 102%;
    height: 115%;
}
.template .title {
    padding: 0 3rem;
}
.template .subtitle {
    padding: 0;
    z-index: 2;
    text-transform: uppercase;
}
/* TEXT */
/* .template .frame_box {
    position: relative;
    width: 100%;
    padding-bottom: 0;
    padding: 3rem 0;
}
.template .frame_text {
    min-width: 580px;
    width: 55%;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}
.template .frame_content {
    align-items: flex-start;
}
.template .intro {
    justify-content: flex-start;
}
.template .intro_box {
    width: 100%;
    gap: 1rem;
}
.template .intro_p {
    text-align: left;
    color: black;
    width: 100%;
}
.template .intro_p:first-child {
    font-weight: 600;
}
.template br.mobile {
    display: none;
}
/* ICONS */
/* .template .icons {
    justify-content: flex-start;
    padding: 0;
}
.template .icon_box {
    width: unset;
    padding: .5rem 1rem;
    gap: .4rem;
}
.template .icon_img {
    width: auto;
    height: 60px;
}
.template .svg_br {
    display: block;
}
.template .svg_txt {
    font-size: .8rem;
    font-weight: 700;
    color: var(--main-gold);
    text-align: center;
    line-height: 1;
}
/* IMAGE */
/* .template .frame_img {
    position: relative;
    width: 45%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 0;
}
.template .frame_img::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50px;
    /* to aligne on frame right border */
    /* width: calc(100% + 50px + 3rem);
    height: 90%; */
    /* background-image: url('assets/img/agro.jpg'); */
    /* background-image: url('../../../img/agro.jpg');
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
} */
.template .btn_box {
    position: relative;
    padding: 0;
    z-index: 1;
    justify-content: flex-start;
}
.template .btn_box a {
    white-space: nowrap;
}
/* SELECT */
.template .selects {
    max-width: unset;
    width: 100%;
    padding: 2rem 0;
}
.template .select .button {
    background-color: var(--main-grey);
}
.template .select .button:hover {
    background-color: var(--main-gold);
}
.template .select_label {
    justify-content: space-between;
}
.template .select_label svg {
    width: 10%;
    height: 100%;
}
.template .select ul {
    height: 0;
    padding-top: 1rem;
    transform: scale(0);
    transform-origin: left top;
    transition: all .2s ease;
}
.template .select li {
    opacity: 1;
    list-style: disc;
    list-style-position: inside;
}
.template .select li::marker {
    color: var(--main-gold);
}
.template .toggle:checked + .select_label + ul {
    height: 100%;
    transform: scale(1);
}
@media (max-width: 1000px) {
    .template .btn_box a {
        right: 50%;
    }
}
@media (max-width: 650px) {
    .template .btn_box a {
        position: static;
    }
}
@media (max-width: 480px) {
    .template .slider-outer-shell {
        width: 90%;
    }
}