@font-face
{
    font-family: MuseoSans300;
    src: url("museo-sans-300.ttf") format("opentype");
}

@font-face
{
    font-family: MuseoSans700;
    src: url("museo-sans-700.ttf") format("opentype");
}

:root
{
    --primary-color: #ccaf95;
    --secondary-color: #c7c4c0;
    --tertiary-color: #fff;
}

*
{
    margin: 0;
    box-sizing: border-box;
}

body
{
    background-repeat: repeat;
    background-position: center;
    background-image: url('background.png');
    font-family: "MuseoSans300", sans-serif;
}

body .container
{
    width: 1174px;
    height: 2131px;
    margin: 40px auto;
}

body .panel
{
    padding: 20px;
    background-color: var(--tertiary-color);
}

body .panel
{
    background-color: var(--tertiary-color);
    box-shadow: 0 4px 20px 0 rgba(0,0,0,0.2), 0 4px 20px 0 rgba(0,0,0,0.19);
}

body .panel.main
{
    height: 746px;
    padding: 60px;
    position: relative;
    margin-bottom: 56px;
}

body .panel.main h1
{
    font-size: 54px;
    color: var(--primary-color);
    font-family: "MuseoSans700", sans-serif;
}

body .panel.main .image
{
    top: 34px;
    right: 104px;
    width: 209px;
    height: 576px;
    position: absolute;
    background-position: center;
    background-image: url('image-1.png');
}

body .panel.main .separator
{
    height: 20px;
    margin: 20px 0;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url('dots.png');
}

body .panel.main .list
{
    margin-bottom: 36px;
}

body .panel.main .list .item
{
    font-size: 24px;
    padding: 12px 20px;
    color: var(--secondary-color);
    background-image: url('bullet.png');
    background-position: left 20px;
    background-repeat: no-repeat;
}

body .panel.main .list .item b
{
    left: 0;
    top: 14px;
    position: absolute;
}

body .panel.main .link
{
    display: flex;
    margin: 0 0 40px 120px;
}

body .panel.main .link a
{
    font-size: 44px;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--tertiary-color);
    background-color: var(--primary-color);
    font-family: "MuseoSans700", sans-serif;
}

body .panel.main .note
{
    font-size: 20px;
    font-style: italic;
    color: var(--secondary-color);
}

body .middle
{
    height: 648px;
    margin-bottom: 32px;
}

body .panel.middle-left,
body .panel.middle-right
{
    float: left;
    height: 648px;
}

body .panel.middle-left
{
    width: 620px;
    margin-right: 36px;
}

body .panel.middle-left .image
{
    width: 580px;
    height: 546px;
    background-position: center;
    background-image: url('image-2.png');
}

body .panel.middle-right
{
    width: 518px;
}

body .panel.middle-right .image
{
    width: 478px;
    height: 546px;
    background-position: center;
    background-image: url('image-3.png');
}

body .panel.middle:nth-child(2)
{
    width: 600px;
}

body .bottom,
body .bottom-left,
body .bottom-right
{
    height: 648px;
}

body .bottom-left,
body .bottom-right
{
    float: left;
}

body .bottom-left
{
    width: 404px;
    margin-right: 30px;
}

body .bottom-left .image
{
    width: 364px;
    height: 546px;
    background-position: center;
    background-image: url('image-4.png');
}

body .bottom-right
{
    width: 740px;
}

body .bottom-right .images
{
    width: 100%;
    height: 546px;
}

body .bottom-right .images .image
{
    float: left;
    width: 230px;
    height: 546px;
    background-position: center;
}

body .bottom-right .images .image:nth-child(1)
{
    background-image: url('image-5.png');
}

body .bottom-right .images .image:nth-child(2)
{
    margin: 0 5px;
    background-image: url('image-6.png');
}

body .bottom-right .images .image:nth-child(3)
{
    background-image: url('image-7.png');
}

body .middle .text,
body .bottom .text
{
    font-size: 18px;
    margin-top: 14px;
    text-align: center;
    font-style: italic;
    color: var(--primary-color);
}

body footer
{
    width: 100%;
    height: 78px;
    padding: 24px;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--tertiary-color);
    background-color: var(--primary-color);
}

body footer span
{
    margin: 0 20px;
}

body footer p:nth-child(1)
{
    display: block;
}

body footer p:nth-child(2)
{
    display: none;
}

@media(max-width: 700px)
{
    body
    {

    }

    body .container
    {
        margin: 0;
        width: 100%;
        height: auto;
        padding: 15px;
    }

    body .panel.main
    {
        height: auto;
        padding: 15px;
        margin-bottom: 20px;
    }

    body .panel.main h1
    {
        font-size: 26px;
        text-align: center;
    }

    body .panel.main .image
    {
        top: auto;
        right: auto;
        margin: 20px auto;
        position: relative;
    }

    body .panel.main .separator
    {
        background-position: center;
    }

    body .panel.main .list
    {
        margin-bottom: 20px;
    }

    body .panel.main .list .item
    {
        font-size: 20px;
        padding: 8px 20px;
        background-position: left 14px;
    }

    body .panel.main .link
    {
        margin: 0 0 20px;
    }

    body .panel.main .link a
    {
        width: 100%;
        font-size: 24px;
        text-align: center;
    }

    body .panel.main .note br
    {
        display: none;
    }

    body .middle
    {
        height: auto;
        margin-bottom: 20px;
    }

    body .panel.middle-left,
    body .panel.middle-right
    {
        width: 100%;
        height: auto;
        margin: 0 0 20px;
    }

    body .panel.middle-left .image,
    body .panel.middle-right .image
    {
        width: 100%;
    }

    body .middle .text br,
    body .bottom .text br
    {
        display: none;
    }

    body .bottom
    {
        height: auto;
    }

    body .bottom-left,
    body .bottom-right
    {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    body .bottom-left .image
    {
        width: 100%;
    }

    body .bottom-right .images
    {
        height: auto;
    }

    body .bottom-right .images .image
    {
        float: none;
        margin: 0 auto;
    }

    body .bottom-right .images .image:nth-child(2)
    {
        margin: 10px auto;
    }

    body footer
    {
        clear: both;
        height: auto;
        margin-bottom: 20px;
    }

    body footer p:nth-child(1)
    {
        display: none;
    }

    body footer p:nth-child(2)
    {
        display: block;
    }
}