@font-face {
  font-family: "Capture It";
  src: url("fonts/captureit.ttf");
}
* {
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
}

p {
  font-family: "Arial";
  line-height: 32px;
  font-size: 24px;
}

a {
  font-size: 16px;
  font-family: Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Capture It";
}

h3 {
  font-weight: lighter;
  font-size: 30px;
}

#header-section {
  height: 100vh;
  width: 100%;
  background-image: url("../img/head-hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding: 50px 100px;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 703px) {
  #header-section {
    padding: 25px;
    align-items: center;
    background-position: center;
  }
  #header-section img {
    align-self: flex-end;
  }
}

#head-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 50px;
  left: 100px;
}
@media screen and (max-width: 703px) {
  #head-buttons {
    left: 25px;
    right: auto;
    top: auto;
    flex-direction: row;
    bottom: 25px;
    left: 50%;
    transform: translatex(-50%);
    width: 100vw;
    justify-content: space-around;
  }
}

#login, #blog {
  width: 90px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  text-decoration: none;
  transition: 250ms ease-in-out;
}
#login:hover, #blog:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
#login span, #blog span {
  color: #000;
  transition: 250ms ease-in-out;
}
@media screen and (max-width: 703px) {
  #login, #blog {
    top: 25px;
    left: 25px;
  }
}

#login {
  margin-bottom: 10px;
}
@media screen and (max-width: 703px) {
  #login {
    margin-bottom: 0;
  }
}

#country-select {
  position: absolute;
  left: 100px;
  top: 170px;
  display: flex;
  z-index: 9;
  flex-direction: column;
}
#country-select span {
  margin-left: 5px;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 12px;
  user-select: none;
}
@media screen and (max-width: 703px) {
  #country-select {
    top: 25px;
    left: 25px;
  }
}

#country-select-inner {
  display: flex;
  cursor: pointer;
}

#dropdown-selected {
  width: 50px;
  background-size: auto 25px;
  background-position: 5px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#dropdown-selected span {
  margin-left: 55px;
  font-family: Arial, sans-serif;
}

#dropdown-arrow {
  padding: 10px;
  font-weight: bold;
  transition: 100ms ease-in-out;
  width: 20px;
  text-align: center;
  color: #000;
}

#dropdown-container {
  position: absolute;
  left: 100px;
  top: 223px;
  display: none;
}
@media screen and (max-width: 703px) {
  #dropdown-container {
    left: 25px;
    top: 148px;
  }
}

.dropdown-option {
  height: 38px;
  width: 90px;
  background-size: auto 25px;
  background-position: 5px;
  background-repeat: no-repeat;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: 100ms ease-in-out;
  text-decoration: none;
}
.dropdown-option span {
  margin-left: 55px;
  font-family: Arial, sans-serif;
  color: #000;
}
.dropdown-option:hover {
  background-color: rgba(0, 0, 0, 0.25);
}

#dropdown-uk {
  background-image: url("../img/uk.png");
}

#dropdown-us {
  background-image: url("../img/us.png");
}

#dropdown-sa {
  background-image: url("../img/sa.png");
}

#dropdown-au {
  background-image: url("../img/au.png");
}

#dropdown-nz {
  background-image: url("../img/nz.png");
}

#dropdown-ie {
  background-image: url("../img/ie.png");
}

#dropdown-ca {
  background-image: url("../img/ca.png");
}

#header-section #logo {
  max-width: 400px;
  min-width: 200px;
  width: 50%;
}

.signup-form {
  align-self: flex-start;
  width: 503px;
  max-width: 80vw;
  min-width: 334px;
  background-color: rgba(0, 0, 0, 0.5);
}
.signup-form h3 {
  text-align: center;
  margin-top: 40px;
  color: #fff;
}
@media only screen and (max-width: 703px) {
  .signup-form {
    margin-bottom: 95px;
  }
}

#intro-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background-color: #ff6a00;
}
#intro-text p {
  max-width: 1000px;
  margin-bottom: 20px;
  color: #fff;
}
#intro-text h3 {
  color: #fff;
  margin-bottom: 20px;
}
#intro-text .button {
  text-decoration: none;
  background-color: #994000;
  border-radius: 5px;
  padding: 20px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  transition: 500ms ease-in-out;
  text-align: center;
}
#intro-text .button:hover {
  background-color: #331500;
}

.image-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #46494C;
  flex-wrap: wrap;
}
.image-strip-inner img {
  width: calc(100% / 7);
}
@media only screen and (max-width: 703px) {
  .image-strip-inner img {
    width: calc(100% / 3);
  }
}
.image-strip-inner div {
  width: calc(100% / 7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-strip-inner div span {
  text-align: center;
  font-family: "Capture It";
  font-weight: lighter;
  font-size: 32px;
  color: #fff;
}
@media only screen and (max-width: 703px) {
  .image-strip-inner div {
    width: 100%;
  }
}

@media only screen and (max-width: 703px) {
  #img-7, #img-20 {
    display: none;
  }
}

.more-text {
  padding: 80px 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-text div {
  flex: 1;
  max-width: 50%;
}
.more-text div h3 {
  color: #fff;
  margin-bottom: 20px;
}
.more-text div p {
  max-width: 1000px;
  color: #fff;
}
.more-text div p a {
  color: #fff;
  line-height: 32px;
  font-size: 24px;
}
@media screen and (max-width: 703px) {
  .more-text div p p {
    margin-bottom: 40px;
  }
}
.more-text img {
  max-width: 50%;
  margin: 0 50px;
}
@media screen and (max-width: 703px) {
  .more-text {
    flex-direction: column;
  }
  .more-text img, .more-text div {
    max-width: 100%;
  }
}

#more-text-1 {
  background-color: #93ddea;
}
#more-text-1 div h3, #more-text-1 div p {
  color: #ff6a00;
}

#more-text-2 {
  background-color: #ff6a00;
}

#second-signup {
  background-color: #46494C;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #333;
  padding: 40px 0;
  flex-direction: column;
}
footer #footer-text {
  text-align: center;
  width: 800px;
  line-height: 18px;
  margin-bottom: 40px;
  max-width: 80%;
}
footer div a {
  margin: 10px;
}
footer div a img {
  height: 50px;
}
footer p {
  color: #fff;
  font-size: 12px;
  margin-top: 20px;
}
footer p a {
  color: #ff6a00;
  text-decoration: none;
  font-size: 12px;
}

.rotated {
  transform: rotate(-180deg);
}

/*# sourceMappingURL=style.css.map */
