:root {
    --main-color: #132C69;
}

@font-face {
    font-family: 'Sassoon';
    src: url(../../fonts/Sassoon-Felt.ttf);
}

@font-face {
    font-family: 'Bonobo-Bold';
    src: url(../../fonts/Bonobo-Bold.ttf);
}

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Sassoon', sans-serif;
    color: #132C69;
}

.mt-20 {
    margin-top: 20px;
}

.mb-50 {
    margin-bottom: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.padding-two-all {
    padding: 2%;
}

header {
    padding: 50px 0px 10px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header .header_subtitle {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Sassoon', sans-serif;
    color: #132C69;
}

header .header_title {
    font-family: 'Bonobo-Bold', cursive;
    font-size: 70px;
    color: #132C69;
}

header .header_title span{
    font-size: 35px;
}

.text_title {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #132C69;
}

.text {
    font-size: 15px;
}

.upload_title {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #132C69;
    margin-bottom: 15px;
}

#verzenden {
    width: fit-content;
    background: var(--main-color);
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filepond {
    max-height: 500px;
    overflow-y: auto;
}

.upload_btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--main-color);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload_btn i{
   color: white;
   font-size: 15px;
}

.bottom_left {
    content: "";
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 300px;
    -webkit-mask-image: url(../images/floral.svg);
    mask-image: url(../images/floral.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    height: 300px;
    background: #132C69;
    transform: rotate(180deg);
}

.top_right {
    content: "";
    position: absolute;
    top: 0;
    right: 0px;
    width: 200px;
    -webkit-mask-image: url(../images/floral.svg);
    mask-image: url(../images/floral.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    height: 300px;
    background: #132C69;
}

#justified {
    max-height: 320px;
    overflow-y: auto;
}

@media (max-width: 992px){
    .top_right {
        width: 150px;
    }

    .bottom_left {
        width: 200px;
    }

    header .header_title {
        font-size: 50px;
    }
}

@media (max-width: 767px){
    .padding-two-all {
        padding: 5%;
    }

    .top_right {
        width: 100px;
    }

    header .header_title {
        font-size: 40px;
    }
}