.country-container {
    background-color: #ffffff;
}

.country-container .country-box .heading h2 {
    position: relative;
    color: #f68620;
    font-size: 12px;
    font-weight: 500;
    margin-left: 70px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.country-container .country-box .heading h2::before {
    content: "";
    position: absolute;
    top: calc(50% - 1.5px);
    left: -60px;
    width: 50px;
    height: 1px;
    background-color: #f28135;
}

.country-container .country-box .heading h1 {
    font-size: 28px;
}

.country-container .country-box .heading p {
    color: #61656a;
    font-size: 14px;
}

.country-container .country-box .img-box {
    width: 100%;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.country-container .country-box .img-box img {
    width: 100%;
    max-height: 390px;
    object-fit: cover;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.country-container .country-box .box-wrapper .heading .title h1 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: #f68620;
}

.country-container .country-box .box-wrapper .heading .info p {
    font-size: 16px;
    line-height: 22px;
}

.country-container .country-box .box-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.country-container .country-box .box-wrapper .box {
    background-color: #eff4fa;
    padding: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.country-container .country-box .box-wrapper .box .list {
    padding: 10px 0 10px 20px;
}

.country-container .country-box .box-wrapper .box .list .title {
    margin-right: 10px;
}

.country-container .country-box .box-wrapper .box .list .title h1 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f4380;
}

.country-container .country-box .box-wrapper .box .list .info p {
    font-size: 14px;
    line-height: 22px;
}

/* responsive  */
@media (max-width: 1023px) {
    .country-container .country-box .box-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .visa-container .visa-box .heading h1 {
        font-size: 26px;
    }
    .visa-container .visa-box .heading p br {
        display: none;
    }
}

@media (max-width: 650px) {
    .visa-container .visa-box .heading h1 br {
        display: none;
    }
    .visa-container .visa-box .img-box {
        height: 200px;
    }
    .visa-container .visa-box .img-box img {
        height: 100%;
        object-fit: cover;
    }
}
