@charset "UTF-8";
/**
 * Accordion v3.3.4
 * Lightweight and accessible accordion module created in pure Javascript
 * https://github.com/michu2k/Accordion
 *
 * Copyright (c) Michał Strumpf
 * Published under MIT License
 */
.accordion-container {
    width: 100%;
    max-width: 567px;
    margin: 0 auto auto auto;
    background-color: #0000003b;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    top: 40px;
}
.ac {
  margin-top: 8px;
  box-sizing: border-box;
}
.ac .ac-header {
  margin: 0;
  padding: 0;
}
.ac .ac-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    width: 100%;
    line-height: 64px;
    color: white;
    text-align: left;
    background-color: transparent;
    transition: color 0.25s ease;
    border-bottom: 1px solid #393939;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    transition: all .5s;
}
.ac .ac-trigger img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    transition: .5s;
    transform: translate(0);
}
.ac:hover .ac-trigger {
  color: #eb5d1c;
  border-bottom: 1px solid #eb5d1c;
}
.ac:hover .ac-trigger img, .ac .ac-trigger:focus img {
    transform: translateX(5px);
    transform: rotate(90deg);
}
.ac .ac-trigger:focus {
    color: #eb5d1c;
    border-bottom: 1px solid #eb5d1c;;
}
.ac .ac-panel {
  overflow: hidden;
  transition-property: height, visibility;
  transition-timing-function: ease;
  border-bottom: 1px solid #393939;
}
.ac .ac-panel .ac-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: white;
  padding: 24px 8px;
  margin: 0;
}
.ac.js-enabled .ac-panel {
  visibility: hidden;
}
.ac.is-active .ac-panel {
  visibility: visible;
}

@media screen and (max-width:480px) {
    .accordion-container {
        margin-bottom: 40px;
        top: 0;
    }
    .ac {
        margin-top: 0;
    }
    .ac .ac-trigger {
        font-size: 14px;
        line-height: 42px;
    }
    .ac .ac-trigger img {
        width: 17px;
        height: 17px;
    }
    .ac .ac-panel .ac-text {
        font-size: 12px;
        padding: 12px 8px;
    }
}