﻿@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: .937rem;
    line-height: 1.5;
    background: url('../images/background.jpg') no-repeat;
    background-size: cover;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 .625rem;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

.list li {
    margin-bottom: .937rem;
}

.list li:before {
    content: "";
    float: left;
    position: relative;
    width: 1.437rem;
    height: 1.875rem;
    background: url(../images/list.png) no-repeat;
    background-size: contain;
    margin-left: -.937rem;
    top: -.312rem;
}

header {
    background: #fff;
    margin-bottom: .625rem;
}

header .flex {
    display: flex;
    flex-flow: wrap;
    width: 55%;
    column-gap: 1.25rem;
    justify-content: center;
    margin: 0 auto;
    padding: .625rem 0;
}

.logo {
    padding: 1.25rem 0;
    margin: 0;
}

header p {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

header i {
    color: #E6831E;
    font-size: 1.5rem;
}

.orange {
    background-color: rgba(238, 127, 0, 0.3);
    padding: 14px 24px;
    margin-bottom: .625rem;
}

h1 {
    text-align: center;
    color: #18365e;
    font-weight: normal;
    font-size: 29px;
    margin: 1.25rem 0;
}

h2 {
    color: #ee7f00;
    font-size: 21px;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

h3 {
    color: #fff;
    font-weight: normal;
    margin: 1.25rem 0;
    font-size: 1.312rem;
}

.orange p {
    margin: 0;
    text-align: center;
}

section {
    background: #fff;
    padding: .875rem 1.5rem;
    margin-bottom: .625rem;
}

footer .flex {
    display: flex;
}

.column_left {
    background: #E6831E;
    width: 45%;
    padding: 1.875rem;
}

.column_left p {
    color: #fff;
    margin-bottom: 1.562rem;
}

.column_left .flex {
    column-gap: .937rem;
}

.column_left i {
    font-size: 2.187rem;
}

.column_right {
    background: #1F355D;
    padding: 1.875rem;
    width: 55%;
}

.bottom {
    border-bottom: 1.25rem solid #fff
}

.column_right p {
    color: #fff;
}

footer span {
    color: #EE7F00;
}

footer img {
    border-radius: 6.25rem;
}

.flex_contact {
    display: flex;
    align-items: center;
    column-gap: 1.25rem;
    margin: .937rem 0 1.875rem;
}

.margin {
    margin: 30px 0;
    text-align: right;
}

a.button {
    background: #C06419;
    color: #fff;
    padding: .625rem 1.562rem;
    border-radius: 1.25rem;
    font-weight: normal;
    font-size: 1.125rem;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    footer .flex {
        display: block;
    }

    .column_left,
    .column_right {
        width: 100%;
        padding: .625rem;
    }

    footer .column_left .flex {
        display: flex;
        justify-content: center;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .list li {
        padding-left: .625rem;
    }

    .orange,
    section {
        padding: .625rem;
    }
}

@media only screen and (max-width: 48rem) {
    header .flex {
        width: auto;
    }
}

@media only screen and (max-width: 31.187rem) {

    h1 {
        font-size: 1.5rem;
        margin: .625rem 0;
    }

    header p {
        justify-content: center;
    }

    .flex_contact {
        flex-direction: column;
        align-items: center;
    }

    .flex_contact p,
    .column_right h3,
    .column_right p {
        text-align: center;
    }

    .margin {
        text-align: center;
        margin: 1.25rem 0;
    }
}
