.contacts_page {
    text-align:center;
}
.contacts_page h1 {
    font-size: 48px;
    line-height: 1.2;
    margin: 0;
    font-weight: 800;
    color: #1F2937;
    @media screen and (max-width: 1200px) {
        font-size: 36px;
    }
    @media screen and (max-width: 992px) {
        font-size: 28px;
    }
    @media screen and (max-width: 768px) {
        font-size: 24px;
    }
    @media screen and (max-width: 575px) {
        font-size: 20px;
    }
}
.contacts_page p {
    color:#666;
    line-height:1.35;
    @media screen and (max-width:768px) {font-size:14px;}
    @media screen and (max-width:575px) {font-size:12px;}
}
.hero_section h2 {
    text-align:center;
    font-size: 40px;
    font-weight: 800;
    margin:0 0 30px 0;
    color: #1F2937;
    @media screen and (max-width:1200px) {font-size:32px;}
    @media screen and (max-width:768px) {font-size:22px;}
    @media screen and (max-width:575px) {font-size:18px;}
}
.p_section {
    padding:80px 0;
    @media screen and (max-width:1200px) {
        padding:60px 0;
    }
    @media screen and (max-width:1025px) {
        padding:40px 0;
    }
    @media screen and (max-width:768px) {
        padding:20px 0;
    }
}
.color_section {
    background: #F9FAFB;
}
.grid_columns {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
    @media screen and (max-width:1200px) {
        gap:15px;
    }
    @media screen and (max-width:992px) {
        grid-template-columns: 1fr;
        text-align:center;
    }
}
.title_item_grid_columns {
    font-size:20px;
    font-weight:600;
    margin-bottom:15px;
    @media screen and (max-width:575px) {
        font-size:18px;
    }
}
.content_item_grid_columns {
    display:grid;
    grid-template-columns: 1fr;
    gap:5px;
}
.title_content_item_grid_columns {
    color:#666;
    font-weight:300;
    font-size:14px;
    @media screen and (max-width:575px) {
        font-size:12px;
    }
}
.value_content_item_grid_columns {
    font-weight:600;
    font-size:18px;
    @media screen and (max-width:575px) {
        font-size:16px;
    }
}
.value_content_item_grid_columns a {
    text-decoration:none;
}
.content_form_type_1 {
    max-width:600px;
    width:100%;
    margin:0 auto;
    display:grid;
    grid-template-columns: 1fr;
    gap:10px;
}
.content_form_type_1 label {
    font-weight:500;
    font-size:20px;
    @media screen and (max-width:992px) {
        font-size:18px;
    }
    @media screen and (max-width:575px) {
        font-size:16px;
    }
}
.content_form_type_1 input:not([type="checkbox"]):not([type="submit"]),
.content_form_type_1 textarea {
    padding:15px 30px;
    border:none;
    border-radius:6px;
    box-shadow:0 0 15px 0 rgba(0,0,0,.1);
    @media screen and (max-width:575px) {
        padding:15px;
    }
}
