* {
    margin: 0;
    padding: 0;
    border: none;
    list-style: none;
}

body {
    color: #535357;
}

/* text */
h1 {
    font-family: 'bressaybold_italic';
    font-style: italic;
    font-size: 58px;
}

h2 {
    font-family: 'gilroybold';
    font-size: 36px;
}

p {
    font-family: 'gilroyregular';
    font-size: 22px;
}

p strong {
    font-family: 'gilroybold';
}

a {
    font-family: 'gilroybold';
    color: #585858;
    text-decoration: none;
    position: relative;
    font-size: 20px;
}

a:before {
    content: '';
    position: absolute;
    left: -5px;
    right: -5px;
    bottom: 0px;
    top: 12px;
    background: transparent;
    z-index: -1;
    transition: all .4s;
}

a:hover:before {
    background: #FFD700;
}

ul, ol {
    padding-left: 40px;
}



ol li{
    font-family: 'gilroyregular';
    font-size: 22px;
    padding-bottom: 20px;
    list-style: decimal outside;
}

ul li {
    font-family: 'gilroyregular';
    font-size: 22px;
    list-style: disc outside;
    padding-bottom: 20px;
}

/* layout */
.container {
    width: 100%;
    margin: 0 auto;
}

header {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.header-left {
    width: 50%;
    position: relative;
}

.header-left-shallow {
    width: 50%;
    position: relative;
    height: 150px;
}

.header-right {
    width: 50%;
    position: relative;
}

.intro {
    width: 100%;
}

main {
    width: 100%;
}

footer {
    background: #F0EFF3 url(../holding-img/footer-img.svg) center bottom no-repeat;
    background-size: 300px;
    width: 100%;
    padding: 90px 0 240px 0;
}

/* tables */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'gilroyregular';
    font-size: 22px;
}

table thead th {
    background: #FFD700;
    padding: 20px;
    text-align: left;
    font-weight: normal;
    border: 1px solid rgb(168, 168, 168);
    font-family: 'gilroyregular';
    font-size: 22px;
}

table tr td.header-like {
    background: #FFD700;
}


table tr td {
    padding: 20px;
    border: 1px solid rgb(168, 168, 168);
    font-family: 'gilroyregular';
    font-size: 22px;
}

table ul {
    padding-top: 20px;
}


/* blocks */
.logo {
    position: absolute;
    top: 46px;
    left: 46px;
    width: 98px;
}

h1.header-title {
    position: absolute;
    top: -200px;
}

.plain h1.header-title {
    position: absolute;
    top: -200px;
    padding-left: 20px;
}

.main-banner {
    width: 100%;
}

.plain {
    width: 100%;
    padding: 56px 0;
    background: #FFFFFF;
    position: relative;
}

.plain p {
    padding-bottom: 20px;
}

.plain p.sub {
    padding-bottom: 20px;
    padding-top: 20px;
    font-family: 'gilroybold';
}

.plain a {
    font-family: 'gilroyregular';
    text-decoration: underline;
}

.tag {
    width: 100%;
    padding: 56px 0;
    background: #F0EFF3;
    position: relative;
}

.tag p {
    padding-bottom: 20px;
}

.tag p:last-child {
    padding-bottom: 0;
}

.tag:after {
    display: block;
    position: absolute;
    content: '';
    bottom: -42px;
    left: 50%;
    margin-left: -70px;
    width: 141px;
    height: 82px;
    background: url(../holding-img/arrowhead.svg) center center no-repeat;
}

.inner {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.faqs {
    padding: 66px 0 66px;
}

.faqs h2 {
    padding-bottom: 32px;
}

.faq-items {
    width: 100%;
    display: grid;
    flex-wrap: wrap;
    padding-left: 0;
}

.faq-items li {
    width: 100%;
    padding: 0 13px 26px 0;
    box-sizing: border-box;
    grid-column-start: 1;
    grid-column-end: 1;
    list-style: none;
}

.faq-items li .faq-item-inner {
    background: #F0EFF3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 46px;
    box-sizing: border-box;
    
    /*justify-content: center;*/
}

.faq-items li .faq-item-inner p {
    font-size: 18px;
    padding-bottom: 30px;
}

.faq-items li .faq-item-inner p:last-child {
    padding-bottom: 0;
}

.faq-items li .faq-item-inner a {
    font-size: 18px;
    word-break: break-word;
    font-family: 'gilroyregular';
    text-decoration: underline;
}


.faq-items li .faq-item-inner a:before {
    display: none;
}

.faq-items li:nth-child(even) {
    padding: 0 0 26px 13px;
    grid-column-start: 2;
    grid-column-end: 2;
}

.documents {
    width: 100%;
    padding-bottom: 100px;
}

.document-list {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-left: 0;
}

.document-list li {
    position: relative;
    list-style: none;
}

.document-list li img {
    margin-left: 10px;
    top: 8px;
    position: relative;
}

footer p {
    font-size: 16px;
    padding-bottom: 20px;
}

footer p a {
    font-size: 16px;
}


/* utils */
.device-inline {
    display: none;
}


/* media query: small-desktop */
@media(max-width: 1120px) and (min-width: 769px) {
    .inner {
        width: 100%;
        max-width: 100%;
        margin: auto;
        padding: 0 46px;
        box-sizing: border-box;
    }
}

/* media query: device landscape */
@media(max-width: 768px) {
    .header-left-shallow {
       height: 60px;
       width: 100%;
    }


    .logo {
        left: 10px;
        top: 10px;
        width: 38px;
    }

    h1.header-title {
        font-size: 16px;
        top: -100px;
    }

    .plain p {
        padding-bottom: 27px;
        font-size: 16px;
    }

    .plain a {
        font-size: 16px;
        font-family: 'gilroyregular';
    }

    .plain ol li{
        font-size: 16px;
        font-family: 'gilroyregular';
    }

    .plain ul li{
        font-size: 16px;
        font-family: 'gilroyregular';
    }

    .plain table {
        font-size: 16px;
        font-family: 'gilroyregular';
    }

    .plain {
        padding: 36px;
        box-sizing: border-box;
    }

    .tag p {
        padding-bottom: 27px;
        font-size: 16px;
    }

    .tag {
        padding: 36px;
        box-sizing: border-box;
    }

    .tag:after {
        display: block;
        position: absolute;
        content: '';
        bottom: -40px;
        left: 50%;
        margin-left: -70px;
        width: 141px;
        height: 82px;
        background: url(../holding-img/arrowhead.svg) center center no-repeat;
    }

    .faqs {
        padding: 60px 0 47 0;
    }

    .faqs h2 {
        font-size: 22px;
        text-align: center;
        padding-bottom: 24px;
    }

    .faq-items {
        display: block;
        padding: 0 36px;
        box-sizing: border-box;
    }
    
    .faq-items li, .faq-items li:nth-child(even) {
        padding: 0;
        min-height: auto;
        height: auto;
        display: block;
        border-bottom: 1px solid #DBDBDB;
        list-style: none;
    }

    .faq-items li .faq-item-inner {
        padding: 16px;
        min-height: auto;
        height: auto;
    }

    .faq-items li .faq-item-inner p {
        font-size: 12px;
        padding-bottom: 23px;
        display: none;
    }

    .faq-items li .faq-item-inner a {
        font-size: 12px;
    }

    .faq-items li .faq-item-inner p strong {
        font-size: 14px;
    }

    .faq-items li .faq-item-inner p:first-child {
        display: block;
        padding-bottom: 0;
        cursor: pointer;
        width: 100%;
        box-sizing: border-box;
        padding-right: 20px;
        position: relative;
    }

    .faq-items li .faq-item-inner p:first-child:after {
        display: block;
        position: absolute;
        content: '';
        width: 11px;
        height: 6px;
        right: 0;
        background: url(../holding-img/open-button.svg) center center no-repeat;
        top: 50%;
        margin-top: -3px;
        transition: all .4s;
    }

    .faq-items li .faq-item-inner.open p {
        display: block;
    }

    .faq-items li .faq-item-inner.open p:first-child {
        display: block;
        margin-bottom: 23px;
    }

    .faq-items li .faq-item-inner.open p:first-child:after{
        transform: rotate(180deg);
    }


    .documents {
        width: 100%;
        padding: 0 36px 47px 36px ;
        box-sizing: border-box;
    }

    .document-list li img {
        width: 10px;
    }

    .document-list a{
        font-size: 9px;
    }



    .device-hide {
        display: none;
    }

    .device-inline {
        display: inline;
    }

    footer {
        box-sizing: border-box;
        padding: 36px 36px 140px 36px;
        background-size: 60%;
    }

    footer p {
        font-size: 12px;
        padding-bottom: 27px;
    }

    footer p a{
        font-size: 12px
    }

    
}
    