@font-face {
  font-family: 'vasco26'; 
  src: url('fonts/vasco26.woff') format('woff'), 
       url('fonts/vasco26.woff') format('truetype'); 
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    

}

:root{
    font-size: 62.5%;
}

body{
    font-size: 1.6rem;
    font-family: "Barlow", sans-serif;
}



.perso-teaser-container{
    width: 100vw;
    height: 100%;
    max-width: 1920px;
    overflow: hidden;

}

.perso-teaser-content{
    display: flex;
    flex-direction: row;

    width: 100;
    
}

.perso-teaser-form{
    flex: 1;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background-color: #000;
}


.perso-teaser-info{
    color: #fff;

    display: flex;
    flex-direction: column;
    gap: 2rem;

    align-content: center;

    width: 24vw;   
}

.perso-teaser-info h1{
    font-size: clamp(4rem, 5vw, 8rem);
}

.perso-teaser-info p{
    font-size: clamp(1.6rem, 1.2vw, 2rem);
}

input{
    height: 30px;
    padding: 2rem;
}


.perso-teaser-img{
    flex: 1;

    position: relative;
}

.perso-teaser-img-dtls{
    font-family: 'vasco26', sans-serif;

    position: absolute;
    top:4vw;
    left: 1.6vw;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.perso-teaser-img{
    width: 100%;
}

.perso-teaser-img-content img{
    display: block;
    width: 100%;
    border: none;
}

#name-rtrn{
    color: #fff;
    font-size: 3vw;
    text-transform: uppercase;
}

#number-rtrn {
    display: flex;         
    justify-content: center;
    align-items: center;
    height: 16vw;          
    gap: 2px;              
}

#number-rtrn img {
    height: 100%;         
    width: auto;           
    object-fit: contain;
    padding: 4%;
}

.perso-teaser-action{
    width: 100%;
    max-width: 1920px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: #000;
    color: #fff;

}

.perso-teaser-action-content{
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
    
    padding: 5% 10%;
}

.perso-teaser-action-content h1{
    font-size: clamp(4rem, 4vw, 8rem);
}

.perso-teaser-action-content p{
    font-size: clamp(1.6rem, 1.2vw, 2rem);
}

.perso-teaser-action-content a{
    display: inline-block;
    background-color: #fff;
    color: #000;

    padding: 24px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;

    margin-top: 3.2rem;
    transition: all ease .8s;
}

.perso-teaser-action-content a:hover{
    opacity: .6;
}


/* media queries */

@media screen and (max-width: 720px) {
    .perso-teaser-content{
        display: flex;
        flex-direction: column;
    }

    .perso-teaser-info{
        width: 90vw;
        padding: 2rem;
    }

    #name-rtrn{
        font-size: 6.4vw;
    }

    #number-rtrn{
        height: 30vw;
    }
}