@font-face {
  font-family: 'Futura-Med';
  src: local('FuturaMedium'),
    url('../fonts/FuturaMedium.otf') format("opentype");
}

html,
body {
  height: 100%;
  width: 100%;
  min-width: 350px;
  margin: 0;
  box-sizing: border-box;
  background-color: white;
  color: #212529;
  text-align: left;
  font-family: "Futura-Med";
}

input {
  font-family: "Futura-Med";
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}

.all-content-wrapper {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

@media all and (min-width: 1350px) {
  .main-content-wrapper {
    margin-top: 100px;
  }
}

@media all and (max-width: 1350px) {
  .main-content-wrapper {
    margin-top: 80px;
  }
}

@media all and (min-width: 900px) {
  .main-content-wrapper {
    padding-bottom: 180px;
    /* height of footer */
  }
}

@media all and (max-width: 900px) {
  .main-content-wrapper {
    padding-bottom: 280px;
    /* height of footer */
  }
}

a,
a:hover,
a:active,
a:visited,
a:focus {
  text-decoration: none;
}

.alert-warning,
.alert-success,
.alert-info {
  color: #525151;
  background-color: #e6c7c3;
  border-color: #e6c7c3;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert {
  position: relative;
}

@media all and (max-width: 400px) {
  .alert {
    margin-top: 80px;
    margin-bottom: -80px;
    padding: 3rem 1rem;
  }
}

@media all and (min-width: 400px) and (max-width: 1350px) {
  .alert {
    margin-top: 80px;
    margin-bottom: -80px;
    padding: 3rem;
  }
}

@media all and (min-width: 1350px) {
  .alert {
    margin-top: 100px;
    margin-bottom: -100px;
    padding: 3rem;
  }
}

.alert button {
  float: right;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-top: -15px;
}

.alert button:hover {
  cursor: pointer;
  float: right;
}

.container {
  padding: 0;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  box-sizing: border-box;
}

@media all and (min-width: 900px) {
  .container {
    width: 80%;
  }
}

@media all and (max-width: 900px) {
  .container {
    width: 100%;
  }
}

.text-center {
  text-align: center;
}

.blue-text {
  color: rgb(24, 95, 250);
}

.bordeaux-text {
  color: rgb(81, 29, 39);
}

.dark-grey-text {
  color: rgb(54, 53, 53);
}

.font-weight-bold {
  font-weight: bold;
}

hr.main-horizontal-line {
  margin-bottom: 40px;
  width: 60%;
  max-width: 400px;
  border: none;
  border-top: 1.5px solid rgb(226, 209, 204);
}

.btn-primary {
  /* background-color: #4285f4!important; */
  background-color: rgb(81, 29, 39) !important;
  color: #fff;
}

.btn-warning {
  background-color: #fb3 !important;
  color: #fff;
}

.btn-default {
  background-color: #2bbbad !important;
  color: #fff;
}

.btn {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16);
  padding: 0.84rem 2.14rem;
  font-size: 0.81rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  border: 0;
  border-radius: 0.125rem;
  cursor: pointer;
  text-transform: uppercase;
  white-space: normal;
  word-wrap: break-word;
}

.btn:hover {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.3), 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  color: white;
}

.float-right {
  float: right !important;
}