main{
    padding: 50px 0;
    min-height: 60vh;
}
main  .line{
    border-top-color: #000;
    border-top-style: dotted;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    margin: 16px 0;
}
main .image{
    box-shadow: 0 0 5px #c2c1c1;
    border-radius: 10px;
    overflow: hidden;

}
main h2{
    font-family: 'Roboto-b';
    color: var(--dark-color-100);
    font-size: 26px;
    line-height: 1;
    margin-bottom: 30px;
}
main h3{
    font-family: 'Roboto-b';
    color: var(--blue-color);
    font-size: 26px;
    line-height: 1;
    margin-bottom: 30px;
}
main p{
    font-size: 15px;
    font-family: 'Roboto-r';
    line-height: 25.5px;
}
main .content{
    display: flex;
    align-items: center;
    gap: 33px;
    @media(max-width: 767px){
        flex-direction: column;
    }
}
main .content .images{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    @media(max-width: 767px){
        width: 100%;
    }
    &:hover{
        .image{
            color: var(--main-color);
            transition: all 0.5s ease-in-out;
        }
    }

}
main .content .images .image{
    box-shadow: 0 0 5px #c2c1c1;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;;
    font-size: 25px;
    text-decoration: none;
    color: var(--black-color);
    font-family: 'Roboto-m';
}
main .content .images .image svg{
    width: 60px;
    height: 60px;
}

main .content .text{
    flex: 1;
}
main .content-cv{
    display: flex;
    gap: 33px;
    padding: 30px 0;
    @media(max-width: 767px){
        flex-direction: column;
        align-items: center;
    }
}
main .content-cv .images{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32%;
    @media(max-width: 767px){
        width: 100%;
    }
}
main .content-cv .images img{
    max-width: 100%;
}
main .content-cv .text{
    flex: 1;
}
main img{
    max-width: 100%;
}