@font-face {
  font-family: "FeelingPassionate";
  src: url(/icon/webfonts/FeelingPassionate.otf) format("openType");
}

@font-face {
  font-family: "rumble";
  src: url(/icon/webfonts/Rumble.otf) format("openType");
}

nav h1 {
  font-family: "FeelingPassionate";
  font-size: 2.5rem;
  width: 100%;
  height: auto;
  max-width: 375px;
  font-weight: bolder;
}

header {
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

html {
  scroll-behavior: smooth;
  font-size: 80%;
  scroll-padding-top: 5.5rem;
  overflow-x: hidden;
}

body {
  align-self: center;
  width: 100%;

  flex-direction: column;
  min-height: 100vh;

  background: #2c3940;
  overflow: hidden;

  a {
    text-decoration: none;
    &:hover {
      opacity: 1;
    }
  }
}

section {
  padding: 3rem;
}

header nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

header nav span {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
section h1 {
  text-shadow: 2px 1px #e6b325;
  white-space: nowrap;
  text-overflow: ellipsis;
}

 {
  box-sizing: border-box;
}

.buttons-con {
  margin-left: 5px;
}

input[type="text"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  font-weight: 500;
}

.map iframe {
  place-items: center;
  width: 100%;
  height: 100%;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  margin: auto;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 3fr);
  max-width: 960px;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-direction: column;
}

h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
  position: flex;
  font-weight: 300;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
  position: flex;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 964px) {
  .container {
    margin: 0 auto;
    width: 90%;
    margin-top: 2rem !important;
  }
}

@media screen and (max-width: 700px) {
  .container {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem !important;
  }
  .map iframe {
    height: 400px;
  }
}

//

*,
*:before,
*:after {
  box-sizing: border-box;
}

.btnSubmit {
  position: absolute;
  transform: scale(1);
  align-content: right;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

.btnSubmit {
  display: block;
  width: 135px;
  height: 35px;
  line-height: 30px;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  border: 3px solid seagreen;
  color: seagreen;
  font-size: 15px;
  font-family: arial;
  position: relative;
  overflow: hidden;
  background: transparent;
  text-transform: uppercase;
  transition: all 0.35s;
}

.btnSubmit:before,
.btnSubmit:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  background: seagreen;
  z-index: -1;
  transition: all 0.15s;
}

.btnSubmit:before {
  opacity: 0.5;
}

.btnSubmit:after {
  transition-delay: 0.2s;
}

.btnSubmit:hover {
  color: #fff;
}

.btnSubmit:hover:before,
.btnSubmit:hover:after {
  top: 0;
}

@media screen and (max-width: 690px) {
  .container {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem !important;
  }
  .map iframe {
    height: 400px;
  }
}
