/*
--------------------------------------------------------------------------------
  LAYOUT
--------------------------------------------------------------------------------
*/

:root {
  --bs-light-rgb: 255, 255, 255;
  --bs-gray: #818286;

  --bs-nav-link-font-size: 0.75rem;
  --bs-nav-link-font-weight: 400;

  --bs-body-font-size: 0.9rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.25;
}

html {
  font-size: 1rem;
  overflow-x: hidden;
}

body {
  background: #fff;
  color: #000;
  font-family: 'Helvetica', sans-serif;
  min-height: 100vh;
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Newsreader', serif;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  color: #000;
  margin-bottom: 1.5rem;
}

h1, .h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2, .h2 {
  font-size: 1rem;
  color: var(--bs-gray);
}

h3, .h3 {
  font-size: 1rem;
  line-height: 1.58;
}

a {
  color: #B0B0B0;
}

a.active,
a:active,
a:focus,
a:hover {
  color: #fff;
  text-decoration: none;
}

p {
  margin-bottom: 1.5rem;
}

b, strong {
  font-weight: 600;
}

u {
  font-weight: bold;
  color: #fff;
}

i {
  font-style: italic;
}

img {
  height: auto !important;
  max-width: 100% !important;
}

iframe {
  max-width: 100%;
}

/*
--------------------------------------------------------------------------------
  HEADER
--------------------------------------------------------------------------------
*/
.navbar {
  --bs-navbar-color: rgba(0, 0, 0, 0.4);
  --bs-navbar-active-color: rgb(0, 0, 0, 1);
}

.navbar > .container {
  max-width: calc(848px + var(--bs-gutter-x));
}

.nav-link > span {
  color: #000;
}

.flag-gb::before {
  content: url(../images/GB.svg);
  margin-right: 0.3125rem;
}

.flag-es::before {
  content: url(../images/ES.svg);
  margin-right: 0.3125rem;
}



/*
--------------------------------------------------------------------------------
  MAIN CONTENT
--------------------------------------------------------------------------------
*/
#main {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#main > .container {
  max-width: calc(480px + var(--bs-gutter-x));
}

.btn {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.2;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}



/*
--------------------------------------------------------------------------------
  FOOTER
--------------------------------------------------------------------------------
*/
#footer {
  background-color: var(--bs-gray);
  padding: 0.75rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.25;
}


/*
--------------------------------------------------------------------------------
  SMALL DEVICES
--------------------------------------------------------------------------------
*/
@media (max-width: 767.98px) { 

  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .navbar-brand {
    max-width: 110px;
    padding-top: 0;
    padding-bottom: 0;
  }

  #footer {
    font-size: 0.6875rem;
    line-height: 0.8125rem;
    padding-left: 0;
    padding-right: 0;
  }

  #footer > .container {
    --bs-gutter-x: 0;
  }
  
}