:root {
    --theming1 :#c79b31;
    --theming1-hover :#e5ab20;
}

@font-face {
    font-family: "Inter", sans-serif;
    font-display: swap;
}

body {
	font-family: "Inter", sans-serif;
}
html, body {
    overflow-x: hidden;
}
.common-gap {
    margin-top: 50px;
}
.common-padding {
    padding-top: 45px;
    padding-bottom: 52px;
}
@media (min-width: 1200px) {
    .container {
        max-width: 1170px !important;
    }
}
/* heading  */
.heading {
    font-size: 25px;
    font-weight: 700;
}
.heading::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    height: 3px;
    border-radius: 5px;
    width: 100px;
    background-color: var(--theming1);
}

/* theme btn  */
.theme-btn {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: var(--theming1);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    gap: 6px;
}
.theme-btn:hover {
    background-color:var(--theming1-hover);
}
.theme-btn i {
    transition: all 0.3s ease-in-out;
}
.theme-btn:hover i {
    transform: translateX(5px);
}


/* whatsapp button */
.whatsapp-btn {
    background: #25d366;
    color: white;
    bottom: 25px;
    left: 25px;
    font-size: 37px;
    z-index: 10;
    height: 58px;
    width: 58px;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    animation-play-state: paused;
}
.whatsapp-btn::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}
@keyframes pulse-border {
    0% {
      padding: 25px;
      opacity: 0.75;
    }
    75% {
      padding: 50px;
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
}


/* ellipsis  */
.ellipsis3 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.ellipsis4 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.ellipsis5 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* scroll to top  */
.progress-wrap {
    right: 33px;
    bottom: 95px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    z-index: 6;
    opacity: 0;
    background-color: #fff;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    text-align: center;
    font-size: 18px;
    color: #1f2029;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items:center;
    justify-content: center;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    color: var(--theming1);
}
.lightScrollIcon::after {
    color: #ecedf3 !important;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: var(--theming1);
    stroke-width: 5;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}


/* select 2  */
.select2-container {
    width: 100% !important;
    display: block;
}
.select2 .select2-selection {
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
}
.select2 .select2-selection__rendered {
    font-weight: 600;
}
.select2 .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
}
.select2-container--default .select2-selection--single {
    border-color: #c9c9c9 !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 15px;
}
.select2-dropdown {
    border-color: #c9c9c9 !important;
}
.select2-results__option {
    font-size: 15px;
    font-weight: 500;
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--theming1) !important;
    color: #ffff !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #ddd !important;
    color: #000 !important;
}


/* media query start */
@media (max-width:991px){
    .heading {
        font-size: 23px;
    }
}
@media (max-width:767px){
    .common-gap {
        margin-top: 40px;
    }
    .heading {
        font-size: 20px;
        line-height: 27px;
        padding-bottom: 3px;
    }
    .heading::before {
        bottom: 0;
        height: 2.5px;
        width: 80px;
    }
    .whatsapp-btn {
        height: 55px;
        width: 55px;
        bottom: 15px;
        font-size: 29px;
        left: 15px;
    }
    .progress-wrap {
        bottom: 90px;
        right: 25px;
        height: 40px;
        width: 40px;
    }
    .progress-wrap::after {
        font-size: 16px;
    }
    .common-padding {
        padding-top: 35px;
        padding-bottom: 42px;
    }
    @keyframes pulse-border {
        0% {
          padding: 25px;
          opacity: 0.75;
        }
        75% {
          padding: 40px;
          opacity: 0;
        }
        100% {
          opacity: 0;
        }
    }
}
@media (max-width:576px){
    .heading {
        font-size: 19px;
    }
}
/* media query end */



/* page heading section start  */
.page-heading-section {
    padding-block: 90px;
    background: url(../img/dubai-bg-4.webp) no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.about-heading-section {
    background: url(../img/dubai-bg-7.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.terms-heading-section {
    background: url(../img/term-and-conditions-banner.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
.privacy-heading-section {
    background: url(../img/privacy-policy-banner.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
.contact-heading-section {
    background: url(../img/contact-banner.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
.fourteen-heading-section {
    background: url(../img/14-multiple.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
.tharteen-heading-section {
    background: url(../img/therteen-days.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
.tharteen-multiple-heading {
    background: url(../img/30-multiple.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
.sixteen-heading-section {
    background: url(../img/60-days.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
.sixteen-multiple-heading {
    background: url(../img/60day-multiple.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
.ninety-day-heading {
    background: url(../img/90-days.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
.ninety-multiple-heading {
    background: url(../img/90day-multiple.webp) no-repeat;
    background-size: cover;
    background-position: center;
}


.page-heading-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #3b3b3b7a;
}
.page-heading-section .page-heading {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}
.page-heading-section .page-title {
    color: #ffff;
    font-weight: 600;
}
.visatype-heading-section {
    padding-block: 80px;
    background: url(../img/dubai-bg-4.webp) no-repeat;
    background-position: center;
    background-size: cover;
}
.howto-apply-heading {
     background: url(../img/howto-apply-bg.webp) no-repeat;
    background-position: center;
    background-size: cover;
}
.howto-apply .step-count {
  height: 45px;
  width: 125px;
  margin-bottom: 15px;
  background-color: var(--theming1);
  border-radius: 30px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  gap: 7px;
}
.howto-apply .step-count-number {
  height: 44px;
  width: 44px;
  border: 3px solid #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.howto-apply .step-count-number .step-count-number-inner {
  height: 30px;
  width: 30px;
  font-size: 20px;
  font-weight: 800;
  color: var(--theming1);
}
.howto-apply .step-count-text {
  font-size: 19px;
}
@media (max-width:767px){
  .howto-apply .step-count {
    height: 43px;
    width: 115px;
    margin-bottom: 10px;
    gap: 5px;
  }
  .howto-apply .step-count-number {
    height: 40px;
    width: 40px;
    margin-top: -1px;
    margin-left: 1px;
  }
  .howto-apply .step-count-number .step-count-number-inner {
    height: 28px;
    width: 28px;
    font-size: 19px;
  }
  .howto-apply .step-count-text {
    font-size: 18px;
  }
}

/** hour visa css  **/

.main-title {
    font-size: 20px;
    font-weight: 500;
    font-family: 'FontAwesome';
    letter-spacing: 6px;
    color: #fff;
}
.page-heading-section .page-heading.main-heading-one-hour {
    font-size: 74px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px !important;
}
.page-title-one-hour {
    font-size: 20px;
    color: #ffff;
    font-weight: 600;
}

.trusted-right-img-bx {
    background: url(../img/hour-visa-pexels-bg-1.webp) no-repeat;
    background-position: center top;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}


.trusted-left-text-bx h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
    margin-bottom: 16px;
}
.trusted-left-text-bx .trusted-guide-bx h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--theming1);
    line-height: 1.2;
    margin-bottom: 16px;
}

.trusted-left-text-bx .trusted-guide-bx p {
    font-size: 16px;
    color: #000;
    text-align: justify;
}
.trusted-left-text-bx .trusted-guide-bx ul {padding-left: 10px;}
.trusted-left-text-bx .trusted-guide-bx ul li {
    font-size: 16px;
	padding-bottom: 6px;
    color: #000;
	text-align: justify;
}

.apploval-main-text h2 {
	font-size: 25px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    margin-bottom: 14px;
}
.apploval-main-text h2 strong {
	color: var(--theming1);
	text-decoration: underline;
}
.apploval-main-text p {
    font-size: 16px;
    color: #000;
}

.exclusive-main-text p {
    font-size: 17px;
    color: #000;
}

.country-time-card {
    background-color: var(--theming1);
    padding: 12px;
    border-radius: 14px;
    margin-top: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    gap: 12px;
    width: max-content;
    text-align: left;
    margin: 0 auto;
}
.country-time-card .time-country-name {
    font-size: 18px;
}
.country-time-card .country-time {
    font-size: 17px;
}
.country-time-card .country-time-icon-main {
    height: 70px;
    width: 70px;
    border: 1px dashed #fff;
}
.country-time-card .country-time-icon {
    height: 55px;
    width: 55px;
}

.ex-want-left-main h2 {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}
.ex-want-left-main h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--theming1);
    margin-bottom: 12px;
}

.ex-want-main-text .price-apply-btn {
    font-weight: 500;
    background-color: var(--theming1);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    padding: 8px 25px;
	text-decoration: none;
    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;
}
.ex-want-main-text .price-apply-btn span {
    background-color: transparent !important;
}
.ex-want-main-text .price-apply-btn i {
    vertical-align: middle;
    transition: all 0.3s ease-in-out;
}
.ex-want-main-text .price-apply-btn:hover {
    background-color: var(--theming1-hover);
}

.ex-want-main-text .price-apply-btn:hover i {
    transform: translateX(10px);
}

/** hour visa css end  **/
@media (max-width:767px){
    .page-heading-section {
        padding-block: 80px;
    }
    .visatype-heading-section {
        padding-block: 50px;
    }
    .page-heading-section .page-heading {
        font-size: 24px;
    }
    .documents-heading-section {
        background: url(../img/aboutus-bg-mob.webp) no-repeat;
        background-size: cover;
        background-position: center;
    }
    .fourteen-days-heading,
    .apply-single-heading-section{
        background: url(../img/dubai-bg-4-mob.webp) no-repeat;
        background-position: center;
        background-size: cover;
    }
    /*.howto-apply-heading {*/
    /*     background: url(../img/howto-apply-bgmob.webp) no-repeat;*/
    /*    background-position: center;*/
    /*    background-size: cover;*/
    /*}*/
    .terms-heading-section {
        background: url(../img/term-and-conditions-banner-mob.webp) no-repeat;
        background-size: cover;
        background-position: center;
    }
    .privacy-heading-section {
        background: url(../img/privacy-policy-banner-mob.webp) no-repeat;
        background-size: cover;
        background-position: center;
    }
}
@media (max-width:576px) {
    .page-heading-section {
        padding-block: 60px;
    }
}
/* page heading section end */


/* breadcrumb section start  */
.breadcrumb-section {
    padding-block: 14px;
}
.breadcrumb-section .breadcrumb-link,
.breadcrumb-section .breadcrumb-link a{
    font-weight: 600;
    font-size: 15px;
    gap: 4px;
    color: #505050;
}
.breadcrumb-section .breadcrumb-link a i,
.breadcrumb-section .breadcrumb-link i {
    color: #5c5c5c;
}
.breadcrumb-section .breadcrumb-list {
    gap: 8px;
}
.breadcrumb-section .breadcrumb-link .home-icon {
    margin-top: -2px;
}
.breadcrumb-section .breadcrumb-link.active {
    color: var(--theming1);
}
/* breadcrumb section end  */



/* apply common button section start */
.common-btn-section .common-blink-btn {
    background-image: linear-gradient(to bottom,var(--theming1-hover) 0,var(--theming1) 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, var(--theming1), var(--theming1-hover)); }
  25% { background-image: linear-gradient(to right, var(--theming1-hover), var(--theming1)); }
  37.5% { background-image: linear-gradient(to right, var(--theming1), var(--theming1-hover)); }
  50% { background-image: linear-gradient(to right, var(--theming1-hover), var(--theming1)); }
  62.5% { background-image: linear-gradient(to right, var(--theming1), var(--theming1-hover)); }
  75% { background-image: linear-gradient(to right, var(--theming1-hover), var(--theming1)); }
  87.5% { background-image: linear-gradient(to right, var(--theming1), var(--theming1-hover)); }
  100% { background-image: linear-gradient(to right, var(--theming1-hover), var(--theming1));}
}
/* apply common button section start */

/* fixed button  */
.call-button-fixed {
    height: 40px;
    width: 40px;
    background-color: #fff;
    color: var(--theming1);
    border: 1px solid var(--theming1);
    left: 20px;
    bottom: 87px;
    transition: all 0.3s ease-in-out;
    z-index: 4;
}
.email-fixed-btn {
    bottom: 136px;
}
.call-button-fixed:hover {
    background-color: var(--theming1);
    color: #fff;
}