/* Fuentes optimizadas en una sola importación */
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Poppins:wght@100;300;800&display=swap');

/* Reset básico */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.off{
    display: none;
}

/* Asegura que todos los elementos respeten el box-sizing */
*, *::before, *::after {
    box-sizing: inherit;
}

.t-left{
    text-align: left;
}

.t-right{
    text-align: right;
}

.item-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* NAV */
#nav01 {
    background: #ffe99f00;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    
}

#nav01 ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333333;
}

#nav01 ul li {
        padding: 10px 20px;
    background: #333;
    color: #fff;
    width: fit-content;
    font-size: 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: flex-end;
}

#nav01 ul li a {
   color: #ffffff;
   text-decoration: none;
}

#nav01 ul li i {
    margin: 0 10px;
    cursor: pointer;
}

#nav01 ul li i:hover{
    color: #ffe204;
}

#nav01 ul li a:hover{
    color: #ffe204;
}

#nav01 > div{
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 10px 15px;
        border-bottom: 3px solid #81a360;
}

#nav01 > div > div {
    width: 200px;
    color: #000000;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
}


#nav01 > div > div > button {
    width: 100%;
    background: #128c7e;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 1px;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0px 3px 6px -3px #000000e6;
}

#nav01 > div > div > button:hover {
    transition: 0.3s;
    background: #FFF;
    color: #075e54;
}

#nav01 > div > ol{
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

#nav01 > div > ol li{
    padding: 10px;
    font-size: 18px;
    color: #000000;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
}

#nav01 > div > ol li:hover{
    color: #81a360;
}

#nav01 > div > ol li.active,
.nav-mob li.active {
    color: #81a360;
   /* border-bottom: 3px solid #81a360;   opcional */
}


/**/
/* las imágenes no van a salir del márgen de la pantalla*/
#slider { 
    overflow: hidden; position: relative;     
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
} 

#slider figure img { width: 20%;
    float: left;
    height: 100%; }

#slider figure { 
  position: relative;
  width: 500%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  animation: 30s slidy infinite; /*el movimiento se va a mantener de forma indefinida -infinito-*/
}

#slider div {
    position: absolute;
    width: 100%;
    background: #103463;
    background: linear-gradient(90deg, rgba(16, 52, 99, 0.89) 30%, rgba(209, 28, 56, 0) 100%);
    height: 100%;
    z-index: 2;
    margin: 0%;
    padding: 0 5%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-start;
}

#slider div h1{
    font-size: 28px;
    color: #ffff;
    letter-spacing: 1px;
}

#slider div p{
    font-size: 22px;
    color: #ffff;
    letter-spacing: 1px;
}

#slider div ol {
    margin: 1% 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
}

#slider div ol button{
    font-size: 20px;
    letter-spacing: 1px;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

#slider div ol button:hover i{
    transform: translateX(5px);
    transition: 0.3s;
}

#slider div ol .cta1{
    background: #81a360;
    color: #0B2E13;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  margin-right: 10px;
  letter-spacing: 1px;
}

#slider div ol .cta2 {
    background: #ffffff;
    color: #0B2E13;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 1px;

}

#slider div ol .cta2:hover{
    background: #81a360;
    transition: 0.3s;
}

#slider div ol .cta1:hover {
    background: #ffffff;
    transition: 0.3s;

}


/*esta parte del código define el movimiento de las imágenes a la izquierda*/
@keyframes slidy {
0% { left: 0%; }
20% { left: 0%; }
25% { left: -100%; }
45% { left: -100%; }
50% { left: -200%; }
70% { left: -200%; }
75% { left: -300%; }
95% { left: -300%; }
100% { left: -400%; }
}


.carousel {
      background: linear-gradient(336deg, rgb(129 163 96 / 7%) 30% 30%, rgb(255 255 255 / 0%) 100%);
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}

.carousel-item {
  display: none;
  position: relative;
}

.carousel-item img {
  width: 100%;
  display: block;
}

.carousel-text {
        position: absolute;
    top: 5%;
    left: 10%;
    color: #fff;
    background: #0000008f;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.carousel-text img{
    width: 80px;
}

.carousel-text h3{
    font-size: 20px;
    letter-spacing: 1px;
}

.carousel-text ol{
    margin: 0;
    padding: 0;
    list-style: none;
}

.carousel-text ol li{
    margin-bottom: 5px;
    text-align: center;
}

button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}


/***/

.wm-01{
    background: linear-gradient(336deg, rgb(129 163 96 / 7%) 30% 30%, rgb(255 255 255 / 0%) 100%);
    width: 100%;
    padding: 5% 15px;
}

.wm-01 ul{
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: center;
        align-items: stretch;
}

.wm-01 ul li {
    width: 50%;
    position: relative;
}

.img-bg{
        position: absolute;
    width: 90%;
    height: 100%;
    top: 0%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 25px 25px 0px;
}

.wm-01 ul li img{
    width: 95%;
    border-radius: 0 20px 20px 0;
    position: relative;
}

.req::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 0px;
    width: 15px;
    height: 100%;
    background: #81a360;
}

.wm-01 ul li span {
    color: #81a360;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
}

.wm-01 ul li h2{
    color: #0f2f59;
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    
}

.wm-01 ul li h3{
    font-size: 22px;
    letter-spacing: 1px;
    color: #0f2f59;
}

.wm-01 ul li p{
    color: #0f2f59;
    font-size: 20px;
    letter-spacing: 1px;
}

.wm-01 ul li ol{
    width: 100%;
    padding: 0 0 0 15px;
    margin: 15px 0;
    list-style: none;
}

.wm-01 ul li ol li {
    font-size: 20px;
    color: #0f2f59;
    width: 70%;
    letter-spacing: 1px;
    padding: 0 0 0 20px;
    margin: 0 0 20px 0;
}

.wm-01 ul li ol li i{
    color: #81a360;
    margin-left: -35px;
    font-size: 22px;
    margin-right: 5px;
}

.wm-01 ul li button{
    background-color: #81a360;
    color: #0B2E13;
    font-size: 20px;
    letter-spacing: 1px;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 20px;
    font-weight: bold;
    margin-top: 25px;
}

.wm-01 ul li button:hover{
    transition: 0.3s;
    background-color: #fff;
    color: #81a360;
}

/****/

.wm-02{
    background-color: #33cccc29;
    width: 100%;
    padding: 6% 15px;
}

.wm-02 h2 { 
   background: #0f2f59;
    width: 50%;
    padding: 20px;
    color: #fff;
    letter-spacing: 1px;
    border-radius: 50px;
    font-size: 28px; 
    margin: 0 25% 3% 25%;
    text-align: center;
}

.wm-02 ul{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.wm-02 ul li {
    width: 300px;
    height: 300px;
    perspective: 1000px; /* Activa profundidad 3D */
    text-align: center;
        background: rgb(15 47 89);
    border-radius: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    margin: 3%;
    border: 8px solid #0f2f59;
    position: relative;
    cursor: pointer;
}

.wm-02 ul li img{
    width: 60%;
    border-radius: 0px 0px 50px 50px;
}

.wm-02 ul li span{
    width: 100px;
    height: 100px;
    font-size: 83px;
    font-weight: bold;
    background-color: #ffffff;
    color: #000000;
    position: absolute;
    top: -31px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 4px solid #33cccc;
        z-index: 9;
}

.wm-02 ul li h3{
    font-size: 24px;
    letter-spacing: 1px;
    background: #e2e2e2;
    padding: 15px 20px;
    border-radius: 50px;
    color: #0f2f59;
    position: absolute;
    bottom: -60px;
    z-index: 9;
}

/* Contenedor interno que gira */
.flip-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease-in-out;
}

/* Gira al pasar el mouse */
.wm-02 ul li:hover .flip-inner {
    transform: rotateY(180deg);
}

/* Estilo para ambas caras */
.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 190px;
    border: 8px solid #0f2f59;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    overflow: hidden;
}

/* Frente: se mantiene tu estilo original */
.flip-front {
    background: white;
}

/* Atrás: solo el párrafo */
.flip-back {
    background: #0f2f59;
    color: white;
    transform: rotateY(180deg);
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
}

.flip-back p {
    font-size: 18px;
    line-height: 1.4;
}

/****/

.wm-03{
   background: linear-gradient(336deg, rgb(129 163 96 / 7%) 30% 30%, rgb(255 255 255 / 0%) 100%);
    width: 100%;
    padding: 0% 15px;
    padding-bottom: 6%;
}

.wm-03 h2 {
    background: #33cccc;
    margin: -45px 0 0 0;
    padding: 25px 20px;
    color: #ffffff;
    text-align: center;
    font-size: 32px;
    letter-spacing: 1px;
    border-radius: 50px 50px 0px 0px;
}

.wm-03 ul{
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    list-style: none;
}

.wm-03 ul li {
    width: 50%;
}

.wm-03 ul li ol{
    background-color: #33cccc;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.wm-03 ul li ol li{
    background-color: #191a1a;
    width: 100%;
    position: relative;
}

.wm-03 ul li ol li span{
   background-color: #bababa;
    width: 100%;
    height: 400px;
    position: absolute;
    top: 0x;
    z-index: 0;
        background-position: center;
    background-size: cover;
}

.wm-03 ul li ol li div{
   background-color: #fffffff5;
    width: 95%;
    /* height: 300px; */
    position: absolute;
    top: 370px;
    z-index: 2;
    margin: 0 2.5%;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 5px 8px -4px #33333347;
}

.wm-03 ul li ol li div h3{
    width: 100%;
    display: flex;
    align-items: center;
    align-content: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: bold;
    padding: 0 3%;
}

.wm-03 ul li ol li div h3 img {
    margin-right: 15px;
}

.wm-03 ul li ol li div p{
    width: 100%;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: bold;
    padding: 0 3%;
    margin-bottom: 3%;
}

.wm-03 ul li > ul{
    width: 100%;
}

.wm-03 ul li > ul li {
    width: 23%;
    height: 650px;
    background: #103463;
    background: linear-gradient(180deg, #34cccc63 30%, rgb(255 255 255) 100%);
    margin: 0 1%;
    display: flex;
    flex-direction: column-reverse;
    border-radius: 0 0 125px 125px;
    align-items: center;
    padding: 26px;
    cursor: pointer;
    border: 3px solid #ffffff;
        box-shadow: 0px 5px 8px -4px #33333347;
}

.wm-03 ul li > ul li:hover,
.wm-03 ul li > ul li.active {
    border: 3px solid #34cccc;
    transition: 0.3s;
    transform: translatey(-5px);
}

.wm-03 ul li > ul li img{
    width: 100px;
    
}

.wm-03 ul li > ul li h3 {
    transform: rotate(270deg);
    width: 100%;
    margin-bottom: 65%;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 1px;
}

/***/

.wm-04{
    background-color: #333;
    width: 100%;
    padding: 5% 15px;
}

.wm-04 ul{
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: center;
}

.wm-04 ul li {
    width: 50%;
}

.wm-04 ul li img{
    width: 95%;
}

/***/

.wm-05 {
    background: #fff;
    width: 100%;
    background: linear-gradient(158deg, rgb(129 163 96 / 7%) 30% 30%, rgb(255 255 255 / 0%));
    padding: 5% 15px;
}

.wm-05 ul{
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: center;
        align-items: stretch;
}

.wm-05 ul li {
    width: 50%;
}

.wm-05 ul li img{
    width: 95%;
    border-radius: 0 20px 20px 0;
    position: relative;
}

.wm-05 ul li span {
    color: #81a360;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
}


.wm-05 ul li h2{
    color: #0f2f59;
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wm-05 ul li p {
    color: #0f2f59;
    font-size: 20px;
    letter-spacing: 1px;
}

.wm-05 ul li form{
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: flex-start;
}

.wm-100{
    width: 100%;
}

.wm-50{
    width: 50%;
}

.wm-25{
    width: 25%;
}

.wm-05 ul li form div {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    margin-bottom: 15px;
    padding: 0 15px 0 0px;
}

.wm-05 ul li form div label {
    color: #0f2f59;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.wm-05 ul li form div input, textarea, select{
    border: 2px solid #81a3609c;
    border-radius: 5px;
    padding: 10px;
}

.wm-05 ul li form div button {
    background-color: #81a360;
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

.wm-05 ul li form div button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/***/

.wm-06{
    background: linear-gradient(336deg, rgb(129 163 96 / 7%) 30% 30%, rgb(255 255 255 / 0%) 100%);
    width: 100%;
    padding: 5% 40px;
}

.wm-06 h2 {
    width: 100%;
    text-align: center;
    color: #0f2f59;
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4%;
}

.wm-06 ul{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wm-06 ul>li {
    width: 49%;
    position: relative;
    margin-bottom: 2%;
}

.wm-06 ul>li span{
    position: absolute;
    top: 0;
    left: 0;
    background: #0000006e;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 3%;
}

.wm-06 ul>li span h3 {
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
}

.wm-06 ul>li span img{
    width: 70px;
}

.wm-06 ul>li span ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wm-06 ul>li span ol li {
    font-size: 18px;
    letter-spacing: 1px;
    text-align: center;
}
.wm-06 ul>li img{
    width: 100%;
}

/**/

.footer{
    width: 100%;
    margin: 0;
    padding: 2% 15px;
    background: #122b4d;
}

.footer ul{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.footer ul h3 {
    color: #81a360;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
}

.footer ul ol{
    width: 100%;
    color: #f9fbf7b0;
    list-style: none;
}

.footer ul ol li {
    margin-bottom: 15px;
    cursor: pointer;
}

.footer ul ol li:hover {
    color: #fff;
    transition: 0.3s;
}


.footer ul ol li i{
    margin-left: -25px;
}

.footer p {
    color: #fafcf982;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
}

.trig-desk{
    display: initial
}

.trig-desk-slider{
    display: initial
}

.trig-mob{
        display: none!important;
    }

.trig-mob-slider{
        display: none!important;
    }

.nav-mob {
    width: 100%;
    margin: 0;
    padding: 10px 15px;
    list-style: none;
    background: #52616d;
    border-bottom: 2px solid #ffffff85;
    position: fixed;
    top: -25%;
    transition: 0.3s;
    z-index: -1;
}

.nav-mob.active {
    top: 108px;
    transition: 0.3s;
}

.nav-mob li{
    font-size: 20px;
    color: #ffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 15px 0;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}


.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    width: 80%;
    height: 80%;
    background: white;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.popup-content iframe {
    width: 100%;
    height: 100%;
}

.close {
    position: absolute;
    top: 8px;
    right: 15px;
    font-size: 30px;
    color: black;
    cursor: pointer;
    z-index: 10000;
}

@media (max-width:870px) {
    .trig-desk{
        display: none!important; /* o flex, según tu diseño */
    }
    .trig-mob{
        display: initial!important;
    }

    #nav01 > div > div {
    width: 150px;
}

    #slider {
        margin-top: 105px;
    }

    #slider div h1 {
        font-size: 24px;
    }

    #slider div p {
        font-size: 18px;
    }

    #slider div ol button{
        font-size: 18px;
    }

    .wm-01 {
        padding: 5% 30px;
    }

    .wm-01 ul li {
        width: 100%;
    }

    .wm-01 ul li h2 {
        font-size: 24px;
    }

    .wm-01 ul li h3 {
        font-size: 20px;
    }

    .wm-01 ul li p {
        font-size: 18px;
    }

    .wm-01 ul li ol li {
        font-size: 18px;
        width: 100%;
        margin: 0 0 15px 0;
    }

    .wm-01 ul li button{
        font-size: 18px;
    }

    .wm-02 h2 {
        width: 75%;
        font-size: 24px;
        margin: 0 0% 5% 12.5%;
    }

    .wm-02 ul li {
        margin: 3% 3% 10% 3%;
    }

    .wm-02 ul li span {
        font-size: 38px;
        width: 60px;
        height: 60px;
    }

    .wm-02 ul li h3 {
        font-size: 20px;
    }

    .wm-03 h2 {
        font-size: 24px;
    }
    .wm-03 ul li ol li div h3 {
        font-size: 20px;
    }

    .wm-03 ul li ol li div h3 img {
        width: 80px;
    }

    .wm-03 ul li ol li div p {
        font-weight: normal;
        font-size: 18px;
        padding: 0% 5%;
        margin-bottom: 5%;
    }

    .wm-03 ul li > ul li {
        width: 48%;
        height: 300px;
        margin-bottom: 20px;
    }

    .wm-03 ul li > ul li h3 {
        display: none;
    }

    .wm-05 {
        padding: 10% 30px 5% 30px;
    }

    .wm-05 ul li {
        width: 100%;
    }

    .wm-05 ul li h2 {
        font-size: 24px;
    }

    .wm-05 ul li p {
        font-size: 18px;
    }

    .wm-05 ul li form div label {
        font-size: 18px;
    }

    .wm-05 ul li form div button {
        font-size: 18px;
    }

    .wm-06 ul>li {
        width: 100%;
    }

    .wm-25 {
        width: 50%;
    }

    .footer ul {
        flex-wrap: wrap;
    }
}

@media (max-width:600px) {
    .trig-mob-slider{
        display: initial!important;
    }
    .trig-desk-slider{
        display: none!important; /* o flex, según tu diseño */
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
        object-fit: cover;
    }

    .wm-50 {
        width: 100%;
    }

    .wm-25 {
        width: 100%;
    }

    .wm-02 h2 {
        width: 100%;
        font-size: 24px;
        margin: 0 0% 15% 0%;
    }

    .wm-02 ul li {
        width: 250px;
        height: 250px;
        margin: 3% 3% 20% 3%;
    }

    .wm-03 {
        padding: 10% 15px;
    }

    .wm-03 ul {
        flex-direction: column-reverse;
    }

    .wm-03 ul li {
        width: 100%;
    }

    .wm-03 ul li ol li {
        height: 655px;
        border-radius: 0 0 20px 20px;
    }

     .wm-03 ul li ul {
        flex-direction: row;
    }

    .wm-03 ul li > ul li {
        width: 23%;
        height: 130px;
        margin-bottom: 20px;
    }

    .wm-03 ul li > ul li img {
        width: 55px;
    }

    .footer {
        padding: 10% 15px;
    }

}