*{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
}
.wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    /* height: 170px; */
    /* width: 100%;
    border-bottom: 3px solid black; */
}
.header img {
    /* width: 170px; */
    object-fit: contain;
    height: 100px;
}
.header_text{
    display: flex;
    /* width: 100%; */
    align-items: center;
    font-size: 50px;
    font-weight: bold;
    justify-content: flex-start;
    color: #262626;
}
.bg-blue{
    background-color: #194474;
}
.chapter{
    display: flex;
    background-color: #194474;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-weight: bold;
    font-size: 20px;
    flex-wrap: wrap;
    height: auto;
    padding: 1rem;
}
.i_table{
    width: 100%;
}
td{
    border: 1px solid #3508a6;
    border-spacing: 0;
    padding: 10px 10px;
}
.i_title{
    background-color: #cdd1d5;
    padding: 10px 10px;
    min-width: 150;
}
.i_desc{
    width: 100%;
    background-color: #e7e9e9;
}
.center{
    text-align: center;
    justify-content: center;
}
.mt5{
    margin-top: 5px;
}
.p10{
    padding: 10px;
}
.gray_line{
    height: 40px;
    background-color: rgb(214, 214, 214);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.h70{
    min-height: 70px;
}
h1{
    font-size: 30px;
    margin: 0;
}
.tb_specification{
    border-spacing: 0;
    font-size: 20px;
    height: 30px;
    width: 100%;
    border-collapse: collapse;
}
.tb_specification tr td{
    border: 0;
    border-bottom: 1px solid #747474;
}
.tb_specification tr td:first-child{
    text-align: left;
    font-weight: bold;
}
.tb_specification tr td:last-child{
    text-align: right;
}
.tb_wrapper{
    display: flex;
    padding: 0;
    justify-content: center;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
a{
    text-decoration: none;
    color: rgb(1, 14, 168);
}
.m10{
    margin-bottom: 10px;
}
.contacts{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px;
    align-items: center;
}
.button{
    background-color: #da7d25;
    color: #FFF;
    padding: 10px 40px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}
.button:hover{
    background-color: #f5a623;
}
h3{
    margin-top: 15px;
    margin-bottom: 5px;
}
.image{
    max-width: 60%;
}
.images_wrapper{
    display: flex; 
    flex-direction: column; 
    gap:5px; 
    background-color: #1c1c1c;
    padding: 20;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 800px) {
    .tb_wrapper {
        gap: 0;
        display: flex;
        flex-direction: column;
    }
}