@font-face {
  font-family: "GothamBold";
  src: url("fonts/Gotham-Bold.svg#Gotham-Bold") format("svg"),
    url("fonts/Gotham-Bold.ttf") format("truetype"),
    url("fonts/Gotham-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "GothamBook";
  src: url("fonts/Gotham-Book.svg#Gotham-Bold") format("svg"),
    url("fonts/Gotham-Book.ttf") format("truetype"),
    url("fonts/Gotham-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  padding: 0px;
  margin: 0px;
  background-color: #FFF;
}

* {
  font-family: Arial;
}

a {
  text-decoration: none;
}

.enterbtn {
  color: #000;
  font-size: 28px;
  text-transform: uppercase;
  background-color: #ddc699;
  padding: 15px 50px;
  border-radius: 10px;
  font-weight: 700;
  margin-top: 10%;
  border:0px;
  cursor:pointer;
}
.section {
  text-align: center;
}
.flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.align-i-center {
  align-items: center;
}
.align-i-start {
  align-items: flex-start;
}
#section1,
#section2,
#section3,
#section4 {
  background-image: url("assets/images/back-landscape.jpg");
  object-fit: cover;
}

.header {
  height: 256px;
}
#section2 .pp-tableCell,
#section3 .pp-tableCell,
#section4 .pp-tableCell {
  vertical-align: bottom;
}
.section-container {
  background-color: #FFF;
  height: calc(100vh - 120px);
  width: 100%;
}
#logo {
  top: 10px;
  position: relative;
}

#section1 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

#section2 .title {
  padding-top: 50px;
}

#section1 #logo {
  width: initial;
}
.title {
  color: #b0b0b0;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 100px;
}

.sub-container {
  width: 90%;
  margin: auto;
  margin-top: 50px;
  max-width: 760px;
}

.mini-title {
  color: #b0b0b0;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 45px;
}

.sub-container span {
  color: #b0b0b0;
  font-size: 22px;
  font-weight: 700;
}
input[type="text"],
input[type="email"] {
  height: 50px;
  width: 400px;
  padding: 0 10px;
  font-size: 16px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input.error {
  outline: none !important;
  border: solid 1px #ba0000;
}
input[type="file"] {
  display: none;
}
label.error {
  display: none !important;
}
#take-pic {
  width: 100px;
  margin-top: 58px;
}
.click-text {
  color: #b0b0b0;
  font-size: 20px;
  width: 150px;
  text-align: center;
  margin: auto;
  margin-top: -70px;
}

.submit {
  color: #FFF;
  background-color: #ddc699;
  width: 200px;
  height: 55px;
  border-radius: 10px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 35px;
}
.terms {
  margin-top: 20px;
  color: #b0b0b0;
  font-size: 14px;
  font-weight: 700;
}
.terms span{
  color: #4850bc !important;
  background: none;
  border: 0px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.conditions {
  font-size: 18px;
  color: #b0b0b0;
  font-weight: 700;
  width: 85%;
  margin: auto;
  text-align: start;
  margin-top: 50px;
}

.conditions li{
  list-style-type: none;
  margin-bottom:10px;
}

#file-upload {
  cursor: pointer;
}

#close {
  float: right;
  margin-right: 70px;
  margin-top: 50px;
  background-color: #ba0000;
  border-radius: 10px;
  width: 50px;
  box-shadow: -2px 1px #fff;
  padding: 15px 0;
  cursor: pointer;
}

#snackbar {
  display: none;
  background-color: #ba0000;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0);
}

.loader {
  display: none;
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #ba0000; /* Blue */
  border-radius: 50%;
  width: 35px;
  height: 35px;
  animation: spin 2s linear infinite;
  margin: auto;
  top: 50px;
  position: relative;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 850px) {
  #section1,
  #section2,
  #section3,
  #section4 {
    background-image: url("assets/images/back-portrait.jpg");
  }
  #take-pic {
    width: 200px;
    margin-top: 72px;
  }
  input[type="text"],
  input[type="email"] {
    width: 350px;
  }
}