.web_wrapper {
  width: 90%;
  margin: 0 auto;
}

.link {
  color: white;
  margin-bottom: 10px;
  cursor: pointer;
  text-decoration: underline;
}

.link a:hover {
  filter: drop-shadow(2px 4px 6px rgba(255, 255, 255, 0.268));
  color: white;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

section .efecto-scroll {
  transition: 1s;
  transition-delay: 0.2s;
}

section .title_st {
  font-family: 'NotoSerifDisplay-Regular';
  font-size: 43px;
  color: #ceae7b;
  padding-bottom: 30px;
}

section .title_st.white {
  color: white;
}

section .title_st.center {
  text-align: center;
}

section p {
  font-family: 'Helvetica-Regular';
  font-size: 21px;
  color: #3c3c3b;
  text-align: center;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 30px;
}

section p:last-child {
  padding: 0;
}

section p b {
  font-family: 'Helvetica-Bold';
}

section p img {
  width: 80px;
  padding: 0 5px;
}

section a.boton {
  display: block;
  padding: 4px 40px;
  color: #ceae7b;
  border: solid 1px #ceae7b;
  transition: 0.4s;
  width: max-content;
  margin: 5px auto;
  font-family: 'Helvetica-Regular';
  font-size: 20px;
}

section a.boton:hover {
  background: #ceae7b;
  color: white;
  text-decoration: none;
}

section .imagendune {
  position: relative;
  height: 40vw;
  min-height: 300px;
}

section .imagendune.efecto-scroll:after {
  left: 50%;
}

section .imagendune.efecto-scroll.is-move:after {
  left: 0;
}

section .imagendune img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

section .imagendune:after {
  content: '';
  position: absolute;
  width: 50%;
  top: 0;
  height: 100%;
  background: url(../images/home1-detalle.svg) no-repeat 50% 50% / cover;
  transition: 1s;
}

section .collage {
  display: flex;
  flex-wrap: wrap;
}

section .collage.reverse {
  flex-direction: row-reverse;
}

section .collage.efecto-scroll {
  transition: 1s;
  opacity: 0;
  transition-delay: 0.2s;
}

section .collage.efecto-scroll.is-move {
  opacity: 1;
}

section .collage .text {
  padding: 50px;
  background: #ceae7b;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section .collage .text.white {
  background: none;
}

section .collage .text.white {
  background: none;
  padding-bottom: 20px;
}

section .collage .text .detalle {
  text-align: right;
  padding-bottom: 20px;
}

section .collage .text .detalle img {
  width: 50px;
}

section .collage .text p {
  text-align: left;
}

section .collage .imagen {
  width: 50%;
}

section .collage .imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section .imagenbig {
  position: relative;
  height: 40vw;
  min-height: 300px;
  margin: -2vw 0;
  z-index: -1;
}

section .imagenbig.efecto-scroll {
  transition: 1s;
  opacity: 0;
  transition-delay: 0.2s;
}

section .imagenbig.efecto-scroll.is-move {
  opacity: 1;
}

section .imagenbig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section .owl-carousel .owl-item.active .item {
  opacity: 1;
}

section .owl-carousel .item {
  opacity: 0.4;
  transition: 0.5s;
  height: 40vw;
  min-height: 300px;
}

section .owl-carousel .item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

section .owl-carousel .owl-dots {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

section .owl-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  border: solid 1px #ceae7b;
  border-radius: 20px;
  margin: 5px;
}

section .owl-carousel .owl-dots .owl-dot.active {
  background: #ceae7b;
}

section .owl-carousel .owl-dots .owl-dot :focus {
  outline: none;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 2vw 0;
}

header .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

header .content .logo {
  width: 200px;
}

header .content .logo img {
  width: 100%;
}

header .content .box {
  display: flex;
  align-items: center;
}

header .content .box .idioma {
  font-family: 'Helvetica-Regular';
  font-size: 18px;
  color: white;
}

header .content .box .idioma a {
  color: inherit;
  padding: 0 5px;
}

header .content .box .idioma a:hover {
  color: inherit;
}

header .menu {
  cursor: pointer;
  line-height: 0;
  display: none;
  padding-left: 40px;
}

header .menu svg {
  width: 50px;
  height: 50px;
}

header .line {
  stroke-width: 7;
  stroke-linecap: square;
  stroke: white;
  transition: all 500ms;
}

header .top {
  transform-origin: 26px 40px;
}

header .middle {
  stroke-dasharray: 60 60;
}

header .bottom {
  transform-origin: 26px 60px;
}

header .menu.active .line {
  stroke: white;
}

header .menu.active .top {
  transform: rotate(45deg);
}

header .menu.active .middle {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}

header .menu.active .bottom {
  transform: rotate(-45deg);
}

#cabecera {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

#cabecera .imagen {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}

#cabecera .topo {
  margin-top: 24px;
  height: 160px;
}

#cabecera .imagen::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #ffffff;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.2) 62%,
    rgba(0, 0, 0, 0.6) 97%
  );
}

#cabecera .imagen img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#cabecera .bigtitle {
  position: absolute;
  z-index: 3;
  width: 100%;
  text-align: center;
  color: white;
  font-family: 'NotoSerifDisplay-Bold';
  font-size: 55px;
  top: 35%;
  line-height: 1;
}

#cabecera .red-claim {
  display: inline-block;
  color: white;
  text-transform: uppercase;
  background-color: rgb(140, 25, 25);
  padding: 10px 20px;
  font-family: 'NotoSerifDisplay-Bold';
  font-weight: 600;
  border-radius: 5px;
  text-align: center;
  margin: 0 40px;
  margin-top: 10px;
}

#cabecera .bigtitle span {
  font-size: 50%;
  font-family: 'Helvetica-Regular';
}

#cabecera .box {
  position: absolute;
  bottom: 5vw;
  width: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.83);
  padding: 20px 0;
  transition: 0.4s;
}

#cabecera .box.active {
  height: 85%;
  display: flex;
}

#cabecera .box.active .web_wrapper {
  height: 100%;
}

#cabecera .box.active .web_wrapper .content {
  height: 100%;
  flex-direction: column;
}

#cabecera .box .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#cabecera .box .content .logo {
  margin: 12px;
  width: 15vw;
  min-width: 200px;
}

#cabecera .box .content nav {
  display: flex;
  flex-wrap: wrap;
}

#constructora .text.white {
  padding: 50px 0px;
}

#constructora h3 {
  font-size: 30px;
}

#constructora .text.white p {
  font-size: 18px;
}

#constructora .lgconstructora {
  width: 80%;
  max-width: 450px;
  height: auto;
}

#cabecera .box .content nav li {
  padding: 0 2.2vw;
  list-style: none;
  font-family: 'Helvetica-Bold';
  font-size: 20px;
  text-transform: uppercase;
  color: #3c3c3b;
}

#cabecera .box .content nav li a {
  color: inherit;
  padding: 10px;
  transition: 0.4s;
}

#cabecera .box .content nav li a:hover,
#cabecera .box .content nav li a.active {
  color: inherit;
  background: #ceae7b;
  text-decoration: none;
  color: white;
}

#home2 {
  padding: 0;
}

#home3 .logo {
  text-align: center;
  padding-bottom: 30px;
}

#home3 .logo img {
  width: 20vw;
  min-width: 200px;
}

#home4 {
  padding: 0;
}

#home4 .imagen {
  height: 40vw;
  min-height: 350px;
}

#home4 .imagen img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#home6 {
  background: url(../images/home-06.jpg) no-repeat 50% 50% / cover;
  padding: 0;
}

#home6 .content {
  background: rgba(255, 255, 255, 0.83);
  padding: 60px 40px;
  width: 450px;
}

#home7 .iconos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

#home5 {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

#home7 .iconos .item {
  width: 20%;
  padding: 30px;
  text-align: center;
}

#home7 .iconos .item img {
  width: 70px;
  display: block;
  margin: 0 auto;
  padding-bottom: 20px;
}

#home7 .iconos .item p {
  color: #ceae7b;
}

#proyecto1 video {
  width: 100%;
  max-width: 100%;
}

#proyecto2 > .container {
  display: flex;
  gap: 0;
}

#proyecto2 .info p {
  text-align: start;
  margin-bottom: 45px;
}

#proyecto2 .info .box {
  margin-left: auto;
}

#proyecto2 .info {
  flex-direction: column;
  width: 50%;
  display: flex;
  padding: 30px;
  background-color: #d3ba8b;
}

#proyecto2 .info .title_st {
  color: white;
  font-size: 30px;
  text-align: start;
}

#proyecto2 .info .lg {
  width: 35px;
}

.flexc {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#proyecto2 .info .firma {
  width: 220px;
}

#proyecto2 .pict {
  flex: 1;
}

#proyecto2 .pict img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#proyecto2 {
  position: relative;
}

#proyecto2 .firma {
  text-align: right;
}

#proyecto2 .firma img {
  width: 350px;
}

#proyecto2:after {
  content: '';
  position: absolute;
  right: -20%;
  top: -20%;
  height: 140%;
  width: 80%;
  z-index: -1;
  background: url(../images/detallefirma.png) no-repeat 50% 50% / contain;
}

#proyecto2 .imagen {
  padding-top: 20px;
}

#proyecto2 .imagen img {
  width: 100%;
  max-width: 100%;
}

#entorno3 .content {
  height: 50vw;
  position: relative;
}

#entorno3 .content .img {
  position: absolute;
}

#entorno3 .content .img.item1 {
  top: 5%;
  height: 90%;
  width: 50%;
  z-index: 1;
}

#entorno3 .content .img.item1.efecto-scroll {
  left: -20%;
}

#entorno3 .content .img.item1.efecto-scroll.is-move {
  left: 0%;
}

#entorno3 .content .img.item2 {
  top: 0;
  height: 50%;
  width: 60%;
  z-index: 2;
}

#entorno3 .content .img.item2.efecto-scroll {
  right: -20%;
}

#entorno3 .content .img.item2.efecto-scroll.is-move {
  right: 0;
}

#entorno3 .content .img.item3 {
  bottom: 0;
  height: 55%;
  width: 45%;
  z-index: 3;
}

#entorno3 .content .img.item3.efecto-scroll {
  right: -40%;
}

#entorno3 .content .img.item3.efecto-scroll.is-move {
  right: 5%;
}

#entorno3 .content .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#entorno4 .content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

#entorno4 .content .maps {
  width: 70%;
}

#entorno4 .content .maps .barra_botones {
  display: flex;
  flex-wrap: wrap;
  background: #ceae7b;
  width: 100%;
}

#entorno4 .content .maps .barra_botones .boton_maps {
  padding: 20px 10px;
  transition: 0.4s;
  border-right: 1px solid white;
  text-align: center;
  width: 20%;
  cursor: pointer;
  transition: 0.4s;
}

#entorno4 .content .maps .barra_botones .boton_maps:hover,
#entorno4 .content .maps .barra_botones .boton_maps.active {
  background: #30373f;
}

#entorno4 .content .maps .barra_botones .boton_maps p {
  color: white;
  padding-bottom: 10px;
  font-size: 15px;
}

#entorno4 .content .maps .barra_botones .boton_maps img {
  width: 50px;
  display: block;
  margin: 0 auto;
}

#entorno4 .content .maps #responsive_map {
  height: 40vw;
  min-height: 300px;
}

#entorno4 .content .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
  padding: 0 4vw;
  background: rgba(164, 191, 244, 0.15);
}

#entorno4 .content .info .detalle {
  text-align: right;
  padding-bottom: 4vw;
}

#entorno4 .content .info .detalle img {
  width: 60px;
}

#entorno4 .content .info p {
  color: #ceae7b;
  text-align: right;
}

#viviendas2 {
  background: #ceae7b;
}

#viviendas3 {
  padding-top: 0;
}

#viviendas4 .planos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 50px;
}

#viviendas4 .planos .box {
  border-right: 1px solid #ceae7b;
  padding: 0 5vw;
}

#viviendas4 .planos .box:last-child {
  border: none;
}

#viviendas4 .planos .box .title {
  font-family: 'Helvetica-Regular';
  color: #ceae7b;
  font-size: 24px;
  padding-bottom: 20px;
  text-align: center;
  letter-spacing: 4px;
}

#viviendas4 .planos .box a {
  color: inherit;
}

#viviendas4 .planos .box li {
  list-style: none;
  padding: 20px 0;
  padding-right: 55px;
  position: relative;
  font-family: 'Helvetica-Light';
  font-size: 18px;
}

#viviendas4 .planos .box li:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/iconos/descarga.svg) no-repeat 50% 50% / contain;
  height: 100%;
  width: 45px;
}

#viviendas4 a.boton {
  display: inline-block;
  margin: 10px;
  text-transform: uppercase;
}

#contacto1 form {
  padding: 4vw 0;
}

#contacto1 form .inputs {
  display: flex;
  flex-wrap: wrap;
}

#contacto1 form .inputs .input-style {
  width: 35%;
  padding: 10px;
}

#contacto1 form .inputs .input-style.xs {
  width: 10%;
}

#contacto1 form .inputs .input-style.bg {
  width: 60%;
}

#contacto1 form .inputs .input-style.sm {
  width: 30%;
}

#contacto1 form .inputs .input-style input {
  width: 100%;
  border: none;
  border: solid 1px black;
  background: none;
  outline: none;
  padding: 5px 10px;
  font-family: 'Helvetica-Regular';
  font-size: 18px;
}

#contacto1 form .inputs .input-style input:hover {
  background: white;
}

#contacto1 form .inputs .input-style input::placeholder {
  color: black;
}

#contacto1 form .submits {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
}

#contacto1 form .submits .checkbox {
  padding: 0 20px;
}

#contacto1 form .submits .checkbox a {
  color: inherit;
}

#contacto1 form .submits .submit input {
  background: #555454;
  color: white;
  padding: 5px 40px;
  font-family: 'Helvetica-Regular';
  font-size: 20px;
  transition: 0.4s;
  border: solid 1px #555454;
  text-transform: uppercase;
}

#contacto1 form .submits .submit input:hover {
  background: white;
  color: #555454;
}

/* #contacto2 .content {

} */
#contacto1 {
  background: url(../images/fondo.jpg) no-repeat 50% 50% / cover;
}

#contacto1 .text {
  padding-bottom: 120px;
  display: flex;
  flex-direction: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 100%;
  width: 840px;
}

#contacto1 .text li {
  padding: 10px;
  font-family: 'Helvetica-Light';
  color: black;
  list-style: none;
  width: 50%;
}

#contacto1 .text li a {
  color: inherit;
}

#contacto1 .text li img {
  width: 40px;
  padding-right: 10px;
}

#contacto2 {
  padding: 0px;
}

#contacto2 .content .imagen {
  width: 100%;
}

#contacto2 .content .imagen img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.row {
  width: 100%;
}

.contacto-info {
  display: flex;
  justify-content: flex-start;
  padding-right: 41px;
}

.contacto-info p {
  color: #000000;
  font-family: 'Helvetica', sans-serif;
  font-size: 18px;
  text-align: left;
  padding-bottom: 8px;
}

.contacto-info a {
  color: inherit;
  text-decoration: none;
}

.contacto-info .centered-text p,
.contacto-info .centered-text h2,
.contacto-info .centered-text h6,
.contacto-info .centered-text h5 {
  text-align: center;
}

@media only screen and (max-width: 992px) {
  .contacto-info {
    padding-right: 0;
  }

  .contacto-info .col-md-4 {
    margin: 18px auto;
  }

  .contacto-info p,
  .contacto-info h2,
  .contacto-info h6,
  .contacto-info h5 {
    text-align: center;
  }
}

.contacto-info h6 {
  color: #d4ba8b;
  font-family: 'Helvetica', sans-serif;
  font-size: 20px;
}

.contacto-info h2 {
  font-size: 24px;
}

.contacto-info h5 {
  color: #d4ba8b;
  font-family: 'Helvetica-Bold', sans-serif;
  font-size: 25px;
}

.contacto-info .col-md-4:last-of-type {
  padding-left: 84px;
}

@media only screen and (max-width: 992px) {
  .contacto-info .col-md-4:last-of-type {
    padding-left: 0;
  }

  .contacto-info p {
    font-size: 16px;
  }

  .contacto-info h6 {
    font-size: 18px;
  }

  .contacto-info h2 {
    font-size: 20px;
  }

  .contacto-info h5 {
    font-size: 21px;
  }
}

.contacto-info img {
  height: 29px;
  width: 25px;
}

#prefooter {
  padding: 0;
}

#prefooter .content {
  display: flex;
  flex-direction: row-reverse;
}

#prefooter .content .box {
  background: #30373f;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0 4vw;
}

#prefooter .content .box .logo {
  width: 100%;
}

#prefooter .content .box .logo img {
  width: 200px;
}

#prefooter .content .box .contact li {
  list-style: none;
  color: white;
}

#prefooter .content .box .contact li a {
  color: inherit;
}

#prefooter .content .box .contact p {
  color: white;
}

#prefooter .content .text {
  background: url(../images/footer.jpg) no-repeat 50% 50% / cover;
  padding: 60px 5vw;
}

#prefooter .content .text p {
  text-align: justify;
}

footer {
  background: #30373f;
  padding: 30px 0;
}

footer p {
  font-family: 'Helvetica-Regular';
  font-size: 16px;
  color: white;
  text-align: center;
  margin: 0;
}

footer p a {
  color: inherit;
}

@media only screen and (max-width: 1284px) {
  section p {
    font-size: 18px;
    padding-bottom: 20px;
  }

  #cabecera .box .content nav li {
    padding: 0 1.5vw;
    font-size: 18px;
  }

  section .collage .text {
    width: 100%;
  }

  section .collage .imagen {
    width: 100%;
    height: 40vw;
    min-height: 350px;
  }

  #constructora h3 {
    padding-bottom: 0;
  }

  #constructora .imagen {
    min-height: auto;
    display: flex;
    justify-content: center;
    height: auto;
  }
}

@media only screen and (max-width: 992px) {
  #proyecto1 video {
    display: none;
  }

  section .title_st {
    font-size: 30px;
  }

  #cabecera .box {
    bottom: 0;
  }

  #cabecera .box .content a {
    width: 100%;
  }

  #cabecera .box .content a .logo {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
  }

  #cabecera .box .content a .logo img {
    width: 200px;
  }

  #cabecera .box .content nav {
    width: 100%;
  }

  #cabecera .box .content nav li {
    width: 25%;
  }

  #home7 .iconos .item {
    padding: 20px;
    width: 33.33%;
  }

  #entorno4 .content .info .detalle img {
    width: 40px;
  }

  #entorno4 .content .info {
    width: 100%;
    padding: 20px;
  }

  #entorno4 .content .maps {
    width: 100%;
  }

  #entorno4 .content .info .detalle,
  #entorno4 .content .info p {
    text-align: center;
  }

  #entorno4 .content .maps .barra_botones p {
    display: none;
  }

  #cabecera .box .content nav li {
    padding: 0;
    text-align: center;
  }

  #contacto2 .content .text li {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  section {
    padding: 40px 0;
  }

  section .title_st {
    font-size: 25px;
  }

  header .menu {
    display: block;
  }

  #cabecera .box {
    height: 200px;
  }

  #cabecera .box .content a .logo {
    padding-bottom: 0;
    margin: 12px 0;
  }

  #cabecera .box .content nav li {
    width: 100%;
  }

  #cabecera .box .content nav {
    height: 0;
    overflow: hidden;
  }

  #cabecera .box.active .content nav {
    height: 80%;
    flex-direction: column;
    justify-content: space-evenly;
  }

  #cabecera .box .content a {
    height: 20%;
  }

  #prefooter .content {
    flex-wrap: wrap;
  }

  #prefooter .content .text {
    width: 100%;
  }

  #prefooter .content .box {
    width: 100%;
    padding: 20px;
  }

  #prefooter .content .box .logo,
  #prefooter .content .box .contact {
    text-align: center;
  }

  section .collage .text {
    padding: 20px;
  }

  #home6 .content {
    width: 100%;
  }

  #viviendas4 .planos .box {
    border: none;
    padding: 20px;
  }

  #proyecto2 .info p {
    font-size: 16px;
  }

  #proyecto2 .info .title_st {
    font-size: 25px;
  }

  #contacto2 .content .text {
    width: 100%;
  }

  #contacto2 .content .imagen {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  #proyecto2 > .container {
    flex-direction: column;
  }

  #proyecto2 .info {
    width: 100%;
    padding: 20px;
  }
}

@media only screen and (max-width: 480px) {
  #cabecera .topo {
      height: 90px;
    }
  section {
    padding: 20px 0;
  }

  #proyecto2 .info p {
    margin-bottom: 25px;
  }

  #proyecto2 .info .lg {
    width: 20px;
  }

  #constructora .text.white {
    padding: 20px 0px;
  }

  #proyecto2 .info .title_st {
    font-size: 20px;
  }

  section .title_st {
    font-size: 20px;
  }

  section p {
    font-size: 16px;
  }

  header .content .logo {
    width: 130px;
  }

  header .content .box .idioma {
    font-size: 16px;
  }

  header .menu {
    padding-left: 10px;
  }

  header .menu svg {
    width: 40px;
    height: 40px;
  }

  section a.boton {
    font-size: 16px;
    padding: 4px 20px;
  }

  footer {
    padding: 10px 20px;
  }

  footer p {
    font-size: 12px;
  }

  #cabecera .bigtitle {
    font-size: 30px;
  }

  #cabecera {
    min-height: inherit;
    height: 80vh;
  }

  #contacto1 form .inputs .input-style {
    width: 100% !important;
  }

  #home7 .iconos .item {
    width: 50%;
  }

  #entorno4 .content .maps .barra_botones img {
    width: 30px;
  }
}

@font-face {
  font-family: 'Helvetica-Bold';
  src: url('../fonts/Helvetica-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Helvetica-Light';
  src: url('../fonts/Helvetica-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'Helvetica-Regular';
  src: url('../fonts/Helvetica-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'NotoSerifDisplay-Bold';
  src: url('../fonts/NotoSerifDisplay-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'NotoSerifDisplay-Regular';
  src: url('../fonts/NotoSerifDisplay-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Helvetica-Heavy';
  src: url('../fonts/Helvetica-Heavy.otf') format('opentype');
}
