/* visas container */
.visa-container {
    background-color: #ffffff;
}

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

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

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

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

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

.visa-container .visa-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;
}

.visa-container .visa-box .box-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.visa-container .visa-box .box-wrapper .box {
    padding: 20px;
    text-decoration: none;
    border: 1px solid #ededed;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.visa-container .visa-box .box-wrapper .box .heading {
    margin-bottom: 14px;
}

.visa-container .visa-box .box-wrapper .box .heading .count {
    min-height: 36px;
    min-width: 36px;
    max-height: 36px;
    max-width: 36px;
    background-color: #fff9ed;
    margin-right: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.visa-container .visa-box .box-wrapper .box .heading .count h1 {
    font-size: 18px;
    color: #f68620;
    font-weight: 600;
}

.visa-container .visa-box .box-wrapper .box .heading .title h1 {
    font-size: 18px;
    font-weight: 700;
    color: #040a15;
}

.visa-container .visa-box .box-wrapper .box .info p {
    color: #61656a;
    font-size: 14px;
    line-height: 24px;
}

.visa-container .visa-box .box-wrapper .box:hover {
    background-color: #1f4380;
}

.visa-container .visa-box .box-wrapper .box:hover .heading .count {
    background-color: rgba(255, 255, 255, 0.4);
}

.visa-container .visa-box .box-wrapper .box:hover .heading .count h1 {
    color: #ffffff;
}

.visa-container .visa-box .box-wrapper .box:hover .heading .title h1 {
    color: #ffffff;
}

.visa-container .visa-box .box-wrapper .box:hover .info p {
    color: #ffffff;
}

.visa-container .visa-box .note-box {
    background-color: #eff4fa;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.visa-container .visa-box .note-box p {
    line-height: 22px;
}

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

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

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

@media (max-width: 500px) {
    .visa-container .visa-box .heading h1 br {
        display: none;
    }
}
