.text-description-dark {
    padding: 64px 0;
    position: relative;
}

.text-description-dark .column-wrapper {
    display: flex;
    gap: 64px;
    padding: 32px 0;
}

.text-description-dark .column-wrapper>* {
    width: 50%;
    text-align: left;
    flex: 1 auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text-description-dark .column-wrapper>*:first-child {
    width: 55%;
}

.text-description-dark .column-wrapper>*:first-child p {
    font-size: 20px;
    font-weight: 200;
}

.text-description-dark .column-wrapper>*:last-child {
    width: 45%;
}

.text-description-dark .column-wrapper * {
    color: #fff;
}

.text-description-dark .column-wrapper h1,
.text-description-dark .column-wrapper h2,
.text-description-dark .column-wrapper h3,
.text-description-dark .column-wrapper h4,
.text-description-dark .column-wrapper h5,
.text-description-dark .column-wrapper h6 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-description-dark .column-wrapper h1,
.text-description-dark .column-wrapper h2 {
    color: var(--Color-2);
}

.text-description-dark .btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
}

.text-description-dark hr {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: #003;
    width: 100%;
    color: transparent !important;
}

@media (max-width:1199px) {
    .text-description-dark {
        padding: 48px 0
    }
}

@media (max-width:991px) {

    .text-description-dark .column-wrapper {
        flex-wrap: wrap;
    }

    .text-description-dark .column-wrapper>*,
    .text-description-dark .column-wrapper>*:first-child,
    .text-description-dark .column-wrapper>*:last-child {
        width: 100%;
    }
}

@media (max-width:768px) {
    .text-description-dark {
        padding: 48px 0;
    }
}

@media (max-width:479px) {
    .text-description-dark .btn-wrapper .btn {
        width: 100%;
    }
}