@font-face {
    font-family: "Bicyclette";
    src: url(Bicyclette-Regular.woff2) format("woff2"),
        url(Bicyclette-Regular.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Maven Pro", Arial, sans-serif;
    color: #303640;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 20px 40px;
}

#wrapper .title {
    background: url(background.jpg) no-repeat;
    position: relative;
    z-index: 1;
    padding: 40px 40px 96px;
    background-position: center;
}

#wrapper .img {
    position: absolute;
    bottom: -5px;
    left: 0;
    transform: rotateY(180deg);
    width: 100%;
}

#wrapper .title:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(0, 53, 120, 0.90), rgba(157, 13, 22, 0.90));
    z-index: -1;
    position: absolute;
}

#wrapper .article {
    padding: 40px;
}

#wrapper .footer {
    padding: 0;
}

#wrapper .contact {
    background: #003578;
    padding: 20px;
    border-radius: 5px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    column-gap: 35px;
}

#wrapper .mb0 {
    margin-bottom: 0;
}

#wrapper .contact h3,
#wrapper .contact p {
    color: #fff;
}

#wrapper .width {
    flex: 1 1 0;
}

#wrapper .flex-btn {
    row-gap: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    column-gap: 30px;
    margin-bottom: 25px;
}

#wrapper .background {
    background: #F2F3F5;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px 0;
}

#wrapper .background p {
    margin-bottom: 0;
}

#wrapper p {
    margin-bottom: 20px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper .flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .flexbox>div {
    width: 48%;
}

#wrapper h1 {
    padding-top: 20px;
    position: relative;
    font-size: 47px;
    font-weight: 700;
    font-family: "Bicyclette", Arial, sans-serif;
    color: #fff;
    line-height: 1.1;
}

#wrapper h1:before {
    content: "";
    width: 100px;
    height: 6px;
    position: absolute;
    top: 0;
    left: 0;
    background: #9d0d16;
}

#wrapper h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    font-family: "Bicyclette", Arial, sans-serif;
}

#wrapper h3 {
    margin-bottom: 4px;
    font-size: 39px;
    font-weight: 700;
    font-family: "Bicyclette", Arial, sans-serif;
    line-height: 1.1;
}

#wrapper h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper .button {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 25px;
    background: #9d0d16;
    color: #fff;
    transition: .2s;
}

#wrapper .button a strong {
    font-family: "Bicyclette", Arial, sans-serif;
}

#wrapper .button a:hover {
    background: #303640;
}


#wrapper .button2 {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

#wrapper .button2 a {
    text-align: center;
    display: inline-flex;
    padding: 8px 25px;
    background: #9d0d16;
    color: #fff;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

#wrapper .button2 a strong {
    font-family: "Bicyclette", Arial, sans-serif;
    background: url(mail.jpg) no-repeat 0 3px;
    padding-left: 22px;
}

#wrapper .button2.icon2 a strong {
    background: url(phone.jpg) no-repeat 0 1px;
}

#wrapper .button2 a:hover strong {
    background: url(mail2.jpg) no-repeat 0 3px;
}

#wrapper .button2.icon2 a:hover strong {
    background: url(phone2.jpg) no-repeat 0 1px;
}

#wrapper .button2 a:hover {
    background: #303640;
}

#wrapper ul {
    margin: 0 0 20px 15px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: "\002022";
    font-size: 18px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 2px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article,
    #wrapper .logo {
        padding: 16px;
    }

    #wrapper .title {
        padding: 36px 16px 70px;
    }
}

@media all and (max-width: 767px) {
    #wrapper .flexbox>div {
        width: 100%;
    }

    #wrapper .contact {
        flex-direction: column;
        row-gap: 20px;
        padding: 16px;
    }
}

@media all and (max-width: 499px) {
    #wrapper .logo {
        display: flex;
        justify-content: center;
    }

    #wrapper ul {
        margin-left: 0;
    }
}