/* ___/Reset css\___ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ___/Header css\___ */
.header {
    display: flex;
    height: 50px;
    background: gray;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}
.header a {
    color: #fff;
    text-decoration: none;
}

.header .logo a {
    font-size: 25px;
}
.header .menu a {
    font-size: 20px;
    margin-left: 40px;
}
/* ___/Section-01\___ */
#section_01 {
    display: flex;
    background-color: #20343D;
    padding: 0 100px;
    color: #cccccc;
}
#section_01 .article {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#section_01 .article h2 {
    padding-bottom: 20px;
}
#section_01 .article p {
    font-size: 18px;
}
#section_01 .figure {
    width: 35%;
}
#section_01 .figure img {
    width: 100%;
}

/* ___/Section-02\___ */
#section_02 {
    height: 500px;
    padding: 0 100px;
    background: #cccccc;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.table_01 td {
    width: 150px;
    height: 30px;
    padding: 10px;
    font-size: 18px;
}
.table_02 td {
    width: 150px;
    height: 30px;
    padding: 5px;
    font-size: 18px;
}

/* ___/footer\___ */
#footer {
    height: 220px;
    padding: 0 100px;
    background: #202020;
    color: white;
}
#footer h2 {
    text-align: center;
    padding: 30px 0;
}
#footer .footer-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#footer .footer-details ul {
    list-style: square;
}

#footer .footer-details li {
    padding: 5px 0;
}

/* ___/About page css\___ */
#about-article-01 {
    height: 70vh;
    background: gray;
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border-top: 3px solid #2c2c2c;
}
#about-article-01 ul li {
    font-size: 20px;
    list-style: none;
}
#about-article-01 p {
    font-size: 20px;
}


#contact-main {
    height: 400px;
    padding: 30px 100px 30px;
    background: gray;
    color: white;
    border-top: 3px solid #474747;
    display: flex;
    justify-content: space-between;
}

#contact-main .form {
    width: 50%;
    border-right: 3px solid #474747;
}
#contact-main figure {
    width: 50%;
}
#contact-main figure img{
    max-width: 100%;
}

