
/* Antonio Regular */
@font-face {
  font-family: 'Antonio';
  src: url('../fonts/Antonio-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Antonio Bold */
@font-face {
  font-family: 'Antonio';
  src: url('../fonts/Antonio-Bold.ttf') format('truetype');
  
  font-style: normal;
  font-display: swap;
}

/* Open Sans Regular */
@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Helvetica Neue - folosim nume generic si fallback; .ttc poate sa nu fie suportat de toate browserele */
@font-face {
  font-family: 'HelveticaNeue';
  src: url('../fonts/HelveticaNeue.otf') format('truetype'); /* .ttc e o colectie TrueType */
  font-weight: 400 700; /* poate contine mai multe greutati in colectie */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 700; /* pentru variable font: intervalul de greutăți */
  font-style: normal;
}
/* Exemple de utilizare in site */
:root {
  --font-sans: "OpenSans", "HelveticaNeue", "HelveticaNeue", Arial, sans-serif;
  --font-display: "OpenSans", "HelveticaNeue", "HelveticaNeue", Arial, sans-serif;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
}

p {
  font-family: var(--font-display);
  
}
h2{
    font-size: 47px;
    color: #431b13;
     font-family: "Oswald";
    font-weight: 400;
}
.bg-start{
    background: #fff;
}
.symptom-card.card, .gama-card  {
    border: 0;
    border-radius: 0;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background: transparent !important;
    box-shadow: none !important;
    margin: auto;
}     
.symptom-icon {
    width: 150px;
    height: auto;
    object-fit: contain;
}
.symptom-title{
    margin-top: 1rem;
    font-family: 'Antonio';
    color: #431b13;
    font-size: 38px;
    font-weight: 400;
}
.gama-card img{
    width: 280px;
    height: auto;
    object-fit: contain;
}  
.gama-title{
    margin-top: 1rem;
     font-family: "Oswald";
    font-weight: 400;
    color: #431b13;
    font-size: 25px;
    
}
.accordion-item{
    background: transparent;
}
.accordion-button {
    align-items: flex-start;
    color: #431b13;
    font-weight: 700;
    font-size: 18px;
    background: transparent!important;
    padding: 0!important;
}

.bg-img{
    background-image: url('../img/background.png');
    margin: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.bg-img a{
    color: #431b13;
    text-decoration: none;
}
.footer p{
    font-size: 14px;
    margin-bottom: 0.1rem;
    color:#431b13;
     font-family: "Oswald";
     font-weight: 300;
}
.accordion-button:after {
    order: -1;
    margin-left: 0;
    margin-right: 0.5em;
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    border: 0;
    box-shadow: none;
    color: #431b13;
    font-size: 18px;
    background: transparent!important;
    line-height: 2.2;
}

.accordion-button:not(.collapsed):after {
    background-image: url(../img/caret-up.svg) !important;
       
    top: 12px;
    transform: none;


}
 ul li{
    color: #431b13;
    font-size: 14px;
 }
.accordion-button::after {
    order: 1;
    background-image: url(../img/caret-down.svg) !important;
    background-repeat: no-repeat;
    background-size: 20px;
    content: "";
    flex-shrink: 0;
    height: 18px;
    margin-left: 5px;
    margin-right: 0.25rem;
    transition: transform 0.2s ease-in-out;
    width: 18px;
    margin-bottom: 0;
    background-position: center;
    top: 3px;
    position: relative;
}

@media (prefers-reduced-motion: reduce) {
    .accordion.right .accordion-button:before {
        transition: none;
    }
}

.accordion.right .accordion-button:after {
    display: none;
}

.accordion.right .accordion-collapse {
    margin-left: 2.5rem;
}
.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none!important;
}

