*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --colorTextos:#7e7e7e;
    --colorBotones:#b8f312;
    --colorFondo:#5d8a9f;
    --paddingSecciones:70px;
    --marginElementos:40px;
}

body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/**MENU*/
.menu-navegacion{
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;   
}

 .encabezado{
    background: #fff;
 }

 .logozero{
    width: 5%;
 }

 .line01{
  color: #a48f36;
  font-size: 90px;
 }

.contzero01{
margin-top: 120px;
}

 .contzero{
 margin-top: 20px;
 }

 .serzero{
  margin-top: 40px;
 }

 .serzero01{
  margin-top: 80px;
 }

 .textsg{
  font-size: 23px;
  color: #a48f36;  
  text-align: center;
  font-family:fantasy;
 }

 .texpro{
   font-size: 23px;
  color: #a48f36;
  text-align: center;
  font-family: 'Franklin Gothic Medium',
   'Arial Narrow', Arial, sans-serif;
 }

 .logoone{
    width: 100%;
    border-radius: 3%;
     transition: transform 0.5s;
 }

 .logoone:hover{
 transform: perspective(1200px)
rotateX(20deg)
rotateY(-20deg)
scale(1.1);
 }

.contserv{
  padding: 0 60px;
}

.contport{
   margin-top: 100px;
   text-align: justify;
   color: #fff;
}

.imghu{
  width: 20%;
  transition: transform 0.5s;
}

.imghu:hover{
transform: perspective(600px)
rotateX(20deg)
rotateY(-20deg)
scale(1.1);
}

.bgcont01{
background-color: #a48f36;
 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
transition: transform 0.5s;
  padding: 10px;
  margin: 15px;
  margin-top: 50px;
  border-radius: 12px;
}

.bgcont02{
  background-color: #545454;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s;
  padding: 10px;
  margin: 15px;
   margin-top: 50px;
  border-radius: 12px;
}

.bgcont03{
background-color: #545454;
 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
transition: transform 0.5s;
  padding: 10px;
  margin: 15px;
  border-radius: 12px;
}

.bgcont04{
  background-color: #a28C31;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s;
    padding: 10px;
  margin: 15px;
  border-radius: 12px;
}


.bgcont01:hover{
  background-color: #010101;
opacity: 100%;
  transform: translateY(-25px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.bgcont02:hover{
  background-color: #010101;
  opacity: 100%;
    transform: translateY(-25px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.bgcont03:hover{
background-color: #010101;
opacity: 100%;
  transform: translateY(-25px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.bgcont04:hover{
background-color: #010101;
opacity: 100%;
  transform: translateY(-25px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.texone{
 text-align: center;
 font-size: 25px;
 font-family: fantasy;
 margin-top: 35px;
 letter-spacing: 5%;
}

.textwo{
  text-align: justify;
  font-size: 16px;
  margin:0 45px 45px;
  font-family: Arial, Helvetica, sans-serif;
}

/* From Uiverse.io by Yaya12085 */ 
/* From Uiverse.io by gharsh11032000 */ 

.imgserv{
  width: 100%;
  height: 100%;
}
.card-container {
  width: 300px;
  height: 300px;
  position: relative;
  border-radius: 10px;
}

.card-container::before {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #fb00ff00 0%, #00dade00 100% );
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.card {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.card .img-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-45deg, #fb00ff00 0%, #00dade00 100% );
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}

.card .img-content svg {
  width: 50px;
  height: 50px;
  fill: #212121;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: #e8e8e8;
  padding: 20px 24px;
  line-height: 1.5;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card .content .heading {
  font-size: 32px;
  font-weight: 700;
}

.card:hover .content {
  opacity: 1;
  transform: translateY(0);
}

.card:hover .img-content {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content svg {
  fill: transparent;
}

/* From Uiverse.io by joe-watson-sbf */ 


.zerotwo{
  margin-top: 80px;
}

.parraone{
color: #a48f36;
font-family: fantasy;
letter-spacing: 5%;
font-size: 20px;
}

.parratwwo{
font-family: Arial,
 Helvetica, sans-serif;
font-size: 14px;
color: #545454;
text-align: justify;
}

.iconcont{
  text-align: center;
}

.textca01{
 background: #fff;
  padding: 25px;
  margin: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.textca01:hover{
  transform: translateY(-15px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: 0.6s ease
}
 

.textca02{
  background: #fff;
  padding: 25px;
  margin: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.textca02:hover{
  transform: translateY(-15px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: 0.6s ease
}

.textca03{
  background: #fff;
  padding: 25px;
  margin: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.textca03:hover{
  transform: translateY(-15px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: 0.6s ease
}

.texseg{
  letter-spacing: 1px;
    font-size: 65px;
    color: #010101;
    font-family:fantasy;
    text-align: justify;
    text-transform: uppercase;
}

.iconprin{
  font-size: 100px;
  margin: 30px;
  color: #a48f36;
}

 .logoim{
width: 10%;
 }

 .tit01{
    letter-spacing: 1px;
    font-size: 65px;
    color: #010101;
    font-family:fantasy;
    text-align: justify;
    text-transform: uppercase;
 }

 .tit02{
    font-size: 15px;
    color: #545454;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',
     'Lucida Sans', Arial, sans-serif;
    text-align: justify;
 }

  .titwo{
    font-size: 15px;
    color: #545454;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 
    'Lucida Sans', Arial, sans-serif;
    text-align: justify;
 }

.titone{
   font-size: 15px;
    color: #545454;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 
    'Lucida Sans', Arial, sans-serif;
    text-align: justify;
}

 .tit03{
    color: #010101;
    font-size: 14px;
    text-align: justify;
    margin-top: 22px;
    font-family: Arial, Helvetica, sans-serif;
 }

 
   .tit05{
    color: #545454;
    font-size: 14px;
    text-align: justify;
    margin-top: 12px;
    font-family: Arial, Helvetica, sans-serif;
 }

 .slidimg{
    border-radius: 2%;
    width: 100%;
 }

    .tit06{
    color: #545454;
    font-size: 15px;
    text-align: justify;
    margin-top: 35px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',
     'Lucida Sans', Arial, sans-serif;
 }

.tit07{
    color: #010101;
    font-size: 35px;
    text-align: justify;
    margin-top: 12px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
 }

 
.tit11{
    color: #080616;
    font-size: 35px;
    text-align: justify;
    margin-top: 12px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
 }


.tit14{
    color: #545454;
    font-size: 15px;
    text-align: justify;
    margin-top: 35px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',
     'Lucida Sans', Arial, sans-serif;
 }

  .tit15{
    letter-spacing: 1px;
    font-size: 65px;
    color: #010101;
    font-family: fantasy;
    text-align: justify;
    text-transform: uppercase;
 }

 .line04{
  font-size: 90px;
  color: #a48f36;
 }

.zero10{
    margin-top: 100px;
}

.imgsecc{
  margin-top: 60px;
}

.hol01{
  font-size: 18px;
  text-align: right;
  color: #010101;
  padding: 10px;
  margin: 10px;
  margin-top: 45px;
  font-family: 'Franklin Gothic Medium', 
  'Arial Narrow', Arial, sans-serif;
  background-color: #ffffff91;
}

.parracont{
  margin-top: 35px;
}

.ico05{
     font-size: 60px;
     background-color: #010101;
         border-radius: 3%;
    padding: 30px 30px 30px 30px;
    color: #fff;
     transition: 0.5s ease;
}

.ico05:hover{
    border-radius: 50%;
   transform: rotate(90deg); 
    background-color: #2F2FE4; 
}


.zero05{
margin-top: 10px;

}

.zero11{
margin-top: 100px;
}

.zerouno{
text-align: justify;
}

.parrf01{
color: #010101;
margin-top: 50px;
font-size: 12px;
font-weight: 800;
letter-spacing: 5%;
text-align: left;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 
'Lucida Sans', Arial, sans-serif;
}

.imgsero{
border-radius: 2%;
opacity: 65%;
margin-top: 50px;
width: 80%;
height: 520px;
display: block;
margin:0 100px;
margin-top: 50px;
}

.imgsero:hover{
  opacity: 100%;
}

.parrf02{
color: #080616;
margin-top: 30px;
font-size: 18px;
letter-spacing: 2px;
font-family: fantasy;
}

.parrate{
  color: #545454;
  font-family:Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-align: justify;
  padding: 0 30px;
}

.parrf03{
color: #010101;
text-align: justify;
font-size: 48px;
margin-top: 10px; 
font-family: fantasy;
}


.parrf04{
color: #080616;
padding: 0 70px;
margin: 0 30px;
margin-top: 10px;
font-size: 12px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}


 .tel01{
    font-size: 15px;
    color: #a48f36;
    font-weight: 900;
    padding: 4px;
}
.tel02{
    font-size: 17px;
    font-family: Arial, Helvetica, sans-serif;
    color: #010101;
    font-weight: 700;
}

section{                
    position: relative;
    width: 100%;
    height: 70vh;
    background: url(../img/img17.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    display: inline-flex;
    background-blend-mode: multiply;               
}

.prinzero{
margin-top: 60px;
}

.zero03{
margin-top:80px;
}

.line02{
   color: #a48f36;
 font-size: 25px;
 padding: 3px;
 font-weight: 900;
}

.parraf01{
 color: #a48f36;
 font-size: 20px;
 letter-spacing: 3px;
 text-align: left;
 font-family:fantasy;
 letter-spacing: 15%;
 text-transform: uppercase;
}

.line05{
  font-size: 70px;
  color: #a48f36;
 }

.parraf02{
 color: #545454;
 font-size: 15px;
  text-align: justify;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',
 'Lucida Sans', Arial, sans-serif;
}

.parraf03{
color: #080616;
 font-family:Verdana, Geneva, Tahoma, sans-serif;
font-size: 17px;
  text-align: justify;
  margin-top: 45px;
}

.ico03{
    font-size: 60px;
    border-radius: 3%;
    padding: 30px 30px 30px 30px;
    color: #fff;
    background-color: #010101;
    transition: 0.7s ease;
     transform:scale(1.2);
     margin: 0 100px;
}

.ico03:hover{
 background-color: #2F2FE4;
  cursor: pointer;
  border-radius: 50%;
  transform: rotate(180deg);
}

.foozero{
  text-align: center;
  margin-top: 100px;
}

.line03{
  color: #a48f36;
  font-size: 90px;
 }

   .tituno{
    letter-spacing: 1px;
    font-size: 65px;
    color: #010101;
    font-family: fantasy;
    text-align: justify;
    text-transform: uppercase;
 }

 .titudos{
    color: #545454;
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 
    'Arial Narrow', Arial, sans-serif;
 }

  .titutres{
    color: #a48f36;
    font-size: 45px;
    text-align:  center;
    margin-top: 12px;
    letter-spacing: 15%;
    font-family: fantasy;
 }

 .copy07{
   color: #545454;
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 
    'Arial Narrow', Arial, sans-serif;
}

 .icozero{
    font-size: 20px;
    border-radius: 50%;
    padding: 10px 7px 10px 10px;
    color: #fff;
    background-color: #a48f36;
    transition: 0.7s ease;
     transform:scale(1.2);
     margin:0 15px;
}

.icozero:hover{
 background-color: #010101;
  border-radius: 3%;
  transform: rotate(90deg);
}

.logo{    
  width: 300px;
  height: auto;
  border-radius: 50%;
  display: flex; 
  overflow: hidden; 
  position: relative;
  padding: 25px 25px 25px 25px; 
  transition-property: transform;
  transition-duration: 300ms;
  margin: 0 80px;
}

  .logo:hover{
    transform: scale(1.2);
    opacity: 75%;
  }


 .titul01{
   color: #010101;
    font-family:'Franklin Gothic Medium', 
    'Arial Narrow', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin:0 10px;
 }

 .titul01:hover{
  color: #a48f36;
 }

.colores{ 
    font-size: 2px;
    color: #010101;
    background-color: #f2f2f279;
    letter-spacing: 5px; 
    border-radius: 2%;
 }

  .colores03{
    color: #010101;
    background-color: #f2f2f279;
    letter-spacing: 5px; 
    border-radius: 2%;
}


/**HERO*/

.hero{
    height: 400px;
    background-image: 
    linear-gradient(-20deg, #10b9df5e 0%, #175360a8 100%), 
    url(../img/img5.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.contenedor{
    width: 100%;
    height: 200%;
    margin: 0 60px;
    padding: 60px;
    overflow: hidden;
    color: #fff;
    text-align: center;
}


.efecto {
  filter: brightness(70%);
  transition: transform 0.6s ease, filter 0.3s ease;
  opacity: 55%;
  width: 75%;
  margin:0 60px;
  border-radius: 3%;
  box-shadow: 0 0 10px #a48f36;
   }
  
  .efecto:hover{
   transform: scale(1.15);
  filter: brightness(100%);
    opacity: 100%;
  }


.hero p{
    font-size: 60px;
    margin: 15px; 
    font-weight: 900;  
    color: #010101; 
}

.textseg{
   font-weight: 900;  
    color: #010101; 
    font-size: 40px;
    letter-spacing: 5%;
    font-family: Arial, Helvetica, sans-serif;
}

.teone{
font-family: Arial, Helvetica, sans-serif;
background-color: #fff;
padding: 20px;
}

.logoyo{
  width: 85%;
  transform: scale(1.2);
  transition: transform 0.7s;
}

.logoyo:hover{
    transform: scale(1);
}

/**MAIN**/
.seccion03{
  color: #a48f36;
  font-size: 25px;
  text-align: justify;
  margin-top: 50px;
 font-family: 'Franklin Gothic Medium',
 'Arial Narrow', Arial, sans-serif;
}


.redes-sociales{
    padding-top:15px;
    width: 80%;
    display: flex;
    margin: auto;
    margin-top: 35px;
    justify-content: space-evenly;
   
}

.redes-sociales i{
    font-size: 35px;
    color: #a48f36;
    transition: 3s;
    font-weight: 900;
}

.redes-sociales i:hover{
    transform: rotate(360deg);
    color: #010101;
 }


 .foot01{
    color: #545454;
    font-size: 14px;
    text-align: center;
    margin-top: 50px;
    padding: 0 30px;
    font-family:'Franklin Gothic Medium',
     'Arial Narrow', Arial, sans-serif;    
 }

/**MEDIAS QUIERY PARA PAGINA RESPONSIVE**/

@media screen and (max-width:480px){
    .menu-navegacion{
        flex-direction: column;
        height: 180px;
       justify-content: space-evenly;
}

.contzero01{
margin-top: 30px;
}

.line01{
  font-size: 40px;
  font-weight: 900;
}

 .contzero{
 margin-top: 50px;
 }

 .tit01{
    font-size: 25px;
    padding: 0 30px;
    font-weight: 900;
    text-align: center;
 }

 .titwo{
  font-size: 14px;
   padding: 0 30px;
 }

 .texpro{
  font-size: 18px;
  margin-top: 35px;
  padding: 0 30px;
 }

.logoone{
  width: 80%;
  margin:0 40px;
  margin-top: 30px;
}

.texone{
 font-size: 18px;
 margin-top: 35px;
 letter-spacing: 5%;
}

.textwo{
  font-size: 13px;
  margin:0 45px 45px;
 }

.zero10{
    margin-top: 50px;
}

.titone{
 padding: 0 30px;
 font-size: 14px;
}

.imgsecc{
  display: contents;
}

.hol01{
  font-size: 15px;
}

.tit02{
  font-size: 14px;
  padding: 0 40px;
}

 .tel01{
    font-size: 15px;
    color: #a48f36;
    font-weight: 900;
}
.tel02{
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    color: #010101;
    font-weight: 700;
}

.logozero{
    width: 20%;
 }

.ico05{
     font-size: 25px;
     background-color: #010101;
    border-radius: 3%;
    padding: 20px 20px 20px 20px;
    color: #fff;
     transition: 0.5s ease;
}

.ico05:hover{
    border-radius: 50%;
   transform: rotate(90deg); 
    background-color: #2F2FE4; 
}

.serzero{
    display: contents;
 }

 .serzero01{
  display: contents;
 }

 .textsg{
  margin-top: 45px;
  text-align: center;
  padding: 0 100px;
  font-size: 18px;
 }

 .texseg{
  font-size: 25px;
  padding: 0 30px;
  font-weight: 700;
 }

 .iconprin{
  font-size: 65px;
 }

 .parratwwo{
  font-size: 13px;
 }

 .parraone{
  font-size: 18px;
 }
  
 .tit03{
    padding: 0 30px;
    font-size: 13px;
   }
 
   .tit05{
    padding: 0 40px;
    font-size: 13px;
 }
    .tit06{
    padding: 0 40px;
    font-size: 14px;    
 }

 .slidimg{
    width: 75%;
    margin: 0 50px;
    border-radius: 5%;
    margin-top: 20px;
 }



.tit07{
    font-size: 22px;
    text-align: center;
    padding: 0 30px;
 }

  
.tit11{
    font-size: 22px;
    text-align: center;
    margin-top: 12px;
    padding: 0 30px;
 }

     .tit14{
    padding: 0 30px;
    font-size: 12px;    
 }

  .tit15{
    font-size: 25px;
    padding: 0 30px;
    text-align: center;
 }

 .parraf03{
     padding: 0 30px;
    font-size: 12px; 
 }

.zero03{
margin-top: 70px;
padding: 0 30px;
}

.parraf01{
 font-size: 15px;
 padding: 0 60px;
 margin-top: 30px;
 text-align: center;
 font-weight: 700;
}

.parraf02{
text-align: justify;
 font-size: 13px;
 padding: 0 30px;
 }

 .ico03{
    font-size: 25px;
    border-radius: 3%;
    padding: 30px 30px 30px 30px;
    color: #fff;
    background-color: #010101;
    transition: 0.7s ease;
     transform:scale(1.2);
     margin: 0 100px;
}

.ico03:hover{
 background-color: #2F2FE4;
  cursor: pointer;
  border-radius: 50%;
  transform: rotate(180deg);
}

.prinzero{
margin-top: 40px;
display: contents;
}

.efecto{
  margin-top: 30px;
  width: 75%;
  margin:30px 10px 10px 40px;
}

.line04{
    font-size: 40px;
  font-weight: 900;
}


.zero11{
margin-top: 50px;
}

.zerouno{
text-align: justify;
padding: 0 30px;
}

.parrate{
margin-top: 30px;
  padding: 0 30px;
}

.parrf01{
padding: 0 80px;
font-size: 15px;
text-align: center;
}

.parrf02{
color: #080616;
margin: 0 10px;
margin-top: 40px;
font-size: 15px;
text-align: center;
letter-spacing: 1%;
}

.parrf03{
font-size: 25px;
padding:0 10px;
margin-top: 50px;
text-align: center;
}

.line05{
font-size: 40px;
font-weight: 900;
padding: 0 10px;
}

.parrf04{
color: #080616;
padding: 0 10px;
margin: 0 30px;
margin-top: 20px;
}

.imgsero{
border-radius: 2%;
width: 70%;
height: 300px;
margin-top: 60px;
margin: 0 60px;
}

.foozero{
  text-align: center;
  margin-top: 10px;
}

.foosero{
  margin-top: 20px;  
  padding: 0 30px;
}

   .tituno{
    letter-spacing: 1px;
    font-size: 25px;      
    text-align: center;
    margin-top: 40px;
    font-weight: 700;
    text-transform: uppercase;
 }

 .line03{
  font-weight: 900;
  font-size: 40px;
 }

 .icozero{
    font-size: 20px;
    border-radius: 50%;
    padding: 10px 10px 10px 10px;
    color: #fff;
    background-color: #a48f36;
    transition: 0.7s ease;
     transform:scale(1.2);
     margin:0 15px;
}

.icozero:hover{
 background-color: #010101;
  border-radius: 3%;
  transform: rotate(90deg);
}

 .titudos{
    color: #545454;
    font-size: 15px;
    margin-top: 20px;
    padding: 0 30px;
 }

  .titutres{
    color: #a48f36;
    font-size: 28px;
    text-align:  center;
    margin-top: 30px;
    padding: 0 30px;
    letter-spacing: 5%;
    font-family: fantasy;
 }

.logo{    
  width: 150px;
  height: auto;
  border-radius: 50%;
  display: flex; 
  overflow: hidden; 
  position: relative;
  padding: 1px 5px 2px 2px; 
  transition-property: transform;
  transition-duration: 300ms;
  margin: 0 30px;
}


.seccion03{
  color: #a48f36;
  font-size: 15px;
  padding: 0 40px;
  margin-top: 30px;

}


 .foot01{
    font-size: 12px;
   }

.contenedor{
    width: 100%;
    height: 100%;
    max-width: 1000px;
    margin: auto;
    gap: 10px;
    overflow: hidden;
    padding: var(--paddingSecciones);    
}

.hero p{
    font-size: 40px;
    padding: 25px 25px 25px -25px;    
}

.textseg{
  font-size: 30px;
}

.colores{ 
    color: #f2f2f2;
    font-size: 15px;
    display: flex;
    letter-spacing: 5px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
 }

 .copy07{
   color: #545454;
    font-size: 15px;
    margin-top: 20px;
    padding: 0 30px;
}

.copy06{
font-size: 30px;
}

.copy022{
    color: #545454;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 22px;
    font-weight: 700;
}

  .colores03{
    color: #010101;
    background-color: #f2f2f279;
    letter-spacing: 5px; 
    border-radius: 2%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;     
}

}














