/* h1 {
color: whitesmoke;
font-size: 4rem;
}*/

/* dropdown menu v2 */
html {
  box-sizing: border-box;
}

:root {
  box-sizing: border-box;

  --primary: rgb(24, 24, 23) y;
  --hover-color: rgb(5, 252, 211);
  --dark: black;
  --light: whitesmoke;
  --linkcolor: rgb(5, 252, 211);
  --header-bg: var(--primary);
  --hover-colo: var(rgb(5, 252, 211))
}

*,                                        /*code belongs to top menu */
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

section{                                        /*created for footer was**/
  margin:0;   
	padding:0;
	box-sizing: border-box;
}




body {
  font-family: "FuturaLT-Book", "helvetica", sans-serif;
  font-size: 1em;                               /* was .something em*/
  line-height: 1.5;
}


header {
  background: var(--header-bg);
  padding-left: 1.5em;
  position: relative; /* change 01 sticky */
  top: 0%;            /* must fix */
  z-index: 10;
}

.branding-logo {
  color: var(--light);
  font-size: calc(0.8rem + 1vw);  /* original 1vw*/
  text-decoration: none;
  text-overflow: ellipsis;

  overflow: hidden;                 /* responsive */
  white-space:pre-wrap;

}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -6px;              /* fixed nav alineación */
}


.menu {
  display: flex;
  flex-direction: row;
  margin-top: 23px;               /* fixed nav alineación */
}
.menu li {
  list-style: none;
  margin-bottom: 0;  /* addes after bootstrap */
}

.menu li a {
  display: block;
  text-decoration: none;
  color: var(--light);
  padding: 1em 1.5em;
  font-size: 2.1rem;                /* before bootstrap: was 1.5rem */
}

.menu li a {

}

/* styles submenu */
.has-dropdown {
  position: relative;
}

.submenu {
  position: absolute;
  left: -0.1; /* should be 0*/
  background-color: black;
  white-space: nowrap;
  padding: 1.5em 0;
  min-width: 16em;
  border-radius: 0% 0% 3% 3%; /*added by me */

  /* hide submenus*/
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
}

.submenu > li > a {
  padding: 0.8em 1.5em;
}

.submenu .submenu {
  left: -100%;
  top: 0;
}

.submenu .submenu .submenu {
  left: -100%;
  top: 0;
}

.menu > li:hover > a,
.submenu > li:hover > a {
  background-color: hsla(0, 0%, 100%, 0.05);
  color: var(--hover-color);
}

.menu > li:hover > a {
  background-color: hsla(0, 0%, 0%, 0.95);
}

/* Arrow */
.arrow {
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  vertical-align: middle;
  border-left: 0.15em solid currentColor;
  border-bottom: 0.15em solid currentColor;
  transform: rotate(-45deg);
  margin-top: -0.25em;
  transition: transform 100ms ease-in-out;
}

/* Reveal */
.menu > li:hover > a + .submenu,
.submenu > li:hover a + .submenu {
  opacity: 1;
  transform: scaleY(1);
}

/* Animate arrow */
.menu > li:hover > a > .arrow,
.submenu > li:hover > a > .submenu {
  transform: rotate(225deg);
}

/* responsive submenu*/
@media only screen and (max-width: 78.75em) {
  .submenu .submenu .submenu {
    left: -100%;
    top: 0.5em;
  }
  .submenu {
    min-width: 16em;
  }
}

@media only screen and (max-width: 58.75em) {
  .menu li a {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 50em) {
  header {
    /* position: relative; */
    padding: 2em 1.5em;   /* was 1.5em 2em*/
    
  }
  .menu {
    flex-flow: column;
    position: absolute;
    background: var(--light);
    top: 4.55em;
    left: 0;
    right: 0;
    height: 100vh;

    opacity: 0;
    transform: scaleY(0);
    transform-origin: top center;
    transition: 200ms transform cubic-bezier(0.36, 0.4, 0.42, 1.48) 100ms,
      100ms opacity ease-in-out;

    overflow-y: scroll;
  }

  .menu > li > a {
    font-size: 3rem;      /* was 1rem */
    color: var(--dark);
  }

  .submenu > li > a {
    font-size: 3rem;      /* was 1rem */
  }
  .submenu {
    top: 0;
    padding-left: 1.5em;
    border-left: 0.12em solid rgb(5, 252, 211);
  }

  .submenu .submenu {
    left: 0;
    top: 0;
  }
  .submenu .submenu .submenu {
    left: 0;
    top: 0;
  }

  .menu > li:hover > a + .submenu,
  .submenu > li:hover > a + .submenu {
    position: relative;
  }

  .hamburger {
    width: 2em;
    height: 0.25em;
    display: block;
    background: var(--light);
    position: relative;
    cursor: pointer;
    transition: 0.2s transform ease-in-out;
  }
  .hamburger::after,
  .hamburger::before {
    content: "";
    position: absolute;
    left: 0;
    background: inherit;
    width: inherit;
    height: inherit;
    transition: 0.2s transform ease-in-out;
  }

  .hamburger::after {
    top: 0.65em;
  }
  .haburger::before {
    bottom: 0.65em;
  }

  .close::after,
  .close::before {
    top: 0;
    transition: 0.2s transform ease-in-out;
  }
  .close::before {
    display: none;
  }
  .close {
    transform: rotate(45deg);
    transition: 0.2s transform ease-in-out;
  }
  .closse::after {
    transform: rotate(-90deg);
  }
  /* reveal menu */
  input[type="checkbox"]:checked + .menu {
    position: absolute;
    opacity: 1;
    transform: scaleY(1);
  }
}

main {
  /* just to make scrollable vertically to see sticky navbar    */
  height: 200vh;
}

.shadow{
  text-shadow: 3px 3px #000000;
}

.shadow02{
  text-shadow: 3px 3px #000000;
  margin-left: 82px;
}


/* OJO!!! es un #ID v2*/
#imagenes {                             /* fixed image but fucked up text*/

    width: 100%;
    height: 100%;
    display:flex;
    padding-top: -100px;
   
  
  /*   
OLDII .IMG

display: block;
max-width:100%;
max-height:100%;
width: auto;
height: auto;

OLDI II .IMG
position: static;
left: 0px;
top: 0px;
z-index: -99;

  */
}


#ferrerfierrovalores {                        /*      */
  background: black;
}

.fb {
  text-decoration: none;
  list-style: none;
  color: white;
  font-size: 20px;
  font-family: BebasNeue;
  margin-left: 30px;
  background-color: blue;
  border-radius: 2%;
  padding: 10px;
}

/* TOP MENU *
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
.a,
.botton {
  font-family: "FututaLT-Book", "helvetica", sans-serif;
}

*/

/*
.dropdowntop {
  height: 10vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 95%;
  margin: auto;
}

/*
.plata,
.oro,
.piedraspreciosas,
.numismatica {
  position: relative;
}
*/

/*
.plata ul,
.oro ul,
.piedraspreciosas ul,
.numismatica ul {
  position: absolute;
  background: whitesmoke;
  margin-top: 10px;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  list-style: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-family: "FuturaLT-Book";
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}
*/

/* ta a,
.oro a,
.piedraspreciosas a,
.numismatica a {
  color: black;
  text-decoration: none;
}
*/

/*
.plata li,
.oro li,
.piedraspreciosas li,
.numismatica li {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
*/

/*
*rollover li*
.plata li:hover,
.oro li:hover,
.piedraspreciosas li:hover,
.numismatica li:hover {
  background: rgb(5, 252, 211);
}


.dropdowntop button,
.inicio {
  background: none;
  border: none;
  color: white;
  text-decoration: none;
  font-size: 2.2vw;
  cursor: pointer;
  text-transform: uppercase;
}

.dropdowntop button:hover,
.inicio:hover {
  color: rgb(5, 252, 211);
}
*/
/*
* click on ul display il*
.plata button:focus + ul,
.oro button:focus + ul,
.piedraspreciosas button:focus + ul,
.numismatica button:focus + ul {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
  z-index: 1;
}
*/


/* image products menu  
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10;
}
.image-container img {
  margin-left: 0px;
  margin-right: 0px;
  /*align-items: flex-end;
    align-items: flax-start; 
}
.image-container button {
  border-style: none;
}
*/




/* PRODUCTS IMAGE GALLEY*/

.poo {
margin: 0; padding: 0;
box-sizing: border-box;
text-transform: capitalize;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
transition: all 0.4s cubic-bezier(0,1.57,.67,1.18);
}

.box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: hsla(0, 0%, 0%, 0.95); /*color was: hsla(0, 0%, 0%, 0.95)*/
  
}

.box {
  flex: 1 1 425px; /*was 300px but not been responsive*/
  background: #ffff;
  border:1px solid black; /*color was: black*/
  position: relative;
  overflow: hidden; 
  margin:10px;
  
}

.box .product-images{
  padding: 0px;
  background: black;         /* color was: #eee */
  text-align:center;

}

.box .product-images .imgages {            /* must make an @media to get it back to 500px/650px */
  height: 300px;                      /* original sixe was 200px /250px */
  width: 350px;
  object-fit: contain;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,.7));
}

/*
@media screen and (max-width: 300px) {
  .product-images  {
    width: 30px;
    height: 10px;
  }
}*/

.box .informacion .titulo{
  padding: 10px;
  color: rgb(23, 23, 24);
  font-size: 20px;
}

.box .informacion .subinformacion {
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px 10px;
border-top: 1px solid rgb(23, 23, 24);
}

.box .informacion .subinformacion .precio {
color: black;
font-weight: 500;
font-size: 20px;
}
.box .informacion .subinformacion .precio span {
font-size: 15px;
color: black;
text-decoration:line-through;
}

.box .informacion .subinformacion .rating i{
color: orange;
font-size: 17px;
}

.box .overlay {
  position: absolute;
  top: 0; left: 0;
  height: 350px;
  width: 100%;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
  transform: scale(0); 
  
  
} 

.box:hover .overlay{
  transform: scale(1);
}

.box .overlay a {
  color: white;
  background: rgba(255, 255, 255, 0);
  margin: 10px;
  padding: 13px 15px;
  font-size: 50px;
  transform: translateY(-150px);
  transition-property: transform;
  transition-delay: calc(.1s * var(--i));
}

.box .overlay a:hover{
color: rgb(5, 252, 211);
text-decoration: none;
}

.box:hover .overlay a{
  transform: translateY(0px);
}


/* CONTACT FORM STARTS HERE */
.p-form {
  color: whitesmoke;
  font-family: "FuturaLT-Thin";
  font-weight: 200;
  font-size: 35px;
  text-align: center;
  background-color: hsla(0, 0%, 0%, 0.95);
  padding: 20px;
  text-transform: uppercase;
}

.p-form2{
text-transform: uppercase;
font-size: 20px;

}

.chatON {
  padding: 5px;
  z-index: 99;
  cursor: pointer;
  box-shadow: 0px 0px 22px 0px;
  position: fixed;
  bottom: 23px;
  right: 30px;
  transition: .5s;
  width: 50px;
  border-radius: 100%;
  background-color: rgb(5, 252, 211); /* was: mediumvioletredr*/

}

/* POPUP form - hidden by default */

.chat-popup{
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 999;
  transition: 1s;

}
/* STYLE form container */
.popup-form{
  width: 325px;   /* responsive Galaxy S5*/
  padding: 10px;
  background-color: white;
  border-style: solid 1px;
  outline: solid 8px rgb(5, 252, 211);

}

/*Full-width input field */
.popup-form input[type=text]
.popup-form input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

textarea{
  width: 100%;
  height: 120px;
  padding: 15px;
  margin: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;

}

/* Focus input */
.popup-form input [type=text]:focus,
.popup-form input [type=password]:focus {
  background-color: #ddd;
  outline: none;
 
}

/* STYLE submit/button */
.popup-form .button-contact {
  background-color: black; /* was:darkslateblu */
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 49%;
  margin-bottom: 10px;
  opacity: 0.8;

}

.popup-form .chatOFF {
  background-color: black;
}

/* hover effects button chatOFF */
.popup-form .button-contact:hover,
.chatON:hover,
.chatON:hover {
  transition: .5s;
}

.chatON:hover,
.chatON1:hover {
  opacity: 1;
  width: 60px;
  transition: .5s;

}


/*
.box:hover .overlay a{
  transform: translateY(0px);
}
*/



/* CONTACT FORM STARTS HERE 
.container-form{
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0px 0px 20px #00000010;
  background-color: rgb(5, 252, 211);
  border-radius: 8px;
  margin-bottom: 20px;
}

.form-group{
  width: 100%;
  margin-top: 20px;
  font-size: 20px;
  
}
  
.form-group input, 
.form-group textarea{
  width: 100%;
  padding: 5px;
  font-size: 18px;
  border: 1px solid rgba(128,128,128,0.199);   /*was: rgba(128,128,128,0.199
  margin-top: 5px;
} 

textarea {
  resize: vertical;
}

button[type="submit"]{
width: 100%;
border: none;
outline: none;
padding: 20px;
font-size: 34px;
border-radius: 8px;
font-family: BebasNeue;
color: whitesmoke;
background-color: black;
text-align: center;
cursor: pointer;
margin-top: 10px;
transition: .3s ease background-color;
}

button[type="submit"]:hover{
  background-color: rgb(19, 19, 19);
  color: rgb(5, 252, 211);
}
 
#status{
  width: 90%;
  max-width: 500px;
  text-align: center;
  padding: 10px;
  margin: 0 auto;
  border-radius: 8px;
  
}

#status.success{
  background-color: rgb(127, 249, 6);
  animation: status 4s ease forwards;
  
}
#status.error{
  background-color: rgb(250, 129, 92);
  color: white;
  animation: status 4s ease forwards;
}
@keyframes status{
0%{
  opacity: 1;
  pointer-events: all;
}
90%{
  opacity:1;
  pointer-events: all;
}
100%{
  opacity: 0;
  pointer-events: none;  
}
}

section{                                     /*class created for contact form*
height: 120vh;
width: 100%;
background-color:black;
display:flex;
align-items: center;
justify-content: center;
flex-direction: column;

}



/* POP-UP FORM 
#pop-up{
  top: -100px;
  
  animation: drop 0.5s ease forwards;
}

@keyframes drop{
  0%{opacity: 0;}
  70%{ transform: translateY(700px);}
  100%{transform: translatey(650px); opacity: 1;}
}



*/




.responsive {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: auto;
  border: -0.5%;
}

/* responisive image gallery*/
.responsivegallery {
  padding: 0 6px;
  float: left;
  width: 24.99999;
}

/*h2 {
  color: whitesmoke;
  font-size: 2rem;
}f
*/

.whitefont {
  color: whitesmoke;
} 

.construccion{
  text-align: center;
  font-size: 8vw;
  font-weight: bold;
  color: rgb(249, 249, 6);;
  padding-left: 3%;
  padding-right: 3%;
  text-transform: uppercase;
}

p {
  color: whitesmoke;
  padding-left: 3%;
  padding-right: 3%;
  
  /*font-family: ;*/
}

.uppercase {
  text-transform: uppercase;
}

.darkgrey {                          /* original color was: rgb(23, 23, 24)*/
  background: black;
}


/* container image header */
.containerheader {
  position: relative;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  color: whitesmoke;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  margin-top: 100;
}

/* centerd text image header */
.centered1 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-60%, -50%);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.centered2 {
  position: absolute;
  top: 50%;
  left: 28.2%;
  transform: translate(-60%, -50%);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* div buttons header */
.buttons >  {
  position: fixed;
  transform: translate(-60%, -50%);
  padding-left: 100%;
  left: 25.5%;

  /*
  padding-left: 45%;
  border: 10;
  position: relative;
  top: 0%;
  left: 25.5%;
  transform: translate(-60%, -50%);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  */
}
.containerheaderbuttons1 > a {

  /*position: relative;
  width: 200px;
  height: 50px;
  float: left;
  margin: 20px;
  border: none;
  border-radius: 5%;
  font-family: "FuturaLT-Book";
  font-size: 2vh;
  font-weight: 200px;
  list-style: none;
  text-decoration: none;
  text-align: center; */
}

.containerheaderbuttons2 {
  position: relative;
  /* position: relative;
  width: 200px;
  height: 50px;
  float: left;
  margin: 20px;
  border: none;
  border-radius: 5%;
  font-family: "FuturaLT-Book";
  font-size: 2vh;
  font-weight: 200px;
  list-style: none;
  text-decoration: none;
  text-align: center; */
}

/* If the screnn size is 601px wide or more, set font-size of <div> to 80px */
@media screen and (min-width: 601px) {
  div.text {
    font-size: 80px;
  }
}

/* If the screnn size is 600px or less, set font-size of <div> to 30px */
@media screen and (max-width: 600px) {
  div.text {
    font-size: 30px;
  }
}

/* RESPONSIVE IMAGE GALLERY 
@media only screen and (max-width: 700px) {
  .responsivegallery {
    width: 49.99999%;
    margin: 6px 0;
  }
}
@media only screen and (max-width: 500px) {
  .responsivegallery {
    width: 100%;
  }
}
*/

.bannerbotton1 {
}

.bannerbotton2 {
}

.productmenu {
  width: 100%;
  height: 100%;
}



.productcarousel {
  width: 600px;
  height: 300px;
  background: black;
}




/* info-text v1 problems with flex congfig & menu config

.info-container{
  position: relative;
  width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  
  
}

#div-body{
  display:flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  
}

.info-container .info-card{
position: relative;
max-width: 450px;
background: #fff;
margin: 10px;
padding: 15px;
display: flex;

}
.info-container .info-card .img-box{
  max-width: 150px;
  flex: 0 0 150px;

}

.info-container .info-card .img-box images {
  max-width: 150px;
}

.info-container .info-card .contenido {
  margin-left: 20px;
}

@media (max-width: 991px)
{
  .info-container {
    flex-direction:column ;
  }
}

@media (max-width: 768px)
{
  .info-container 
  {
    flex-direction:column ;
  }
  .info-container .info-card 
  {
    flex-direction:column;
    max-width: 350px;
  }
  .info-container .info-card .img-box
  {
    max-width: 100%;
  }
  .info-container .info-card .contenido 
  {
  margin-left: 20px;
  }
}
*/



.row{                                 /* LA PREFE DIJO last change:  .div-row */
  justify-content:center; /*was: center*/
  padding: 10px;
}
.float-layout {                             /*image responsive*/
  padding: 5px 100px;
  float: right;
  width: 80%;
  height: 200%;
  box-sizing:content-box;
  margin: 0;
}
.card-container {
  overflow: hidden;
  
}
.card {
  background-color: rgb(24, 24, 23);
  color: whitesmoke;
  min-height: 100%;                       /*replace this it in width: 100%*/
  width: 5%;
  float: left;  
}
.card-title {
  font-size: 30px;
  text-align: left;
  margin-left: 40px;
  padding-top: 3%;
  padding-bottom: 10px;
  margin-top:  10px;
  
}
.card-desc {
  padding: 20px;
  text-align:justify;
  font-size: 18px;
  margin-right: 10vw;
  width: 360px;                           /* width text was 480px over margin movil 380px for celular*/

}
/*add this it      PROFE: quitele el flex */  
.card-image {
  display: contents; 
}
/*-------------*/
.card-image img {
    width: 50%;
    height: 50%;
    padding-top: 130px;
}
/* Phone Devices Query */
@media only screen and (max-width: 25.5em) {
  .card-image img {
    width: 80%;
    height: 80%;
  }
  /*add this it*/
  .card-image {
  flex-direction: column;
  }
  /*----------------------*/
  .card {
    width: 10vw;
    margin-top: 5px;
  }
}








/* CSS FOOTER starts here */

.containerfoot{
  max-width: 1170px;
  margin: auto;
}

.row{
  display: flex;
  flex-wrap: wrap;
}

footer > ul{                    /* my change: footer > */
  list-style: none;
}

.footer{
  background-color: black;
  padding: 70px 0;
}

.footer-col{
width: 25%;
padding: 0 15px;
}

.footer-col h4{
  font-size: 18px;                 /* footer text titles */
  color: whitesmoke;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before{
  content:'';
  position: absolute;
  left:0;
  bottom: -10px;
  background-color: rgb(5, 252, 211);
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child){
  margin-bottom: 10px;
}

.footer-col ul li a{
	font-size: 16px;                    /* footer sub texts */
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;                  /* footer sub text */
	display: block;
	transition: all 0.3s ease;
}

.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}

.footer-col .social-links a{e
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: black;
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
  
  
}

.footer-col .social-links a:hover{
	color: rgb(5, 252, 211);
	background-color: black;
  
}

/* footer last line of text*/
h5 {
  font-size: 1rem;
  color: whitesmoke;
  margin-left:1%;
  margin-top: 5%;
}

.footer-link{
  text-decoration: whitesmoke;
  display: inline-block;
  list-style: none;
  
}

/*responsive footer*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}

@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}



/* css rule */
/* selectors */

/* 
em - RELATIVE depends on parent
1em = 16px default browser style
1em = base value 

rem - RELATIVE depends on root
rem = 16px default browser style;

vh - height - percent of the screen
vw - width - percent of the screen 
*/

/* INSTALLED FONTS*/
@font-face {
  font-family: "FuturaLT-Book";
  src: url(/fonts/FuturaLT-Book.ttf);
  src: url(/fonts/FuturaLT-Book.woff);
  src: url(/fonts/FuturaLT-Book.woff2);
}

@font-face {
  font-family: "FuturaLT-Round";
  src: url();
  src: url();
  src: url();
}

@font-face {
  font-family: "FuturaLT-Thin";
  src: url(/fonts/FuturaLT-Thin-webfont.woff);
  src: url(/fonts/FuturaLT-Thin-webfont.woff2);
  src: url();
}
