

.accordion {
    max-width: 650px;
    background: #FFF;
    margin: auto;
}
.accordion .accordion-content{
    margin: 10px auto;
    border-radius: 4px;
    background: #14dcff15;
    border: 1px solid #14bcff;
    overflow: hidden;
}
.accordion-content:nth-child(2){
    background-color: #ffbc1415;
    border-color: #ff9a3df0;
}
.accordion-content:nth-child(3){
    background-color: #f1090923;
    border-color: #ff431499;
}
.accordion-content:nth-child(4){
    background-color: #ff2f1415;
    border-color: #ff5a14;
}
.accordion-content.open{
    padding-bottom: auto;
}
.accordion-content header{
    display: flex;
    min-height: 50px;
    padding: 0 15px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s linear;
}
.accordion-content.open header{
    min-height: 40px;
}
.accordion-content header .title{
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}
.accordion-content header i{
    font-size: 15px;
    color: #000000;
}
.accordion-content .description{
    height: 0;
    font-size: 12px;
    color: #333;
    font-weight: 400;
    padding: 0 15px;
    transition: all 0.2s linear;
}

.dupont {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.dupont .h1 {
    font-size: 10px;
    justify-self: center;
    align-items: center;
}
.home__icon {
    width: 160px;
    display: flex;
}
.home_icon {
    width: 160px;
    display: flex;
    animation-name: logoAnimation;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-delay: 1;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: initial;
}

@keyframes logoAnimation {
    100% {
      opacity: 1;
      transform: rotateY(360deg);}
  }

  /* Popup container - can be anything you want */
.popup {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #383837;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 9px 0;
  position: absolute;
  z-index: 1;
  bottom: 70%;
  left: 0;
  margin-left: 0;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #383837 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}