body{
    width: 100%;
    overflow-x: hidden;
}
.aboutTitle{
    display: flex;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 6rem;
    color: var(--text-secondary-color);
    font-family: var(--font-family-dot);
    padding-top: 100px;
    font-weight: 800;
}
@media (max-width: 768px) {
    .aboutTitle{
        font-size: 3rem;
        margin-top: 50px;
    }
}
.ContactsPageWrapper{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    padding-top:100px ;
    margin-bottom: 50px;
}
.ContactsPageWrapper .block{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
    width: 600px;
    height: 200px;
    background-color: var(--main-bg-color);    
    border-radius: 25px;
    
}
.ContactsPageWrapper .block .title{
    font-family: var(--font-family-dot);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-size: 2.5rem;
    font-weight: 600;
}
.ContactsPageWrapper .block .content{
    font-family: var(--font-family-dot);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
.ContactsPageWrapper .block{
    width: 400px;
    height: 150px;
}
.ContactsPageWrapper .block .title{
    font-size: 2rem;
}
.ContactsPageWrapper .block .content{
    font-size: 1.2rem;
}
}
@media (max-width: 400px) {
    .ContactsPageWrapper .block .title{
    font-size: 10vw;
}
.ContactsPageWrapper .block .content{
    font-size: 5vw;
}
}
@media (max-width: 840px) {
.ContactsPageWrapper{
    flex-direction: column;
    gap: 15px;
}
.ContactsPageWrapper .block{
    width: 95%;
}

}
