/* Fonts
-------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Default
-------------------------------------------------- */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #000;
  background-color: #ffffff;
}

/* Text
-------------------------------------------------- */

/* Form
-------------------------------------------------- */

.form-field {
  width: 100%;
  height: 60px;
  padding: 0 30px;
  color: #AEAEAE;
  background-color: #F2F2F2;
  border: 1px #fff solid;
  border-radius: 30px;
}

textarea.form-field {
  padding: 10px;
  height: 170px;
}

/* Button
-------------------------------------------------- */

.button {
  height: 60px;
  padding: 0 80px;
  background-color: #FF6E27;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 30px;
  transition: 0.1s;
}

.button-full {
  width: 100%;
}

.button:hover {
  background-color: #173DAA;
}


/* Image
-------------------------------------------------- */

.image-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

.image-full {
  width: 100%;
  height: auto;
  display: block;
}

.image-center {
  margin: 0 auto;
}

/* Table
-------------------------------------------------- */

.table {
  width: 100%;
}

.table tr {
  border: 1px #ddd solid;
}

.table td, .table th {
  padding: 10px;
}

/* Map
-------------------------------------------------- */

.map {
  width: 100%;
  height: 350px;
  display: none;
}

/* Selection
-------------------------------------------------- */

::selection {
  background: #004f82;
  color: #fff;
}

::-moz-selection {
  background: #004f82;
  color: #fff;
}

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Responsive Emped
-------------------------------------------------- */

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

/* Alert
-------------------------------------------------- */

.alert {
  display: none;
  cursor: pointer;
}

.alert-error {
  background-color: #a51313;
  color: #fff;
  padding: 10px 15px;
  text-align: center;
}

.alert-success {
  background-color: #008403;
  color: #fff;
  padding: 10px 15px;
  text-align: center;
}

/* Extras
-------------------------------------------------- */