body {
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  background-color: #EBEBEB;
  margin: 0;
}

nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  /* background-image: linear-gradient(rgba(1, 22, 39, 0.8),rgba(0, 0, 0, 0)); */
}

.logo {
  margin: 10px;
  transition: 0.3s;
  padding: 0;
}

.logo svg {
  width: 75px;
  height: 75px;
  display: block;
}

.hwk-logo-h {
  fill: #FFFFFF;
  transition: 0.3s;
}

.hwk-logo-h:hover {
  fill: #E71D36;
  cursor: pointer;
}

.hwk-logo-h:active {
  fill: #B91327;
}

.hwk-logo-w {
  fill: #E71D36;
  transition: 0.3s;
}

.hwk-logo-w:hover {
  fill: #FFFFFF;
  cursor: pointer;
}

.hwk-logo-w:active {
  fill: #B91327;
}

.hwk-logo-k {
  fill: #FFFFFF;
  transition: 0.3s;
}

.hwk-logo-k:hover {
  fill: #E71D36;
  cursor: pointer;
}

.hwk-logo-k:active {
  fill: #B91327;
}

.nav-bar {
  color: #FFFFFF;
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  text-transform: uppercase;
  font-size: 23px;
  align-items: center;
  margin: 0px 10px 0px 0px;
  font-weight: 500;
}

.nav-bar-list {
  color: #FFFFFF;
  margin: 0px 10px;
  transition: 0.3s;
}

.nav-bar-list:hover {
  color: #E71D36;
  cursor: pointer;
}

.nav-bar-list:active {
  color: #B91327;
  cursor: pointer;
}

a {
  text-decoration: none;
}

.hero {
  background-image: linear-gradient(rgba(1, 22, 39, 0.3), rgba(1, 22, 39, 0.3)), url(images/kalex-jerez-hero.jpg);
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100vh;
  width: 100%;
}

.hero-photos {
  background-color: #011627;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 300px;
  width: 100%;
}

.hero-text-background {
  /* background-image: linear-gradient( to right, rgba(1, 22, 39, 0.0), rgba(1, 22, 39, 0.9), rgba(1, 22, 39, 0.0)); */
  margin: 40vh 0 0 0;
  padding: 4px 0 0;
}

.hero-text {
  color: #FFFFFF;
  display: flex;
  justify-content: space-around;
  text-align: center;
  text-transform: uppercase;
  font-size: 60px;
  line-height: 70px;
}

.hero-photos-text {
  color: #FFFFFF;
  display: flex;
  justify-content: space-around;
  text-align: center;
  text-transform: uppercase;
  font-size: 60px;
  line-height: 70px;
  padding: 35px 0 0 0;
}

.hero-info {
  color: #E71D36;
  display: flex;
  justify-content: space-around;
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 40px;
}

.hero-arrow {
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  transition: 0.3s;
}

.hero-arrow i {
  color: #FFFFFF;
  font-size: 20px;
  text-decoration: none;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.hero-arrow i:hover {
  color: #E71D36;
}

.hero-arrow i:active {
  color: #B91327;
}

h1 {
  margin: 0;
}

p {
  margin: 0;
}

.photos {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.photos-title {
  color: #000000;
  display: flex;
  justify-content: space-around;
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 50px;
  margin: 5px 0;
}

.photos-row {
  display: flex;
  flex-direction: row;
  margin: 0 4px 0 0;
}

.photos-column {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 4px;
}

.photos-column img {
  width: 100%;
  border-radius: 10px;
}

#myImg {
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(1, 22, 39, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 75%;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #FFFFFF;
  padding: 10px 0;
  height: 150px;
}

.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #FFFFFF;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover {
  color: #E71D36;
  text-decoration: none;
  cursor: pointer;
}

.close:focus {
  color: #B91327;
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}

.graphics {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.graphics-title {
  color: #000000;
  display: flex;
  justify-content: space-around;
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 50px;
  margin: 5px 0;
}

footer {
  background-color: #011627;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.footer-nav {
  color: #FFFFFF;
  list-style-type: none;
  text-align: center;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 30px;
  padding: 0px;
  line-height: 30px;
  margin: 0 0 15px 0;
}

.footer-nav-list {
  color: #FFFFFF;
  margin: 0 20px;
  transition: 0.3s;
}

.footer-nav-list:hover {
  color: #E71D36;
  cursor: pointer;
}

.footer-nav-list:active {
  color: #B91327;
  cursor: pointer;
}

.footer-info {
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  text-align: center;
}

.photos-page-row {
  display: flex;
  flex-direction: row;
  margin: 0 4px 4px 0;
}

.photos-page-column {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 4px;
}

.photos-page-column img {
  width: 100%;
  margin: 4px 0 0 0;
  border-radius: 10px;
}

.calc-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}

.calc-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  width: 320px;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 400px;
}

.calc-column h1 {
  text-transform: uppercase;
  margin: 10px 0 0;
}

.calc-column h3 {
  line-height: 0px;
  font-weight: 500;
}

.calc-column input {
  font-weight: 500;
  font-size: 18px;
  width: 200px;
  border-radius: 20px;
  text-align: center;
  border: solid black 2px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.calc-column input:hover {
  border: solid #E71D36 2px;
}

.calc-column input:focus {
  outline: none;
  border: solid #FF9F1C 2px;
}

.calc-column i {
  margin: 10px;
  font-size: 40px;
  color: #E71D36;
  align-content: center;
  transition: 0.3s;
}

.calc-column i:hover {
  cursor: pointer;
  color: #B91327;
}

.calc-column i:active {
  text-shadow: 0px 0px 1px black;
}

.ans-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 120px;
}

.ans-column h4 {
  color: #40515D;
  text-transform: uppercase;
  margin: 2px 0;
  line-height: 18px;
}

.ans-column p {
  margin: 2px 0;
  line-height: 14px;
}

.spreadsheet-row {
  width: 100%;
  background-color: #011627;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.spreadsheet-column {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.spreadsheet-column h1 {
  text-transform: uppercase;
}

.spreadsheet-column h4 {
  margin: 0;
  font-weight: 500;
}

.spreadsheet-column i {
  margin: 10px;
  font-size: 40px;
  color: #E71D36;
  align-content: center;
  transition: 0.3s;
}

.spreadsheet-column i:hover {
  cursor: pointer;
  color: #B91327;
}

.spreadsheet-column i:active {
  text-shadow: 0px 0px 2px #213442;
}

.nav-map {
  background-color: #011627;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

#map {
  height: 100vh;
  background-color: #EBEBEB;
}