body {
    margin: 0 auto;
    font-family: "Frutiger LT Std", Arial, sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    overflow-x: hidden;
    hyphens:auto;
    color: #000;
    font-weight: 300;
    letter-spacing: 0.05em;
}

main {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    background-color:white;
}

h1 {
    font-size: 50px;
    line-height: 60px;
    font-family: "Frutiger LT Std", Arial, sans-serif;
    font-weight: bold;
    margin: 70px 0px 20px!important;
}

h2 {
    font-size: 35px;
    line-height: 50px;
    font-family: "Frutiger LT Std", Arial, sans-serif;
    font-weight: 300;
    margin: 30px 0px 0px;
}

* {
  box-sizing: border-box;
}

.button {
    background-color:#DE1818;
    border: solid 2px #DE1818;
    color:white;
    text-transform: uppercase;
    font-family: "Frutiger LT Std", Arial, sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 130px;
    height: 56px;
    transition: all ease-in-out 0.2s;
    margin-bottom: 50px;
}

.button:hover {
    background-color:white;
    color:#DE1818;
}

p {
  font-family: "Frutiger LT Std", Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;   
  margin-bottom: 30px;
}

.info-error {
  color: #DE1818;
}

a {
  font-family: "Frutiger LT Std", Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
  color:#DE1818;
  transition: all .2s ease;
}

a:hover {
  color:#000
}

/*
** Header
 */
header {
    box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
    position: relative;
    z-index: 2;
}
header .pageInner {
    display: flex;
    justify-content: end;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
header #logoArea {
    display: flex;
    align-items: center;
    height: 110px;
}
#logoArea img {
    height: 60px;
}

/*
** Mainpic
 */

#mainPic {
    min-height: 600px;
    width: 100%;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
}
#mainPic .mainPicTitleArea {
    position: absolute;
    background-color:rgba(0,0,0,0.36);
    left:0;
    padding:20px 20px 20px 120px;
    top:200px;
    transform:skew(-20deg, 0deg);
    margin-left:-60px;
}
#mainPic h2 {
    font-family: "Frutiger LT Std", Arial, sans-serif;
    font-size: 60px;
    line-height: 65px;
    color:white;
    text-transform: uppercase;
    transform:skew(20deg, 0deg);
    font-weight: 300;
    font-style: italic;
    margin:50px 0px;
}
@media only screen and (max-width: 1023px) {
    header #logoArea {
         height: 88px;
     }
    #logoArea img {
        height: 45px;
    }
    #mainPic {
        min-height: 527px;
    }
    #mainPic .mainPicTitleArea {
        top:160px;        
    }
    #mainPic h2 {
        font-size: 45px;
        line-height: 48px;
    }
}
@media only screen and (max-width: 766px) {
    header #logoArea {
        height: 60px;
    }
    #logoArea img {
        height: 33px;
    }
    #mainPic {
        min-height: 294px;
    }
    #mainPic h2 {
        font-size: 22px;
        line-height: 31px;
        margin:20px 0px;
    }
    #mainPic .mainPicTitleArea {
        padding:20px 20px 20px 80px;
        max-width: 100%;
        top:100px;
    }
}

/* Layout */
.content {
  display: block;
  width:100%;
  max-width:940px;
  margin:0 auto 50px;
  line-height: 20px;
  padding: 0px 20px;
  box-sizing: border-box;
}

form {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}