/* --------------------------------

Fonts

-------------------------------- */

@font-face {
  font-family: "Conv_PorscheNextTT-ThinItalic";
  src: url("../fonts/PorscheNextTT-ThinItalic.eot");
  src: local("☺"), url("../fonts/PorscheNextTT-ThinItalic.woff") format("woff"),
    url("../fonts/PorscheNextTT-ThinItalic.ttf") format("truetype"),
    url("../fonts/PorscheNextTT-ThinItalic.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Conv_PorscheNextTT-Thin";
  src: url("../fonts/PorscheNextTT-Thin.eot");
  src: local("☺"), url("../fonts/PorscheNextTT-Thin.woff") format("woff"),
    url("../fonts/PorscheNextTT-Thin.ttf") format("truetype"),
    url("../fonts/PorscheNextTT-Thin.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Conv_PorscheNextTT-Regular";
  src: url("../fonts/PorscheNextTT-Regular.eot");
  src: local("☺"), url("../fonts/PorscheNextTT-Regular.woff") format("woff"),
    url("../fonts/PorscheNextTT-Regular.ttf") format("truetype"),
    url("../fonts/PorscheNextTT-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Conv_PorscheNextTT-Italic";
  src: url("../fonts/PorscheNextTT-Italic.eot");
  src: local("☺"), url("../fonts/PorscheNextTT-Italic.woff") format("woff"),
    url("../fonts/PorscheNextTT-Italic.ttf") format("truetype"),
    url("../fonts/PorscheNextTT-Italic.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Conv_PorscheNextTT-BoldItalic";
  src: url("../fonts/PorscheNextTT-BoldItalic.eot");
  src: local("☺"), url("../fonts/PorscheNextTT-BoldItalic.woff") format("woff"),
    url("../fonts/PorscheNextTT-BoldItalic.ttf") format("truetype"),
    url("../fonts/PorscheNextTT-BoldItalic.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Conv_PorscheNextTT-Bold";
  src: url("../fonts/PorscheNextTT-Bold.eot");
  src: local("☺"), url("../fonts/PorscheNextTT-Bold.woff") format("woff"),
    url("../fonts/PorscheNextTT-Bold.ttf") format("truetype"),
    url("../fonts/PorscheNextTT-Bold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* --------------------------------

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  font-size: 100%;
  font-family: "Ubuntu", sans-serif;
  color: #3e3947;
  background-color: white;
}

body,
html {
  height: 100%;
}

p {
  line-height: 1.2vw;
  font-size: 16px !important;

}

img {
  max-width: 100%;
}

/* --------------------------------

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

/* --------------------------------

Main components

-------------------------------- */
.cd-section {
  position: relative;
  padding: 2em 0;
}

.cd-section:nth-of-type(even) {
  background-color: #fff;
}

.cd-section h1,
.cd-section .row {
  padding-right: 5%;
  padding-left: 5%;
  padding-top: 0vh;
}

.cd-scroll-down {
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;
  width: 38px;
  height: 44px;
  background: url("../img/cd-arrow-bottom.svg") no-repeat center center;
}

/* No Touch devices */
.cd-nav-trigger {
  display: none;
}

.no-touch #cd-vertical-nav {
  position: fixed;
  right: 40px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  display: none;
}
.no-touch #cd-vertical-nav li {
  text-align: right;
}
.no-touch #cd-vertical-nav a {
  display: inline-block;
  /* prevent weird movements on hover when you use a CSS3 transformation - webkit browsers */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.no-touch #cd-vertical-nav a:after {
  content: "";
  display: table;
  clear: both;
}
.no-touch #cd-vertical-nav a span {
  float: right;
  display: inline-block;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
}
.no-touch #cd-vertical-nav a:hover span {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.no-touch #cd-vertical-nav a:hover .cd-label {
  opacity: 1;
}
.no-touch #cd-vertical-nav a.is-selected .cd-dot {
  background-color: white;
}
.no-touch #cd-vertical-nav .cd-dot {
  position: relative;
  /* we set a top value in order to align the dot with the label. If you change label's font, you may need to change this top value*/
  top: 8px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.2s, background-color 0.5s;
  -moz-transition: -moz-transform 0.2s, background-color 0.5s;
  transition: transform 0.2s, background-color 0.5s;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.no-touch #cd-vertical-nav .cd-label {
  position: relative;
  margin-right: 10px;
  padding: 0.4em 0.5em;
  color: #000;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0;
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  font-family: "Conv_PorscheNextTT-Regular";
}

/* Touch devices */
.touch .cd-nav-trigger {
  display: block;
  z-index: 2;
  position: fixed;
  bottom: 30px;
  right: 5%;
  height: 44px;
  width: 44px;
  border-radius: 0.25em;
  background: rgba(255, 255, 255, 0.9);
  display: none;
}
.touch .cd-nav-trigger span {
  position: absolute;
  height: 4px;
  width: 4px;
  background-color: #3e3947;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: none;
}
.touch .cd-nav-trigger span::before,
.touch .cd-nav-trigger span::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: inherit;
  border-radius: inherit;
}
.touch .cd-nav-trigger span::before {
  top: -9px;
}
.touch .cd-nav-trigger span::after {
  bottom: -9px;
}

.touch #cd-vertical-nav {
  position: fixed;
  z-index: 1;
  right: 5%;
  bottom: 30px;
  width: 90%;
  max-width: 400px;
  max-height: 90%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  border-radius: 0.25em;
  background-color: rgba(255, 255, 255, 0.9);
}
.touch #cd-vertical-nav a {
  display: block;
  padding: 1em;
  border-bottom: 1px solid rgba(62, 57, 71, 0.1);
}
.touch #cd-vertical-nav a span:first-child {
  display: none;
}
.touch #cd-vertical-nav a.is-selected span:last-child {
  color: #d88683;
}
.touch #cd-vertical-nav.open {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger {
  background-color: transparent;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span {
  background-color: rgba(62, 57, 71, 0);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before,
.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  background-color: #3e3947;
  height: 3px;
  width: 20px;
  border-radius: 0;
  left: -8px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: 0;
}
.touch #cd-vertical-nav li:last-child a {
  border-bottom: none;
}

/* --------------------------------

Main

-------------------------------- */

#myNav li.titular {
  font-family: "Conv_PorscheNextTT-Bold";
  color: black !important;
  font-size: 3.5vw;
  margin-bottom: 2vw;
  -webkit-text-stroke: 1px black !important;
}

#myNav li {
  font-family: "Conv_PorscheNextTT-Bold";
  color: #000 !important;
  -webkit-text-stroke: 1px #000 !important;
  font-size: 3vw;
  margin-bottom: 1vw;
  cursor: pointer;
}

#myNav li.active:hover {
  color: #fff !important;
}

#myNav .container-fluid {
  margin-top: 4vw;
}

#myNav #img_menu {
  width: 90%;
  height: auto;
  margin-top: 10%;
}

#myNav p {
  font-size: 1.4vw;
  color: black;
  font-family: "Conv_PorscheNextTT-Bold";
  margin: 0;
  padding: 0;
  margin-top: 1vw;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: #fff;

  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  text-align: left;
  margin-top: 30px;
  margin-left: 10%;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  display: block;
  transition: 0.3s;
  color: #d5001c;
}

.overlay > a:nth-child(1) {
  color: black;
  background-color: #EAEAEA;
  padding: 6px 15px 9px 15px;
  border-radius: 50%;
  font-size: 40px;
}

.overlay a:hover,
.overlay a:focus {
  color: #fff;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  z-index: 9999;
}

/* --------------------------------

Head

-------------------------------- */

.navbar-brand img {
  width: 90%;
  height: auto;
}

.navbar-dark .navbar-brand {
  color: #fff;
  width: 5%;
}

.head_title_1 {
  font-family: "Conv_PorscheNextTT-Bold";
  color: #000;
  font-size: 2vw;
  display: block;
}

.head_title_2 {
  font-family: "Conv_PorscheNextTT-Bold";
  color: #000;

  font-size: 2vw;
  margin-left: 10px;
  display: block;
}

.head_text {
  font-family: "Conv_PorscheNextTT-Regular";
  font-size: 0.9vw;
  color: #000;
  margin-right: 1vw;
  display: block;
}

.head_text a:link {
  color: #000;
  text-decoration: underline;
}

.head_text a:hover {
  color: #000;
}

.burguer {
  font-size: 2vw;
  cursor: pointer;
  display: block;
}

.header {
  width: 50%;
  padding-left: 6%;

}

.header h1 {
  margin-top: 8vw;

  color: #000;
  font-family: "Conv_PorscheNextTT-Bold";
  font-size: 3vw;
}

.header h2 {
  margin-top: 2vw;

  color: #000;
  font-family: "Conv_PorscheNextTT-Thin";
  font-size: 2vw;
}

.header p {
  margin-top: 1vw;

  color: #000;
  font-family: "Conv_PorscheNextTT-Regular";
  font-size: 18px !important;
  line-height: 26px;
}

/* --------------------------------

8 generacion

-------------------------------- */

/* section1 */

section {
  background-color: #fff;
}

section .row {
  padding-top: 0px;
}

section h2 {
  font-size: 2vw;
  color: #d5001c;
  font-family: "Conv_PorscheNextTT-Bold";
  margin: 0;
  padding: 0;
  margin-bottom: 2vw;
  margin-top: 1vw;

}

section h3 {
  font-size: 1.7vw;
  color: #000;
  font-family: "Conv_PorscheNextTT-Thin";
  margin: 0;
  padding: 0;
  margin-bottom: 1vw;
  margin-top: 1vw;

}

section p {
  font-size: 18px !important;
  line-height: 26px;
  color: #000;
  font-family: "Conv_PorscheNextTT-Regular";
  margin: 0;
  padding: 0;
}

section iframe {
  width: 100%;
  height: 70vh;
}

section p.legal {
  font-size: 0.8vw;
  color: #b5b4ba;
  font-family: "Conv_PorscheNextTT-Regular";
  margin: 0;
  padding: 0;
  margin-top: 4vw;
}

.rojo {
  color: #d5001c;
}

.col-md-8 p.first {
  font-size: 1vw;
  color: #000;
  font-family: "Conv_PorscheNextTT-Regular";
  margin-top: 1vw;
  margin-bottom: 1vw;

  font-weight: bold;
}

.col-md-8 p.second {
  font-size: 1vw;
  color: #000;
  font-family: "Conv_PorscheNextTT-Regular";
  margin-top: 1vw;
  margin-bottom: 3vw;
}

.caption {
  width: 100%;
  padding: 5%;
  background: #f0f0f0;
  position: relative;
  /*min-height: 12vw;*/
  flex-direction: column;
  display: flex;
  position: relative;
  flex: 1;
 


}

.caption h1 {
  padding: 0;

  font-family: "Conv_PorscheNextTT-Bold";
  font-size: 0.8vw;
  width: 100%;
  color: #000;
  text-align: left;
}

.caption p {
  font-family: "Conv_PorscheNextTT-Regular";
  font-size: 1vw;
  color: #000;
  font-size: 0.8vw;
  width: 100%;
  text-align: left;
  padding-top: 0.5vw;
  flex:1 1 auto;
  font-size:15px !important;
 
}

.caption .btn-trans {
  text-align: center;
  font-family: "Conv_PorscheNextTT-Regular";
  color: #fff;
  text-align: left;
  padding: 1vw 0.6vw 1vw 0.6vw;
  border-radius: 0px;
  background-color: #4b4b4b;
  margin-top: 10%;
  width: 100%;
  text-align: center;

}

.consumo {
  color: #b5b4ba !important;
  font-family: "Conv_PorscheNextTT-Regular";
  font-size: 0.7vw;
  margin-top: 0.5vw;
  margin-bottom: 2vw;
}

.consumo a:link {
  color: #b5b4ba !important;
  text-decoration: underline;
}

.carousel-control-prev-icon, .carousel-control-next-icon {width: 15px;}

.carousel-item > div{display: grid; 
  align-items: stretch; 
  grip-gaps:0px;
  grid-auto-rows: 1fr;
  align-items: stretch;
}

/* medium - display 2  */
@media (min-width: 768px) {
  .carousel-inner .carousel-item-right.active,
  .carousel-inner .carousel-item-next {
    transform: translateX(50%);
  }

  .carousel-inner .carousel-item-left.active,
  .carousel-inner .carousel-item-prev {
    transform: translateX(-50%);
  }
}

/* large - display 3 */
@media (min-width: 992px) {
  .carousel-inner .carousel-item-right.active,
  .carousel-inner .carousel-item-next {
    transform: translateX(33%);
  }

  .carousel-inner .carousel-item-left.active,
  .carousel-inner .carousel-item-prev {
    transform: translateX(-33%);
  }
}

@media (max-width: 768px) {
  .carousel-inner .carousel-item > div {
    display: none;
  }

  .carousel-inner .carousel-item > div:first-child {
    display: block;
  }


.caption p{height: 0vh; min-height: auto;}
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
}

.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left {
  transform: translateX(0);
}


/* footer */

footer{background-color:#000000;padding:15px 5%; clear: both;}
footer p{font-size:16px;line-height:20px;color:#ffffff;margin-bottom:15px;font-family: "Conv_PorscheNextTT-Regular";}
footer p a{color:#ffffff !important;text-decoration:underline;transition:background-color .24s,color .24s;font-family: "Conv_PorscheNextTT-Regular";}
footer p a:hover{color:#d5001c;text-decoration:none;}
footer .row{display: inherit;}
.carousel-nav-icon {
  height: 48px;
  width: 48px;
}
/* .carousel-item {
  .col,
  .col-sm,
  .col-md {
    margin: 8px;
    height: 300px;
    background-size: cover;
    background-position: center center;
  }
} */

@media only screen and (min-width: 768px) {
  .touch .cd-nav-trigger,
  .touch #cd-vertical-nav {
    bottom: 40px;
  }
}

@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

@media (max-width: 480px) {

  #section4,#section3{
    margin-top: -52px;
  }
  #section4{margin-bottom: 10%;}
  .consumo {
    color: #b5b4ba !important;
    font-family: "Conv_PorscheNextTT-Regular";
    font-size: 2.5vw;
    margin-top: 2vw;
    margin-bottom: 2vw;
  }

  .consumo a:link {
    color: #b5b4ba !important;
    text-decoration: underline;
  }

  #myNav #img_menu {
    width: 90%;
    height: auto;
    margin-top: 10%;
    display: none;
  }

  .overlay-content {
    position: relative;
    text-align: left;
    margin-top: 100px;
    margin-left: 5%;
  }

  #myNav li.titular {
    font-family: "Conv_PorscheNextTT-Bold";
    color: black !important;
    font-size: 8vw;
    margin-bottom: 10vw;
    -webkit-text-stroke: 1px black !important;
  }

  #myNav li {
    font-family: "Conv_PorscheNextTT-Bold";
    color: #000 !important;
    -webkit-text-stroke: 1px #000 !important;
    font-size: 7vw;
    margin-bottom: 4vw;
    cursor: pointer;
  }

  #myNav p {
    font-size: 5vw;
    color: black;
    font-family: "Conv_PorscheNextTT-Bold";
    margin: 0;
    padding: 0;
    margin-top: 40px;
    margin-left: 4vw;
    margin-bottom: 40px;
  }

  .navbar-dark .navbar-brand {
    color: #fff;
    width: 20%;
    margin-right: 0;
  }

  .head_title_1 {
    font-family: "Conv_PorscheNextTT-Bold";
    color: #000;
    font-size: 4vw;
    display: block;
  }

  .head_title_2 {
    font-family: "Conv_PorscheNextTT-Bold";
    color: #000;

    font-size: 4vw;
    margin-left: 10px;
    display: block;
  }

  .burguer {
    font-size: 4vw;
    cursor: pointer;
    display: block;
  }

  .head_text {
    bottom: 0px;
    font-family: "Conv_PorscheNextTT-Regular";
    font-size: 6vw;
    color: #fff;
    margin-right: 0;
    margin-left: -4vw !important;
    display: block;
    background-color: #2e383b;
    width: 100%;
    position: fixed;
    z-index: 999;
    padding: 2vw;
  }

  .head_text a:link {
    color: #fff;
    text-decoration: underline;
  }

  .header {
    width: 100%;

    margin-top: 25vw;
    padding-left: 4%;
  }

  .cd-section h1,
  .cd-section .row {
    padding-right: 5%;
    padding-left: 5%;
    padding-top: 0;
  }

  .header h1 {
    margin-top: 8vw;

    color: #000;
    font-family: "Conv_PorscheNextTT-Bold";
    font-size: 7vw;
    margin-bottom: 6vw;
  }

  .header h2 {
    margin-top: 2vw;
    text-align: left;
    color: #000;
    font-family: "Conv_PorscheNextTT-Thin";
    font-size: 5vw;
    margin-bottom: 5vw;
  }

  .header p {
    margin-top: 1vw;
    text-align: left;
    color: #000;
    font-family: "Conv_PorscheNextTT-Regular";
    font-size: 5vw;
    line-height: 6vw;
  }

  section h2 {
    font-size: 7vw;
    color: #d5001c;
    font-family: "Conv_PorscheNextTT-Bold";
    margin: 0;
    padding: 0;
    margin-bottom: 5vw;
    margin-top: 1vw;

  }

  section h3 {
    font-size: 5vw;
    color: #000;
    font-family: "Conv_PorscheNextTT-Thin";
    margin: 0;
    padding: 0;
    margin-bottom: 6vw;
    margin-top: 1vw;

  }

  section p {
    font-size: 5vw;
    color: #000;
    font-family: "Conv_PorscheNextTT-Regular";
    margin: 0;
    padding: 0;
    line-height: 6vw;
    margin-bottom: 6vw;
  }

  .caption h1 {
    padding: 0;

    font-family: "Conv_PorscheNextTT-Bold";
    font-size: 5vw;
    width: 100%;
    color: #000;
    text-align: left;
  }

  .caption p {
    font-family: "Conv_PorscheNextTT-Regular";
    font-size: 1vw;
    color: #000;
    font-size: 5vw;
    width: 100%;
    text-align: left;
    padding-top: 1vw;
  }

  .cd-section h1,
  .cd-section .row {
    padding-right: 0%;
    padding-left: 0%;
    padding-top: 0;
  }

  .caption .btn-trans {
    text-align: center;
    font-family: "Conv_PorscheNextTT-Regular";
    font-size: 5vw;
    color: #fff;
    text-align: center;
    padding: 3vw 6vw 3vw 6vw;
    border-radius: 0px;
    background-color: #4b4b4b;
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    margin-bottom: 8%;
  }

  section iframe {
    width: 100%;
    height: 30vh;
  }

  .col-md-8 p.first {
    font-size: 5vw;
    color: #000;
    font-family: "Conv_PorscheNextTT-Regular";
    margin-top: 3vw;
    margin-bottom: 3vw;

    font-weight: bold;
  }

  .col-md-8 p.second {
    font-size: 5vw;
    color: #000;
    font-family: "Conv_PorscheNextTT-Regular";
    margin-top: 5vw;
    margin-bottom: 10vw;
  }

  .cd-section {
    min-height: auto;
    position: relative;
    padding: 2em 0;
  }

  .tooltip_templates p{line-height: none;}
  footer{padding: 32px 5%;}

}
