@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: var(--bg-main-color);
    /*#E8F8F5*/
    background-repeat: no-repeat;
    overflow-x: hidden;

}

header {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    background-color: white;
}


/*************************TITULO VERANO****************************************/

.titulo_verano {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 50px 0;
    font-family: 'PT Sans Narrow';
}

/******************************************************************************/
#titulo {
    margin: 0;
    font-size: 35px;
    font-family: 'PT Sans Narrow';
    font-weight: 200;
}

/*************************PRIMERA IMG******************************************/
.contim2 {
    width: 100%;
    display: none;
    background-size: cover;
    /*background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    
    justify-content: center; */
    align-items: center;
}

.titex_cont {
    width: 100%;
    height: 90%;
    padding: 15% 0%;
    margin: 5% 0%;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.titex_cont>h2 {
    transition: font-size 1s ease;
    font-size: 35px;
    color: #2A2A2A;
}

.id_img {
    width: 100%;
    display: flex;
}

.img_1 {
    width: 65%;
    transform: translate(-100%, 0);
}

.img_2 {
    width: 65%;
    transform: translate(0%, 0);
    transition: all 2s ease-in-out;
    /*transition: all 1.5s ease;*/
}

.img_3 {
    width: 65%;
    transform: translate(100%, 0);
}

.id_img>.img_3>img {
    width: 100%;
}

.id_img>.img_1>img {
    width: 100%;
}

.text_1 {
    width: 35%;
    /*margin-top: 7%;*/
    display: inline-block;
    justify-content: center;
    text-align: center;
    padding: 2% 5%;
    transform: translate(100%, 0);
}

.text_2 {
    width: 35%;
    /*margin-top: 7%;*/
    /*display: inline-block;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 2% 5%;
    transform: translate(0%, 0);
    transition: all 2s ease-in-out;
    /*transition: all 1.5s ease;*/
    overflow-y: auto;
    overflow-x: hidden;
}

.text_3 {
    width: 35%;
    /*margin-top: 7%;*/
    display: inline-block;
    justify-content: center;
    text-align: center;
    padding: 2% 5%;
    transform: translate(-100%, 0);
    font-family: 'PT Sans Narrow';
}

.text_3>h2 {
    width: 100%;
    font-size: 30px;
    font-family: 'PT Sans Narrow';
}

.text_3>p {
    width: 100%;
    font-size: 20px;
    font-family: 'PT Sans Narrow';
}

.id_img>.text_1>h2 {
    width: 100%;
    font-size: 30px;
    font-family: 'PT Sans Narrow';
}

.id_img>.text_1>p {
    width: 100%;
    font-size: 20px;
    font-family: 'PT Sans Narrow';
}

.id_img>.text_1>.texto_btn {
    width: 50%;
    margin-left: 25%;
    display: flex;
    background-color: white;
    align-items: center;
    justify-content: center;
}

.id_img>.text_1>.texto_btn>h4 {
    font-size: 13px;
    text-align: center;
    align-items: center;
    font-family: 'PT Sans Narrow';
}

.id_img>.text_1>.texto_btn:hover {
    background-color: gray
}

.id_img>.text_1>.texto_btn>h4:hover {
    font-size: 15px;
    color: black;
    animation-name: example;
    animation-duration: 4s;
}

.efecto-zoom {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    /** Chrome & Safari **/
    -moz-transition: all 1s ease-in-out;
    /** Firefox **/
    -o-transition: all 1s ease-in-out;
    /** Opera **/
}

.containerBtnVerano {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 1.2%;
}

.btnVerano {
    letter-spacing: 0.1em;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: 45px;
    max-width: 160px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    padding: 2px 20px;
}

.btnVerano:hover {
    text-decoration: none;
}

.effect01 {
    color: #FFF;
    box-shadow: 0px 0px 0px 1px var(--bg-dark-color) inset;
    background-color: var(--main-color);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.effect01:hover {
    background-color: var(--bg-main-color-2);
    box-shadow: 0px 0px 0px 4px var(--main-color-2) inset;
}

.effect01 span {
    transition: all 0.2s ease-out;
    z-index: 2;
}

.effect01:hover span {
    letter-spacing: 0.13em;
    color: #333;
}

.effect01:after {
    background: #FFF;
    border: 0px solid #000;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .8;
    position: absolute;
    top: -50px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    width: 50px;
    transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    z-index: 1;
}

.effect01:hover:after {
    background: #FFF;
    border: 20px solid #000;
    opacity: 0;
    left: 120%;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
}

/*PROVISIONAL-CHECKBOX PARAYAX*/

#parayax {
    position: fixed;
    bottom: 0;
    right: 0;
}

/******************************/

@keyframes example {
    from {
        color: black;
    }

    to {
        color: white;
    }

    from {
        background-color: white;
    }

    to {
        background-color: gray;
    }
}

@media (max-width: 1000px) {
    #titulo {
        font-size: 25px;
    }

    .id_img {
        flex-wrap: wrap-reverse;
    }

    .id_img:nth-child(even) {
        flex-wrap: wrap;
    }

    .text_2 {
        width: 100%;
    }

    .text_2>h2 {
        display: none;
    }

    .img_2 {
        width: 100%;
    }

    .img_2>img {
        display: none;
    }

    .contim2 {
        display: flex;
    }

    .img_2,
    .text_2 {
        transition: all 0s ease-in-out;
    }

    .img_2 {
        transition: transform 1s ease-in;
    }

    .text_2 {
        transition: transform 1s ease-in-out;
    }
}

@media (max-width: 800px) {
    .titex_cont>h2 {
        font-size: 25px;
    }
}

@media only screen and (max-width: 800px) {
    #titulo {
        font-size: 30px !important;
        transition: all 0.2s ease-in-out;
    }
}

@media only screen and (max-width: 500px) {
    #titulo {
        font-size: 25px !important;
        transition: all 0.2s ease-in-out;
    }
}

@media only screen and (max-width: 400px) {
    #titulo {
        font-size: 20px !important;
        transition: all 0.2s ease-in-out;
    }
}