/* GENERAL */
html {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  line-height: 1.5;
  scroll-behavior: smooth;
}

h1, h2, h3, p {
  margin: 0;
}

/* TEXT */
.font-24 {
  font-size: 24px;
}

.font-18 {
  font-size: 18px;
}

.font-16 {
  font-size: 16px;
}

.text-thin {
  font-weight: 100;
}

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

.text-white {
  color: #FFF;
}

.text-header {
  font-size: 20px;
}

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

/* MARGIN - PADDING */
.no-margin {
  margin: 0;
}

.no-margin-top {
  margin-top: 0;
}

.m-20-0 {
  margin: 20px 0;
}

.m-t-10 {
  margin-top: 10px
}

@media (min-width: 990px) {
  .m-r-20-desktop {
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .m-b-20-mobile {
    margin-bottom: 20px;
  }
}

.p-10-0 {
  padding: 10px 0;
}

.p-20-0 {
  padding: 20px 0;
}

.p-10 {
  padding: 10px
}

.p-20 {
  padding: 20px
}

.p-b-20 {
  padding-bottom: 20px;
}

.p-b-10 {
  padding-bottom: 10px;
}

/* BACKGROUND */
.bg-gray {
  background-color: #EFEFEF;
}

.bg-yellow {
  background-color: #FFD741;
}

.bg-white {
  background-color: #FFF;
}

.bg-navy {
  background-color: #000B1C;
}

/* IMG */
.gif {
  max-width: 250px;
}

/* CONTAINER */
.container-fluid {
  width: 100%;
}

.container {
  max-width: 990px;
  margin: 0 auto;
}

@media (max-width: 989px) {
  .container {
    padding: 0 20px;
  }
}

/* OTHER */
.border-yellow {
  border: 3px solid #FFD741;
}

.vertical-line {
  height: 0;
  width: 50%;
  border: 1px solid #000;
  margin: 10px auto;
}

.overlay {
  display: block;
  position: fixed;
  background-color: rgba(255,255,255,0.85);
  width: 100%;
  height: 100%;
  top: 0;
}

/*POSITIONING*/
.center-vertically {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* SECTION - JUMBO */
.jumbo {
  padding: 50px 0;
}

/* SECTION - OFFERS */
@media (min-width: 990px) {
  .offers-container {
    display: flex;
    justify-content: space-around;
  }
}

.offers-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.offers-price-box {
  background-color: #FFD741;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  padding: 10px;
}

.offers-price-box:hover {
  background: #000B1C;
  color: #FFF;
}

/*SECTION - SIGNUP*/
@media (max-width: 767px) {
  .signup-form-flex-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .signup-form-flex-mobile input {
    margin-bottom: 10px;
  }

  .signup-form-flex-mobile input:last-of-type {
    margin-bottom: 0;
  }
}

/*SECTION - CONTACT*/
.email-address {
  cursor: pointer;
  display: inline-block;
  padding: 10px;
  border: 3px solid #FFD741;
  border-radius: 5px;
  min-width: 235px;
}

/*SECTION - FOOTER*/
.footer-ico {
  margin-right: 5px;
  width: 30px;
}

.footer-ico:last-child {
  margin-right: 0;
}
