/* ---HEADER--- */

header .desktop_header {
    position: relative;
}

@media (max-width: 996px) {
    header .mobile_header {
        position: relative;
    }
}

/*LOCATION SECTION*/

.location_section{
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: center;
    align-items: center;
    gap: 4%;
    padding: 5% 10% 0 10%;
}

.location_section .about-section{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location_section h1{
    font-size: 2.5vw;
}

.location_section p{
    font-size: 1vw;
}

.cta_action{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta_action > span{
    color:var(--orange) ;
    text-align: center;
    font-size: 1.3vw;
    font-weight: 600;
    padding-bottom: 3%;
}

.cta_action a{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--orange);
    font-weight: 600;
    width: 200px;
    height: 40px;
    border: 2px solid var(--orange);
    margin-top: 5px;
    transform: skewX(-15deg);
    background: linear-gradient(to right, var(--orange) 50%, transparent 50%);
    background-size: 200%;
    background-position: 100%;
}

.cta_action a:hover{
    color: black;
    background-position: 0;
}

@media (max-width: 996px) { 
    .location_section{
        display: flex;
        flex-direction: column;
        padding: 10% 10%;
    }
    .location_section h1{
        font-size: 5.5vw;
    }
    .location_section p{
        font-size: 4vw;
    }
    .location_section h2{
        font-size: 5vw;
    }
    .location_section li{
        font-size: 4vw;
    }
    .about-section{
        text-align: center;
    }
    .cta_action > span{
        font-size: 4.5vw;
        text-align: center;
        padding-bottom: 10%;
    }
}

/* ---CARDS SECTION--- */
.cards_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    background: white;
    padding-top: 5%;
}

.information-section{
    display: flex;
    flex-direction: column;
}

.information-section h2{
    font-size: 2vw;
}

.information-section p{
    font-size: 1vw;
}

.information-section li{
    list-style: none;
    font-size: .9vw;
}


.cards_section .card_title {
    display: flex;
    justify-content: center;
}

.cards_section .cards_text {
    margin: 20%;
}

.cards_section .card_title h2 {
    font-size: 40px;
    text-align: center;
}

.cards_section .card_title h2 span {
    color: black;
}

.cards_section .cards_box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 3%;
}

.cards_section .card_item {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 50%;
    margin: 0 3%;
    border-radius: 10px;
}

.cards_section .card_item:nth-child(odd) {
    background: white;
}

.cards_section .card_item:nth-child(even) {
    background: var(--orange);
}

.cards_section .card_media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards_section .card_media img {
    position: absolute;
    transform-origin: right;
    transform: scale(1.2);
}

.cards_section .info_card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 20px;
}

.cards_section .card_item h2 {
    font-size: 25px;
}

.cards_section .card_item p {
    margin: 15px 0;
}

.cards_section .card_item:nth-child(even) h2 {
    color: white;
}

.cards_section .card_item:nth-child(even) p {
    color: white;
}

.cards_section .card_item a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    width: fit-content;
    padding: 5px 20px;
    transform: skewX(-15deg);
}

.cards_section .card_item:nth-child(odd) a {
    color: var(--orange);
    border: 2px solid var(--orange);
    background: linear-gradient(to right, var(--orange) 50%, transparent 50%);
    background-size: 200%;
    background-position: 100%;
}

.cards_section .card_item:nth-child(even) a {
    color: white;
    border: 2px solid white;
    background: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 200%;
    background-position: 100%;
}

.cards_section .card_item:nth-child(odd) a:hover {
    color: white;
    background-position: 0;
}

.cards_section .card_item:nth-child(even) a:hover {
    color: var(--orange);
    background-position: 0;
}

@media (max-width: 996px) {
    .cards_section {
        padding: 20% 10%;
    }
    .cards_section p{
        font-size: 4vw;
    }
    .cards_section h2{
        font-size: 5vw;
    }
    .cards_section li{
        font-size: 4vw;
    }
    .cards_section .card_title {
        display: flex;
        justify-content: center;
    }
    .cards_section .card_title h2 {
        font-size: 30px;
    }
    .cards_section .cards_box {
        flex-direction: column;
        margin: 0;
    }
    .cards_section .card_item {
        grid-template-columns: 100%;
        width: 100%;
        margin: 5% 0;
    }
    .cards_section .card_media img {
        width: 60%;
        position: relative;
        transform: scale(1);
    }
    .cards_section .info_card {
        align-items: center;
        padding: 30px 20px;
    }
    .cards_section .card_item:nth-child(odd) .card_media {
        padding-top: 30px;
    }
    .cards_section .card_item:nth-child(even) .info_card {
        padding: 0 20px 30px 20px;
    }
    .cards_section .card_item h2 {
        text-align: center;
    }
    .cards_section .card_item p {
        text-align: center;
    }

}

/* Map section */
.map {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
}

.map p{
    font-size: 1vw;
}

.map h2{
    font-size: 2vw;
}

.cont-map {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.info_map {
    background-color: var(--orange);
    text-align: center;
    margin-top: 0;
}

.info_map h4{
    font-size: 1vw;
}

.info_map a, .date_info > p {
    font-size: 1vw;
    color: white;
}

.info_map strong{
    font-weight: 600;
}

@media (max-width: 996px){
    .map{
        padding: 20% 10%;
    }
    .map p{
        font-size: 4vw;
    }
    .map h2{
        font-size: 5vw;
    }
    .iframe iframe{
        height: 250px;
    }
    .info_map h4{
        font-size: 3vw;
    }
    .info_map a, .date_info > p {
        font-size: 3vw;
    }
}