
:root{
    --color1: #D9923B;
    --color2: #267333;
    --color3: #ffffff;  
    --color4: #262626;
    --color5: #e4e3df;
}

*{
    font-family: "Roboto", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background-image: var(--bg-body);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.wrapper {
    width:95%;
    max-width: 1340px;
    margin:auto;
}

.wrap{
    margin:auto;
}

/* header */
header{
    margin:20px 0;
    background-color: var(--color5);
    border-radius: 13px;
    box-shadow: 0 0 1px 1px rgba(0,0,0,.1), 0 2px 10px rgba(0,0,0,.3);
}
header .wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    line-height: 40px;
}

header .wrap .logo{
    max-width: 250px;
}

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


/* btn-nav */
#btn-nav{
	display: none !important;
}

@media(max-width:800px){
	header label{
		position: absolute;
		display: block;
		width: 45px;
		height: 45px;
		top:50%;
        transform: translateY(-50%);
		right: 25px;
		border-radius: 3px;
		cursor: pointer;
		outline: none;
		background: var(--color10);
		border-radius: 5px;
        z-index: 99;

	}

	header label span{
		width: 50%;
		height: 3px;
		background: var(--color6);
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: all .3s ease;
	}

	header label span:nth-child(1){
		top:14px;
	}

	header label span:nth-child(2){
		bottom:14px;
	}

    #btn-nav:checked ~ label{
        position: fixed;
        top:50px;
    }

	#btn-nav:checked ~ label span:nth-child(1){
		transform: translateX(-50%) rotate(-45deg);
		top:21px;
	}

	#btn-nav:checked ~ label span:nth-child(2){
		transform: translateX(-50%) rotate(45deg);
		top:21px;
	}
}



/* principal--nav */
.principal--nav ul{
    list-style: none;
    display: flex;
    gap: 30px;
    height: 40px;
    line-height: 40px;
}

.principal--nav ul li a{
    text-decoration: none;
    color: var(--color2);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
    padding: 0 10px;
    display: block;
    transition: color .3s ease;
    position: relative;
}

.principal--nav ul li a:after{
    content: '';
    display: block;
    width: 100%;
    height: 8px;
    background-image: url(../images/separador-nav.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: width .3s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    top: 100%;
    transition: transform .3s ease, opacity .3s ease;
    opacity: 0;
    pointer-events: none;
}

.principal--nav ul li:hover a:after{
    opacity: 1;
    transform: translateX(-50%) translateY(0px);
}

.principal--nav ul li a:hover{
    color: var(--color1);
}

.principal--nav ul li.current-menu-item a{
    color: var(--color1);
    font-weight: 700;
}


@media(max-width:800px){
    nav.principal--nav{
        position: fixed;
        left: 0;
        top:0;
        margin:0;
        background-color: var(--color1);
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 20;
        opacity: 0;
        pointer-events: none;
        transition:opacity .3s ease;
    }

    #btn-nav:checked ~ nav.principal--nav{
        opacity: 1;
        pointer-events: all;
    }



    nav.principal--nav > ul{
        display: block;
        flex-wrap: wrap;
    }

    nav.principal--nav > ul > li{
        transition: all .3s ease;
        transform: translateY(-20px);
        transition-delay: .3s;
        opacity: 0;
        width: 100%;
    }

    #btn-nav:checked ~ nav.principal--nav > ul > li{
        transform: translateY(0);
        opacity: 1;
    }

    header#principal-head .wrap nav > ul > li.current-menu-item a,
    header#principal-head .wrap nav > ul > li:last-child a,
    header#principal-head .wrap nav > ul > li:last-child a:hover{
        background-color: transparent;
        justify-content: center;
        color: var(--color6);
    }

    #btn-nav:checked ~ nav.principal--nav > ul > li:nth-child(1){ transition-delay: 0s; }
    #btn-nav:checked ~ nav.principal--nav > ul > li:nth-child(2){ transition-delay: 0.1s; }
    #btn-nav:checked ~ nav.principal--nav > ul > li:nth-child(3){ transition-delay: 0.2s; }
    #btn-nav:checked ~ nav.principal--nav > ul > li:nth-child(4){ transition-delay: 0.3s; }
    #btn-nav:checked ~ nav.principal--nav > ul > li:nth-child(5){ transition-delay: 0.4s; }
    #btn-nav:checked ~ nav.principal--nav > ul > li:nth-child(6){ transition-delay: 0.5s; }
    #btn-nav:checked ~ nav.principal--nav > ul > li:nth-child(7){ transition-delay: 0.6s; }
    #btn-nav:checked ~ nav.principal--nav > ul > li:nth-child(8){ transition-delay: 0.7s; }
    #btn-nav:checked ~ nav.principal--nav > ul > li:nth-child(9){ transition-delay: 0.8s; }
    #btn-nav:checked ~ nav.principal--nav > ul > li:nth-child(10){ transition-delay: 0.9s; }


    nav.principal--nav > ul > li > a{
        text-align: center;
        display: block;
        padding: 15px 20px;
        font-size: 20px;
    }

    header#principal-head .wrap nav > ul > li:hover a{
        color: var(--color3);
    }

}


/* slider */
.slider {
    width: 100%;
    height: 60vh;
    position: relative;
    border-radius: 13px;
}

.slider .single {
    position: relative;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.slider .wrap {
    position: absolute;
    bottom: 15%;
    left: 10%;
    color: #fff;
    max-width: 600px;
}

.slider .wrap h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: var(--color2);
    text-shadow:
        1px 1px 0 white,
       -1px 1px 0 white,
        1px -1px 0 white,
       -1px -1px 0 white,
        0px 1px 0 white,
        1px 0px 0 white,
       -1px 0px 0 white,
        0px -1px 0 white;
}

.slider .wrap h3 {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.5;
    font-weight: 400;
    color: var(--color2);
    text-shadow:
        1px 1px 0 white,
       -1px 1px 0 white,
        1px -1px 0 white,
       -1px -1px 0 white,
        0px 1px 0 white,
        1px 0px 0 white,
       -1px 0px 0 white,
        0px -1px 0 white;
}
.swiper-button-next,
.swiper-button-prev {
    margin:0 20px !important;
    color: var(--color1) !important;
    opacity: .7;
    transition:opacity .3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.swiper-pagination-bullet {
    background: var(--color3) !important;
    width: 12px !important;
    height: 12px !important;
    margin:0 5px 40px 5px !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background-color: var(--color1) !important;
}


/* wellcome */
.wellcome{
    margin: 40px 0;
    background-color: var(--color3);
    border-radius: 13px;
    padding: 100px 50px;
    text-align: center;
}

.wellcome .video{
    max-width: 300px;
    margin: auto;
    border-radius: 50%;
    aspect-ratio: 1/1;
    position: relative;
}

@media(max-width:600px){
    .wellcome .video{
        max-width: 80%;
    }
}

.wellcome .video:before,
.wellcome .video:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: border-radius 2s ease;
    animation: morph 3s infinite alternate ease-in-out;
}

.wellcome .video:before {
    background-color: var(--color2);
    top: 0px;
    left:0px;
    border-radius: 95% 35% 32% 68% / 92% 56% 84% 38%;
    animation-delay: 0s;
}

.wellcome .video:after {
    background-color: var(--color1);
    top: 0px;
    left: 0px;
    border-radius: 65% 25% 32% 68% / 32% 96% 44% 38%;
    animation-delay: 1s;
}

/* Animación de cambio de forma */
@keyframes morph {
    0% {
        border-radius: 95% 35% 32% 68% / 92% 56% 84% 38%;
        transform: scale(1);
    }
    50% {
        border-radius: 55% 75% 60% 45% / 60% 50% 65% 55%;
        transform: scale(1.05);
    }
    100% {
        border-radius: 65% 25% 32% 68% / 32% 96% 44% 38%;
        transform: scale(1);
    }
}

.wellcome .video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}



.wellcome h1{
    font-size: clamp(24px, 3vw, 40px);
    margin:50px auto 0 auto;
    width: 1200;
}

.wellcome h2{
    font-size: clamp(24px, 2vw, 36px);
    margin:10px auto;
    width: 1200;
}

.wellcome p{
    font-size: 18px;
    margin:10px auto 0 auto;
    max-width: 900px;
}



/* stats-section */
.stats-section {
    text-align: center;
    padding: 120px 40px;
    background-color: rgba(255,255,255,.8);
    margin:20px 0;
    border-radius: 13px;
    backdrop-filter: blur(10px);
}

.stats-section h3 {
    font-size: 18px;
    color: var(--color1);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.stats-section h2 {
    font-size: 36px;
    color: var(--color2);
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
}

.stat-box {
    border-radius: 6px;
    width: 23%;
    padding: 50px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border:solid 1px var(--color1)
}

.stat-box img{
    width: 80%;
    max-width: 180px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    margin:0 0 20px 0;
}

@media(max-width:900px){
    .stat-box {
        width: 45%;
        margin-bottom: 20px;
    }
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-box .material-symbols-outlined {
    font-size: 48px;
    color: var(--color3);
    background-color: var(--color1);
    border-radius: 50%;
    padding: 15px;
    margin-bottom: 15px;
}

.stat-box h4 {
    font-size: 34px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 17px;
    color: var(--color1);
    opacity: .7;
}



/* team-section */
.team-section {
    text-align: center;
    padding: 90px 20px 60px 30px;
    background-color: var(--color2);
    border-radius: 13px;
}

.team-section h3 {
    font-size: 18px;
    color: var(--color3);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-section h2 {
    font-size: 36px;
    color: var(--color3);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.team-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 5%;
    padding: 0 0 50px 0;
}

.team-member {
    text-align: center;
    max-width: 20%;
}


@media(max-width:900px){
    .team-member {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

.team-member .member-photo {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 200px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
}

.team-member .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.team-member:hover .member-photo img{
    transform: scale(1.1);
}

.team-member h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color3);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.team-member p {
    font-size: 16px;
    opacity: .7;
    color: var(--color3);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    background-color: var(--color1);
    color: var(--color3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: var(--color4);
}




/* page-banner */
.page-banner{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
    padding: 50px 0 50px 0;
    color: var(--color6);
    background-color: var(--color1);
    overflow: hidden;
    z-index: 1;
    border-radius: 13px;
}

.page-banner img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .1;
    top:0;
    left: 0;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}


.page-banner  h1{
    z-index: 3;
    position: relative;
    text-transform: uppercase;
    font-family: var(--fuente2);
    color: var(--color6);
}

@media(max-width:800px){
	.page-banner{
		padding: 150px 5% 40px 5%;
        border-radius: 0 0 20px 20px;
	}

    .page-banner  h1{
        z-index: 99;
        font-size: 30px;
        text-align: center;
        position: relative;
    }
}

.page-banner .wrap p{
	max-width: 500px;
	margin:20px 0 0 0;
	line-height: 1.8;
}

/* content */
.content{
    padding:  20px 0;
}

.content .wrap{
    background-color: var(--color3);
    border-radius: 13px;
    padding: 50px 40px;
    box-shadow: 0 0 1px 1px rgba(0,0,0,.1), 0 2px 10px rgba(0,0,0,.3);
}

.attachment-thumbnail{
    border:none !important;
    border-radius: 13px !important;
    transition: all .3s ease;
}

.attachment-thumbnail:hover{
    transform: scale(1.1) !important;
}

.content .title-page{
	text-align: center;
	color: var(--color1);
	font-size: 40px;
	font-weight: 800;
	margin:80px 0 30px 0;
}

.content .image-single{
	width: 70%;
	margin:auto;
	overflow: hidden;
	margin:0 auto 50px auto;
}

.content .image-single img{
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 20px;
}

.content a{
    color: var(--color1);
    text-decoration: none;
}

@media(max-width:800px){
    .content{
        padding: 40px 0;
    }
}

.content input[type="text"],
.content input[type="email"],
.content input[type="tel"],
.content input[type="number"],
.content input[type="file"],
.content input[type="date"],
.content textarea,
.content select{
    font-family: 'Roboto', sans-serif;
    background-color: var(--color6);
    padding: 15px 2%;
    width: 96%;
    border:solid 1px rgba(0,0,0,.1);
    outline: none;
    resize: none;
    margin:0 0 10px 0;
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; 
	border-radius: 5px;
}

.content select{
    color: #313131;
    cursor: pointer;
}

.content label{
    font-size: 14px;
    font-weight: bold !important;
    color: #777777 !important;
}

.content input[type="text"]:focus,
.content input[type="email"]:focus,
.content input[type="tel"]:focus,
.content input[type="number"]:focus,
.content input[type="date"]:focus,
.content textarea:focus,
.content select:focus{
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    transition: all .3s ease;
}

.content input[type="text"]::placeholder,
.content input[type="email"]::placeholder,
.content input[type="tel"]::placeholder,
.content input[type="number"]::placeholder,
.content input[type="date"]::placeholder,
.content textarea::placeholder{
    color: #313131;
}

.content input[type="submit"]{
    background-color: var(--color1);
    color: var(--color5);
    border:none;
    outline: none;
    cursor: pointer;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 50px;
    margin:0 0 20px 0;
    transition: all .3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.content input[type="submit"]:hover,
.content input[type="submit"]:focus{
    background-color: #313131;
}

.not-found{
    padding: 100px 0;
    margin:auto;
}

.not-found h2{
    font-size: 100px;
    text-align: center;
    color: #313131;
    font-weight: 900;
}

.not-found h3{
    font-size: 24px;
    text-align: center;
    color: #313131;
    margin:auto;
    max-width: 500px;
    font-weight: 300;
}

@media(max-width:800px){
    .not-found{
        padding: 50px 0;
    }

    .not-found h2{
        font-size: 50px;
    }

    .not-found h3{
        font-size: 17px;
        width: 80%;
    }
}



/* category */
.category{
	padding: 70px 0;
}
.category .wrap{
    display: flex;
    gap:2%;
    flex-wrap: wrap;
}

.category .wrap article{
    width: 23.5%;
    margin:0 0 40px 0;
	position: relative;
	justify-content: center;
	align-items: center;
}

.category .wrap article img{
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    object-fit: cover;
}

.category .wrap article h2{
    font-size: 1.2em;
    line-height: 1.5;
    color: var(--color2);
    padding: 20px 20px 0 20px;
}

.category .wrap article .btn-more{
    display: table;
    margin:20px 0 20px 20px;
}

.category .wrap article .btn-more a{
    background-color: var(--color1);
    color: var(--color3);
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 20px;
}

@media(max-width:800px){
	.category .wrap{
		display: block;
	}

	.category .wrap article{
		width: 90%;
        margin:auto 30px;
	}
}


.subtitle{
	text-align: center;
	padding: 50px 0;
	font-size: 25px;
	font-weight: 600;
	color: var(--color1);
}



/* wrap-footer */
.wrap-footer{
    position: relative;
    background-color: var(--color4);
    margin:20px auto;
    border-radius: 13px;
}

.wrap-footer > img{
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: .1;
    pointer-events: none;
}

/* sub-footer */
.sub-footer{
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.sub-footer .suscribe{
    display: flex;
    gap:2%;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0 50px 0;
}

.sub-footer .suscribe img{
    max-width: 100px;
}

.sub-footer .logo-footer{
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 3px;
    padding: 0 10px;
    pointer-events: none;
    color: var(--color7);
    cursor: pointer;
    max-width: 250px;
}

.sub-footer .logo-footer img{
    width: 100%;
}

.sub-footer .suscribe form{
    background-color: var(--color6);
    display: flex;
    width: 55%;
    padding: 10px;
    border-radius: 7px;
}

.sub-footer .suscribe form input[type="email"]{
    padding: 0px 2%;
    font-size: 19px;
    border:none;
    outline: none;
    width: 80%;
    font-weight:500;
    border-radius: 3px 0 0 3px;
}

.sub-footer .suscribe form input[type="email"]::placeholder{
    color: var(--color4);
    font-weight: 500;
}

.sub-footer .suscribe .wpcf7-spinner{
    position: absolute;
    top:100%;
    left: 0;
}

.sub-footer .suscribe .wpcf7-not-valid-tip{
    padding: 10px;
    bottom:100%;
    position: absolute;
    left: 0;
    bottom:70%;
    font-size: 14px !important;
    min-height: 40px !important;
}

.wpcf7-response-output{
    background-color: var(--color5);
    padding: 10px !important;
    bottom:20px !important;
    position: fixed !important;
    left: 20px !important;
    z-index: 999 !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
    padding: 20px !important;
    border-radius: 10px;
    color: #ffffff;
    z-index: 9999 !important;
    opacity: 1;
    animation: fadeOut 5s forwards;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    background-color: #ffb900;
}

.wpcf7 form.sent .wpcf7-response-output {
    background-color: #00b300;
}

@keyframes fadeOut {
    0%, 80% { opacity: 1; }
    100% { opacity: 0; }
}


.sub-footer .suscribe form input[type="submit"],
.sub-footer .suscribe form button{
    padding:20px 2%;
    border:none;
    outline: none;
    width: 30%;
    position: relative;
    color: var(--color3);
    font-weight: 600;
    font-size: 18px;
    border-radius: 5px;
    background-color: var(--color1);
    cursor: pointer;
    transition: background-color .3s ease;
}

.sub-footer .suscribe form input[type="submit"]:hover,
.sub-footer .suscribe form button:hover, 
.sub-footer .suscribe form input[type="submit"]:focus,
.sub-footer .suscribe form button:focus{
    background-color: var(--color1) !important;
}


/* boxs */
.sub-footer .boxs{
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0 50px 0;
}

.sub-footer .boxs article{
    padding: 0 30px;
}

.sub-footer .boxs article:nth-child(1){
    padding: 0 50px 0 0;
    width: 34%;
}
.sub-footer .boxs article:nth-child(2){
    width: 22%;
}
.sub-footer .boxs article:nth-child(3){
    width: 22%;
}
.sub-footer .boxs article:nth-child(4){
    width: 22%;
}

@media(max-width:800px){
    .sub-footer .boxs article:nth-child(1),
    .sub-footer .boxs article:nth-child(2),
    .sub-footer .boxs article:nth-child(3),
    .sub-footer .boxs article:nth-child(4){
        width: 100%;
        padding: 20px 0;
        border-top: solid 1px rgba(255, 255, 255, 0.2);
    }
    .sub-footer .boxs article:nth-child(1){
        padding: 0 0 20px 0;
        border-top: none;
    }
}

.sub-footer .boxs article h2{
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color3);
    position: relative;
    margin:0 0 20px 0;
}

.sub-footer .boxs article p{
    color: var(--color3);
    font-size: 16px;
    opacity: .7;
    line-height: 1.7;
}

.sub-footer .boxs article ul.menu{
    color: var(--color3);
    padding: 0 0 0 20px;
}

.sub-footer .boxs article ul li a{
    color: var(--color3);
    font-size: 16px;
    opacity: .7;
    padding: 10px 0;
    display: block;
    text-decoration: none;
}

.sub-footer .boxs article ul li a:hover{
    color: var(--color1);
}


.sub-footer .boxs article ul.social-footer{
    display: flex;
    list-style-type: none;
}

.sub-footer .boxs article ul.social-footer li a{
    display: block;
    text-decoration: none;
    width:50px;
    line-height: 50px;
    text-align: center;
    transition: all .3s ease;
    opacity: 1;
    font-size: 24px;
}

.sub-footer .boxs article ul.social-footer li a:hover{
    color: var(--color1);
}

/* footer */
footer{
    position: relative;
    text-align: center;
    font-size: 18px;
}

footer .wrap{
    padding: 40px 0;
    border-top: dashed 1px rgba(255, 255, 255, 0.2);
    color: var(--color3);
    font-weight: 400;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

footer a{
    color: var(--color5);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover{
    text-decoration: underline;
}