 /*===== GOOGLE FONTS =====*/
 @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
 @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500&display=swap');


 /*===== VARIABLES CSS =====*/
 :root {
     --header-height: 4.5rem;

     /*===== Colores =====*/
     --first-color: #3664F4;
     --dark-color: #070D1F;
     --navy-blue: #293241;
     --dark-color-alt: #282B3A;
     --white-color: #F5F9FF;

     /*===== Fuente y tipografia =====*/
     --body-font: 'Poppins', sans-serif;
     --second-font: 'Nunito ';
     --normal-font-size: .938rem;
     --small-font-size: .813rem;

     /*===== z index =====*/
     --z-fixed: 100;
 }

 @media screen and (min-width: 768px) {
     :root {
         --normal-font-size: 1rem;
         --small-font-size: .875rem;
     }
 }

 /*===== BASE =====*/
 *,
 ::before,
 ::after {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
 }

 body {
     margin: var(--header-height) 0 0 0;
     font-family: var(--body-font);
     font-size: var(--normal-font-size);
     font-weight: 500;
 }

 ul {
     margin: 0;
     padding: 0;
     list-style: none;
 }

 a {
     text-decoration: none;
 }

 img {
     max-width: 100%;
     height: auto;
 }

 .bd-grid {
     max-width: 1024px;
     display: -ms-grid;
     display: grid;
     -ms-grid-columns: 100%;
     grid-template-columns: 100%;
     margin-left: 1.5rem;
     margin-right: 1.5rem;
 }

 /*===== HEADER =====*/
 .header {
     width: 100%;
     height: var(--header-height);
     position: fixed;
     top: 0;
     left: 0;
     padding: 0 2rem;
     background-color: #ecf3fe;
     z-index: var(--z-fixed);
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;

 }

 .header__logo {
     color: var(--navy-blue);
 }

 .header__toggle {
     font-size: 1.5rem;
     color: var(--dark-color-alt);
     cursor: pointer;
 }

 /*===== NAV =====*/
 @media screen and (max-width: 768px) {
     .nav {
         position: fixed;
         top: 0;
         left: -100%;
         background-color: var(--white-color);
         color: var(--white-color);
         width: 100%;
         height: 100vh;
         padding: 1.5rem 0;
         z-index: var(--z-fixed);
         -webkit-transition: .5s;
         transition: .5s;
     }

     .nav__menu {
         -ms-flex-item-align: center;
         -ms-grid-row-align: center;
         align-self: center;
     }
 }

 .nav__content {
     height: 100%;
     -ms-grid-rows: max-content 3fr max-content;
     grid-template-rows: -webkit-max-content 3fr -webkit-max-content;
     grid-template-rows: max-content 1fr max-content;
     row-gap: 1rem;
     width: 100%;
 }

 .nav__close {
     position: absolute;
     right: 1.5rem;
     font-size: 1.3rem;
     padding: .25rem;
     background-color: var(--dark-color-alt);
     border-radius: 50%;
     cursor: pointer;
 }

 /* .nav__img {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding-top: .25rem;
margin-bottom: .8rem;
width: 56px;
height: 56px;
background-color: var(--first-color);
border-radius: 50%;
overflow: hidden;
} */

 /* .nav__img img {
width: 46px;
} */

 .nav__name {
     display: block;
     color: var(--dark-color);
 }

 .nav__name img {
     height: 40px;
     width: 90px;
 }

 .nav__profesion {
     font-size: var(--small-font-size);
 }

 .nav__menu {
     -ms-flex-item-align: center;
     -ms-grid-row-align: center;
     align-self: center;
 }


 .nav__listid li {
     margin-right: 15px;
     font-size: 0.8em;
 }

 .nav__list li {
     margin-right: 15px;
     font-size: 0.8em;
 }

 .nav__list a {
     color: var(--dark-color);
     font-family: var(--body-font);
     font-weight: bold;
     text-decoration: none;
 }

 @media screen and (max-width: 576px) {


     .nav__list li {
         font-size: 1.5em;
     }

     .nav__list a {}
 }

 .nav__item {
     margin: 2.5rem 0;
 }

 .nav__link {
     color: var(--dark-color);
 }

 /* .nav__social {
padding-top: .5rem;
} */

 /* .nav__social-icon {
font-size: 1.2rem;
color: var(--white-color);
margin-right: 1rem;
}

.nav__social-icon:hover {
color: var(--first-color);
} */

 /*Aparecer menu*/
 .show {
     left: 0;
 }

 /*Active menu*/
 /* .active {
color: var(--first-color);
} */

 /*===== MEDIA QUERIES =====*/
 @media screen and (min-width: 768px) {
     body {
         margin: 0;
     }

     .header {
         height: calc(var(--header-height) + 1rem);
     }

     .header__logo,
     .header__toggle {
         display: none;
     }

     .nav {
         width: 100%;
     }

     .nav__content {
         -ms-grid-columns: (max-content)[2];
         grid-template-columns: repeat(2, -webkit-max-content);
         grid-template-columns: repeat(2, max-content);
         -ms-grid-rows: 1fr;
         grid-template-rows: 1fr;
         -webkit-column-gap: 1rem;
         column-gap: 1rem;
         -webkit-box-pack: justify;
         -ms-flex-pack: justify;
         justify-content: space-between;
         width: 100%;

     }

     .nav__close,
     .nav__profesion {
         display: none;
     }

     .nav__perfil {
         display: -webkit-box;
         display: -ms-flexbox;
         display: flex;
         -webkit-box-align: center;
         -ms-flex-align: center;
         align-items: center;
     }

     .nav__img {
         width: 32px;
         height: 32px;
         margin-right: .5rem;
         margin-bottom: 0;
         -webkit-box-align: center;
         -ms-flex-align: center;
         align-items: center;
     }

     .nav__img img {
         width: 26px;
     }

     .nav__list {
         display: -webkit-box;
         display: -ms-flexbox;
         display: flex;
     }

     .nav__listid {
         display: -webkit-box;
         display: -ms-flexbox;
         display: flex;
     }

     .nav__item {
         margin: 0 .25rem;
     }

     .nav__link {
         padding: .5rem .8rem;
         border-radius: .25rem;
     }

     .nav__link:hover {
         color: var(--first-color);
     }

     .active {

         color: var(--first-color);
     }
 }

 @media screen and (min-width: 1024px) {
     .bd-grid {
         margin-left: auto;
         margin-right: auto;
     }
 }

 /* body */

 /* .container {
margin: 0;
padding: 0;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
} */

 .ediwap {
     background-color: #ecf3fe;
     width: 100%;
     height: 100vh;
 }

 .column {
     -ms-flex: 50%;
     flex: 50%;
     padding: 0 4px;
 }

 .column img {
     margin-top: 8px;
     vertical-align: middle;
 }


 .container-fluid {
     margin: 0 auto;
     padding: 0%;
     height: 100vh;
     width: 100%;
     background-color: var(--white-color);
 }

 .col {
     width: 100%;
     max-width: 800px;
     margin: 0 auto;
     padding: 20px;
     justify-content: center;
     display: flex;
 }

 .col p {
     font-size: 16px;
     line-height: 1.5;
     text-align: center;
     color: #343f52;
     font-family: var(--first-font)
 }

 @media (max-width: 600px) {
     .col {
         padding: 10px;
     }

     .col p {
         font-size: 14px;
     }
 }

 .btn {
     width: 10rem;
     height: 3rem;
     border: none;
     background-color: var(--dark-color-alt);
     color: var(--white-color);
     border-radius: 10px;
     transition: background-color 0.3s ease;
 }

 .btn:hover {
     background-color: #323f67;
 }


 .carousel-container {
     width: 80%;
     margin: auto;
     position: relative;
     display: flex;
     flex-direction: column;
     gap: var(--lx-gap);

     .carousel {
         aspect-ratio: 16/9;
         width: 100%;
         position: relative;
         overflow: hidden;

         .item {
             opacity: 0;
             width: 100%;
             height: 100%;
             display: none;
             transition: opacity 0.5s ease-in-out;

             img {
                 width: 100%;
                 height: 100%;
                 object-fit: cover;
                 object-position: center;
             }

             .caption {
                 width: 100%;
                 padding: var(--lx-space-01);
                 position: absolute;
                 bottom: 0;
                 text-transform: uppercase;
                 text-align: center;
                 font-size: 12px;
                 background-color: rgba(0, 0, 0, 0.5);
             }

             &.active {
                 opacity: 1;
                 display: block;
             }
         }
     }

     .btn {
         padding: 1em 2em;
         position: absolute;
         transform: translateY(-50%);
         top: 50%;
         outline: none;
         border: none;
         cursor: pointer;
         text-transform: uppercase;
         font-size: 12px;
         font-weight: 900;
         color: #10100e;
         background-color: #ffffe6;
         transition: transform 0.2s ease-in-out;

         &:active,
         &:focus {
             transform: translateY(-50%) scale(0.9);
         }

         &:hover {
             transform: translateY(-50%) scale(0.96);
         }
     }

     .prev {
         left: -5%;
     }

     .next {
         right: -5%;
     }

     .dots {
         display: flex;
         align-items: center;
         justify-content: center;
         gap: 10px;

         .dot {
             cursor: pointer;
             height: 10px;
             width: 10px;
             background-color: #242421;
             transition: background-color 0.2s ease;

             &.active,
             &:hover {
                 background-color: #ffffe6;
             }
         }
     }
 }