main {
    background: var(--bg);
}

.small_link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 1rem 2.5rem;
    font-family: var(--normal_fonts);
}

.small_link a {
    text-decoration: none;
    color:black;
}


#hero-banner {
    height: 20rem;
    width: 95%;
    margin: 0 2.5rem;
    background-image: url('../PHOTOS/country/header_banner.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay_header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.header_content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    width: 100%;
    font-family: var(--normal_fonts);
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.header_content h1 {
    font-size: 2.5rem;
    /* line-height: 1.3; */
    /* margin-bottom: 1rem; */
}

.header_content h1 span {
    font-weight: 900;
    /* font-size:larger; */
}

.header_content p {
    font-size: 1.5rem;
    color: white;
    margin: 0.5rem;
}

.header_content a {
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    /* border-radius: 0.5rem; */
    background: var(--btn_bg);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.3s ease, background 0.2s linear;
}

.header_content a:hover {
    background: black;
    transform: scale(1.03);
}

.sub_heading {
    text-align: center;
}

/* margin: 0 1.5rem; */
#hero-banner img {
    z-index: 2;
    width: 7rem;
}

/* WHy Country */
#why_usa {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 3rem 0 1rem 0;

}

.short_dips {
    font-family: var(--normal_fonts);
    margin: .5rem 0;
    font-size: 1.2rem;
    padding: 0 3rem;
    text-align: center;
}

.why_this_boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    width: 80%;
    padding: 0 2rem;
    margin: 2.5rem 0 1rem 0;
}

.boxes {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    padding: 1rem 1.2rem;
    background: white;
    border-radius: 8px;
    width: 22rem;
    height: 9rem;
    cursor: context-menu;
    /* font-family: var(--normal_fonts); */
}

.boxes:hover {
    box-shadow: -6px -6px 32px #c5c5c5,
        6px 6px 32px #fbfbfb;
}

.title {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .7rem;
    font-family: var(--heading_fonts);
    font-size: 1.4rem;
    /* font-weight: 700; */
    color: var(--subheading_color);

}
/* .skorea_1st_box_title{
    padding:0 1rem;
}
.skorea_1st_box_dis{
    padding: 0;
} */



.why_this_boxes .boxes .title img {
    width: 2rem;
}

/* .why_this_boxes .boxes:nth-child(1) .title img {
    /* margin-left: -1rem;
    width: 3rem;
} */ 

 .discription {
    font-size: 1rem;
    line-height: 1.6rem;
    margin: .5rem 0;
    font-family: var(--normal_fonts);
}

.destinations {
    padding: 1rem 0 3rem 0;
}

.grid {
    margin-top: 2rem;
}

.grid .card {
    cursor: context-menu;
}

.overlay h3 {
    /* padding: 3.5rem 2.8rem;
    border:1px solid red; */
    text-align: center;
}

/*.grid .card:nth-child(5) .overlay h3{
    padding:3.5rem 2.5rem;
} */

@media screen and (max-width:968px) {
    .small_link {
        padding: 1rem 2rem;
    }

    #hero-banner {
        margin-bottom: 1rem;
        margin: 0 2rem;
    }

}


.required-docs {
    padding: 2rem 1rem;
    /* background-color: #f5f9fc; */
    text-align: center;
}

.required-docs h2 {
    font-family: var(--heading_fonts);
    margin-bottom: 2rem;
}

.doc-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.doc-item {
    width: 18rem;
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: var(--normal_fonts);
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.doc-item:hover {
    transform: translateY(-5px);
}

.doc-item i {
    font-size: 2rem;
    color: #e53935;
    margin-bottom: 0.5rem;
}

.doc-item p {
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
}

.apply-btn {
    margin-top: 2rem;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #e53935;
    color: white;
    text-decoration: none;
    font-family: var(--normal_fonts);
    transition: transform 0.3s ease, background 0.2s linear;

}

.apply-btn:hover {
    background: #000;
    transform: scale(1.03);

}




@media screen and (max-width:910px) {
    .why_this_boxes {
        margin: 3rem 0;
        width: 100%;
    }

    .short_dips, .discription {
        font-size: 1rem;
    }

    .boxes .dips {
        font-size: 12px;
    }

}

@media screen and (max-width:830px) {
    .small_link {
        padding: 1rem 1.5rem;
    }

    #hero-banner {
        /* width: 98%; */
        margin: 0 1.5rem;
        margin-bottom: 1rem;
    }

    .header_content h1 {
        font-size: 2rem;
    }

    .header_content p {
        font-size: 1.125rem;
    }

    .header_content a {
        font-size: .9rem;
    }

    .header_content h1 br,
    p br {
        display: none;
    }


}

@media screen and (max-width:768px) {
    boxes {
        width: 23rem;
    }

}

@media screen and (max-width:648px) {

    .small_link {
        padding: .5rem 1rem;
    }

    .small_link a {
        font-size: .9rem;
    }

    #hero-banner {
        width: 97%;
        margin: 0 1rem;
        margin-bottom: 2rem;
    }

}

@media screen and (max-width:595px) {
    .overlay_header {
        width: 100%;
    }

    #hero-banner {
        margin: 0;
        margin-bottom: 2rem;
        /* padding: 0 .5rem; */
        width: 100%;
    }
}

@media screen and (max-width:448px) {
    .title{
        font-size: 1.2rem;
    }

    .sub_heading {
        font-size: 1.4rem;

    }
    .short_dips {
        padding: 0 1rem;
        font-size: .8rem;
    }

    .discription{
        font-size:.8rem;
    }

}