.container {
    display: flex;
    justify-content: center;
    /* align-items: center; */
}

.focused-elem {
    display: flex;
    gap: 20px;
}

.icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    padding: 50px 45px;
    gap: 80px;
    border-radius: 27px;
}


.title {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2.1em;
}

.title p {
    font-family: "Montserrat";
    font-size: 4.2rem;
    font-weight: 700;
}

.text-title{
    display: flex;
    flex-direction: column;
    gap: 1em;

}

.icons .circle{    
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

.data{
    background-color: white;
    border-radius: 27px;
    padding: 1em 2em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    flex: 1;
    min-width: 37em;
}

.field-name{
    font-family: "Montserrat",sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    margin-top: 10px;
    
}

.body{
    color: darkgray;
    font-size: 1.3em;
}

.profiles-contact {
    display: flex;
    gap: 24px;
    flex-direction: row;
    position: relative;
    min-width: 100%;
}

.profile {
    flex: 1;
}

.contact {
    flex: 2;
    position: relative;
    display: flex;
}

.contact-det {
    font-family: "Integral CF Regular";
    font-size: 2.9em;
    position: absolute;
    width: 65%;
    bottom: 3vh;
    left: 3vh;
}

.contact-det span {
    font-family: "Integral CF Regular";
    color: #FF8E25;

}

@media (max-width: 1091px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .title p {
        font-size: 3.6em;
    }
    .title img{
        height: 3.6em;
    }

}

@media (max-width: 990px) {
    .title p {
        font-size: 3.4em;
        text-align: center;
    }
    .title img{
        height: 3.6em;
    }
}

@media (max-width: 945px) {

    .title img{
        height: 3.6em;
    }
}


@media (max-width: 788px) {
    .profile {
        flex: 2;
    }
    .profiles-contact {
        flex-direction: column;
        height: 400px;
    }

    .title img{
        height: 5.8em;
    }
    .focused-elem{
        flex-direction: column;
    }
    .icons{
        flex-direction: row;
        justify-content: space-around;
        gap: 0;
        padding: 30px 45px;
    }
}



