@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* General Config */

:root {
  font-size: 16px; /*Main config in px determine Rem size for the other elements - Change this when use media query*/
  --font-family: "Ubuntu", sans-serif;
  --font-size-standard: 1rem; /*1 rem - 16px*/
  --font-size-h1: 3.375rem; /*54px*/
  --font-size-h2: 3.25rem; /*52px*/
  --font-size-h3: 2.25rem; /*36px*/
  --font-size-h4: 1.7rem; /*27px*/
  --font-size-special: 1.3125rem; /*21px*/
  --font-size-details: 0.875rem; /*14px*/
  --font-stats: "Rubik", sans-serif;
  --font-size-stats: 64px;
  --font-size-stats-descrip: 19px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  --background-section1: var(--turquoise-blue);
  --background-section2: var(--vibrant-blue);
  --background-section3: linear-gradient(0deg, #0c1354, #0c1354),
    linear-gradient(180deg, #f8f8f8 0%, rgba(248, 248, 248, 0) 100%);
  --background-section4: linear-gradient(
      180deg,
      var(--dark-violet) 6.68%,
      rgba(154, 73, 236, 0) 90.19%
    ),
    var(--deep-purple-dark);
  --background-section5: linear-gradient(
      180deg,
      rgba(154, 73, 236, 0.2) 0%,
      rgba(12, 19, 84, 0.2) 61.91%
    ),
    #0c1354;
  --background-section6: linear-gradient(
    180deg,
    #0c1354 0%,
    var(--vibrant-blue) 100%
  );
  --background-section6b: var(--vibrant-blue);
  --background-section7: linear-gradient(
    180deg,
    #0c1354 0%,
    var(--vibrant-blue) 100%
  );
  --background-section8: linear-gradient(0deg, #0c1354, #0c1354), #ebecf4;
  --dark-midnight-blue: rgba(12, 19, 84, 1);
  --semi-translucent-midnight-blue: rgba(12, 19, 84, 0.7);
  --vibrant-blue: rgba(20, 173, 237, 1);
  --deep-sky-blue: rgba(20, 173, 237, 1);
  --turquoise-blue: rgba(8, 245, 218, 1);
  --translucent-blue-gray: rgba(50, 50, 93, 0.25);
  --translucent-lavender-gray: rgba(161, 165, 203, 0.3);
  --deep-purple: rgba(110, 36, 176, 1);
  --deep-purple-dark: rgba(110, 36, 176, 1);
  --dark-violet: rgba(154, 73, 236, 1);
  --light-purple: rgba(154, 73, 236, 1);
  --dark-purple-red: rgba(51, 0, 51, 1);
}

/********************** Reset CSS Config ************************************/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/************************* MAIN ELEMENTS SETTINGS ******************************/

h1 {
  font-family: var(--font-family);
  font-size: var(--font-size-h1);
}

h2 {
  font-family: var(--font-family);
  font-size: var(--font-size-h2);
  margin-bottom: 2.25rem /*36px*/;
}

h3 {
  font-family: var(--font-family);
  font-size: var(--font-size-h3);
  margin-bottom: 2.25rem /*36px*/;
}

p {
  font-family: var(--font-family);
  font-size: var(--font-size-standard);
}

.btn1 {
  background-color: var(--deep-purple);
  padding: 15px 30px;
  border-radius: 6px;
  font-size: var(--font-size-standard);
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  text-decoration: none;
  border: none;
}

.btn1:hover {
  transition: 300ms;
  filter: drop-shadow(0px 5px 6px rgb(154, 77, 221));
}

.btn2 {
  background-color: rgba(255, 255, 255, 1);
  padding: 15px 30px;
  border-radius: 6px;
  font-size: var(--font-size-standard);
  font-family: var(--font-family);
  color: var(--dark-midnight-blue);
  font-weight: 500;
  text-decoration: none;
}

.btn2:hover {
  transition: 300ms;
  filter: drop-shadow(0px 5px 6px rgb(233, 209, 253));
}

.no_scroll {
  overflow: hidden;
}



/****************************** GENERAL CLASS ***********************************/

.main__section__pmain {
  font-size: var(--font-size-special);
  font-weight: 400;
  line-height: 33.6px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 1.125rem /*18px*/;
}

.main__section__p {
  font-weight: 300;
  line-height: 26px;
  color: rgba(255, 255, 255, 1);
}

.main__section__list__title {
  font-family: var(--font-family);
  font-size: var(--font-size-special);
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  margin: 8px 0;
}

/*GENERAL CLASS > LISTS*/

.main__section__list__items {
  /* list-style-type: "";
  list-style-image: url(./media/CheckList1.png); */
  padding-inline-start: 2.5rem;
}

.main__section__list__items span {
  display: inline-block;
  transform: translate(10px, -13px);
  line-height: 2.5rem;
}

.main__section__list__items__item {
  font-family: var(--font-family);
  font-size: var(--font-size-standard);
  color: rgb(255, 255, 255);
  /* margin: 1.625rem 0 0; */
}

.main__section4__list__items::-webkit-scrollbar {
  width: 4px; /* width of the entire scrollbar */
}

.main__section4__list__items::-webkit-scrollbar-track {
  background: var(--dark-midnight-blue); /* color of the tracking area */
}

.main__section4__list__items::-webkit-scrollbar-thumb {
  background-color: var(--vibrant-blue); /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
  border: 3px solid transparent; /* creates padding around scroll thumb */
}

.main__section4__list__items__item {
  cursor: pointer;
  text-decoration: none;
}

.main__section4__list__items__link {
  font-size: 23px;
}

/************************ GENERAL CLASS > SCROLLBAR *****************************/

body::-webkit-scrollbar {
  width: 8px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: var(--dark-midnight-blue); /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--vibrant-blue); /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
  border: 3px solid transparent; /* creates padding around scroll thumb */
}

/*************************** GENERAL CLASS > ISLANDS *******************************/



/************************ CONTAINER SETTINGS **************************/



/*
Media query x<1350 { .container{width: 1000px} }

BREAKPOINTS
Infinite > Larger screen > 1350px
1350px > Normal Screen > 1000px
1000px > Tablet Screen > 650px
650 > Mobile > Infinite
*/


  


/************************ CONTAINER SETTINGS **************************/

.container { 
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin:0 auto;
}


/******************************** HEADER *************************************/



header  {
  display: flex;
  width: 100%;
  justify-content: center;
  background: var(--background-section1);
  position: sticky; /* Set the navbar to fixed position */
  top: 0;
  z-index: 33;
  /* box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);  */
}


.header__logo{
  justify-content: center;
  object-fit: cover;
  
}

.header__navbar__socialmedia{
  display: none;
}


.menu-btn{
  padding: auto;
  border: 0;
  cursor: pointer;
  background: transparent; 
  margin-left: 7.5rem;
    
 }
 .menu-btn img{
  width: 20px;
  height: 20px;
 }
 .menu {
  
  position: fixed;
  top: var(--header-height);
  bottom: var(--header-height);
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--turquoise-blue);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  text-decoration: none;
}
 
.menu.is-active {
  opacity: 1;
  pointer-events: auto;
  top: 5rem;
  display: flex;
  width: 100%;
  height: 100vh;
  /* padding: 4rem;  */
  flex-direction: column;
  align-items: center;
  margin-left: 0rem;
  place-content: stretch space-evenly;
  text-decoration: none;
  align-content: center;
  flex-wrap: wrap;
  padding-bottom: 5rem;
}

.menu a {
  font-family: "Ubuntu", sans-serif;
  /* padding: 2rem; */
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: var(--dark-midnight-blue);
}

.menu a:hover {
  background-color: var(--deep-purple);
  border-radius: 3rem;
  color: white;
  /* padding: 1rem; */
}

 .none{ 
  display: none;
}

.header__navbar__socialmedia {
  display: none;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  flex-direction: row;
  text-decoration: none;
}

.navbar-fixed.scrolled {
  background-color: #08f5d9f3;
  box-shadow: var(--translucent-blue-gray) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  transition: 50ms ease-in-out;
  z-index: 33;
}

/* .navigation .header__navbar__sections{ 
  display: flex;
  position: fixed;
  top: var(--header-height);
  bottom: var(--header-height);
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--turquoise-blue);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}*/



@media screen and (min-width: 768px){


}
@media screen and (min-width: 1024px){

  .container { 
    width: 1200px;
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    margin: auto auto;
  }
  

  header {
  display: flex;
  justify-content: center;
  min-height: 120px;
  background-color: var(--background-section1);
 }

 .navbar-fixed {
  position: sticky; /* Set the navbar to fixed position */
  top: 0;
  z-index: 33;
 }

 .menu {
  position: static;
  width: auto;
  flex-direction: row;
  margin-right: -41rem;
  opacity: 1;
  background: transparent;
  pointer-events: auto;
  margin-top: 2rem;
 } 



 .menu a {
  padding: 12px;
  margin: 12px;
  font-size: 16px;
  text-align: center;
  justify-content: space-between;
  z-index: 9;
  font-weight: normal;
 }

 .navbar-fixed {
  position: sticky; /* Set the navbar to fixed position */
  top: 0;
  z-index: 33;
}

 .menu a:hover {
  background-color: var(--deep-purple);
  text-align: center;
  font-size: 16px;
  margin: 12px;
  padding: 12px;
  border-radius: 12px;
  color: white;
 } 
 
 .header__navbar {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
}
 .navbar-fixed.scrolled {
  background-color: #08f5d9f3;
  box-shadow: var(--translucent-blue-gray) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  transition: 50ms ease-in-out;
  z-index: 33;
}
 .menu-btn{
  display: none;
 }
 .header__navbar__socialmedia {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: row;
 }

 .header__navbar__socialmedia {
  display: flex;
  justify-content: right;
  justify-items: right;
  align-items: center;
  width: 300px;
  margin: -53px 0 0 0;
 } 

 .header__navbar__socialmedia ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
 }

 .header__navbar__socialmedia ul li {
  margin: 0 20px;
 }

 .header__navbar__socialmedia hr {
  border: 1px solid var(--translucent-lavender-gray);
  height: 100%;
 }

 .header__navbar__socialmedia select {
  display: flex;
  margin: 0 0 0 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 0.75rem;
  background-color: transparent;
  color: var(--semi-translucent-midnight-blue);
  border: none;
 }

 /* nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 25px 0;
 }

 nav ul li {
  font-family: var(--font-family);
  font-size: var(--font-size-standard);
  font-weight: 400;
 }

 nav ul li a {
  text-decoration: none;
  color: var(--dark-midnight-blue);
  padding: 0.3rem 1.2rem;
  margin: 0 0 0 30px;
  border-radius: 6px;
 }

 nav ul li a:hover {
  transition: 0.3s;
  background-color: var(--deep-purple);
  color: white;
 } */
 /* .navigation .header__navbar__sections{ 
  display: flex;
  position: fixed;
  top: var(--header-height);
  bottom: var(--header-height);
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--turquoise-blue);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
 } */

}

/*************************** SECTION 1 Mb *******************************/

.main__section1 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-evenly;
  background: linear-gradient(180deg,var(--turquoise-blue),var(--vibrant-blue));
  max-height: 100%; 
  width: 100%;
  padding: 1rem;
}
.main__section1 .container{
  display: flex;
  flex-direction: column;
  width: 100%;
} 
.main__section1__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-family);
  color: var(--dark-midnight-blue);
  max-width: 530px;
  margin: 3% 0 0 0;
}

.main__section1__title__top {
  font-size: 1.5rem;
  margin-top: 10px;
}

.main__section1__title__middle {
  background-color: var(--dark-midnight-blue);
  padding: 8px;
  border-radius: 4px;
  font-size: 1.5rem;
  color: var(--turquoise-blue);
  margin-top: 10px;
}

.main__section1__title__middle_triangle {
  content: "";
  position: relative;
  top: -5px;
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-top: 10px solid transparent;
  border-left: 10px solid var(--dark-midnight-blue);
  border-bottom: 10px solid var(--dark-midnight-blue);
  transform: rotate(90deg);
}

.main__section1__title__title {
  margin: 14px 0 52px 0;
}

.main__section1__title__btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main__section1__img {
  
  background: url(./media/LandingPage_People_Solar_chilling_2.png);
  background-size: contain; 
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  max-width: 100vh;
}

.main__section1__img__front {
  width: 100%;
  height: auto;
  transition: 300ms;
}

.main__section1__img__front:hover {
  filter: drop-shadow(5px 10px 16px rgba(61, 61, 61, 0.199));
  transform: matrix(1, 0.07, -0.07, 1, 0, -16);
  transition: 300ms;
}

/********************** SECTION 2 Mb *********************/
.main__section2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--background-section2);
  padding: 1rem;
  height: 30rem;
  gap: 5%;
}

.main__section2 .container{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 29rem;
  margin-top: -8rem;
}

.main__section2__patio {
  font-family: var(--font-family);
  font-size: 20px;
  color: var(--dark-midnight-blue);
  align-self: center;
  text-align: start;
  line-height: 35px;
  max-width: 100%;
  margin-top: 80px;
}

hr{
  display: none;
}

.main__section2__coops {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 500;
  color: var(--dark-midnight-blue);
  align-self: center;
  line-height: 40px;
  margin-top: 80px;
  max-width: 100%;
}

@media screen and (min-width: 768px){

}
/********************************** SECTION 1 y 2 Ds *************************************/
@media screen and (min-width: 1024px){

  .container {
    width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  
    margin: auto auto;
  }

  .main__section1 {
    background: linear-gradient(180deg,var(--turquoise-blue),var(--vibrant-blue));
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
  
    max-height: 100vh;
  }
  
  .main__section1 .container{
    display: flex;
    flex-direction: row;
    width: 1200px;
    }
  .main__section1__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 3;
    font-family: var(--font-family);
    color: var(--dark-midnight-blue);
  
    max-width: 530px;
    margin: 3% 0 0 0;
  }
  
  .main__section1__title__top {
    margin: 10px 0;
    font-size: 1.5rem;
  }
  
  .main__section1__title__middle {
    background-color: var(--dark-midnight-blue);
    border-radius: 4px;
    padding: 3px 14px;
  
    font-size: 1.5rem;
    color: var(--turquoise-blue);
    margin-top: 10px;
  }
  
  .main__section1__title__middle_triangle {
    content: "";
    position: relative;
    top: -5px;
  
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-left: 10px solid var(--dark-midnight-blue);
    border-bottom: 10px solid var(--dark-midnight-blue);
  
    transform: rotate(90deg);
  }
  
  .main__section1__title__title {
    margin: 14px 0 52px 0;
  }
  
  .main__section1__title__btns {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }
  
  .main__section1__img {
    background: url(./media/LandingPage_People_Solar_chilling_2.png);
  
    background-size: contain;
    background-repeat: no-repeat;
    max-width: 60%;
  }
  
  .main__section1__img__front {
    height: 600px;
    transition: 300ms;
  }
  
  .main__section1__img__front:hover {
    filter: drop-shadow(5px 10px 16px rgba(61, 61, 61, 0.199));
    transform: matrix(1, 0.07, -0.07, 1, 0, -16);
    transition: 300ms;
  }
  
  /*************************** SECTION 2 Ds ****************************/
  
  .main__section2  {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
  
    background: var(--background-section2);
  
    height: 20rem;
    gap: 5%; 
  }
  
  .main__section2 .container{
    display: flex;
    flex-direction: row;
    width: 1200px;
  }
  
  .main__section2__patio {
    font-family: var(--font-family);
    font-size: 20px;
    color: var(--dark-midnight-blue);
    align-self: center;
    text-align: right;
    margin-right: 2rem;
    line-height: 35px;
    max-width: 50%;
    margin-top: 0px;
  }
  .main__section2__hr {
    display: flex;
    border: 1px solid var(--dark-midnight-blue);
    height: 150px;
    align-self: center;
    margin-top: 0px;
  }
  .main__section2__coops {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 500;
    color: var(--dark-midnight-blue);
    align-self: center;
    text-align: start;
    margin-left: 2rem;
    line-height: 40px;
    margin-top: 0px;
    max-width: 50%;
  }

}

/********************************** SECTION 3 Mb *************************************/

.main__section3 {
  background: var(--background-section3);
  display: flex;
  flex-direction: column;
  height: 69rem;
  padding: 1rem;
  width: 100%;
}

.main__section3__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  
}

.main__section3__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
  z-index: 3;
  margin-top: 3rem;
}

.main__section3__h2 {
  color: var(--deep-sky-blue);
  font-size: 36px;
}

.main__section3__pmain {
  font-size: var(--font-size-special);
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  line-height: 33.6px;
  font-size: 20px;
}

.main__section3__p {
  font-size: var(--font-size-standard);
  font-weight: 300;
  color: rgba(255, 255, 255, 1);
  line-height: 26px;
}

.main__section3__globe-mb {
 
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  height: fit-content;
  margin-top: 2rem;
  background: transparent;
}

.main__section3__globe {
  display: none;
}

@media screen and (min-width: 768px){

}
/********************************** SECTION 3 Ds *************************************/

@media screen and (min-width: 1024px){

  .container-section3 { 
    width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto auto;
  }

  .main__section3 {
    background: var(--background-section3);
  
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    height: 40rem;
    min-height: 588px;
  }
  
  .main__section3__container {
    display: flex;
    flex-direction: row;
    margin: 100px;
  }
  
  .main__section3__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    
    margin-top: 8rem;
    max-width: 47%;
    z-index: 3;
  }
  
  .main__section3__h2 {
    color: var(--deep-sky-blue);
  }
  
  .main__section3__pmain {
    font-size: var(--font-size-special);
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    line-height: 33.6px;
  }
  
  .main__section3__p {
    font-size: var(--font-size-standard);
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    line-height: 26px;
  }
  .main__section3__globe-mb{
    display: none;
  }

  .main__section3__globe {
    pointer-events: none;
    user-select: none;
    display: flex;
    margin: 0 auto 0 -30%;
    background-color: transparent;
    overflow: hidden;
    /* min-width: 73vw; */
  }
  
}

/***************************************** SECTION 4 Mb ***************************************/

.main__section4 { 
  display: flex;
  flex-direction: column;
  background: var(--background-section3);
  width: 100%;
  
}

.main__section4 .container{
  display: flex;
  flex-direction: column;
  width: 100%;
  
}

.main__section4__stats {
  background: var(--background-section3);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 36rem;
  justify-content: center;
  min-width: 100%;
  padding: 1rem;
  width: 100%;
}

.main__section4__statsWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* INSETAR MARGEN */
  gap: 1%; 
  max-width: 100%;
  margin-top: -50rem;
  width: 90%;
}

.main__section4__stats__coops,
.main__section4__stats__cooperators,
.main__section4__stats__countries,
.main__section4__stats__digital {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin: 24px 18px;
  width: 100%;
}

.main__section4__stats__img {
  max-width: 116px;
  max-height: 116px;
  padding: 8px;
}

.main__section4__stats__img__cooperators {
  max-height: 100px !important;
  padding-right: 26px !important;
}

 .main__section4__stats__number { 
  font-family: var(--font-stats); 
  font-size: var(--font-size-stats);
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 -10px 0;
  text-align: center;
}

.main__section4__stats__descrip {
  font-family: var(--font-family);
  font-size: var(--font-size-stats-descrip);
  font-weight: 900;
  color: var(--dark-midnight-blue);
  width: 200px;
  color: white;
  text-align: center;
}

.main__section4__list {
  background-color: var(--dark-midnight-blue);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 5% 10% /*64px 0 0 132px*/;
  min-width: 43%;
}

@media screen and (min-width: 768px){

}
/********************************** SECTION 4 Ds *************************************/

@media screen and (min-width: 1024px){

  .container {
    width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  
    margin: auto auto;
  }

  .main__section4 .container{
    display: flex;
    flex-direction: row;
    background: var(--background-section3);
    
    width: 1200px;
    height: 13rem;
  }
  
  .main__section4__stats {
    background: var(--background-section3);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 27rem;
    min-width: 20%;
    padding: 3rem 0 6rem 3rem;
  }
  
  .main__section4__statsWrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  
    /* INSETAR MARGEN */
    gap: 1%;
    max-width: 15%;
    margin-left: -45px;
  }
  
  .main__section4__stats__coops,
  .main__section4__stats__cooperators,
  .main__section4__stats__countries,
  .main__section4__stats__digital {
    display: flex;
  
    justify-content: center;
    align-items: center;
  
    margin: 24px 64px;
    max-width: 200px;
  }
  
  .main__section4__stats__img {
    max-width: 116px;
    max-height: 116px;
    padding: 8px;
  }
  
  .main__section4__stats__number {
    font-family: var(--font-stats);
    font-size: var(--font-size-stats);
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    margin: 0 0 -10px 0;
  }
  
  .main__section4__stats__descrip {
    font-family: var(--font-family);
    font-size: var(--font-size-stats-descrip);
    font-weight: 900;
    width: 200px;
  }

  .main__section4__stats__content {
    margin-left: -35px;
  }
  
  .main__section4__list {
    background-color: var(--dark-midnight-blue);
  
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5% 10% /*64px 0 0 132px*/;
    min-width: 43%;
  }
  
  /*.main__section4__list::after {
      content: " ";
      position: relative;
      top: 20%;
      min-width: 100%;
      min-height: 125px;
      background: white;
      background: linear-gradient(0deg, rgba(12,19,84,1) 0%, rgba(12,19,84,0) 100%);
      margin: -50% 0 0 0;
  
      border: red 1px solid;
  }*/
  
  #titleListSpecial {
    min-width: 400px;
  }
  
  .main__section4__list__wrapper {
    display: flex;
    padding: 50px 132px;
  }
  
  .main__section4__list__slugline {
    font-family: var(--font-family);
    font-size: var(--font-size-standard);
    font-weight: 200;
    line-height: 120%;
    color: rgba(255, 255, 255, 1);
  }
  
  .main__section4__list__items {
    font-family: var(--font-family);
    font-size: var(--font-size-standard);
    font-weight: 300;
    line-height: 35px;
    margin: 27px 25px;
    overflow-y: scroll;
    max-height: 250px;
    min-width: 100%;
  }
  
  .main__section4__list__items a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: 300ms;
  }
  
  .main__section4__list__items a::before {
    content: "• ";
    color: white;
    transition: 300ms;
  }
  .main__section4__list__items a:hover {
    color: var(--dark-violet);
    transition: 300ms;
  }
  
  .main__section4__list__items a:hover::before {
    content: "• ";
    color: white;
    transition: 300ms;
  }
  
  .main__section4__island__background {
    background: linear-gradient(
      180deg,
      var(--deep-purple) 0%,
      var(--deep-purple-dark) 100%
    );
  }
  
  .main__section4__island {
    margin: -4rem 0 6.25rem 0;
    padding: 3rem 6rem;
  }
  
  /* .main__section4__island__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  
    padding: 3rem 6rem;
  } */
  
  .main__section4__grid__title {
    font-family: var(--font-family);
    font-size: var(--font-size-special);
    font-weight: 500;
  
    color: rgb(0, 0, 0);
    padding: 0;
  }
  
  .members__credits {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    column-gap: 4.5rem;
    row-gap: 0;
    justify-items: center;
    align-items: center;
  }
  
  .members__cooplogo {
    max-width: 95%;
  }
  
  .members__cooplogo__small {
    transform: scale(1.4);
  }
  
  .members__cooplogo__medium {
    transform: scale(1.2);
  }
  
  .members__cooplogo__large {
    transform: scale(1.65);
  }
  
  .members__credits a {
    margin-top: 15px;
  }
}
/************************************** grid coops **************************************/

.section4__content__coops-modal {
  display: flex;
  padding: 1rem;
  margin-top: -15rem;
  background: var(--background-section3);
  
}
.section4__content__coops-modal{
  display: flex;
  padding: 1rem;
}
.container-coops {
  object-fit: cover;
  width: 100%;
  /* margin-top: 100rem; */
  text-align: center;
  height: auto;
  padding: 0rem;
  margin-top: 8rem;
  
}

.grid-responsive {
  background: white;
  display: grid;
  padding: 1rem;
  margin: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 0.5rem;
}

.img {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80px;
  text-align: center;
  justify-content: center;
  object-fit: cover;
}

.item {
  padding: 2rem;
  background-color:white;
  /* height: 90px; */
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  }

  
.logo-image {
  max-height: 80px;
  max-width: 130px;
}


@media screen and (min-width: 768px){

}
/********************************** Grid Ds *************************************/

@media screen and (min-width: 1024px){


  .container-coops {
    object-fit: cover;
    display: grid;
    width: 1200px;
    margin-top: 10rem;
    text-align: center;
    height: auto;
    padding: 0rem;
    justify-items: start;
    align-items: center;
    align-content: stretch;
    justify-content: space-around;
  }
  .grid-responsive {

    background: white;
    display: grid;
    padding: 1rem;
    width: 1200px;
    text-align: center;
    margin: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 2fr));
    gap: 1rem;
    align-items: center;
    justify-content: center;
    align-content: space-between;
    justify-items: center;
}
}

/*------------------------- Modal Mb --------------------------*/
.modal{
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0c1354a2;
  opacity: 0;
  pointer-events: none;
  transition: all 1s;
}

.modal-content{
  position: relative;
}

.modal-close{
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.modal-close img{
  width: 1.5rem;
  right: 1.5rem;
  fill: #0C1354;
}

.modal[id|="cooperativa"]:target{
  opacity: 1;
  pointer-events: auto;
  transition: all 1s;
}

.coops-modal{
  background-color: white;
  padding: 2rem;
  max-width: 400px;
}

.coops-modal img{
 width: 100%;
 height: fit-content;
 text-align: center;
 justify-content: cover; 
}

.coops-info{
  margin: 0;
  padding-bottom: 2rem;
  color: #0c1354;
  font-family: 'Ubuntu';
  font-style: normal;
}

.coops-info p{
  display: inline-block;
  background: #0C1354;
  color: #FFFFFF;
  border-radius: 10px;
  margin-top: 1rem;
  padding: 4px;
  margin-bottom:1rem;
}

.coops-info h3{
  border-bottom: solid 4px var(--dark-midnight-blue);
  display: inline-block;
  margin-bottom: 1rem;
}

.coops-info h4{
  margin-bottom: 1rem;
}

.coops-details{
  padding:0;
  margin:0;
}

.coops-details b{
  border: solid 1px  rgb(4, 7, 63);
  padding: 2px;
  margin: 2px;
  border-radius: 8px;
  display: inline-block;
} 





/********************************** Section5 Mb *****************************************/

.container {
  width: 100%;
  justify-content: space-between;
  margin: auto auto;
}

.main__section5 {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: linear-gradient(359deg,var(--dark-violet) 50.06%, rgba(154, 73, 236, 0) 90.19%),var(--deep-purple-dark);
  width: 100%;
  margin-left: 0rem;
}
.main__section5__container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  margin-left: .1rem;
}
.main__section5__wrapper {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  margin-top: 14px;
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 1);
  margin-bottom: 0px;
}

.main__section5__img {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.main__section5__img img {
  width: 100%;
  height: auto;
}

.main__section5__title {
  font-family: var(--font-family);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: #08F5DA;
}

.main__section5__subtitle {
  font-family: var(--font-family);
  font-size: var(--font-size-special);
  line-height: 160%;
}

.main__section5__content {
  font-family: var(--font-family);
  font-size: var(--font-size-standard);
  line-height: 140%;
  padding-top: 15px;
}

.main__section5__services {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  align-items: start;
}

.main__section5__services div {
  padding: 10px;
}

.main__section5__services div img {
  width: 60%;
}

.main__section5__services__title {
  
  /* background-image: url(./media/services-white-rectangle.png); */
  display: flex;
  color: var(--dark-midnight-blue);
  margin: 20px;
  width: 14rem;
  height: 9rem;
  border-radius: 10px 10px 10px 10px;
  background-repeat: no-repeat;
  background-color: white;
  flex-direction: column;
  align-items: flex-start;
  padding: 35px !important;
  margin-left: 16%;
  margin-top: 39px;
}

/* .main__section5__services__title::after {
  content: "";
  position: relative;
  width: 0;
  height: 0;
  top: -98px;
  right: -124px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;

  border-top: 20px solid #fff;
} */

.main__section5__services__title__bolder {
  font-weight: 700;
  font-size: var(--font-size-h4);
}

/* .main__section5__services__title__triangle {
  content: "";
  position: relative;
  top: -5px;

  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-top: 10px solid transparent;
  border-left: 10px solid rgba(255, 255, 255, 1);
  border-bottom: 10px solid rgba(255, 255, 255, 1);

  transform: rotate(90deg);
} */

.main__section__services__service {
  color: rgba(255, 255, 255, 1);
  text-align: center;
}
.main__section5__services__content{
  display: flex;
    flex-direction: row;
    padding: 10rem;
    width: 100%;
    align-items: center;
    justify-content: center;
    align-items: center;
    margin-left: -1rem;
}
.main__section5__services__full-stack img {
  width: 90% !important;
}

.main__section5__services__design img {
  width: 117% !important;
}

.main__section5__services__branding img {
  width: 100% !important;
}

.main__section5__services__mobile img {
  width: 100% !important;
}

.main__section5__services__IOT img {
  width: 107% !important;
}

.main__section5__services__PM img {
  width: 99% !important;
}

.main__section5__services__column1{
  display: flex;
  flex-direction: column;
  width: 40%;
  
}

.main__section5__services__column2{
  display: flex;
  flex-direction: column;
  width: 40%;
}


@media screen and (min-width: 768px){

}
/********************************** Section5 Ds *************************************/

@media screen and (min-width: 1024px){
  
  .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto auto;
    width: 1200px;
  }

  .main__section5 {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: linear-gradient(359deg,var(--dark-violet) 50.06%, rgba(154, 73, 236, 0) 90.19%),var(--deep-purple-dark);
    width: 100%;
    padding-top: 160px;
  }

  .main__section5__container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    margin-left: .1rem;
  }

  .main__section5__wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 14px;
    font-family: var(--font-family);
    color: rgba(255, 255, 255, 1);
    margin-bottom: -120px;
  }

  .main__section5_text {
    width: 43%;
  }
  
  .main__section5__img {
    display: flex;
    width: 56%;
  }
  
  .main__section5__img img {
    margin-top: -7rem;
  }
  
  .main__section5__title {
    font-family: var(--font-family);
    font-size: var(--font-size-h2);
    font-weight: 700;
  
    color: var(--dark-midnight-blue);
  }
  
  .main__section5__subtitle {
    font-family: var(--font-family);
    font-size: var(--font-size-special);
    line-height: 160%;
  }
  
  .main__section5__content {
    font-family: var(--font-family);
    font-size: var(--font-size-standard);
    line-height: 140%;
    padding-top: 15px;
  }
  
  .main__section5__services {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    align-items: center;
    padding-left: 20px;
  }
  
  .main__section5__services div {
    padding: 45px;
  }
  
  .main__section5__services div img {
    width: 60%;
  }
  
  .main__section5__services__title {
    color: var(--dark-midnight-blue);
    /* background-image: url(./media/services-white-rectangle.png); */
    margin: 20px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-color: white;
  }
  
  /* .main__section5__services__title::after {
    content: "";
    position: relative;
    width: 0;
    height: 0;
    top: -98px;
    right: -124px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
  
    border-top: 20px solid #fff;
  } */
  
  .main__section5__services__title__bolder {
    font-weight: 700;
    font-size: var(--font-size-h4);
  }
  
  /* .main__section5__services__title__triangle {
    content: "";
    position: relative;
    top: -5px;
  
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-left: 10px solid rgba(255, 255, 255, 1);
    border-bottom: 10px solid rgba(255, 255, 255, 1);
  
    transform: rotate(90deg);
  } */

  .main__section5__services__content{
    display: flex;
    flex-direction: column;
    margin-left: -27rem;
  }
  
  .main__section5__services__column1{
    display: flex;
    flex-direction: row;
  }
  
  .main__section5__services__column2{
    display: flex;
    flex-direction: row;
    margin-top: -8rem;
  }
  
  .main__section__services__service {
    color: rgba(255, 255, 255, 1);
    text-align: center;
  }
  
  .main__section5__services__full-stack img {
    width: 100% !important;
  }
  
  .main__section5__services__design img {
    width: 117% !important;
  }
  
  .main__section5__services__branding img {
    width: 145% !important;
  }

  .main__section5__services__mobile {
    margin-left: 9px;
  }
  
  .main__section5__services__mobile img {
    width: 100% !important;
  }
  
  .main__section5__services__IOT img {
    width: 107% !important;
  }

  .main__section5__services__IOT {
    min-width: 166px;
    margin-left: -5px;
  }

  .main__section5__services__consultancy {
    margin-left: 24px;
  }

  .main__section5__services__consultancy img {
    width: 100% !important;
  }
  
  .main__section5__services__PM img {
    width: 99% !important;
  }

  .main__section5__services__blockchain {
    margin-left: 10px;
  }

  .main__section5__services__blockchain img {
    width: 100% !important;
  }

  .main__section5__services__devops {
    min-width: 154px;
  }

  .main__section5__services__devops p {
    margin-left: 15px;
    margin-top: 10px;
  }

  .main__section5__services__devops img {
    width: 130% !important;
  }
}



/********************************** SECTION 6 Mb *******************************************/
.container { 
  width: 100%;
  
  justify-content: space-between;
  margin: auto auto;
}


.main__section6 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background: var(--dark-midnight-blue); /*var(--background-section6)*/
  padding: 1rem; 
  width: 100%;
  
}


.main__section6 .container {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin-left: 1rem;
  
}

.main__section6__island__content{
  display: flex;
  width: 100%;
}

.main__section6__container div {
  display: flex;
  flex-direction: column;
  width: 90%;
} 


.main__section6__content__title {
  font-family: var(--font-family);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--light-purple);
}

 .main__section6__content__text {
  font-family: var(--font-family);
  font-size: var(--font-size-special);
  line-height: 160%;
  color: rgba(255, 255, 255, 1);
  width: 100%;
} 

.main__section6__list {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

 .main__section6__img { 
  /* position: absolute; */
background: white;
  right: 1rem;
}

.main__section6__island__background {
  background: linear-gradient(180deg, #0c1354 0%, var(--vibrant-blue) 100%);
}

.main__section6__island {
  margin: 1rem;
  
}

/* .main__section6__island__img .container{ 
  z-index: 3;
  background-color: var(--dark-purple-red);
  background-image: url(./media/Coop5.png);
  height: 200px;
  width: 100%;
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  --webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 1) 85%,rgba(0, 0, 0, 0) 100%);
}
*/
#specialCheck {
  font-weight: 400;
}

#specialCheck::marker {
  content: "✓       ";
  content: url(./media/icon_check.png);
  font-size: 100%;
  vertical-align: center;
}

.main__section7__island__background {
  background: linear-gradient(0deg, #0c1354 0%, var(--vibrant-blue) 100%);
}

.main__section7__island {
  margin-left: 2rem;
  margin-right: 2rem;
  margin-bottom: 150px;
  margin-top: -70px;
}

/* .main__section__island7__content .container{ 
  width: 100%;
}

.main__section7__island__img .container{
  z-index: 3;
  background-color: #ffffff;
  background-image: url(./media/Coop7.png);
  height: 100%;
  width: 90%;
  background-position: center left;
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  --webkit-mask-image: -webkit-linear-gradient(right,rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
}
*/

@media screen and (min-width: 768px){

}
/********************************** Section6 Ds *************************************/

@media screen and (min-width: 1024px){

  .container { 
    width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto auto;
  }

  .main__section6 {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background: var(--dark-midnight-blue); /*var(--background-section6)*/
    padding: 128px 0; 
  }
  
  .main__section6__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1200px;
    
  }
  
  .main__section6__container div {
    width: 40%;
  }
  
  .main__section6__content__title {
    font-family: var(--font-family);
    font-size: var(--font-size-h2);
    font-weight: 700;
  
    color: var(--light-purple);
  }
  
  .main__section6__content__text {
    font-family: var(--font-family);
    font-size: var(--font-size-special);
    line-height: 160%;
  
    color: rgba(255, 255, 255, 1);
  }
  
  .main__section6__list {
    display: flex;
    flex-direction: column;
    max-width: 500px;
  }
  
  .main__section6__img {
    position: absolute;
    right: -450px;
  }
  .main__section__island {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: rgb(255, 255, 255);
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
  }
  
  .main__section__island__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8rem 6rem 5rem;
  }
  
  .main__section__island__content__text {
    font-family: var(--font-family);
    font-size: var(--font-size-h3);
    font-weight: 400;
    color: #000000 !important;
  }
  
  .main__section__island__img {
    min-width: 50%;
    background-repeat: no-repeat;
    background-size: auto;
  }
  .main__section6__island__background {
    background: linear-gradient(180deg, #0c1354 0%, var(--vibrant-blue) 100%);
  }
  
  .main__section6__island {
    margin: -4rem 0 6.25rem 0;
  }
  
  .main__section6__island__img {
    z-index: 3;
    background-color: var(--dark-purple-red);
    background-image: url(./media/Coop5.png);
    height: 100%;
    width: 155%;
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
    --webkit-mask-image: -webkit-linear-gradient( left, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100% );
  }
  
  #specialCheck {
    font-weight: 400;
  }
  
  #specialCheck::marker {
    content: "✓       ";
    content: url(./media/icon_check.png);
    font-size: 100%;
    vertical-align: center;
  }
  

}

/********************************* SECTION 7 Mb *************************************/

.main__section7 {
  display: flex;
  flex-direction: column;
  background: var(--vibrant-blue);
  padding: 80px 0;
}

.main__section7 .container{
  display: flex;
  flex-direction: column;
  padding: 2rem;
  width: 100%;
}

.main__section7__content {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.main__section7__title {
  color: var(--dark-midnight-blue);
}

.main__section7__paragraph {
  font-size: var(--font-size-special);
  font-weight: 400;
  line-height: 33.6px;
  color: var(--dark-midnight-blue);
}

.main__section__list__title {
  color: rgba(255, 255, 255);
}

.main__section7__list {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.main__section7__list span {
  display: inline-block;
  padding-top: 1.5rem;
  line-height: 1.5rem;
  transform: translate(10px, -5px);
}

#specialCheck2 {
  color: var(--dark-midnight-blue);
}

#specialCheck2 {
  font-weight: 400;
}

#specialCheck2::marker {
  /* content: "✓       "; */
  content: url(./media/icon_check_2.png);
  font-size: 100%;
  vertical-align: center;
}

@media screen and (min-width: 768px){

}
/********************************** Section7 Ds *************************************/

@media screen and (min-width: 1024px){

  .main__section7 {
    display: flex;
    flex-direction: row;
    background: var(--vibrant-blue);
    padding: 128px 0;
  }
  
  .main__section7 .container{
    display: flex;
    flex-direction: row;
    width: 1200px;
   
  }
  
  .main__section7__content {
    display: flex;
    flex-direction: column;
  
    max-width: 500px;
  }
  
  .main__section7__title {
    color: var(--dark-midnight-blue);
  }
  
  .main__section7__paragraph {
    font-size: var(--font-size-special);
    font-weight: 400;
    line-height: 33.6px;
    color: var(--dark-midnight-blue);
  }
  
  .main__section__list__title {
    color: rgba(255, 255, 255);
  }
  
  .main__section7__list {
    display: flex;
    flex-direction: column;
    max-width: 500px;
  }
  
  .main__section7__list span {
    display: inline-block;
    padding-top: 1.5rem;
    line-height: 1.5rem;
    transform: translate(10px, -5px);
  }
  
  #specialCheck2 {
    color: var(--dark-midnight-blue);
  }
  
  #specialCheck2 {
    font-weight: 400;
  }
  
  #specialCheck2::marker {
    /* content: "✓       "; */
    content: url(./media/icon_check_2.png);
    font-size: 100%;
    vertical-align: center;
  }
  
  .main__section7__island__background {
    background: linear-gradient(0deg, #0c1354 0%, var(--vibrant-blue) 100%);
  }
  
  .main__section7__island {
    margin: -4rem 0 6.25rem 0;
  }
  
  .main__section__island7__content {
    width: 600px;
  }
  
  .main__section7__island__img {
    z-index: 3;
    background-color: #ffffff;
    background-image: url(./media/Coop7.png);
    height: 100%;
    width: 100%;
    background-position: center left;
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
    --webkit-mask-image: -webkit-linear-gradient(
      right,
      rgba(0, 0, 0, 1) 85%,
      rgba(0, 0, 0, 0) 100%
    );
  }
  

}

/************************** SECTION 8 Mb *************************************/



.main__section8 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--dark-midnight-blue);
  padding: 1rem;
  width: 100%;

}

.main__section8 .container{
  display: flex;
  flex-direction: column; 
  padding: 1rem;
  width: 100%;
 
}

.main__section8__title {
  display: none;
  font-family: var(--font-family);
  font-size: var(--font-size-h2);
  font-weight: 700;
  width: 100%;
}

.main__section8__content {
  padding: 0 2rem 0 0;
  width: 100%;
  padding: 0 2rem 0 0;
  width: 100%;
  font-family: var(--font-family);
  font-size: var(--font-size-special);
  line-height: 160%;
  color: rgba(255, 255, 255, 1);
}

.main__section8__content p {
  font-weight: 700;
  line-height: 1.5rem;
}

.main__section8__content img {
  width: 100%;
  margin-left: -1.5rem;
  /* position: relative; */
  /* z-index: 0; */
}

.main__section8__form__container {
  background-color: white;
  border-radius: 20px;
  padding: .5rem;
  width: 100%;
}

.main__section8__form__content {
  font-family: var(--font-family);
  font-size: var(--font-size-special);
  font-weight: 500;
  font-weight: 500;
  color: var(--dark-midnight-blue);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1fr;
  column-gap: 1rem;
  grid-template-columns: minmax(0, 1fr) 1fr;
  column-gap: .1rem;
}

.main__section8__form__content label {
  padding-bottom: 0.5rem;
}

.main__section8__form__content select,
input,
textarea {
  font-family: var(--font-family);
  font-size: var(--font-size-standard);
  color: var(--dark-midnight-blue);
  padding: 0.5rem;
  border-radius: 6px;
  border-color: var(--dark-midnight-blue);
  background-color: transparent;
  margin-bottom: 1.5rem;
}
.main__section8__form__content label {
  padding-bottom: 0.5rem;
}

.main__section8__form__content select,
input,
textarea {
  font-family: var(--font-family);
  font-size: var(--font-size-standard);
  color: var(--dark-midnight-blue);
  padding: 0.5rem;
  border: 1.5px solid var(--dark-midnight-blue);
  border-radius: 6px;
  background-color: transparent;
  margin-bottom: 1.5rem;
}

.form_label_1 {
  grid-column: 1 / 3;
}

.form_input_1 {
  grid-column: 1 / 3;
}

.form_label_2 {
  grid-column: 1 / 1;
}

.form_input_2 {
  grid-column: 1 / 1;
  width: 100%;
}

.form_label_3 {
  grid-column: 2 / 3;
  grid-row: 3;
}

.form_input_3 {
  grid-column: 2 / 3;
  width: 100%;
}

.form_label_4 {
  grid-column: 1 / 3;
  grid-column: 1 / 3;
}

.form_input_4 {
  grid-column: 1 / 3;
  grid-column: 1 / 3;
}

.form_label_5 {
  grid-column: 2 / 3;
  grid-row: 5;
}

.form_input_5 {
  grid-column: 2 / 3;
}

.form_label_6 {
  grid-column: 1 / 3;
}

.form_input_6 {
  grid-column: 1 / 3;
}

.form_label_7 {
  grid-column: 1 / 3;
}

.form_input_7 {
  grid-column: 1 / 3;
}

.form_input_8 {
  grid-column: 1;
}

/*.main__section__island {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: rgb(255, 255, 255);
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
}

 .main__section__island__content { 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  max-width: 100%;
  width: 100%;
}

.main__section__island__content__text {
  font-family: var(--font-family);
  font-size: var(--font-size-h3);
  font-weight: 400;
}

.main__section__island__img {
   min-width: 50%; 
   background-repeat: no-repeat; 
   background-size: auto; 
} */

.main__section__island__content__text {
  color: rgb(255, 255, 255);
  margin-top: 30px;
}


@media screen and (min-width: 768px){

}
/********************************** Section8 Ds *************************************/

@media screen and (min-width: 1024px){

  .main__section8 {
    display: flex;
    justify-content: space-between;
    background: var(--dark-midnight-blue);
    padding: 9rem 0;
    padding: 9rem 0;
  }
  
  .main__section8 .container{
    display: flex;
    flex-direction: row;
    width: 1200px;
   
  }
  
  
  .main__section8__title {
    font-family: var(--font-family);
    font-size: var(--font-size-h2);
    font-weight: 700;
  }
  
  .main__section8__content {
    padding: 0 2rem 0 0;
    width: 40%;
    padding: 0 2rem 0 0;
    width: 40%;
    font-family: var(--font-family);
    font-size: var(--font-size-special);
    line-height: 160%;
    color: rgba(255, 255, 255, 1);
  }
  
  .main__section8__content p {
    font-weight: 700;
    line-height: 1.5rem;
  }
  
  .main__section8__content img {
    width: 32rem;
    margin-left: -1.5rem;
    position: relative;
    z-index: 0;
  }
  
  .main__section8__form__container {
    background-color: white;
    border-radius: 20px;
    padding: 1rem;
    padding: 1rem;
    width: 60%;
  }
  
  .main__section8__form__content {
    font-family: var(--font-family);
    font-size: var(--font-size-special);
    font-weight: 500;
    font-weight: 500;
    color: var(--dark-midnight-blue);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1fr;
    column-gap: 1rem;
    grid-template-columns: minmax(0, 1fr) 1fr;
    column-gap: 1rem;
  }
  
  .main__section8__form__content label {
    padding-bottom: 0.5rem;
  }
  
  .main__section8__form__content select,
  input,
  textarea {
    font-family: var(--font-family);
    font-size: var(--font-size-standard);
    color: var(--dark-midnight-blue);
    padding: 0.5rem;
    border-radius: 6px;
    border-color: var(--dark-midnight-blue);
    background-color: transparent;
    margin-bottom: 1.5rem;
  }
  .main__section8__form__content label {
    padding-bottom: 0.5rem;
  }
  
  .main__section8__form__content select,
  input,
  textarea {
    font-family: var(--font-family);
    font-size: var(--font-size-standard);
    color: var(--dark-midnight-blue);
    padding: 0.5rem;
    border: 1.5px solid var(--dark-midnight-blue);
    border-radius: 6px;
    background-color: transparent;
    margin-bottom: 1.5rem;
  }
  
  .form_label_1 {
    grid-column: 1 / 3;
  }
  
  .form_input_1 {
    grid-column: 1 / 3;
  }
  
  .form_label_2 {
    grid-column: 1 / 1;
  }
  
  .form_input_2 {
    grid-column: 1 / 1;
  }
  
  .form_label_3 {
    grid-column: 2 / 3;
    grid-row: 3;
  }
  
  .form_input_3 {
    grid-column: 2 / 3;
  }
  
  .form_label_4 {
    grid-column: 1 / 3;
    grid-column: 1 / 3;
  }
  
  .form_input_4 {
    grid-column: 1 / 3;
    grid-column: 1 / 3;
  }
  
  .form_label_5 {
    grid-column: 2 / 3;
    grid-row: 5;
  }
  
  .form_input_5 {
    grid-column: 2 / 3;
  }
  
  .form_label_6 {
    grid-column: 1 / 3;
  }
  
  .form_input_6 {
    grid-column: 1 / 3;
  }
  
  .form_label_7 {
    grid-column: 1 / 3;
  }
  
  .form_input_7 {
    grid-column: 1 / 3;
  }
  
  .form_input_8 {
    grid-column: 1;
  }
  

}
/****************************  Footer Grid *****************************/

.footer__intercoop {
  background-color: var(--dark-midnight-blue);
  height: 1rem;
  padding: 4px;
}

.footer__intercoop__text {
  background-color: white; 
  color: var(--dark-midnight-blue);
  text-align: center;
  padding: 8px;
}

.footer__content__coops-modal {
  display: flex;
  background: #070c3875;
  padding: 0rem;
}
.footer__content__coops-modal{
  display: flex;
  
}
.footer-container-coops {
  object-fit: cover;
  width: 100%;
  text-align: center;
  height: auto;
  padding: 0rem;
  background-color:#0C1354;
  
}

.footer-img {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80px;
}

.footer-item {
  padding: 2rem;
  background-color:#0b0d2256;
  
  
}
.footer-grid-responsive {
  background: rgba(3, 3, 17, 0.5);
  display: grid;
  padding: 1rem;
  margin: 0rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.footer_love_img {
  height: 20px;
  margin-bottom: -4px;
}

 
