* {
   margin: 0;
   padding: 0;
   border: 0;
   -webkit-box-sizing: border-box;
   box-sizing: border-box
 }
 figure,
 iframe,
 img,
 picture,
 video {
   max-width: 100%;
   width: 100%;
   display: block;
   -o-object-fit: cover;
   object-fit: cover;
   -o-object-position: center center;
   object-position: center center;
   margin: 0
 }
 a {
   display: block;
   text-decoration: none;
   color: inherit;
   font-size: inherit
 }
 a:hover {
   text-decoration: none
 }
 p a {
   display: inline
 }
 ul {
   margin: 0;
   padding: 0
 }
 li {
   list-style-type: none
 }
 a,
 b,
 blockquote,
 em,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 i,
 p,
 span,
 strong,
 u {
   font-size: 1em;
   font-weight: inherit;
   font-style: inherit;
   text-decoration: none;
   color: inherit;
   margin: 0
 }
 blockquote:after,
 blockquote:before,
 q:after,
 q:before {
   content: "";
   content: none
 }
 button,
 form,
 input,
 label,
 select,
 textarea {
   font-family: inherit;
   font-size: inherit;
   border: none;
   outline: 0;
   color: inherit;
   display: block;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none
 }
 button {
   background-color: transparent
 }
 button:focus {
   outline: 0;
   border: none
 }
 table,
 td,
 tr {
   border-collapse: collapse;
   border-spacing: 0
 }
 svg {
   width: 100%;
   display: block;
   fill: currentColor
 }
 body {
   font-smooth: always;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   hyphens: manual;
   -moz-hyphens: manual;  
   padding-top: 99px; 
 }

/****************************
   FONTS - BEBAS
 ****************************/
@font-face {
   font-family: "Gilroy-Black";
   src: url("../fonts/Gilroy-Black.eot?") format("eot"),
      url("../fonts/Gilroy-Black.woff") format("woff"),
      url("../fonts/Gilroy-Black.ttf") format("truetype"),
      url("../fonts/Gilroy-Black.svg#Gilroy-Black") format("svg");
   font-weight: normal;
   font-style: normal;
}

@font-face {
   font-family: "Gilroy-Bold";
   src: url("../fonts/Gilroy-Bold.eot?") format("eot"),
      url("../fonts/Gilroy-Bold.woff") format("woff"),
      url("../fonts/Gilroy-Bold.ttf") format("truetype"),
      url("../fonts/Gilroy-Bold.svg#Gilroy-Bold") format("svg");
   font-weight: normal;
   font-style: normal;
}

@font-face {
   font-family: "Gilroy-Light";
   src: url("../fonts/Gilroy-Light.eot?") format("eot"),
      url("../fonts/Gilroy-Light.woff") format("woff"),
      url("../fonts/Gilroy-Light.ttf") format("truetype"),
      url("../fonts/Gilroy-Light.svg#Gilroy-Light") format("svg");
   font-weight: normal;
   font-style: normal;
}

@font-face {
   font-family: "Gilroy-Medium";
   src: url("../fonts/Gilroy-Medium.eot?") format("eot"),
      url("../fonts/Gilroy-Medium.woff") format("woff"),
      url("../fonts/Gilroy-Medium.ttf") format("truetype"),
      url("../fonts/Gilroy-Medium.svg#Gilroy-Medium") format("svg");
   font-weight: normal;
   font-style: normal;
}
@font-face {
   font-family: "MinionPro-Regular";
   src: url("../fonts/MinionPro-Regular.eot?") format("eot"),
      url("../fonts/MinionPro-Regular.woff") format("woff"),
      url("../fonts/MinionPro-Regular.ttf") format("truetype"),
      url("../fonts/MinionPro-Regular.svg#MinionPro-Regular") format("svg");
   font-weight: normal;
   font-style: normal;
}

:root {
   /* SIZES BOX */
   --ui_container_primary: 1100px;
   --ui_container_secundary: 505px;
   /* FONTS */
   --font-Gilroy-Black: 'Gilroy-Black';
   --font-Gilroy-Bold: 'Gilroy-Bold';
   --font-Gilroy-Light: 'Gilroy-Light';
   --font-Gilroy-Medium: 'Gilroy-Medium';
   --font-MinionPro-Regular: 'MinionPro-Regular';

   /* COLORES */
   --color-F7F5F9: #F7F5F9;
   --color-FFFFFF: #FFFFFF;
   --color-675983: #675983;
   --color-675884: #675884;
   --color-9D248E: #9D248E;
   --color-5BBAE9: #5BBAE9;
   --color-BD1083: #BD1083;
   --color-7CCEF2: #7CCEF2;
   --color-361051: #361051;
   --color-00ADE6: #00ADE6;
   --color-BD1084: #BD1084;
   --color-9D9C9C: #9D9C9C;
   --color-C6BECE: #C6BECE;
}

.ui_container_primary {
   max-width: var(--ui_container_primary);
   width: 100%;
   margin-left: auto;
   margin-right: auto;
}

.ui_header {
   position: fixed;
   top: 0;
   left: 0;
   z-index: 3;
   width: 100%;
   padding: 10px 15px;
   height: 99px;
   border-bottom: 2px solid var(--color-C6BECE);
   background-color: var(--color-FFFFFF);
}

.ui_header_box {
   display: -webkit-flex;
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 100%;
}

.ui_brand__figure {
   max-width: 4rem;
   width: 100%;
}

.ui_brand__figure img {
   max-width: 100%;
   width: 100%;
}

.ui_nav__ul {
   display: -webkit-flex;
   display: flex;
   align-items: center;
}

.ui_nav__ul > li {
   margin-right: 4rem;
   position: relative;
}

.ui_nav__ul li:last-child {
   margin-right: 0rem;
}

.ui_nav__a {
   font-family: var(--font-Gilroy-Medium);
   font-size: 1.1rem;
   line-height: 1.1em;
   color: var(--color-361051);
   padding-bottom: 3px;
   border-bottom: 2px solid transparent;
   cursor: pointer;
}

.ui_nav__a:hover, .ui_active {
   color: var(--color-BD1083);
   border-color: var(--color-BD1083);
}

/* INICIO */
.ui_header.a  .ui_nav__ul li.a a {
   color: var(--color-BD1083);
   border-color: var(--color-BD1083);
}

.ui_header.a  .ui_nav__ul li.b a {
   color: initial;
   border-color: transparent;
}

.ui_header.a  .ui_nav__ul li.c a {
   color: initial;
   border-color: transparent;
}

/* NOSOTROS */
.ui_header.b  .ui_nav__ul li.a a {
   color: initial;
   border-color: transparent;
}

.ui_header.b  .ui_nav__ul li.b a {
   color: var(--color-BD1083);
   border-color: var(--color-BD1083);
}

.ui_header.b  .ui_nav__ul li.c a {
   color: initial;
   border-color: transparent;
}

/* RESPONSABILIDAD */
.ui_header.c  .ui_nav__ul li.a a {
   color: initial;
   border-color: transparent;
}

.ui_header.c  .ui_nav__ul li.b a {
   color: initial;
   border-color: transparent;
}

.ui_header.c  .ui_nav__ul li.c a {
   color: var(--color-BD1083);
   border-color: var(--color-BD1083);
}

/* GESTIÓN */
.ui_header.d  .ui_nav__ul li.a a {
   color: initial;
   border-color: transparent;
}

.ui_header.d  .ui_nav__ul li.b a {
   color: var(--color-BD1083);
   border-color: var(--color-BD1083);
}

.ui_header.d  .ui_nav__ul li.c a {
   color: initial;
   border-color: transparent;
}

.ui_mask {
   cursor:pointer;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 2;
}

.ui_subnav {
   padding-top: 54%;
   position: absolute;
   z-index: 2;
   left: 50%;
   width: max-content;
   transform: translateX(-50%);
   -webkit-transform: translateX(-50%);
   -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
   -o-transform: translateX(-50%);
   
}

.ui_subnav__ul {
   background-color: var(--color-9D9C9C);
   position: relative;
   display: none;
}

.ui_subnav__ul::before {
   content: '';
   position: absolute;
   top: -11px;
   left: calc(50% - 11px);
   width: 0;
   height: 0;
   border-right: 11px solid transparent;
   border-top: 11px solid transparent;
   border-left: 11px solid transparent;
   border-bottom: 11px solid var(--color-9D9C9C);
   transform: translateY(-50%);
   -webkit-transform: translateY(-50%);
   -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   -o-transform: translateY(-50%);
}

.ui_subnav__ul li:first-child {
   border-bottom: 1px solid var(--color-FFFFFF);
}

.ui_subnav__a {
   font-family: var(--font-Gilroy-Medium);
   color: var(--color-FFFFFF);
   font-size: 1rem;
   line-height: 1em;
   padding: 10px;
   cursor: pointer;
   color: var(--color-FFFFFF)!important;
}

.ui_section_one {
   display: flex;
   display: -webkit-flex;
   flex-wrap: wrap;
   width: 100%;
   margin-left: auto;
   margin-right: auto;
}

.ui_bg_one {
   width: 100%;
   height: 680px;
   position: relative;   
}

.ui_bg_one__video {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border-top-right-radius: 450px;
   border-bottom-right-radius: 450px;
   overflow: hidden;   
}

.ui_bg_one__video video {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

.ui_elements_one__box figure {
   margin-bottom: 25px;
   max-width: 100%;
}

.ui_elements_one__box figure:last-child {
   margin-bottom: 0px;
}

.ui_bg_one_content {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: var(--color-FFFFFF);
   z-index: 2;
   display: none;
   padding-right: 15px;
}

.ui_bg_one_content__box {
   display: -webkit-flex;
   display: flex;
   align-items: stretch;
   width: 100%;
   height: 100%;
}

.ui_bg_one_content_bg {
   width: 50%;
   height: 100%;
   position: relative;   
}

.ui_bg_one_content_bg::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: calc(100% + 175px);
   height: 100%;
   border-top-right-radius: 100rem;
   border-bottom-right-radius: 100rem;
   background-image: url('../img/bg_section_one.jpg');
   background-repeat: no-repeat;
   background-position: center center;
   background-size: cover;
}

.ui_bg_one_content_elements {
   width: 50%;
   display: -webkit-flex;
   display: flex;
   justify-content: flex-start;   
}

.ui_bg_one_content_elements_box {
   max-width: 550px;
   width: 100%;
   display: -webkit-flex;
   display: flex;
   justify-content: flex-end;
   align-items: center;
   padding-left: 200px;
}

.ui_bg_one_content_elements_images {
   max-width: 332px;
   width: 100%;
}

.ui_bg_one_content_elements_images figure {
   margin-bottom: 30px;
}

.ui_bg_one_content_elements_images figure:last-child {
   margin-bottom: 0px;
}

/* SECTION TWO */
.ui_group_about {
   overflow: hidden;
}

.ui_section_two {
   position: relative;
   padding-top: 150px;
   padding-bottom: 100px;
   display: -webkit-flex;
   display: flex;
   justify-content: center; 
   align-items: center; 
}

.ui_elements_circle {
   position: absolute;
   left: 0;
}

.ui_elements_circle__box {
   overflow: hidden;
}

.ui_elements_circle_top {
   width: 139px;
   height: 139px;
   position: relative;
   overflow: hidden;
}

.ui_elements_circle_top__outside {
   position: absolute;
   bottom: 0;
   left: 0;
   background-color: var(--color-00ADE6);
   width: 100%;
   height: 100%;
   border-top-right-radius: 139px;
}

.ui_elements_circle_top__inside {
   width: 69px;
   height: 69px;
   background-color: var(--color-361051);
   border-top-right-radius: 69px;
   position: absolute;
   bottom: 0;
   left: 0;
}

.ui_elements_circle_bottom {
   width: 139px;
   height: 139px;
   overflow: hidden;
   border-bottom-right-radius: 139px;
   background-color: var(--color-FFFFFF);
   position: relative;
}

.ui_elements_circle_bottom__inside {
   width: 69px;
   height: 69px;
   position: absolute;
   top: 0;
   left: 0;
   background-color: var(--color-BD1083);
   border-bottom-right-radius: 69px;
}

.ui_section_two__bg {
   width: 280px;
   height: 100%;
   position: absolute;
   top: 0;
   right: 0;   
   background-position: center right;
   background-repeat: no-repeat;
   background-size: contain;
}

.ui_header_two {
   margin-bottom: 80px;
}

.ui_header_two__h2 {
   font-family: var(--font-Gilroy-Black);
   text-transform: uppercase;
   font-size: 2.8rem;
   line-height: 1.3em;
   color: var(--color-361051);
}

.ui_circle_text {
   width: 170px;
   height: 170px;
   position: relative;
   display: -webkit-flex;
   display: flex;
   align-items: center;
   justify-content: center;
}


.ui_circle_text__arrow {
   width: 100px;
   height: 100px;
   background-color: var(--color-BD1084);
   border-radius: 50%;
   -webkit-border-radius: 50%;
   -moz-border-radius: 50%;
   -ms-border-radius: 50%;
   -o-border-radius: 50%;
   display: -webkit-flex;
   display: flex;
   justify-content: center;
   align-items: center;
}

.ui_circle_text__figure {
   max-width: 30px;
   width: 100%;
   animation: arrowBelow linear 1.2s infinite;
   -webkit-animation: arrowBelow linear 1.2s infinite;
   position: relative;
}

@keyframes arrowBelow {
   0%, 100% {
     top: -5px;
   }
   50% {
     top: 5px;
   }
 }

 .ui_circle_text__figure--right {
   animation: arrowLeft linear 1.2s infinite;
   -webkit-animation: arrowLeft linear 1.2s infinite;
}

 @keyframes arrowLeft {
   0%, 100% {
     left: -5px;
   }
   50% {
     left: 5px;
   }
 }

.ui_circle_text__bg {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
   animation: rotate-animation 15s infinite linear;
   -webkit-animation: rotate-animation 15s infinite linear;
}

@keyframes rotate-animation {
	0% {
		transform: rotate(0deg);
  }
  50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.ui_elements_two {
   display: -webkit-flex;
   display: flex;
   flex-direction: column;
   align-items: center;
}

/* SECTION THREE */
.ui_section_three {
   padding: 100px 15px;
}

.ui_section_three__box{
   display: -webkit-flex;
   display: flex;
   flex-wrap: wrap;
}

.ui_item_year {
   width: 50%;
   display: -webkit-flex;
   display: flex;
   align-items: center;
   padding-top: 15px;
   padding-bottom: 15px;
}

.ui_item_year_circle {
   flex: none;
   overflow: hidden;
}

.ui_item_year_circle_top {
   width: 238px;
   height: 238px;
   position: relative;
   overflow: hidden;
}

.ui_item_year_circle_top__outside {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border-top-left-radius: 238px;
   background-color: var(--color-00ADE6);
}

.ui_item_year_circle_top__outside--b {
   background-color: var(--color-675983);
}

.ui_item_year_circle_top__inside {
   width: 118px;
   height: 118px;
   background-color: var(--color-361051);
   position: absolute;
   bottom: 0;
   right: 0;
   border-top-left-radius: 118px;
   display: -webkit-flex;
   display: flex;
   justify-content: flex-end;
   align-items: flex-end;
   padding-bottom: 5px;
   padding-right: 5px;
}

.ui_item_year_circle__span {
   font-size: 5.1rem;
   line-height: .8em;
   color: var(--color-FFFFFF);
   font-family: var(--font-Gilroy-Light);
   display: block;
}

.ui_item_year_circle_top__inside--b {
   background-color: var(--color-361051);
}

.ui_item_year_circle_bottom {
   position: relative;
   display: -webkit-flex;
   display: flex;
   justify-content: flex-end;
   overflow: hidden;
}

.ui_item_year_circle_bottom__inside {
   width: 118px;
   height: 118px;
   background-color: var(--color-9D248E);
   display: -webkit-flex;
   display: flex;
   justify-content: flex-end;
   align-items: flex-start;
   border-bottom-left-radius: 118px;
   padding-top: 5px;
   padding-right: 5px;
}

.ui_item_year_circle_bottom__inside--b {
   background-color: var(--color-7CCEF2);
}

.ui_item_year_circle_bottom__inside--b span {
   color: var(--color-361051);
}

.ui_item_year_text {
   padding-left: 33px;
   padding-right: 80px;
   
}

.ui_item_year_text__box {
   overflow: hidden;
}

.ui_item_year_text .ui_paragraph {
   max-width: 300px;
}

.ui_paragraph p {
   font-size: .8rem;
   line-height: 1.4em;
   font-family: var(--font-Gilroy-Light);
   margin-bottom: 20px;
}

.ui_paragraph p:last-child {
   margin-bottom: 0px;
}

.ui_paragraph__361051 span {
   display: inline;
   padding: 3px 0px;
   background-color: var(--color-361051);
   color: var(--color-FFFFFF);
   font-family: var(--font-Gilroy-Bold);
}

/* SECTION FOUR */
.ui_section_four {
   height: 700px;
   position: relative;   
}

.ui_section_four::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 2;
}

.ui_section_four video {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

/* SECTION FIVE */
.ui_header_five {
   margin-bottom: 30px;
}

.ui_header_five__h2{
   font-size: 2.2rem;
   line-height: 1.1em;
   text-transform: uppercase;
   font-family: var(--font-Gilroy-Bold);
   color: var(--color-00ADE6);
}

.ui_header_five__h3 {
   font-size: 1.6rem;
   line-height: 1.1em;
   text-transform: uppercase;
   font-family: var(--font-Gilroy-Bold);
   color: var(--color-00ADE6);
}

.ui_icon_movil {
   display: none;
}

.ui_icon_movil_figure {
   max-width: 20px;
}

.ui_paragraph__five p {
   color: var(--color-361051);
   font-family: var(--font-Gilroy-Medium);
   font-size: 1rem;
   text-align: justify;
}

.ui_paragraph_five_b p {
   text-align: justify;
}

.ui_section_five_b {
   display: -webkit-flex;
   display: flex;
   align-items: stretch;
   padding-right: 15px;
   margin-top: -10%;
}

.ui_section_five_b__box {
   display: -webkit-flex;
   display: flex;
   justify-content: flex-end;
}

.ui_section_five_a {
   display: -webkit-flex;
   display: flex;
   align-items: stretch;
   flex-wrap: wrap;   
   padding-left: 15px;
}

.ui_content_five {
   width: 50%;
   display: -webkit-flex;
   display: flex;
   justify-content: flex-end;
}

.ui_section_five_b_content{ 
   width: 50%;
   display: -webkit-flex;
   display: flex;
   justify-content: flex-start;
}

.ui_section_five_b_content__box {
   max-width: var(--ui_container_secundary);
   width: 100%;
   padding-top: 32%;
   padding-bottom: 50px;
}

.ui_section_five_b_content__text {
   max-width: 434px;
   width: 100%;
}

.ui_content_five__box {
   max-width: var(--ui_container_secundary);
   width: 100%;
   padding-top: 90px;
   padding-bottom: 190px;
   display: -webkit-flex;
   display: flex;
   justify-content: flex-start;
}

.ui_content_five__text {
   max-width: 349px;
}

.ui_section_five_a_elements {
   width: 50%;
   display: -webkit-flex;
   display: flex;
   justify-content: flex-end;
   overflow: hidden;
}

.ui_section_five_a_elements__box{
   height: 100%;
   width: 90%;
   display: -webkit-flex;
   display: flex;
   justify-content: flex-end;
   position: relative;
}

.ui_section_five_a_elements__vector {
   width: 60%;
   /* height: 100%; */
   padding-bottom: 100%;
   background-position: bottom right;
   background-repeat: no-repeat;
   background-size: contain;
}

.ui_section_five_a_elements__bg {
   position: absolute;
   bottom: 0;
   right: 0;
   width: 100%;
   /* height: 60%; */
   overflow: hidden;
}

.ui_section_five_a_elements__bg__inside {
   position: relative;
   top: 0;
   left: 0;
   width: 100%;
   padding-bottom: 51%;
   /* height: 100%; */
   background-color: #675983;
   border-top-left-radius: 100rem;
   border-top-right-radius: 100rem;
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;   
}

.ui_section_five_b_elements {
   width: 50%;
   display: -webkit-flex;
   display: flex;
   align-items: flex-end;
}

.ui_section_five_b_elements__box {
   display: -webkit-flex;
   display: flex;
   flex-direction: column;
   border-left: 30px solid var(--color-361051);
   width: 80%;
}

.ui_section_five_b_elements_top {
   width: 55%;
   /* height: 277px; */
   position: relative;
}

.ui_section_five_b_elements_top_circle {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   /* height: 100%; */
   padding-bottom: 100%;
   border-top-right-radius: 240px;
   background-color: var(--color-361051);
   position: relative;
   overflow: hidden;
}

.ui_section_five_b_elements_top_circle__inside {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 55%;
   padding-bottom: 50%;
   /* height: 181px; */
   background-color: var(--color-00ADE6);
   border-top-right-radius: 100rem;
}

.ui_section_five_b_elements_bottom {
   display: -webkit-flex;
   display: flex;
   align-items: stretch;
}

.ui_section_five_b_elements_bottom_group{
   display: -webkit-flex;
   display: flex;
   flex-direction: column;
   background-color: var(--color-361051);
   width: 30%;
   overflow: hidden;
}

.ui_section_five_b_elements_bottom_group_top {   
   /* height: 181px; */
   padding-bottom: 100%;
   background-color: var(--color-9D248E);
   border-bottom-left-radius: 100rem;
}

.ui_section_five_b_elements_bottom_group_bottom {   
   /* height: 181px; */
   padding-bottom: 100%;
   background-color: var(--color-675884);
   border-top-left-radius: 100rem;
}

.ui_section_five_b_elements_bottom_bg {
   width: 70%;
   background-color: var(--color-361051);
   position: relative;
   overflow: hidden;
}

.ui_section_five_b_elements_bottom_bg__inside {
   position: absolute;
    top: -1px;
    left: 0;
    width: 101%;
    padding-bottom: 86%;
    /* height: 100.3%; */
    border-bottom-left-radius: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* SECTION SIX */
.ui_section_six {
   display: -webkit-flex;
   display: flex;
   align-items: stretch;
   padding-top: 80px;
   padding-bottom: 40px;
   padding-right: 15px;
}

.ui_elements_six{
   width: 50%;
}

.ui_content_six {
   width: 50%;
   display: -webkit-flex;
   display: flex;
   justify-content: flex-start;
}

.ui_content_six__box {
   max-width: var(--ui_container_secundary);
   width: 100%;
   padding-bottom: 107px;
   padding-top: 159px;   
   display: -webkit-flex;
   display: flex;
   justify-content: center;
}

.ui_content_six__text {
   max-width: 286px;
   width: 100%;
}

.ui_paragraph__six p:last-child {
   color: var(--color-361051);
   font-family: var(--font-Gilroy-Medium);
}

.ui_elements_six_group_top {
   display: -webkit-flex;
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   padding-left: 10%;   
}

.ui_elements_six_group_top_circle {
   width: 35%;
   /* height: 273px; */
   position: relative;
}

.ui_elements_six_group_top_circle__box {
   width: 100%;
   /* height: 100%; */
   padding-bottom: 100%;
   position: relative;
   top: 0;
   left: 0;
   overflow: hidden;
}

.ui_elements_six_group_top_circle__box__outside {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   padding-bottom: 100%;
   /* height: 100%; */
   border-top-left-radius: 100%;
   background-color: var(--color-00ADE6);
}

.ui_elements_six_group_top_circle__inside {
   position: absolute;
   bottom: 0;
   right: 0;
   padding-bottom: 55%;
   /* height: 136px; */
   width: 50%;
   border-top-left-radius: 100%;
   background-color: var(--color-361051);
}

.ui_elements_six_group_bottom_bg {
   width: 69%;
   /* height: 458px; */
   position: relative;
   overflow: hidden;
}

.ui_elements_six_group_bottom_bg__inside {
   /* position: absolute; */
   top: 0;
   left: 0;
   width: 100%;
   /* height: 100%; */
   padding-bottom: 90%;
   border-bottom-left-radius: 100%;
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
}

.ui_paragraph__six p {
   text-align: justify;
}

.ui_circle_text__arrow--gestion {
   background-color: var(--color-00ADE6);
}

.ui_elements_six_group_top .ui_circle_text {
   margin-bottom: 30px;
}

/* SECTION SEVEN */
.ui_section_seven {
   padding-top: 60px;
   padding-left: 15px;
   padding-right: 15px;
   padding-bottom: 60px;
   background-color: var(--color-F7F5F9);
   border-top-left-radius: 100px;
}

.ui_section_seven__box {
   display: -webkit-flex;
   display: flex;
}

.ui_text_seven {
   width: 50%;
   padding: 15px;
   display: -webkit-flex;
   display: flex;
   justify-content: center;
}

.ui_paragraph__seven {
   max-width: 412px;
}

.ui_paragraph__seven p {
   font-size: .8rem;
   text-align: justify;
}

/* SECTION EIGHT */
.ui_section_eight{
   padding-bottom: 50px;
}
.ui_section_eight_a {
   display: -webkit-flex;
   display: flex;
   align-items: stretch;
   padding-top: 66px;
}

.ui_section_eight_a_elements {
   width: 50%;
}

.ui_section_eight_a_elements__box {
   width: 90%;
}

.ui_section_eight_a_elements_top {
   display: -webkit-flex;
   display: flex;
   align-items: stretch;
   /* height: 350px; */
}

.ui_section_eight_a_elements_top_bg {
   width: 75%;
   position: relative;
   overflow: hidden;
}

.ui_section_eight_a_elements_top_bg__inside {
   /* position: absolute; */
   top: 0;
   left: 0;
   width: 100%;
   padding-bottom: 68%;
   /* height: 100%; */
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
   border-top-right-radius: 100rem;
}

.ui_section_eight_a_elements_top_circles {
   width: 25%;
   display: -webkit-flex;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
}

.ui_section_eight_a_elements_top_circle_top {
   /* height: 50%; */
   background-color: var(--color-FFFFFF);
   position: relative;
   overflow: hidden;
   width: 100%;
}

.ui_section_eight_a_elements_top_circle_top__inside {
   /* position: absolute; */
   top: 0;
   left: 0;
   width: 100%;
   padding-bottom: 100%;
   /* height: 100%; */
   border-bottom-right-radius: 100rem;
   background-color: var(--color-9D248E);
}

.ui_section_eight_a_elements_top_circle_bottom {
   /* height: 50%; */
   position: relative;
   background-color: var(--color-361051);
   overflow: hidden;
   width: 100%;
}

.ui_section_eight_a_elements_top_circle_bottom__inside {
   /* position: absolute; */
   top: 0;
   left: 0;
   width: 100%;
   padding-bottom: 100%;
   /* height: 100%; */
   border-bottom-left-radius: 100rem;
   background-color: var(--color-675884);
}

.ui_section_eight_a_elements_bottom {
   /* height: 286px; */
   position: relative;
}

.ui_section_eight_a_elements_bottom__inside{
   position: relative;
   top: 0;
   left: 0;
   width: 100%;
   padding-bottom: 50%;
   /* height: 100%; */
   border-bottom-right-radius: 300px;
   background-color: var(--color-361051);
}

.ui_section_eight_a_content {
   width: 50%;
   display: -webkit-flex;
   display: flex;
   justify-content: flex-start;
   padding-right: 15px;
}

.ui_section_eight_a_content__box {
   max-width: var(--ui_container_secundary);
   width: 100%;
   padding-left: 100px;
   padding-bottom: 12%;
}

.ui_section_eight_a_content__text {
   max-width: 385px;
   width: 100%;
}

.ui_paragraph__eight_a p:last-child {
   color: var(--color-361051);
   margin-top: 30px;
   font-family: var(--font-Gilroy-Medium);
}

.ui_section_eight_b {
   display: -webkit-flex;
   display: flex;
   align-items: stretch;   
}

.ui_paragraph__eight_b p {
   color: var(--color-FFFFFF);
}

.ui_section_eight_b_elements {
   width: 50%;   
}

.ui_section_eight_b_content {
   width: 50%;
   display: -webkit-flex;
   display: flex;
   justify-content: flex-start;
   position: relative;
}

.ui_section_eight_b_content::before {
   content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% + 20%);
    height: calc(100% + 10%);
    z-index: -1;
    background-color: var(--color-361051);
    border-top-left-radius: 200px;
}


.ui_section_eight_b_content__box {
   width: 100%;
   max-width: var(--ui_container_secundary);
   padding-left: 100px;
   padding-top: 43px;
   padding-bottom: 56px;
   padding-right: 15px;
}

.ui_section_eight_b_content__text {
   max-width: 352px;
   width: 100%;
}

.ui_paragraph__eight_a p {
   text-align: justify;
}

.ui_paragraph__eight_b p {
   text-align: justify;
}

/* SECTION NINE */
.ui_section_nine {
   padding-bottom: 100px;
   padding-top: 50px;
   overflow: hidden;
   position: relative;
}

.ui_section_nine_a {
   position: relative;
}

.ui_section_nine_b {
   display: -webkit-flex;
   display: flex;
   align-items: stretch;
}

.ui_section_nine_a_content {
   max-width: 550px;
   width: 100%;
}

.ui_section_nine_left {
   width: 50%;   
}

.ui_section_nine_right {
   width: 50%;
   display: -webkit-flex;
   display: flex;
   justify-content: space-between;
} 

.ui_section_nine_left_content {
   display: -webkit-flex;
   display: flex;
   justify-content: flex-end;
   margin-bottom: 40px;
   padding-left: 15px;
}

.ui_section_nine_left_content__box {
   max-width: var(--ui_container_secundary);
   width: 100%;
}

.ui_section_nine_left_elements {
   position: relative;
   overflow: hidden;
}

.ui_section_nine_left_elements__bg {
   /* height: 640px; */
   padding-bottom: 80%;
   border-bottom-left-radius: 100rem;
   background-position: center -30px;
   background-repeat: no-repeat;
   background-size: cover;
}

.ui_section_nine_left_elements_circle {
   /* width: 300px;
   height: 300px; */
   width: 38%;
   position: absolute;
   bottom: 0;
   left: 0;
   overflow: hidden;
   padding-bottom: 50%;
}

.ui_section_nine_left_elements_circle__outside {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   /* height: 100%; */
   padding-bottom: 100%;
   border-top-right-radius: 300px;
   background-color: var(--color-00ADE6);
}

.ui_section_nine_left_elements_circle__inside {
   /* width: 149px; */
   /* height: 149px; */
   padding-bottom: 50%;
   width: 50%;
   background-color: var(--color-361051);
   border-top-right-radius: 100rem;
   position: absolute;
   bottom: 0;
   left: 0;
}

.ui_section_nine_right_content {
   padding-left: 30px;
   flex: none;
   padding-top: 36px;
}

.ui_section_nine_right__text {
   max-width: 325px;
   width: 100%;
}

.ui_paragraph__nine p {
   text-align: justify;
}

.ui_section_nine_right_circles {
   /* height: 682px; */
   position: absolute;
   top: 0;
   right: 0;
   display: -webkit-flex;
   display: flex;
   flex-direction: column;
   width: 20%;
   padding-left: 20px;  
   z-index: -1;
}

.ui_section_nine_right_circle_top {
   /* height: 50%; */
   position: relative;
   overflow: hidden;
   padding-top: 100%;
}

.ui_section_nine_right_circle_top__box {
   position: absolute;
   bottom: 0;
   right: 0;
   width: 100%;
   padding-bottom: 100%;
   /* height: 100%; */
   border-top-left-radius: 100%;
   background-color: var(--color-00ADE6);
}

.ui_section_nine_right_circle_top__inside {
   position: absolute;
   bottom: 0;
   right: 0;
   width: 50%;
   /* height: 170px; */
   padding-bottom: 50%;
   border-top-left-radius: 100%;
   background-color: var(--color-361051);
}

.ui_section_nine_right_circle_bottom {
   /* height: 50%; */
   padding-bottom: 100%;
   position: relative;
   overflow: hidden;
}

.ui_section_nine_right_circle_bottom__box {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: var(--color-FFFFFF);
}

.ui_section_nine_right_circle_bottom__inside {
   position: absolute;
   top: 0;
   right: 0;
   width: 50%;
   padding-bottom: 50%;
   /* height: 170px; */
   border-bottom-left-radius: 100%;
   background-color: var(--color-675884);
}

.ui_paragraph__nine p:nth-child(3) {
   font-family: var(--font-Gilroy-Medium);
   color: var(--color-361051);
}

/* SECTION TEN */
.ui_section_ten {
   display: -webkit-flex;
   display: flex;
   flex-wrap: wrap;
   align-items: stretch;
   padding-top: 86px;
   padding-left: 15px;
}

.ui_section_ten_content {
   width: 50%;
   display: -webkit-flex;
   display: flex;
   justify-content: flex-end;
   position: relative;
}
.ui_section_ten_elements {
   width: 50%;   
   flex: none;
}

.ui_section_ten_content__box{
   max-width: var(--ui_container_secundary);
   width: 100%;
}

.ui_header_five__h2__ten {
   margin-bottom: 50px;
}

.ui_paragraph__ten {
   max-width: 287px;
}

.ui_paragraph__ten p {
   color: var(--color-361051);
   text-align: justify;
}

.ui_paragraph__ten p:nth-child(2) {
   font-size: 6rem;
   line-height: 1em;
   font-family: var(--font-Gilroy-Bold);
}

.ui_paragraph__ten p:nth-child(5) {
   padding: 50px 0 40px;
   position: relative;
}

.ui_paragraph__ten p:nth-child(5)::before {
   content: '';
   position: absolute;
   top: 0;
   right: -30px;
   width: 1000%;
   height: 100%;
   z-index: -1;
   background-color: var(--color-F7F5F9);
   border-top-right-radius: 80px;
}

.ui_section_ten_elements__box {
   padding: 80px;
   width: 100%;
   background-color: var(--color-F7F5F9);
   border-top-left-radius: 50%;
}

.ui_section_ten_elements__bg {
   width: 100%;
   /* height: 100%; */
   padding-bottom: 100%;
   border-radius: 100%;
   -webkit-border-radius: 100%;
   -moz-border-radius: 100%;
   -ms-border-radius: 100%;
   -o-border-radius: 100%;
   background-position: center center;
   background-size: cover;
   background-repeat: no-repeat;
}

/* SECTION ELEVEN */
.ui_section_eleven {
   padding-top: 30px;
   overflow-x: clip;
}

.ui_section_eleven__box {
   display: -webkit-flex;
   display: flex;
   align-items: stretch;
   position: relative;
   padding-top: 89px;
   padding-bottom: 89px;
   padding-right: 70px;
}

.ui_section_eleven__box::before {
   content: '';
   position: absolute;
   z-index: -1;
   top: 0;
   right: 0;
   width: 1000%;
   height: 100%;
   border-bottom-right-radius: 200px;
   background-color: var(--color-F7F5F9);
}

.ui_section_eleven_elements {
   width: 45%;
   /* background-color: yellow; */
}

.ui_section_eleven_content {
   width: 55%;
   padding-left: 60px;
}

.ui_section_eleven_circle {
   /* height: 475px; */
   display: -webkit-flex;
   display: flex;
   align-items: stretch;
   /* padding-bottom: 100%; */
}

.ui_section_eleven_circle_vectors {
   width: 50%;
   overflow: hidden;
}

.ui_section_eleven_circle_vectors__box {
   height: 100%;
}

.ui_section_eleven_circle_bg {
   width: 50%;
   overflow: hidden;
}

.ui_section_eleven_circle_vectors_top {
   height: 50%;
   background-color: var(--color-00ADE6);
   position: relative;
   border-top-left-radius: 100%;
   padding-bottom: 100%;
}

.ui_section_eleven_circle_vectors_top__inside {
   width: 50%;
   /* height: 50%; */
   padding-bottom: 50%;
   position: absolute;
   bottom: 0;
   right: 0;
   border-top-left-radius: 100%;
   background-color: var(--color-361051);
}

.ui_section_eleven_circle_vectors_bottom {
   height: 50%;
   position: relative;
   border-bottom-left-radius: 100%;
   padding-bottom: 100%;
}

.ui_section_eleven_circle_vectors_bottom__inside {
   width: 50%;
   /* height: 50%; */
   padding-bottom: 50%;
   position: absolute;
   top: 0;
   right: 0;
   border-bottom-left-radius: 100%;
   background-color: var(--color-675884);
}

.ui_section_eleven_circle_bg__image {
   /* height: 100%; */
   padding-bottom: 200%;
   width: 100%;
   border-top-right-radius: 100rem;
   border-bottom-right-radius: 100rem;
   background-color: rgba(0, 0, 0, 0.07);
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
}

.ui_paragraph__eleven p {
   text-align: justify;
}

.ui_paragraph__eleven p:first-child {
   color: var(--color-361051);
   font-family: var(--font-Gilroy-Medium);
   margin-bottom: 40px;
}

.ui_section_eleven_circle_a {
   position: absolute;
   top: -172px;
   right: 0;
   height: 172px;
   width: 82px;
   overflow: hidden;
}

.ui_section_eleven_circle_a__inside {
   width: 100%;
   height: 100%;
   background-color: var(--color-00ADE6);
   border-top-left-radius: 100rem;
   border-bottom-left-radius: 100rem;
}

.ui_section_eleven_circle_b {
   position: absolute;
   top: -127px;
   right: -127px;
   width: 127px;
   height: 127px;
   overflow: hidden;
}

.ui_section_eleven_circle_b__inside {
   width: 100%;
   height: 100%;
   background-color: var(--color-361051);
   border-top-left-radius: 100rem;
}

.ui_section_eleven_circle_c {
   width: 127px;
   height: 127px;
   position: absolute;
   right: -127px;
   top: 0;
   overflow: hidden;
}

.ui_section_eleven_circle_c__inside {
   width: 100%;
   height: 100%;
   background-color: var(--color-675884);
   border-top-right-radius: 100rem;
}

/* SECTION TWELVE */
.ui_section_twelve {
   position: relative;
   padding-top: 90px;
   padding-left: 15px;
   padding-right: 15px;
}

.ui_section_twelve::before {
   content: '';
   position: absolute;
   top: 0;
   right: 0;
   width: 18%;
   padding-bottom: 100%;
   /* height: 100%; */
   background-color: var(--color-F7F5F9);
   z-index: -1;
   border-top-left-radius: 25rem;
}

.ui_section_twelve::after {
   content: '';
   position: absolute;
   top: 18%;
   right: 0;
   width: 11%;
   padding-bottom: 10%;
   /* height: 30%; */
   border-top-left-radius: 50rem;
   background-color: var(--color-675884);
}

.ui_section_twelve_a {
   margin-bottom: 66px;
}

.ui_section_twelve_b {
   display: -webkit-flex;
   display: flex;
}

.ui_section_twelve_b > div:first-child {
   padding-right: 10px;
}

.ui_section_twelve_b > div:last-child {
   padding-left: 10px;
}

.ui_section_twelve_content__box {
   width: 50%;
}

.ui_section_twelve_b__col {
   width: 50%;
}

.ui_section_twelve_content__text {
   max-width: 410px;
   width: 100%;
}

.ui_header_five__h2--twelve {
   text-transform: initial;
}

.ui_paragraph_a--twelve p {
   text-align: justify;
   font-family: var(--font-Gilroy-Medium);
   color: var(--color-361051);
}

.ui_paragraph_b--twelve p {
   text-align: justify;
}

.ui_paragraph_b--twelve--color p {
   color: var(--color-00ADE6);
}

/* SECTION THIRTEEN */
.ui_section_thirteen {
   display: -webkit-flex;
   display: flex;
   align-items: stretch;
   padding-top: 82px;
   padding-bottom: 90px;
   position: relative;
   /* overflow: hidden; */
}

.ui_section_thirteen::before {
   content: '';
   position: absolute;
   top: 0;
   right: 0;
   width: 18%;
   padding-bottom: 50%;
   /* height: 100%; */
   background-color: var(--color-F7F5F9);
   z-index: -1;
}

.ui_section_thirteen_bg {
   width: 50%;
   padding-right: 60px;
}

.ui_section_thirteen_bg__box {
   overflow: hidden;
   height: 100%;
}

.ui_section_thirteen_bg__inside {
   width: 100%;
   /* height: 100%; */
   padding-bottom: 100%;
   border-top-left-radius: 80%;
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
}

.ui_section_thirteen_content {
   width: 50%;
}

.ui_section_thirteen_content__box {
   max-width: 412px;
   padding-left: 10px;
}

.ui_section_thirteen_content__box > div {
   margin-bottom: 90px;
}

.ui_section_thirteen_content__box > div:last-child {
   margin-bottom: 0px;
}

/* SECTION FOURTEEN */
.ui_section_fourteen {
   padding-bottom: 40px;
}
.ui_section_fourteen_bg {
   /* height: 540px; */
   position: relative;
   width: 100%;
   margin-bottom: 60px;
}

.ui_section_fourteen_bg__inside {
   /* position: absolute; */
   top: 0;
   left: 0;
   width: 100%;
   /* height: 100%; */
   padding-bottom: 50%;
   background-color: rgba(0, 0, 0, 0.04);
   border-top-left-radius: 100rem;
   border-top-right-radius: 100rem;
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
}

.ui_section_fourteen_content {
   display: -webkit-flex;
   display: flex;
   padding-left: 15px;
   padding-right: 15px;
}

.ui_section_fourteen_content > div:first-child {
   padding-right: 10px;
}

.ui_section_fourteen_content > div:last-child {
   padding-left: 10px;
}

.ui_section_fourteen_col {
   width: 50%;
}

.ui_section_fourteen_content__text {
   max-width: 440px;
}

.ui_section_fourteen_content__text p {
   text-align: justify;
}

.ui_paragraph--fourteen p:first-child {
   color: var(--color-361051);
   font-family: var(--font-Gilroy-Medium);
}

.ui_section_fourteen_col--text > div {
   margin-bottom: 30px;
}

.ui_section_fourteen_col--text > div:last-child {
   margin-bottom: 0px;
}

.ui_section_fourteen__ul li {
   margin-bottom: 20px;
   padding-left: 20px;
   position: relative;
}

.ui_section_fourteen__ul li:last-child {
   margin-bottom: 0px;
}

.ui_section_fourteen__ul li:before {
   content: '';
   position: absolute;
   left: 0;
   top: 2px;
   width: 15px;
   height: 15px;
   background-image: url('../img/icon_list.png');
   background-repeat: no-repeat;
   background-size: contain;
}

/* SECTION FIFTEEN */
.ui_section_fifteen {
   padding-top: 50px;
   overflow: hidden;
   padding-left: 15px;   
}

.ui_section_fifteen_a {
   padding-right: 15px;
}

.ui_section_fifteen_list_elements {
   width: 171px;
   height: 171px;
   position: relative;
   flex: none;
   overflow: hidden;
}

.ui_section_fifteen_list {
   display: -webkit-flex;
   display: flex;
}

.ui_section_fifteen_list_elements__inside {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: var(--color-00ADE6);
   border-bottom-right-radius: 100%;
}

.ui_section_fourteen__ul--fifteen li:last-child:before {
   display: initial;
}

.ui_section_fourteen__ul--fifteen {
   padding-left: 40px;
}

.ui_section_fifteen_b {
   display: -webkit-flex;
   display: flex;
   padding-top: 80px;
   padding-left: 15px;
}

.ui_section_fifteen_b_content {
   width: 40%;
   padding-right: 30px;
   padding-top: 73px;
}

.ui_section_fifteen_b_elements {
   width: 60%;
}

.ui_list_number_fifteen li {
   display: -webkit-flex;
   display: flex;   
   position: relative;
   padding-left: 30px;
   margin-bottom: 54px;
}

.ui_list_number_fifteen li:last-child {
   margin-bottom: 0px;
   padding-top: 40px;
}

.ui_section_fifteen_number_list {
   position: absolute;
   left: 0;
}

.ui_section_fifteen_number_list span {
   display: block;
   font-family: var(--font-Gilroy-Light);
   font-size: 1.9rem;
   line-height: 1em;
   color: var(--color-361051);
}

.ui_title_group_fifteen{
   margin-bottom: 50px;
}

.ui_fifteen_circle_elements {
   padding: 70px 0 70px 70px; 
   position: relative;
}

.ui_fifteen_circle_elements::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 1000%;
   height: 100%;
   background-color: var(--color-F7F5F9);
   border-top-left-radius: 350px;
   z-index: -1;
}

.ui_fifteen_circle_elements_inside {
   /* height: 590px; */
   padding-bottom: 100%;
   /* max-width: 590px; */
   width: 100%;
   border-radius: 50%;
   -webkit-border-radius: 50%;
   -moz-border-radius: 50%;
   -ms-border-radius: 50%;
   -o-border-radius: 50%;
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
}

.ui_fifteen_circle_elements_content {
   padding: 40px;
   display: -webkit-flex;
   display: flex;
   justify-content: flex-end;
   position: relative;
}

.ui_fifteen_circle_elements_content_ul {
   max-width: 394px;
   width: 100%;
}

.ui_fifteen_circle_elements_content_ul li {
   margin-bottom: 44px;
}

.ui_fifteen_circle_elements_content_ul li p{
   text-align: right;
}

.ui_fifteen_circle_elements_content_ul li:first-child span{
   display: block;
   font-size: 3.3rem;
   font-family: var(--font-Gilroy-Bold);
   line-height: 1em;
}

.ui_fifteen_circle_elements_content_ul li:first-child p {
   font-family: var(--font-Gilroy-Medium);
   text-transform: uppercase;
   font-size: 1.1rem;
   line-height: 1.4em;
   color: var(--color-361051);
}

.ui_fifteen_circle_elements_content_ul li:last-child {
   margin-bottom: 0px;
}

.ui_fifteen_circle_elements_content_ul li:last-child p{
   text-align: justify;
}

.ui_fifteen_circle_elements_details {
   position: absolute;
   top: -75px;
   right: -45%;
   width: 45%;
}

.ui_fifteen_circle_elements_details_top {
   width: 50%;
}

.ui_fifteen_circle_elements_details_top_inside {
   position: relative;
   overflow: hidden;
   width: 50%; 
   padding-bottom: 50%;
}

.ui_fifteen_circle_elements_details_top_inside__box {
   background-color: var(--color-5BBAE9);
   border-top-left-radius: 100%;
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 100%;   
}

.ui_fifteen_circle_elements_details_bottom {
   width: 50%;
   /* height: 245px; */
   /* padding-bottom: 50%; */
   position: relative;
   overflow: hidden;
}

.ui_fifteen_circle_elements_details_bottom__outside {
   /* position: absolute; */
   top: 0;
   left: 0;
   width: 100%;
   border-bottom-right-radius: 100%;
   padding-bottom: 100%;
   background-color: var(--color-361051);
}

.ui_fifteen_circle_elements_details_bottom__inside {
   position: absolute;
   top: 0;
   left: 0;
   padding-bottom: 50%;
   width: 50%;
   /* height: 109px; */
   /* width: 109px; */
   background-color:var(--color-9D248E);
   border-bottom-right-radius: 100%;
}

/* FOOTER */
.ui_footer {
   position: relative;
   display: -webkit-flex;
   display: flex;
   justify-content: center;
   padding: 40px 10px;
}

.ui_footer_elements {
   position: absolute;
   width: 100%;
   bottom: 0;
   display: -webkit-flex;
   display: flex;
   justify-content: space-between;
   overflow: hidden;
}

.ui_footer_elements_bg {
   width: 220px;
   height: 150px;
   background-position: center bottom;
   background-repeat: no-repeat;
   background-size: contain;
}

.ui_circle_text__arrow--footer{ 
   background: rgb(68,29,94);
   background: linear-gradient(90deg, rgba(68,29,94,1) 0%, rgba(255,39,134,1) 100%);   
}

.ui_nav_movil_header {
   background: rgb(67,29,94);
   background: linear-gradient(90deg, rgba(67,29,94,1) 0%, rgba(255,38,134,1) 100%);
   position: relative;
   display: none;      
}

.ui_nav_movil_header__box {
   height: 99px;
   display: -webkit-flex;
   display: flex;
   align-items: center;
   justify-content: center;
}

.ui_nav_movil_header_close {
   position: absolute;
   left: 10%;
   width: 28px;
   height: 28px;
   border-radius: 50%;
   -webkit-border-radius: 50%;
   -moz-border-radius: 50%;
   -ms-border-radius: 50%;
   -o-border-radius: 50%;
   background-color: var(--color-BD1083);
   display: -webkit-flex;
   display: flex;
   justify-content: center;
   align-items: center;
}

.ui_nav_movil_header_close__figure {
   max-width: 12px;
}

.ui_nav_movil_header_close__span {
   display: inline-block;
   color: var(--color-FFFFFF);
   font-family: var(--font-Gilroy-Medium);
   font-size: 1rem;
   line-height: 1em;
}

.ui_nav_movil_header_close {
   position: absolute;
}

/*  */
.ui_navigation {
   position: fixed;
   top: 50%;
   right: 30px;
   z-index: 3;
   text-align: right;
   max-width: max-content;
   transform: translateY(-50%);
   -webkit-transform: translateY(-50%);
   -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   -o-transform: translateY(-50%)
 }
 .ui_navigation_ul li {
   margin-bottom: 14px;
   display: -webkit-flex;
   display: flex;
   align-items: center;
   justify-content: flex-end;
   position: relative;
   padding-right: 25px;
   height: 29px
 }
 .ui_navigation_ul li:last-child {
   margin-bottom: 0
 }
 .ui_navigation_a {
   position: absolute;
   top: 50%;
   right: 0;
   width: 10px;
   height: 10px;
   background-color: var(--color-C6BECE);
   border-radius: 50%;
   -webkit-border-radius: 50%;
   -moz-border-radius: 50%;
   -ms-border-radius: 50%;
   -o-border-radius: 50%;
   transform: translateY(-50%);
   -webkit-transform: translateY(-50%);
   -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   -o-transform: translateY(-50%);
   transition: .3s linear all;
   -webkit-transition: .3s linear all;
   -moz-transition: .3s linear all;
   -ms-transition: .3s linear all;
   -o-transition: .3s linear all
 }
 .ui_navigation_li .ui_navigation_a__span {
   visibility: hidden;
   pointer-events: none;
   background-color: var(--color-FFFFFF);
   display: none;
   padding: 5px;
   font-family: var(--font-Gilroy-Medium);
   width: 0
 }
 .ui_navigation_li.ui_active_button .ui_navigation_a__span {
   visibility: visible;
   pointer-events: visible;
   width: max-content;
   display: none
 }
 .ui_navigation_li a:hover + .ui_navigation_a__span {
   visibility: visible;
   pointer-events: visible;
   display: block;
   width: max-content
 }