/* 
indice
*/

/*Generales*/
html {
    box-sizing: border-box;
    font-family: 'Helvetica', sans-serif;
    font-size: 16px;
    scroll-behavior: smooth;
}
    
*,
*::after,
*::before {
   box-sizing: inherit;
}
    
body {
   margin: 0;
   padding: 0;
   scrollbar-color: #000000 #07416b;
   overflow-x: hidden;
}



a{
    text-decoration: none;
}

button{
    border: none;
    outline: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: none;
}

button:hover{
    box-shadow: none;
}

form{
    position: relative;
}

section{
    position: relative;
}

/*navegacion*/
.nav_bar{
    width: 100%;
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    height: 80px;
    background-color: #fff;
    z-index: 5000;
    transition: 0.3s;
}

.nav_section-logo{
    height: 100%;
    min-width: 180px;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav_section-logo img{
    width: 100%;
}

.nav_section-li{
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav_ul{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    font-weight: 500;
}

.nav_ul li{
    font-weight: 700;
}

.nav_ul li a{
    color: #07416b;
}

.nav_active{
    padding-top: 7px;
    padding-bottom: 7px;
    border-bottom: 2px solid #07416b;
    border-top: 2px solid #07416b;
}

.ham_button{
    display: none;
}

.nav_ham-span{
    display: inline-block;
    background-color: #07416b;
    width: 30px;
    height: 5px;
    border-radius: 2px;
}

.scrolled {
    background-color: #fcfcfcd2;
    height: 60px;
}

@media screen and (max-width: 850px){
    .ham_button{
        width: 40px;
        height: 35px;
        background-color: transparent;
        border-radius: 3px;
        outline: none;
        border: none;
        padding: 3px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    .nav_ham-span{
        display: inline-block;
        background-color: #07416b;
        width: 30px;
        height: 5px;
        border-radius: 2px;
        transition: 0.4s;
    }

    .nav_section-li{
        position: relative;
        right: 0;
    }

    .nav_ul{
        position: fixed;
        max-width: 400px;
        width: 100%;
        top: 70px;
        bottom: 0;
        right: 0;
        background-color: #000;
        overflow-y: auto;
        display: grid;
        grid-auto-rows: max-content;
        border-radius: 15px 0 0 15px;
        transform: translateX(100%);
        transition: transform 0.6s;
    }

    .nav_ul-active{
        transform: translateX(0%);
    }

    .navhs1_active{
        transform: rotate(90deg) translate(12px, 0);
    }

    .navhs2_active{
        visibility: hidden;
        opacity: 0;
    }

    .navhs3_active{
        transform: translateY(-12px);
    }


    .nav_ul li{
        padding: 30px 10px;
        font-weight: 700;
        color: #fff;
    }

    .nav_ul li a{
        color: #fff;
    }
}

/*hero*/

.hero_content{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hero_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.bg_transparet{
    background-color: #0000008e;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 300;
}

.hero_info{
    position: relative;
    z-index: 400;
    display: flex;
    flex-direction: column;
    color: #fff;
    align-items: center;
    text-align: center;
    padding: 5px 10px;
}

.hero_info h1{
    font-weight: 900;
    font-size: calc(1.5rem + 2vw);
}

.hero_info h2{
    font-weight: 600;
    font-size: calc(1.2rem + 1vw);
}

.hero_info p{
    font-weight: 500;
    font-size: calc(1rem + 0.5vw);
}

.hero_info a{
    font-weight: 700;
    font-size: 1.1rem;
}

.btn_style{
    display: inline-block;
    padding: 10px 30px;
    background-color: #007bff;
    color: #fff;
    transform: perspective(1px) translate(0);
    box-shadow: 0 0 1px #000;
    position: relative;
    transition: color 0.5s;
    cursor: pointer;
    border-radius: 3px;
    position: relative;
    z-index: 450;
}

.btn_style::before{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: 100% 50%;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}

.btn_style:hover{
    color: #013f91;    
}

.btn_style:hover:before{
    transform: scale(1);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);   
}

.hero_link{
    margin-bottom: 100px;
}

/*flotantes*/

.flotantes{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flotante_container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    width: max-content;
    height: auto;
    box-shadow: 0 0 25px 5px #000000ba;
    top: -30px;
    z-index: 800;
}

.flotantes_item{
    display: inline-block;
    color: #013f91;
    border-right: 2px solid #013f91;
    transition: 0.3s;
    position: relative;

}

.flotante_text{
    padding: 25px 35px;
    text-align: center;
    background-color: #fff;
    font-size: 1.1rem;
    font-weight: 600;

}

.flotantes_item:hover{
    transform:  scale(1.07) translateY(-2px);
    z-index: 850;
    border-left: 2px solid #013f91;
}

.f_contenido{
    position: relative;
}

.f_contenido_item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 calc(10px + 10vw);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
  


.f_contenido_item.active {
    max-height: 500px; /* Ajusta según el contenido máximo esperado */
    transition: max-height 0.5s ease-in;
}
  
.f_contenido_img {
    width: 300px; /* Ajustar al tamaño adecuado de la imagen */
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease-in-out 0.5s; /* Transición suave para la opacidad */
}

.f_contenido_item.active .f_contenido_img {
    opacity: 1; /* Hacer la imagen visible cuando el acordeón esté abierto */
  }
  
.flotantes_item {
    cursor: pointer;
    padding: 10px;
    background-color: #f4f4f4;
    border-bottom: 1px solid #ccc;
}
  
.f_contenido_p {
    padding: 20px;
    font-size: 1.5rem;
    color: #013f91;
    font-weight: 400;
    text-align: center;
}

@media screen and (max-width: 1020px){
    .flotante_container{
        flex-direction: column;
    }

    .f_contenido_item{
        flex-direction: column;
    }

    .f_contenido_item.active{
        max-height: 800px;
    }
}
/*Rastreo*/

.rastreo{
    position: relative;
    height: auto;
    z-index: 600;
    margin-top: 50px;
}

.rastreo_contenedor{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;    
}

.rastreo_form{
    width: 90%;
    display: flex;
    justify-content: center; 
    align-items: center;
}

.rastreo_label{
    font-size: 1.5rem;
    font-weight: 700;
    color: #013f91;
}

.reastreo_guia{
    width: 50%;
    height: 45px;
    padding: 5px;
    background-color: #d9d9d9;
    border: none;
    outline: none;
    margin-right: 10px;
    margin-left: 10px;
    font-size: 1.1rem;
}

.resultado_contenido{
    position: relative;
}

.resultado_contenido {
    margin-top: 20px;
}
.detalle_envio {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    position: relative;
    z-index: 550;
}
.guia_numero {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}
.origen_destino {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.origen, .destino {
    padding: 10px;
    color: #fff;
    background-color: #007bff;
    border-radius: 4px;
    width: 48%;
}
.remitente_consignatario {
    display: flex;
    margin-bottom: 20px;
}
.remitente, .consignatario {
    border: 1px solid #007bff;
    padding: 10px;
    width: 48%;
    margin-right: 2%;
    border-radius: 4px;
}
.remitente::after, .consignatario::after {
    content: "";
    display: block;
    height: 1px;
    background-color: #007bff;
    margin: 10px 0;
}
.envio_detalles, .envio_fechas, .solicitud_observaciones {
    margin-bottom: 20px;
}
.qr {
    text-align: center;
    margin-top: 20px;
}
.qr_image {
    width: 200px;
    height: auto;
}

.btn_container {
    margin-top: 20px;
    text-align: center;
}

.somos_grid, .servicios_ingrid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    padding: 0 60px;
    position: relative;
    align-items: center;
    justify-items: center;
    margin-top: 70px;
    gap: 30px;
}

.somos_text{
    text-align: justify;
    line-height: 1.5;
    font-size: 1.2rem;
    font-weight: 600;
    color: #007bff;
    padding: 0 15%;
}

.somos_text span{
    display: inline-block;
    line-height: 1.5;
    font-size: 1.5rem;
    font-weight: 900;
    color: #013f91;
    margin-bottom: 20px;
}

.somos_img{
    width: 90%;
}

.servicios_ingrid_ul{
    list-style-type: none;
    padding: 0;
}


.servicios_ingrid_ul li{
    margin-top: 10px;
    font-size: 1.3rem;
}

.servicios_ingrid_ul li .fa-solid{
    margin-right: 10px;
    font-size: 2.5rem;
    color: #8e8e8e;
}

.servicios_ingrid_ul li span{
    display: inline-block;
    line-height: 1.5;
    font-size: 1.5rem;
    font-weight: 900;
    color: #013f91;
}

.servicios_ingrid_ul li{
    margin-bottom: 15px;
}

.cobertura_index{
    margin-top: 50px;
    position: relative;
}

.cobertura_container{
    
    width: 100%;
    height: calc(70vh + 10vw);
    background-color: #f7f7f7;
    position: relative;
}

.cobertura_inimg{
    opacity: 0.5;
    width: 50%;
    text-align: center;
    position: absolute;
    left: 20%;
    top: calc(1vh + 5vw);
}

.cobertura_intext{
    position: absolute;
    z-index: 500;
    width: 30%;
}

.cobertura_index1, .cobertura_index2, .cobertura_index3{
    right: 2%;
}

.cobertura_index4, .cobertura_index5, .cobertura_index6{
    left: 2%;
}

.cobertura_index1{
    top: 5%;
}

.cobertura_index2{
    top: 25%;
}

.cobertura_index3{
    top: 45%;
}

.cobertura_index4{
    bottom: 5%;
}

.cobertura_index5{
    bottom: 25%;
}

.cobertura_index6{
    bottom: 45%;
}

.cobertura_intext .fa-road-circle-check{
    color: #007bff;
    padding: 0 10px 10px 0;
    font-size: 1.5rem;
}

.cobertura_inspan{
    color: #013f91;
    font-weight: 700;
}

@media screen and (max-width:880px) {
    .cobertura_container{
        height: auto;
    }

    .cobertura_inimg{
        opacity: 0.75;
        width: 75%;
        left: 12%;
        position: relative;
        margin-bottom: 25px;
    }

    .cobertura_intext{
        position: static;
        z-index: 500;
        width: 90%;
        margin-left: 5%;

    }
}

.testimonials-section{
	width: 100%;
	padding: 0px 8%;
    margin: 50px auto 90px;
}
.testimonials-section .section-header{
	max-width: 700px;
	text-align: center;
	margin: 30px auto 40px;
}
.section-header h1{
	position: relative;
	font-size: 36px;
	color: var(--primary-clr);
}
.testimonials-container{
	position: relative;
}
.testimonials-container .testimonial-card{
	padding: 20px;
}
.testimonial-card {
	background-color: #f7f7f7;
	box-shadow: 2px 2px 20px rgba(0,0,0,0.12);
	padding: 20px;
}
.testimonial-card .quote{
	display: flex;
	align-items: center;
}
.testimonial-card .quote i{
	font-size: 45px;
	color: #f0c23b;
	margin-right: 20px;
}
.testimonial-card .quote h4{
	color: #f0c23b;
}
.testimonial-card p{
	margin: 10px 0px 15px;
	font-size: 1rem;
    font-weight: 500;
	line-height: 1.5;
	color: #013f91;
}
.testimonial-card .ratings{
	margin-top: 20px;
}
.testimonial-card .ratings i{
	font-size: 17px;
	color: #f0c23b;
	cursor: pointer;
}
.testimonial-card .profile{
	display: flex;
	align-items: center;
	margin-top: 25px;
}
.profile .profile-image{
	width: 55px;
	height: 55px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}
.profile .profile-image img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.profile .profile-desc{
	display: flex;
	flex-direction: column;
}
.profile-desc span:nth-child(1){
	font-size: 24px;
	font-weight: bold;
	color: #f0c23b;
}
.profile-desc span:nth-child(2){
	font-size: 15px;
	color: #f0c23b;
}
.owl-nav{
	position: absolute;
	right: 20px;
	bottom: -10px;
}
.owl-nav button{
	border-radius: 50% !important;
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i{
	padding: 10px !important;
	border-radius: 50%;
	font-size: 18px !important;
	background-color: var(--card-clr) !important;
	color: var(--primary-clr);
	cursor: pointer;
	transition: 0.4s;
}
.owl-nav .owl-prev i:hover,
.owl-nav .owl-next i:hover{
	background-color: var(--primary-clr) !important;
	color: #e9e9e9;
}
.owl-dots{
	margin-top: 15px;
}
.owl-dots .owl-dot span{
	background-color: #434753 !important;
	padding: 6px !important;
}
.owl-dot.active span{
	background-color: #181a22 !important;
}

footer{
    padding: 15px;
    background-color: #07416b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

footer img{
    width: 30%;
    min-width: 300px;
}

footer p{
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

/*servivios*/

.header_general{
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.header_imgabs{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.header_generalh1, .header_generalh2, .header_generaltext{
    position: relative;
    z-index: 450;
    color: #ffffff;
}

.header_generalh1{
    font-size: calc(2rem + 1vw);
    font-weight: 900;
    margin: 10px 5%;
    line-height: 1.2;
}

.header_generalh1 span{
    color: #007bff;
}

.header_generalh2{
    width: 75%;
    margin-left: 20%;
}

.header_generaltext{
    width: 90%;
    text-align: center;
}

.link_header_g{
    margin-left: 40%;
}

@media screen and (max-width: 730px){
    .header_general{
        height: auto;
    }

    
}

/* tarjetas de servicios*/

.servicios_card_grid{
    margin-top: 150px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 50px;
    position: relative;
    padding: 0 50px;
}

.servicios_card_item{
    width: 100%;
    height: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.card_img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 300;
}

.color_card{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 350;
    background: rgba(223,234,241,0.7);
	background: -moz-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(223,234,241,0.7)), color-stop(100%, rgba(15,99,144,1)));
	background: -webkit-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -o-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -ms-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: linear-gradient(to bottom, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#0f6390', GradientType=0 );
    transition: opacity 0.3s;
}

.card_h3{
    text-align: center;
    position: absolute;
    z-index: 380;
    color: #ffffff;
    transition: 0.3s;
}

.servicios_card_item:hover .card_h3{
    transform: translateY(-80px) scale(1.2);
    color: #f0c23b;
}

.servicios_card_item:hover .color_card{
    opacity: 0;
}

.servicios_descrip {
    padding: 40px 0;
    background-color: #f9f9f9;
}

/* Flex container for the description */
.servicios_descrip_flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 10px;
    background-color: #fff;
    padding: 20px 100px;
    transition: transform 0.3s ease-in-out;
}

/* Image styling */
.servicios_descrip_img {
    flex: 1;
    max-width: 30%;
    margin-right: 20px;
    border-radius: 10px;
}

/* Service description item */
.servicios_descrip_item {
    flex: 2;
    max-width: 55%;
}

/* Section titles */
.servicios_descrip_h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 15px;
}

/* Text and paragraph */
.servicios_descrip_text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Unordered list for advantages */
.servicios_descrip_ul {
    list-style-type: none;
    padding-left: 0;
}

/* Each list item */
.servicios_descrip_ul li {
    margin-bottom: 10px;
}

/* Span inside list item */
.servicios_descript_span {
    font-weight: bold;
    color: #004c99;
}
/* Responsive Styles */

/* Tablets and smaller screens */
@media (max-width: 1024px) {
    .servicios_descrip_flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .servicios_descrip_img {
        max-width: 60%;
        margin-bottom: 20px;
    }

    .servicios_descrip_item {
        max-width: 100%;
    }

    .servicios_descrip_h2 {
        font-size: 1.75rem;
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    .servicios_descrip_img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .servicios_descrip_h2 {
        font-size: 1.5rem;
    }

    .servicios_descrip_text {
        font-size: 0.9rem;
    }

    .servicios_descript_span {
        font-size: 0.95rem;
    }
}

/*nosotros*/

.historia_nos_grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
    padding: 0 45px;
    justify-items: center;
    align-items: center;
    margin-top: 90px;
}

.historia_nosh3, .mvv_nosh3, .elegir_nosh3{
    color: #007bff;
    font-size: 1.8rem;
    text-align: center;
}

.historia_nostext{
    color: #828282;
    line-height: 1.5;
}

.historia_nosimg{
    width: 70%;
}

.mvv_nosh3{
    margin-top: 70px;
}

.mvv_nosgrid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
    padding: 0 30px;
    justify-items: center;
    align-items: center;
    margin-top: 30px;
}

.mvv_nositem{
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mvv_nostext, .elegir_nostext{
    width: 100%;
    text-align: justify;
    color: #828282;
    line-height: 1.5;
}

.mvv_nosimg{
    width: 70%;
}

.mvv_nosh4, .elegir_nosh4{
    color: #004c99;
    font-size: 1.3rem;
}

.elegir_nosh3{
    margin-top: 50px;
}


.elegir_nosgrid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    padding: 0 100px;
    justify-items: center;
    align-items: center;

}

.elegir_nosimg{
    width: 70%;
}

@media screen and (max-width:1018px){
    .elegir_nosimg{
        transform: rotate(90deg) scale(0.8);
    }

    .elegir_nosgrid{
        padding: 0 30px; 
    }
}

/*contact*/
.body_contact{
    background-color: #f2f2f2ca;
}

.contact_container{
    width: 50%;
    height: 60vh;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vh;
    border-radius: 20px;
    background: #bababa;
    box-shadow: inset -9px -9px 21px #848484,
            inset 9px 9px 21px #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 11px;
}

.contact_us{
    width: 50%;
    background-color: #f9f9f9;
    height: 100%;
    border-radius: 20px 0 0 20px;
    color: #004c99;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 15px;
}

.fa-mobile-screen{
    margin-right: 10px;
}

.contact_ustext{
    text-align: justify;
}

.contact_form_item{
    width: 50%;
    background-color: #004c99;
    height: 100%;
    border-radius: 0 20px 20px 0;
    color: #f9f9f9;
}

.contact_form_section {
    width: 100%;
    max-width: 400px;
    height: 90%;
}

.contact_form {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
}

.form_input, 
.form_textarea {
    border: 2px solid white;
    background-color: transparent;
    border-radius: 30px;
    padding: 10px;
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
    outline: none;
}

.form_input::placeholder, 
.form_textarea::placeholder {
    color: white;
}

.form_textarea {
    height: 120px;
    border-radius: 20px;
    resize: none;
}

.form_button {
    border: none;
    background-color: white;
    color: #004c99;
    font-size: 18px;
    padding: 10px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form_button:hover {
    background-color: #007bff;
}

@media screen and (max-width: 720px) {
    .contact_container{
        flex-direction: column;
        width: 80%;
        height: auto;
    }

    .contact_us{
        width: 100%;
        border-radius: 20px 20px 0 0;
    }
    .contact_form_item{
        width: 100%;
        border-radius: 0 0 20px 20px;
    }
}

/*boton de whatsapp*/

.whatsapp-container{
    width: 80px;
    height: 80px;
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 1200;
}

.whatsapp-container a{
    text-decoration: none; 
}

.whatsapp-container a img{
    width: 100%;
    object-fit: cover;
}

.whatsapp-container a span{
    position: absolute;
    color: #fff;
    background-color: #059a19;
    display: block;
    width: 275px;
    padding: 10px;
    border-radius: 15px;
    top: 18px;
    right: 85px;
    font-size: 1rem;
    font-weight: 900;
    text-shadow: 2px 2px 3px #0009;
    border: 3px solid #fff;
    transition: 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.whatsapp-container:hover span{
    opacity: 1;
    visibility: visible;
}