html {
    scroll-behavior: smooth;
}

body{
    margin: 0;
}
header{
    background-color: #164442;
    width: 100%;
    height: 65px;
    margin: 0;
    padding: 1rem;
    box-sizing: border-box;
}

.navegacion{
    max-width: 950px;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;   
}

.header1, .header2{
    border-right:1px solid white;
}

.header1, .header3{
    width: 25%;
    display: flex;
    align-items: center;
}

.header2{
    width: 50%;
}

.header2 nav{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.header2 nav ul{
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.header3{
    justify-content: flex-end;
}

a{
    text-decoration: none;
    color: white;
}

h1{
    font-size: 1.5rem;
    color: white;
}

#portada{
    max-width: 1024px;
    margin: auto;
    text-align: center;
}

#callToAction{
    max-width: 1024px;
    margin: 3rem auto;
    text-align: center;
    font-size: 2rem;
}
.weight_ligth{
    font-weight: lighter;
}

.bold{
    font-weight: bold;
}

#callToAction h2{
    margin: 0;
    font-size: 1.2rem;
}

#callToAction h2 span{
    font-size: 1.3rem;
}

.m-0{
    margin: 0;
}

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

.text_green{
    color: green;
}

.btn{
    border: none;
    border-radius: 0.3rem;
    padding: 0.5rem 1rem;
    color: white;
    background-color: #164442;
    transition: all 0.2s;
}

.btn:hover{
    cursor: pointer;
    background-color: #21605d;
}

.wsp{
    margin: 0;
}

.action{
    display: flex;
    justify-content: center;
    padding-top: 1rem;
    gap: 0.5rem;
}


#servicios{
    width: 1024px;
    margin: 0 auto;
}

.titulos{
    font-size: 1.3rem;
}

.card{ 
    display: flex;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    height: 300px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

.info_card{
    background-color: rgb(243, 243, 243);
    width: 65%;
    padding: 1rem 0rem 0 0rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  
}

.img_card{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    overflow: hidden;
}
.title_card{
    background-image: url('../img/franja-degrade.png');
    background-size: 100% 80px;
    text-align: center;
    font-weight: bold;
    color: white;
    padding: 0.5rem;
    box-sizing: border-box;
    overflow: hidden;
}

.info_card p{
    padding: 0 2rem;
    font-size: 1.2rem;
}


footer{
    background-color: #164442;
    padding: 1rem;
}

.header3 img{
    margin-right: 0.5rem;
}



