:root  {
    --theming1 : #c79b31;
    --theming1-hover : #fc0b17;
}
body {
	font-family: "Inter", sans-serif;
}
.navbar {
    transition: all 0.3s ease-in-out;
    padding-block: 0px;
    height: 80px;
}
.navbar.scrolled  {
    animation:  fixedAnim 1s forwards;
    box-shadow:  0 6px 6px rgba(0,  0,  0,  0.06);
    position:  fixed;
    top:  0;
    z-index:  600;
    background-color:  white;
    width:  100%;
}
@keyframes fixedAnim  {
    from  {
    top:  -100px;
}
to  {
    top:  0;
}
}
.navbar .navbar-logo {
    height: 100%;
    background: transparent;
    width: auto;
    margin-top: 0px;
    border-radius: 0;
    padding: 4px;
    text-decoration: none;
}
.navbar .navbar-logo .navbar_logo_txt {
    font-size: 26px;
    font-weight: 600;
    color: #000;
}
.navbar .navbar-logo .navbar_logo_txt span {
    font-weight: 700;
    color: var(--theming1);
}
.navbar.scrolled  {
    background-color:  #fff;
    box-shadow:  rgba(60,  64,  67,  0.3) 0px 1px 2px 0px,  rgba(60,  64,  67,  0.15) 0px 1px 3px 1px;
}
.navbar.scrolled .navbar-logo img  {
    filter: unset;
}
.navbar .nav-link  {
    font-size:  15px;
    font-weight:  600;
    color:  #fff;
    padding: 4px 5px ;
    border-radius:  3px;
}
.navbar .nav-link::before  {
	display: none;
    content:  '';
    position:  absolute;
    left:  0;
    top:  0;
    height:  100%;
    z-index:  -1;
    width:  100%;
    background-color: #d7192248 ;
    transition:  transform 0.4s ease;
    transform:  scaleX(0);
    transform-origin:  right center;
}
.navbar .nav-link.active  {
    color:  #e9e9e9 !important;
}
.navbar .nav-link:hover::before  {
    transform:  scaleX(1);
    transform-origin:  left center;
}
.navbar.scrolled .nav-link  {
    color:  #000;
}
.navbar .navbar-nav  {
    gap:  22px;
}
.navbar .nav-contact-link  {
    color:  #fff;
    font-weight:  600;
    font-size:  14px;
    transition:  all 0.3s ease-in-out;
}
.navbar .nav-contact-link:hover  {
    color:  var(--theming1);
}
.navbar .header-content-link  {
    height:  35px;
    width:  35px;
    border:  1.6px solid #fff;
    font-size:  15px;
    color:  #ffff;
    transition:  all 0.3s ease-in-out;
}
.navbar .header-content-link:hover  {
    background-color:  #ffff;
    color:  var(--theming1);
}
.navbar.scrolled .header-content-link,  .navbar.navbar-two .header-content-link  {
    border-color: var(--theming1);
    color:  var(--theming1);
}
.navbar.scrolled .header-content-link:hover,  .navbar.navbar-two .header-content-link:hover  {
    background-color:  var(--theming1);
    color:  #fff;
}
.navbar.scrolled .nav-contact-link  {
    color:  #000;
}
.navbar.scrolled .nav-contact-link i  {
    color:  var(--theming1);
}
.navbar.scrolled .nav-link.active  {
    color:  var(--theming1) !important;
}
.navbar.scrolled .nav-link:hover  {
    color:  var(--theming1);
}
.navbar.scrolled .nav-contact-link:hover  {
    color:  var(--theming1);
}
.navbar .navbar-toggler  {
    height:  36px;
    width:  48px;
    border-radius:  5px;
    padding:  10px;
    font-size:  18px;
    color:  var(--theming1);
    background-color:  #fff;
}
.navbar-two  {
    background-color:  #FFF;
    position:  sticky !important;
    box-shadow:  rgba(60,  64,  67,  0.3) 0px 1px 2px 0px,  rgba(60,  64,  67,  0.15) 0px 1px 3px 1px;
}
.navbar-two.scrolled  {
    position:  fixed !important;
}
.navbar-two .navbar-logo img  {
    filter:  brightness(1);
}
.navbar-two .nav-link  {
    color:  #000;
}
.navbar-two .nav-link.active  {
    color:  var(--theming1) !important;
}
.navbar-two .nav-link:hover  {
    color:  var(--theming1);
}
.navbar-two .nav-contact-link  {
    color:  #000;
}
.navbar-two .nav-contact-link i  {
    color:  var(--theming1);
}
.navbar .drop-menu  {
    top:  180%;
    box-shadow:  rgba(9,  30,  66,  0.25) 0px 4px 8px -2px,  rgba(9,  30,  66,  0.08) 0px 0px 0px 1px;
    max-height:  360px;
    visibility:  hidden;
    opacity:  0;
    transition:  all 0.3s ease-in-out;
}
.navbar .drop-menu .drop-link  {
    color:  #3a3a3a;
    font-size:  14px;
    padding:  10px 18px 10px 12px;
    line-height:  normal;
    transition:  all 0.3s ease-in-out;
}
.navbar .drop-menu .drop-link:hover  {
    color:  var(--theming1);
}
.navbar .drop-menu .drop-link::before  {
    content:  '';
    position:  absolute;
    left:  -4px;
    top:  0;
    height:  100%;
    width:  3px;
    background-color:  var(--theming1);
    transition:  all 0.3s ease-in-out;
}
.navbar .drop-menu .drop-link:hover::before  {
    left:  0;
}
.navbar .drop-main .nav-link i  {
    transition:  all 0.3s ease-in-out;
}
.navbar .drop-main:hover .nav-link i  {
    transform:  rotate(-180deg);
}
.navbar .drop-main:hover .drop-menu  {
    opacity:  1;
    top:  100%;
    visibility:  visible;
}
.navbar .nav-item  {
    padding-block:  6px;
}
.navbar .drop-main  {
    overflow:  hidden;
}
.navbar .drop-main:hover  {
    overflow:  visible;
}
.navbar .urgent-btn  {
    background-color:  var(--theming1);
    color:  #fff;
    font-size:  14px;
    line-height:  normal;
    padding:  8px 20px;
    border-radius:  4px;
    font-weight:  600;
    animation:  blink 1.5s linear infinite;
}
@keyframes blink  {
    0%,  100%  {
    background-color: var(--theming1);
}
50%  {
    background-color:  #a77a0f;
}
}

/*----banner section start----*/

.banner-section {
    height: 540px;
    position: relative;
    z-index: 1;
    margin-top: 26px;
}
.banner-section .banner-tp_mn_bxs .bng21 {
	height: 540px;
	position: relative;
	z-index: 1;
	border-radius: 20px;
	overflow: hidden;
}

.banner-section .banner-tp_mn_bxs .bng21:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-color: #000000b5;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.banner-top-sec {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.banner-top-text-bxs .banner-tg-text {
    font-size: 54px;
    font-weight: 600;
    color: #fff;
    margin-top: 40px;
    text-align: center;
}
.banner-top-text-bxs .banner-tg-cntnt {
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin: 30px 0px;
}
.banner-btn-bxss {
    display: flex;
    margin-top: 40px !important;
    justify-content: center;
}
.apply-btn-tp {
	background-color: var(--theming1);
	border: 2px solid var(--theming1);
	color: #fff;
	padding: 12px 40px;
	text-align: center;
	border-radius: 5px;
	text-decoration: none;
	box-shadow: 0 0 4px #000000;
	font-weight: 500;
	transition: all 0.3s ease-in-out;
}

.apply-btn-tp:hover {
	background-color: #fff;
	color: var(--theming1);
}


/*----banner section end----*/
/* apply section start */

.features-style-one-items {
    position: relative;
    z-index: 1;
    top: -60px;
    width: 92%;
    margin: auto;
    margin-bottom: -60px;
}

.feature-style-one-item .item {
	background: #fff;
	padding: 16px 20px;
	padding-bottom: 16px;
	box-shadow: 0 0 4px #d3d3d3;
	height: 100%;
	overflow: hidden;
	position: relative;
	background-size: contain !important;
	background-position: right top !important;
	transition: all 0.32s ease-in-out;
	background-repeat: no-repeat !important;
	border-radius: 10px;
}

.color-secondary .feature-style-one-item.active .item {
	background: var(--theming1);
}

.feature-style-one-item .item .icon img {
	height: 52px;
	margin-bottom: 12px;
}

.feature-style-one-item .item img,
.feature-style-one-item .item h4,
.feature-style-one-item .item p {
	transition: all 0.32s ease-in-out;
}

.feature-style-one-item .item h4 {
    font-size: 18px;
    font-weight: 700;
    height: 44px;
}

.feature-style-one-item .item p {
	display: none;
	font-size: 14px;
	color: #4e4e4e;
}

.feature-style-one-item .item img,
.feature-style-one-item .item h4,
.feature-style-one-item .item p {
	transition: all 0.32s ease-in-out;
}

.feature-style-one-item .item .number {
	text-align: right;
	position: relative;
	z-index: 1;
}

.feature-style-one-item .item span {
	font-size: 48px;
	line-height: 1;
	font-weight: 900;
	color: transparent;
	-webkit-text-stroke: 1px #e5e7f1;
	background: transparent;
	padding-left: 20px;
	transition: all 0.32s ease-in-out;
	line-height: 1;
}

.feature-style-one-item .item .number::after {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-top: 1px solid #e7e7e7;
	height: 2px;
	width: 78%;
	content: "";
	z-index: -1;
	transition: all 0.32s ease-in-out;
}

.feature-style-one-item.active .item {
	background: var(--theming1);
}

.feature-style-one-item.active .item .icon img {
    filter: invert(5) brightness(8.5);
}

.feature-style-one-item.active .item h4 {
	color: #fff;
}

.feature-style-one-item.active .item p {
	color: #fff;
}

.feature-style-one-item .item img,
.feature-style-one-item .item h4,
.feature-style-one-item .item p {
	transition: all 0.32s ease-in-out;
}

.feature-style-one-item.active .item span {
	background: transparent;
}

.feature-style-one-item.active .item .number::after {
	border-color: rgba(255, 255, 255, 0.3);
}

/* apply section end */

.hero-section  {
    height:  510px;
    background:  url(../img/urgent-bg.webp) no-repeat;
    background-size:  cover;
    background-position:  center;
}
.hero-section::before  {
    content:  '';
    position:  absolute;
    left:  0;
    top:  0;
    height:  100%;
    width:  100%;
    background-color:  rgba(0,  0,  0,  0.397);
}
.hero-section .hero-heading-title  {
    color:  #eee;
    font-size:  18px;
}
.hero-section .hero-heading-title-two  {
    font-size:  25px;
    line-height:  normal;
    border-radius:  6px;
    padding:  5px 28px;
}
.search-card .hero-heading  {
    font-size:  21px;
    font-weight:  700;
    color:  #fff;
}
.home-search-card .hero-heading  {
    font-size:  21px;
    font-weight:  700;
    color:  #fff;
    left: -15px;
    top: 25px;
    padding:  10px 14px;
    background: var(--theming1);
    border-radius:  5px 5px 5px 0;
}
.home-search-card .hero-heading::after  {
    content: '';
    position: absolute;
    right:  -44px;
    top:  -1px;
    border:  23px solid;
    border-color:  transparent transparent #d71921 #d71921;
    display:  none;
}
.home-search-card .hero-heading::before  {
    content:  '';
    position:  absolute;
    left:  -1px;
    bottom:  -16px;
    border:  8px solid;
    border-color: #896613 #896613 transparent transparent;
}
.hero-section .hero-heading-two  {
    background-color:  var(--theming1);
    padding:  6px 10px !important;
    font-size:  24px;
    border-radius:  6px;
}
.hero-section .hero-content  {
    margin-top:  15px;
}
.hero-section .hero-content p  {
    line-height:  29px;
    font-size:  17px;
    color:  #ececec;
    font-weight:  500;
}
@keyframes updown-two  {
    0%  {
    transform:  translateY(-20px);
}
100%  {
    transform:  translateY(0px);
}
}
.hero-signup-cta  {
    margin-top:  -20px;
}
.hero-signup-cta .content-wrapper  {
    background-color:  #fff;
    -webkit-box-shadow:  0 0.2rem 3rem 0 rgba(0,  0,  0,  .1);
    box-shadow:  0 0.2rem 3rem 0 rgba(0,  0,  0,  .1);
    padding:  35px 60px;
}
.hero-signup-cta .step-wrapper .number  {
    display:  flex;
    padding-right:  25px;
    position:  relative;
    font-weight:  700;
    font-size:  28px;
    color:  var(--theming1);
}
.hero-signup-cta .step-wrapper .number::before  {
    content:  '';
    background-color:  var(--theming1);
    position:  absolute;
    right:  10px;
    bottom:  12px;
    transform:  rotate(45deg);
    width:  5px;
    height:  5px;
}
.hero-signup-cta .step-wrapper .copy-02  {
    font-size:  14px;
    color:  #333;
}
.search-card  {
    background-color:  #12101085;
    padding:  30px;
}
.home-search-card  {
    padding-top:  120px;
}
.hero-input-group .hero-label  {
    font-size:  17px;
    font-weight:  700;
    margin-bottom:  6px;
    color:  #000;
}
.home-search-card .hero-input-group .hero-label  {
    color:  #fff;
    font-size:  18px;
}
.search-card .theme-btn  {
    height:  44px;
    border-radius:  6px;
}
.hero-section .hero-input-group .select2-selection  {
    padding-left:  50px;
}
.hero-section .hero-input-group .select2-selection::before  {
    position:  absolute;
    left:  0px;
    top:  0;
    height:  100%;
    width:  50px;
    content:  "\f2c2";
    font-family:  FontAwesome;
    display:  flex;
    align-items:  center;
    justify-content:  center;
    font-size:  25px;
    color:  var(--theming1);
}
.hero-section .hero-second-input .select2-selection::before  {
    content:  "";
    background:  url(../img/life-ring.svg) no-repeat;
    background-size:  29px;
    background-position:  center;
}
.hero-section .hero-input-group .select2-selection__rendered  {
    height:  100%;
    display:  flex !important;
    align-items:  center;
    border-left:  1px solid #cbcbcb;
}
.step-card  {
    border-radius:  12px;
    box-shadow:  rgba(60,  64,  67,  0.3) 0px 1px 2px 0px,  rgba(60,  64,  67,  0.15) 0px 1px 3px 1px;
    transition:  all 0.3s ease-in-out;
}
.step-card .step-card-top  {
    padding:  10px;
}
.step-card .step-card-headaing  {
    font-size:  18px;
    font-weight:  700;
}
.step-card .step-icon  {
    height:  80px;
    width:  80px;
    margin-top:  10px;
    padding:  17px;
    box-shadow:  rgba(60,  64,  67,  0.3) 0px 1px 2px 0px,  rgba(60,  64,  67,  0.15) 0px 1px 3px 1px;
}
.step-card .step-footer  {
    padding:  10px;
    background-color:  #f5f5f5;
}
.step-card .step-count  {
    font-size:  33px;
    color:  var(--theming1);
    font-weight:  800;
    line-height:  normal;
}
.step-card .step-para  {
    margin-top:  5px;
    font-weight:  500;
    line-height:  23px;
}
.step-card:hover  {
    transform:  translateY(-8px);
}
.price-section .tab-main  {
    background-color:  #d1d1d1;
    border-radius:  6px;
    padding:  5px;
    margin-top:  15px;
}
.tab-main .tabs__nav-decoration  {
    position:  absolute;
    top:  0;
    left:  0;
    height:  100%;
    transition:  width 0.2s linear 0s,  transform 0.2s ease-out 0s;
    background-color: #ffff;
    border-radius:  5px;
    z-index:  1;
}
.price-section .tab-main .tabs__nav-list  {
    flex-direction:  row !important;
    overflow:  unset !important;
}
.tab-main .tabs__nav-item  {
    transition-property:  all;
    transition-duration:  0.2s;
    transition-timing-function:  linear;
    transition-delay:  0s;
    padding:  10px 20px;
    cursor:  pointer;
    font-weight: 700;
    font-size:  17px;
}
.tab-main .tabs__nav-item.js-active  {
    transition-property:  all;
    transition-duration:  0.2s;
    transition-timing-function:  linear;
    transition-delay:  0.05s;
    color:  var(--theming1);
}
.tab-main .tabs__panels  {
    position:  relative;
    margin-top:  30px;
}
.price-section .tabs__panel {
    display:  none;
    transition:  all 0.25s linear 0s;
    opacity:  0;
}
.price-section .tabs__panel.js-active  {
    display:  block;
    opacity:  1;
}
.pricing-card  {
    border-radius:  12px;
    transition:  all 0.3s ease-in-out;
    padding:  15px;
    box-shadow:  rgb(99 99 99/20%) 0 2px 8px 0;
}
.pricing-card:hover  {
    box-shadow:  rgba(0,  0,  0,  0.24) 0px 3px 8px;
}
.pricing-card .pricing-header  {
    font-size:  16px;
    font-weight: 500;
    color:  #333;
}
.pricing-card .pricing-header span  {
    font-size:  26px;
    font-weight:  700;
}
.pricing-card .dubai-visa-price  {
    font-size:  38px;
    font-weight:  700;
    gap:  6px;
}
.pricing-card .dubai-visa-price sup  {
    font-size:  18px;
    font-weight:  700;
    color:  var(--theming1);
}
.pricing-card .price-card-data-inner  {
    gap:  5px;
}
.pricing-card .dubai-visa-price .price-two  {
    display:  none;
}
.pricing-card .visa-checkbox  {
    margin-bottom:  0px;
}
.pricing-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;
}
.pricing-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;
}
.pricing-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);
}
.pricing-card .visa-checkbox input:checked ~ .visa-checkbox-inner  {
    background:  #31B63A;
}
.pricing-card .visa-checkbox input:checked ~ .visa-checkbox-inner::before  {
    transform:  translate(54px);
    transition:  0.3s;
}
.pricing-card .visa-checkbox input:checked ~ .visa-checkbox-inner::after  {
    content:  "Express";
    text-align:  left;
    font-size:  12px;
}
.pricing-card .price-card-data  {
    gap:  6px;
    padding-block:  12px;
    line-height:  normal;
    align-items:  start !important;
}
.pricing-card .price-card-data .price-check  {
    height:  17px;
    min-width:  17px;
    max-width:  17px;
    font-size:  14px;
    background-color:  #d1d1d1;
    color:  #333;
    transition:  all 0.3s ease-in-out;
    margin-top:  1px;
}
.pricing-card .price-card-data .price-check img  {
    filter:  grayscale(1);
}
.pricing-card .price-card-inner  {
    font-size:  15px;
    display:  flex;
    gap:  8px;
    white-space:  nowrap;
    overflow:  hidden;
    text-overflow:  ellipsis;
}
.pricing-card .price-card-inner .service-type  {
    font-weight:  700;
    white-space:  nowrap;
}
.pricing-card .price-apply-btn  {
    font-weight:  500;
    background-color:  var(--theming1);
    border-radius:  10px;
    color:  #fff;
    font-size:  16px;
    padding:  8px 25px;
    transition:  all 0.3s ease-in-out;
    outline:  none;
    gap:  7px;
    box-shadow:  rgba(60,  64,  67,  0.3) 0px 1px 2px 0px,  rgba(60,  64,  67,  0.15) 0px 1px 3px 1px;
}
.pricing-card .price-apply-btn span  {
    background-color:  transparent !important;
}
.pricing-card .price-apply-btn i  {
    transition:  all 0.3s ease-in-out;
}
.pricing-card .price-apply-btn:hover  {
    background-color:  var(--theming1-hover);
}
.pricing-card .price-apply-btn:hover i  {
    transform:  translateX(10px);
}
.pricecard1 .price-card-data .price-check-two  {
    background-color:  #31B63A;
    color:  #ffff;
}
.price-section .price-main-heading  {
    background-color:  var(--theming1);
    color:  #ffffff;
    font-weight:  700;
    padding:  10px ;
    font-size:  18px;
    box-shadow:  rgba(60,  64,  67,  0.3) 0px 1px 2px 0px,  rgba(60,  64,  67,  0.15) 0px 1px 3px 1px;
}
.whychoose-card  {
    padding:  14px;
    box-shadow:  rgba(50,  50,  93,  0.25) 0px 2px 5px -1px,  rgba(0,  0,  0,  0.3) 0px 1px 3px -1px;
    border-radius:  11px;
}
.whychoose-card .whychoose-title  {
    font-size:  16px;
    font-weight:  700;
}
.whychoose-card .whychoose-icon  {
    height:  52px;
    width:  52px;
    margin-bottom:  10px;
    border-radius:  50%;
    transition:  all 0.3s ease-in-out;
}
.whychoose-card:hover .whychoose-icon  {
    transform:  scale(1.3);
}
.visa-sample-section  {
    border-left:  1px dashed #cfcfcf;
}
.visa-sample-card  {
    box-shadow:  rgba(50,  50,  93,  0.25) 0px 6px 12px -2px,  rgba(0,  0,  0,  0.3) 0px 3px 7px -3px;
    height:  300px;
}
.review-card  {
    padding:  14px;
    border-radius:  9px;
    box-shadow:  rgba(9,  30,  66,  0.25) 0px 4px 8px -2px,  rgba(9,  30,  66,  0.08) 0px 0px 0px 1px;
}
.review-card .review-icon  {
    height:  50px;
    width:  50px;
    font-size:  22px;
    font-weight:  700;
}
.review-card .reviewer-name  {
    font-size:  16px;
    font-weight:  700;
}
.review-card .review-heading  {
    font-size:  17px;
    margin-top:  12px;
    font-weight:  700;
    margin-bottom:  6px;
}
.review-card .review-content p  {
    font-size:  15px;
    line-height:  26px;
    margin-bottom:  0;
}
.review-card .review-date  {
    color:  #000;
    font-size:  15px;
}
.faq-section .accordion  {
    gap:  10px;
}
.faq-section .accordion-button::after  {
    display:  none;
}
.faq-section .accordion-button .close  {
    opacity:  0;
}
.faq-section .accordion-button:not(.collapsed)  {
    background-color: #cfcfcf46;
    color:  var(--theming1);
}
.faq-section .accordion-button .faq-icon  {
    height:  17px;
    width:  17px;
    right:  10px;
    top:  50%;
    transform:  translateY(-50%);
}
.faq-section .accordion-button:not(.collapsed) .close  {
    opacity:  1;
}
.faq-section .accordion-button:not(.collapsed) .open  {
    opacity:  0;
}
.faq-section .accordion-button,  .faq-section .accordion-body  {
    padding:  14px;
}
.faq-section .accordion-body  {
    padding-bottom:  4px;
}
.faq-section .accordion-button  {
    font-size:  16px;
    font-weight:  700;
    padding-right:  28px !important;
}
.faq-section .accordion-body p  {
    margin-bottom:  10px;
}
.faq-section .accordion-body ul  {
    padding-left:  22px;
    display:  flex;
    flex-direction:  column;
    gap:  5px;
}
.faq-section .accordion-body li  {
    color:  #000;
}
.footer-cta  {
    background-color:  #eeeeee;
    padding-block:  25px;
}
.footer-cta .footer-cta-title  {
    font-size:  18px;
    font-weight:  700;
    color:  #000;
}
.footer-cta .cta-social-media  {
    gap:  10px;
}
.footer-cta .cta-social  {
    color:  var(--theming1);
    height:  30px;
    width:  30px;
    background-color:  #fff;
    transition:  all 0.3s ease-in-out;
    box-shadow:  rgba(60,  64,  67,  0.3) 0px 1px 2px 0px,  rgba(60,  64,  67,  0.15) 0px 1px 3px 1px;
}
.footer-cta .cta-social:hover  {
    background-color:  var(--theming1);
    color:  #ffffff;
}
.footer  {
    background: #f7f7f7;
    padding-block:  45px;
}
.footer .footer-logo {
    height: auto;
    width: auto;
    margin-top: -6px;
}
.footer .footer-logo .footer_logo_txt {
    font-size: 28px;
    font-weight: 600;
    color: #000;
}
.footer .footer-logo .footer_logo_txt span {
    font-weight: 700;
    color: var(--theming1);
}
.footer .footer-heading  {
    font-size:  16px;
    font-weight:  700;
    padding-bottom:  3px;
}
.footer .footer-heading::before  {
    content:  '';
    position:  absolute;
    left:  0;
    bottom:  0;
    height:  2px;
    border-radius:  5px;
    width:  40px;
    background-color:  var(--theming1);
}
.footer .footer-text  {
    margin-top:  12px;
}
.footer .footer-text p  {
    line-height:  29px;
    font-size:  14px;
    font-weight:  500;
}
.footer .footer-list  {
    gap:  12px;
    padding-top:  10px;
}
.footer .footer-link  {
    font-weight:  600;
    color:  #242424;
    line-height:  normal;
    transition:  all 0.3s ease-in-out;
    font-size:  15px;
}
.footer .footer-link:hover  {
    color:  var(--theming1);
    transform:  translateX(7px);
}
.footer .footer-contact-list  {
    gap:  15px;
    padding-top:  11px;
}
.footer .footer-contact  {
    color:  #000;
    gap:  7px;
    font-weight:  500;
    font-size:  15px;
    line-height:  25px;
}
.footer .footer-contact .contact-icon  {
    height:  28px;
    width:  28px;
    min-width:  28px;
    margin-top:  4px;
    border:  1.4px solid var(--theming1);
    color:  var(--theming1);
    transition:  all 0.3s ease-in-out;
}
.footer .footer-contact:hover .contact-icon  {
    background-color:  var(--theming1);
    color:  #fff;
}
.footer .footer-payment-heading  {
    margin-top:  12px;
    font-size:  17px;
    font-weight:  700;
}
.footer .footer-payment-img  {
    height:  55px;
    margin-top:  5px;
}
.footer .footer-title  {
    font-size:  16px;
    font-weight:  700;
    color:  #000;
    margin-top:  18px;
}
.footer .footer-title-two  {
    font-size:  18px;
    font-weight:  700;
    color:  #000;
    margin-top:  5px;
}
.copyright-section  {
    background-color:  #eeeeee;
    padding-block:  16px;
}
.copyright-section .copyright-text  {
    color:  #000;
    font-weight:  600;
}
.testimonial-section .allreview  {
    padding:  6px 14px;
    color:  #00613F;
}
.testimonial-section .allreview .review-img  {
    height:  28px;
}
.testimonial-section .testimonial-card .user-img  {
    height:  43px;
    width:  43px;
    font-size:  18px;
    font-weight:  700;
}
.testimonial-card .user-name  {
    font-weight:  700 !important;
}
.testimonial-section .testimonial-card .card-data  {
    padding:  15px;
}
.testimonial-section .testimonial-card .card-head  {
    font-size:  16px;
    color:  #000;
    line-height:  normal;
    font-weight:  700 !important;
}
.testimonial-section .testimonial-card .card-para  {
    font-size:  15px;
    line-height:  27px;
    margin-top:  9px;
    color:  #4e4e4e;
    display:  -webkit-box;
    -webkit-line-clamp:  5;
    -webkit-box-orient:  vertical;
    text-overflow:  ellipsis;
    overflow:  hidden;
}
.testimonial-section .testimonial-card .quote  {
    color:  #4d4d4d;
    font-size:  20px;
}
.testimonial-card .card-para p  {
    display:  inline;
}
.testimonial-section .testimonial-card .testimonial-footer  {
    padding:  15px;
    background-color:  #dfdfdf;
}
.testimonial-section .testimonial-card .star-img  {
    width:  115px;
}
.testimonial-section .testimonial-card .date  {
    font-size:  14px;
    color:  #000;
}
.testimonial-section .testimonial-card .date .date-icon  {
    color:  #333;
    margin-right:  5px;
}
.testimonial-card .testimonial-review-date  {
    font-size:  13px;
}
.content-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.content-section h1::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    height: 3px;
    border-radius: 5px;
    width: 100px;
    background-color: var(--theming1);
}
@media (max-width: 991px){
	.content-section h1 {
		font-size: 28px;
	}
}
@media (max-width: 767px){
	.content-section h1 {
		font-size: 26px;
	}
}
@media (max-width: 480px){
	.content-section h1 {
		font-size: 22px;
	}
}
.content-section .content-card  {
    padding:  14px;
    border-radius:  10px;
    width:  100%;
    box-shadow:  rgba(60,  64,  67,  0.3) 0px 1px 2px 0px,  rgba(60,  64,  67,  0.15) 0px 1px 3px 1px;
}
.content-card .ellipsis3  {
    display:  -webkit-box;
    overflow:  hidden;
    text-overflow:  ellipsis;
    -webkit-line-clamp:  3;
    -webkit-box-orient:  vertical;
    max-height:  107px;
}
.content-card .read-more-btn  {
    font-size:  16px;
    font-weight: 700;
    color:  var(--theming1);
    background-color: transparent;
    line-height:  normal;
}
.content-card p  {
    margin-bottom:  8px;
    line-height:  28px;
}
.content-card li  {
    text-transform:  unset;
    line-height:  28px;
}
.content-card li p  {
    margin-bottom:  0;
}
.content-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    padding-top: 8px;
    margin-bottom: 10px;
}
.content-card h3  {
    font-size:  18px;
    font-weight:  700;
    color:  #000;
    padding-top: 8px;
    margin-bottom:  10px;
}
.content-card h4  {
    font-size:  19px;
    font-weight:  700;
    color:  #000;
    padding-top: 8px;
    margin-bottom:  10px;
}
.content-card strong,  .content-card b  {
    font-weight:  700;
}
.content-card table,  .content-card th,  .content-card td  {
    border:  1px solid rgb(161,  161,  161);
    border-collapse:  collapse;
}
.content-card th,  .content-card td  {
    padding:  8px;
}
.content-card ul,  .content-card ol  {
    padding-left:  23px ;
    display:  flex;
    flex-direction:  column;
    gap:  9px;
}
.content-section .content-note  {
    padding:  10px;
    font-size:  15px;
}
.content-section .content-note i  {
    color:  var(--theming1);
}
.country-items  {
    box-shadow:  rgba(67,  71,  85,  0.27) 0px 0px 0.25em,  rgba(90,  125,  188,  0.05) 0px 0.25em 1em;
    border-radius:  6px;
    padding:  13px;
    transition:  all 0.3s ease-in-out;
    display:  -webkit-box;
    text-overflow:  ellipsis;
    overflow:  hidden;
    -webkit-box-orient:  vertical;
    -webkit-line-clamp:  1;
    background-color:  transparent !important;
}
.country-items a  {
    font-weight:  600;
    color:  #000;
    text-decoration:  none;
    font-size:  15px;
    text-overflow:  ellipsis;
    overflow:  hidden;
    width:  100%;
    display:  block;
    white-space:  nowrap;
    transition:  all 0.3s ease-in-out;
}
.country-items a:hover  {
    color:  var(--theming1);
}
.country-items:hover  {
    transform:  scale(1.07);
}
.country-section .country-inner  {
    gap:  10px;
}
.country-section .country-inner>*  {
    flex:  0 0 13.50%;
    width:  13.50%;
}
.country-section .read-more-btn  {
    background-color:  var(--theming1);
    font-weight:  600;
    color:  #fff;
    border-radius:  6px;
    padding:  8px 26px;
    gap:  5px;
    line-height:  normal;
}
.country-section .read-more-btn.expanded i  {
    transform:  rotate(-180deg);
}
.country-section .country-main.countrycontent  {
    height:  118px;
}
.country-section .country-main  {
    overflow:  hidden;
}
.visa-form-section  {
    margin-top:  35px;
}
.visa-form-section .visa-form-heading  {
    font-size:  34px;
    font-weight:  700;
    color:  #000;
    padding-bottom:  3px;
}
.visa-form-section .visa-form-heading::before  {
    content:  '';
    position:  absolute;
    left:  50%;
    transform:  translateX(-50%);
    height:  3px;
    border-radius:  7px;
    bottom:  0;
    width:  120px;
    background-color:  var(--theming1);
}
.visa-form-section .visa-form-card  {
    padding:  20px;
    box-shadow:  rgba(60,  64,  67,  0.3) 0px 1px 2px 0px,  rgba(60,  64,  67,  0.15) 0px 1px 3px 1px;
    margin-top:  20px;
    border-radius:  10px;
}
.visa-form-card .form-inner-heading  {
    font-size:  20px;
    font-weight:  700;
    color:  #4d4d4d;
}
.visa-form-card .form-price  {
    font-size:  20px;
    margin-top:  35px;
    font-weight:  700;
    color:  var(--theming1);
}
.uae-input-group .iti  {
    width:  100%;
}
.iti .iti__selected-country  {
    border-right:  1px solid #dfdfdf;
}
.iti .iti__country  {
    font-size:  15px;
}
.iti .iti__tel-input  {
    background-image:  none !important;
}
.iti--inline-dropdown .iti__dropdown-content  {
    z-index:  3 !important;
}
.iti__country-list  {
    z-index:  3 !important;
}
.uae-input-group .uae-group-label  {
    font-weight:  600;
    margin-bottom:  5px;
    font-size:  15px;
    padding-left:  2px;
}
.uae-input-group .uae-input  {
    height:  44px;
    font-size:  15px;
    font-weight:  600;
}
.uae-input-group .uae-textarea  {
    height:  80px;
}
.uae-input-group .uae-input:focus  {
    border:  1.4px solid primary;
}
.uae-input-group .uae-input:-webkit-autofill,  .uae-input-group .uae-input:-webkit-autofill:hover,  .uae-input-group .uae-input:-webkit-autofill:focus,  .uae-input-group .uae-input:-webkit-autofill:active  {
    -webkit-box-shadow:  0 0 0px 1000px white inset !important;
    box-shadow:  0 0 0px 1000px white inset !important;
    -webkit-text-fill-color:  #000 !important;
    transition:  background-color 5000s ease-in-out 0s;
}
.uae-input-group .label-title  {
    font-size:  13px;
}
.uae-input-group .date-input::before  {
    content:  "\f073";
    font-family:  FontAwesome;
    top:  10px;
    right:  12px;
    position:  absolute;
    font-size:  18px;
    z-index:  1;
}
.form-control.is-invalid,  .was-validated .form-control:invalid  {
    background-image:  none;
    border-color:  #dee2e6;
}
.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(--theming1);
    border-color:  var(--theming1);
}
.visa-form-section .upload-heading  {
    font-size:  21px;
}
.visa-form-section .accepted-format  {
    font-size:  15px;
}
.visa-form-section .form-note-card  {
    padding:  10px;
}
.visa-form-section .form-note-card .file-note  {
    font-size:  14px;
    line-height:  27px;
}
.visa-form-section .form-note-card .file-note a  {
    color:  var(--theming1);
    font-weight:  600;
}
.visa-form-section .form-btn-main  {
    margin-top:  30px;
    gap:  25px;
}
.visa-form-section .form-btn  {
    font-size:  15px;
    font-weight:  600;
    line-height:  normal;
    height:  43px;
    color:  #fff !important;
    width:  245px;
    border:  0;
    gap:  7px;
    transition:  all 0.3s ease-in-out;
    outline:  none;
    background:  linear-gradient(to bottom,  var(--theming1) 0,  var(--theming1-hover) 99%) !important;
}
.visa-form-section .form-btn:hover  {
    letter-spacing:  0.5px;
}
.visa-form-section .form-btn.form-btn-one  {
    background:  #333 !important;
}
.visa-form-section .form-btn.form-btn-one:hover  {
    background-color:  #181818 !important;
}
.visa-form-section .form-btn.form-btn-three  {
    background:  var(--theming1) !important;
}
.visa-form-section .form-btn img  {
    height:  17px;
    filter:  invert(1);
}

/***** review section start *****/

.review-section {
    background-color: rgb(251 251 251);
    padding: 30px 0px;
    position: relative;
}
.review-section .container {
    padding-top: 0;
    padding-bottom: 0;
}
.review-left-bxs p {
    font-size: 18px;
    color: #4e4e4e;
    margin-top: 12px;
}

.reviews-main-bxs {
    background-color: #fff;
    box-shadow: 0px 2px 4px #d3d3d3;
    padding: 12px;
    border: 1px solid #d3d3d3;
    border-radius: 10px;
}

.reviews-main-bxs .review-top-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.reviews-main-bxs .review-top-area .review-top-left {
    display: flex;
    justify-content: left;
    align-items: center;
}
.reviews-main-bxs .review-top-area .review-top-left .review-top-left-img {
    width: 44px;
    height: 44px;
    font-size: 17px;
    border-radius: 50px;
    margin-right: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 0 4px #d3d3d3;
}
.reviews-main-bxs .review-top-area .review-top-left .review-top-right-text .review-client-text {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}
.reviews-main-bxs .review-top-area .review-top-left .review-top-right-text .review-client-date {
    font-size: 14px;
    font-weight: 400;
    color: #4e4e4e;
}
.review-right-rating-bxs ul {
    padding-left: 0;
    margin-bottom: 0;
}
.review-right-rating-bxs ul li {
    display: inline-block;
    font-size: 13px;
    color: #00b67a;
}
.reviews-main-bxs .review-top-area .review-right-rating-bxs {
    width: 95px;
}
.review-main-cntnt-bxs span strong {
    font-size: 16px;
    color: #000;
}
.review-main-cntnt-bxs p {
    font-size: 14px;
    color: #4e4e4e;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 85px;
}
.review-btm-country-bxs .review-btm-text {
    font-size: 16px;
    text-align: end;
    width: 100%;
    display: block;
}
.review-section .nav-pills {
    padding: 18px 18px 0;
    border-radius: 8px 8px 0 0;
    gap: 20px;
}
.review-section .nav-pills li {
    line-height: normal;
}
.review-section .review-tab-link {
    padding-bottom: 13px !important;
    line-height: normal;
    font-size: 14px;
}
.review-section .review-tab-link.active {
    border-bottom: 2px solid #000  !important;
}
.review-section .testimonial-data {
    padding: 12px;
    border-radius: 0 0 8px 8px;
}
.review-section .testimonial-data-inner {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}
#review_slider {
    margin: 8px 0px;
}
#review_slider .owl-dots {
    display: none;
}
#review_slider .item a {
    text-decoration: none;
}
#review_slider .owl-nav .owl-prev {    
	width: 44px;    
	height: 44px;    
	border-radius: 50px;    
	box-shadow: 0px 4px 6px #d3d3d3;    
	background-color: #fff;    
	color: var(--theming1);    
	position: absolute;    
	top: 36%;  
	gap: 10px;    
	z-index: 10;
	transition: all 0.3s ease-in-out;
}

#review_slider .owl-nav .owl-next {    
	width: 44px;    
	height: 44px;    
	border-radius: 50px;    
	box-shadow: 0px 4px 6px #d3d3d3;    
	background-color: #fff;    
	color: var(--theming1);    
	position: absolute;    
	top: 36%;    
	gap: 10px;    
	z-index: 10;
	transition: all 0.3s ease-in-out;
}
#review_slider .owl-nav .owl-prev {left: -55px;opacity:0;}
#review_slider .owl-nav .owl-next {right: -55px;opacity:0;}
#review_slider:hover .owl-nav .owl-prev {left: 0px;opacity:1;}
#review_slider:hover .owl-nav .owl-next {right: 0px;opacity:1;}
/***** review section end *****/

.apply-section .form-price  {
    position:  absolute;
    right: 10px;
    top:  20px;
    font-size:  16px;
}
.dropzone  {
    border:  1px dashed var(--theming1) !important;
    box-shadow:  rgba(60,  64,  67,  0.3) 0px 1px 2px 0px,  rgba(60,  64,  67,  0.15) 0px 1px 3px 1px;
    border-radius:  6px;
    padding:  12px !important;
    min-height:  180px !important;
}
.dropzone .dropzone-title  {
    font-weight:  700;
    color:  var(--theming1);
}
.dropzone .dz-preview .dz-details .dz-filename  {
    overflow:  hidden;
    text-overflow:  ellipsis;
}
.dropzone .dropzone-img {
    height: 65px;
    filter: brightness(23.5) invert(39);
}
.dropzone .btn-remove  {
    height:  24px;
    width:  24px;
    border-radius:  50%;
    background:  #333333b3;
    border:  0;
    padding:  0;
    color:  #ffff;
    font-size:  15px;
    display:  flex;
    align-items:  center;
    justify-content:  center;
    position:  absolute;
    right:  4px;
    top:  4px;
    z-index:  21;
    cursor:  pointer !important;
}
.dropzone .btn-remove i  {
    cursor:  pointer !important;
}
.partner-section .partner-card  {
    padding:  15px;
    border-radius:  10px;
}
.table-section table,  .table-section th,  .table-section td  {
    border:  1px solid rgb(209,  209,  209);
    border-collapse:  collapse;
}
.country-hero-section  {
    background:  url(../img/dubai-bg-2.webp) no-repeat;
    background-size:  cover;
    background-position:  center;
    height:  500px;
}
.fujairah-hero-section  {
    background:  url(../img/fujairah-bg.webp) no-repeat;
    background-size:  cover;
    background-position:  center;
}
.umm-hero-section  {
    background:  url(../img/dubai-bg-3.webp) no-repeat;
    background-size:  cover;
    background-position:  center;
}
.ras-hero-section  {
    background:  url(../img/ras-banner.webp) no-repeat;
    background-size:  cover;
    background-position:  center;
}
.emirates-visa-section,  .dubai-hero-section,  .sharjah-hero-section {
    background:  url(../img/dubai-bg-2.webp) no-repeat;
    background-size:  cover;
    background-position:  center;
}
@media (max-width:767px) {
    .emirates-visa-section,  .dubai-hero-section,  .sharjah-hero-section {
    background:  url(../img/dubai-bg-2-mob.webp) no-repeat;
    background-size:  cover;
    background-position:  center;
}
.abudhabi-hero-section  {
    background:  url(../img/dubai-bg-2-mob.webp) no-repeat;
    background-size:  cover;
    background-position:  center;
}
.umm-hero-section  {
    background:  url(../img/dubai-bg-3-mob.webp) no-repeat;
    background-size:  cover;
    background-position:  center;
}
}
.visatype-card  {
    box-shadow:  rgba(60,  64,  67,  0.3) 0px 1px 2px 0px,  rgba(60,  64,  67,  0.15) 0px 2px 6px 2px;
    border-radius:  10px;
}
.visatype-card .visatype-heading  {
    font-size:  18px;
    font-weight:  700;
}
.visatype-card .nav-link  {
    font-weight:  600;
    font-size:  15px;
}
.visatype-card .visatype-card-head  {
    padding:  12px;
}
.visatype-card .visatype-card-body  {
    padding:  12px;
}
.visatype-card .nav-link  {
    color:  #000;
    font-weight:  600;
    background-color: #f1f1f1;
}
.visatype-card .visatype-content p  {
    font-size:  15px;
    line-height:  28px;
}
.visatype-card .nav-link.active  {
    background-color:  var(--theming1);
}
.choose-section .choose-inner  {
    gap:  12px;
}
.choose-card  {
    box-shadow:  rgba(0,  0,  0,  0.1) 0px 1px 3px 0px,  rgba(0,  0,  0,  0.06) 0px 1px 2px 0px;
    min-height:  50px;
    font-weight:  700;
    gap:  10px;
    transition:  all 0.3s ease-in-out;
}
.choose-card .choose-icon  {
    width:  50px;
    height:  50px;
    padding:  13px;
}
.choose-card .choose-icon img {
    width: 23px !important;
    height: 24px !important;
}
.choose-card:hover  {
    transform:  translateY(-6px);
}
.document-inner  {
    gap:  12px;
}
.document-card  {
    border:  1px dashed #aaaaaa;
    padding:  6px;
    gap:  10px;
    font-weight:  700;
}
.document-card .document-card-img  {
    height: 70px;
    width:  80px;
}
.impo-info-card  {
    padding:  10px;
}
.impo-info-card ul  {
    display:  flex;
    padding-left:  20px;
    flex-direction:  column;
    gap:  8px;
}
.track-card  {
    box-shadow:  rgba(9,  30,  66,  0.25) 0px 4px 8px -2px,  rgba(9,  30,  66,  0.08) 0px 0px 0px 1px;
    padding:  16px;
}
.track-section .track-title  {
    font-size:  17px;
    font-weight:  700;
}
.track-card .track-label  {
    font-size:  16px;
    font-weight:  700;
}
.track-card .track-input  {
    font-weight:  600;
    height:  46px;
    margin-top:  8px ;
}
.track-card .track-input:focus  {
    border:  2px solid var(--theming1);
}
.track-card .track-input::placeholder  {
    font-weight:  600;
}
.track-card .track-btn  {
    font-size:  16px;
    font-weight:  600;
    color:  #ffff;
    background-color:  var(--theming1);
    padding:  7px 25px ;
    border-radius:  5px;
}
.contact-form  {
    padding:  15px;
}
.contact-section .contact-heading  {
    font-size:  20px;
    font-weight:  700;
    margin-bottom:  8px;
}
.contact-section .contact-text  {
    font-size:  15px;
    font-weight:  500;
}
.contact-form .theme-btn  {
    padding:  10px 18px ;
}
.contact-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;
    gap:  10px;
}
.contact-card .contact-card-heading  {
    font-size: 18px;
    margin-bottom:  14px;
    padding-bottom:  10px;
}
.contact-card .contact-card-subheading  {
    font-size: 17px;
}
.contact-card .content-data  {
    gap: 13px;
}
.contact-card .content-data .contact-link  {
    gap: 5px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}
.contact-card .content-data .contact-link i  {
    color: #009739;
}
.contact-card .content-data .contact-link img  {
    height: 16px;
}
.contact-card .content-data .whatsapp-icon  {
    height: 25px;
    width: 25px;
    background-color: #0bab5a;
    font-size: 15px;
}
.contact-card .content-data .whatsapp-icon i  {
    color: #fff;
}
.payment-card  {
    padding:  18px;
}
.payment-card .payment-img  {
    height:  36px;
}
.payment-card .payment-heading  {
    font-size:  19px;
    margin-top:  15px;
    padding-bottom:  3px;
}
.payment-card .payment-heading::after  {
    content:  '';
    position:  absolute;
    left:  50%;
    bottom:  0;
    transform:  translateX(-50%);
    background-color:  var(--theming1);
    height:  3px ;
    width:  80px;
    border-radius:  6px;
}
.payment-card .uae-input-group  {
    display:  flex;
    align-items:  center;
    gap:  15px;
}
.payment-card .uae-input-group label  {
    width:  40%;
    white-space:  nowrap;
}
.payment-card .payment-check-title  {
    font-size:  15px;
    font-weight:  600;
    gap:  5px;
}
.payment-card .payment-check-title a  {
    color:  #024EBB;
}
.payment-card .payment-heading-two::after  {
    display:  none;
}
.payment-card .payment-inner-card  {
    padding: 13px 10px;
    gap:  5px;
    cursor:  pointer;
    box-shadow:  rgba(0,  0,  0,  0.05) 0px 0px 0px 1px;
    transition:  all 0.1s ease-in-out;
    border:  1.4px solid #ffff;
}
.payment-inner-card .payment-inner-check  {
    height:  18px;
    min-width:  18px;
    border:  1.4px solid #aaaaaa;
    font-size:  14px;
    color:  #fff;
    transition:  all 0.1s ease-in-out;
}
.payment-inner-card .payment-inner-check i  {
    opacity:  0;
}
.payment-card .payment-inner-card img  {
    height:  32px;
}
.payment-input:checked ~ .payment-inner-card  {
    border-color:  var(--theming1);
}
.payment-input:checked ~ .payment-inner-card .payment-inner-check  {
    background-color:  var(--theming1);
    border-color:  var(--theming1);
}
.payment-input:checked ~ .payment-inner-card .payment-inner-check i  {
    opacity:  1;
}
.payment-card .currency-input .form-select  {
    font-size:  14px;
}
.payment-card .currency-input .form-control  {
    padding-left:  85px;
}
.payment-detail-card  {
    box-shadow:  rgba(60,  64,  67,  0.3) 0px 1px 2px 0px,  rgba(60,  64,  67,  0.15) 0px 1px 3px 1px;
}
.payment-detail-card .payment-detail-heading  {
    font-size:  19px;
    font-weight:  700;
}
.payment-detail-card .payment-detail-header  {
    padding:  12px;
}
.payment-detail-card .payment-detail-subheading  {
    font-size:  14px;
    font-weight:  500;
}
.payment-detail-card .payment-price-total  {
    font-size:  16px;
    font-weight:  700;
    color:  var(--theming1);
}
.payment-detail-card .edit-btn  {
    background-color:  var(--theming1);
    color:  #fff;
    font-weight:  600;
    font-size:  14px;
    padding:  5px 10px;
    border-radius:  4px;
    transition:  all 0.3s ease-in-out;
    gap:  4px;
}
.payment-detail-card .edit-btn i  {
    transition:  all 0.3s ease-in-out;
}
.payment-detail-card .edit-btn:hover  {
    background-color:  var(--theming1-hover);
}
.payment-detail-card .edit-btn:hover i  {
    transform:  translateX(-3px);
}
.payment-detail-card .table td  {
    font-size:  15px;
}
.payment-detail-card .table td,  .payment-detail-card .table th  {
    padding: 10px 13px;
}
.payment-detail-card .payment-detail-body  {
    padding:  12px;
}
.payment-detail-card .payment-detail-title  {
    font-size:  16px;
    font-weight:  700;
}
.payment-detail-card .payment-detail-title-two  {
    font-weight:  500;
    font-size:  15px;
}
.payment-detail-card .payment-detail-data  {
    padding-block:  8px;
}
.payment-detail-card .payment-inner-heading  {
    font-size:  18px;
    font-weight:  700;
    padding-top:  10px;
}
.payment-detail-card .payment-check-card  {
    border-radius: 7px ;
    border:  1.5px solid #c9c9c9;
    cursor:  pointer;
    transition:  all 0.1s ease-in-out;
    gap:  10px;
    padding:  10px;
}
.payment-detail-input:checked ~ .payment-check-card  {
    border:  2px solid var(--theming1);
}
.payment-check-card .express-check  {
    height:  16px;
    max-width:  16px;
    min-width:  16px;
    font-size:  12px;
    color:  #ffff;
    background-color:  #838383;
    margin-top:  5px;
}
.payment-detail-input:checked ~ .payment-check-card .express-check  {
    background-color:  var(--theming1);
}
.payment-check-card .payment-check-title  {
    font-weight:  700;
}
.payment-check-card .payment-check-price  {
    color:  var(--theming1);
    font-weight:  700;
    font-size:  15px;
}
.payment-check-card .payment-check-para  {
    font-size:  14px;
    font-weight:  500;
    margin-top:  1px;
}
.payment-detail-card .payment-total-main  {
    padding:  8px;
    margin-top:  18px;
}
.payment-detail-card .payment-total-title  {
    font-size:  17px;
    font-weight:  700;
}
.payment-detail-card .payment-total-price  {
    font-size:  18px;
    font-weight:  700;
    color:  var(--theming1);
}
.payment-sidebar-card  {
    padding: 13px 10px;
    border:  1px solid #c9c9c9;
    cursor:  pointer;
    gap:  10px;
    transition:  all 0.1s ease-in-out;
}
.payment-sidebar-card img  {
    height:  33px;
}
.payment-sidebar-card .payment-sidebar-check  {
    height:  20px;
    min-width:  20px;
    max-width:  20px;
    border:  1px solid #b9b8b8;
}
.payment-sidebar-card .payment-sidebar-check::before  {
    content:  '';
    position:  absolute;
    right:  -3px;
    top:  -1px;
    height:  0px;
    width:  9px;
    background-color:  #f8f9fa;
    transition:  all 0.3s ease-in-out;
}
.payment-sidebar-card .payment-sidebar-check img  {
    height:  125%;
    width:  0%;
    left:  2px;
    position:  absolute;
    top:  -6px;
    transition:  all 0.3s ease-in-out;
}
.sidebar-input:checked ~ .payment-sidebar-card .payment-sidebar-check::before  {
    height:  9px;
}
.sidebar-input:checked ~ .payment-sidebar-card .payment-sidebar-check img  {
    width:  125%;
}
.sidebar-input:checked ~ .payment-sidebar-card  {
    border:  1.8px solid var(--theming1);
}
.payment-sidebar .payment-sidebar-inner  {
    gap:  10px;
}
.payment-sidebar .payment-sidebar-terms  {
    font-size:  14px;
}
.payment-sidebar .payment-sidebar-trusted  {
    font-size:  13px;
    font-weight:  500;
    padding-top:  12px;
    margin-top:  12px;
}
.edit-modal .modal-dialog  {
    max-width:  90%;
}
.edit-modal .modal-title  {
    font-size:  21px;
}
.edit-modal .btn-close  {
    font-size:  14px;
}
.howto-apply .step-count  {
    margin-bottom:  15px;
}
.howto-apply .how-apply-inner  {
    gap:  40px;
}
.howapply-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;
    border-radius:  8px ;
}
.howapply-card .howapply-card-title  {
    font-size:  17px;
    font-weight:  700;
    line-height:  28px;
}
.howapply-card .howapply-card-content p  {
    line-height:  29px;
    margin-bottom:  10px;
}
.howapply-img  {
    border-radius:  8px ;
    box-shadow:  rgba(60,  64,  67,  0.3) 0px 1px 2px 0px,  rgba(60,  64,  67,  0.15) 0px 1px 3px 1px;
}
.thanks-section  {
    margin-top:  60px;
}
.thanks-card  {
    padding:  20px;
    border-radius:  14px;
    box-shadow:  rgba(9,  30,  66,  0.25) 0px 4px 8px -2px,  rgba(9,  30,  66,  0.08) 0px 0px 0px 1px;
}
.thanks-card .thanks-icon  {
    color:  #31B63A;
    font-size:  110px;
    line-height:  110px;
}
.thanks-card .thanks-heading  {
    font-size:  26px;
    font-weight:  700;
    line-height:  normal;
    margin-top:  8px;
}
.thanks-card .thanks-heading::before  {
    content:  '';
    position:  absolute;
    left:  50%;
    bottom:  0;
    transform:  translateX(-50%);
    background-color:  #31B63A;
    height:  3px;
    border-radius:  5px;
    width:  80px;
}
.thanks-card .thanks-title  {
    font-size:  17px;
    font-weight:  700;
    margin-top:  20px;
    margin-bottom:  4px;
}
.thanks-card .thanks-title-two  {
    font-size:  15px;
    line-height:  25px;
}
.thanks-card .thanks-btn  {
    background-color: #31B63A;
    color:  #fff;
    font-weight:  700;
    gap:  6px;
    transition:  all 0.3s ease-in-out;
    padding:  7px 20px;
    border-radius:  5px;
}
.thanks-card .thanks-btn i  {
    transition:  all 0.3s ease-in-out;
}
.thanks-card .thanks-btn:hover  {
    background-color:  #0caa17;
}
.thanks-card .thanks-btn:hover i  {
    transform:  translateX(-4px);
}
.error-section .thanks-icon  {
    height:  140px;
}
.error-section .thanks-heading  {
    color:  var(--theming1 );
    padding-bottom:  5px;
    margin-top:  25px;
}
.error-section .thanks-heading::before  {
    background-color:  var(--theming1);
}
.error-section .thanks-btn  {
    background-color:  var(--theming1);
}
.error-section .thanks-btn:hover  {
    background-color:  var(--theming1-hover);
}
.login-panel-section  {
    margin-top:  60px;
}
.login-panel-section .login-card-main  {
    width:  40%;
    margin-inline:  auto;
    padding:  20px;
    box-shadow:  rgba(60,  64,  67,  0.3) 0px 1px 2px 0px,  rgba(60,  64,  67,  0.15) 0px 2px 6px 2px;
    border-radius:  8px;
}
.login-card-main .hadding-login  {
    text-align:  center;
    margin-bottom:  20px;
}
.login-card-main .hadding-login h4  {
    font-size:  24px;
    font-weight:  700;
}
.login-card-main .hadding-login img  {
    display:  none;
}
.login-card-main .form-group  {
    display:  flex;
    flex-direction:  column;
}
.login-card-main .label  {
    font-size:  15px;
    font-weight:  600;
}
.login-card-main .form-control_mt  {
    font-size:  15px;
    height:  44px;
    border-radius:  5px;
    margin-top:  5px;
    border:  1px solid #cfcccc;
    outline:  none;
    padding:  6px;
}
.login-card-main .form-control_mt:focus  {
    border-color:  var(--theming1);
}
.login-card-main .btn  {
    margin-top:  10px;
}
@media (max-width:991px) {
    .login-panel-section .login-card-main  {
    width:  60%;
}
}
@media (max-width:767px) {
    .login-panel-section .login-card-main  {
    width:  80%;
}
}
@media (max-width:576px) {
    .login-panel-section .login-card-main  {
    width:  95%;
}
}

/***** partner section start *****/

.partner-main-bxs {
    border: 1px solid #d3d3d3;
    box-shadow: 0 0 4px #d3d3d3;
    padding: 10px;
    transition: all .3s ease-in-out;
    border-radius: 10px;
}
.partner-section .container {
    padding-top: 0px;
    padding-bottom: 0px;
}
.partner-main-bxs:hover {
    transform: translateY(-10px); 
}

/***** partner section end *****/

.document-required-section .document-required-img  {
    box-shadow:  rgba(60,  64,  67,  0.3) 0px 1px 2px 0px,  rgba(60,  64,  67,  0.15) 0px 1px 3px 1px;
}
.cta-section  {
    background:  url(../img/cta-bg.webp) no-repeat;
    background-size:  cover;
    background-position:  center;
    background-attachment:  fixed;
}
.cta-section::before  {
    content:  '';
    position:  absolute;
    left:  0;
    top:  0;
    height:  100%;
    width:  100%;
    background-color:  #0000005d;
}
.cta-section .cta-title  {
    font-size:  18px;
    font-weight:  600;
    color:  #fff;
}
.cta-section .cta-title::before  {
    content:  '';
    position:  absolute;
    left:  -18px;
    top:  48%;
    height:  8px;
    width: 8px;
    border-radius:  5px;
    transform:  translateY(-50%);
    background-color:  var(--theming1);
}
.cta-section .cta-title::after  {
    content:  '';
    position:  absolute;
    right:  -18px;
    top:  48%;
    height:  8px;
    width: 8px;
    border-radius:  5px;
    transform:  translateY(-50%);
    background-color:  var(--theming1);
}
.cta-section .cta-heading  {
    font-size:  28px;
    font-weight:  700;
}
.cta-section .cta-para  {
    color:  #f3f3f3;
    margin-top:  5px;
    line-height:  28px;
}
.cta-section .cta-btn  {
    background:  #25D366;
    color:  #fff;
    padding:  9px 22px;
    font-size:  16px;
    gap:  6px;
    line-height:  normal;
    font-weight:  500;
    letter-spacing:  1px;
    box-shadow:  rgba(99,  99,  99,  0.2) 0px 2px 8px 0px;
    border-radius:  4px;
}
.cta-section .cta-btn i  {
    font-size:  18px;
    transition:  all 0.3s ease-in-out;
}
.cta-section .cta-btn:hover i  {
    transform:  scale(1.6);
}
.cta-section .cta-btn-two  {
    background:  #fff;
    color:  #000;
    padding:  9px 22px;
    font-size:  16px;
    gap:  6px;
    line-height:  normal;
    font-weight:  500;
    letter-spacing:  1px;
    box-shadow:  rgba(99,  99,  99,  0.2) 0px 2px 8px 0px;
    border-radius:  4px;
}
.cta-section .cta-btn-two i  {
    transition:  all 0.3s ease-in-out;
}
.cta-section .cta-btn-two:hover i  {
    transform:  scale(1.6);
}
@media (min-width:991px)  {
    .visa-sample-modal .modal-dialog  {
    max-width:  50%;
}
}
.airlines-card  {
    box-shadow:  rgba(67,  71,  85,  0.27) 0px 0px 0.25em,  rgba(90,  125,  188,  0.05) 0px 0.25em 1em;
    border-radius:  9px;
    padding:  15px;
}
.destination-card  {
    padding: 12px 18px;
    border-radius:  6px;
    box-shadow:  rgba(0,  0,  0,  0.18) 0px 2px 4px;
    font-size:  16px;
    font-weight:  700;
    transition:  all 0.3s ease-in-out;
}
.destination-card img  {
    margin-right:  2px;
}
.destination-card:hover  {
    box-shadow:  rgba(0,  0,  0,  0.15) 0px 2px 8px;
    transform:  scale(1.1);
}
.iti__flag  {
    background-image:  url(../img/flags.png) !important;
}

/*--table-content-start--*/

.table-content table {
    width: 70%;
    text-align: center;
    margin: 0 auto;
}
.table-content table thead tr th {
    background-color: #f1f1f1;
    vertical-align: middle;
}
.table-content table tbody tr td {
    vertical-align: middle;
}
.table-content table tbody tr td:first-child {
    text-align: left;
}

@media (max-width: 767px) {
	
	.table-content table {
		width: 100%;
	}
	
}

/*--table-content-end--*/

/*--new-home-page-css-start--*/

.hadding-text-content {
    margin-bottom: 30px;
}

.hadding-text-content h1 {
    font-size: 36px;
    font-weight: 600;
    justify-content: center;
    margin-top: 20px;
}
.hadding-text-content .hadding_sub_txt_main {
    font-size: 24px;
    color: #202020;
}

.db_apply_main_form {
    background-color: #fff;
    padding: 30px 40px 30px 40px;
    border-radius: 19px 19px 19px 19px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, .03);
}

.db_apply_left .db_type_price_bx {
    width: 100px;
    border: 1px solid #d3d3d3;
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    background: lightgoldenrodyellow;
    margin-left: 6px;
}
.db_apply_main_form .uae-input-group .uae-group-label {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 14px;
    padding-left: 2px;
}
.db_apply_main_form .uae-input-group .uae-input {
    height: 44px;
    font-size: 13px;
    font-weight: 400;
    color: #878787;
}
.db_apply_main_form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #878787;
    line-height: 28px;
	font-size: 13px;
    font-weight: 400;
}

.db_apply_left_main {
    border-right: 1px solid #dee2e6;
}
.db_apply_right .db_document_title {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.db_apply_right .db_document_title span {
    font-size: 17px;
    font-weight: 500;
    color: #000000;
    display: block;
}
.db_apply_right .db_document_title small {
    font-size: 12px;
    color: #000;
}
.db_apply_right .dropzone {
    border: 1px dashed #d1d1d1 !important;
    box-shadow: none;
    border-radius: 6px;
    padding: 12px !important;
    min-height: 120px !important;
}
.db_apply_right .dropzone .dropzone-title {
    font-size: 11px;
    font-weight: 500;
    color: #939393;
}
.db_apply_right .dropzone .dropzone-img {
	width: 30px;
    height: 40px;
    filter: brightness(23.5) invert(39);
}
.db_apply_right .dropzone .dz-message {
    text-align: center;
    margin: 1em 0;
}
.ticket_img {
	filter:unset !important;
}


/*--new-home-page-css-end--*/