@media only screen and (min-width: 300px) and (max-width: 519px) {}

@charset "utf-8";

/* CSS Document */
body,
html {
    height: 100%;
}

body {
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins' !important;
}

p {
    font-family: 'Poppins' !important;
}

span {
    font-family: 'Poppins' !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a {
    text-decoration: none !important;
    transition: all 0.5s;
    font-family: 'Poppins' !important;
}

.carousel-item img {
    width: 100%;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    font-family: 'Poppins' !important;
}

div#navbarCollapse {
    flex-direction: row-reverse;
}



/*Footer CSS Start*/
.footer-box h4 {
    color: #fff;
    font-size: 21px;
    font-weight: 400;
    text-transform: uppercase;
}

footer {
    background: #080808;
    padding: 60px 0;
}

.footer-box a {
    color: #aaa3a3;
}

.footer-box a:hover {
    color: #fff;
}

.footer-box li {
    color: #aaa3a3;
    padding: 0 0 8px;
}

.footer-box ul {
    margin: 40px 0 0;
}


.copyright p {
    margin: 0;
    color: #cbc9c9;
}


.copyright {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    background-color: #030303;
}

.social-icons ul {
    display: flex;
}

.social-icons li {
    background: transparent;
    border-radius: 50%;
    height: 42px;
    width: 42px;
    text-align: center;
    transition: all 0.6s;
    cursor: pointer;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}

.social-icons i {
    color: #fff;
}

.social-icons li:hover {
    transform: rotate(360deg) scale(1.5);
}

.social-icons {
    margin: 30px 0 0;
}


.social-icons p {
    margin: 0;
    color: #cbc9c9;
}


/*Custom Styling*/

a.blue-btn {
    color: #fff;
    align-items: center;
    display: flex;
    font-size: 13px;
    border-radius: 30px;
    padding: 12px 24px;
    transition: all 0.8s;
    position: relative;
    font-weight: 500;
    background: #3c9c3a;
    ;
    margin: 20px 0px 0;
    width: 35%;
    justify-content: center;
}

a.blue-btn:hover {
    background-color: #d65d8a !important;
    color: #fff;
}

a.pink-btn {
    margin: 0 auto;
    background-color: #be2422;
    color: #fff;
    align-items: center;
    display: block;
    font-size: 13px;
    border-radius: 30px;
    padding: 12px 24px;
    transition: all 0.8s;
    position: relative;
    font-weight: 500;
    margin-top: 30px;
    width: 55%;
    justify-content: center;
}

a.pink-btn:hover {
    background-color: #3c9c3a;
    color: #fff;
}

.bold {
    font-weight: 600;
}

.greybg {
    background-color: #f9f9f9;
}

/*Header Css Start*/

header .collapse {
    width: 100%;
    justify-content: end;
}

div#navbarNav a.blue-btn {
    margin: 0;
    width: auto;
}

header .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 70%;
    justify-content: space-between;
    align-items: center;
}

header .navbar-light .navbar-nav .nav-link {
    color: #000000;
    font-weight: 500;
}

header a.nav-link.active {
    color: #4b4b4b !important;
    position: relative;
    display: inline-flex;
}


section.banner {
    background-image: url(../images/banner.png);
    width: 100%;
    height: 612px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

section.banner.inner {
    height: 412px;
    background-position: top center;
}

section.banner.inner h1 {
    position: relative;
    color: #000;
    z-index: 999
}

.girl-img img {
    width: 84%;
    z-index: 1;
    position: relative;
}

.appr-img img {
    width: 90%;
    animation: fadeInRight 1.5s ease-in-out;
}

.girl-img {
    text-align: right;
    padding: 120px 0 0;
}

.banner-text h2 {
    color: #010101;
    font-weight: 700;
    font-size: 30px;
}

span.pink {
    color: #be2422;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0 auto 15px;
}

section.banner .row {
    align-items: center;
}

header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
}

.appr-img {
    padding: 30px 0 0;
}


section.banner::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 0;
    left: 0;
    background-image: url(../images/dubai.png);
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    animation: fadeInUp 0.9s ease-in-out;
}

.banner-text {
    z-index: 99;
    position: relative;
}

img.logo-arrow {
    width: 47px !important;
    transition: all 0.8s;
}

a.navbar-brand:hover .logo-arrow {
    transform: rotate(180deg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(300px);
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(300px);
    }

    to {
        opacity: 1;
    }
}

.nationality {
    background-image: url(../images/input-bg.png);
    width: 70%;
    height: 228px;
    background-repeat: no-repeat;
    background-position: center;
    margin: -135px auto 0;
    z-index: 99999;
    position: relative;
    display: flex;
    align-items: center;
    background-size: contain;
}

.dubai-input {
    width: 55%;
    margin: 0 0 0px 30px;
}

.dubai-input label {
    font-family: poppins !important;
    font-size: 19px;
    font-weight: 500;
    margin-left: 20px;
    margin-bottom: 15px;
}

.dubai-input-pad #basic-addon2 {
    background-image: linear-gradient(to right, #1875bc, #516cc2, #7f5ebd, #a649ad, #c52c92);
    color: #fff;
    border: unset;
    border-radius: 30px;
    padding: 0 25px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Poppins';
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.dubai-input-pad input {
    border: 1px solid #b4669f;
    border-radius: 30px;
    height: 43px;
    padding-left: 25px;
    font-weight: 400;
    font-size: 14px;
    font-style: italic;
    font-family: 'Poppins' !important;
    box-shadow: none !important;
}

a.navbar-brand img {
    width: 100%;
}


/*.text{
    margin: 0;
    background-image: linear-gradient(
        70deg,
        #dc143c 45%,
        #FFF 50%,
        #dc143c 55% 
    );
    background-size: 500% 100%;
    background-clip: text;
    animation: shine 2.9s infinite;
}

@keyframes shine {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
*/
.glow {
    color: #ffffff;
    text-align: center;
    -webkit-animation: glow 1.9s ease-in-out infinite alternate;
    -moz-animation: glow 1.9s ease-in-out infinite alternate;
    animation: glow 1.9s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 10px ##ffffff8f, 0 0 20px ##ffffff8f, 0 0 30px ##ffffff8f, 0 0 40px ##ffffff8f,
            0 0 50px ##ffffff8f, 0 0 60px ##ffffff8f, 0 0 70px ##ffffff8f;
    }

    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff, 0 0 50px #fff,
            0 0 60px #fff, 0 0 70px #fff, 0 0 80px #fff;
    }
}

@keyframes shine-effect {
    from {
        left: -200%;
    }

    to {
        left: 100%;
    }
}

.apply-for-title {
    text-align: center;
}

.apply-for-title h1 {
    font-weight: 600;
    font-size: 32px;
    margin: 0 0 5px;
}

.apply-for-title {
    margin: 0 0 100px;
    text-align: center;
}

.apply-for-title p {
    font-weight: 500;
    color: #404040;
}

.apply-for-card {
    text-align: center;
    padding: 80px 40px 40px;
    border-radius: 15px;
    position: relative;
    margin: 0 10px;
    transition: all 0.3s;
    min-height: 421px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.apply-for-card::after {
    content: '';
    position: absolute;
    top: -58px;
    right: 0;
    left: 0;
    background-image: url(../images/triangle.png);
    width: 141px;
    height: 115px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    margin: 0 auto;
    transition: all 0.7s;
}

.apply-for-card:hover::after {
    transform: rotate(90deg);
}

.apply-for-card h4 {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 55px;
    position: relative;
}

.apply-for-card h4::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-image: linear-gradient(to right, #b80a09, #b10606, #c81110, #da1a18, #ff1d1a);
    width: 130px;
    height: 4px;
    transition: all 0.5s;
    border-radius: 13px;
}

.apply-for-card:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px 4px;
}

.apply-for-card p {
    font-size: 14px;
    font-weight: 500;
}

.label__checkbox {
    display: none;
}

.label__check {
    display: inline-block;
    border-radius: 50%;
    background: transparent;
    vertical-align: middle;
    width: 42px;
    height: 42px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border .3s ease;

    i.icon {
        opacity: 0.2;
        font-size: ~'calc(1rem + 1vw)';
        color: transparent;
        transition: opacity .3s .1s ease;
        -webkit-text-stroke: 3px rgba(0, 0, 0, .5);
    }

    ;

    hover {
        border: 5px solid rgba(0, 0, 0, 0.2);
        color: #fff;
        font-size: 30px;}
   
}

span.label__check img {
    width: 45px;
}

.apply-for-card:hover .label__text .label__check {
    animation: check .5s cubic-bezier(0.895, 0.030, 0.685, 0.220) forwards;

    .icon {
        opacity: 1;
        transform: scale(0);
        color: white;
        -webkit-text-stroke: 0;
        animation: icon .3s cubic-bezier(1.000, 0.008, 0.565, 1.650) .1s 1 forwards;
    }

    ;
    animation: icon .3s cubic-bezier(1.000, 0.008, 0.565, 1.650) .1s 1 forwards;
}

.center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

@keyframes icon {
    from {
        opacity: 0;
        transform: scale(0.3);
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes check {
    0% {
        width: 1.5em;
        height: 1.5em;
        border-width: 5px;
    }

    10% {
        width: 1.5em;
        height: 1.5em;
        opacity: 0.1;
        background: rgba(0, 0, 0, 0.2);
        border-width: 15px;
    }

    12% {
        width: 1.5em;
        height: 1.5em;
        opacity: 0.4;
        background: rgba(0, 0, 0, 0.1);
        border-width: 0;
    }

    50% {
        width: 2em;
        height: 2em;
        background: #00d478;
        border: 0;
        opacity: 0.6;
    }

    100% {
        width: 2em;
        height: 2em;
        background: #00d478;
        border: 0;
        opacity: 1;
    }
}

.apply-for-card .opacityy {
    position: absolute;
    right: -14px;
    font-size: 352px;
    bottom: -96px;
    z-index: -1;
    color: #0000000a;
}

section.apply-for {
    padding: 100px 0 50px;
}

.lady-img {
    position: relative;
}

.lady-img::after {
    content: '';
    position: absolute;
    background-image: url(../images/lady.png);
    width: 147px;
    height: 312px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 220px;
    left: 22px;
    animation: fadeInLeft 2s ease-in-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-300px);
    }

    to {
        opacity: 1;
    }
}

.apply-for-card:hover .opacityy {
    background: -webkit-linear-gradient(#007abd1f, #db188e21);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exclusions {
    text-align: center;
    margin: 40px 0 0;
}

.exclusions h5 {
    font-size: 15px;
    margin: 0 0 5px;
    color: #1e73ba;
    font-weight: 700;
}

.exclusions p {
    color: #404040;
    font-size: 13px;
    font-style: italic;
}

.visa-approve-content img {
    width: 100%;
    min-height: 487px;
    object-fit: cover;
    margin: 0 0px 50px;
}

.visa-approve-content p {
    font-size: 14px;
    font-weight: 500;
}

.visa-approve-content h3 {
    font-size: 20px;
    font-weight: 900;
}

section.free-consultation {
    background-image: url(../images/background-3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 50px 0;
    margin: 0 0 -2px;
    text-align:center;
}


.guarantee h3 {
    font-size: 36px;
    font-weight: 800;
}

.guarantee p {
    font-size: 12px;
    color: #404040;
    font-weight: 500;
}

.guarantee ul {
    margin: -7px 0 0;
}

.guarantee ul li {
    font-size: 13px;
    color: #404040;
    font-weight: 500;
    padding: 0 0 7px;
}

.guarantee li img {
    width: 16px;
    margin: 0 10px 0 0;
}

.guarantee a {
    width: 54%;
    margin-top: 0;
    text-transform: uppercase;
}

.women-img img {
    width: 404px;
    z-index: 9;
    position: relative;
}

.women-img {
    margin: -28px 0 0;
}

.free-consultation-form {
    background: #1e73ba;
    padding: 30px 30px 23px;
    margin: -100px 0 0;
}

.free-consultation-form h4 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
}

.free-consultation-form p {
    color: #fff;
    font-size: 13px;
    margin: 0 0 25px;
}

.free-consultation-form input {
    width: 100%;
    border: unset;
    margin: 0 0 13px;
    padding: 0 10px;
    font-size: 12px;
    height: 44px;
    outline: none;
}

.free-consultation-form textarea {
    width: 100%;
    border: unset;
    margin: 0 0 13px;
    padding: 9px 10px;
    font-size: 12px;
    height: 44px;
    outline: none;
}

.free-consultation-form button {
    background: #3c9c3a;
    border: unset;
    width: 100%;
    height: 44px;
    color: #fff;
    text-transform: uppercase;
    font-family: poppins !important;
    font-size: 12px;
    font-weight: 600;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-8px);
    }

    100% {
        transform: translatey(0px);
    }
}

section.visa-approve {
    padding: 0px 0 110px;
}

section.dubai-cta {
    background-image: url(../images/dubai-cta.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 177px;
    margin: 0 0 -1px;
}

section.dubai-cta .row {
    align-items: center;
}

.dubai-stemp img {
    width: 180px;
}

.dubai-stemp-text h6 {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    font-style: italic;
}

.dubai-stemp-text h5 {
    color: #fff;
    font-size: 19px;
}

.dubai-stemp-btn a {
    width: 72%;
    background: #fff;
    text-transform: uppercase;
    color: #ac3798;
    font-weight: 600;
}

.dubai-stemp-btn {
    display: flex;
    justify-content: center;
}

.dubai-stemp-text h6:last-child {
    margin: 0;
}

.social-icons img {
    width: 100px;
}

.dubai-stemp {
    text-align: center;
    padding: 4px 0 0;
}

.free-consultation-form button:focus {
    outline: 1px dotted;
    outline: none !important;
}



@media only screen and (min-width: 1366px) and (max-width: 1920px) {}








































@media only screen and (min-width: 1200px) and (max-width: 1365px) {
    
}








































@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .girl-img img {
        bottom: -30px;
    }

    .visacard-text {
        padding: 0 0;
    }

    .free-consultation-form h4 {
        font-size: 32px;
    }

    .women-img {
        margin: -53px 0 0;
    }

    .women-img img {
        width: 374px;
    }

    .social-icons p {
        font-size: 14px;
    }

    .social-icons li {
        margin: 0 5px;
    }

    .footer-box a {
        font-size: 14px;
    }
    
    .appr-img img {
        animation:unset !important;
    }

    section.banner.inner h1 {
        font-size: 34px;
    }
}








































@media only screen and (min-width: 768px) and (max-width: 991px) {
    .girl-img img {
        bottom: 0px;
        width: 120%;
    }

    .visacard-text {
        padding: 0 0;
    }

    .free-consultation-form h4 {
        font-size: 17px;
        line-height: 22px;
    }

    .women-img {
        margin: 52px 0 0 -60px;
    }

    .women-img img {
        width: 284px;
    }

    .social-icons p {
        font-size: 14px;
    }

    .social-icons li {
        margin: 0 5px;
    }

    .footer-box a {
        font-size: 11px;
    }

    .banner-title {
        padding: 30px 0 70px;
    }

    .banner-title.appvisa h4 {
        font-size: 32px;
    }

    .apply-for-card::after {
        width: 110px;
        height: 105px;
    }

    span.label__check img {
        width: 45px;
    }

    .apply-for-card {
        padding: 60px 10px 0px;
        min-height: 371px;
        margin: 0px;

    }

    .guarantee h3 {
        font-size: 25px;
    }

    .guarantee a {
        width: 70%;
    }

    .free-consultation-form {
        margin: -40px 0 0;
    }

    .free-consulting-form .col-md-6 {
        min-width: 100%;
    }

    .free-consultation-form {
        padding: 30px 15px 23px;
    }

    .free-consultation-form p {
        margin: 0 0 15px;
    }

    .free-consultation-form input {
        height: 36px;
    }

    .free-consultation-form textarea {
        margin: 0 0 0;
    }

    section.free-consultation .col-md-4:nth-child(3) {
        min-width: 300px;
    }
    
    section.free-consultation .col-md-4:nth-child(2) {
        max-width: 25%;
    }
    section.free-consultation .col-md-4:nth-child(1) {
        max-width: 34% !important;
    }

    .dubai-stemp img {
        width: 140px;
    }

    section.dubai-cta {
        height: 101px;
        display: flex;
        align-items: center;
    }

    .dubai-stemp img {
        width: 74px;
    }

    .dubai-stemp-text h5 {
        font-size: 16px;
        margin: 0 0 5px;
    }

    .dubai-stemp-btn a {
        width: 100%;
        margin: 0;
    }

    .footer-box h4 {
        font-size: 15px;
    }

    .footer-box ul {
        margin: 25px 0 0;
    }

    .footer-box a {
        font-size: 11px;
    }

    .copyright p {
        font-size: 14px;
    }

    section.banner {
        padding-top: 50px;
    }

    .banner-text h2 br {
        display: none;
    }
    
    .banner-text h2 {
        font-size: 18px;
    }

    .banner-text p {
        font-size: 14px;
    }


    section.banner {
        height: 388px;
        padding-top: 50px;
    }

    .appr-img img {
        animation:unset !important;
    }
    
    section.banner.inner h1 {
        font-size: 30px !important;
    }

    section.banner.inner {
        height: 355px;
    }

    .contact-circle h5 {
        width: 100%;
    }

    .contact-circle h6 {
        width: 100%;
    }

    .details-sec .col-md-3 {
        min-width: 50%;
    }

    

    .docs-upload-sec .docs-upload {
        padding: 28px 0;
    }

    .first-step .file-config {
        flex-direction: column;
        gap: 10px 0;
    }

    .third-step .parnt .img-sec {
        min-width: unset;
    }

    .fourth-step .parnt .chld {
        width: 410px;
        margin: 0 0 30px;
    }

    section.visa-type {
        padding: 100px 0 60px;
    }
}









































@media only screen and (min-width: 300px) and (max-width: 520px) {
    .contact-circle ul {
        display: grid;
        grid-template-columns: repeat(2, 3.20fr) !important;
        grid-gap: 0 0 !important;
        align-items: unset;
    }

    .getin-touch form {
        padding: 20px 40px 20px 30px;
    }

    .contact-detail-title h4 {
        font-size: 25   px;
        font-weight: 200;
    }

    .contact-detail-title p {
        color: #6a6a6a;
        font-size: 12px;
    }
    
    section.contact-detail {
        padding: 40px 0 0;
    }
}








































@media only screen and (min-width: 300px) and (max-width: 767px) {

    .docs-upload-sec .docs-upload {
        margin: 0 0 30px;
    }
    section.banner.inner h1 {
        font-size: 33px;
    }
    .banner-title {
        padding: 60px 0 40px !important;
    }

    .banner-title.faq h4 {
        font-size: 25px;
    }


    .faq-collaps div#accordion .btn {
        font-size: 12px;
        text-align: left;
    }
    .faq-collaps .card-header {
        padding: 14px 0px;
    }

    .faq-collaps .card-body p {
        font-size: 12px;
    }

    .faq-collaps .card {
        margin: 0 0 20px;
    }

    .girl-img img {
        top: 60px;
        left: 70px;
        width: 154px;
    }

    .banner-text h2 {
        color: #010101;
        font-weight: 700;
        font-size: 20px;
    }

    section.banner .row {
        display: flex;
    }
    
    
    section.banner .col-md-4 {
        order: 1;
    }
    
    section.banner .col-md-5 {
        order: 2;
    }
    
    section.banner .col-md-3 {
        order: 3;
    }

    .banner-text {
        top: -160px;
        z-index: 1;
    }

    .appr-img img {
        width: 100px;
        animation: fadeInRight 1.5s ease-in-out;
    }

    .banner-text p {
        font-size: 10px;
    }

    section.banner {
    height: 315px;
    padding: 120px 0 0;
}

a.navbar-brand img {
    width: 55%;
}

.navbar-light .navbar-toggler-icon {
    width: 20px;
}

.navbar-toggler {
    padding: 0 8px;
}

.form-control {
    font-size: 10px !important;
}

.input-bar .input-group-text i {
    font-size: 15px;
}

.input-bar .input-group-text {
    padding: 0 40px !important;
}

.input-bar .input-group {
    border-radius: 40px;
    height: 38px;
}

.input-bar .input-group {
    height: 38px;
}

section.apply-for {
    padding: 40px 0 50px;
}

section.apply-for {
    padding: 30px 0 50px;
}

.timeDiv span {
    padding: 9px 13px;
    font-size: 12px;
}

.banner-title.appvisa h4 {
    font-size: 19px;
}

.apply-for-card::after {
    width: 101px;
    height: 108px;
}

span.label__check img {
    width: 38px;
}

.apply-for-card {
    padding: 60px 20px 0;
}

.apply-for-card {
    padding: 60px 20px 0;
    min-height: 250px;
    margin: 0 0 50px;
}

.apply-for-card .opacityy {
    right: -9px;
    font-size: 312px;
    bottom: -87px;
}

section.visa-approve {
    padding: 0px 0 50px;
}

.banner-title.appvisa p {
    font-size: 11px;
    width: 70%;
    margin: 20px auto 20px;
}

.apply-for-card h4 {
    font-size: 16px;
    margin-bottom: 25px;
}

.apply-for-card h4::after {
    top: 28px;
    width: 110px;
    height: 2px;
}

.apply-for-card h4 {
    font-size: 14px;
}

header .navbar-nav {
    display: flex !important;
    width: 100% !important;
    background-color: #ffffffa8;
    padding: 4px 5px;
    border-radius: 5px;
}

a.blue-btn {
    font-size: 8px;
    padding: 9px 14px;
}

header .navbar-light .navbar-nav .nav-link {
    font-size: 9px;
}

.apply-for-card p {
    font-size: 13px;
}

.guarantee h3 {
    font-size: 13px;
}

.guarantee h3 br {
    display: none;
}

.guarantee p {
    font-size: 9px;
}

section.free-consultation .col-md-4:nth-child(2) {
    display: none;
}

.free-consultation-form {
    margin: 30px 0 0px;
}

section.free-consultation {
    height: 369px;
}

section.dubai-cta {
    height: 177px;
    margin: 494px 0 -1px;
}

section.dubai-cta .row {
    text-align: center;
}

.dubai-stemp img {
    width: 60px;
}

.dubai-stemp-text h5 {
    font-size: 13px;
}

.dubai-stemp-text h6 {
    font-size: 13px;
}

.dubai-stemp-btn a {
    width: 32%;
}

footer {
    padding: 35px 0;
}

.footer-box ul {
    margin: 16px 0 16px;
}

.footer-box a {
    font-size: 13px;
}

.footer-box li {
    padding: 0 0 3px;
}

.social-icons p {
    font-size: 13px;
    margin: 5px 0 20px;
}

.social-icons ul {
    margin: 0;
}

.footer-box h4 {
    font-size: 18px;
}

.copyright {
    flex-direction: column;
}

.copyright p {
    font-size: 12px;
}

.copyright img {
    width: 140px;
    margin-top: 10px;
}

.appr-img img {
    animation:unset !important;
}
    .navbar-light .navbar-brand {
        width: 70% !important;
    }

    footer .container {
        margin: 0;
    }

    section.banner.inner h1 {
        font-size: 34   px !important;
    }

    section.banner.inner {
        height: 292px;
        padding: 40px 0 0;
    }

    .track-title h4 {
        font-size: 29px;
    }


    .contact-circle h5 {
        font-size: 12px;
        width: 100%;
    }
    
    .contact-circle h6 {
        font-size: 10px;
        width: 100%;
    }

    
    .contact-circle ul {
        display: grid;grid: 170px /150px 110px 140px;
        grid-gap: 30px 0;
        align-items: unset;
    }

    .contact-circle li {
        width: 100%;
    }

    .nopad h6.blue-ltalic {
        font-size: 8px;
        margin: 7px 0 0;
    }

    .contact-circle {
        padding: 30px 0 0;
    }


    .button-switch {
        justify-content: start;
        margin: 20px 0 0 30px;
    }

    .modal-content.get-started .details-sec .inner {
        height: 290px;
    }
    .modal-content.get-started .inner img {
        width: 45%;
    }
    
    .first-step .file-config {
        flex-direction: column;
        gap: 10px 0;
    }
    

    .third-step .parnt .img-sec {
        min-width: unset;
    }

    section.visa-type {
        padding: 100px 0 40px;
    }
}





.arroww{position: absolute;/* right:20%; *//* z-index:99; *//* float:right; */margin-top: -48px;left:20px;top: -52px;animation: MoveUpDown 1s linear infinite;}
.arroww img{width: 49px;}

@keyframes MoveUpDown {
  0%, 100% {
    top: -55px;
  }
  50% {
    top: -20px;
  }
}
.review__box {background:#fff;padding: 40px 80px;margin:50px 0 0 0;}

.review__box svg{ fill:#3c9c3a !important;}
