@font-face {
    font-family: 'Futura Condensed';
    src: url('Futura Condensed.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Bk BT';
    src: url('futubk.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Bk BT';
    src: url('futubk.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

/* body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color:rgba(33, 33, 33, 1);
    color: #ffffff;
    padding: 20px;
    min-height: 100vh;
} */

.ft-container {
    max-width: 1716px;
    margin: 0 auto;
    padding: 0 20px;
}

.ft-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 57px;
    flex-wrap: wrap;
    justify-content: center;
}

.ft-tab-button {
    padding: 20px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid rgba(255, 72, 20, 1);
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Futura Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 20.83px;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.ft-tab-button:hover {
    background-color: rgba(255, 72, 20, 1);
}

.ft-tab-button.active {
    background-color: rgba(255, 72, 20, 1);
    border-color: rgba(255, 72, 20, 1);
    color: #ffffff;
}

.ft-category-title {

    margin-bottom: 40px;
    color: #ffffff;
    font-family: 'Futura Condensed', sans-serif;
font-weight: 700;
font-size: 36px;
line-height: 20.83px;
letter-spacing: 0px;
text-transform: uppercase;

}

.ft-category-content {
    display: none;
    animation: ft-fadeIn 0.3s ease;
}

.ft-category-content.active {
    display: block;
}

@keyframes ft-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.ft-accordion-item {
    /* background-color: #1a1a1a; */
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ft-accordion-header {
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease, padding 0.3s ease;
}

.ft-accordion-header:hover .ft-question {
    color: rgba(255, 144, 22, 1);
}

.ft-accordion-item.active .ft-accordion-header {
    background-color: rgba(52, 52, 52, 1);
	padding:50px 50px 30px 50px;
}

.ft-accordion-item.active .ft-accordion-header .ft-question {
    color:rgba(255, 144, 22, 1);
}

.ft-question {
    font-family: 'Futura Bk BT', sans-serif;
    flex: 1;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    line-height: 29.17px;
    letter-spacing: 0px;
    color: #ffffff;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ft-icon {
    font-size: 28px;
    font-weight: 300;
    color: #ffffff;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    flex-shrink: 0;
}

.ft-accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: rgba(52, 52, 52, 1);
}

.ft-accordion-content > div {
    overflow: hidden;
    min-height: 0;
}

.ft-accordion-content.active {
    grid-template-rows: 1fr;
}

.ft-accordion-content-inner {
    padding: 0;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ft-accordion-content.active .ft-accordion-content-inner {
    padding: 0 50px 50px 50px;
}

.ft-accordion-content p {
    font-family: 'Futura Bk BT', sans-serif;
    color: #ffffff;
    padding-top: 10px;
	font-weight: 400;
	font-size: 22px;
	line-height: 35px;
	letter-spacing: 1px;
	max-width: 1338px;
	width: 100%;
	padding-top:0;
}
@media (max-width: 991px) {

    .ft-accordion-content.active .ft-accordion-content-inner {
        padding: 0 15px 15px 15px;
    }
}
@media (max-width: 768px) {
    .ft-tabs {
        gap: 10px;
    }

    .ft-tab-button {
        padding: 10px 16px !important;
        font-size: 12px;
    }

    .ft-category-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .ft-accordion-header {
        padding: 15px !important;
    }

    .ft-question {
        font-size: 18px;
        line-height: 20px;
    }
    .ft-accordion-content p {
        font-size: 14px;
        line-height: 18px;
    }
    .ft-icon {
        font-size: 24px;
        width: 24px;
        height: 24px;
        line-height: 24px;
    }
}
