* {box-sizing:border-box}
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #EBEBEB;
}
.container {
    margin: auto;
    padding:0;
}

.header {
    background-color: #FFFFFF;
    max-height: 130px;
}

.header__items {
    display: flex;
    height: 130px;
    align-items: center;
    justify-content: flex-start;
}

.header__items__item:nth-child(2) {
    margin-left: 50px;
    margin-bottom: 10px;
}

.header__items__item p {
    font-size: 24px;
    font-weight: 300;
    color: #26285F;
}

.content {
    background-image: url("./assets/bg.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 730px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content__title {
    margin: auto 0 70px;
}
.content__title p {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    font-size: 100px;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    line-height: 1;
}
.content__icons {
    display: flex;
flex-direction: row;
    flex-wrap: nowrap;
    margin: 0 auto auto;
    justify-content: space-evenly;
}
.content__icons__icon {
    text-align: center;
    margin: 0 20px;
}
.content__icons__icon:nth-child(4){
    margin-right: 20px;
}
.content__icons__icon:last-child{
    margin: 0;
}
.content__icons__icon__img {
    height: 70px;
    position: relative;
}
.content__icons__icon__img img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto auto 0;
}
.content__icons__icon__txt {
    color: #ffffff;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
}
.footer_table_center {
  margin-left: auto;
  margin-right: auto;
}
.footer {
    background-color: #e5dddd;
}
.footer__contact {
    color: #26285F;
    font-size: 14px;
    padding: 44px 0;
}
.footer__contact p {
    margin: 0;
}
.footer__contact a {
    text-decoration: none;
    color: #26285F;
}
@media (max-width: 800px) {
    .header {
        max-height: none;
    }
    .container.logo {
        padding-top: 20px;
    }
    .header__items {
        margin: 0;
        flex-direction: column;
    }
    .header__items__item:first-child,.header__items__item:nth-child(2) {
        margin: 0;
    }
    .content {
        background: #26285F;
        height: auto;
    }
    .content__title {
        margin: 0 auto;
    }
    .content__title p {
        font-size: 48px;
        margin: 45px auto;
    }
    .content__icons {
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .content__icons__icon {
        width: 45%;
        margin: 0;
        margin-bottom: 35px;
    }
    .content__icons__icon:nth-child(4) {
        margin-right: 0;
    }
    .footer__contact {
        text-align: center;
        padding: 40px 0;
    }

}
