*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica", Arial, sans-serif;
  outline: none;
}

body{
  width: 100%;
  height: 100%;
}

header{
  width: 100%;
  height: 60px;
  background: #000;
  position: fixed;
  top: 0;
  z-index: 9000;
}

header nav{
  width: 100%;
  height: 60px;
  padding: 0px 120px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

header nav .logo{
  color: #000;
  text-decoration: none;
  height: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

header nav .logo img{
  height: 50%;
}

.container{
  width: 100%;
  padding: 0px 120px;
  position: relative;
}

#importSection{
  width: 100%;
  height: auto;
}

#fullscreenImg{
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#fullscreenImg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#startContent{
  width: 100%;
  height: auto;
  padding: 50px 0 100px 0;
}

#startContent h1{
  font-weight: 800;
  font-size: 35px;
}

#startContent p{
  margin-top: 25px;
  font-size: 18px;
}

#invitationSection{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 100px;
  padding-bottom: 100px;
}

#invitationSection .invitationHeader{
  width: 100%;
  height: auto;
}

#invitationSection .invitationHeader h1{
  font-size: 20px;
  font-weight: 600;
}

#invitationSection .invitationHeader h3{
  font-size: 16px;
  font-weight: 300;
}

#invitationSection .imgBox{
  width: 100%;
  height: 500px;
  margin-top: 40px;
}

#invitationSection .imgBox img{
  object-fit: cover;
  object-position: center 20%;
  width: 100%;
  height: 100%;
  position: relative;
}

#invitationSection .contentSection{
  width: 100%;
  height: auto;
  margin-top: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

#invitationSection .contentSection .headline{
  font-size: 25px;
  font-weight: 600;
}

#invitationSection .contentSection .informationText{
  font-size: 16px;
  font-weight: 400;
  color: #F06E00;
  margin-top: 2px;
}

#invitationSection .contentSection .contentRow:nth-child(1){
  margin-top: 50px;
}

#invitationSection .contentSection .contentRow{
  width: 100%;
  height: auto;
  margin-top: 90px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#invitationSection .contentSection .contentRow .contentBox{
  width: 35%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

#invitationSection .contentSection .contentRow .contentBox.alignRight{
  align-items: flex-end;
}

#invitationSection .contentSection .contentRow .contentBox.alignRight p{
  text-align: right;
}

#invitationSection .contentSection .contentRow .contentBox.contentBoxSmall{
  width: 35%;
}

#invitationSection .contentSection .contentRow .contentBox.contentBoxBig{
  width: 60%;
}

#invitationSection .contentSection .contentRow .contentBox h3{
  font-size: 23px;
  font-weight: 500;
  padding-bottom: 7px;
}

#invitationSection .contentSection .contentRow .contentBox p{
  font-size: 17px;
  font-weight: 300;
}

#invitationSection .contentSection .contentRow .contentBox .boldText{
  font-weight: 600;
}

#invitationSection .contentSection .contentRow .contentBox ul{
  width: 100%;
  height: auto;
  list-style: disc;
}

#invitationSection .contentSection .contentRow .contentBox ul li{
  font-size: 17px;
  font-weight: 300;
  margin-left: 20px;
  padding-left: 4px;
  margin-top: 10px;
}

#invitationSection .contentSection .contentRow .contentBox ul li::marker{
  color: #F06E00;
  font-size: 1.3em;
}

#invitationSection .contentSection .invitationForm{
  margin-top: 50px;
  position: relative;
}

#invitationSection .contentSection .invitationForm .formRow:nth-child(1){
  margin-top: 0px;
}

#invitationSection .contentSection .invitationForm .formRow{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  margin-top: 30px;
}

#invitationSection .contentSection .invitationForm .formRow.row-2{
  justify-content: space-between;
}

#invitationSection .contentSection .invitationForm .formRow .formItem{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
}

#invitationSection .contentSection .invitationForm .formRow.row-2 .formItem{
  width: 48%;
}

#invitationSection .contentSection .invitationForm .formRow .formItem label{
  font-size: 15px;
  color: #000;
  font-weight: 600;
}

#invitationSection .contentSection .requiredLabel{
  color: #F06E00;
  margin-left: 5px;
}

#invitationSection .contentSection .invitationForm .formRow .formItem input,
#invitationSection .contentSection .invitationForm .formRow .formItem textarea,
#invitationSection .contentSection .invitationForm .formRow .formItem select{
  width: 100%;
  height: 45px;
  color: #000;
  border: 1px solid #F5F5F5;
  background: #F5F5F5;
  outline: none;
  padding: 0px 15px;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 300;
  border-radius: 0;
  transition: 0.2s;
}


#invitationSection .contentSection .invitationForm .formRow .formItem input:focus,
#invitationSection .contentSection .invitationForm .formRow .formItem input:valid,
#invitationSection .contentSection .invitationForm .formRow .formItem select:focus,
#invitationSection .contentSection .invitationForm .formRow .formItem select:valid,
#invitationSection .contentSection .invitationForm .formRow .formItem textarea:focus,
#invitationSection .contentSection .invitationForm .formRow .formItem textarea:valid{
  border-color: #F06E00;
}

#invitationSection .contentSection .invitationForm .formRow .formItem textarea{
  height: 100px;
  padding: 15px;
}

#invitationSection .contentSection .invitationForm .formRow .formItemCheckbox{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  position: relative;
}

#invitationSection .contentSection .invitationForm .formRow .formItemCheckbox input {
  appearance: none;
  -webkit-appearance: none;
  width: 25px;
  height: 25px;
  background: #F5F5F5;
  border: 1.5px solid #000;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  border-radius: 0;
}

#invitationSection .contentSection .invitationForm .formRow .formItemCheckbox input:checked {
  background: #F5F5F5;
  border-color: #000;
}

#invitationSection .contentSection .invitationForm .formRow .formItemCheckbox input:checked::after {
  content: "✕";
  color: #000;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
}

#invitationSection .contentSection .invitationForm .formRow .formItemCheckbox label{
  font-size: 15px;
  color: #000;
  font-weight: 300;
  width: 95%;
  cursor: pointer;
}

#invitationSection .contentSection .invitationForm p{
  font-size: 15px;
  color: #000;
  font-weight: 300;
  margin-top: 30px;
}

#invitationSection .contentSection .invitationForm a{
  color: #000;
  font-weight: 400;
  text-decoration: underline;
}

.formRow-line{
  width: 100%;
  height: 2px;
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 20px;
}

.btn{
  padding: 11px 20px;
  width: auto;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 200;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  cursor: pointer;
  outline: none;
  border: 2px solid #000;
}

.btn.btn-full{
  background: #000;
  color: #fff;
  border: 2px solid #000;
}

.btn.btn-outline{
  background: none;
  color: #000;
  border: 2px solid #000;
}

.btn.btn-link{
  padding: 0;
  background: none;
  border: none;
  color: #000;
}

.arrow{
  width: 15px;
  height: 100%;
  position: relative;
  margin-left: 10px;
  transform: translateY(9px);
  padding-right: 10px;
}

.arrow.arrowLeft{
  margin-left: 0;
  transform: translateY(9px) rotateZ(180deg);
  padding-right: 10px;
}

.arrow .line1{
  width: 15px;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #F06E00;
}

.arrow .line2{
  width: 10px;
  height: 2px;
  position: absolute;
  top: 50%;
  right: -2px;
  background: #F06E00;
  transform: translateY(-200%) rotateZ(45deg);
}

.arrow .line3{
  width: 10px;
  height: 2px;
  position: absolute;
  bottom: 50%;
  right: -2px;
  background: #F06E00;
  transform: translateY(200%) rotateZ(-45deg);
}

.arrow.smallRight .line2{
  right: -4px;
}

.arrow.smallRight .line3{
  right: -4px;
}

.arrow.white .line1{
  background: #fff;
}
.arrow.white .line2{
  background: #fff;
}
.arrow.white .line3{
  background: #fff;
}
.arrow.black .line1{
  background: #000;
}
.arrow.black .line2{
  background: #000;
}
.arrow.black .line3{
  background: #000;
}

footer{
  width: 100%;
  height: auto;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

footer .container{
  padding-top: 20px;
  padding-bottom: 20px;
}

footer .row{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer .row-line{
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}

footer .row .left{
  width: 58%;
}

footer .row .right .poweredBy{
  color: #000;
  text-align: left;
  font-size: 12px;
}

footer .row .right .poweredBy img{
  height: 12px;
  width: auto;
  margin-left: 5px;
}

footer .row .right{
  width: 38%;
}

footer .row .right.poweredByElement{
  display: flex;
  justify-content: flex-end;
}

footer .row .right .socials{
  width: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

footer .row .right .socials ul{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

footer .row .right .socials ul li{
  font-size: 20px;
  margin-right: 0;
  list-style: none;
}

footer .row .right .socials ul li a{
  color: #000;
  text-decoration: none;
}

footer p{
  font-size: 14px;
  color: #000;
}

footer .row .left ul{
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

footer .row .left ul li{
  list-style: none;
  margin-left: 20px;
}

footer .row .left ul li:nth-child(1){
  margin-left: 0;
}

footer .row .left ul li a{
  font-size: 12px;
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  transition: 0.2s;
  text-decoration: none;
  text-transform: uppercase;
}

footer .row .left ul li a span{
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 100%;
}

footer .row .left ul li a:hover{
  color: #878787;
}

footer .row .left ul li a:hover span{
  width: 100%;
  background: #878787;
  animation: span 0.2s ease-in;
}

@keyframes span {
  0%{
    width: 0%;
  }
  100%{
    width: 100%;
  }
}

footer .copyright{
  font-size: 12px;
}

@media (max-width: 991px) {
  header{
    height: 50px;
  }
  
  header nav{
    height: 50px;
    padding: 0px 20px;
  }
  
  header nav .logo{
    height: 50px;
  }

  .container{
    padding: 0px 20px;
  }
  
  #startContent h1{
    font-size: 25px;
  }
  
  #startContent p{
    font-size: 16px;
  }
  
  #invitationSection .invitationHeader{
    width: 100%;
    height: auto;
  }
  
  #invitationSection .imgBox{
    width: 100%;
    height: auto;
    margin-top: 40px;
  }
  
  #invitationSection .imgBox img{
    object-position: center;
  }
  
  #invitationSection .contentSection .contentRow{
    width: 100%;
    height: auto;
    margin-top: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  
  #invitationSection .contentSection .contentRow .contentBox{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }

  #invitationSection .contentSection .contentRow .contentBox.agendaContent{
    margin-top: 50px;
  }
  
  #invitationSection .contentSection .contentRow .contentBox.alignRight{
    align-items: flex-start;
    margin-top: 50px;
  }
  
  #invitationSection .contentSection .contentRow .contentBox.alignRight p{
    text-align: left;
  }
  
  #invitationSection .contentSection .contentRow .contentBox.contentBoxSmall{
    width: 100%;
  }
  
  #invitationSection .contentSection .contentRow .contentBox.contentBoxBig{
    width: 100%;
  }

  #invitationSection .contentSection .contentRow .contentBox.contentBoxSmall h3{
    font-weight: 700;
  }
  
  #invitationSection .contentSection .contentRow .contentBox h3{
    font-size: 23px;
    font-weight: 500;
    padding-bottom: 7px;
  }
  
  #invitationSection .contentSection .contentRow .contentBox p{
    font-size: 17px;
    font-weight: 300;
  }

  #invitationSection .contentSection .invitationForm{
    margin-top: 30px;
  }
  
  #invitationSection .contentSection .invitationForm .formRow{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 0;
  }

  #invitationSection .contentSection .invitationForm .formRow.formRowBtn{
    margin-top: 50px;
    align-items: flex-end;
  }

  #invitationSection .contentSection .invitationForm .formRow.formRowBtn.formRowAlign{
    flex-direction: row;
  }
  
  #invitationSection .contentSection .invitationForm .formRow.row-2{
    justify-content: flex-start;
  }
  
  #invitationSection .contentSection .invitationForm .formRow .formItem{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    margin-top: 30px;
  }
  
  #invitationSection .contentSection .invitationForm .formRow.row-2 .formItem{
    width: 100%;
  }

  #invitationSection .contentSection .invitationForm .formRow .formItemCheckbox{
    margin-top: 30px;
  }
  
  #invitationSection .contentSection .invitationForm .formRow .formItemCheckbox label{
    font-size: 13px;
    width: 87%;
  }
  
  #invitationSection .contentSection .invitationForm p{
    font-size: 15px;
    margin-top: 30px;
  }
  
  footer .row.mobileFooter{
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  footer .row.mobileFooter .left{
    width: 100%;
    text-align: center;
  }
  
  footer .row .right .poweredBy{
    text-align: center;
  }

  footer .row.mobileFooter .right{
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
  
  footer .row .right.poweredByElement{
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 360px){
  #invitationSection .imgBox{
    height: 220px;
  }
}

@media (min-width: 361px) and (max-width: 767px){
  #invitationSection .imgBox{
    height: 400px;
  }
}

@media (max-width: 932px) and (orientation: landscape){
  #invitationSection .imgBox{
    height: 500px;
  }
}

@media (max-width: 900px) and (orientation: portrait){
  #fullscreenImg{
    height: 50vh;
  }

  #fullscreenImg .smallHeight{
    height: 35vh;
  }

  #fullscreenImg img{
    object-position: right;
  }
}