*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}


#tabcordion-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  background-color: #021727;
  color: white;
  /* padding-inline: 80px; */
  /* padding-block: 96px; */
}

.tabcordion-content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  justify-content: center;
  gap: 85px;
}

.tabcordion-left {
  /* flex: 7; */
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tabcordion-right {
  /* flex: 16; */
  width: 60%;
  display: flex;
  align-items: center;
}

.tabcordion-title {
  font-weight: bold;
  font-size: 48px;
  color: white;
  width: 100%;
  text-align: left;
  max-width: 1280px;
}

.tabcordion-item {
  width: 100%;
}

.tabcordion-item-header {
  font-size: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: #04243D;
  color: white;
  border-radius: 20px;
}
.active > .tabcordion-item-header {
  background: white;
  color: #151515;
}

.tabcordion-item-body {
  padding: 24px;
  font-size: 16px;
  display: none;
  animation: fadeSlideInDown 0.15s ease-in-out;
  color: white;
}

.learn_more_link {
  color: #F4F5F9;
  text-decoration: none;
  font-weight: 600;
}

.tabcordion-right > img {
  display: none;
}
.tabcordion-right > img.active {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

@keyframes fadeSlideInDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.active > .tabcordion-item-body {
  display: flex;
  flex-direction: column;
}

.active > .tabcordion-item-body > img {
  width: 100%;
  height: auto;
  display: none;
  border-radius: 10px;
}

@media all and (max-width: 767px) {
  #tabcordion-container {
    padding-inline: 16px;
    padding-block: 38px;
  }

  .tabcordion-right {
    display: none;
  }

  .tabcordion-title {
    font-size: 40px;
  }

  .active > .tabcordion-item-body > img {
    display: block;
  }
}

/*** Responsive Styles Tablet Only ***/
@media all and (min-width: 768px) and (max-width: 980px) {
  #tabcordion-container {
    padding-inline: 20px;
    padding-block: 52px;
  }

  .tabcordion-right {
    display: none;
  }

  .active > .tabcordion-item-body > img {
    display: block;
  }
}

/*** Responsive Styles Mobile  ***/
@media all and (max-width: 980px) {
 .tabcordion-left {
    width: 100%;
  }
  .learn_more_link {
    margin-bottom: 2rem;
  }
}


