@font-face {
    font-family: CrimsonPro;
    src: url(font/CrimsonPro);
}

@font-face {
    font-family: CrimsonTextRegular;
    src: url(font/CrimsonText-Regular);
}
@font-face {
    font-family: CrimsonTextBold;
    src: url(font/CrimsonText-Bold);
}
@font-face {
    font-family: CrimsonTextSemiBold;
    src: url(font/CrimsonText-SemiBold);
}

:root {
    --golden-brown: #BA964B;
}

html {
    margin: 0;
    font-family: CrimsonTextRegular;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
    display: none;
}
body {
    margin: 0;
    border: 5px solid var(--golden-brown);
}

.nav {
    padding-top: 10px;
    padding-bottom: 7px;
    display: flex;
    justify-content: center;
    background-color: white;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 25%);
}

.main-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 5%;
    overflow-x: hidden;
}

.title, .small-title, .subtitle, .lang-button{
    text-align: center;
    color: var(--golden-brown);
    margin: 0;
}

.title {
    font-family: CrimsonTextBold;
    font-size: 30px;
}

.subtitle {
    font-family: CrimsonTextSemiBold;
    font-size: 20px;
}

.small-title {
    text-align: left;
    font-family: CrimsonTextBold;
    font-size: 30px;
    padding-left: 40px;
}

.lang-button {
    position: absolute;
    right: 40px;
    top: 30px;
    cursor: pointer;
    font-size: 20px;
}

.paragraph1, .paragraph {
    font-family: crimsonTextSemiBold;
    color: var(--golden-brown);
    font-size: 27px;
    /* margin: 100px 0; */
}

.paragraph{
    margin: 20px 0px 120px;
    text-align: justify;
}

.paragraph1 {
    text-align: center;
    font-style: italic;
}

.text-box1, .text-box2, .text-box3, .text-box4 {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.small-title.first{
    text-align: center;
    padding-left: 0;
    position: absolute;
    left: 35px;
    top: 110px;
}

.growingline {
    margin: 0 auto;
    width: 70%;
    height: 5px;
    background-color: var(--golden-brown);
    position: relative;
    top: 30px;
}
.bannerimage {
    position: absolute;
    width: calc(100% - 8px);
    min-width: 1320px;
    transform: translateX(-50%);
    left: 50%;
    top: 0;
    z-index: -2;
}

.imagefade {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 10px);
    height: 100%;
    margin: 0 5;
    border-bottom: 400px solid white;
    background: linear-gradient(0deg, white, transparent);
    z-index: -2;
}

.paralax-image.left, .paralax-image.right{
    transform: translateY(-200px);
}

.imagefade.left, .imagefade.right{
    transform: translateY(-220px);
}

.imagefade.right {
    right: 0;
    left: unset;
    top: unset;
    width: 1200;
    height: 100%;
    margin: 0 5;
    border-left: 100px solid white;
    border-bottom: unset;
    background: linear-gradient(90deg, white, transparent);
}

.imagefade.left {
    transform: translateY(-280px);
    left: 0;
    top: unset;
    width: 900;
    height: 100%;
    margin: 0 5;
    border-right: 100px solid white;
    border-bottom: unset;
    background: linear-gradient(-90deg, white, transparent);
}
.paralax-image {
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 25%);
    
    z-index: -2;
}
.paralax-image.left {
    transform: translateY(-250px);
    position: absolute;
    left: 0;
    width:900;
}

.paralax-image.right {
    position: absolute;
    right: 0;
    width:1200;
}

.paragraph.last {
    text-align: center;
    /* padding-bottom: 100px; */
}

.footer {
    display: flex;
    padding: 30px 3%;
    justify-content: center;
    background: #BA964B67;
}

body.fr .en {
    display: none;
}

body.en .fr {
    display: none;
}

.footer .small-title {
    padding: 0 16px;
}

.footer img {
    width: 30px;
    padding-right: 8px;
}

.paragraph.second{
    padding-right: 300px;
}

.paragraph.third{
    padding: 0 150px;
}

.paragraph.forth{
    padding-left: 300px;
}

.small-title.third{
    padding-left: 180px;
}

.small-title.forth{
    padding-left: 340px;
}

@media screen and (max-width: 900px) {
    .paragraph.second, .paragraph.third, .paragraph.forth{
        padding: 0;
    }

    .small-title.third, .small-title.forth{
        padding-left: 0;
    }

    .small-title{
        font-size: 25px;
    }

    .paragraph1 , .paragraph {
        font-size: 20px;
    }
    .footer{
        padding: 20px 3%;
        display: flex;
        flex-direction: column;
    }

    .footer .small-title {
        font-size: 20px;
        margin: 8px 0;
        display: flex;
        justify-content: center;
    }

    .lang-button {
        position: absolute;
        right: 15px;
        top: 12px;
    }

    .title {
        font-size: 23px;
    }

    .subtitle {
        font-size: 18px;
    }

    .small-title.first {
        text-align: center;
        padding-left: 0;
        position: relative;
        left: 0;
        top: 0px;
    }

    .paragraph1{
        margin-bottom: 100px;
    }
  }
