.tdp_hero_section {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.tdp_hero_section .tdp_hero_container {
    width: 90%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 20px;
}

.tdp_hero_section .tdp_hero_container .col {
    flex: 1;
}

.col .pic_unt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
}

.col .pic_unt p a {
    border-bottom: 2px dotted var(--marker-color);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.col .pic_unt p a:hover {
    color: var(--marker-color);
}

.tdp_hero_section .tdp_hero_container .col .img_container {
    width: 85%;
    height: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    margin-left: 50px;
}

.tdp_hero_section .tdp_hero_container .col .img_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    cursor: pointer;
}

.tdp_hero_section .tdp_hero_container .col .img_container:hover img {
    scale: 1.1;
    rotate: 3deg;
}

.tdp_hero_section .tdp_hero_container .col .section_header_container {
    width: 100%;
    /* padding: 10px 0; */
}

.tdp_hero_section .tdp_hero_container .col .section_header_container .sub_head {
    color: var(--marker-color);
}

.tdp_hero_section .tdp_hero_container .col .section_header_container .main_head {
    color: var(--light-color);
    font-size: clamp(1.2em, 3vw, 3em);
}

.tdp_hero_section .tdp_hero_container .col .content_container {
    color: var(--light-color-2);
    font-size: 14px;
    padding: 10px 10px;
}

.tdp_hero_section .tdp_hero_container .col p {
    color: var(--light-color-2);
    font-size: 14px;
    padding: 10px 10px;
}


.tdp_hero_section .tdp_hero_container .col .content_container p {
    padding: 10px 0;
}

.tdp_hero_section .tdp_hero_container .col .content_container .list_content_container li {
    list-style: none;
    padding: 10px 0;
}

.tdp_hero_section .tdp_hero_container .col .content_container .list_content_container li i {
    padding: 0 10px;
    color: var(--marker-color);
}

.content_container p a,
.content_container li a {
    border-bottom: 2px dotted var(--marker-color);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.content_container p a:hover,
.content_container li a:hover {
    color: var(--marker-color);
}

.content_container .btn_print {
    padding: 10px 20px;
    color: var(--light-color);
    background: var(--marker-color);
    border: 2px solid var(--marker-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    cursor: pointer;
    min-width: 155px;
}

a .btn_print {
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

a:hover .btn_print {
    background: var(--dark-color);
}

.footer_section .footer_container .col .handmade p {
    font-size: 14px;
    color: var(--light-color);
}

.footer_section .footer_container .col .handmade p i {
    color: var(--marker-color);
}

/* LeSch MAGIC */

@media (max-width:991px) {
    .tdp_hero_section .tdp_hero_container {
        flex-wrap: wrap;
    }

    .tdp_hero_section .tdp_hero_container .col {
        flex: unset;
        width: 100%;
    }

    .tdp_hero_section .tdp_hero_container .col .img_container {
        margin: 0 auto 2rem auto;
    }
}