﻿.accordion__title {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 1.6em;
    color: #3A3E50;
    line-height: 65px;
}


.backgroundIcon {
    color: #008DAB;
    font-family: 'Font Awesome 6 Pro';
}

.mainIconColor {
    color:white;
}

.accordion__list__item {
    padding: 19px 47px 19px 43px;
    border: 2px solid #B3B3B3;
    border-radius:2px;
    margin-bottom: 33px;
}

.accordion__list__item__control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.accordion__list__item__control__title {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 38px;
    color: #3A3E50;
}

.accordion__list__item__control__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #9D48A9;
}

.accordion__list__item__control__icon--rotate {
    transform: rotate(180deg);
}

.accordion__list__item__content {
    max-height: 0;
    overflow: hidden;
    will-change: height;
    transition: all 0.3s ease-in-out;
}

.content-accordion__title {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #A4A0A0;
    line-height: 31px;
    margin: 33px 0 34px;
}

.content-accordion__columns {
    display: flex;
    gap: 0 63px;
}

.content-accordion__columns__column {
    display: flex;
    flex-direction: column;
}

.content-accordion__columns__column__text {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size:0.8em;
    color: #3A3E50;
    line-height: 41px;
}


.icon {
    background-image: url(./../images/icons/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
}

