:root {
  --primary: #be9d3b;
  --primary-dark: #6C5922;
  --dark-grey: #393939;
  --white: #FFFFFF;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  height: 100%;
}

body {
  background: linear-gradient(rgba(56, 56, 56, 0.8), rgba(56, 56, 56, 0.8)), url(../img/banner.gif);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

h2 {
  color: var(--primary);
}

nav {
  background: var(--black);
  width: 100%;
  height: 90px;
  text-align: center;
}

.info {
  width: 100%;
}

.left, .right {
  width: 100%;
  color: white;
  text-align: center;
  padding: 8%;
  font-size: 1.2em;
}

.left>video {
  width: 99%;
}

.left>p {
  text-align: justify;
  margin-left: 1%;
  width: 98%;
  padding: 3% 0px;
}

.right>p {
  text-align: justify;
  padding: 3% 0px;
}

.contact-form>form>input, .contact-form>form>textarea, .contact-form>form>select, .contact-form>form>button {
  width: 100%;
  height: 46px;
}

.contact-form>form>input, .contact-form>form>select, .contact-form>form>textarea {
  margin-bottom: 15px;
  padding: 5px;
  border: none;
  outline: none;
  transition: 0.3s all;
}

.contact-form>form>input:focus, .contact-form>form>textarea:focus {
  border: 3px solid var(--primary);
}

#countryName {
  display: none;
}

.contact-form>form>textarea {
  resize: none;
  height: 100px;
}

.contact-form>form>button {
  background: var(--primary);
  text-transform: uppercase;
  color: white;
  border: none;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  transition: 0.3s all;
  cursor: pointer;
}

.contact-form>form>button:hover {
  background: var(--primary-dark);
}

@media only screen and (min-width: 768px) {
  .info::after {
    content: "";
    clear: both;
    display: table;
  }
  .left, .right {
    width: 50%;
    float: left;
    padding: 3%;
  }
}
