.parallax1 {
  height: 63vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.fond-1 {
    min-height: 300px;
    max-height: 100vh;
    background-color: #5e6162;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.parallax2 {
    height: 72vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fond-2 {
    height: 300px;
    background-color: #5e6162;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.fond-3 {
    height: 570px;
    background-color: #144b88;    
}
.card-link {
    text-decoration: none;
    color: inherit;
}
.card-link:hover .card {
    transform: scale(1.05);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    cursor: pointer;
}
.container .card {
    display: block;
    width: 360px;
    height: 270px;
    background-color: #144b88;
    border-width: 0px;
    border-radius: 3px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin: 18px;
    text-align: center;
    transition: background-color 0.09s ease, box-shadow 0.09s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.container .card:hover {    
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
    border-width: 1px;
    border-color: #144b88;
    background-color: #9cc224;
}
.container .card .center {
    overflow: hidden;
    position: relative;
}
.container .card img {
    width: 360px;
    height: 180px;
    transition: color 0.09s ease;
}
.container .card:hover img {
    transform: scale(1.1);
}
.container .card h4 {
    margin: 20px 0 5px;
    font-weight: 630;
    color: #9cc224;
}
.container .card:hover h4 {
    color: #144b88;
}
.container .card .read-more {
    height: 40px;
    line-height: 20px;
    font-size: 1rem;
    color: #fcfcfc;
    font-weight: 500;
    transition: background-color 0.09s ease, color 0.09s ease;
    background-color: #144b88;
}
.container .card:hover .read-more {
    color: #144b88;
    background-color: #9cc224;
}
.card-link:hover .card {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.card3 {
    background-color: #727270;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border-radius: 9px;
}
.card3 .card-title {
    color: #f3c631;
}
.card3 .card-text {
    color: #c4ccd4;
}
.card3:hover .card-title {
    color: #ffe70b;
}
.card3:hover .card-text {
    color: #ffffff;
}
.card3:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
.position-absolute.end-0 {
    right: -60px !important; /* Fuerza el movimiento al borde derecho */
}
.position-absolute.start-0 {
    left: -30px; /* Si querés, podés hacer que las de la izquierda se ajusten más si fuera necesario */
}