/***********************
    TOP PAGE dk
************************/
.page_hero{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}
.dk_menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
}
.dk_menu{
    width: 15%;
}
.page_content{
    width: 85%;
}
.page_section_one:not(.youTube_row){
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
.site_title_flex{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
.site_title{
    margin-bottom: 1rem;
}
.page_section_one  .title_connection{
    padding: 0;
    width: fit-content
}
.page_description{
    max-width: 800px;
    width: 100%;
    text-align: justify;
    font-size: 18px;
    font-weight: 300;
    line-height: 2rem;
}
.space{
    height: 1rem;
    width: 100%;
}
.section_title{
    text-align: center;
}
/***********************
    MANUAL CARDS
************************/
.manual_row{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
}
.manual_col{
    width: calc((100% - 2rem * 2) / 3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 6rem 4rem;
    background-color: var(--logo);
    border: 5px solid var(--black_logo);
    border-radius: 30px;
    box-shadow: var(--color_sdw);
    transition: all 250ms linear;

}
.manual_col h3{
    color: var(--white);
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.8rem;
    text-transform: uppercase;
}
.manual_col svg{
    width: 130px;
}
/* .manual_col svg path{
    transition: all 250ms linear;
} */
.manual_col:hover{
    border: 5px solid var(--green);
}
/* .manual_col:hover svg path{
    stroke: var(--green);
} */
.manual_col:active{
    box-shadow: none;
}
/*** COMING SOON ***/
.manual_col.soon{
    background-color: var(--white);
    border: 5px solid var(--tab_stroke);
    box-shadow: none;
    pointer-events: none;
}
.manual_col.soon span{
    color: var(--red);
    text-align: center;
    text-shadow: 0px 4px 4px rgba(127, 127, 254, 0.25);
    font-family: var(--txt_title);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.manual_col.soon h3{
    color: var(--tab_stroke);
}
.manual_col.soon svg path{
    stroke: var(--tab_stroke);
}
/***********************
    YOU TUBE
************************/
.youTube_row{
    width: calc(100vw - 8rem);
    margin: 10rem auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.youTube_row h2{
    color: var(--violet);
    font-size: 72px;
    font-weight: 600;
}
.youTube_row h3{
    margin-top: 1rem;
    font-size: 24px;
    font-weight: 400;
}
.youTube_row a i{
    margin-top: 2rem;
    color: var(--red);
    font-size: 120px;
    transition: all .3s linear;
}
.youTube_row a:hover i{
    color: var(--green);
}
@media screen and (max-width: 1410px){
    .manual_row{
        gap: 1rem;
    }
    .manual_col{
        width: calc((100% - 1rem * 2) / 3);
        gap: 2rem;
        padding: 5rem 4rem;
    }
    .manual_col h3{
        font-size: 28px;
    }
    .manual_col svg{
        width: 120px;
    }

}
@media screen and (max-width: 1210px){
    .page_description{
        max-width: 700px;
        font-size: 1rem;
        line-height: 1.8rem;
    }
    .manual_col{
        width: calc((100% - 1rem * 2) / 3);
        gap: 2rem;
        padding: 4rem 2rem;
    }
    .manual_col h3{
        font-size: 26px;
    }
    .manual_col svg{
        width: 110px;
    }
}
@media screen and (max-width: 1160px){
    .dk_menu{
        width: 25%;
    }
    .page_content{
        width: 75%;
    }
}
@media screen and (max-width: 1130px){
    .page_hero{
        flex-direction: column;
        align-items: center;
    }
    .dk_menu{
        width: 100%;
    }
    .page_content{
        width: 100%;
    }
    .page_section_one:not(.youTube_row){
        align-items: center;
        margin-top: 1rem;
    }
    .youTube_row{
        width: 100%;
    }
    .logo_dk{
        display: none;
    }
    .page_description{
        text-align: center;
        max-width: 600px;
        font-size: 18px;
        line-height: 2rem;
    }
    .manual_col{
        width: calc((100% - 1rem * 2) / 3);
        gap: 1.5rem;
        padding: 4rem 2rem;
    }
    .manual_col h3{
        font-size: 28px;
    }
    .manual_col svg{
        width: 130px;
    }
}
@media screen and (max-width: 850px){
    .page_description{
        font-size: 1rem;
        line-height: 1.8rem;
    }
    .manual_col{
        width: calc((100% - 1rem * 2) / 3);
        gap: 1.5rem;
        padding: 2rem;
    }
    .manual_col h3{
        font-size: 24px;
    }
    .manual_col svg{
        width: 100px;
    }
    .youTube_row h2{
        font-size: 62px;
        text-align: center;
    }
    .youTube_row h3{
        margin-top: 0;
        font-size: 18px;
        text-align: center;
    }
    .youTube_row a i{
        margin-top: 1rem;
        font-size: 120px;
    }
}
@media screen and (max-width: 720px){
    .manual_col h3{
        font-size: 20px;
    }
    .manual_col svg{
        width: 80px;
    }
    .youTube_row h2{
        font-size: 60px;
    }
}
@media screen and (max-width: 655px){
    .page_description{
        max-width: 550px;
    }
    .manual_col h3{
        font-size: 18px;
    }
    .manual_col svg{
        width: 50px;
    }
    .youTube_row h2{
        font-size: 58px;
    }
    .youTube_row a i{
        font-size: 100px;
    }
}
@media screen and (max-width: 622px){
    .manual_row{
        flex-wrap: wrap;
        gap: 2rem;
    }
    .manual_col{
        width: calc((100% - 2rem) / 2);
        padding: 3rem 1rem;
    }
    .manual_col h3{
        font-size: 22px;
    }
    .manual_col svg{
        width: 80px;
    }
    .youTube_row h2{
        font-size: 52px;
        line-height: 4rem;
        width: 90%;
    }
    .youTube_row h3{
        font-size: 16px;
        line-height: 1.5rem;
        width: 90%;
    }
}
@media screen and (max-width: 470px){
    .container{
        width: 95%;
    }
    .page_description{
        max-width: 350px;
        line-height: 1.5rem;
        text-align: justify;
    }
    .manual_row{
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .manual_col{
        width: 70%;
        padding: 3rem 1rem;
        gap: 2rem;
    }
    .section_title{
        margin: 1rem auto;
    }
    .manual_col h3{
        font-size: 24px;
    }
    .manual_col svg{
        width: 100px;
    }
    .youTube_row{
        margin: 5rem auto;
    }
    .youTube_row h2{
        font-size: 58px;
        line-height: 1.5;
    }
    .section_title h2 {
        font-size: 2rem;
        line-height: 3.4rem;
    }
}
@media screen and (max-width: 390px){
    .page_description{
        max-width: 300px;
    }
    .manual_col h3{
        font-size: 20px;
    }
    .manual_col svg{
        width: 80px;
    }
    .youTube_row h2{
        font-size: 48px;
        line-height: 3.5rem;
        width: 100%;
    }
}
@media screen and (max-width: 320px){
    .page_description{
        max-width: 250px;
        font-size: .85rem;
        text-align: center;
    }
    .page_section_one:not(.youTube_row){
        margin-top: 0;
    }
    .site_title_flex{
        gap: 0;
    }
    .manual_col{
        width: 80%;
        padding: 2.5rem 1rem;
    }
    .youTube_row h2{
        font-size: 45px;
    }
    .youTube_row h3{
        font-size: .85rem;
    }
}