@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;1,200;1,300;1,400;1,600;1,700&display=swap');

:root {
  --color-plus: #3cccc4;
  --gradient-right-green: #3c804f;
  --gradient-dark-blue: #08024c;
  --gradient-light-blue: #0a1684;
  --gradient-left-green: #144f3d;
  --accordion-text-color: #21014E;
  --accordion-title-color: #29A204;
}

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

html {
  overflow-x: hidden;
}

/* Header variant */

.header-logo-img {
  margin-left: 3rem;
  width: 9em;
}

.cover-background {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;  
}

.cover-background:first-child {
  background: url(../images/accelerator/bg_green_version.webp);
  background-size: cover;
  background-position: center;
  display: flex;
  position: relative;
}

.cover-background:first-child::after {
  content: '';
  position: absolute;
  z-index: 20;
  width: 100%;
  height: 110%;
  top: 25.5%;
  left: 0;
  background: url(../images/accelerator/computer.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.cover-background:nth-child(2) {
  position: relative;
}

.cover-background:nth-child(2)::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/accelerator/pexels-mikael.webp);
  background-size: cover;
  background-position: right;
  filter: contrast(130%) brightness(90%);
  -webkit-filter: contrast(130%) brightness(90%);
}

.cover-attributes,
.cover-container,
.cover-grid,
.capabilities {
  margin: auto;
  max-width: 1800px;
  padding: 3rem;
}

.cover-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 110px auto 0 auto;
  padding: 6em 2em;
}

.cover-text {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  width: 55%;
  color: var(--white);
}

.cover-title {
  text-align: center;
  font-size: 40px;
}

.cover-paragraph {
  width: 65%;
  align-self: center;
  text-align: center;
  font-size: 20px;
}

.cover-attributes {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--white);
}

.cover-attribute-title,
.cover-attribute-list {
  width: 50%;
  min-width: 240px;
}

.cover-attributes::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #050a36ac;
}

.cover-attribute-title {
  padding: 1rem;
  display: flex;
  justify-content: flex-end;
}

.cover-attribute-title__text {
  padding: .8em;
  font-size: 2.7rem;
  line-height: 2.5rem;
}

.cover-attribute-list {
  padding: 2em;
  margin-top: 15rem;
  display: flex;
  flex-direction: column;
  gap: 1em;
  z-index: 10;
}

.cover-attribute-list__item {
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
}

.users-icon {
  width: 4em;
}

.item-text {
  font-size: 1.1rem;
}

.cover-background:nth-child(3) {
  max-width: 1800px;
  position: relative;
  margin: 0 auto 0 auto;
  background: 
              radial-gradient(circle at top right, rgb(20, 22, 39) 25%, transparent 50%),
              radial-gradient(circle at bottom left, rgb(20, 22, 39) 30%, rgba(14,19,145,1) 70%);
  }


.cover-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, max-content);
  row-gap: .5rem;
  color: var(--white);
}

.cover-grid-text {
  font-size: 1.4rem;
}

.cover-grid-text:first-child {
  grid-column: 1 / 7;
  grid-row: 1 / 2;
}

.cover-grid-image {
  width: 100%;
  height: 100%;
  min-height: 250px;
  min-width: 250px;
  grid-column: 2 / 6;
  grid-row: 2 / 4;
  object-fit: contain;
  filter: drop-shadow(7px 7px 5px var(--gradient-light-blue)) drop-shadow(-7px 7px 5px var(--gradient-light-blue)) drop-shadow(7px -7px 5px var(--gradient-light-blue)) drop-shadow(-7px -7px 5px var(--gradient-light-blue));
  -webkit-filter: drop-shadow(7px 7px 5px var(--gradient-light-blue)) drop-shadow(-7px 7px 5px var(--gradient-light-blue)) drop-shadow(7px -7px 5px var(--gradient-light-blue)) drop-shadow(-7px -7px 5px var(--gradient-light-blue));
}

.cover-grid-text:last-child {
  text-align: right;
  grid-column: 5 / 7;
  grid-row: 4 / 7;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: min-content;
}

.capabilities-text {
  padding: 1rem 1em;
  color: var(--green);
  font-size: 40px;
  line-height: 40px;
  grid-column: 1 / 5;
  grid-row: 1 / 2;
}

.capabilities-title {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;  
  grid-column: 5 / 7;
  grid-row: 1 / 3;
  padding: 1rem 1em;
}

.capabilities-elements {
  display: flex;
  flex-direction: column;
  row-gap: .1em;
  padding: 1em;
  grid-column: 5 / 7;
}

.capabilities-elements-img {
  padding: .5em;
  grid-column: 1 / 5;
  grid-row: 2 / 6;
  object-position: top left;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.capabilities-paragr-text {
  color: #006633;
  font-size: 17px;
}

.capabilities-paragr-feats {
  display: flex;
  column-gap: 1.5rem;
  margin-top: 2rem;
}

.capabilities-paragr-feats__item .item-text {
  font-size: 14px;
}

.capabilities-paragr-feats__item i {
  font-size: .6rem;
}

.colored-asterisk{
  color: #aa0000;
}

.colored-plus {
  color: var(--color-plus);
}

.item-visible {
  display: flex;
  justify-content: space-between;
}

.item-title,
.item-title + .item-chevron {
  color: var(--accordion-title-color);
}

.item-title {
  transition: color 300ms ease-in-out;
  -webkit-transition: color 300ms ease-in-out;
  -moz-transition: color 300ms ease-in-out;
  -ms-transition: color 300ms ease-in-out;
  -o-transition: color 300ms ease-in-out;
  cursor: pointer;
}

.capabilities-elements__item:hover .item-title,
.capabilities-elements__item:hover .item-title + .item-chevron {
  color: var(--header-color);
}

.item-title {
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
}

.item-visible i:not(.item-chevron){
  font-size: 8px;
  transform: translateY(-70%);
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
}

.item-chevron {
  width: 15px;
  height: 15px;
  cursor: pointer;
  font-size: 1.2rem;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transform-origin: center;
}

.item-chevron-up {
  transform: rotateZ(180deg);
  -webkit-transform: rotateZ(180deg);
  -moz-transform: rotateZ(180deg);
  -ms-transform: rotateZ(180deg);
  -o-transform: rotateZ(180deg);
}

.item-box {
  margin: 0;
  height: 0;
  overflow: hidden;
  transition: all 230ms ease-in-out;
  -webkit-transition: all 230ms ease-in-out;
  -moz-transition: all 230ms ease-in-out;
  -ms-transition: all 230ms ease-in-out;
  -o-transition: all 230ms ease-in-out;
  transition-delay: 70ms;
}

.item-invisible-text {
  color: var(--accordion-text-color);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 15px;
}

.item-invisible-img {
  display: none;
  margin-top: 1rem;
  width: 100%;
  object-fit: contain;
}

.capabilities-button {
  background-color: #2c29a6;
  text-decoration: none;
  padding: 6px 14px;
  color: var(--white);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  grid-column: 5 / 7;
  grid-row: 6 / 7;
  text-align: center;
  justify-self: left;
  margin: 1em;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.banner {
  margin: auto;
  max-width: 1800px;
  padding: 4em;
  background: 
            linear-gradient(45deg, var(--gradient-left-green), rgba(255,0,0,0) 25%),
            linear-gradient(135deg, var(--gradient-light-blue), rgba(0,0,255,0) 80%),
            linear-gradient(0deg, #111, rgba(0,255,0,0) 100%),
            linear-gradient(220deg, var(--gradient-right-green) 80%, rgba(0,0,255,0));
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 36px;
}

.banner-legend {
  color: var(--white);
  font-size: 2em;
  line-height: 1.3em;
  font-weight: 800;
  text-align: center;
  width: 65%;
}

.banner-button {
  text-decoration: none;
  background-color: #30a404;
  color: var(--white);
  padding: .3em 1em;
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  font-weight: 900;
  font-size: 22px;
}

.cards-introduction {
  margin: auto;
  color: #21014e;
  max-width: 1800px;
  padding: 3em;
}

.cards-introduction-title {
  font-size: 3rem;
  font-weight: 500;
}

.cards-introduction-title b {
  font-weight: 900;
}

.cards-introduction-text {
  font-size: 20px;
  line-height: 22px;
}

@media screen and (min-width: 1400px) {
  /*.cover-background:nth-child(3) {
    margin-bottom: 350px;
  } */
  .banner-legend {
    line-height: 2.2rem;
    font-size: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .cover-background:first-child::after {
    width: 100%;
    height: 70%;
    top: 53%;
    left: 0;
  }
  .cover-title {
    font-size: 40px;
  }
  .cover-paragraph {
    font-size: 25px;
  } 
  .cards-introduction-title {
    font-size: 2.5em;
  }
  
  .cards-introduction-text {
    font-size: 16px;
    line-height: 20px;
  }
  .header {
    padding-right: 1rem;
  }
  .users-icon {
    width: 3.5em;
  }
  .banner-legend {
    width: 80%;
  } 
}

@media screen and (max-width: 768px) {
  /* .cover-background {
    min-height: 70vh;
  } */
  .header-logo-img {
    margin-left: 2rem;
    width: 1.8em;
  }
  .cover-background:first-child::after {
    width: 100%;
    height: 50%;
    top: 67%;
    left: 0;
  }
  .cover-attributes::after {
    display: none;
  }
  .cover-container {
    padding: 3em;
  }
  .cover-grid,
  .capabilities {
    padding: 1rem;
  }
  .cover-attributes {
    padding: 0;
  }
  .cover-title {
    font-size: 25px;
  }
  
  .cover-paragraph {
    text-align: left;
    font-size: 16px;
    width: 90%;
  }

  .cover-text {
    width: 60%;
  }
  .cover-grid-text:last-child {
    grid-column: 4 / 8;
  }
  .cover-attribute-title {
    justify-content: flex-start;
  }
  .cover-attribute-title__text {
    font-size: 2rem;
    line-height: 2rem;
  }
  .cover-background:nth-child(2) {
    background: none;
  }
  .cover-attribute-title,
  .cover-attribute-list {
    width: 100%;
  }
  .cover-attribute-list {
    margin-top: 0;
  }
  .item-text {
    font-size: 1rem;
  }
  .users-icon {
    width: 3em;
  }
  .cover-attribute-list__item i {
    font-size: 2rem;
  }
  .cover-attributes {
    background-color: transparent;
  }
  .cover-attribute-title {
    min-height: 60vh;
    max-height: 768px;
    background: url(../images/accelerator/pexels-mikael.webp);
    background-size: cover;
    background-position: center;
  }
  .cover-attribute-list { 
    background-color: #08043c;
    padding: 3em;
  }
  .cover-grid-text {
    font-size: 1.2rem;
  }
  .capabilities-title,  
  .capabilities-paragr-feats  {
    row-gap: 1rem;
  }
  .capabilities-text {
    font-size: 25px;
    line-height: 25px;
  }
  .capabilities-paragr-text {
    font-size: 16px;
  }
  .capabilities-paragr-feats__item .item-text {
    font-size: 14px;
  }
  .users-icon {
    width: 2.5em;
  }
  .capabilities-title {
    grid-column: 1 / 7;
    grid-row: 2 / 3;
  }
  .capabilities-elements-img {
    grid-column: 1 / 4;
    grid-row: 3 / 7;
  }
  .capabilities-text {
    grid-column: 1 / 7;
  }
  .capabilities-elements {
    grid-column: 4 / 7;
  }
  .capabilities-button {
    grid-column: 4 / 7;
  }
  .banner {
    padding: 3em;
  }
  .banner-legend {
    width: 100%;
    font-size: 1.5em;
    line-height: 1.2em;
  }
  .banner-button {
    font-weight: 900;
    font-size: 18px;
  }
  /* .cover-background:nth-child(3)::after {
    bottom: -45%;
    height: 70%;
  } */
  .cards-introduction {
    padding: 1.5rem;
  }
  .cards-introduction-title {
    font-size: 1.3em;
  }
  .cards-introduction-text {
    font-size: 16px;
    line-height: 18px;
  }
  /* .card-title {
    font-size: 20px;
  }
  .card-container {
    padding: 1em;
    gap: 1em;
    justify-content: center;
    flex-wrap: wrap;
  }
  .card {
    width: 45%;
  } */
}

@media screen and (max-width: 480px) {
  .header-logo-img {
    margin-left: 0;
    width: 1.5em;
  }
  .cover-background:first-child::after {
    width: 100%;
    height: 35%;
    top: 77%;
    left: 0;
  }
  .cover-title {
    font-size: 20px;
    text-align: left;
  }
  .cover-grid-text {
    font-size: 1rem;
  }
  .cover-paragraph {
    font-size: 15px;
    width: 60%;
    align-self: flex-start;
    text-align: left;
  }
  .cover-text {
    width: 90%;
  }
  .cover-attribute-title__text {
    margin-top: 1.5em;
  }
  .cover-attribute-list {
    width: 100%;
  }
  .capabilities-text {
    font-size: 20px;
  }
  .capabilities-elements {
    grid-column: 1 / 7;
  }
  .item-invisible-img {
    display: block;
  }
  .capabilities-elements-img {
    display: none;
  }
  .capabilities-button {
    justify-self: center;
    grid-column: 1 / 7;
  }
  .banner {
    padding: 2em;
  }
  .banner-legend {
    font-size: 1.2em;
    line-height: 1.2em;
  }
  .banner-button {
    font-weight: 900;
    font-size: 15px;
  }
  .cover-grid-image {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}
  .cover-grid-text:last-child {
    grid-column: 3 / 7;
  }
  .cards-introduction-title {
    font-size: 1.1em;
  }
  .cards-introduction-text {
    font-size: 14px;
    line-height: 16px;
  }
  /* .card-title {
    font-size: 12px;
  }
  .card-container {
    padding: 1.5rem;
  }
  .card {
    width: 100%;
  }
  .card-title {
    font-size: 23px;
  } */
}