
.home{
    display: flex;
    flex-direction: column;
}

.wrapper{
    display: flex;
    height: calc(100vh - 32px);
    color: #333E4C;
}
.wrapper>.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wrapper .container .content{
    align-items: center;
    text-align: center;
}


.wrapper img{  
    max-width: 300px;
    padding-bottom: 32px;
}

.wrapper .identity {
    border-bottom: 1px solid #A75158;
}

.wrapper .identity h1{
    color:#A75158;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}
.wrapper .identity h2{
    color:#333E4C;
    font-size: 1rem;
    margin: 0 0 8px 0;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}
.wrapper .rezo{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 8px;
    gap: 32px;
}
.wrapper .rezo a{
    display: block;
    height: 32px;
    width: 32px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: scale(1);
    transition: transform .2s ease-in-out;
}
.wrapper .rezo a:hover{
    transform: scale(1.1);
    transition: transform .2s ease-in-out;
}
.wrapper .rezo a:before,
.wrapper .rezo a:after{
    content:"";
    display: block;
    position: absolute;
    height: 32px;
    width: 32px;
    background-color: #333E4C;
    border-radius:16px;
    opacity: 1;
    transform: scale(0);
}


.wrapper .rezo a:hover:before,
.wrapper .rezo a:hover:after{
    opacity: .0;
    transform: scale(2);
    transition: opacity .2s ease-out, transform .2s ease-out;
}
.wrapper .rezo a:hover:after{
    transition: opacity .2s ease-out .05s, transform .2s ease-out .05s;
}

.animate-this-element {
animation: name-of-animation 5s infinite;
}

.wrapper .rezo a.linkedin{
    background-image: url('img/linkedin.svg');
}
.wrapper .rezo a.telegram{
    background-image: url('img/telegram.svg');
}
.wrapper .rezo a.whatsapp{
    background-image: url('img/whatsapp.svg');
}
.wrapper .rezo a.mail{
    background-image: url('img/mail.svg');
}


footer{
    height: 32px;
    background-color: #333E4C;
    display: flex;
    align-items: center;
    text-align: center;
}
footer .row .col-12{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    text-align: center;
}

footer p{
    margin: 0;
    color:#FFF;
    opacity: .4;
    font-size: .8rem;
}
footer a{
    margin: 0;
    color:#FFF;
    opacity: .4;
    font-size: .8rem;
    text-decoration: none;
    transition:ease-in-out .2s opacity;
}
footer a:hover{
    color:#FFF;
    opacity: .8;
    transition:ease-in-out .2s opacity;
    text-decoration: none;
}





@media (min-width: 576px){
    .wrapper img{  
        width: 100%;
        padding-bottom: 0px;
    }

    .wrapper .rezo{
        justify-content: flex-start;
    }
    .wrapper .container .content{
        text-align: left;
    }
    
    
}

@media (min-width: 768px){
}

@media (min-width: 992px){
}

@media (min-width: 1200px){
}

@media (min-width: 1400px){
}