@font-face {
  font-family: 'Sequel Sans Light';
  src: url('../fonts/sequel-sans-light.ttf');
}

@font-face {
  font-family: 'Sequel Sans Book';
  src: url('../fonts/sequel-sans-book.ttf');
}

@font-face {
  font-family: 'Sequel Sans Semibold';
  src: url('../fonts/sequel-sans-semibold.ttf');
}

@font-face {
  font-family: 'Prime Light';
  src: url('../fonts/prime-light.ttf');
}

@font-face {
  font-family: 'Prime Regular';
  src: url('../fonts/prime-regular.ttf');
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Sequel Sans Book';
}
body {
  background-color: #000;
}
h1,h2,h3,h4,h5,h6 {
  margin: 0;
}
p {
  margin: 0;
}

:root {
  --dark: #141319;
  --orange: #FF9306;
  --aquamarine: #19D3C5;
  --circuit: #011E41;
  --blue: #168AF4;
  --rooftop: #F41666;
  --purple: #443DFF;
}

/* circuit media group */
body.circuitmediagroup {
  background: #000;
  background-image: url('../images/circuitmediagroup/bg_intro-2.png');
  background-size: 100% auto;
  /* background-attachment: fixed; */
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}
/* circuit */
body.circuit {
  background: var(--circuit);
}
/* esb */
body.esb {
  background: var(--dark);
}
/* rooftop */
body.rooftop {
  background: var(--rooftop);
}
header.cmg_header {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 4rem;
}
header.cmg_header > nav > a > img {
  width: 150px;
}
main.cmg_main {
  text-align: center;
  margin: 5rem 0;
}
section.cmg_intro_message > h2 {
  font-size: 1.3em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  /* color: var(--purple); */
  color: #fff;
}
section.cmg_intro_message > h1 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  color: #fff;
  margin-bottom: 1.5rem;
}
section.cmg_intro_message > p {
  letter-spacing: 1.1px;
  font-size: 1rem;
  color: #fff;
}
section.cmg_intro_message > p > strong {
  font-family: 'Sequel Sans Semibold';
}
.cmg_arrow_down {
  margin-top: 3rem;
}
section.cmg_sites {
  margin-top: 2rem;
}
.cmg_site_wrapper {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}
.cmg_site {
  width: 33.33%;
  padding: 1rem;
  position: relative;
}
.cmg_site:hover > .cmg_site_logo {
  background-color: rgba(0, 0, 0, .3);
  transition: all .2s;
}
.cmg_site_logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0);
  margin: 1rem;
  transition: all .2s;
}
.cmg_site_logo > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.cmg_site_logo > a .circuit_logo {
  height: 65px;
}

.cmg_site_logo > a .mr_logo {
  height: 105px;
}

.cmg_cta {
  text-align: center;
  margin: 2rem auto;
}
.cmg_cta > h3 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  color: #fff;
  margin-bottom: 3rem;
}
.wrapper_button {
  margin: 5rem 0;
}
.btn-cmg {
  padding: 1rem 3rem;
  background: transparent;
  border-color: #fff;
  border-radius: 5px;
  text-transform: uppercase;
  font-family: 'Prime Regular';
  color: #fff;
}
.btn-cmg:hover,
.btn-cmg:focus {
  color: #fff;
  box-shadow: none;
  outline: none;
}
.btn-orange {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-purple {
  border-color: var(--purple);
  color: var(--purple);
}
.btn-circuit {
  border-color: var(--aquamarine);
  color: #fff;
}
.btn-esb {
  border-color: var(--blue);
  color: #fff;
}
.btn-rooftop {
  border-color: var(--rooftop);
  color: #fff;
}

footer.cmg_footer {
  text-align: center;
  background: #141319;
  width: 100%;
  height: auto;
}
.cmg_bar_gradient {
  width: 100%;
  height: 4px;
  background: rgb(38,54,176);
  /* background: linear-gradient(90deg, rgba(38,54,176,1) 0%, rgba(255,46,17,1) 22%, rgba(60,219,251,1) 48%, rgba(251,213,44,1) 73%, rgba(251,243,195,1) 100%); */
  background: linear-gradient(90deg, #A534FF 0%, #3D35FF 50%, #00A5FF 100%);;
} 
.cmg_footer_wrapper {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: #fff;
  padding: 15px 0;
}
.widget_navigation {
  position: absolute;
  top: 50%;
  right: 1%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px var(--dark);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-content: center ;
  text-align: center;
}
.widget_navigation > a {
  text-transform: uppercase;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 12px;
  text-decoration: none;
  color: #fff;
}
.widget_navigation > a > img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
}



/* circuit site */
header.circuit_header {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}
header.circuit_header > nav.navbar-circuit {
  background: transparent !important;
  padding: 2rem 5rem;
}
.navbar-nav > li.nav-item {
  padding: 0 35px;
}
.navbar-nav > li.nav-item > a.nav-link {
  text-transform: uppercase;
  font-family: 'Prime Light';
  letter-spacing: 1px;
  color: #fff;
  padding: 0 0 3px 0;
}
.navbar-nav > li.nav-item > a.nav-link:hover {
  padding: 0 0 3px 0;
  color: #fff;
  /* background: 
    linear-gradient(
      90deg, 
      rgba(38,54,176,1) 0%,
      rgba(255,46,17,1) 22%, 
      rgba(60,219,251,1) 48%,
      rgba(251,213,44,1) 73%,
      rgba(251,243,195,1) 100%
    )
    left
    bottom
    transparent
    no-repeat; */
    background: linear-gradient(90deg, #A534FF 0%, #3D35FF 50%, #00A5FF 100%) 
    left
    bottom
    transparent
    no-repeat;
    background-size: 100% 3px;
}
.navbar-nav > li.nav-item.active {
  padding: 0 0 3px 0;
  color: #fff;
  /* background: 
    linear-gradient(
      90deg, 
      rgba(38,54,176,1) 0%,
      rgba(255,46,17,1) 22%, 
      rgba(60,219,251,1) 48%,
      rgba(251,213,44,1) 73%,
      rgba(251,243,195,1) 100%
    )
    left
    bottom
    transparent
    no-repeat; */
  background: linear-gradient(90deg, #A534FF 0%, #3D35FF 50%, #00A5FF 100%) 
  left
  bottom
  transparent
  no-repeat;
  background-size: 100% 3px;
}
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #fff;
}
section.circuit_intro_banner,
section.esb_intro_banner,
section.rooftop_intro_banner {
  position: relative;
}
.circuit_intro_caption {
  position: absolute;
  top: 30%;
  padding: 0 5rem;
}
.circuit_intro_caption > h1 {
  text-transform: uppercase;
  font-family: 'Sequel Sans Book';
  font-size: 1.3rem;
  color: var(--aquamarine);
  margin-bottom: 1rem;
}
.circuit_intro_caption > h2 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  font-size: 3rem;
  color: #fff;
}
.circuit_intro_caption_footer {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.circuit_who_is {
  margin-left: 10rem;
}
.circuit_who_is > h3 {
  text-transform: uppercase;
  font-family: 'Sequel Sans Book';
  font-size: .7rem;
  color: var(--aquamarine);
  margin-bottom: 1rem;
}
.circuit_who_is > h2 {
  font-family: 'Sequel Sans Light';
  font-weight: 300;
  font-size: 1rem;
  color: #fff;
}
.circuit_who_is > h2 > strong {
  font-family: 'Sequel Sans Semibold';
  font-weight: 700;
}
ul.circuit_social_icons {
  list-style: none;
  color: #fff;
  display: inline-block;
  margin-top: .5rem;
}
ul.circuit_social_icons > li {
  display: inline-block;
  padding: 0 1em;
}
ul.circuit_social_icons > li:first-child {
  padding-left: 0;
}
ul.circuit_social_icons > li:last-child {
  padding-right: 0;
}
ul.circuit_social_icons > li > a {
  color: #fff;
  font-size: 21px;
  opacity: 0.7;
  transition: all 0.5s;
}
ul.circuit_social_icons > li > a:hover {
  opacity: 1;
}
section.circuit_casos_exito {
  padding: 3rem 6rem;
}
header.circuit_header_section {
  padding: 2rem;
}
header.circuit_header_section > h2 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  color: #fff;
}
header.circuit_header_section > h2::after {
  position: absolute;
  margin-top: .8rem;
  margin-left: 2rem;
  content: '';
  width: 250px;
  height: 3px;
  background: var(--blue);
}
.circuit_card {
  width: 100%;
  height: auto;
  position: relative;
  padding: 1rem;
}
.circuit_card > img {
  width: 100%;
}
.circuit_card > .circuit_card_caption {
  position: absolute;
  /* top: 0; */
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3rem;
}
.circuit_caption_meta > h1 {
  text-transform: uppercase;
  font-family: 'Sequel Sans Book';
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
}
.circuit_caption_meta > h2 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  color: #fff;
  /* margin-bottom: 3.5rem; */
  margin-bottom: 0.5rem;
}
.circuit_caption_categories > ul {
  list-style: none;
  display: inline-block;
  margin: 0;
}
.circuit_caption_categories > ul > li {
  font-family: 'Sequel Sans Semibold';
  display: inline-block;
  padding: .4rem 1rem;
  margin: 0 .5rem .5rem 0;
  background: #fff;
  border-radius: 4px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}
.circuit_caption_categories > ul > li:first-child {
  margin-left: 0;
}
.circuit_caption_categories > ul > li:last-child {
  margin-right: 0;
}
.circuit_people_says {
  width: 100%;
  padding: 3rem 6rem;
  background: var(--circuit);
  background-image: url('../images/circuit/bg_says.png');
  background-size: cover;
  background-repeat: no-repeat;
}
header.circuit_header_people_says {
  padding: 2rem;
}
header.circuit_header_people_says > h2 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  color: var(--aquamarine);
}
header.circuit_header_people_says > h2::after {
  position: absolute;
  margin-top: .8rem;
  margin-left: 2rem;
  content: '';
  width: 250px;
  height: 3px;
  background: var(--aquamarine);
}
.circuit_card_testimonio {
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
}
.circuit_card_testimonio > figure {
  margin: 0 auto -60px auto;
  width: 150px;
  height: 150px;
}
.circuit_card_testimonio > figure > img {
  width: 100%;
}
.circuit_testimonio_caption {
  border-radius: 1em;
  background: #fff;
  padding: 3.5rem 2rem;
}
.circuit_testimonio_caption > h1 {
  margin-top: 1.5rem;
  font-family: 'Sequel Sans Semibold';
  font-size: 1rem;
  color: var(--circuit);
}
.circuit_testimonio_caption > h2 {
  font-family: 'Sequel Sans Book';
  font-size: 1rem;
  color: var(--aquamarine);
  margin-bottom: 2rem;
}
.circuit_testimonio_caption > p {
  font-family: 'Sequel Sans Book';
  font-size: .9rem;
  color: var(--circuit);
}
.circuit_logo_testimonio {
  margin: 2rem auto 0 auto;
  width: 135px;
}
.circuit_logo_testimonio > img {
  width: 100%;
}
.circuit_contacto {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
}
.circuit_contacto > .circuit_left,
.circuit_contacto > .circuit_right {
  width: 50%;
  background: #fff;
}
.circuit_left > img {
  width: 100%;
}
.circuit_right {
  padding: 6rem;
}
.circuit_right_header > h3 {
  text-transform: uppercase;
  font-family: 'Sequel Sans Semibold';
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 1rem;
}
.circuit_right_header > h4 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  color: var(--circuit);
  font-size: 2.3rem;
}
.circuit_right_main {
  padding: 1rem 7rem 0 0;
}
.form-group-circuit {
  margin: 1.5rem 0;
}
.form-group-circuit > label {
  font-family: 'Sequel Sans Book';
  color: var(--circuit);
}
.form-group-circuit > input.form-control,
.form-group-circuit > select.form-control {
  background: #F8FAFA;
  border-color: #F8FAFA;
  height: 50px;
}

.form-group-circuit textarea {
  background: #F8FAFA;
  border-color: #F8FAFA;
  resize: none;
  height: 180px;
  width: 100%;
}
.btn-circuit-contacto {
  font-family: 'Sequel Sans Semibold';
  padding: 1rem 4rem;
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
  letter-spacing: 1px;
}

.btn-circuit-contacto:disabled {
  cursor: wait;
  opacity: 0.5;
}


/* esb */
.esb_intro_caption {
  position: absolute;
  top: 30%;
  padding: 0 5rem;
}
.esb_intro_caption > h1 {
  text-transform: uppercase;
  font-family: 'Sequel Sans Book';
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 1rem;
}
.esb_intro_caption > h2 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  font-size: 3rem;
  color: #fff;
}
.esb_intro_caption_footer {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.esb_who_is {
  margin-left: 10rem;
}
.esb_who_is > h3 {
  text-transform: uppercase;
  font-family: 'Sequel Sans Book';
  font-size: .7rem;
  color: var(--blue);
  margin-bottom: 1rem;
}
.esb_who_is > h2 {
  font-family: 'Sequel Sans Light';
  font-weight: 300;
  font-size: 1rem;
  color: #fff;
}
.esb_who_is > h2 > strong {
  font-family: 'Sequel Sans Semibold';
  font-weight: 700;
}
ul.esb_social_icons {
  list-style: none;
  color: #fff;
  display: inline-block;
  margin-top: .5rem;
}
ul.esb_social_icons > li {
  display: inline-block;
  padding: 0 1em;
}
ul.esb_social_icons > li:first-child {
  padding-left: 0;
}
ul.esb_social_icons > li:last-child {
  padding-right: 0;
}
ul.esb_social_icons > li > a {
  color: #fff;
  font-size: 21px;
  opacity: 0.7;
  transition: all 0.5s;
}

ul.esb_social_icons > li > a:hover {
  opacity: 1;
}
section.esb_casos_exito {
  padding: 2rem 0;
}

section.esb_casos_exito > header.esb_header_section {
  padding: 2rem 6rem;
}
header.esb_header_section > h2 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  color: #fff;
}
header.esb_header_section > h2::after {
  position: absolute;
  margin-top: .8rem;
  margin-left: 2rem;
  content: '';
  width: 250px;
  height: 3px;
  background: #fff;
}
.row {
  padding: 0 !important;
  margin: 0 !important;
}
main.esb_base_content > .container-fluid,
main.esb_base_content > .container-fluid > .row {
  padding: 0 !important;
  margin: 0 !important;
}
main.esb_base_content > .container-fluid > .col-lg-12,
main.esb_base_content > .container-fluid > .col-lg-6,
main.esb_base_content > .container-fluid > .col-lg-4 {
  padding: 0 !important;
}
.esb_card {
  width: 100%;
  height: auto;
  position: relative;
  padding: 1rem .5rem;
}
.esb_card > img {
  width: 100%;
  max-width: 100%;
}
.esb_card > .esb_card_caption {
  position: absolute;
  /* top: 0; */
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3rem;
}
.esb_auspiciadores {
  width: 100%;
  padding: 0 6rem 3rem 6rem;
  background: var(--dark);
  background-image: url('../images/esb/number_3.png');
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}
header.esb_header_auspiciadores {
  padding: 0 2rem;
}
header.esb_header_auspiciadores > h2 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  color: var(--blue);
}
header.esb_header_auspiciadores > h2::after {
  position: absolute;
  margin-top: .8rem;
  margin-left: 2rem;
  content: '';
  width: 250px;
  height: 3px;
  background: var(--blue);
}
main.esb_base_content {
  padding: 5rem 0;
}
.card-auspiciador {
  text-align: center;
  padding: 15px;
  color: #fff;
}
.card-auspiciador > h1 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #EDF1FA;
}
.card-auspiciador-thumbnail {
  text-align: center;
}
.esb_cta {
  width: 100%;
  height: 600px;
  background: url('../images/esb/bg_calltoaction.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3rem;
  position: relative;
}
.esb_cta_caption {
  padding: 2rem;
  max-width: 650px;
  position: absolute;
  top: 30%;
}
.esb_cta_caption > h3 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 35px;
}
.esb_cta_caption > p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #EDF1FA;
}




/* rooftop */
.rooftop_intro_caption {
  position: absolute;
  top: 30%;
  padding: 0 5rem;
}
.rooftop_intro_caption > h1 {
  text-transform: uppercase;
  font-family: 'Sequel Sans Book';
  font-size: 1.3rem;
  color: var(--rooftop);
  margin-bottom: 1rem;
}
.rooftop_intro_caption > h2 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  font-size: 3rem;
  color: #fff;
}
.rooftop_intro_caption_footer {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.rooftop_who_is {
  margin-left: 10rem;
}
.rooftop_who_is > h3 {
  text-transform: uppercase;
  font-family: 'Sequel Sans Book';
  font-size: .7rem;
  color: var(--rooftop);
  margin-bottom: 1rem;
}
.rooftop_who_is > h2 {
  font-family: 'Sequel Sans Light';
  font-weight: 300;
  font-size: 1rem;
  color: #fff;
}
.rooftop_is > h2 > strong {
  font-family: 'Sequel Sans Semibold';
  font-weight: 700;
}
ul.rooftop_social_icons {
  list-style: none;
  color: #fff;
  display: inline-block;
  margin-top: .5rem;
}
ul.rooftop_social_icons > li {
  display: inline-block;
  padding: 0 1em;
}
ul.rooftop_social_icons > li:first-child {
  padding-left: 0;
}
ul.rooftop_social_icons > li:last-child {
  padding-right: 0;
}
ul.rooftop_social_icons > li > a {
  color: #fff;
}
section.rooftop_casos_exito {
  padding: 3rem 6rem;
  background: var(--dark);
}
section.rooftop_casos_exito > header.rooftop_header_section {
  padding: 2rem;
}
header.rooftop_header_section > h2 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  color: var(--rooftop);
}
header.rooftop_header_section > h2::after {
  position: absolute;
  margin-top: .8rem;
  margin-left: 2rem;
  content: '';
  width: 250px;
  height: 3px;
  background: var(--rooftop);
}
.rooftop_card {
  width: 100%;
  height: auto;
  position: relative;
  padding: .5rem;
}
.rooftop_card > img {
  width: 100%;
  max-width: 100%;
}
.rooftop_card > .rooftop_card_caption {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  padding: 3rem;
}
.rooftop_caption_meta > h1 {
  text-transform: uppercase;
  font-family: 'Sequel Sans Book';
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--dark);
}
.rooftop_caption_meta > h2 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  font-size: 2rem;
  color: #fff;
  margin-bottom: 3.5rem;
  text-shadow: 0 0 10px var(--dark);
}
.rooftop_people_says {
  width: 100%;
  padding: 3rem 6rem;
  background: var(--rooftop);
  background-image: url('../images/rooftop/bg_says.png');
  background-size: cover;
  background-repeat: no-repeat;
}
header.rooftop_header_people_says {
  padding: 2rem;
}
header.rooftop_header_people_says > h2 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  color: #fff;
}
header.rooftop_header_people_says > h2::after {
  position: absolute;
  margin-top: .8rem;
  margin-left: 2rem;
  content: '';
  width: 250px;
  height: 3px;
  background: #fff;
}
.rooftop_card_testimonio {
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
}
.rooftop_card_testimonio > figure {
  margin: 0 auto -60px auto;
  width: 150px;
  height: 150px;
}
.rooftop_card_testimonio > figure > img {
  width: 100%;
}
.rooftop_testimonio_caption {
  border-radius: 1em;
  background: #fff;
  padding: 3.5rem 2rem;
}
.rooftop_testimonio_caption > h1 {
  margin-top: 1.5rem;
  font-family: 'Sequel Sans Semibold';
  font-size: 1rem;
  color: var(--circuit);
}
.rooftop_testimonio_caption > h2 {
  font-family: 'Sequel Sans Book';
  font-size: 1rem;
  color: var(--rooftop);
  margin-bottom: 2rem;
}
.rooftop_testimonio_caption > p {
  font-family: 'Sequel Sans Book';
  font-size: .9rem;
  color: var(--circuit);
}
.rooftop_logo_testimonio {
  margin: 2rem auto 0 auto;
  width: 135px;
}
.rooftop_logo_testimonio > img {
  width: 100%;
}
.rooftop_gallery {
  width: 100%;
  padding: 3rem 6rem;
  background: var(--dark);
}
header.rooftop_header_gallery {
  padding: 2rem;
}
header.rooftop_header_gallery > h2 {
  text-transform: uppercase;
  font-family: 'Prime Light';
  color: var(--rooftop);
}
header.rooftop_header_gallery > h2::after {
  position: absolute;
  margin-top: .8rem;
  margin-left: 2rem;
  content: '';
  width: 250px;
  height: 3px;
  background: var(--rooftop);
}
.rooftop_grid_gallery {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}
.rooftop_grid_gallery > a {
  width: 33.33%;
  padding: .5rem;
}
.rooftop_grid_gallery > a > img {
  width: 100%;
}


.widget_navigation  {
  display: none;
}

@media (max-width: 600px ) {
  .navbar-light .navbar-toggler {
    border-color: transparent;
  }
  .navbar-light .navbar-toggler-icon {
    background-image: url('../images/menu-icon.svg');
  }
  .navbar-collapse {
    padding: 20px 0;
  }
  .navbar-nav {
    text-align: left;
    background-color: var(--dark);
  }
  .navbar-nav > li.nav-item {
    padding: 15px 10px;
  }
  .navbar-nav > li.nav-item.active {
    padding: 15px 10px;
  }
  .cmg_site_wrapper {
    flex-direction: column;
  }
  .cmg_site {
    width: 100%;
  }
  header.circuit_header > nav.navbar-circuit {
    padding: 15px;
  }
  section.circuit_intro_banner {
    background-image: url('../images/circuit/banner_intro.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
  }
  section.esb_intro_banner {
    background-image: url('../images/esb/banner_intro.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
  }
  section.rooftop_intro_banner {
    background-image: url('../images/rooftop/banner_intro.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
  }
  section.circuit_intro_banner > img,
  section.esb_intro_banner > img,
  section.rooftop_intro_banner > img {
    display: none;
  }
  .circuit_intro_caption,
  .esb_intro_caption,
  .rooftop_intro_caption {
    top: 20%;
    padding: 0 15px;
  }
  .circuit_intro_caption > h1,
  .esb_intro_caption > h1,
  .rooftop_intro_caption > h1 {
    font-size: 1rem;
  }
  .circuit_intro_caption > h2,
  .esb_intro_caption > h2,
  .rooftop_intro_caption > h2 {
    font-size: 2rem;
  }
  .circuit_intro_caption_footer,
  .esb_intro_caption_footer,
  .rooftop_intro_caption_footer {
    margin-top: 1rem;
    flex-direction: column;
  }
  .circuit_who_is,
  .esb_who_is,
  .rooftop_who_is {
    margin: 0;
  }
  section.circuit_casos_exito,
  section.esb_casos_exito,
  section.rooftop_casos_exito {
    padding: 0 15px;
  }
  header.circuit_header_section,
  header.esb_header_section,
  header.rooftop_header_section {
    padding: 0 15px;
  }
  .circuit_card,
  .esb_card,
  .rooftop_card {
    padding: 5px;
  }
  .circuit_card > .circuit_card_caption,
  .esb_card > .esb_card_caption,
  .rooftop_card > .rooftop_card_caption {
    padding: 20px;
  }
  .circuit_caption_meta > h1,
  .esb_caption_meta > h1,
  .rooftop_caption_meta > h1 {
    display: none;
  }
  .circuit_caption_meta > h2,
  .esb_caption_meta > h2,
  .rooftop_caption_meta > h2 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .circuit_caption_categories > ul > li,
  .esb_caption_categories > ul > li,
  .rooftop_caption_categories > ul > li {
    padding: 5px 10px;
    font-size: 14px;
  }
  header.circuit_header_section > h2,
  header.esb_header_section > h2,
  header.rooftop_header_section > h2 {
    padding: 30px 10px;
    font-size: 20px;
  }
  header.circuit_header_section > h2::after,
  header.esb_header_section > h2::after,
  header.rooftop_header_section > h2::after {
    display: none;
  }
  header.circuit_header_people_says > h2::after,
  header.esb_header_people_says > h2::after,
  header.rooftop_header_people_says > h2::after {
    display: none;
  }
  .circuit_people_says,
  .esb_people_says,
  .rooftop_people_says {
    padding: 15px;
  }
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
    padding: 0;
  }
  .circuit_card_testimonio,
  .esb_card_testimonio,
  .rooftop_card_testimonio {
    padding: 3rem 0;
  }
  .circuit_contacto,
  .esb_contacto,
  .rooftop_contacto {
    flex-direction: column;
  }
  .circuit_contacto > .circuit_left,
  .circuit_contacto > .circuit_right {
    width: 100%;
  }
  .circuit_right {
    padding: 35px;
  }
  .circuit_right_main {
    padding: 0;
  }
  .rooftop_gallery {
    padding: 0 20px;
  }
  header.rooftop_header_gallery > h2::after {
    display: none;
  }
  .rooftop_grid_gallery > a {
    width: 50%;
  }
  section.esb_casos_exito > header.esb_header_section {
    padding: 0 20px;
  }
  .esb_auspiciadores {
    padding: 15px;
  }
  header.esb_header_auspiciadores > h2::after {
    display: none;
  }
  .esb_cta_caption {
    top: 20%;
    padding: 1rem;
  }
}
