* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

p {
    line-height: 1.6;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h1,
h2,
h3 {
    padding: 1rem 0;
}

table{
    width: 100%;
    border-collapse: collapse;
    border: 1px;
}

table td,th{
    padding: 10px;
    border: 1px solid black;
}

ul{ 
    margin: 15px 0;
    padding-left: 15px;
} 

ul li{
    padding: 5px 0;
}

.header-2-container img{
	display: block;
	width: 100%;
	max-width: 210px;
}

main img{
    display: block;
    margin: 15px auto;
    width: 100%;
    max-width: 600px;
    height: auto;
}

.header-1 {
    height: 40px;
    background-color: #212934;
    display: flex;
    align-content: center;
    justify-content: center;
}

.header-1 div {
    max-width: 1200px;
    width: 100%;
}

.header-1 .info {
    display: block;
    color: #cfd6e1;
    font-size: 1rem;
}

.header-2 {
    background-color: #f58517;
    display: flex;
    align-content: center;
    justify-content: center;
}

.header-2-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header-nav ul {
    width: 100%;
    display: flex;
    list-style: none;
}

.header-nav ul li a {
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    color: #ffffff;
    transition: color 0.3s ease
}

.header-nav ul li a:hover {
    color: #c76300;
}

.head-content{
    background-color: #efefef;
    display: flex;
    justify-content: center;
}

.head-content .container{
    display: flex;
    justify-content: space-between;
}

.head-content-left, .head-content-right{
    flex-basis: 45%;
}

.container{
    width: 100%;
    max-width: 1200px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.body-content{
    display: flex;
    justify-content: center;
}


/* Footer */


footer {
    background-color: #212934;
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    margin-top: 50px;
    width: 100%;
}

footer .container {
    color: #cfd6e1;
    display: flex;
    justify-content: space-around;
}

footer a {
    color: #cfd6e1;
    text-decoration: none;
}

.h2 {
    font-size: 30px;
    padding: 10px 0;
}


.footer-list {
  list-style: none;
  margin-top: 10px;
  padding-left: 0;
}

.footer-list a {
    padding: 5px 0;
}

.footer-first {
    flex-basis: 43%;
}

.footer-first p {
    padding: 10px 0;
}

.footer-second {
    flex-basis: 30%;
}

.footer-third {
    flex-basis: 17%;
}

.copy-right {
    background-color: #1d242d;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #cfd6e1;
}

@media (max-width: 1240px){
    .header-1 .info, .header-2, .container{
        padding: 0 20px;
    }
}

@media (max-width: 768px){

    .main{
        display: flex;
        flex-wrap: wrap;
    }


    .header-nav{
        display: none;
    }

    .header-2-container{
        padding: 10px 0;
        justify-content: center;
    }

    header{
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        box-shadow: 0 3px 5 px 2px rgba(0, 0, 0, 0.3);
    }

    img{
        width: 100%;
    }

    .head-content{
        margin-top: 106px;
    }

    .head-content .container{
        flex-direction: column;
    }

    footer .container{
        flex-direction: column;
    }

    .header-2-container 
}