* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #101010;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: #999;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.ds_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}


.ds_section {
    padding: 80px 0;
}

.ds_section_center {
    text-align: center;
}

img {
    display: block;
    max-width: 100%;
}

.ds_subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    color: #c5a47e;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 8px;
    display: inline-block;
}

.ds_title {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 48px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.ds_title span {
    color: #c5a47e;
    font-weight: 300;
}

.ds_text {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: #999;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 28px;
}


.ds_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #c5a47e;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.ds_btn:hover {
    background-color: #dab88f;
    transform: translateY(-2px);
    color: #101010;
}


.ds_block {
    background-color: #1b1b1b;
    border-radius: 20px;
    padding: 40px 32px;
    transition: transform 0.25s ease;
}


.ds_header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(16, 16, 16, 0.7);
    backdrop-filter: blur(8px);
}

.ds_header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    flex-wrap: wrap;
}

.ds_logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.ds_logo img {
    height: 42px;
    width: auto;
}

.ds_brand {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 2px;
    color: #fff;
}


.ds_nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.ds_nav a {
    color: #fff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.ds_nav a:hover {
    color: #c5a47e;
}

.ds_nav .ds_btn_header {
    background: #c5a47e;
    padding: 8px 24px;
    border-radius: 40px;
    color: #101010;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

.ds_nav .ds_btn_header:hover {
    background: #fff;
    color: #101010;
}


.ds_mobile_toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
}


.ds_banner {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7)), url('../img/hero.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.ds_banner_content {
    max-width: 700px;
}

.ds_banner_content .ds_subtitle {
    font-size: 18px;
}

.ds_banner_content .ds_title {
    font-size: 70px;
    margin-bottom: 20px;
}


.ds_about_grid {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.ds_about_left {
    flex: 1.2;
}

.ds_about_right {
    flex: 1;
}

.ds_about_img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 500px;
    background: #2a2a2a;
}


.ds_services_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.ds_service_item {
    background: #1b1b1b;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
}

.ds_service_item:hover {
    transform: translateY(-6px);
    background: #252525;
}

.ds_icon_circle {
    width: 60px;
    height: 60px;
    background-color: #c5a47e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.ds_icon_circle i {
    font-size: 32px;
    color: #101010;
}

.ds_service_item h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
    font-size: 24px;
}

.ds_service_item p {
    font-size: 15px;
    color: #aaa;
}


.ds_cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../img/cta.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}

.ds_cta .ds_title {
    color: #fff;
}

.ds_cta .ds_text {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ddd;
}


.ds_projects_slider {
    margin: 60px 0 40px;
    overflow: hidden;
}

.ds_slide_item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin: 0 15px;
    transition: 0.2s;
}

.ds_slide_item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.ds_slide_caption {
    position: absolute;
    bottom: 24px;
    left: 20px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent);
    padding: 12px 24px;
    border-radius: 40px;
    backdrop-filter: blur(5px);
}

.ds_slide_caption span {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 18px;
    text-transform: uppercase;
}


.slick-center .ds_slide_item {
    transform: scale(1.02);
    transition: all 0.3s;
}

.slick-prev:before,
.slick-next:before {
    color: #c5a47e;
    font-size: 32px;
}


.ds_footer {
    background: #0c0c0c;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ds_footer_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.ds_footer_col {
    flex: 1;
    min-width: 180px;
}

.ds_footer_logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ds_footer_logo img {
    height: 45px;
}

.ds_footer_logo span {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #fff;
}

.ds_footer_text {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.ds_footer_col h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 18px;
}

.ds_footer_col ul {
    list-style: none;
}

.ds_footer_col ul li {
    margin-bottom: 12px;
}

.ds_footer_col ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.ds_footer_col ul li a:hover {
    color: #c5a47e;
}

.ds_footer_bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: #666;
}

.ds_footer_links {
    display: flex;
    gap: 24px;
}

.ds_footer_links a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
}

.ds_footer_links a:hover {
    color: #c5a47e;
}




.ds_contact_banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../img/bread.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
    margin-top: 0;
}

.ds_breadcrumbs {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: #999;
    font-size: 16px;
}

.ds_breadcrumbs a {
    color: #c5a47e;
    text-decoration: none;
    transition: color 0.2s;
}

.ds_breadcrumbs a:hover {
    color: #fff;
}

.ds_separator {
    margin: 0 8px;
    color: #666;
}


.ds_contact_info {
    padding: 100px 0 60px;
}

.ds_contact_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.ds_contact_card {
    background: #1b1b1b;
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.ds_contact_card:hover {
    transform: translateY(-8px);
    background: #252525;
}

.ds_contact_icon {
    width: 70px;
    height: 70px;
    background: #c5a47e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.ds_contact_icon i {
    font-size: 32px;
    color: #101010;
}

.ds_contact_card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    color: #fff;
    font-size: 24px;
    margin-bottom: 16px;
}

.ds_contact_card a,
.ds_contact_card p {
    color: #999;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s;
    line-height: 1.5;
}

.ds_contact_card a:hover {
    color: #c5a47e;
}


.ds_contact_form_section {
    padding: 60px 0 120px;
}

.ds_form_wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #1b1b1b;
    border-radius: 20px;
    padding: 60px 50px;
}

.ds_contact_form {
    margin-top: 40px;
}

.ds_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.ds_form_group {
    margin-bottom: 20px;
}

.ds_form_group input,
.ds_form_group textarea {
    width: 100%;
    padding: 16px 20px;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    transition: border-color 0.2s;
}

.ds_form_group input:focus,
.ds_form_group textarea:focus {
    outline: none;
    border-color: #c5a47e;
}

.ds_form_group input::placeholder,
.ds_form_group textarea::placeholder {
    color: #666;
}

.ds_form_submit {
    text-align: center;
    margin-top: 20px;
}

.ds_form_submit .ds_btn {
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 14px 40px;
}


.ds_popup_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.ds_popup_overlay.active {
    display: flex;
}

.ds_popup_content {
    background: #1b1b1b;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    animation: ds_popupFadeIn 0.3s ease;
}

@keyframes ds_popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ds_popup_icon {
    width: 70px;
    height: 70px;
    background: #c5a47e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: #101010;
    font-weight: bold;
}

.ds_popup_content h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    color: #fff;
    font-size: 28px;
    margin-bottom: 16px;
}

.ds_popup_content p {
    color: #999;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}


@media (max-width: 992px) {
    .ds_contact_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ds_contact_banner {
        padding: 140px 0 90px;
    }

    .ds_contact_grid {
        grid-template-columns: 1fr;
    }

    .ds_form_row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ds_form_wrapper {
        padding: 40px 25px;
    }
}

.ds_about_banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../img/bread.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
}

.ds_banner_left .ds_title {
    margin-bottom: 20px;
}

.ds_breadcrumbs {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: #999;
    font-size: 16px;
}

.ds_breadcrumbs a {
    color: #c5a47e;
    text-decoration: none;
    transition: color 0.2s;
}

.ds_breadcrumbs a:hover {
    color: #fff;
}

.ds_separator {
    margin: 0 8px;
    color: #666;
}


.ds_features {
    padding: 100px 0 60px;
}

.ds_features_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ds_feature_item {
    background: #1b1b1b;
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.ds_feature_item:hover {
    transform: translateY(-8px);
    background: #252525;
}

.ds_feature_icon {
    width: 70px;
    height: 70px;
    background: #c5a47e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.ds_feature_icon i {
    font-size: 32px;
    color: #101010;
}

.ds_feature_item h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    color: #fff;
    font-size: 24px;
    margin-bottom: 16px;
}

.ds_feature_item p {
    color: #999;
    font-size: 16px;
    line-height: 1.6;
}


.ds_stats {
    padding: 40px 0 80px;
}

.ds_stats_grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1b1b1b;
    border-radius: 20px;
    padding: 60px 40px;
}

.ds_stat_item {
    text-align: center;
    flex: 1;
}

.ds_stat_number {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 48px;
    color: #c5a47e;
    margin-bottom: 12px;
}

.ds_stat_label {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}

.ds_stat_divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}


.ds_about_content {
    padding: 40px 0 120px;
}

.ds_about_text_wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.ds_about_text_wrapper .ds_text {
    font-size: 18px;
    margin-bottom: 28px;
    line-height: 1.8;
}


@media (max-width: 992px) {
    .ds_features_grid {
        gap: 20px;
    }

    .ds_feature_item {
        padding: 35px 25px;
    }

    .ds_stats_grid {
        flex-wrap: wrap;
        gap: 30px;
        padding: 40px 30px;
    }

    .ds_stat_divider {
        display: none;
    }

    .ds_stat_item {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .ds_about_banner {
        padding: 140px 0 90px;
    }

    .ds_features_grid {
        grid-template-columns: 1fr;
    }

    .ds_features {
        padding: 60px 0 40px;
    }

    .ds_stats_grid {
        flex-direction: column;
    }

    .ds_stat_item {
        width: 100%;
    }

    .ds_about_content {
        padding: 20px 0 80px;
    }

    .ds_about_text_wrapper .ds_text {
        font-size: 16px;
    }
}


.ds_legal_banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../img/bread.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
}

.ds_legal_content {
    padding: 80px 0 120px;
}

.ds_legal_wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #1b1b1b;
    padding: 60px 70px;
}

.ds_legal_section {
    margin-bottom: 48px;
}

.ds_legal_section:last-child {
    margin-bottom: 0;
}

.ds_legal_section h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(197, 164, 126, 0.3);
}

.ds_legal_section h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 22px;
    color: #c5a47e;
    margin: 24px 0 16px;
}

.ds_legal_section p {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: #999;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.ds_legal_section ul,
.ds_legal_section ol {
    margin: 18px 0 18px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: #999;
    font-size: 16px;
    line-height: 1.8;
}

.ds_legal_section li {
    margin-bottom: 10px;
}

.ds_legal_section strong {
    color: #c5a47e;
    font-weight: 300;
}

.ds_legal_date {
    background: rgba(197, 164, 126, 0.1);
    padding: 20px 30px;
    margin-bottom: 40px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: #fff;
    font-size: 16px;
}

.ds_legal_contacts {
    background: #101010;
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
}

.ds_legal_contacts p {
    margin-bottom: 12px;
}

.ds_legal_contacts a {
    color: #c5a47e;
    text-decoration: none;
    transition: color 0.2s;
}

.ds_legal_contacts a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .ds_legal_banner {
        padding: 140px 0 90px;
    }

    .ds_legal_wrapper {
        padding: 35px 25px;
    }

    .ds_legal_section h2 {
        font-size: 24px;
    }

    .ds_legal_section h3 {
        font-size: 20px;
    }
}

.ds_services_banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('../img/bread.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
}


.ds_services_page {
    padding: 100px 0 120px;
}

.ds_services_intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}


.ds_services_page_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 70px;
}

.ds_service_page_item {
    background: #1b1b1b;
    padding: 48px 40px;
    transition: transform 0.3s, background 0.3s;
}

.ds_service_page_item:hover {
    transform: translateY(-6px);
    background: #252525;
}

.ds_service_page_icon {
    width: 70px;
    height: 70px;
    background: #c5a47e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.ds_service_page_icon i {
    font-size: 34px;
    color: #101010;
}

.ds_service_page_item h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 26px;
    color: #fff;
    margin-bottom: 18px;
}

.ds_service_page_item > p {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.ds_service_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ds_service_list li {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: #999;
    font-size: 15px;
    line-height: 1.7;
    padding-left: 22px;
    position: relative;
    margin-bottom: 12px;
}

.ds_service_list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c5a47e;
    font-weight: 500;
    font-size: 14px;
}


.ds_services_cta {
    text-align: right;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.ds_services_cta p {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: #fff;
    font-size: 20px;
    margin: 0;
}

.ds_services_cta .ds_btn {
    font-size: 16px;
    padding: 14px 38px;
}


@media (max-width: 992px) {
    .ds_services_page_grid {
        gap: 30px;
    }
    
    .ds_service_page_item {
        padding: 38px 30px;
    }
    
    .ds_service_page_item h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .ds_services_banner {
        padding: 140px 0 90px;
    }
    
    .ds_services_page {
        padding: 60px 0 80px;
    }
    
    .ds_services_page_grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ds_service_page_item {
        padding: 32px 25px;
    }
    
    .ds_services_cta {
        flex-direction: column;
        text-align: center;
    }
    
    .ds_services_cta p {
        font-size: 18px;
        text-align: center;
    }
    
    .ds_services_cta .ds_btn {
        width: 100%;
        text-align: center;
    }
}
































@media (max-width: 992px) {
    .ds_services_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ds_about_grid {
        flex-direction: column;
    }

    .ds_title {
        font-size: 38px;
    }

    .ds_banner_content .ds_title {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .ds_mobile_toggle {
        display: block;
    }

    .ds_nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: #111;
        flex-direction: column;
        padding: 100px 40px;
        gap: 28px;
        transition: left 0.3s ease;
        z-index: 200;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .ds_nav.active {
        left: 0;
    }

    .ds_nav a {
        font-size: 20px;
    }

    .ds_overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 150;
        display: none;
    }

    .ds_overlay.active {
        display: block;
    }

    .ds_services_grid {
        grid-template-columns: 1fr;
    }

    .ds_footer_grid {
        flex-direction: column;
        gap: 32px;
    }

    .ds_footer_bottom {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }

    .ds_banner_content .ds_title {
        font-size: 42px;
    }
}

@media(max-width: 550px) {
    .ds_section {
        padding: 50px 0;
    }
}