.has-fade {
  visibility: hidden;
}

@-webkit-keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

.fade-in {
  -webkit-animation: fade-in 200ms ease-in-out  forwards;
          animation: fade-in 200ms ease-in-out  forwards;
}

@-webkit-keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

.fade-out {
  -webkit-animation: fade-out 200ms ease-in-out  forwards;
          animation: fade-out 200ms ease-in-out  forwards;
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 300;
  overflow-x: hidden;
}

@media (min-width: 64em) {
  body {
    font-size: 1.25rem;
  }
}

body.noscroll {
  overflow: hidden;
}

h1, h2, h3 {
  margin-top: 0px;
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
}

h1 {
  font-size: 2.31rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 64em) {
  h1 {
    font-size: 2.31rem;
  }
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5625rem;
}

@media (min-width: 64em) {
  h2 {
    font-size: 2.25rem;
    margin-bottom: 2.25rem;
  }
}

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

.container {
  margin: 0 auto;
}

.container--pall {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.container--py {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.container--px {
  padding-right: 6rem;
  padding-left: 6rem;
}

.container--pt {
  padding-top: 2.25rem;
}

.container--pr {
  padding-right: 1.5rem;
}

.container--pl {
  padding-left: 1.5rem;
}

.container--pb {
  padding-bottom: 2.25rem;
}

.container--images {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

button, .button {
  padding: 0.875rem 1.875rem;
  background: -webkit-gradient(linear, left top, right top, from(#fde4a9), to(#c7890c));
  background: linear-gradient(to right, #fde4a9, #c7890c);
  border-radius: 50px;
  border: 0;
  cursor: pointer;
  color: #424242;
  font-weight: 400;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

@media (min-width: 40em) {
  .hide-for-tablet {
    display: none;
  }
}

.header {
  margin: 0 auto;
  background-color: #ffffff;
}

@media (min-width: 87.5em) {
  .header {
    padding-right: 10rem;
  }
}

.header.open .header__toggle > span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}

.header.open .header__toggle > span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header .overlay {
  display: none;
  position: fixed;
  z-index: 0;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e9bd44), to(transparent));
  background-image: linear-gradient(#e9bd44, transparent);
}

.header .overlay.fade-in {
  display: block;
}

.header nav {
  position: relative;
  background-color: #ffffff;
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
}

.header__logo {
  margin: 20px;
}

.header__toggle {
  margin: 20px;
}

.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #fabb28;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform-origin: 3px 1px;
          transform-origin: 3px 1px;
}

.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}

.header__menu {
  background: #e9bd44;
  padding: 1.625rem;
  border-radius: 10px;
  position: absolute;
  width: calc(100% - 3rem);
  margin-top: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.header__menu a {
  display: block;
  text-align: center;
  color: #eee9e1;
  padding: 0.625rem;
}
/* sajib */
.header__links a {
  position: relative;
  font-size: 1rem;
  color: #424242;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
  /* margin: 10px; */
  margin: 10px 5px;
}
/* sajib */
.header__links a:not(:last-child) {
  /* margin-right: 20px; */
  margin-right: 5px;
}

.header__links a::before {
  content: "";
  position: absolute;
  display: block;
  height: 5px;
  left: 0;
  right: 0;
  bottom: -5px;
  background: -webkit-gradient(linear, left top, right top, from(#fde4a9), to(#c7890c));
  background: linear-gradient(to right, #fde4a9, #c7890c);
  opacity: 0;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

.header__links a:hover {
  color: #fabb28;
}

.header__links a:hover::before {
  opacity: 1;
}

.header__cta {
  font-size: 0.875rem;
  color: #ffffff;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

.header__cta:hover {
  opacity: 0.8;
}

.hero {
  background-color: #ffffff;
}

@media (min-width: 64em) {
  .hero .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero__image {
  position: relative;
  background-image: url("../images/nigth.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 22.5rem;
  padding-bottom: 0;
}

@media (min-width: 64em) {
  .hero__image {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 10rem;
    background-image: none;
  }
}

@media (min-width: 64em) {
  .hero__image::before {
    content: "";
    position: absolute;
    height: 100%;
    background-image: url("../images/nigth.jpg");
    background-color: #fabb28;
    background-repeat: no-repeat;
    width: 100%;
    background-position: -15%;
    background-size: 135%;
  }
}

.hero__text {
  text-align: justify;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media (min-width: 64em) {
  .hero__text {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: justify;
    padding-right: 6rem;
    padding-left: 6rem;
  }
}

.hero__text h1 {
  font-weight: 300;
  font-size: 2.31rem;
  line-height: 1.15;
  color: #424242;
  margin-bottom: 1.5rem;
}

@media (min-width: 64em) {
  .hero__text h1 {
    font-size: 2.31rem;
  }
}

.hero__text h2 {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1;
  color: #424242;
  margin-bottom: 1.5rem;
}

@media (min-width: 64em) {
  .hero__text h2 {
    font-size: 1.5rem;
  }
}

.hero__text p {
  line-height: 1.5;
  margin-bottom: 2.25rem;
  font-size: 1.125rem;
  color: #424242;
}

.hero_evora {
  background-color: #fef7e5;
}

@media (min-width: 64em) {
  .hero_evora .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero_evora__image {
  position: relative;
  background-image: url("../images/evora_ident.png");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 22.5rem;
}

@media (min-width: 64em) {
  .hero_evora__image {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 10rem;
    background-image: none;
  }
}

@media (min-width: 64em) {
  .hero_evora__image::before {
    content: "";
    position: absolute;
    height: 100%;
    background-image: url("../images/evora_ident.png");
    background-color: #fabb28;
    background-repeat: no-repeat;
    width: 100%;
    background-position: 130%;
    background-size: 130%;
  }
}

@media (min-width: 87.5em) {
  .hero_evora__image::before {
    content: "";
    position: absolute;
    height: 100%;
    background-image: url("../images/evora_ident.png");
    background-color: #fabb28;
    background-repeat: no-repeat;
    width: 100%;
    background-position: 120%;
    background-size: 130%;
  }
}

.hero_evora__text {
  text-align: justify;
  padding-right: 2rem;
  padding-left: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 64em) {
  .hero_evora__text {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: justify;
    padding-right: 6rem;
    padding-left: 6rem;
  }
}

.hero_evora__text h1 {
  font-weight: 300;
  font-size: 2.31rem;
  line-height: 1.15;
  color: #424242;
  margin-bottom: 1.5rem;
}

@media (min-width: 64em) {
  .hero_evora__text h1 {
    font-size: 2.31rem;
  }
}

.hero_evora__text p {
  line-height: 1.5;
  margin-bottom: 2.25rem;
  font-size: 1.125rem;
  color: #424242;
}

.hero_network {
  background-color: #ffffff;
}

@media (min-width: 64em) {
  .hero_network .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero_network__image {
  position: relative;
  background-image: url("../images/evora_city.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 22.5rem;
  padding-bottom: 0;
}

@media (min-width: 64em) {
  .hero_network__image {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 10rem;
    background-image: none;
  }
}

@media (min-width: 64em) {
  .hero_network__image::before {
    content: "";
    position: absolute;
    height: 100%;
    background-image: url("../images/evora_city.jpg");
    background-color: #fabb28;
    background-repeat: no-repeat;
    width: 100%;
    background-position: -15%;
    background-size: 135%;
  }
}

.hero_network__text {
  text-align: justify;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media (min-width: 64em) {
  .hero_network__text {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: justify;
    padding-right: 6rem;
    padding-left: 6rem;
  }
}

.hero_network__text h1 {
  font-weight: 300;
  font-size: 2.31rem;
  line-height: 1.15;
  color: #424242;
  margin-bottom: 1.5rem;
}

@media (min-width: 64em) {
  .hero_network__text h1 {
    font-size: 2.31rem;
  }
}

.hero_network__text h2 {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1;
  color: #424242;
  margin-bottom: 1.5rem;
}

@media (min-width: 64em) {
  .hero_network__text h2 {
    font-size: 1.5rem;
  }
}

.hero_network__text p {
  line-height: 1.5;
  margin-bottom: 2.25rem;
  font-size: 1rem;
}

.bar {
  background-color: #fcd373;
  height: 15px;
  width: 100%;
}

@media (min-width: 64em) {
  .bar {
    background-color: #fcd373;
    position: relative;
  }
}

@media (max-width: 39.9375em) {
  .bar__network {
    background-color: #aea186;
    height: 15px;
    width: 100%;
    padding: 0;
  }
}

.footer {
  background-color: #ffffff;
  color: #424242;
  padding-bottom: 1rem;
  padding-top: 2.5rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  text-align: center;
}

@media (min-width: 64em) {
  .footer {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (0.25fr)[4];
        grid-template-rows: repeat(4, 0.25fr);
        grid-template-areas: "logo logo social"
 "flag flag flag "
 "copyright copyright copyright"
 "evora evora evora";
    justify-items: start;
  }
}

.footer a {
  color: #424242;
  margin-bottom: 1.5rem;
}

.footer p {
  margin-top: 0;
}

.footer__logo {
  display: block;
  text-align: left;
  font-size: 1.125rem;
  margin-left: 2rem;
}

@media (max-width: 63.9375em) {
  .footer__logo {
    margin-bottom: 1rem;
  }
}

@media (min-width: 64em) {
  .footer__logo {
    grid-area: logo;
    margin-bottom: 0;
  }
}

.footer__flag {
  text-align: center;
  font-size: 0.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 2rem;
}

@media (max-width: 63.9375em) {
  .footer__flag {
    margin-bottom: 0rem;
    margin-top: 1rem;
  }
}

@media (min-width: 64em) {
  .footer__flag {
    grid-area: flag;
  }
}

.footer__social {
  font-size: 1.125rem;
}

@media (max-width: 63.9375em) {
  .footer__social {
    margin-bottom: 1rem;
  }
}

@media (min-width: 64em) {
  .footer__social {
    grid-area: social;
    -ms-grid-column-align: center;
        justify-self: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

.footer__social a:not(:last-child) {
  display: inline-block;
  margin-bottom: 1rem;
}

@media (min-width: 64em) {
  .footer__cta {
    grid-area: cta;
    -ms-grid-column-align: end;
        justify-self: end;
  }
}

.footer__cta a.button {
  margin-bottom: 1.875rem;
}

.footer__copyright {
  text-align: left;
  -webkit-box-align: bottom;
      -ms-flex-align: bottom;
          align-items: bottom;
  font-size: 0.8rem;
  margin-left: 2rem;
}

@media (min-width: 64em) {
  .footer__copyright {
    grid-area: copyright;
    -ms-grid-column-align: start;
        justify-self: start;
  }
}

.footer__evora {
  text-align: left;
  -webkit-box-align: bottom;
      -ms-flex-align: bottom;
          align-items: bottom;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  margin-left: 2rem;
}

@media (min-width: 64em) {
  .footer__evora {
    grid-area: evora;
    -ms-grid-column-align: start;
        justify-self: start;
    margin-top: 1rem;
  }
}

.monuments {
  background-color: white;
}

@media (max-width: 39.9375em) {
  .monuments {
    background-color: #ffffff;
    padding: 2rem;
  }
}

.monuments #panel_summary div {
  margin-left: 0 !important;
  padding-left: 0 !important;
  font-size: medium !important;
  text-align: left;
}

.monument__content {
  color: #ffffff;
}

.monument__content h2 {
  color: #ffffff;
}

.monument__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 40em) {
  .monument__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 64em) {
  .monument__grid {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.monument__grid a {
  font-size: 1rem;
  color: #594e41;
  line-height: 1.5;
}

.monument__image {
  height: 12.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 39.9375em) {
  .monument__image {
    height: 20rem;
    padding: 0;
  }
}

.monument__title {
  padding: 0.5rem;
  text-align: center;
  background-color: #594e41;
  height: 4rem;
  color: #fcd373;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: bold;
}

@media (max-width: 63.9375em) {
  .monument__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 3;
    font-size: 1.125rem;
    line-height: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
}

.monument__title_circuit {
  padding: 0.5rem;
  text-align: center;
  background-color: #594e41;
  height: 4rem;
  color: #fcd373;
  font-size: 1.25rem;
  line-height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 63.9375em) {
  .monument__title_circuit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 3;
    font-size: 1.125rem;
    line-height: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
}

.maps {
  /* Set the size of the div element that contains the map */
}

.maps #mapid {
  height: 600px;
  /* The height is 400 pixels */
  width: 100%;
  /* The width is the width of the web page */
}

.maps #mapcircuit {
  height: 300px;
  /* The height is 400 pixels */
  width: 100%;
  /* The width is the width of the web page */
}

.info_monuments {
  background-color: #fef7e5;
  color: #424242;
}

.info_monuments a {
  color: #424242;
  margin: 1rem;
}

.info_monuments p {
  margin-top: 0;
}

@media (min-width: 64em) {
  .info_monuments {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.5fr 0.5fr;
        grid-template-columns: 1fr 0.5fr 0.5fr;
    -ms-grid-rows: (0.25fr)[3];
        grid-template-rows: repeat(3, 0.25fr);
        grid-template-areas: "image title title"
 "image discription discription"
 "image info info2";
    justify-items: start;
  }
}

.info_monuments__image {
  display: block;
  text-align: left;
}

@media (min-width: 64em) {
  .info_monuments__image {
    grid-area: image;
    margin-bottom: 0;
  }
}

@media (min-width: 64em) {
  .info_monuments__image img {
    height: 100%;
    width: 100%;
  }
}

@media (max-width: 63.9375em) {
  .info_monuments__image img {
    height: 25rem;
    width: 100%;
  }
}

@media (max-width: 39.9375em) {
  .info_monuments__image img {
    height: auto;
    width: 100%;
  }
}

.info_monuments__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  background-color: #fef7e5;
  color: #424242;
  font-size: 1.125rem;
  line-height: 1.5rem;
  margin: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 40em) {
  .info_monuments__title {
    grid-area: title;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    font-size: 2rem;
    line-height: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    justify-self: center;
  }
}

.info_monuments__discription {
  text-align: justify;
  background-color: #fef7e5;
  color: #424242;
  font-size: 0.875rem;
  line-height: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}

@media (min-width: 40em) {
  .info_monuments__discription {
    grid-area: discription;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.5rem;
    font-size: 1.125rem;
  }
}

.info_monuments__info {
  text-align: left;
  background-color: #fef7e5;
  color: #424242;
  font-size: 0.875rem;
  line-height: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 40em) {
  .info_monuments__info {
    grid-area: info;
    display: inline-block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.875rem;
  }
}

.info_monuments__info p {
  font-size: 0.875rem;
  padding: 0;
}

.info_monuments__info a {
  font-size: 0.875rem;
  margin: 0;
}

.info_monuments__info2 {
  text-align: left;
  background-color: #fef7e5;
  color: #424242;
  font-size: 0.875rem;
  line-height: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1rem;
}

@media (min-width: 40em) {
  .info_monuments__info2 {
    grid-area: info2;
    display: inline-block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.875rem;
  }
}

.info_monuments__info2 p {
  font-size: 0.875rem;
  padding: 0;
}

.info_monuments__info2 a {
  font-size: 0.875rem;
  margin: 0;
}

.info_circuits {
  background-color: #fef7e5;
  color: #424242;
}

.info_circuits a {
  color: #424242;
  margin: 1rem;
  background-color: #fef7e5;
}

.info_circuits p {
  margin-top: 0;
  background-color: #fef7e5;
}

@media (min-width: 64em) {
  .info_circuits {
    background-color: #fef7e5;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: ()[2];
        grid-template-rows: repeat(2);
        grid-template-areas: "title mapa"
 "discription mapa";
    justify-items: start;
  }
}

.info_circuits__map {
  display: inline-block;
  text-align: right;
  /* The height is 400 pixels */
  width: 100%;
}

@media (min-width: 64em) {
  .info_circuits__map {
    grid-area: mapa;
    margin-bottom: 0;
    height: 480px;
  }
}

.info_circuits__map #map {
  height: 480px;
}

.info_circuits__button {
  text-align: left;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  padding-top: 1rem;
}

@media (min-width: 64em) {
  .info_circuits__button {
    -webkit-padding-start: 3rem;
            padding-inline-start: 3rem;
  }
}

.info_circuits__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  background-color: #fef7e5;
  color: #424242;
  font-size: 1.125rem;
  line-height: 2rem;
  padding: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 40em) {
  .info_circuits__title {
    background-color: #fef7e5;
    grid-area: title;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    font-size: 2rem;
    line-height: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    justify-self: center;
  }
}

@media (min-width: 64em) {
  .info_circuits__title {
    background-color: #fef7e5;
    grid-area: title;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    font-size: 1.8rem;
    line-height: 2rem;
    -webkit-box-align: left;
        -ms-flex-align: left;
            align-items: left;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    justify-self: left;
  }
}

.info_circuits__discription {
  text-align: justify;
  background-color: #fef7e5;
  color: #424242;
  font-size: 1rem;
  line-height: 1.7rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 1rem;
}

.info_circuits__discription b {
  color: #c7890c;
  text-align: justify;
}

@media (min-width: 64em) {
  .info_circuits__discription {
    background-color: #fef7e5;
    grid-area: discription;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0rem 1rem;
    font-size: 1rem;
  }
  .info_circuits__discription b {
    color: #c7890c;
    text-align: justify;
  }
}

.info_circuits__grid {
  display: -ms-grid;
  display: grid;
  background-color: white;
  padding: 1rem;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 40em) {
  .info_circuits__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    padding: 0rem;
  }
}

@media (min-width: 64em) {
  .info_circuits__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.info_circuits__grid a {
  font-size: 1rem;
  color: #594e41;
  line-height: 1.5;
}

.info_circuits__grid b {
  color: #c7890c;
}

.info_circuits__info {
  text-align: left;
  background-color: #fef7e5;
  color: #424242;
  font-size: 0.875rem;
  line-height: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 40em) {
  .info_circuits__info {
    grid-area: info;
    display: inline-block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.875rem;
  }
}

.info_circuits__info p {
  font-size: 0.875rem;
  padding: 0;
}

.info_circuits__info a {
  font-size: 0.875rem;
  margin: 0;
}

.circuits {
  background-color: white;
}

@media (max-width: 39.9375em) {
  .circuits {
    background-color: #ffffff;
    padding: 0;
  }
}

.circuits button, .circuits .button {
  padding: 0;
  height: 40px;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#fef7e5), to(#fabb28));
  background: linear-gradient(to right, #fef7e5, #fabb28);
  cursor: pointer;
  color: #424242;
  font-weight: 1.125rem;
  border-radius: 0;
}

.circuits input {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}

.circuit__content {
  color: #424242;
}

.circuit__content h2 {
  color: #424242;
}

.circuit label {
  font-size: 1rem;
  padding-right: 10px;
}

.circuit select {
  font-size: .9rem;
  padding: 2px 5px;
}

.circuit__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 40em) {
  .circuit__grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.circuit__grid_map {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 40em) {
  .circuit__grid_map {
    -ms-grid-columns: 1fr 2fr;
        grid-template-columns: 1fr 2fr;
    gap: 1rem;
  }
}

.init_circuit_new .circuit__box {
  padding: 0.5rem;
  text-align: left;
  background-color: #fef7e5;
  /* height: 600px; */
  height: 502px;
  color: #424242;
  font-size: 1.125rem;
  line-height: 2rem;
}

.circuit__box {
  padding: 0.5rem;
  text-align: left;
  background-color: #fef7e5;
  height: 600px;
  color: #424242;
  font-size: 1.125rem;
  line-height: 2rem;
}

.circuit__box p {
  text-align: center;
  font-size: 1.125rem;
}

.circuit__box script {
  color: #ffffff;
}

.circuit__box a {
  font-size: 1.125rem;
  display: block;
}

.circuit__box #map {
  height: 480px;
}

@media (min-width: 40em) {
  .circuit__box {
    border-style: solid;
    border-color: #fcd373;
  }
}

@media (max-width: 87.4375em) {
  .circuit__box {
    height: 700px;
    font-size: 1rem;
  }
  .circuit__box p {
    text-align: left;
    font-size: 1.125rem;
  }
}

@media (max-width: 39.9375em) {
  .circuit__box {
    line-height: 3rem;
    height: auto;
  }
}

.circuit__box_map {
  padding: 0.5rem;
  text-align: left;
  background-color: #ffffff;
  height: auto;
  color: #424242;
  font-size: 1.125rem;
  line-height: 2rem;
}

.circuit__box_map p {
  text-align: center;
  font-size: 1.125rem;
}

.circuit__box_map script {
  color: #00264b;
}

.circuit__box_map a {
  font-size: 1.125rem;
  display: block;
}

@media (min-width: 40em) {
  .circuit__box_map {
    border-style: solid;
    border-color: #fcd373;
  }
}

.circuit__image {
  height: 12.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 39.9375em) {
  .circuit__image {
    height: 20rem;
    padding: 0;
  }
}

.circuit__title {
  padding: 0.5rem;
  text-align: center;
  background-color: #fcd373;
  height: 4rem;
  color: #424242;
  font-size: 0.875rem;
  line-height: 1.5rem;
}

@media (max-width: 63.9375em) {
  .circuit__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 3;
    font-size: 1.125rem;
    line-height: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
}

.circuit__title_circuit {
  padding: 0.5rem;
  text-align: center;
  background-color: #fcd373;
  height: 4rem;
  color: #424242;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 63.9375em) {
  .circuit__title_circuit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 3;
    font-size: 1.125rem;
    line-height: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #eee;
  color: black;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: center;
  outline: none;
  font-size: 20px;
  border-radius: 0px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: white;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: white;
}
