.color-red {
  color: #e1000f !important;
}

.color-black {
  color: #3b3b3b !important;
}

body {
  font-family: body;
  font-weight: 400;
  color: #3b3b3b;
}
body a {
  color: #e1000f;
  text-decoration: none;
}
body a:hover {
  text-decoration: underline;
}

/* header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 19999;
  background-color: #eff3f6;
  padding: 0 0.5rem;
  border: 0;
}
@media (min-width: 768px) {
  header {
    padding: 0 1rem;
    height: 64px;
  }
}
header .hamburger {
  transform: scale(0.65);
  padding: 0;
  padding-top: 8px;
}
@media (min-width: 768px) {
  header .hamburger {
    /*display: none;*/
  }
}
header .brand {
  display: block;
}
header .brand img {
  display: block;
  height: 32px;
}
@media (min-width: 768px) {
  header .brand img {
    height: 36px;
  }
}
header .nav {
  position: fixed;
  top: 60px;
  left: 100%;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: #eff3f6;
  z-index: 1999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
header .nav.open {
  left: 0;
}
header .nav .nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 2rem;
  color: #3b3b3b;
}
@media (min-width: 768px) {
  header .nav .nav-link {
    font-size: 1.5rem;
  }
}
header .nav .nav-link:hover {
  color: #e1000f;
}

/* footer */
footer {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #3b3b3b;
  color: #fff;
  padding: 1rem 0;
}
@media (min-width: 768px) {
  footer {
    padding: 2rem 0;
  }
}
footer .social-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  footer .social-links {
    justify-content: start;
  }
}
footer .social-links a {
  padding: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
}
footer .social-links a:hover {
  color: #e1000f;
}
footer .legal-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  footer .legal-links {
    align-items: end;
  }
}
footer .legal-links a {
  color: #fff;
  text-decoration: none;
}
footer .legal-links a:hover {
  color: #e1000f;
}

/* section */
section {
  padding: 3rem 0;
}
section.hero {
  width: 100%;
  padding: 0;
  padding-bottom: 110%;
  background-image: url("../pics/hero_mobile.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 60px;
}
@media (min-width: 768px) {
  section.hero {
    background-image: url("../pics/hero_desktop.jpg");
    padding-bottom: 28%;
    margin-top: 64px;
  }
}
section.hero.ferias {
  background-image: url("../pics/form_hero_mobile.jpg");
}
@media (min-width: 768px) {
  section.hero.ferias {
    background-image: url("../pics/form_hero_desktop.jpg");
  }
}
section.hero-ferias {
  width: 100%;
  padding: 0;
  margin-top: 60px;
}
@media (min-width: 768px) {
  section.hero-ferias {
    margin-top: 64px;
  }
}
section.hero-ferias .hero-desktop {
  display: none;
}
@media (min-width: 768px) {
  section.hero-ferias .hero-desktop {
    display: block;
    width: 100%;
    padding-bottom: 28%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}
section.hero-ferias .hero-mobile {
  width: 100%;
  padding-bottom: 110%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  section.hero-ferias .hero-mobile {
    display: none;
  }
}
section.search {
  padding: 1rem 0;
  background-color: #f1f5f9;
}
section.search .form-search .input-group {
  background-color: #fff;
}
section.results {
  background-color: #fff;
}
section.results .accordion .accordion-button {
  background-color: transparent;
  color: #3b3b3b;
  font-family: headings;
  font-weight: 700;
  font-size: 1.5rem;
}
section.results .accordion .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #e1000f;
}
section.results .accordion .accordion-button:not(.collapsed):after {
  filter: brightness(0) invert(1);
}
section.results .accordion .accordion-button:focus {
  border: none;
  box-shadow: none;
}
section.results .card {
  border-radius: 0;
}
section.results .card .card-img-top {
  border-radius: 0 !important;
  display: none;
}
section.results .card .card-image {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
section.results .card .card-title {
  font-size: 1.2rem;
  line-height: 1.1;
}
section.results .card .card-text {
  font-weight: 100;
  font-size: 0.9rem;
  line-height: 1.1;
  color: #6e8289;
}
section.results .card .card-footer {
  border-top: none;
  padding-top: 0;
}
section.results .card .card-footer a {
  color: #e1000f;
  text-decoration: none;
}
section.results .card .card-footer a:hover {
  text-decoration: underline;
}
section.results .table {
  margin-bottom: 0;
}
section.results .table tr:last-of-type td {
  border: none !important;
}
section.results .table tr td {
  padding: 1rem 0.5rem;
  vertical-align: middle;
  color: #313a3d;
}
section.results .table tr td .title {
  display: block;
  line-height: 1.1;
}
section.results .table tr td .description {
  display: block;
  font-size: 0.9rem;
  font-weight: 100;
  line-height: 1.1;
  color: #6e8289;
  margin-top: 0.5rem;
}
section.results .download {
  color: #e1000f;
  text-decoration: none;
  white-space: nowrap;
}
section.results .download:hover {
  text-decoration: underline;
}
section.results .results {
  background-color: #f1f5f9;
  padding: 1rem;
}
section.products {
  background-color: #f1f5f9;
}
section.products .accordion .accordion-button {
  background-color: transparent;
  color: #3b3b3b;
  font-family: headings;
  font-weight: 700;
  font-size: 1.5rem;
}
section.products .accordion .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #e1000f;
}
section.products .accordion .accordion-button:not(.collapsed):after {
  filter: brightness(0) invert(1);
}
section.products .accordion .accordion-button:focus {
  border: none;
  box-shadow: none;
}
section.products .card {
  border-radius: 0;
}
section.products .card .card-img-top {
  border-radius: 0 !important;
  display: none;
}
section.products .card .card-image {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
section.products .card .card-title {
  font-size: 1rem;
  line-height: 1.1;
}
section.products .card .card-text {
  font-weight: 100;
  font-size: 0.9rem;
  line-height: 1.1;
  color: #6e8289;
}
section.products .card .card-footer {
  border-top: none;
  padding-top: 0;
}
section.products .card .card-footer a {
  color: #e1000f;
  text-decoration: none;
}
section.products .card .card-footer a:hover {
  text-decoration: underline;
}
section.products .table {
  margin-bottom: 0;
}
section.products .table tr:last-of-type td {
  border: none !important;
}
section.products .table tr td {
  padding: 1rem 0.5rem;
  vertical-align: middle;
  color: #313a3d;
}
section.products .table tr td .title {
  display: block;
  line-height: 1.1;
}
section.products .table tr td .description {
  display: block;
  font-size: 0.9rem;
  font-weight: 100;
  line-height: 1.1;
  color: #6e8289;
  margin-top: 0.5rem;
}
section.products .download {
  color: #e1000f;
  text-decoration: none;
  white-space: nowrap;
}
section.products .download:hover {
  text-decoration: underline;
}
section.products .results {
  background-color: #fff;
  padding: 1rem;
}
section.countries {
  background-color: #fff;
}
section.countries .accordion .accordion-button {
  background-color: #f1f5f9;
  color: #3b3b3b;
  font-family: headings;
  font-weight: 700;
  font-size: 1.5rem;
}
section.countries .accordion .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #e1000f;
}
section.countries .accordion .accordion-button:not(.collapsed):after {
  filter: brightness(0) invert(1);
}
section.countries .accordion .accordion-button:focus {
  border: none;
  box-shadow: none;
}
section.countries .card {
  border-radius: 0;
}
section.countries .card .card-img-top {
  border-radius: 0 !important;
  display: none;
}
section.countries .card .card-image {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
section.countries .card .card-title {
  font-size: 1.2rem;
  line-height: 1.1;
}
section.countries .card .card-text {
  font-weight: 100;
  font-size: 0.9rem;
  line-height: 1.1;
  color: #6e8289;
}
section.countries .card .card-footer {
  border-top: none;
  padding-top: 0;
}
section.countries .card .card-footer a {
  color: #e1000f;
  text-decoration: none;
}
section.countries .card .card-footer a:hover {
  text-decoration: underline;
}
section.countries .table {
  margin-bottom: 0;
}
section.countries .table tr:last-of-type td {
  border: none !important;
}
section.countries .table tr td {
  padding: 1rem 0.5rem;
  vertical-align: middle;
  color: #313a3d;
}
section.countries .table tr td .title {
  display: block;
  line-height: 1.1;
}
section.countries .table tr td .description {
  display: block;
  font-size: 0.9rem;
  font-weight: 100;
  line-height: 1.1;
  color: #6e8289;
  margin-top: 0.5rem;
}
section.countries .download {
  color: #e1000f;
  text-decoration: none;
  white-space: nowrap;
}
section.countries .download:hover {
  text-decoration: underline;
}
section.countries .results {
  background-color: #f1f5f9;
  padding: 1rem;
}
section .files {
  background-color: #f1f5f9;
}
section .files .table {
  margin-bottom: 0;
}
section .files .table tr:last-of-type td {
  border: none !important;
}
section .files .table tr td {
  vertical-align: middle;
  color: #313a3d;
}
section .files .table tr td .title {
  display: block;
  line-height: 1.1;
}
section .files .table tr td .description {
  display: block;
  font-size: 0.9rem;
  line-height: 1.1;
  color: #6e8289;
  margin-top: 0.5rem;
}
section .files .download {
  color: #e1000f;
  text-decoration: none;
  white-space: nowrap;
}
section .files .download:hover {
  text-decoration: underline;
}

/* tipography */
h1 {
  font-family: headings;
  font-weight: 700;
  font-size: 2.5rem;
  /*span {
    display: inline-block;
    padding: .5rem 1rem;
    background-color: $color-red;
    color: #fff;
  }*/
}

h2 {
  font-family: headings;
  font-weight: 700;
  color: #e1000f;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* form-search */
.form-search {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-search .input-group {
  border-radius: 60px;
  max-width: 500px;
  background-color: #f1f5f9;
}
.form-search .input-group .form-control {
  border: none;
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
  height: 60px;
  padding-left: 1.5rem;
  margin-right: 0.25rem;
  font-size: 1rem;
  background-color: transparent;
}
@media (min-width: 768px) {
  .form-search .input-group .form-control {
    font-size: 1.25rem;
  }
}
.form-search .input-group .form-control:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.form-search .input-group .btn-search {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e1000f;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 60px;
  border-top-left-radius: 60px !important;
  border-bottom-left-radius: 60px !important;
  padding: 0;
  width: 60px;
  height: 60px;
}
.form-search .input-group .btn-search:hover {
  background-color: #3b3b3b;
}

/* buttons */
.btn {
  font-family: body;
  font-weight: 700;
  border-radius: 46px;
  padding: 12px 20px;
  border: none;
}
.btn.btn-sm {
  padding: 0.55rem 1rem 0.4rem;
  font-weight: 400;
}
.btn.btn-warning {
  background-color: #e1000f;
  color: #fff;
}
.btn.btn-warning:hover {
  background-color: #b4000c;
  color: #fff;
  text-decoration: none;
}
.btn.btn-secondary {
  background-color: #fff;
  color: #3b3b3b;
}
.btn.btn-secondary:hover {
  background-color: #700008;
  color: #fff;
  text-decoration: none;
}
.btn.btn-info {
  background-color: #3b3b3b;
  color: #fff;
}
.btn.btn-info:hover {
  background-color: #878787;
  color: #fff;
  text-decoration: none;
}

.text-link {
  font-family: headings;
  font-weight: 700;
  color: #3b3b3b;
}
.text-link:hover {
  color: #e1000f;
}

/*# sourceMappingURL=common.css.map */
