@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    list-style: none;
    font-size: 14px;
    text-decoration: none;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
}

.loader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.5s ease;
}

main {
    visibility: hidden;
    opacity: 0;
    max-width: 100%;
    overflow-x: hidden;
}

header {
    opacity: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

header .img {
    transform: translateX(-100%);
    opacity: 0;
}

header .navbar {
    transform: translateY(-50px);
    opacity: 0;
}

header .textart {
    transform: translateX(-100%);
    opacity: 0;
}

header .media {
    transform: translateY(50px);
    opacity: 0;
}

header.visible {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

header.visible .img,
header.visible .navbar,
header.visible .textart,
header.visible .media {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 2rem;
    max-width: 100%;
    width: 100%;
}

.navbar .img {
    width: 70px;
}

.navbar .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.navbar .menu .nav-link {
    position: relative;
    color: black;
}

.navbar .menu .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #2F539D;
    transition: width 0.4s ease-in-out;
}

.navbar .menu .nav-link:hover::after {
    width: 100%;
}

.navbar .menu .nav-cont {
    color: white;
    background: #2F539D;
    border: solid 2px #2F539D;
    font-weight: 650;
    padding: .5rem .7rem;
    border-radius: 10px;
    transition: all .4s ease;
}

.navbar .menu .nav-cont:hover {
    box-shadow: 5px 5px 5px;
    color: #2F539D;
    background: white;
}

.navbar i {
    display: none;
}

.start {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 2rem 3rem;
    width: 100%;
    max-width: 100%;
}

.start .textart {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 45%;
    position: relative;
    padding: 1rem;
}

.start .textart p {
    font-size: clamp(14px, 2vw, 15px);
}

.start .textart h1 {
    font-weight: 900;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.2;
}

.start .textart h1 span {
    font-size: clamp(30px, 4vw, 45px);
    background: linear-gradient(90deg, #2F539D, #5BA2D6);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
}

.start .textart a {
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(90deg, #2F539D, #5BA2D6);
    width: 9rem;
    font-weight: 600;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-around;
    padding: .5rem .2rem;
    border-radius: 25px;
    transition: all .2s ease;
    position: relative;
    z-index: 2;
}

.start .textart a:hover {
    transform: translateX(10px);
}

.start .textart a i {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: gray;
    padding: .5rem .6rem;
    border-radius: 20px;
    transition: all .2s ease;
}

.start .textart a:hover i {
    rotate: 45deg;
}

.start .cuadtart {
    padding: 1rem;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.start .cuadtart .cuad {
    position: relative;
    width: min(35vw, 350px);
    aspect-ratio: 1 / 1;
    min-width: 250px;
    rotate: 13deg;
    border-radius: 40px;
    background-color: #5BA2D6;
    transition: all .3s ease;
    box-shadow: 10px 10px 15px #858585;
    overflow: hidden;
}

.start .cuadtart .cuad img {
    rotate: -13deg;
    width: 400px;
    z-index: 1;
}

.start .cuadtart .cuad:hover {
    scale: 1.02;
    box-shadow: 15px 15px 20px #858585;
}

.start .cuadtart .cuad .cir {
    position: absolute;
    z-index: 0;
    border: solid 45px #2F539D;
    border-radius: 50%;
    height: 300px;
    width: 300px;
    top: -4rem;
    left: -12rem;
}

.start .cuadtart .cuad .cir2 {
    position: absolute;
    z-index: -1;
    background-color: #2F539D;
    border-radius: 50%;
    height: 300px;
    width: 300px;
    bottom: -2rem;
    right: -12rem;
}

.media .social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.media .social a {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    border: solid 2px #5BA2D6;
    background: #5BA2D6;
    color: #ffffff;
    border-radius: 50%;
    height: 3.2rem;
    width: 3.2rem;
    text-decoration: none;
}

.media .social a:hover {
    color: #5BA2D6;
    background: #ffffff;
    scale: 1.2;
}

svg {
    display: block;
  }
  

.inicio {
    display: flex;
    flex-direction: column;
}

.inicio .continicio {
    background: linear-gradient(0deg, #2F539D, #5BA2D6);
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.inicio .continicio .shape1 {
    position: absolute;
    z-index: 1;
    height: 400px;
    width: 400px;
    border: solid 50px #2F539D;
    border-radius: 50%;
    bottom: .5rem;
    left: -15rem;
}

.inicio .continicio .shape2 {
    position: absolute;
    z-index: 1;
    height: 400px;
    width: 400px;
    top: 0;
    right: -15rem;
    border: solid 50px #2F539D;
    border-radius: 20%;
    rotate: -10deg;
}

.inicio .continicio h1 {
    font-size: 45px;
    font-weight: 850;
    color: white;
    text-align: center;
    z-index: 2;
    position: relative;
}

.inicio .continicio .q {
    color: white;
    text-align: center;
    z-index: 2;
    position: relative;
}

.inicio .continicio .contcards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    width: 95%;
}

.inicio .continicio .contcards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 2rem;
    border-radius: 20px;
    z-index: 2;
    position: relative;
    overflow: hidden;
    transition: all .5s ease;
    background-color: white;
    color: #2F539D;
}

.inicio .continicio .contcards .card .cir-1 {
    position: absolute;
    height: 200px;
    width: 200px;
    z-index: 1;
    top: -7rem;
    left: -15rem;
    border: solid 30px #2f549d23;
    border-radius: 50%;
    transition: all .6s ease;
}

.inicio .continicio .contcards .card .cir-2 {
    position: absolute;
    height: 200px;
    width: 200px;
    z-index: 1;
    bottom: -7rem;
    right: -15rem;
    border-radius: 50%;
    background-color: #2f549d23;
    transition: all .6s ease;
}

.inicio .continicio .contcards .card:hover {
    box-shadow: 5px 5px 15px #ffffff;
}

.inicio .continicio .contcards .card:hover i {
    background-color: white;
    color: #2F539D;
}

.inicio .continicio .contcards .card:hover .cir-1 {
    position: absolute;
    height: 200px;
    width: 200px;
    z-index: 1;
    top: -2rem;
    left: -8rem;
    border: solid 30px #2f549d23;
    border-radius: 50%;
}

.inicio .continicio .contcards .card:hover .cir-2 {
    position: absolute;
    height: 200px;
    width: 200px;
    z-index: 1;
    bottom: -2rem;
    right: -8rem;
    border-radius: 50%;
    background-color: #2f549d23;
}

.inicio .continicio a {
    text-decoration: none;
    color: #ffffff;
    padding: 1rem 1rem;
    font-weight: 650;
    background-color: #5BA2D6;
    border-radius: 20px;
    width: 15rem;
    transition: all .2s ease;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.inicio .continicio a:hover {
    background-color: #ffffff;
    color: #2F539D;
    scale: 1.05;
}

.inicio .continicio .contcards .card i {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    background-color: #2F539D;
    border: solid 1px #2F539D;
    height: 70px;
    width: 70px;
    transition: all .3s ease;
}

.inicio .continicio .contcards .card .titulo {
    font-weight: 750;
    z-index: 2;
    position: relative;
    margin-top: 1rem;
    font-size: larger;
}

.inicio .continicio .contcards .card .descri {
    text-align: center;
    z-index: 2;
    position: relative;
}

.blured-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.metdesc {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.contrec {
    display: flex;
    justify-content: center;
    gap: 5rem;
    align-items: center;
    padding: 5rem 5rem;
}

.contrec img {
    width: 450px;
}

.contrec .rec {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contrec .rec .img2 {
    display: none;
}

.contrec .rec h1 {
    font-size: 45px;
    font-weight: 900;
    background: linear-gradient(90deg, #2F539D, #5BA2D6);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.contrec .rec ul li a {
    color: black;
    text-decoration: underline;
}

.contrec .rec ul li i {
    color: #2F539D;
}

.contrec .rec .estu {
    background: linear-gradient(90deg, #2F539D, #5BA2D6);
    width: max-content;
    color: white;
    font-weight: 700;
    border-radius: 40px;
    padding: 1rem 2rem;
    transition: all .5s ease;
    border: solid transparent 1px;
}

.contrec .rec .estu:hover {
    background: white;
    border: solid 1px #2F539D;
    color: #2F539D;
}

.boutus {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 5rem;
}

.boutus .boutimg {
    width: 500px;
}

.boutus .boutext {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: .5rem;
}

.boutus .boutext .ustitle {
    font-size: 72px;
    font-weight: 1000;
}

.boutus .boutext .ustitle span {
    font-size: 72px;
    font-weight: 1000;
    background: linear-gradient(90deg, #2F539D, #5BA2D6);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.boutus .boutext .usdesc {
    padding: .5rem 5rem;
}

.boutus .boutext .helps {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2F539D;
    font-weight: 700;
    border: solid 1px #2F539D;
    padding: .6rem 1.3rem;
    border-radius: 10px;
    transition: all .3s ease;
}

.boutus .boutext .helps:hover {
    scale: 1.05;
    background-color: #2F539D;
    color: #ffffff;
}

.misvis {
    background: linear-gradient(0deg, #2F539D, #5BA2D6);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.misvis .asd {
    font-size: 60px;
    font-weight: 900;
    color: #ffffff;
    z-index: 2;
    text-align: center;
}

.both {
    display: flex;
    justify-content: space-evenly;
}

.misvis .forma {
    position: absolute;
    z-index: 1;
    height: 300px;
    width: 300px;
    border: solid 50px #0c2b6b;
    border-radius: 50%;
    bottom: 0;
    left: -10rem;
}

.misvis .forma2 {
    position: absolute;
    z-index: 1;
    height: 400px;
    width: 400px;
    top: -4rem;
    right: -15rem;
    border: solid 50px #2f549d75;
    border-radius: 50%;
}

.misvis .mistext {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 2rem 2rem;
    z-index: 2;
    position: relative;
}

.misvis .mistext i {
    background-color: #ffffff;
    color: #2F539D;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: solid 2px #ffffff;
    height: 55px;
    width: 55px;
    position: absolute;
    top: -2rem;
}

.misvis .mistext .mistitle {
    font-size: 60px;
    font-weight: 900;
    text-align: center;
}

.misvis .mistext .mistitle span {
    font-size: 60px;
    font-weight: 900;
    background: linear-gradient(90deg, #2F539D, #5BA2D6);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.misvis .mistext .misdesc {
    text-align: justify;
}

.programas {
    padding: 3rem 2rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.programas h1 {
    font-size: clamp(35px, 5vw, 65px);
    color: #2F539D;
    font-weight: 800;
    margin-bottom: 2rem;
}

.progcards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background-color: #d3e2ff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    padding: 1rem;
    width: 100%;
    max-width: 450px;
    text-align: center;
    margin: 0 auto;
}

.card:hover {
    transform: scale(1.03);
}
 
.swiper-hero {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

/* Título */
.swiper h1 {
    font-size: 65px;
    text-align: center;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #2F539D;
}

.swiper h1 span {
    font-size: 65px;
    font-weight: 900;
    background: linear-gradient(90deg, #2F539D, #5BA2D6);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

/* Estilo general de los slides */
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    transition: all 0.5s ease;
    transform: scale(0.85);
    opacity: 0.3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(47, 83, 157, 0.2);
}

/* Slide central activo */
.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 8px 25px rgba(47, 83, 157, 0.3);
}

/* Slides adyacentes */
.swiper-slide-next,
.swiper-slide-prev {
    opacity: 0.5;
    transform: scale(0.9);
}

/* Imagen dentro del slide */
.swiper-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.swiper-slide-active img {
    transform: scale(1.05);
}

/* Botones de navegación */
.swiper-hero .swiper-button-prev,
.swiper-hero .swiper-button-next {
    --swiper-navigation-size: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    color: #2F539D;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-hero .swiper-button-prev:hover,
.swiper-hero .swiper-button-next:hover {
    background-color: #2F539D;
    color: white;
    transform: scale(1.1);
}

.swiper-hero .swiper-button-prev {
    left: 20px;
}

.swiper-hero .swiper-button-next {
    right: 20px;
}

/* Paginación */
.swiper-hero .swiper-pagination {
    bottom: 10px !important;
}

.swiper-hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.swiper-hero .swiper-pagination-bullet-active {
    background: #2F539D;
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive styles */
@media (max-width: 768px) {
    .programas {
        padding: 2rem 1rem;
    }
    
    .progcards {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .swiper h1 {
        font-size: 35px;
    }
    
    .swiper h1 span {
        font-size: 35px;
    }
    
    .swiper-hero img {
        height: 250px;
    }
}

.imgprog {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.titulo {
    color: #2F539D;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: bold;
    margin-top: 0.8rem;
}

.progdesc {
    padding: 1rem;
}

.progdesc p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #333;
    line-height: 1.5;
}

.footer {
    background: #0c2b6b;
    display: flex;
    align-items: stretch;
    padding: 2rem;
    justify-content: space-evenly;
    color: #ffffff;
    width: 100%;
    max-width: 100%;
}

.footer .fooimg {
    width: clamp(100px, 10vw, 140px);
    height: auto;
    align-self: center;
}

.footer .both {
    display: flex;
    justify-content: space-evenly;
    width: 50%;
    gap: 2rem;
}

.footer .both .col {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
    flex-direction: column;
}

.footer .both .col h1 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    text-align: center;
    margin-bottom: 1rem;
}

.footer .both .info p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    margin-bottom: 0.5rem;
}

.footer .both .social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer .both .social a {
    color: #fff;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    transition: transform 0.3s ease;
}

.footer .both .social a:hover {
    transform: scale(1.2);
}

.footer .both .col .korlog{
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem .7rem;
    width: fit-content;
}

.footer .both .col .korlog .korimg{
    width: 150px;
}

.rights {
    background-color: #487ce4;
    text-align: center;
    color: #ffffff;
    padding: 1rem;
    width: 100%;
}

.rights h1 {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.rights h1 a {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 800px) {
    .footer {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .footer .both {
        flex-direction: column;
        width: 100%;
        gap: 2rem;
    }
    
    .footer .both .col {
        width: 100%;
        text-align: center;
    }
    
    .footer .both .info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer .both .social {
        justify-content: center;
    }
}

@media (max-width: 1150px) {
    .contrec img {
        width: 400px;
    }

    .inicio .continicio .contcards .card {
        padding: 1rem .7rem;
    }

    .contrec {
        display: flex;
        justify-content: center;
        gap: 5rem;
        align-items: center;
        padding: 3rem 0;
        padding: 2rem 1rem;
    }

    .boutus .boutimg {
        width: 320px;
    }

    .boutus .boutext .ustitle {
        font-size: 60px;
    }

    .boutus .boutext .ustitle span {
        font-size: 60px;
    }

    .boutus .boutext .usdesc {
        padding: .5rem 1rem;
    }
}

@media (max-width: 900px) {
    .contrec img {
        width: 370px;
    }

    .card {
        padding: 1rem .5rem;
    }

    .boutus .boutimg {
        width: 300px;
    }

    .boutus .boutext .ustitle {
        font-size: 55px;
    }

    .boutus .boutext .ustitle span {
        font-size: 55px;
    }

    .contrec {
        display: flex;
        justify-content: center;
        gap: 5rem;
        align-items: center;
        padding: 3rem 3rem;
    }

    .boutus .boutext .ustitle {
        font-size: 65px;
    }

    .boutus .boutext .ustitle span {
        font-size: 65px;
    }
}

@media (max-width: 850px) {
    .boutus .boutimg {
        width: 280px;
    }

    .boutus .boutext .ustitle {
        font-size: 62px;
    }

    .boutus .boutext .ustitle span {
        font-size: 62px;
    }
}

@media (max-width: 800px) {
    .start {
        padding: 2rem 1rem;
    }
    
    .start .textart {
        width: 100%;
        text-align: center;
        align-items: center;
        padding: 0 1rem;
    }
    
    .start .cuadtart {
        width: 100%;
        padding: 2rem 1rem;
    }
    
    .start .cuadtart .cuad {
        width: min(80vw, 350px);
    }

    .start .cuadtart .cuad img {
        rotate: -13deg;
        width: 300px;
        z-index: 1;
    }

    .start {
        flex-direction: column;
    }

    .start .textart {
        width: 90%;
        text-align: center;
        align-items: center;
    }

    .start .cuadtart {
        width: 90%;
    }

    .start .cuadtart .cuad .cir {
        position: absolute;
        z-index: 0;
        border: solid 38px #2F539D;
        border-radius: 50%;
        height: 250px;
        width: 250px;
        top: -2rem;
        left: -10rem;
    }

    .start .cuadtart .cuad .cir2 {
        position: absolute;
        z-index: -1;
        background-color: #2F539D;
        border-radius: 50%;
        height: 250px;
        width: 250px;
        bottom: -2rem;
        right: -10rem;
    }

    .contrec .rec {
        align-items: center;
    }

    .contrec .rec .img2 {
        display: block;
        width: 300px;
    }

    .contrec img {
        display: none;
    }

    .boutus .boutimg {
        display: none;
    }

    .boutus .boutext .ustitle {
        text-align: center;
        font-size: 60px;
    }

    .boutus .boutext .ustitle span {
        font-size: 60px;
    }

    .misvis {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        padding: 3rem 2rem;
    }

    .both {
        flex-direction: column;
        align-items: center;
        gap: 4rem;
    }

    .misvis .mistext {
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .misvis .mistext .mistitle {
        font-size: 55px;
        font-weight: 900;
        text-align: center;
    }

    .misvis .mistext .mistitle span {
        font-size: 55px;
        font-weight: 900;
        color: #ffffff;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer .both {
        display: flex;
        flex-direction: column;
        width: 90%;
    }
}

@media (max-width: 700px) {
    .navbar {
        padding: .5rem 1rem;
    }
    
    .navbar .img {
        width: 50px;
    }

    .navbar .menu {
        display: none;
    }

    .navbar i {
        display: block;
        justify-content: center;
        align-items: center;
        border: solid 2px #5BA2D6;
        padding: 1.3rem .5rem;
        color: #5BA2D6;
        border-radius: 10px;
        transition: all .3s ease;
    }

    .navbar i:hover {
        background-color: #5BA2D6;
        color: white;
        border: solid 2px #5BA2D6;
    }

    .navbar .menu.active {
        position: absolute;
        display: block;
        display: flex;
        flex-direction: column;
        border-radius: 15px;
        padding: .5rem .5rem;
        backdrop-filter: blur(10px);
        background: #5BA2D64d;
        top: 5rem;
        right: 0;
        transition: all .5s ease;
        z-index: 9999;
    }

    .contrec .rec h1 {
        text-align: center;
    }

    .contrec .rec .img2 {
        display: block;
        width: 270px;
    }

    .card {
        padding: .8rem .5rem;
    }

    .boutus {
        padding: 0 3rem;
    }

    .boutus .boutext {
        padding: 0;
    }

    .boutus .boutext .usdesc {
        padding: .5rem 0rem;
    }
}

@media (max-width: 500px) {
    .start {
        flex-direction: column;
    }

    .start .textart {
        width: 100%;
        text-align: center;
    }

    .start .textart h1 {
        font-size: 40px;
    }

    .start .textart h1 span {
        font-size: 40px;
    }

    .start .cuadtart {
        width: 100%;
    }

    .card {
        padding: 1rem 1rem;
    }

    .contrec .rec .img2 {
        display: block;
        width: 250px;
    }

    .boutus {
        padding: 0 2rem;
    }

    .boutus .boutext {
        padding: 0;
    }

    .boutus .boutext .usdesc {
        padding: .5rem 0;
    }

    .boutus .boutext .ustitle {
        font-size: 50px;
    }

    .boutus .boutext .ustitle span {
        font-size: 50px;
    }
}