:root {
    --theme1:#d71921;
    /* --theme1:#FF7F3E; */
}

body,
html {
    font-family: "Nunito Sans", sans-serif !important; 
    scroll-behavior: smooth;
    /*overflow-x: hidden;*/
}

@media (max-width:576px){
    .container{
        padding-inline: 16px;
    }
}


/****** common things start *****/
.common-gap {
    margin-top: 45px;
}
.common-padding {
    padding-top: 40px;
    padding-bottom: 48px;
}
@media (min-width:1200px){
    .container {
        max-width: 1190px !important;
    }
}
.heading-main {
    padding-bottom: 12px;
}
.heading-main::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width:100%;
    bottom: 0;
    border-radius: 8px;
    background-color: #dddddd;
}
.heading-main .heading {
    font-size: 26px;
    margin-bottom: 0;
    font-weight: 700;
}
.heading-main .subheading {
    padding-block: 4px;
    font-weight: 500;
}
.whatsapp-btn {
    height: 60px;
    width: 60px;
    left: 20px;
    bottom: 20px;
    background-color: #25D366;
    z-index: 2;
    font-size: 28px;
    color: #fff;
}
.scroll-top {
    height: 30px;
    width: 30px;
    background-color: var(--theme1);
    color: #fff;
    right: 20px;
    bottom: 80px;
    border-radius: 5px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.scroll-top.scrolled {
    bottom: 20px;
    visibility: visible;
    opacity: 1;
}
/***** common things start *****/


/***** apply common button section start *****/
.common-btn-section .common-blink-btn {
    background-image: linear-gradient(to bottom,#8e0a0a 0,#b40d14 99%);
    animation: blinkbtn 5s linear infinite;
    font-weight: 600;
    color: #ffff;
    padding: 10px 40px;
    border-radius: 30px;
    border:3px solid #ffff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.common-btn-section .common-blink-btn:active {
    animation: none;
}
@keyframes blinkbtn {
  12.5% { background-image: linear-gradient(to right, #8e0a0a, #dc3545); }
  25% { background-image: linear-gradient(to right, #b40d14, #8e0a0a); }
  37.5% { background-image: linear-gradient(to right, #dc3545, #b40d14); }
  50% { background-image: linear-gradient(to right, #8e0a0a, #dc3545); }
  62.5% { background-image: linear-gradient(to right, #b40d14, #8e0a0a); }
  75% { background-image: linear-gradient(to right, #dc3545, #b40d14); }
  87.5% { background-image: linear-gradient(to right, #8e0a0a, #dc3545); }
  100% { background-image: linear-gradient(to right, #b40d14, #8e0a0a);}
}
/***** apply common button section start *****/


/***** navbar start *****/
.navbar {
    background-color: #333;
    border-bottom: 0 !important;
}
.navbar .navbar-brand {
    background-color: var(--theme1);
    height: 68px;
    position: absolute;
    top: 0;
    height: 100%;
    padding:16px 19px;
}
.navbar .nav-list {
    gap: 18px;
}
.nav-list .navbar-link {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}
.navbar .navbar-link i {
    transition: all 0.3s ease-in-out;
    font-size: 14px;
}
.nav-list .navbar-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0px;
    border-radius: 7px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

.nav-list li:hover .navbar-link::before,
.nav-list li .navbar-link.rotate::before {
    width: 30px;
}
.navbar li:hover .navbar-link i,
.navbar li .navbar-link.rotate i {
    transform: rotate(-180deg);
}
.navbar .urgent-btn {
    color: #fff;
    font-weight: 500;
    padding: 10px 12px;
    gap: 5px;
    font-size: 14px;
    border-radius: 6px;
    background-color: var(--theme1);
    line-height: normal;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;  
}
.navbar .navbar-data {
    gap: 15px;
}
.navbar .navbar-item {
    padding-block: 18px;
}
.navbar .nav-contact-link {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.navbar .nav-contact-link i {
    transition: all 0.3s ease-in-out;
}
.navbar .nav-contact-link:hover {
    color: var(--theme1);
}
.navbar .nav-contact-link:hover i {
    transform: scale(1.2);
}
.navbar .drop-list {
    top: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 3;
}
.navbar .drop-down:hover .drop-list {
    height: 370px;
    overflow-y: auto;
    border-color: #dee2e6;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px solid #fff;
}
.navbar .drop-list .drop-link {
    font-size: 15px;
    line-height: normal;
    padding: 9px 14px;
    color: #000;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}
.navbar .drop-list .drop-link:hover {
    background-color: #eee;
}
.navbar .navbar-toggler {
    width: 43px;
    height: 33px;
    font-size: 20px;
    border-color: #fff;
    color: #fff;
}


.navbar .navbar-top {
    padding: 10px;
}
.navbar .navbar-top ul {
    gap: 18px;
}
.navbar .navbar-top::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 0;
    border: 21px solid ;
    border-color: #fff #fff transparent transparent;
}
.navbar .navbar-top a {
    gap: 7px ;
    font-size: 14px;
    color: #303030;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.navbar .navbar-top a:hover {
    color: var(--theme1);
}
.navbar .navbar-top a i {
    color: #0a8eff;
}
.navbar .navbar-top .top-link {
    padding-right: 18px;
}
.navbar .navbar-top .top-link::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: #696969;
}
/***** navbar end *****/



/***** hero section start *****/
.hero-section {
    height: 510px;
    background: url(../img/bg-5.webp) no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 100px;
}
.hero-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0, 0.4);
}
.hero-section .hero-heading-seciton .hero-heading-title {
    font-size: 18px;
    font-weight: 700;
    color: #d6d6d6;
}
.hero-section .hero-heading {
    font-size: 28px;
    color: #fff;
    margin-top: 9px;
    font-weight: 700;
    border: 1px solid #a5a5a5cc;
    /* border-bottom: 1px solid #a5a5a5cc; */
    padding: 4px 8px;
    border-radius: 4px;
}
.search-card {
    padding:110px 30px 30px;
    background-color: rgba(0,0,0, 0.5);
    border: 1px solid #757575;
}
.search-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    backdrop-filter:blur(0.8px);
}
.search-card-two {
    padding: 30px;
}
.search-card-two .search-card-btn {
    background-color: var(--theme1) !important;
    color: #fff !important;
}
.search-card .search-input-label {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: normal;
    color: #fff;
    position: relative;
}
.search-card-two .search-input-label {
    color: #000;
}
.search-card .search-card-heading {
    font-size: 21px;
    top: 25px;
    font-weight: 700;
    color: #fff;
    padding: 8px 20px;
    line-height: normal;
    background-color: var(--theme1);
    left: -20px;
}
.search-card .search-card-heading::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    border: 10px solid;
    border-color: #8e0a0a #8e0a0a transparent transparent;
}
.search-card .search-card-heading::after {
    content: '';
    position: absolute;
    right: -44px;
    top: 0;
    border: 22px solid;
    border-color:transparent transparent #d71921 #d71921;
}
.search-card .search-card-btn {
    background-color: #fff;
    height: 47px;
    font-size: 18px;
    color: var(--theme1);
    border-radius: 5px;
    padding: 5px 25px;
    position: relative;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
/* .search-card .select2 {
    width: 100% !important;
} */
.search-card .select2 .select2-selection {
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    padding-left: 48px !important;
}
.search-card .select2 .select2-selection__arrow {
    height: auto !important;
    top: 50% !important;
    transform: translateY(-50%);
}
.search-card .select2 .select2-selection::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: url(../img/id-card.svg) no-repeat;
    background-size: 27px;
    background-position: center;
    width: 48px;
    border-right: 1px solid #aaa;
}
.search-input-group-two .select2 .select2-selection::before {
    background: url(../img/lifering.svg) no-repeat;
    background-size: 27px;
    background-position: center;
}
.country-hero-section .search-card {
    border-color: #c1c1c1;
}
/***** hero section end *****/


/***** price section start *****/
.visa-tab {
    gap: 10px;
}
.visa-tab .nav-link {
    color: #000;
    font-weight: 600;
    border: 1px solid #686767;
    font-size: 16px;
    border-radius: 6px;
}
.visa-tab .nav-link.active {
    background-color: var(--theme1);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    color: #fff;
    border-color: var(--theme1);
}
.price-card {
    border-radius: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.price-card .price-card-top,
.price-card .price-card-body,
.price-card .price-card-footer {
    padding: 12px;
}
.price-card .price-card-title {
    font-size: 18px;
}
.price-card .visa-checkbox .visa-checkbox-inner {
    width: 85px;
    height: 31px;
    background: rgba(69, 90, 100, .396);
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.price-card .visa-checkbox .visa-checkbox-inner::after {
    content: "Regular";
    position: absolute;
    color: #fff;
    width: 100%;
    left: 0;
    text-align: right;
    padding: 0 8px;
    line-height: 31px;
    font-size: 12px;
    font-weight: 500;
}
.price-card .visa-checkbox .visa-checkbox-inner::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: 0.3s;
    box-shadow: -3px 0 3px rgba(0, 0, 0, .1);
}
.price-card .visa-checkbox input:checked ~ .visa-checkbox-inner {
    background: #31B63A;
}
.price-card .visa-checkbox input:checked ~ .visa-checkbox-inner::before {
    transform: translate(54px);
    transition: 0.3s;
}
.price-card .visa-checkbox input:checked ~ .visa-checkbox-inner::after {
    content: "Express";
    text-align: left;
    font-size: 12px;
}
.price-card .card-price {
    font-size: 40px;
    font-weight: 700;
}
.price-card .card-price sup {
    font-size: 16px;
    position: relative;
    top: -18px;
}
.price-card .price-data {
    font-size: 15px;
    gap: 8px;
    padding-block: 11px;
}
.price-card .price-data .price-check {
    height: 19px;
    min-width: 19px;
    m-width: 19px;
    border: 1px solid #d4d4d4;
    color: #686767;
    font-size: 12px;
}
.price-card .price-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-card .price-card-footer >* {
    width: auto !important;
}
.price-card .price-btn {
    background-color: var(--theme1);
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    border: 3px solid #fff;
    padding: 9px 28px;
    transition: all 0.3s ease-in-out;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}
.price-card .price-btn:hover {
    background-color:#b40d14;
}
.price-card1 .price-data .price-check-two {
    background: #31B63A;
    color: #fff;
}

/***** price section end *****/


/***** content section start *****/
.content-card {
    border-radius: 10px;
    padding: 15px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.content-card table {
    margin-bottom: 8px;
}
.content-card table,
.content-card td ,
.content-card th {
    border: 1px solid #c7c7c7;
    border-collapse: collapse;
}
.content-card td ,
.content-card th {
    padding: 10px;
    font-size: 15px;
}
.content-card .content-card-heading {
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}
.content-card .content-card-inner p {
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 10px;
}
.content-card .content-card-inner {
    overflow: hidden;
}
.content-card .ellipsis {
    max-height: 83px ;
    overflow: hidden;
}
.content-card .content-card-inner li {
    font-size: 15px;
    line-height: 27px;
}
.content-card .content-card-inner li p {
    margin-bottom: 0;
}
.content-card h2 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}
.content-card .content-card-inner h2 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}
.content-card .content-card-inner h3 {
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 700;
}
.content-card .content-card-inner ul,
.content-card .content-card-inner ol{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 22px;
}
.content-card .content-card-inner strong,
.content-card .content-card-inner b {
    font-weight: 700;
}
.ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.content-card .read-more-btn {
    color: var(--theme1);
    line-height: normal;
}
/***** content section end *****/


/***** country section start *****/
.country-section .country-main {
    overflow: hidden;
}
.country-section .countrycontent {
    height: 260px;
}
.country-card {
    border: 1px solid #cfcfcf;
    padding:8px;
    line-height: normal;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: rgba(215, 25, 33, 0.1) 0px 4px 6px -1px, rgba(215, 25, 33, 0.06) 0px 2px 4px -1px;
    transition: all 0.3s ease-in-out;
    gap: 8px;
}
.country-card .country-card-icon {
    height: 38px;
    max-width: 38px;
    min-width: 38px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.country-card .country-text {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease-in-out;
}
.country-card:hover {
    transform: translateY(-2px);
    border-color: var(--theme1);
    box-shadow:rgba(215, 25, 33, 0.07) 0px 1px 1px, rgba(215, 25, 33, 0.07) 0px 2px 2px, rgba(215, 25, 33, 0.07) 0px 4px 4px, rgba(215, 25, 33, 0.07) 0px 3px 0px, rgba(215, 25, 33, 0.07) 0px 4px 4px;
    box-shadow: rgba(215, 25, 33, 0.25) 0px 6px 12px -2px, rgba(215, 25, 33, 0.3) 0px 3px 7px -3px;
}
.country-card:hover .country-text {
    color: var(--theme1);
}
.country-section .read-more-btn {
    background-color: var(--theme1);
    font-weight: 600;
    color: #fff;
    border-radius: 6px;
    padding: 10px 26px;
    gap: 5px;
    line-height: normal;
  }
  .country-section .read-more-btn.expanded i {
    transform: rotate(-180deg);
  }
/***** country section end *****/


/***** faq section start *****/
.faq-section .accordion {
    gap: 10px;
}
.faq-section .accordion-item {
    background-color: #f3f3f3;
    border-radius: 6px !important;
}
.faq-section .accordion-button,
.faq-section .accordion-body {
    padding: 12px;
}
.faq-section .accordion-button::after {
    display: none;
}
.faq-section .accordion-button .faq-btn-icon {
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    font-size: 13px;
    background-color: #d3d3d3;
    color: #000;
    transition: all 0.3s ease-in-out;
}
.faq-section .accordion-button:not(.collapsed) .faq-btn-icon {
    background-color: var(--theme1);
    color: #fff;
    transform: rotate(-180deg);
}
.faq-section .accordion-button:not(.collapsed) {
    color:var(--theme1);
}
.faq-section .accordion-body p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 27px;
}
.faq-section .accordion-body li {
    font-size: 15px;
}
.faq-section .accordion-body ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 22px;
}
.faq-section table,
.faq-section th ,
.faq-section td {
    border: 1px solid #999999;
    border-collapse: collapse;
}
.faq-section th ,
.faq-section td {
    padding: 8px;
    font-size: 15px;
}
/***** faq section end *****/


/***** why choose us section start *****/
.why-choose-card {
    padding:0 10px 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    transition: all 0.3s ease-in-out;
}
.why-choose-card .why-choose-icon {
    height:60px;
    min-width:60px;
    max-width:60px;
    /* background-color: #eee; */
    background-color: #fff ;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin-top: -30px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--theme1) !important;
}

.why-choose-card .why-choose-icon img {
    transition: all 0.3s ease-in-out;
}
.why-choose-card .why-choose-title {
    font-size: 17px;
    margin-top: 10px;
    color: var(--theme1);
}
.why-choose-card .why-choose-para {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 8px;
}
.why-choose-card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.why-choose-card:hover .why-choose-icon img {
    transform: scale(1.2);
}
/***** why choose us section end *****/


/***** footer start *****/
.footer {
    background-color: #171925;
    /*background-image: url(../img/shape-14.webp);*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.footer .footer-inner {
    padding-block: 35px;
}
.footer .footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: normal;
    border-bottom: 1px solid #494949;
    padding-bottom: 8px;
    margin-bottom: 15px;
}
.footer .footer-list {
    gap: 17px;
}
.footer .footer-link {
    font-size: 14px;
    font-weight: 500;
    color: #b9b9b9;
    transition: all 0.3s ease-in-out;
}
.footer .footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 0px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}
.footer .footer-link:hover {
    padding-left: 12px;
    color: #fff;
}
.footer .footer-link:hover::before {
    width: 10px;
}
.footer .footer-para {
    line-height: 29px;
    font-size: 14px;
    color: #b9b9b9;
}
.footer .contact-list {
    gap: 18px;
}
.footer .footer-contact-link {
    font-weight: 600;
    color: #b9b9b9;
    gap: 5px;
    transition: all 0.3s ease-in-out;
    font-size: 15px;
}
.footer .footer-contact-link:hover {
    color: #fff;
}
.footer .footer-contact-icon {
    height: 25px;
    width: 25px;
    color: #ffff;
    border: 1px solid #fff;
    transition: all 0.3s ease-in-out;
    font-size: 12px;
}
.footer .footer-contact-link:hover .footer-contact-icon {
    background-color: var(--theme1);
    color: #fff;
}
.footer .social-list {
    margin-top: 25px;
    gap: 7px;
}
.footer .social-list .social-link {
    height: 38px;
    width: 38px;
    background-color: #1877F2;
    color: #fff;
    font-size: 17px;
}
.footer .social-list .social-link i {
    transition: all 0.3s ease-in-out;
}
.footer .social-list .social-link:hover i {
    transform: scale(1.2);
}
.footer .social-list .twitter {
    background-color: #14171A;
}
.footer .social-list .pinterest {
    background-color: 	#E60023;
}
.footer .social-list .instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
}
.footer .social-list .linkedin {
    background-color: #0072b1;
}
.footer .payment-heading {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}
.footer .payment-img {
    height: 50px;
    margin-top: 5px;
}
.copyright-section {
    padding-block: 10px;
    border-color: #333 !important;
}
.copyright-section .payment-title {
    font-size: 15px;
    color: #b9b9b9;
}
.copyright-section .payment-title a {
    color: #fff;
}
/***** footer end *****/


/***** breadcrumb section start *****/
.breadcrumb-section {
    margin-top: 10px;
}
.breadcrumb-section .breadcrumb-list {
    gap: 10px;
}
.breadcrumb-section .breadcrumb-link {
    font-weight: 600;
    font-size: 16px !important; 
    gap: 5px;
    color: #000;
}
.breadcrumb-section .breadcrumb-link i {
    font-size: 14px;
}
.breadcrumb-section .breadcrumb-link.active {
    color: var(--theme1);
}
/***** breadcrumb section end *****/


/********** document required page  **********/
.document-required-card {
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 8px;
}
/********** document required end **********/


/***** cta section start *****/
.cta-section .cta-inner {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 40px;
    background-color: #f5f5f5;
}
.cta-section .cta-heading {
    font-size: 32px;
    font-weight: 700;
}
.cta-section .flight-icon {
    height: 40px;
}
.cta-section .cta-para {
    font-size: 16px;
    line-height: 27px;
}
.cta-section .cta-icon {
    position: absolute;
    left: 60px;
    top: -50px;
}
.cta-section .cta-icon >* {
    fill: var(--theme1);
}
.cta-section .cta-btn {
    background-color: var(--theme1);
    font-weight: 600;
    padding:10px 25px;
    border-radius: 8px;
    line-height: normal;
    color: #fff;
    text-decoration: none;
    border: 2px solid var(--theme1);
    transition: all 0.3s ease-in-out;
}
.cta-section .cta-btn:hover {
    background-color: transparent;
    color: var(--theme1);
}
/***** cta section end *****/


/***** visa type section start *****/
.visa-type-section .visa-type-heading {
    padding: 11px 15px;
    font-size: 18px;
    font-weight: 700;
    background-color: #eee;
    color: #9C1113;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.visa-type-section .visa-type-heading::before {
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: var(--theme1);
    top: 0;
}
/***** visa type sectio end *****/



/***** visa type heading section start *****/
.visa-heading-section {
    padding-block: 35px;
    background-color: #eee;
}
.visa-heading-section .visa-heading {
    font-weight: 700;
    color: #000;
    font-size: 28px;
}
/***** visa type heading section end *****/


/***** why applying section start *****/
.why-appying-list {
    gap: 11px;
    padding: 15px;
}
.why-appying-list .why-appying-data {
    font-size: 15px;
    display: flex;
    align-items: start;
}
.why-appying-list .why-appying-data i {
    color: rgb(4, 160, 4);
    margin-right: 6px;
    margin-top: 4px;
}
@media (max-width:767px){
    .why-appying-list {
        padding: 12px;
    }
    .why-appying-list .why-appying-data i {
        margin-top: 5px;
    }
}
/***** why applying section end *****/


/***** important information section start *****/
.important-info-card {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    line-height: 26px;
    border: 1px solid #000;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.important-info-section .important-info-title {
    font-size: 17px;
    font-weight: 600;
    color: #000;
}
@media (max-width:767px){
    .important-info-card {
        padding: 8px;
        line-height: 24px;
    }
    .important-info-section .important-info-title {
        font-size: 16px;
    }
}
/***** important information section end *****/


/***** notes section start *****/
.note-title {
    padding: 8px;
    font-weight: 500;
}
.note-title span {
    color: var(--theme1);
}
/***** notes section end *****/


/***** main heading section start *****/
.main-heading-section {
    height: 270px;
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/breadcrumb.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
}
/* .main-heading-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
} */
.main-heading-section .main-heading {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}
/***** main heading section end *****/


/***** contact us section start *****/
.contact-card .contact-card-heading {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.contact-card .contact-input {
    height: 45px;
    font-weight: 500;
    background-color: rgb(243, 243, 243);
}
.contact-card .contact-textarea {
    height: 100px;
}
.contact-card .contact-btn {
    font-weight: 600;
    color: #fff;
    background-color: var(--theme1);
    border: 0;
    padding: 9px 24px;
    line-height: normal;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.contact-card .contact-btn:hover {
    background-color: #dc3545;
}
.contact-detail-card {
    padding: 12px;
}
.contact-detail-card .contact-detail-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme1);
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.contact-detail-card .contact-details {
    gap: 10px;
}
.contact-detail-card .cotact-detail {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    line-height: 26px;
}
.contact-detail-card .cotact-detail i {
    color: #0a8eff;
    margin-right: 3px;
}
.contact-detail-card .cotact-detail img {
    margin-right: 3px;
}
/***** contact us section end *****/


/***** visa country page hero section start *****/
.visa-hero-section {
    height: auto;
    padding-block: 100px;
}
/***** visa country page hero section end *****/


/***** track section start *****/
.track-card {
    padding:25px 15px;
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; */
}
.track-card .track-para {
    line-height: 28px;
}
.track-inner-card {
    padding: 15px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.track-inner-card .track-label {
    font-size: 16px;
    margin-bottom: 4px;
}
.track-inner-card .track-input {
    height: 43px;
}
.track-inner-card .track-btn {
    height: 43px;
    padding: 5px 30px;
    border-radius: 5px;
    background-color: var(--theme1);
    color: #fff;
}
/***** track section end *****/


/***** apply now section start *****/
.apply-now-section {

}
.form-card {
    padding: 20px;
    padding-top: 25px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}
.form-card .form-price {
    font-size: 18px;
    color: var(--theme1);
    font-weight: 700;
    margin-top: 18px;
}
.apply-form-card .apply-form-heading {
    font-size: 18px;
}
.apply-form-card .form-price-two {
    top: 20px;
    right: 20px;
    font-size: 19px;
    font-weight: 700;
    color: var(--theme1);
    position: absolute;
}
.form-group {
    position: relative;
}
.form-group .form-label {
    padding-left: 4px;
    position: absolute;
    background-color: #fff;
    left: 5px;
    top: -10px;
    font-size: 14px;
    padding-inline: 8px;
    z-index: 1;
}
.form-group .form-input {
    height: 52px;
    font-size: 15px;
}
.form-group .form-input::placeholder {
    color: #fff;
}
.form-group .select2-selection {
    height: 52px !important;
    display: flex !important;
    align-items: center;
    border-color: #dee2e6 !important;
}
.form-group .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
}
.form-group .date-group::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f073';
    position: absolute;
    right: 15px;
    top: 13px;
    font-size: 19px;
}
.form-group .iti {
    width: 100%;
}
.form-group .iti__country-list {
    width: 100%;
}
.form-group .iti__flag-container {
    width: 100%;
}
.form-group .iti__selected-flag {
    width: 50px;
}
.upload-card {
    padding: 20px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}
.upload-card .form-subheding {
    font-size: 18px;
}
.upload-card .upload-card-title {
    font-size: 15px;
    margin-top: 5px;
}
.upload-card .note-card {
    padding: 10px;
}
.upload-card .note-card p {
    font-size: 14px;
    line-height: 26px;
}
.upload-card .note-card a {
    color: #024BB6;
}
.dropzone {
    margin-top: 10px;
    text-align: center;
    padding: 15px !important;
    height: auto !important;
    min-height: 130px !important;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border: 1px dashed var(--theme1) !important; 
    border-radius: 7px;
}
.dropzone .dz-message {
    font-size: 28px;
    color: var(--theme1);
    margin-block: 20px !important;
    height: 45px !important;
}
.dropzone .dz-preview {
    margin: 0 !important;
    border-radius: 20px;
}
.dropzone .dz-preview .dz-image {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.dropzone .dz-details {
    overflow: hidden;
}
.dropzone .custom-remove-button {
    height: 26px;
    width: 26px;
    right: -10px;
    top: -10px;
    z-index: 11;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background-color: #fff;
}


.form-btns {
    gap: 20px;
}
.form-btns .form-btn {
    font-weight: 600;
    background-color: #333;
    color: #fff;
    padding: 9px 28px;
    border-radius: 5px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}
.form-btns .form-btn-two {
    background: linear-gradient(to bottom, #8e0a0a 0, #b40d14 99%) !important;
}
.form-btns .form-btn-three {
    background-color: var(--theme1);
}

.flatpickr-calendar .flatpickr-monthDropdown-months,
.flatpickr-calendar .numInputWrapper {
    font-size: 17px !important;
}
.flatpickr-calendar .flatpickr-weekday {
    font-size: 14px;
}
.flatpickr-calendar .flatpickr-day {
    color: #000 !important;
}
.flatpickr-calendar .flatpickr-disabled {
    color: rgba(57,57,57,0.1) !important;
}
.flatpickr-calendar .flatpickr-day.selected {
    color: #ffff !important;
}
.flatpickr-calendar .flatpickr-day.selected {
    background: var(--theme1);
    border-color: var(--theme1);
}
.iti__flag {
    background-image: url(../img/flags.png) !important;
}
/***** apply now section end *****/


/***** tours section start *****/
.tour-card {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 8px;
}
.tour-card .tour-img {
    height: 220px;
}
.tour-card .tour-img img {
    transition: all 0.3s ease-in-out;
}
.tour-card .tour-body {
    padding: 12px;
}
.tour-card .tour-card-heading {
    font-size: 17px;
    color: #000;
    transition: all 0.3s ease-in-out;
    text-overflow: ellipsis;
}
.tour-card .tour-card-heading:hover {
    color: var(--theme1);
}
.tour-card .tour-title {
    font-size: 16px;
    gap: 5px;
    padding-top: 6px;
}
.tour-card .tour-title i {
    color: var(--theme1);
    margin-right: 2px;
}
.tour-card .tour-price {
    font-size: 18px;
    margin-left: 8px;
    font-weight: 700;
    color: var(--theme1);
}
.tour-card .tour-footer {
    margin-top: 12px;
    padding-top: 15px;
}
.tour-card .tour-btn {
    background-color: var(--theme1);
    color: #fff;
    font-weight: 600;
    padding: 9px ;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--theme1);
}
.tour-card .tour-btn-two {
    background-color: transparent;
    color: var(--theme1);
}
.tour-card .tour-btn-two:hover {
    background-color: var(--theme1);
    color: #fff;
}
.tour-card .tour-btn-one:hover {
    background-color: transparent;
    color: var(--theme1);
}
.tour-card .tour-img:hover img {
    transform: scale(1.2) translateX(25px);
}
/***** tours section end *****/


/***** tour slider section start *****/
.tour-slider-section {
    height: 380px;
}
.tour-slider-section .swiper-wrapper {
    align-items: stretch;
}
.tour-slider-section .swiper-slide {
    height: auto;
}
.tour-slider-section .tour-slider-img {
    height: 100%;
}
.tour-slider-section .slider-btn {
    height: 45px;
    width: 45px;
    background-color: #fff;
    color: #000;
    font-size: 20px;
}
.tour-slider-section .slider-btn::after {
    display: none;
}
/***** tour slider section end *****/


/***** tour detail section start *****/
.tour-detail-card {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.tour-detail-card .tour-detail-heading {
    padding: 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
}
.tour-detail-card .tour-detail-heading::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--theme1);
}
.tour-detail-card .tour-detail-body {
    padding: 12px;
}
.tour-detail-card .tour-detail-body ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 21px;
}
.tour-detail-card .tour-detail-body li {
    font-size: 15px;
    line-height: 26px;
    color: #000;
    position: relative;
}
.tour-detail-card .tour-detail-body p,
.tour-detail-card .tour-detail-body {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 29px;
    color: #000;
}
.tour-detail-card .tour-detail-body h3 {
    font-size: 17px;
    font-weight: 700;
}
.highlight-card .tour-detail-body ul {
    padding-left: 0;
    list-style: none;
}
.highlight-card .tour-detail-body li {
    padding-left: 22px;
}
.highlight-card .tour-detail-body li::before {
    content: '\f28d';
    position: absolute;
    left: 0;
    top: 2px;
    font-family: 'Font Awesome 6 Free';
    color: var(--theme1);
}
.tour-detail-card .accordion-body {
    padding-top: 0;
}
.tour-detail-card .accordion-item {
    border-left: 1px solid #fcb6b9;
    margin-left: 10px;
}
.tour-detail-card .accordion-button,
.tour-detail-card .accordion-body {
    padding: 12px;
}
.tour-detail-card .accordion-button {
    font-size: 17px;
    font-weight: 600;
    padding-left: 18px;
}
.tour-detail-card .accordion-button::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background-color: var(--theme1);
    animation: animate-pulse 3s linear infinite;
}
.tour-detail-card .accordion-button::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    right: 10px;
    top: 50%;
    background: transparent;
    transform: translateY(-50%);
    height: auto;
    width: auto;
}
.tour-detail-card .accordion-button:not(.collapsed){
    color: var(--theme1);
}
.tour-detail-card .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(-180deg);
}
@keyframes animate-pulse{
    0%{
        box-shadow: 0 0 0 0 rgba(255,109,74,0.7),  0 0 0 0 rgba(255,109,74,0.7);
    }
    40%{
        box-shadow: 0 0 0 15px rgba(255,109,74,0.0),  0 0 0 0 rgba(255,109,74,0.7);
    }
    80%{
        box-shadow: 0 0 0 15px rgba(255,109,74,0.0),  0 0 0 8px rgba(255,109,74,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(255,109,74,0.0),  0 0 0 8px rgba(255,109,74,0);
    }
    
}
.inclusions-card .tour-detail-body li::before {
    content: '\f058';
    color: rgb(9, 179, 9);
}
/***** tour detail section end *****/


/***** itinerary form card start *****/
.itinerary-form-card {
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    padding: 12px;
}
.itinerary-form-card .itinerary-form-heading {
    font-size: 20px;
    font-weight: 700;
}
.itinerary-form-card .itinerary-input,
.itinerary-form-card .form-control,
.itinerary-form-card .form-select{
    font-size: 15px;
    height: 45px;
}
.itinerary-form-card textarea {
    height: 100px !important;
}
.itinerary-form-card .date-input::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f073';
    position: absolute;
    top: 9px;
    right: 14px;
    font-size: 18px;
}
.itinerary-form-card .itinerary-btn {
    background-color: var(--theme1);
    color: #ffff;
    font-weight: 600;
    padding: 7px 20px;
    font-size: 16px;
    border-radius: 5px;
    line-height: normal;
    transition: all 0.3s ease-in-out;
}
.itinerary-form-card .itinerary-btn:hover {
    background-color: #b40d14;
}
/***** itinerary form card end *****/


/***** itinerary data card start *****/
.itinerary-data-card {
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    padding: 12px;
}
.itinerary-data-card .itinerary-heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}
.itinerary-data-card .itinerary-data {
    font-size: 16px;
    padding-block: 12px;
}
.itinerary-data-card .itinerary-data .itinerary-data-inner {
    font-size: 15px;
}
.itinerary-data-card .itinerary-data i {
    font-size: 15px;
    color: var(--theme1);
}
.itinerary-data-card .itinerary-data img {
    height: 13px;
}
.itinerary-data-card .rating-list {
    gap: 3px;
}
.itinerary-data-card .rating-list i {
    color: #FF9529;
}
.itinerary-data-card .priceo-old {
    font-size: 16px;
    color: #686767;
}
.itinerary-data-card .priceo-new {
    font-size: 18px;
    color: var(--theme1);
}
.itinerary-data-card .per-person {
    font-size: 14px;
}
.itinerary-form-card .form-floating label {
    font-size: 15px;
}
/***** itinerary data card start *****/


/***** payment page start *****/
.payment-card {
    padding: 20px;
}
.payment-card .payment-img {
    height: 35px;
}
.payment-card .payment-label {
    font-weight: 500;
}
.payment-card .payment-label span {
    font-size: 13px;
    color: #333;
}
.payment-card .payment-condition {
    font-size: 15px;
}
.payment-card .payment-btn {
    background: linear-gradient(to bottom, #8e0a0a 0, #b40d14 99%) !important;
    color: #fff;
    border: 0;
    padding: 11px 27px;
    border-radius: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    gap: 7px;
    transition: all 0.3s ease-in-out;
}
.payment-card .payment-btn:hover {
    border-radius: 30px;
}
.payment-card .payment-card-inner {
    gap: 13px;
}
.payment-card .form-select {
    width: 70px;
    flex: auto;
    max-width: 70px;
    padding: 8px;
    font-size: 14px;
    font-weight: 600;
}
/***** payment page end *****/


/*****  blog home section start *****/
.blog-hover-card .blog-hover-card-img::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #00000026;
}
.blog-hover-card .blog-hover-content {
    background-color: #000000a6;
    padding: 10px;
    backdrop-filter: blur(2px);
}
.blog-hover-card .blog-hover-heading {
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-hover-card .blog-hover-heading-main {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog-hover-card .blog-hover-heading::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1.5px;
    width: 0%;
    background-color: #fff;
    border-radius: 7px;
    transition: all 0.3s ease-in-out;
}
.blog-hover-card .blog-hover-list {
    gap: 10px;
    margin-top: 8px;
}
.blog-hover-card .blog-hover-list li {
    color: #fff;
    font-size: 15px;
}
.blog-hover-card .blog-hover-list li i {
    margin-right: 2px;
}
.blog-hover-card .blog-hover-content:hover .blog-hover-heading::before {
    width: 100%;
}
.blog-hover-card-two {
    height: 200px;
}
.blog-btn {
    background:var(--theme1);
    color: #fff;
    padding: 8px 30px;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    line-height: normal;
    border: 1px solid var(--theme1);
    transition: all 0.3s ease-in-out;
}
.blog-btn:hover {
    background: transparent;
    color: var(--theme1);
}
/***** blog home section end *****/


/*****  blog home section start *****/
.blog-home-card {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 10px;
}
.blog-home-card .blog-home-img {
    height: 230px;
}
.blog-home-card .blog-home-data {
    left: 0;
    bottom: 0;
    padding: 5px 12px;
    gap: 14px;
}
.blog-home-card .line {
    font-size: 20px;
}
.blog-home-card .blog-home-icons {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.blog-home-card .blog-home-icons i {
    color: var(--theme1);
    margin-right: 3px;
}
.blog-home-card .blog-home-body {
    padding: 12px;
}
.blog-home-card .blog-home-heading {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    transition: all 0.3s ease-in-out;
    padding-bottom: 10px;
    position: relative;
    text-wrap: nowrap;
    display: block !important;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-home-card .blog-home-heading::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(var(--theme1)), to(transparent));
    background: linear-gradient(to right, var(--theme1), transparent);
    content: "";
}
.blog-home-card .blog-home-heading:hover {
    color: var(--theme1);
}
.blog-home-card .blog-home-content {
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-home-card .blog-home-content p {
    font-size: 15px;
    line-height: 28px;
}
.blog-home-card .blog-home-content h2 {
    display: none !important;
}
.blog-home-card .blog-home-footer {
    padding: 8px 12px;
}
.blog-home-card .blog-home-btn {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease-in-out;
}
.blog-home-card .blog-home-btn:hover {
    color: var(--theme1);
}
.blog-home-card .blog-home-btn .blog-home-btn-icon {
    height: 35px;
    width: 35px;
    border: 1px solid #adadad;
    transition: all 0.3s ease-in-out;
}
.blog-home-card .blog-home-btn .blog-home-btn-icon i {
    color: #929292;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    transform: translateX(-7px);
    background-color: rgb(248,249,250);
}
.blog-home-card .blog-home-btn:hover .blog-home-btn-icon {
    border-color: var(--theme1);
}
.blog-home-card .blog-home-btn:hover .blog-home-btn-icon i {
    color: var(--theme1);
    transform: translateX(5px);
}
/***** blog home section end *****/


/***** blog contact card start *****/
.blog-contact-card{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    max-height: 420px;
}
.blog-contact-card::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 200px;
    right: 0;
    bottom: 0;
    clip-path: polygon(0 40.8%, 100% 0, 100% 100%, 0 100%);
    background-color: #fff;
}
.blog-contact-card .blog-contact-heading {
    font-size: 18px;
}
.blog-contact-card .blog-contact-btn {
    padding: 12px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    margin-top: 10px;
    gap: 5px;
    transition: all 0.3s ease-in-out;
}
.blog-contact-card .blog-contact-btn:hover {
    transform: scale(1.05);
}
.blog-contact-card .blog-contact-content {
    padding: 14px;
}
.blog-contact-card .blog-contact-btn::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #25D366;
}
.blog-contact-card .blog-contact-btn-title {
    font-size: 14px;
    font-weight: 600;
    color: #14ac4c;
}
.blog-contact-card .blog-contact-no {
    margin-top: 2px;
    font-size: 16px;
    color: #000;
    display: block;
}
.blog-contact-card .blog-contact-icon {
    height: 45px;
    width: 45px;
    background-color: #25D366;
    font-size: 22px;
    color: #fff;
}
/***** blog contact card end *****/


/***** blog siderbar start *****/
.blog-sidebar {
    padding: 12px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.blog-sidebar .blog-sidebar-heading {
    font-size: 18px;
    padding-bottom: 8px;
}
.blog-sidebar .blog-sidebar-heading::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 80px;
    height: 3px;
    background-color: var(--theme1);
    border-radius: 2px 0 0 2px;
}
.blog-sidebar .blog-sidebar-card {
    padding-top: 12px;
    margin-top: 12px;
}
.blog-sidebar-card:first-child{
    padding-top: 0;
    margin-top: 0;
    border-top: 0 !important;
}
.blog-sidebar .blog-sidebar-data {
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}
.blog-sidebar .blog-sidebar-data i {
    color: var(--theme1);
}
.blog-sidebar .sidebar-card-heading {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 24px;
    margin-top: 4px;
}
.blog-sidebar .sidebar-card-heading a {
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}
.blog-sidebar .sidebar-card-heading a:hover {
    color: var(--theme1);
}
/***** blog siderbar start *****/


/***** blog detail section start *****/
.blog-detail-card {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.blog-detail-card .blog-detail-img {
    height: 400px;
}
.blog-detail-card .blog-detail-icons {
    padding: 7px 18px;
    border-radius: 0 4px 0 0 ;
    gap: 9px;
}
.blog-detail-card .blog-detail-icon {
    font-size: 15px;
    font-weight: 600;
}
.blog-detail-card .blog-detail-icon i {
    margin-right:2px;
    color: var(--theme1);
}
.blog-detail-card .blog-detail-content-main {
    padding: 11px;
}
.blog-detail-card .blog-detail-heading {
    font-size: 24px;
    line-height: 39px;
}
.blog-detail-card .blog-detail-content p {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 12px;
}
.blog-detail-card .blog-detail-content strong ,
.blog-detail-card .blog-detail-content b {
    font-weight: 700;
}
.blog-detail-card .blog-detail-content img {
    width: 100%;
    border-radius: 5px;
}
.blog-detail-card .blog-detail-content h2 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom:12px;
}
.blog-detail-card .blog-detail-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom:12px;
}
.blog-detail-card .blog-detail-content table {
    margin-bottom: 8px;
}
.blog-detail-card .blog-detail-content table,
.blog-detail-card .blog-detail-content td,
.blog-detail-card .blog-detail-content th {
    border: 1px solid #333;
    border-collapse: collapse;
}
.blog-detail-card .blog-detail-content td,
.blog-detail-card .blog-detail-content th {
    padding: 8px;
}
.blog-detail-card .blog-detail-content ul,
.blog-detail-card .blog-detail-content ol {
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.blog-detail-card .blog-detail-content li {
    font-size: 15px;
    line-height: 28px;
}
.blog-detail-card .blog-detail-content li p {
    margin-bottom: 0;
}
/***** blog detail section end *****/

/***** cover photo modal section css start *****/
.passport_smvw_bx {
    margin: 0 auto;
    width: max-content;
}
.passport_smvw_btn {
    outline: none;
    box-shadow: inset 0px 0px 5px 0px #313131;
    background: #333;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    width: 226px;
    height: 36px;
    transition: all .3s ease-in-out;
}
.passport_smvw_btn:hover {
	letter-spacing: 0.5px;
	background: #000;
	color: #fff;
}
.passport_smvw_btn:focus {
	outline: none;
}
.add_another_btn_area .passport_smvw_btn {
    text-align: center;
    height: 38px;
    line-height: 36px;
    border-radius: 6px;
    text-decoration: none;
}
.pass_sample_modal .modal-dialog {
    max-width: 40% !important;
}
.pass_sample_modal .modal-dialog .modal-header .modal-title {
    font-size: 18px !important;
    font-weight: 600;
    color: #000;
}
.pass_sample_modal .modal-dialog .modal-header .btn-close {
    outline: none;
    box-shadow: none;
}
.pass_sample_modal .modal-dialog .modal-header .btn-close:focus {
    outline: none;
    box-shadow: none;
}
.pass_sample_modal_main {
    border-radius: 6px;
    overflow: hidden;
    height: 510px;
}
.pass_sample_modal_main img {
    height: 100%;
}

.delete-btn {
    color: #d91212;
    background: #fff;
    border: 1px solid #d91212 !important;
    padding: 4px 5px;
    transition: all .3s ease-in-out;
}
.delete-btn:hover {
    color: #d91212;
    background: #fff;
    border: 1px solid #d91212 !important;
}
.delete-btn:focus {
    color: #d91212;
    background: #fff;
    border: 1px solid #d91212 !important;
}

@media (max-width: 991px){
	.pass_sample_modal .modal-dialog {
		max-width: 50% !important;
		margin: 14px auto;
	}
}
@media (max-width: 767px){
	.pass_sample_modal .modal-dialog {
		max-width: 70% !important;
		margin: 12px auto;
	}
	.passport_smvw_bx {
		margin: 15px auto !important;
		width: max-content;
	}
}
@media (max-width: 480px){
.pass_sample_modal .modal-dialog {
    max-width: 90% !important;
    margin: 18px auto;
}
.pass_sample_modal_main {
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
}
}


/***** step section start *****/
.step-card {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}
.step-card .step-card-img {
    height: 160px;
}
.step-card .step-content {
    padding: 10px;
}
.step-card .step-title {
    background-color: var(--theme1);
    color: #fff;
    padding: 6px 18px;
    line-height: normal;
    border-radius: 5px;
    margin-top: 10px;
}
.step-card:hover {
    transform: translateY(-8px);
}
/***** step section end *****/


/***** step section two start *****/
.step-card-two {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 6px;
    padding: 20px 70px 20px 20px;
}
.step-card-two::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: #fa3f48;
    background-image: url(../img/step-bg.png);
    background-repeat: no-repeat;
    background-position: 0;
    content: "";
    transition: all .3s ease;
}
.step-card-two:hover:before {
    height: 100%;
}
.step-card-two .step-card-count {
    border-radius: 30px;
    background-color: #fce4e6;
    color: #931011;
    padding: 5px 10px;
    line-height: normal;
    font-size: 14px ;
}
.step-card-two .step-card-subheading {
    font-size: 18px;
    margin-top: 18px;
    transition: all 0.3s ease-in-out;
}
.step-card-two .step-card-icon {
    background-color: #eee;
    right: -15px;
    top: -15px;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    padding: 25px 23px 17px 17px;
    transition: all 0.3s ease-in-out;
}
.step-card-two:hover .step-card-subheading {
    color: #fff;
}
.step-card-two:hover .step-card-icon {
    background-color: #fff;
}
.step-contact-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 3px;
    border-radius: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.step-contact-card .step-contact-card-title {
    line-height: normal;
    padding-left: 20px;
}
.step-contact-card .step-contact-card-btn {
    color: #000;
    background-color: #fff;
    padding: 8px 26px;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    border: 2px solid #fff;
}
.step-contact-card .step-contact-card-btn:hover {
    background-color:#128C7E;
    color: #fff;
}
/***** step section two end *****/


/***** review section start *****/
.review-section .review-section-heading {
    font-size: 27px;
}
.review-section .review-data {
    gap: 18px;
}
.review-section .review-data-title {
    font-size: 22px;
    color: #000;
    line-height: normal;
}
.review-section .review-data-subtitle {
    color: #333;
    font-size: 15px;
}
.review-section .review-data-img {
    width:105px;
}
.review-section .swiper-btn {
    font-size: 15px;
    font-weight: 600;
    color: var(--theme1);
}
.review-card .review-user-img{
    height: 45px;
    width: 45px;
    background-color: #f5f25d;
    font-size: 17px;
}
.review-card .review-user-name {
    font-size: 16px;
    color: #000000;
}
.review-card .review-date {
    color: #070707d5;
    font-size: 13px;
}
.review-card .review-title {
    font-size: 17px;
    color: #000;
    margin-top: 20px;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.review-card .review-para {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review-card .review-para p {
    font-size: 15px;
    color: #333;
    line-height: 28px;
    margin-bottom: 0;
}
.review-section .review-section-para {
    color: #333;
    font-size: 15px;
    margin-top: 10px;
    line-height: 29px;
}
.review-section .swiper-pagination-bullet {
    background-color: transparent;
    color: #fff;
}
.review-section .custom-pagination {
    margin-top: -15px;
}
.review-section .swiper-icons {
    width: 60%;
    margin-top: 20px;
}
.review-section .swiper-scrollbar {
    background-color: #ad222242;
    position: unset !important;
    width: 90% !important;
    margin:auto;
}
.review-section .swiper-scrollbar-drag {
    background-color: var(--theme1);
}
@media (max-width:991px){
    .review-section .review-card-main {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #dee2e6;
    }
}
@media (max-width:767px){
    .review-section .review-section-heading {
        font-size: 20px;
    }
    .review-section .review-section-para {
        font-size: 14px;
        line-height: 27px;
        margin-top: 7px;
    }
    .review-section .review-data-title {
        font-size: 19px;
    }
    .review-section .review-data-subtitle {
        font-size: 14px;
    }
    .review-section .review-data-img {
        width: 95px;
    }
    .review-section .review-card-main {
        margin-top: 25px;
    }
    .review-section .swiper-icons {
        width: 75%;
        margin-top: 15px;
    }
    .review-card .review-para p {
        font-size: 14px;
        line-height: 27px;
    }
    .review-card .review-title {
        font-size: 16px;
        margin-bottom: 6px;
        margin-top: 15px;
    }
    .review-card .review-user-img {
        height: 42px;
        width: 42px;
        font-size: 16px;
    }
    .review-card .review-user-name {
        font-size: 15px;
    }
    .review-card .review-date {
        font-size: 12px;
    }
}
/***** review section end *****/


/***** how to apply section start *****/
.how-apply-card {
    padding:0 20px 20px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border-radius: 7px;
}
.how-apply-card .how-apply-heading {
    background: var(--theme1);
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    padding: 7px 36px;
    line-height: normal;
    border-radius: 0 0 15px 15px;
}
.how-apply-card .how-apply-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.how-apply-card .how-apply-img {
    max-height: 300px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.how-apply-card .how-apply-para {
    font-size: 16px;
    line-height: 27px;
}
/***** how to apply section end *****/


/***** counter section start *****/
.counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0,0,0,.2);
    transition: all 0.3s ease-in-out;
}
.counter:hover {
    transform: translateY(-8px);
}
.counter img {
    height: 41px;
    transition: all 0.8s ease-in-out;
    margin-top: -10px;
}
.counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: #4d4d4d;
}
.counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: #fff;
    background: #fff;
    clip-path: polygon(0% 0%,100% 0,100% 70%,50% 100%,0 70%);
}
.counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: var(--theme1);
    z-index: -1;
    clip-path: polygon(0% 0%,100% 0,100% 70%,50% 100%,0 70%);
}
.counter .counter-title {
    font-size: 16px;
}
.counter .counter-count {
    font-size: 28px;
    font-weight: 800;
    color: var(--theme1);
    margin-top: 7px ;
}
.counter .counter-count sup {
    font-size: 22px;
    font-weight: 800;
}
/***** counter section end *****/


/***** partner section start *****/
.partner-section .slides {
    transition: transform 0.01s linear; 
}
.partner-section .partner-card {
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
/***** partner section end *****/


/***** cta section start *****/
.home-cta-section {
    padding-block: 65px;
    /*background: url(../img/cta-home-bg.webp) no-repeat;*/
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.home-cta-card .cta-heading {
    font-size: 23px;
    color: #fff;
}
.home-cta-card .cta-heading a {
    color: #fff;
}
.home-cta-card .cta-title {
    font-size: 15px;
    color: #fff;
    margin-top: 12px;
}
.home-cta-card .cta-title a {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}
.home-cta-card .cta-title a:hover { 
    color: #e6e6e6;
}
.home-cta-card .cta-btn {
    border-radius: 5px;
    color: #fff;
    background:linear-gradient(135deg, #25D366, #128C7E);
    padding: 11px 25px;
    gap: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    transition: all 0.3s ease-in-out;
}
.home-cta-card .cta-btn:hover {
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}
/***** cta section end *****/


/***** call cta section start *****/
.call-cta-section {
    padding-block: 25px;
    background-color: #4476a8;
}
.call-cta-section .call-cta-title {
    font-size: 15px;
    color: #ffff;
}
.call-cta-section .call-cta-title::before {
    content: '';
    position: absolute;
    left: -110px;
    top: 50%;
    transform: translateY(-50%);
    /* height: 1px; */
    width: 100px;
    border: 1px dashed #ffffff;
}
.call-cta-section .call-cta-title::after {
    content: '';
    position: absolute;
    right: -110px;
    top: 50%;
    transform: translateY(-50%);
    /* height: 1px; */
    width: 100px;
    border: 1px dashed #ffffff;
}
.call-cta-section .call-cta-heading {
    font-size: 21px;
}
.call-cta-section .call-cta-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    font-size: 16px;
    padding: 10px 18px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    gap: 7px;
}
/***** call cta section end *****/


/***** order page start *****/
.payment-detail-card {
}
.payment-detail-card .payment-detail-header {
    padding: 12px;
}
.payment-detail-card .payment-detail-body {
    padding: 12px;
}
 .payment-detail-card .Confirm-heading {
	 font-size: 20px;
	 line-height: normal;
	 font-weight: 700;
}
.payment-detail-card .total-order {
	 font-size: 16px;
	 line-height: normal;
	 color: #d71921;
	 font-weight: 600;
}
.payment-detail-card .data-table .table-head th {
	 font-size: 16px;
	 color: #293b5c;
	 padding: 10px 18px;
	 font-weight: 700;
}
.payment-detail-card .data-table .table-body td {
	 font-size: 15px;
	 color: #333;
	 padding: 9px 18px;
}
.payment-detail-card .data-table .table-body .edit-btn {
	 background-color: #d91212;
	 font-size: 15px;
	 color: #fff;
	 padding: 6px 12px;
	 line-height: normal;
	 gap: 3px;
}
 .payment-detail-card .visa-card {
	 padding: 15px;
}
.payment-detail-card .visa-card .visa-card-heading {
	 font-size: 18px;
	 color: #000;
	 line-height: normal;
	 font-weight: 700;
}
 .order-page .payment-detail-card .visa-card .visa-card-title {
	 font-size: 14px;
	 color: #666;
	 margin-top: 9px;
	 line-height: normal;
	 font-weight: 500;
}
 .order-page .payment-detail-card .subtotal-title {
	 font-size: 17px;
	 color: #000;
}
 .order-page .payment-detail-card .subtotaltwo {
	 font-size: 18px;
	 color: #d71921;
}
 .order-page .payment-detail-card .card-subheading {
	 font-size: 18px;
	 color: #000;
}
 .order-page .payment-detail-card .express-service-card {
	 padding: 12px 15px;
	 cursor: pointer;
	 color: #000;
	 gap: 8px;
}
 .order-page .payment-detail-card .express-service-card .express-heading {
	 font-size: 15px;
	 line-height: normal;
}
 .order-page .payment-detail-card .express-service-card .express-charge {
	 font-size: 15px;
	 color: #d91212;
	 line-height: normal;
}
 .order-page .payment-detail-card .express-service-card .express-title {
	 font-size: 14px;
	 color: #444;
	 line-height: normal;
	 margin-top: 3px;
}
 .order-page .payment-detail-card .express-service-card input {
	 accent-color: #d91212;
	 margin-top: 3px;
}
 .order-page .payment-detail-card .referral-code {
	 font-size: 14px;
	 line-height: normal;
}
 .order-page .payment-detail-card .subtotal {
	 font-size: 18px;
	 line-height: normal;
	 color: #333;
}
 .order-page .payment-detail-card .total-subtotal {
	 font-size: 20px;
	 color: #d71921;
}
 .order-page .payment-datalist {
	 padding: 10px 10px 15px;
}
 .order-page .payment-datalist .transactions-title {
	 font-size: 14px;
}
 .order-page .payment-datalist .payment-card {
	 padding: 6px;
	 gap: 7px;
}
 .order-page .payment-datalist .payment-card .payment-img {
	 height: 40px;
}
 .order-page .payment-datalist .payment-card .payment-check-box {
	 accent-color: red;
}
 .order-page .payment-datalist .terms-and-condition {
	 font-size: 14px;
}
 .order-page .payment-datalist .terms-and-condition a {
	 color: #d71921;
}
 .order-page .payment-datalist .new-button {
    background-color: #d91212;
    border: none;
    color: #fff;
    font-size: 15px;
    width: 100%;
    padding: 9px;
    font-weight: 600;
    border-radius: 27px;
    background: linear-gradient(to bottom, #8e0a0a 0, #b40d14 99%);
    border: solid 3px #fff;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    gap: 6px;
}
 .order-page .payment-datalist .new-button i {
	 transition: all 0.3s ease-in-out;
}
 .order-page .payment-datalist .new-button:hover i {
	 transform: translateX(4px);
}
 .order-page .payment-datalist .payment-footer {
	 padding: 10px 2px;
}
 .order-page .payment-datalist .payment-footer .payment-footer-title {
	 font-size: 14px;
}
 .order-page .payment-datalist .payment-footer .payment-footer-title .global-icon {
	 color: #d71921;
}
 .order-page .select-box {
	 font-size: 15px;
}
 
/***** order page end *****/


/*****edit modal start *****/
.edit-modal .modal-title {
    font-size: 18px;
}
.edit-modal .btn-close {
    background-size: 13px;
}
/*****edit modal end *****/


/***** thank section start *****/
.thank-card {
    padding: 30px;
    border-radius: 7px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.thank-card h2 {
    font-size: 24px;
}
.thank-card h2 i {
    margin-right: 7px;
    color: #31B63A;
    font-size: 23px;
}
.thank-card p {
    font-weight: 500;
    color: #333;
}
/***** thank section end *****/


/***** about us section start *****/
.about-us-section .about-us-img {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.about-us-section .about-us-img::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.about-us-section .about-us-img:hover:before {
    height: 250%;
    transition: all 600ms linear;
    background-color: rgba(0, 0, 0, 0);
}
.about-us-section .about-heading {
    font-size: 27px;
    padding-bottom: 6px;
    margin-bottom: 18px;
}
.about-us-section .about-heading::before {
    content: '';
    position: absolute;
    left: 0;
    height: 3px;
    width: 70px;
    bottom: 0;
    background-color: var(--theme1);
    border-radius: 5px;
}
.about-us-content p {
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 12px;
}
.about-us-content .about-us-data {
    gap: 10px;
}
.about-us-content .about-us-para {
    font-size: 15px;
    line-height: 26px;
}
.about-us-content .about-us-para i {
    margin-right: 6px;
    margin-top: 6px;
    color: rgb(5, 153, 5);
}
.about-us-section .about-us-year {
    bottom: 15px;
    right: 15px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-bottom: 5px solid var(--theme1);
    border-radius: 8px;
    gap: 13px;
    animation-name: float-bob3;
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@-webkit-keyframes float-bob3 {
    0% {
        transform: translateY(-60px)
    }
    50% {
        transform: translateY(-15px)
    }
    100% {
        transform: translateY(-60px)
    }
}
.about-us-section .about-us-year .about-year-count {
    font-size: 34px;
    color: var(--theme1);
    font-weight: 800;
}
.about-us-section .about-us-year .about-year-title {
    font-size: 15px;
    line-height: 21px;
}
/***** about us section end *****/


/***** hero section two start *****/
.hero-sectino-two {
    height: 100%;
    padding-block: 80px;
}
.hero-sectino-two::before {
    background-color: rgb(0 0 0 / 70%);
}
.hero-sectino-two .search-card {
    padding-top: 60px;
}
.hero-sectino-two .search-card-heading::before,
.hero-sectino-two .search-card-heading::after  {
    display: none;
}
.hero-sectino-two .search-card-heading{
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    border-radius: 0 0 5px 5px;
}
.hero-sectino-two .hero-new-heading {
    font-size: 27px;
}
.hero-content p {
    font-size: 16px;
    line-height: 29px;
    color: #d3d3d3;
    margin-top: 15px;
}
.trustpilot-cta-section .trustpilot-inner {
    /* background-color: #04DA8D;  */
    padding:15px 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 6px;
 }
 .trustpilot-cta-section img {
     height: 22px;
 }
 .trustpilot-cta-section .trustpilot-text {
     font-size: 15px;
     gap: 12px;
     color: #3b3b3b;
 }
 .trustpilot-cta-section .trustpilot-star-list {
     gap: 2px;
 }
 .trustpilot-cta-section .trustpilot-star-list i {
     color: #00B67A;
 }
.trustpilot-cta-section-two {
    position: absolute;
    right: 0;
    bottom: 0;
}
.trustpilot-cta-section-two .trustpilot-inner {
    border-radius: 5px 0 0 0;
    box-shadow: none;
}
/***** hero section two end *****/


/***** apply type heading section start *****/
.country-heading-section {
    padding-block: 100px;
    background-image: url(../img/apply-type-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.country-heading-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #00000066;
}
.country-heading-section .apply-type-heading {
    color: #fff;
}
.country-heading-section .breadcrumb-link a,
.country-heading-section .breadcrumb-link i{
    color: #f3f3f3;
}
.country-heading-section .breadcrumb-link.active {
    color: #fff;
}
/***** apply type heading section end *****/


/*blog hero section start */
.blog-hero-section {
    padding-block: 40px;
    background: url(../img/blog-hero-section.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
.blog-hero-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #00000063;
}
.blog-hero-section .blog-hero-heading {
    font-size: 28px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 44px;
}
.blog-hero-section .search-card .search-input-label {
    font-size: 18px;
    margin-bottom: 7px;
}
.table-of-content .accordion-body{
    padding: 12px;
}
.table-of-content .accordion-body ul,
.table-of-content .accordion-body ol {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 18px !important;
}
.table-of-content .accordion-body ol {
    list-style-type: decimal !important;
}
.table-of-content .accordion-body li {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.table-of-content .accordion-body li strong {
    font-weight: 600;
}
.table-of-content .accordion-body li:hover {
    color: var(--theme1);
}
.table-of-content .accordion-button {
    padding: 11px;
}
.table-of-content .accordion-button::after {
    display: none;
}
.table-of-content .accordion-button:not(.collapsed){
    background: #eee;
    color: var(--theme1);
}
.table-of-content .accordion-button .content-icon {
    padding: 3px 10px;
    background: var(--theme1);
    border-radius: 2px;
    color: #fff;
}
.blog-urgent-icons {
    border-radius: 6px;
    padding: 12px 15px;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
}
.blog-urgent-icons i {
    color: var(--theme1);
}
.blog-detail-section .heading {
    font-size: 22px;
    line-height: 29px;
}


@media (max-width:767px){
    .table-of-content .accordion-body li {
        font-size: 14px;
        line-height: 22px;
    }
    .table-of-content .accordion-body ul,
    .table-of-content .accordion-body ol {
        gap: 10px;
    }
    .blog-hero-section .blog-hero-heading {
        font-size: 24px;
    }
    .blog-detail-section .heading {
        font-size: 17px;
    }
}
@media (max-width:576px){
    .blog-hero-section .blog-hero-heading {
        font-size: 20px;
        line-height: 32px;
    }
    .blog-hero-section {
        padding-block: 25px;
    }
    .blog-urgent-icons {
        border-radius: 6px;
        padding: 10px 12px;
        font-size: 14px;
    }
}
/*blog hero section end */


.error-section {
    margin-block: 75px;
}
.error-section .error-heading {
    font-size: 30px;
    color: #000;
    margin-top: 30px;
}
.error-section .error-para {
    font-size: 16px;
    color: #000000a1;
    font-weight: 500;
    margin-top: 8px;
    line-height: 28px;
}
.error-section .error-btn {
    gap: 6px;
    background-color: #d71921;
    color: #fff;
    font-size: 15px;
    padding: 10px 20px;
    font-weight: 600;
    border: 1px solid #d71921;
    border-radius: 6px;
    line-height: normal;
    transition: all 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
.error-section .error-btn:hover {
    background-color: transparent;
    color:#d71921;
}
@media (max-width:767px){
    .error-section {
        margin-block: 35px;
    }
    .error-section .error-heading {
        font-size: 21px;
        margin-top: 20px;
    }
    .error-section .error-para {
        font-size: 15px;
        margin-top: 7px;
        line-height: 24px;
    }
    .error-section .error-btn {
        font-size: 14px;
        padding: 9.5px 20px;
    }
}

.star-img ul {
	padding-left: 0px;
	margin-bottom: 0px;
}
.star-img ul li {
    display: inline-block;
    list-style: none;
    color: #00b67a;
    font-size: 13px;
}

.form-group .date-group::before {
    z-index: 1;
}
.date-group input {
    position: relative;
    z-index: 2;
	background: transparent;
}
.date-group input:focus {background: transparent;}

/*urgent-page-css-start*/

.urgent_banner_main_section {
    overflow: hidden;
    height: 540px;
    position: relative;
}
.urgent_banner_main_section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgb(0 0 0 / 73%) 30%, rgb(0 0 0 / 41%) 60%, rgb(33 37 41 / 0%) 100%);
    z-index: 1;
}
.urgent_banner_main_section img {
    object-fit: cover;
	object-position: bottom;
}

.urgent_banner_main_section .urgent_banner_middefault {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    z-index: 2;
}

.urgent_banner_main_section .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--theme1);
    padding: 4px 18px;
    border-radius: 60px 0px 60px 0px;
    font-size: 13px;
    font-weight: 600;
}
.urgent_banner_main_section .hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-top: 26px !important;
    margin-bottom: 26px;
}
.urgent_banner_main_section .hero-title span {
    color:var(--theme1);
	font-weight: 800;
}
.urgent_banner_main_section .hero-text {
    font-size: 15.5px;
    font-weight: 400;
    color: #fff;
    line-height: 28px;
}

.urgent_banner_main_section .hero-features {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.urgent_banner_main_section .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 16px;
    border-right: 1px solid rgba(255,255,255,.25);
}

.urgent_banner_main_section .feature-icon {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255,255,255,.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--theme1);
    font-size: 16px;
    flex-shrink: 0;
}

.urgent_banner_main_section .feature-content h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 1px;
}

.urgent_banner_main_section .feature-content p {
    color: #fff;
    opacity: .9;
    margin: 0;
    font-size: 13px;
    font-weight: 400;
}

.urgent_banner_main_section .urgent_banner_middefault .main_hero_last_btn {
    margin-top: 40px;
}

.main_hero_last_btn .hero-btn {
    font-size: 14px;
    font-weight: 600;
    background: var(--theme1);
    color: #fff;
    border-radius: 6px;
    padding: 10px 14px;
    border: 2px solid var(--theme1);
}
.main_hero_last_btn .hero-btn-outline {
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    border: 2px solid #fff;
    color: var(--theme1);
    border-radius: 6px;
    padding: 10px 14px;
}
.main_hero_last_btn .hero-btn i.fa-solid.fa-arrow-right {
    vertical-align: middle;
}
.main_hero_last_btn .hero-btn-outline i.fa-solid.fa-passport {
    margin-right: 2px;
    vertical-align: middle;
}
.main_hero_last_btn .hero-btn:hover {
    border:2px solid #fff;
    background:#fff !important;
    color:var(--theme1) !important;
}
.main_hero_last_btn .hero-btn-outline:hover {
	border: 2px solid var(--theme1);
    background: var(--theme1);
    color: #fff;
}

.content_main_urgtrp {padding: 50px 0px;padding-top: 40px;}

.wc-section{
    padding:50px 0;
    background:#fff;
}

.wc-section .wc-heading{
    text-align:center;
    margin-bottom:50px;
}

.wc-section .wc-heading span{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    color:#000;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.wc-section .wc-heading h2{
    font-size:32px;
    font-weight:700;
    color:#1f822a;
    margin-bottom:15px;
}

.wc-section .wc-heading h2 strong{
    color:#1f822a;
}

.wc-section .wc-heading p{
	font-size: 14px;
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.wc-section .wc-wrapper{
    margin-top:20px;
}

.wc-section .wc-card{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    border:1px solid #ebedf2;
    border-radius:15px;
    padding:20px;
    height:100%;
    transition:.35s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.wc-section .wc-card:hover{
    transform:translateY(-8px);
    border-color:#1f822a;
    box-shadow:0 15px 35px rgba(13,139,67,.18);
}

.wc-section .wc-icon{
    width:46px;
    min-width:46px;
    height:46px;
    border-radius:50%;
    background:#1f822a;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
}

.wc-section .wc-content{
    flex:1;
}

.wc-section .wc-content h5{
    font-size:17px;
    font-weight:700;
    color:#000;
    margin-bottom:4px;
}

.wc-section .wc-content p{
	font-size: 14px;
    margin:0;
    color:#666;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

    .wc-section{
        padding:50px 0;
    }

    .wc-section .wc-heading h2{
        font-size:30px;
    }

}

@media(max-width:767px){

    .wc-section{
        padding:50px 0;
    }

    .wc-section .wc-heading{
        margin-bottom:35px;
    }

    .wc-section .wc-heading h2{
        font-size:28px;
    }

	.wc-section .wc-card {
		padding: 14px;
		gap: 12px;
		border-radius: 10px;
	}

	.wc-section .wc-icon {
		width: 42px;
		min-width: 42px;
		height: 42px;
		font-size: 18px;
	}

	.wc-section .wc-content h5 {
		font-size: 15px;
	}
	.wc-section .wc-content p {
		font-size: 13px;
		line-height: 20px;
	}

}

.footer_top_section .footer_top_help_bxs {
    background: url('..//images/footer_top_mian_bg_image.webp') no-repeat center center;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    /* background-position-y: 72%; */
    position: relative;
    overflow: hidden;
    border-radius: 0;
    width: 100%;
    padding: 40px 0px;
}
.footer_top_section .footer_top_help_bxs::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(0 0 0) 30%, rgb(0 0 0) 60%, rgb(0 0 0) 74%, rgb(255 255 255 / 0%) 100%);
}
.footer_top_section .footer_top_help_bxs .row {
    position: relative;
    z-index: 2;
}

.footer_top_help_left h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.footer_top_help_right h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer_top_help_left p {
    font-size: 15px;
    color: #fff;
}
.footer_top_help_right p {
    font-size: 15px;
    color: #fff;
}

.footer_top_help_left .contact-item {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 12px;
}

.contact-item .contact-icon {
    width: 38px;
    height: 38px;
    border: 2px solid rgba(255,255,255,.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--theme1);
    font-size: 20px;
    flex-shrink: 0;
    margin-bottom: 8px;
}
.contact-item .contact-content {transition: all .3s ease-in-out;}
.contact-item .contact-content span {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    display: block;
    line-height: 18px;
}
.contact-item .contact-content strong {
    font-weight: 700;
	color: #fff;
    font-size: 14px;
}
.contact-item .contact-content strong .contact_click {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
	text-decoration: none;
	transition: all .3s ease-in-out;
}
.contact-item .contact-content:hover strong .contact_click {
	text-decoration: underline;
	color: var(--theme1);
}

.btn-group-wrap {
    margin-top: 22px;
    display: flex;
    gap: 12px;
}
.btn-group-wrap .apply_btn {
    width: 158px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    background: var(--theme1);
    color: #fff;
    border-radius: 6px;
    padding: 6px 12px;
    border: 2px solid var(--theme1);
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.btn-group-wrap .add_btn_check {
    font-size: 13px;
    font-weight: 600;
    background: #fff;
    border: 2px solid #fff;
    color: var(--theme1);
    border-radius: 6px;
    padding: 6px 12px;
	text-decoration: none;
	transition: all .3s ease-in-out;
}
.btn-group-wrap .apply_btn i.fa-solid.fa-arrow-right {
    vertical-align: middle;
}
.btn-group-wrap .add_btn_check i.fa-solid.fa-passport {
    margin-right: 2px;
    vertical-align: middle;
}
.btn-group-wrap .apply_btn:hover {
    border:2px solid #fff;
    background:#fff;
    color:var(--theme1);
}
.btn-group-wrap .add_btn_check:hover {
	border: 2px solid var(--theme1);
    background: var(--theme1);
    color: #fff;
}

@media(max-width:1200px){
	
	.urgent_banner_main_section .hero-features {
		display: flex;
		align-items: center;
		gap: 10px;
		flex-wrap: wrap;
		margin-top: 30px;
	}
	.urgent_banner_main_section .feature-item {
		display: flex;
		align-items: center;
		gap: 10px;
		padding-right: 12px;
	}
	.urgent_banner_main_section .hero-title {
		font-size: 36px;
		margin-top: 26px !important;
		margin-bottom: 26px;
	}
	.urgent_banner_main_section .hero-text {
		font-size: 15px;
	}
	.main_hero_last_btn .hero-btn {
		font-size: 16px;
		border-radius: 8px;
		padding: 8px 16px;
	}
	.main_hero_last_btn .hero-btn-outline {
		font-size: 16px;
		border-radius: 8px;
		padding: 8px 16px;
	}


}

@media(max-width:991px){
	
	.urgent_banner_main_section .hero-title {
		font-size: 34px;
		margin-top: 26px !important;
		margin-bottom: 26px;
	}
	.urgent_banner_main_section .hero-title br {
		display: none;
	}
	.urgent_banner_main_section .feature-icon {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
	.urgent_banner_main_section .feature-content h6 {
		font-size: 14px;
	}
	.urgent_banner_main_section .feature-content p {
		font-size: 13px;
	}

	.urgent_banner_main_section .hero-features{
		gap:20px;
	}

	.urgent_banner_main_section .feature-item{
		width:48%;
		border-right:none;
		padding-right:0;
	}
	.visa-guide-card.visa-info-card {
		margin-top: 30px;
	}

	.footer_top_help_left h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	.footer_top_help_right h2 {
		font-size: 24px;
		margin-bottom: 16px;
	}
	.contact-item .contact-icon {
		width: 34px;
		height: 34px;
		border-radius: 8px;
		font-size: 18px;
	}
	.footer_top_help_right {
		margin-top: 22px;
	}
.testimonial-section .testimonial-card .star-img {
    width: 95px;
}
.testimonial-card .user-name {
    font-size: 13px;
    line-height: 20px;
}
.testimonial-card .testimonial-review-date {
    font-size: 13px;
    line-height: 22px;
}
.main_hero_last_btn .hero-btn {
    font-size: 15px;
    border-radius: 8px;
    padding: 8px 16px;
}
.main_hero_last_btn .hero-btn-outline {
    font-size: 15px;
    border-radius: 8px;
    padding: 8px 16px;
}

}

@media(max-width:767px){
	
	.urgent_banner_main_section .hero-title {
		font-size: 28px;
		margin-top: 26px !important;
		margin-bottom: 18px;
	}
	.main_hero_last_btn .hero-btn {
		font-size: 15px;
		border-radius: 6px;
		padding: 8px 12px;
	}
	.main_hero_last_btn .hero-btn-outline {
		font-size: 15px;
		border-radius: 6px;
		padding: 8px 12px;
	}

	.visa-guide-card {
		border-radius: 10px;
		padding: 20px;
	}
	.visa-guide-heading span {
		width: 42px;
		height: 42px;
		border-radius: 8px;
		font-size: 18px;
	}
	.visa-guide-heading h3 {
		margin: 0;
		font-size: 20px;
		font-weight: 700;
	}

	.footer_top_section .footer_top_help_bxs {
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		padding: 30px 0px;
	}
	.contact-item .contact-icon {
		margin-bottom: 0;
		width: 34px;
		height: 34px;
		border-radius: 8px;
		font-size: 18px;
	}
	.footer_top_help_left .contact-item {
		display: flex;
		justify-content: start;
		align-items: center;
		gap: 14px;
		margin-bottom: 14px;
	}
	.footer_top_help_left h2 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.footer_top_help_right h2 {
		font-size: 20px;
		margin-bottom: 16px;
	}
	.contact-item .contact-content span {
		font-size: 14px;
	}
	.contact-item .contact-content strong {
		font-weight: 800;
	}
	.contact-item .contact-content strong .contact_click {
		font-weight: 800;
	}
	.btn-group-wrap .apply_btn {
		font-size: 14px;
		border-radius: 6px;
		padding: 8px 10px;
	}
	.btn-group-wrap .add_btn_check {
		font-size: 14px;
		border-radius: 6px;
		padding: 8px 10px;
	}
	
	.testimonial-section .testimonial-card .star-img .w-100 {
    width: 100% !important;
    height: auto !important;
}
.testimonial-section .testimonial-card .user-img {
    height: 40px;
    width: 40px;
    font-size: 17px;
}
.testimonial-card .user-name {
    font-size: 14px;
    line-height: 22px;
}
.testimonial-card .testimonial-review-date {
    font-size: 13px;
    line-height: 22px;
}



}
@media(max-width:575px){
	
	.urgent_banner_main_section {
		overflow: hidden;
		height: 470px;
		position: relative;
	}
	.urgent_banner_main_section .feature-item{
		width:48%;
	}

	.urgent_banner_main_section .feature-icon {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
	.urgent_banner_main_section .feature-item .feature-content {
		line-height: 20px;
	}
	.urgent_banner_main_section .feature-content h6 {
		font-size: 14px;
	}

	.urgent_banner_main_section .feature-content p{
		font-size:12px;
	}
	.urgent_banner_main_section .hero-text {
		font-size: 14px;
		line-height: 20px;
		margin-top: 14px !important;
	}
	.urgent_banner_main_section .hero-title {
		font-size: 24px;
		margin-top: 26px !important;
		margin-bottom: 18px;
	}
	.urgent_banner_main_section .hero-badge {
		padding: 4px 12px;
		border-radius: 60px 0px 60px 0px;
		font-size: 11px;
	}
	
	.footer_top_section .footer_top_help_bxs::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(90deg, rgb(0 0 0) 30%, rgb(0 0 0 / 42%) 60%, rgb(0 0 0 / 36%) 74%, rgb(255 255 255 / 0%) 100%);
	}

}



@media(max-width:480px){
	
	.urgent_banner_main_section .hero-features {
		gap: 10px;
	}
	.urgent_banner_main_section .feature-item {
		width: 48%;
		margin-bottom: 10px;
	}
	.urgent_banner_main_section .feature-icon {
		width: 30px;
		height: 30px;
		font-size: 14px;
	}
	.urgent_banner_main_section .feature-content h6 {
		font-size: 12px;
	}
	.urgent_banner_main_section .feature-content p {
		font-size: 11px;
	}
	.urgent_banner_main_section .urgent_banner_middefault .main_hero_last_btn {
		margin-top: 12px;
	}
	.main_hero_last_btn .hero-btn {
		width: 100%;
		text-align: center;
		font-size: 15px;
		border-radius: 6px;
		padding: 8px 12px;
	}
	.main_hero_last_btn .hero-btn-outline {
		width: 100%;
		text-align: center;
		font-size: 15px;
		border-radius: 6px;
		padding: 8px 12px;
	}
	.main_hero_last_btn .btn.hero-btn-outline.ms-3 {
		margin-left: 0px !important;
		margin-top: 12px;
	}
	.urgent_banner_main_section .hero-title {
		font-size: 24px;
		margin-top: 22px !important;
		margin-bottom: 14px;
	}
	.urgent_banner_main_section .hero-text {
		font-size: 13px;
		line-height: 18px;
		margin-top: 14px !important;
	}
	.urgent_banner_main_section .hero-features {
		gap: 10px;
		margin-top: 20px;
	}

	.visa-guide-heading {
		display: flex;
		align-items: start;
		gap: 12px;
	}
	.visa-guide-heading span {
		width: 38px;
		min-width: 38px;
		height: 38px;
		border-radius: 6px;
		font-size: 17px;
	}
	.visa-guide-heading h3 {
		margin: 0;
		font-size: 18px;
		font-weight: 700;
	}
	.visa-guide-heading p {
		font-size: 14px;
	}

	.visa-info-box {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 10px;
		border-radius: 6px;
	}
	.footer_top_help_left h2 {
		font-size: 18px;
		margin-bottom: 0px;
	}
	.footer_top_help_right h2 {
		font-size: 18px;
		margin-bottom: 0px;
	}
	.footer_top_help_left p {
    font-size: 13px;
    margin-bottom: 10px;
}
.footer_top_help_right p {
    font-size: 13px;
    margin-bottom: 10px;
}
.btn-group-wrap .apply_btn {
    font-size: 14px;
    border-radius: 6px;
    padding: 6px 10px;
}
.btn-group-wrap .add_btn_check {
    font-size: 14px;
    border-radius: 6px;
    padding: 6px 10px;
}
	.contact-item .contact-content span {
		font-size: 13px;
	}

}

@media(max-width:420px){
	.main_hero_last_btn .hero-btn {
		width: 100%;
		text-align: center;
		font-size: 13px;
		border-radius: 6px;
		padding: 6px 10px;
	}
	.main_hero_last_btn .hero-btn-outline {
		width: 100%;
		text-align: center;
		font-size: 13px;
		border-radius: 6px;
		padding: 6px 10px;
	}
	.urgent_banner_main_section .hero-text {
		font-size: 12px;
		line-height: 18px;
		margin-top: 14px !important;
	}
	.urgent_banner_main_section .hero-title {
		font-size: 22px;
		margin-top: 22px !important;
		margin-bottom: 14px;
	}
	.urgent_banner_main_section .hero-title br {
		display: none;
	}
	.visa-guide-heading h3 {
		margin: 0;
		font-size: 17px;
	}

}

/*urgent-page-css-end*/