/* Your custom styles */
@font-face {
    font-family: 'icomoon';
    src: url("font/icomoon.eot?npz2r5");
    src: url("font/icomoon.eot?npz2r5#iefix") format("embedded-opentype"), url("font/icomoon.ttf?npz2r5") format("truetype"), url("font/icomoon.woff?npz2r5") format("woff"), url("font/icomoon.svg?npz2r5#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-cost:before {
    content: "\e922";
}

.icon-requirements:before {
    content: "\e91f";
}

.icon-usercheck:before {
    content: "\e920";
}

.icon-general:before {
    content: "\e921";
}

.icon-backpack:before {
    content: "";
    display: inline-block;
    background: url(img/icons/backpack.svg) no-repeat center;
    -webkit-background-size: 58px 60px;
    -moz-background-size: 58px 60px;
    -o-background-size: 58px 60px;
    background-size: 58px 60px;
    width: 58px;
    height: 60px;
}

.icon-suitcase:before {
    content: "";
    display: inline-block;
    background: url(img/icons/briefcase.svg) no-repeat center;
    -webkit-background-size: 60px 50px;
    -moz-background-size: 60px 50px;
    -o-background-size: 60px 50px;
    background-size: 60px 50px;
    width: 60px;
    height: 50px;
}

.icon-purse:before {
    content: "\e918";
}

.icon-savetime:before {
    content: "\e919";
}

.icon-success:before {
    content: "\e91a";
}

.icon-easy:before {
    content: "\e91b";
}

.icon-fast:before {
    content: "\e91c";
}

.icon-conversation:before {
    content: "\e90d";
}

.icon-insurance:before {
    content: "\e90e";
}

.icon-translator:before {
    content: "\e90f";
}

.icon-policeman:before {
    content: "\e910";
}

.icon-visa:before {
    content: "\e911";
}

.icon-photo:before {
    content: "\e912";
}

.icon-contract:before {
    content: "\e913";
}

.icon-voucher:before {
    content: "\e914";
}

.icon-tourist:before {
    content: "\e915";
}

.icon-employee:before {
    content: "\e916";
}

.icon-check:before {
    content: "\e917";
}

.icon-search:before {
    content: "\e90c";
}

.icon-home:before {
    content: "\e90b";
}

.icon-star:before {
    content: "\e90a";
}

.icon-visa1:before {
    content: "\e907";
}

.icon-bill:before {
    content: "\e908";
}

.icon-file:before {
    content: "\e909";
}

.icon-menu:before {
    content: "\e905";
}

.icon-login:before {
    content: "\e906";
}

.icon-purpose:before {
    content: "\e900";
}

.icon-destination:before {
    content: "\e901";
}

.icon-location:before {
    content: "\e902";
}

.icon-nationality:before {
    content: "\e903";
}

.icon-arrow:before {
    content: "\e904";
}

.icon-plus:before {
    content: "\e91d";
}
.icon-minus:before {
    content: "\e91e";
}


.btn {
    border-radius: 0;
    text-transform: none;
}

html {
    height: 100%;
}

body {
    background-color: #0b1e46;
    color: #fff;
}

body.survey {
    background-color: #f3f3f3;
    color: #333;
}

strong {
    font-weight: 700;
}

header {
    background: #0b1e46;
    -webkit-transition: ease 1s;
    -o-transition: ease 1s;
    transition: ease 1s;
}

body.services header {
    background: transparent;
}

.tool,
main {
    z-index: 2;
}

.video-background {
    height: 100%;
    overflow: hidden;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.video-background .overlay {
    background: url(img/overlay-video.png) top left repeat-x;
    background-size: contain;
    height: auto;
    min-height: 100%;
    min-width: 100%;
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.head-video {
    height: auto;
    min-height: 100%;
    min-width: 100%;
    width: auto;
}

.photo-background {
    height: 775px;
    overflow: hidden;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.photo-background .overlay {
    background: url(img/overlay-photo.png) top left repeat-x;

    /* height: 935px; */
    min-height: 100%;
    min-width: 100%;
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background-size: contain;
}

.photo-background img {
    max-width: 100%;
    height: auto;
    -webkit-animation: zoomIn 30s infinite ease-in-out;
    animation: zoomIn 30s infinite ease-in-out;
    display: block;
    margin: 0 auto;

    /* height: auto;
    min-height: 100%;
    min-width: 100%;
    width: auto;
    animation: zoomIn 30s infinite ease-in-out; */
}

@-webkit-keyframes zoomIn {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes smoothScroll {
    from {
        transform: translateY(-40px);
    }

    to {
        transform: translateY(0px);
    }
}

@-webkit-keyframes smoothScroll {
    from {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    to {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.top {
    height: 80px;
    margin-bottom: 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.top .container-fluid {
    padding: 0;
    position: relative;
    z-index: 9;
}

.top .row {
    margin: 0;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top .logo {
    background: url(img/logo.png) 0 0 no-repeat;
    display: inline-block;
    height: 57px;
    margin-left: 15px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    width: 136px;
}

.top .navi {
    padding-right: 0;
}

.top ul {
    float: right;
    margin: 0;
    padding: 0;
}

.top ul li {
    float: left;
    list-style: none;
    position: relative;
}
.top .desktop.menu-item.menu-item-has-children {
    background-image: url(img/icons/chevron.svg);
    background-repeat: no-repeat;
    background-position: 88% center;
}
.top .desktop.menu-item.menu-item-has-children.btn-login {
    background-image: url(img/icons/chevron-orange.svg);
    background-size: 14px 9px;
}
.top .desktop.menu-item.menu-item-has-children > a {
    padding-right: 40px;
}
.top .desktop.menu-item > .sub-menu {
    padding: 10px 20px;
    background-color: #006ab3;
    box-shadow: 0 2px 5px rgb(0 0 0 / 15%);
    border-radius: 6px;
    min-width: 150px;
    position: absolute;
    left: 0;
    right: 0;
}
.top .desktop.menu-item > .sub-menu.active {
    display: block;
}
.top .desktop.menu-item > .sub-menu a {
    width: 100%;
    height: 44px;
    line-height: 44px;
    padding: 0;
    border-bottom: 1px solid  #e9e9e9;
    font-weight: 400;
    background-repeat: no-repeat;
    background-position: 95% center;
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
}

.top .desktop.menu-item > .sub-menu > .current-menu-item > a {
    background-image: url(img/icons/plane.svg);
}
.top .desktop.menu-item > .sub-menu a:hover {
    background-color: transparent;
    background-image: url(img/icons/plane.svg);
}
.top .desktop.menu-item > .sub-menu > li:last-child a {
    border: 0;
}

.top ul a.hamburger {
    background-color: #e5e5e5;
    color: #000;
    display: none;
    font-size: 36px;
    line-height: 90px;
}

.top ul li.hamburger {
    background-color: #e5e5e5;
    color: #000;
    display: none;
    font-size: 36px;
}

.top ul .hamburger a {
    color: #000 !important;
    line-height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.top ul a {
    color: #fff;
    display: inline-block;
    height: 80px;
    line-height: 80px;
    padding: 0 20px;
}

.top ul a.signin {
    background-color: #0465a9;
}

.top ul a.signin i {
    font-size: 18px;
    margin-right: 5px;
    vertical-align: middle;
}

.top ul a.signin .mobile {
    color: #fff;
    display: none;
    font-size: 20px;
}

.top ul a.signin .mobile i {
    display: inline-block;
}

.top ul a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.top ul a[data-toggle="dropdown"]:after {
    background: url(img/arrow-down-white.png) center center no-repeat;
    content: '';
    display: inline-block;
    height: 4px;
    margin-left: 10px;
    vertical-align: middle;
    width: 8px;
}

.top ul a .flag {
    height: 25px;
    margin-right: 5px;
}

.top ul .dropdown-menu {
    background-color: rgba(11, 30, 70, 0.5);
    border-radius: 0;
    left: auto !important;
    right: 0;
}

.top ul .dropdown-item {
    height: auto;
    line-height: 1;
    padding: 5px 10px;
}

.top ul .dropdown-item:hover {
    color: #fff;
}

/* on scroll */
/* body.home.scrolled header {
    padding-top: 80px;
} */

/* body.page.scrolled header {
    padding-top: 180px;
} */

body.page.services {
    background: #0b1e46 url(../img/bg-services.jpg) center top no-repeat;
}

body.scrolled .top {
    background-color: #fff;
    margin-bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    animation: smoothScroll 1s forwards;
}

/* body.scrolled .top a { color: #000; } */
body.scrolled .top ul .hamburger,
body.scrolled .top ul .signin .desktop,
body.scrolled .top ul .signin .desktop i {
    display: inline-block !important;
}

body.scrolled .top .logo {
    background-position: 0 -57px !important;
}

body.scrolled .top ul .desktop {
    display: none !important;
}

body.scrolled .top ul .pll-parent-menu-item {
    display: none !important;
}

body.scrolled .top ul li.hamburger {
    display: inline-block !important;
}

body.scrolled .visa-checker .item {
    border-top: 0;
}

.tool:not(.tool--hidden)+section.wai p {
    padding-top: 0;
}

nav.fullscreen {
    background: #0b1e46 url(img/bg-nav.jpg) bottom center no-repeat;
    background-size: cover;
    display: none;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
}

nav.fullscreen.show {
    display: block;
}

nav.fullscreen .exit {
    font-weight: 100;
    color: #fff;
    cursor: pointer;
    font-size: 60px;
    line-height: 30px;
    position: absolute;
    top: 8px;
    right: 30px;
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
}

nav.fullscreen .content {
    margin: 60px auto;
    max-width: 680px;
}

nav.fullscreen h5 {
    margin-bottom: 30px;
    text-align: center;
}

nav.fullscreen .content ul {
    margin: 0;
    padding: 0;
    text-align: center;
}

nav.fullscreen .content li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
}

nav.fullscreen .content ul a {
    color: #fff;
    display: block;
    font-size: 24px;
    font-weight: 300;
    padding: 10px !important;
}

nav.fullscreen .content ul a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}
nav.fullscreen .content ul .sub-menu a {
    font-size: 18px;
}
nav.fullscreen .logo {
    background: url(img/logo.png) 0 -57px no-repeat;
    display: inline-block;
    height: 57px;
    margin-left: 15px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    width: 136px;
    position: absolute;
    bottom: 30px;
    left: 30px;
}

nav.fullscreen .slogan {
    font-size: 24px;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

nav.fullscreen .scroll {
    height: calc(100vh - 500px);
    overflow: auto;
}

nav.fullscreen .scroll::-webkit-scrollbar {
    width: 10px;
}

nav.fullscreen .scroll::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 20px;
}

nav.fullscreen .scroll::-webkit-scrollbar-track {
    background: #0465a9;
    border-radius: 20px;
}

.hero {
    position: relative;
    z-index: 2;
    margin-top: 200px;
}

.hero h1 {
    font-size: 54px;
    font-weight: 700;
    text-align: center;
}

.hero h2 {
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 50px;
    text-align: center;
}

.hero h2 > ul {
    max-width: 420px;
    margin: 0 auto;
    padding-left: 20px;
    border-top: 5px solid #f36b21;
    list-style: none;
    text-align: left;
}

.hero h2 > ul > li {
    margin-top: 45px;
    padding-left: 40px;
    font-weight: 400;
    font-size: 30px;
    background: url(img/icons/bullet-lg.svg) center left no-repeat;
}
/* .tool:not(.tool--hidden),
.tool:not(.sticky) {
    position: relative;
    z-index: 2;
} */

.tool .row1>.col {
    padding-left: 7px;
    padding-right: 7px;
}

.visa-checker {
    color: #000;
    margin-bottom: 150px;
    overflow: hidden;
}

.tool--hidden .visa-checker {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.visa-checker .item {
    background: #fff;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    border-left: 1px solid #ebebeb;
    float: left;
    height: 80px;
    padding: 15px 15px 15px 40px;
    width: 20%;
    position: relative;
}

.visa-checker .item i {
    color: #0465a9;
    font-size: 20px;
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.visa-checker .item:last-child {
    border: 0;
    color: #fff;
    padding: 0;
    text-align: center;
}

.visa-checker .btn {
    background-color: #f36b21;
    border-radius: 0;
    color: #fff;
    font-size: 18px;
    height: 80px;
    line-height: 80px;
    margin: 0;
    padding: 0;
    text-transform: none;
    width: 100%;
}

.visa-checker .item label {
    padding-left: 9px;
    color: #888;
    margin: 0;
}

.visa-checker .item .form-control {
    border: 0;
    color: #000;
    font-weight: 700;
    height: auto !important;
    max-width: 100%;
    margin-left: -3px;
    padding: 0;
}

.visa-checker .btn i {
    color: #fff;
    font-size: 25px;
    margin-left: 15px;
    vertical-align: middle;
    position: static;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.visa-checker .btn:hover {
    background-color: #0063a8;
    color: #fff;
}

.destinations {
    position: relative;
    z-index: 2;
}

.destinations h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 1px 1px 1px #000;
}

.destinations .slider.locations {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.destinations .item {
    width: 100%;
    margin-bottom: 20px;
    display: block;
    background-color: #fff;
    color: #333;
    text-align: left;
}

.destinations .slider.locations>div {
    width: 355px;
}

.destinations .slider.locations>div:nth-last-child(-n+4) {
    width: 260px;
}

.destinations .item:hover {
    cursor: pointer;
}

.destinations .item .photo {
    color: #fff;
    font-size: 16px;
    font-style: italic;
    overflow: hidden;
    padding: 0;
    text-align: right;
    position: relative;
}

.destinations .item .photo img {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.destinations .item .photo p {
    margin: 0;
    position: absolute;
    bottom: 10px;
    right: 30px;
}

.destinations .item:hover .photo img {
    -webkit-transform: scale(1.1) rotate(-2deg);
    -ms-transform: scale(1.1) rotate(-2deg);
    transform: scale(1.1) rotate(-2deg);
}

.destinations .item.big .text {
    /* height: 170px; */
    padding: 20px 30px;
}

.destinations .item.small .text {
    /* height: 150px; */
    padding: 20px 30px;
}

.destinations .item h2 {
    font-weight: 700;
    position: relative;
}

.destinations .item h2>a {
    font-weight: 700;
}

.destinations .item.big h2 {
    font-size: 34px;
}

.destinations .item.small h2 {
    font-size: 24px;
}

.destinations .item h2 i {
    color: #f36b21;
    position: absolute;
    right: 0;
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

.destinations .item h2.big i {
    font-size: 30px;
    top: 5px;
}

.destinations .item h2.small i {
    font-size: 22px;
    top: 0;
}

.destinations .item:hover h2 i {
    opacity: 1;
}

.destinations .item ul {
    margin: 0;
    padding: 0;
}

.destinations .item li {
    font-size: 16px;
    list-style: none;
}

.destinations .item a {
    color: inherit;
    font-weight: 300;
}

.destinations .item a:hover {
    color: #f36b21;
}

.home main {
    background: #0b1e46 url(img/bg-home.jpg) center top no-repeat;
    color: #fff;
    position: relative;
    z-index: 2;
}

.contact-us main {
    background: #0b1e46 url(img/bg-contacts-us.jpg) bottom center no-repeat;
}

body.services main {
    background: transparent;
}

main.country {
    background: url(img/bg-country.jpg) center center no-repeat;
}

main.visa {
    background: #0b1e46;
}

main section h2,
main section h3,
main section.customers,
main section.goodhands,
main section.howitworks {
    text-align: center;
}

main section {
    overflow: hidden;
    padding: 98px 0;
}

main section h2 {
    font-size: 54px;
    font-weight: 700;
}

main section h3 {
    font-size: 34px;
    font-weight: 300;
}

main section.howitworks ul {
    margin: 0;
    padding: 50px 0 0 0;
    position: relative;
    z-index: 2;
}

main section.howitworks li {
    display: inline-block;
    list-style: none;
    vertical-align: top;
    width: 25%;
}

main section.howitworks li span {
    background-color: #0063a8;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    height: 159px;
    font-size: 70px;
    line-height: 170px;
    width: 159px;
}

main section.howitworks li strong {
    font-size: 40px;
}

main section.howitworks .path {
    position: absolute;
    bottom: 20%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

main section.goodhands .box {
    min-height: 249px;
    background: rgba(0, 0, 0, 0.2);
    color: #f36b21;
    display: inline-block;
    font-weight: 400;
    margin: 0 5%;
    padding: 30px;
    vertical-align: top;
    width: 20%;
}

main section.goodhands .box span {
    color: #0465a9;
    display: block;
    font-size: 60px;
    line-height: 1;
}

main section.goodhands .box strong {
    color: #fff;
    font-size: 64px;
}

main section.customers .slider.customers {
    padding-top: 50px;
}

main section.customers .slick-slide img {
    margin: 0 auto;
}

main section.customers .rating i {
    color: #f36b21;
    margin: 0 2px;
}

main section.customers .quote {
    font-style: italic;
}

main section.customers .author {
    font-weight: 700;
}

main section.cvs {
    background: rgba(0, 0, 0, 0.2);
    min-height: 760px;
    padding: 48px 0;
    position: relative;
}

main section.cvs .path {
    position: absolute;
    top: 10%;
    left: 50%;
    -webkit-transform: translateX(-800px);
    -ms-transform: translateX(-800px);
    transform: translateX(-800px);
}

main section.cvs h2 {
    background: url(img/orange-line.png) bottom left no-repeat;
    margin-bottom: 30px;
    padding-bottom: 20px;
    text-align: left;
}

main section.cvs h6 {
    color: #46b2fd;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

main section.cvs ul {
    margin: 0 0 30px;
    padding: 0;
}

main section.cvs li {
    background: url(img/bullet.png) center left no-repeat;
    list-style: none;
    margin: 15px 0;
    padding: 0 0 0 20px;
}

main section.cvs .bg {
    position: absolute;
    top: 0;
    left: 52.5%;
}

main section.cvs .bg--left {
    right: 52.5%;
    left: auto;
}

main section.cvs .btn {
    background-color: #f36b21 !important;
    font-size: 18px;
    padding: 25px 50px;
}

main section.applynow {
    text-align: center;
}

main section.applynow h3 {
    font-weight: 300;
    margin: 0 0 30px;
}

main section.applynow .btn {
    background-color: #f36b21 !important;
    font-size: 18px;
    min-width: 200px;
    padding: 20px;
}

main section.aboutvisa .box {
    background-color: #fff;
    color: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

main section.aboutvisa .box .leftside {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
}

main section.aboutvisa .box .box-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

main section.aboutvisa .box .iconbox {
    background-color: #f3f3f3;
    color: #0465a9;
    font-size: 50px;
    padding: 30px;
    text-align: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

main section.aboutvisa .box .leftside .box-row:nth-child(2) .iconbox {
    background-color: #ededed;
}

main section.aboutvisa .box .leftside .textbox {
    padding: 30px;
}

main section.aboutvisa .box .leftside .box-row:nth-child(2) .textbox {
    background-color: #f8f8f8;
    width: 100%;
}

main section.aboutvisa .box h5 {
    font-weight: 700;
}

main section.aboutvisa .box strong {
    color: #0465a9;
}

main section.aboutvisa .box ul {
    margin: 0;
    padding: 0;
}

main section.aboutvisa .box li {
    list-style: none;
    margin: 0 0 15px;
    padding: 0 0 0 25px;
    position: relative;
}

main section.aboutvisa .box li i {
    color: #f36b21;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

main section.aboutvisa .box .rightside {
    background-color: #0465a9;
    color: #fff;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

main section.aboutvisa .box .rightside .photobox {
    background: url(img/aboutvisa.jpg) center top no-repeat;
    height: 400px;
    position: relative;
}

main section.aboutvisa .box .rightside .photobox .boxy {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px 30px 30px 90px;
    position: absolute;
    bottom: 0;
    left: 0;
}

main section.aboutvisa .box .rightside .photobox .boxy i {
    font-size: 40px;
    position: absolute;
    top: 60px;
    left: 30px;
}

main section.aboutvisa .box .rightside .photobox h5 {
    font-size: 18px;
}

main section.aboutvisa .box .rightside .textbox__wrapper {
    height: calc(100% - 400px);
    position: relative;
}

main section.aboutvisa .box .rightside .textbox {
    padding: 30px;
}

main section.aboutvisa .box .rightside .textbox .cost {
    padding: 0 0 0 60px;
    position: relative;
}

main section.aboutvisa .box .rightside .textbox .cost i {
    font-size: 40px;
    position: absolute;
    top: 30px;
    left: 0;
}

main section.aboutvisa .box .rightside .textbox .cost p {
    margin: 0;
}

main section.aboutvisa .box .rightside .textbox .cost strong {
    color: #ffbd1d;
    display: inline-block;
    font-size: 50px;
    line-height: 1;
    margin: 0 0 30px 0;
}

main section.aboutvisa .box .rightside .textbox .btn {
    background-color: #f36b21 !important;
    box-shadow: none;
    font-size: 18px;
    min-width: 250px;
    padding: 25px;
}

main section.aboutvisa .box .rightside .textbox .btn:hover {
    background-color: #0b1e46 !important;
}

main section.aboutvisa .box .rightside .textbox .btn i {
    font-size: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

main section.relatedservices {
    background: url(img/bg-relatedservices.jpg) center center no-repeat;
    background-size: cover;
}

main section.relatedservices a {
    color: #46b2fd;
}

main section.relatedservices a i {
    margin-left: 5px;
    vertical-align: middle;
}

main section.relatedservices strong {
    font-size: 18px;
}

main section.relatedservices strong>a {
    color: #f36b21;
}

main section.relatedservices strong>a:hover {
    text-decoration: underline;
}

main section.relatedservices .row.bordered {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 15px;
}

main section.relatedservices a.showall {
    font-size: 18px;
}

main section.relatedservices a.showall strong {
    color: #46b2fd;
}

main section.relatedservices a.showall i {
    color: #46b2fd;
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

footer {
    background-color: #0063a8;
    color: #fff;
    font-size: 14px;
    padding: 30px 0;
}

footer .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .row>div {
    padding-top: 15px;
    padding-bottom: 15px;
}

footer .logo,
footer .icons,
footer .copy {
    text-align: right;
}

footer .social {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .logo a {
    background: url(img/logo.png) 0 0 no-repeat;
    display: inline-block;
    height: 57px;
    margin-left: 15px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    width: 136px;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

footer ul {
    margin: 0;
    padding: 0;
}

footer li {
    display: inline-block;
    list-style: none;
    margin-right: 15px;
}

footer .menu .home {
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
}

footer .awards span {
    background: url(img/sprite-awards.png) no-repeat;
    display: inline-block;
    height: 50px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

footer .awards span.eoty {
    background-position: 0 0;
    width: 136px;
}

footer .awards span.deloitte {
    background-position: -136px 0;
    width: 70px;
}

footer .awards span.eba {
    background-position: -206px 0;
    width: 96px;
}

footer .awards span.sectigo {
    background-position: -302px 0;
    width: 155px;
}

footer .icons li {
    margin-right: 0;
    margin-left: 15px;
}

footer .icons a {
    background: url(img/sprite-social.png) no-repeat;
    display: inline-block;
    height: 24px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    width: 24px;
}

footer .icons a:hover {
    opacity: .8;
}

footer .icons a.fb {
    background-position: 0 0;
    width: 24px;
}

footer .icons a.tw {
    background-position: -24px 0;
    width: 29px;
}

footer .icons a.lin {
    background-position: -101px 0;
    width: 24px;
}

footer .icons a.ig {
    background-position: -77px 0;
    width: 24px;
}

footer .icons a.yt {
    background-position: -53px 0;
    width: 24px;
}

footer .copy {
    font-size: 12px;
}

.all-visas {
    display: none;
    background: url(img/bg-nav.jpg) bottom center no-repeat;
    background-size: cover;
    height: 100vh;
    max-width: 100vw !important;
    width: 100vw;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
}
.all-visas::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.3);
    z-index: -1;
}

.all-visas .mat-dialog-container {
    background: none;
    border-radius: 0;
    color: #fff;
}

.all-visas .exit {
    font-weight: 400;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 30px;
    position: absolute;
    top: 30px;
    right: 40px;
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
}
.all-visas .return {
    font-weight: 400;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    position: absolute;
    top: 30px;
    left: 40px;
}

.all-visas #searchInput::-webkit-input-placeholder {
  font-size: 20px;
  color:#6f6f6f;
}
.all-visas #searchInput::-moz-placeholder {
  font-size: 20px;
  color:#6f6f6f;
}
.all-visas #searchInput:-ms-input-placeholder {
  font-size: 20px;
  color:#6f6f6f;
}
.all-visas #searchInput:-moz-placeholder {
  font-size: 20px;
  color:#6f6f6f;
}

nav.fullscreen .exit:hover,
.all-visas .exit:hover {
    opacity: .5;
    text-decoration: none;
}

.all-visas .content {
    margin: 30px auto;
    max-width: 890px;
}

.all-visas .content ul {
    margin: 0;
    padding: 0;
    text-align: center;
}
.all-visas .content ul.search-by-country {
    padding: 20px 30px 0 30px;
    background: #006AB3;
    border-bottom: 1px solid #fff;
}

.all-visas .content li {
    border-bottom: 0;
    list-style: none;
}

.all-visas .content ul a {
    color: #fff;
    display: block;
    font-size: 24px;
    font-weight: 300;
    padding: 10px 30px !important;
}

.all-visas .content ul a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.all-visas .slogan {
    font-size: 24px;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.all-visas .scroll {
    height: calc(100vh - 500px);
    position: relative;
    overflow: auto;
    background: #006AB3;
}

.all-visas .scroll::-webkit-scrollbar {
    width: 10px;
}

.all-visas .scroll::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 20px;
}

.all-visas .scroll::-webkit-scrollbar-track {
    background: #0063a8;
    border-radius: 20px;
}

.all-visas .content ul {
    text-align: left;
}

.all-visas .content ul a {
    padding: 8px 10px;
}

.all-visas li.parent {
    padding: 10px 30px;
}

.all-visas li.parent a {
    padding-left: 0 !important;
    font-weight: 700;
    font-size: 20px;
}

.all-visas li.flag a {
    position: relative;
}

.all-visas li.flag a:before {
    content: '';
    display: inline-block;
    height: 36px;
    margin-right: 15px;
    vertical-align: middle;
    width: 36px;
    background-size: contain !important;
}

.all-visas li.flag.austria a:before {
    background: url(img/flags/at.png) center center no-repeat;
}

.all-visas li.flag.australia a:before , li.flag.australie a:before{
    background: url(img/flags/au.png) center center no-repeat;
}

.all-visas li.flag.belgium a:before {
    background: url(img/flags/be.png) center center no-repeat;
}

.all-visas li.flag.bulgaria a:before {
    background: url(img/flags/bg.png) center center no-repeat;
}

.all-visas li.flag.canada a:before {
    background: url(img/flags/ca.png) center center no-repeat;
}

.all-visas li.flag.denmark a:before {
    background: url(img/flags/de.png) center center no-repeat;
}

.all-visas li.flag.france a:before {
    background: url(img/flags/fr.png) center center no-repeat;
}

.all-visas li.flag.ireland a:before, li.flag.irlande a:before , li.flag.irlanda a:before {
    background: url(img/flags/ie.png) center center no-repeat;
}

.all-visas li.flag.italy a:before {
    background: url(img/flags/it.png) center center no-repeat;
}

.all-visas li.flag.holland a:before {
    background: url(img/flags/nl.png) center center no-repeat;
}

.all-visas li.flag.newzealand a:before, li.flag.nouvelle-zélande a:before , li.flag.nuovazelanda a:before {
    background: url(img/flags/nz.png) center center no-repeat;
}

.all-visas li.flag.romania a:before {
    background: url(img/flags/ro.png) center center no-repeat;
}

.all-visas li.flag.russia a:before,li.flag.russie a:before {
    background: url(img/flags/ru.png) center center no-repeat;
}

.all-visas li.flag.unitedkingdom a:before {
    background: url(img/flags/uk.png) center center no-repeat;
}

.all-visas li.flag.unitedstates a:before, li.flag.etats-unis a:before {
    background: url(img/flags/us.png) center center no-repeat;
}

.all-visas li.flag.china a:before, li.flag.chine a:before , li.flag.cina a:before {
    background: url(img/flags/china.png) center center no-repeat;
}

.all-visas li.flag.cuba a:before {
    background: url(img/flags/cuba.png) center center no-repeat;
}

.all-visas li.flag.egypt a:before, li.flag.egypte a:before,
.all-visas li.flag.egitto a:before, li.flag.egitto a:before {
    background: url(img/flags/egypt.png) center center no-repeat;
}

.all-visas li.flag.india a:before, li.flag.inde a:before {
    background: url(img/flags/india.png) center center no-repeat;
}

.all-visas li.flag.kenya a:before, li.flag.kenia a:before {
    background: url(img/flags/kenya.png) center center no-repeat;
}

.all-visas li.flag.oman a:before {
    background: url(img/flags/oman.png) center center no-repeat;
}

.all-visas li.flag.saudiarabia a:before, 
.all-visas li.flag.arabiesaoudite a:before ,
.all-visas li.flag.arabiasaudita a:before {
    background: url(img/flags/saudi-arabia.png) center center no-repeat;
}

.all-visas li.flag.thailand a:before, 
.all-visas li.flag.thaïlande a:before,
.all-visas li.flag.thailandia a:before {
    background: url(img/flags/thailand.png) center center no-repeat;
}

.all-visas li.flag.turkey a:before, 
.all-visas li.flag.turquie a:before, 
.all-visas li.flag.turchia a:before {
    background: url(img/flags/turkey.png) center center no-repeat;
}

.all-visas li.flag.vietnam a:before {
    background: url(img/flags/vi.png) center center no-repeat;
}

.all-visas li.flag.azerbaijan a:before, li.flag.azerbaigian a:before , li.flag.l’azerbaïdjan a:before {
    background: url(img/flags/azerbaijan.png) center center no-repeat;
    border-radius: 50%;
}

.all-visas li.flag.cambodia a:before, li.flag.cambogia a:before, li.flag.lecambodge a:before {
    background: url(img/flags/cambodia.png) center center no-repeat;
    border-radius: 50%;
}

.all-visas li.flag.ethiopia a:before, li.flag.etiopia a:before, li.flag.l’Éthiopie a:before {
    background: url(img/flags/ethiopia.png) center center no-repeat;
    border-radius: 50%;
}

.all-visas li.flag.laos a:before, li.flag.lelaos a:before {
    background: url(img/flags/laos.png) center center no-repeat;
    border-radius: 50%;
}

.all-visas li.flag.pakistan a:before, li.flag.lepakistan a:before {
    background: url(img/flags/pakistan.png) center center no-repeat;
    border-radius: 50%;
}

.all-visas li.flag.srilanka a:before, li.flag.lesrilanka a:before {
    background: url(img/flags/srilanka.png) center center no-repeat;
    border-radius: 50%;
}

.all-visas li.flag.tanzania a:before, li.flag.latanzanie a:before {
    background: url(img/flags/tanzania.png) center center no-repeat;
    border-radius: 50%;
}

.all-visas li.flag.unitedstatesofamerica a:before, 
.all-visas li.flag.leunitedstatesofamerica a:before,
.all-visas li.flag.statiunitid’america a:before {
    background: url(img/flags/us.png) center center no-repeat;
}

.all-visas ul.search-by-country li {
    display: inline-block;
}

.all-visas ul.search-by-country a {
    border: 1px solid #fff;
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
    margin: 0 30px 30px 0;
    padding: 0 !important;
    text-align: center;
    width: 40px;
}

.all-visas ul.search-by-country li:last-child a {
    margin-right: 0;
}

.all-visas ul.search-by-country a.active,
.all-visas ul.search-by-country a.active:hover {
    background-color: #fff;
    color: #000;
    font-weight: 700;
}

.all-visas .search-by-text {
    background-color: #fff;
    border-radius: 0;
    padding: 11px 30px;
    position: relative;
}

.all-visas .search-by-text input {
    background: transparent;
    border: 0;
    width: 90%;
}

.all-visas .search-by-text i {
    color: #000;
    font-size: 20px;
    position: absolute;
    top: 20px;
    right: 30px;
}

.all-visas .contact {
    font-weight: 400;
    font-size: 22px;
    background-color: #002c5b;
}
.all-visas .contact a { text-decoration: underline; }
.all-visas .contact a:hover { text-decoration: none; }

.form-field { margin-bottom: 15px; }

.form-control {
    border: 0;
    border-bottom: 1px solid #c4c9ce;
    border-radius: 0;
    padding: 5px;
}

select.form-control { padding: 5px 0; }

.form-field-error {
    color: #c00;
    font-size: 13px;
    padding: 5px;
    text-align: left;
}

button[type="submit"] {
    background-color: #f36b21 !important;
    font-size: 18px;
    min-width: 320px;
    text-transform: none;
}

button[type="submit"] i {
    display: inline-block;
    margin-left: 10px;
    vertical-align: sub;
}

.modal {
    color: #000;
}

.modal.show .modal-dialog {
    width: 100%;
}

.modal-header {
    border-bottom: 0;
    position: relative;
}

.modal-header .close {
    font-size: 30px;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 1;
}

.modal-footer {
    border-top: 0;
}

/* Check Visas popup */
#eligibilityModal .modal-header {
    background: #0465a9 url(img/bg-dialog.png) center center no-repeat;
    background-size: cover;
    color: #fff;
    display: block;
    min-height: 112px;
    padding-top: 30px;
    text-align: center;
    position: relative;
}

#eligibilityModal .modal-header .close {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    top: 5px;
    right: 10px;
}

#eligibilityModal .modal-title {
    font-size: 30px;
}

#eligibilityModal .modal-body {
    text-align: center;
}

/* Login, Register, Forgotten pass popups */
.material-textfield { position: relative; margin-bottom: 30px; }

.form-material-label {
    position: absolute;
    font-size: 16px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #bbb;
    font-weight: 400;
    padding: 0 5px;
    margin: 0;
    -webkit-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    transition: .2s ease-out;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    pointer-events: none;
}
.form-material-control {
    width: 100%;
    padding: 10px 5px;
    border: 0;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    outline: none;
    color: #333;
    -webkit-transition: .2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}
.form-material-control:focus {
    border-color: #025da0 ;  
}
.form-material-control:focus + .form-material-label {
    color: #025da0;
    top: 0;
    -webkit-transform: translateY(-50%) scale(.9);
    -ms-transform: translateY(-50%) scale(.9);
    transform: translateY(-50%) scale(.9);
}
.form-material-control:not(:placeholder-shown) + .form-material-label {
    top: 0;
    -webkit-transform: translateY(-50%) scale(.9);
    -ms-transform: translateY(-50%) scale(.9);
    transform: translateY(-50%) scale(.9);
}
#loginCorpModal .close {
    padding: 0;
    font-weight: 300;
    font-size: 36px;
    line-height: 36px;
    color: #b4b4b4;
    top: 25px;
    right: 30px;
    text-shadow: none;
}
#loginCorpModal .close:focus {
    outline: 0;
    border: 0;
}
#loginCorpModal .modal-header,
#loginCorpModal .modal-body {
    padding: 1rem 2rem;
}
.toggle-password {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.btn-login > a {
    font-weight: 400;
    color: #eb6822 !important;
}
.btn-login > a:before {
    content: '';
    width: 30px;
    height: 30px;
    display: inline-block;
    background: url(img/icons/user_business_man_icon.svg) no-repeat center;
    -webkit-background-size: 20px 20px;
    -moz-background-size: 20px 20px;
    -o-background-size: 20px 20px;
    background-size: 20px 20px;
    vertical-align: middle;
    margin-top: -3px;

}
.btn-login > a:hover {
    color: #eb6822 !important;
}

#loginModal .modal-dialog,
#registerModal .modal-dialog,
#forgottenModal .modal-dialog {
    max-width: 960px;
}

#loginModal .modal-content,
#registerModal .modal-content,
#forgottenModal .modal-content {
    padding: 10px 30px 10px 375px;
}

#loginModal .modal-content:before,
#registerModal .modal-content:before,
#forgottenModal .modal-content:before {
    content: '';
    display: block;
    height: 100%;
    width: 348px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

#loginModal .modal-content:before,
#forgottenModal .modal-content:before {
    background: url(img/signin.jpg) top left no-repeat;
}

#registerModal .modal-content:before {
    background: url(img/register.jpg) top left no-repeat;
}

#loginModal .modal-header,
#registerModal .modal-header,
#forgottenModal .modal-header {
    display: block;
    margin-bottom: 30px;
}

#loginModal .modal-header h5,
#registerModal .modal-header h5,
#forgottenModal .modal-header h5 {
    font-size: 26px;
    text-align: center;
}

#loginModal .modal-body,
#forgottenModal .modal-body {
    font-size: 14px;
    padding: 0 50px;
    text-align: center;
}

#registerModal .modal-body {
    font-size: 14px;
    text-align: center;
}

/*language dropdown*/
.sub-menu {
    display: none;
    float: none !important;
}

.sub-menu.shown {
    display: block;
    position: absolute;
    top: 80px;
}

.pll-parent-menu-item .sub-menu {
    width: 132px;
}

.sub-menu li {
    float: none !important;
}

/*Cookies*/
.cookies-box {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
}

.cookies-box .btn {
    background: #f36b21;
    font-size: 16px;
    font-weight: 700;
    margin-left: 20px;
    padding: 5px 15px;
}

.cookies-box .btn:hover {
    background: #0465a9;
    color: #fff;
}

section.wai p {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 14px;
    padding: 200px 0 10px;
    color: #fff;
}

section.wai a {
    color: #fff;
}

section.wai a:hover,
section.wai a:focus,
.current {
    color: #f36b21;
}

section.visatype.othervisas {
    background: url(img/bg-visas.jpg) center top no-repeat;
    margin-bottom: 0;
}

section.visatype.othervisas .accordion {
    margin-bottom: 400px;
}

.accordion .card {
    background: transparent;
}

.accordion .card-header {
    padding: 20px 0;
    margin-bottom: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
}

.accordion h5 a {
    color: #fff;
    display: block;
    font-size: 34px;
    padding-right: 100px;
    position: relative;
}

.accordion h5 a i.before {
    background-color: #0465a9;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-size: 60px;
    height: 130px;
    line-height: 130px;
    margin-right: 30px;
    margin-left: 15px;
    text-align: center;
    vertical-align: middle;
    width: 130px;
}

.accordion h5 a i.after {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-block;
    background-color: #f36b21;
    line-height: 62px;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.accordion h5 a[aria-expanded=true] i.after,
.accordion h5 a.expanded i.after {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
}

.accordion .box {
    height: calc(100% - 15px);
    padding: 20px;
    margin: 0 0 15px 0;
    position: relative;
    background-color: #fff;
    color: #000;
}

.accordion .box h4 {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 18px;
    color: #f36b21;
}

.accordion .box a {
    background-color: #f36b21;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
}

.accordion .box>p {
    padding-bottom: 35px;
}

.accordion .box>a {
    position: absolute;
    bottom: 20px;
}

.accordion .box a i {
    margin-left: 5px;
    vertical-align: middle;
}

.accordion .box a:hover {
    background-color: #0465a9;
}

.accordion .box h4>a {
    background-color: inherit;
    color: inherit;
    padding: 0;
}

.accordion .box h4>a:hover {
    background-color: inherit;
    color: #0465a9;
}

.accordion .flag {
    margin: 0 15px;
}

/* Survey page */
body.survey,
body.survey header {
    background-color: #f3f3f3;
    color: #333;
}

body.survey .top {
    background-color: #fff;
}

body.survey section.toplogo {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    position: relative;
}

body.survey section.toplogo a.logo {
    background: url(img/logo.png) 0 -57px no-repeat;
    display: inline-block;
    height: 57px;
    margin-left: 15px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    width: 136px;
}

body.survey section.body {
    min-height: calc(100vh - 386px);
    padding: 100px 0;
    text-align: center;
}

body.survey section.body h1 {
    border-bottom: 1px solid #ccc;
    font-size: 34px;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

body.survey section.body h2 {
    font-size: 20px;
    font-weight: 700;
}

body.survey section.body .ratings.disabled {
    pointer-events: none;
}

body.survey section.body .rating.star {
    background: url(img/sprite-rating.jpg) 0 0 no-repeat;
    display: inline-block;
    height: 50px;
    margin: 0 3px;
    vertical-align: top;
    width: 50px;
}

body.survey section.body .rating.star.hover {
    background-position: 0 -50px;
}

body.survey section.body .rating.star.rated {
    background-position: 0 -100px;
}

body.survey section.body .rating.star.rated2 {
    background-position: 0 -150px;
}

body.survey section.body .iflowrating,
body.survey section.body .ifhighrating {
    display: none;
}

body.survey section.body .form-holder {
    font-size: 18px;
}

body.survey section.body .form-group {
    margin-bottom: 10px;
}

body.survey section.body .form-control {
    max-width: 460px;
    padding: 10px !important;
    margin: 0 auto;
    border-bottom: 0;
    line-height: normal;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

body.survey section.body textarea.form-control {
    height: 150px;
}

body.survey section.body label,
body.survey section.body .fake-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

body.survey section.body p.note {
    color: #46b2fd;
    font-size: 18px;
    font-weight: 700;
}

body.survey section.body .radios {
    margin: 0;
    padding: 0;
}

body.survey section.body .radios li {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #666;
    cursor: pointer;
    display: inline-block;
    height: 145px;
    margin: 8px;
    overflow: hidden;
    padding: 40px 5px 0 5px;
    width: 145px;
    vertical-align: top;
}

body.survey section.body .radios li:hover {
    border: 1px solid #aaa;
}

body.survey section.body .radios .icon {
    background: url(img/sprite-yesno.png) 0 0 no-repeat;
    display: inline-block;
    height: 31px;
    width: 31px;
}

body.survey section.body .radios li.active .icon {
    background-position: -31px 0;
}

body.survey section.body .radios label {
    font-size: 16px;
    font-weight: 400;
}

body.survey section.body .radios input {
    display: none;
}

body.survey section.body input[type=submit] {
    background-color: #f36b21;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    padding: 20px;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

body.survey section.body input[type=submit]:hover {
    background-color: #0465a9;
}

body.survey .required-field,
body.survey .error-message {
    font-size: 13px;
    color: #d63638;
}

/* Policy pages styles */
/* Header */
.policy header {
    height: 400px;
    background: url("img/bg-policy.jpg") no-repeat center center;
    background-size: cover;
}

.policy.scrolled .top {
    box-shadow: 3px 1px 5px rgba(0, 0, 0, 0.09);
}

/* Page Title */
.policy h1 {
    font-weight: 700;
    font-size: 54px;
    line-height: 60px;
    color: #333;
}

.policy h1:after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    margin: 20px 0 25px;
    background: #f36b21;
}

/* Content */
.policy ul {
    padding-left: 0;
    list-style: none;
}

/* Main */
.policy main {
    background: #fff;
    color: #333;
}

.policy main>section {
    width: 100%;
    max-width: 760px;
    padding-left: 30px;
}

.policy main h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.policy main ul {
    padding: 5px 0 15px;
    margin-bottom: 0;
}

.policy main ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.policy main ol {
    padding-left: 0;
    list-style: none;
    counter-reset: terms-counter;
}

.policy main ol li {
    counter-increment: terms-counter;
    margin-bottom: 30px;
}

.policy main ol li::before {
    content: counter(terms-counter) ". ";
    font-weight: 700;
    color: #333;
}

.policy main a {
    color: #f36b21;
    text-decoration: underline;
    -webkit-transition: color 300ms;
    transition: color 300ms;
}

.policy main ul li i {
    position: absolute;
    left: 0;
    top: 7px;
    color: #f36b21;
    font-size: 10px;
}

/*Aside sidebar */
.policy aside {
    background: #f3f3f3;
}

.policy .sidebar {
    width: 100%;
    max-width: 315px;
    height: 100%;
    margin-left: auto;
    padding-right: 30px;
    position: relative;
}

.policy .sidebar ul {
    max-width: 285px;
    -webkit-transition: ease .2s;
    -o-transition: ease .2s;
    transition: ease .2s;
}

.policy .sidebar a {
    color: #333;
}

.policy .sidebar a[href^="mailto:"] {
    color: #f36b21;
    text-decoration: underline;
}

.policy .sidebar>p:first-child {
    padding: 30px 0 20px;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    color: #333;
}

.policy .sidebar h3 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 18px;
    color: #46b2fd;
}

.policy .sidebar h3:last-of-type {
    margin-bottom: 10px;
}

.policy .sidebar ul li {
    margin-bottom: 20px;
}

.policy .sidebar ul li:last-child {
    margin-bottom: 0;
}

.policy .sidebar ul li a {
    font-weight: 700;
    line-height: normal;
    font-size: 18px;
    color: #46b2fd;
    -webkit-transition: color 300ms;
    transition: color 300ms;
}

.policy .sidebar ul li a:hover,
.policy main a:hover,
.policy .sidebar a:hover {
    color: #388eca;
}

/*Privacy Policy > Contact Information */
.policy .dpo li {
    padding-left: 0;
    margin-bottom: 0;
}

.policy .dpo strong {
    display: block;
    color: #46b2fd;
}

.policy .dpo a {
    margin-bottom: 20px;
    display: block;
}

/*Meet The Team */

/*Backgorunds */
/* .team {
    background: url(img/bg-team.jpg) center top no-repeat #0b1e46;
} */

.team main,
.team header,
.about-us main,
.about-us header {
    background: 0 0;
}

/*CVS Section*/
.team main section.cvs {
    padding: 50px 0 0;
    margin-top: 40px;
}

/* Visa Departments */
.visa-departments {
    background: url(img/visa-departments-bg.jpg) no-repeat;
}

.visa-departments__box {
    margin-bottom: 100px;
}

.visa-departments__box:last-child {
    margin-bottom: 0;
}

.visa-departments h2 {
    text-align: left;
}

.visa-departments h2:after {
    content: '';
    width: 60px;
    height: 5px;
    display: block;
    margin: 15px 0 20px;
    background: #f36b21;
}

.visa-departments h3 {
    font-weight: 400;
    font-size: 18px;
    text-align: left;
    color: #46b2fd;
}

.visa-departments ul {
    list-style: none;
    padding-left: 0;
}

.visa-departments ul li {
    padding: 0 0 0 20px;
    margin: 15px 0;
    list-style: none;
    background: url(img/bullet.png) no-repeat;
    background-position-y: 8px;
}

.visa-department__img,
.visa-department__summary {
    background-color: #091838;
}

.visa-department__img--travel {
    background: url(img/business-travel.jpg) #091838 no-repeat center;
}

.visa-department__img--recruiter {
    background: url(img/recruiter.jpg) #091838 no-repeat center;
}

.visa-department__img--event {
    background: url(img/event-organise.jpg) #091838 no-repeat center;
}

.visa-department__summary {
    padding: 40px;
}

/*Team members cards */
.tm-cards {
    max-width: 1500px;
    margin: 0 auto;
}
.tm-card {
    max-width: 300px;
    margin-bottom: 30px;
}
.tm-card__header {
    min-height: 351px;
    padding: 25px 15px;
    background: #006ab3;
}

.show-summary {
    display: block;
    cursor: pointer;
}
.hide-summary {
    display: none;
    position: absolute;
    right: 27px;
    top: 22px;
    cursor: pointer;
}

.tm-card__name {
    font-weight: 400;
    font-size: 22px;
    color: #fff;
}

.tm-card__position {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.tm-card__img {
    margin-bottom: 15px;
    max-width: 180px;
    max-height: 180px;
    display: block;
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
}
.faded-out {
    opacity: 0;
    visibility: hidden;
}

.tm-card__body {
    min-height: 170px;
    padding: 20px 10px;
    background: #002c5b;
}

.tm-card__summary {
    display: none;
    position: absolute;
    top: 60px;
    max-width: 200px;
    left: 30px;
    line-height: 24px;
    font-size: 14px;
}

.contact__list {
    padding-left: 0;
    list-style: none;
    position: relative;
}

.contact__list a {
    color: #fff;
}

.contact__list a:hover {
    text-decoration: underline;
}

.contact__list li {
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 14px;
}

.contact__list li:last-child {
    margin-bottom: 0;
}

.contact__list li:before {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 21px;
    position: absolute;
    left: 0;
}

.contact__list li:first-child::before {
    content: "\f095";
    left: 3px;
}

.contact__list li:nth-child(2):before {
    content: "\f0e0";
}

.contact__list li:nth-child(3):before {
    content: "\f041";
    left: 5px;
}

.contact .wpcf7-submit {
    padding: 13px 40px;
    margin-left: auto;
    display: block;
    background: #f36b21;
    border-color: #f36b21;
    color: #fff;
}
.contact .wpcf7-submit:disabled { opacity: .8; }
.contact .wpcf7-submit:hover { background: #0063a8; border-color: #0063a8; }
.contact .wpcf7-list-item { margin-left: 0; }

.contact .wpcf7-acceptance input[type="checkbox"] {
    width: 20px;
    height: 13px;
    position: relative;
    margin-right: 15px;
    padding: 0;
    cursor: pointer;
    -moz-appearance:initial;
}
.contact .wpcf7-acceptance input[type="checkbox"]:before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: -5px;
    z-index: 9;
}
.contact .wpcf7-acceptance input[type="checkbox"]:checked:after {
    content: '';
    width: 2px;
    height: 2px;
    position: absolute;
    top: 7px;
    left: 7px;
    background: #0063a8;
    -webkit-box-shadow: 2px 0 0 #0063a8, 4px 0 0 #0063a8, 4px -2px 0 #0063a8, 4px -4px 0 #0063a8, 4px -6px 0 #0063a8, 4px -8px 0 #0063a8;
    box-shadow: 2px 0 0 #0063a8, 4px 0 0 #0063a8, 4px -2px 0 #0063a8, 4px -4px 0 #0063a8, 4px -6px 0 #0063a8, 4px -8px 0 #0063a8;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 10;
}
.contact .wpcf7-acceptance span.wpcf7-list-item { margin: 10px 0 0 0; }
.contact .wpcf7-acceptance span.wpcf7-list-item > label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.contact .wpcf7-list-item-label > a { color: #f36b21; }
.contact .wpcf7-list-item-label > a:hover { text-decoration: underline; }

.tm-card__footer {
    background: #0f6baf;
}


.tm-card__footer .fa {
    -webkit-transition: ease .2s;
    -o-transition: ease .2s;
    transition: ease .2s;
}

.tm-card__footer .fa:hover {
    opacity: .7;
}

.tm-card__footer .fa-linkedin,
.tm-card__footer .fa-facebook {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    line-height: 28px;
    background: #fff;
    color: #0f6baf;
    text-align: center;
    font-size: 16px;
}

.tm-card__footer .fa-twitter {
    margin: 0 20px;
    font-size: 28px;
    color: #fff;
}

/*Orange Btn*/
.btn--orange,
.btn--orange:focus {
    padding: 25px 50px !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    background: #f36b21;
}
#loginSubmit.btn--orange {
    min-width: 140px;
    padding: 10px !important;
    font-size: 16px !important;
}

main section.applynow .btn:hover,
main section.applynow .btn:focus,
main section.cvs .btn:hover,
main section.cvs .btn:focus,
.btn--orange:hover {
    box-shadow: none;
    background: #025da0 !important;
    color: #fff;
}
/*Blue Btn*/
.btn--blue {
    background: #006AB3;
}

/* About Us */
.about-us {
    background: url(img/bg-about.jpg) center top no-repeat #0b1e46;
}

.about-us main section.cvs {
    min-height: 700px;
    padding: 50px 0 0;
}

/* Who we are */
.service-box {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.service-box:after {
    content: "\f00c";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 23px;
    color: #f36b21;
    position: absolute;
    right: 0;
}

.service-box h3 {
    padding-right: 30px;
}

.service-box .ico {
    padding: 65px;
    border-radius: 50%;
    margin-right: 30px;
}

/*Icons*/
.ico {
    display: inline-block;
}
.ico-arrow-right {
    background: url(img/icons/arrow-right.svg) no-repeat center;
    -webkit-background-size: 16px 16px;
    -moz-background-size: 16px 16px;
    -o-background-size: 16px 16px;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
}
.ico-suitcase--blue {
    content: "";
    display: inline-block;
    background: url(img/icons/briefcase-blue.svg) no-repeat center;
    -webkit-background-size: 60px 50px;
    -moz-background-size: 60px 50px;
    -o-background-size: 60px 50px;
    background-size: 60px 50px;
    width: 60px;
    height: 50px;
}

.ico-employee {
    background: url(img/icons/employee.svg) #0063a8 no-repeat center;
    -webkit-background-size: 41px 60px;
    -moz-background-size: 41px 60px;
    -o-background-size: 41px 60px;
    background-size: 41px 60px;
    width: 41px;
    height: 60px;
}

.ico-sunset {
    background: url(img/icons/sunset.svg) #0063a8 no-repeat center;
    -webkit-background-size: 60px 60px;
    -moz-background-size: 60px 60px;
    -o-background-size: 60px 60px;
    background-size: 60px 60px;
    width: 60px;
    height: 60px;
}

.ico-giftcard {
    background: url(img/icons/gift-card.svg) #0063a8 no-repeat center;
    -webkit-background-size: 73px 60px;
    -moz-background-size: 73px 60px;
    -o-background-size: 73px 60px;
    background-size: 73px 60px;
    width: 73px;
    height: 60px;
}

.ico-contract {
    background: url(img/icons/contract.svg) #0063a8 no-repeat center;
    -webkit-background-size: 60px 60px;
    -moz-background-size: 60px 60px;
    -o-background-size: 60px 60px;
    background-size: 60px 60px;
    width: 60px;
    height: 60px;
}

.ico-crop {
    background: url(img/icons/crop.svg) #0063a8 no-repeat center;
    -webkit-background-size: 60px 47px;
    -moz-background-size: 60px 47px;
    -o-background-size: 60px 47px;
    background-size: 60px 47px;
    width: 60px;
    height: 47px;
}

.ico-visa {
    background: url(img/icons/visa.svg) #0063a8 no-repeat center;
    -webkit-background-size: 52px 60px;
    -moz-background-size: 52px 60px;
    -o-background-size: 52px 60px;
    background-size: 52px 60px;
    width: 52px;
    height: 60px;
}

.ico-policeman {
    background: url(img/icons/policeman.svg) #0063a8 no-repeat center;
    -webkit-background-size: 60px 60px;
    -moz-background-size: 60px 60px;
    -o-background-size: 60px 60px;
    background-size: 60px 60px;
    width: 60px;
    height: 60px;
}

.ico-translator {
    background: url(img/icons/translator.svg) #0063a8 no-repeat center;
    -webkit-background-size: 60px 48px;
    -moz-background-size: 60px 48px;
    -o-background-size: 60px 48px;
    background-size: 60px 48px;
    width: 60px;
    height: 48px;
}

.ico-life-insurance {
    background: url(img/icons/life-insurance.svg) #0063a8 no-repeat center;
    -webkit-background-size: 60px 60px;
    -moz-background-size: 60px 60px;
    -o-background-size: 60px 60px;
    background-size: 60px 60px;
    width: 60px;
    height: 60px;
}

.ico-conversation {
    background: url(img/icons/conversation.svg) #0063a8 no-repeat center;
    -webkit-background-size: 60px 60px;
    -moz-background-size: 60px 60px;
    -o-background-size: 60px 60px;
    background-size: 60px 60px;
    width: 60px;
    height: 60px;
}

.ico-stopwatch {
    background: url(img/icons/stopwatch.svg) no-repeat center;
    -webkit-background-size: 62px 60px;
    -moz-background-size: 62px 60px;
    -o-background-size: 62px 60px;
    background-size: 62px 60px;
    width: 62px;
    height: 60px;
}

.ico-ok {
    background: url(img/icons/ok.svg) no-repeat center;
    -webkit-background-size: 38px 60px;
    -moz-background-size: 38px 60px;
    -o-background-size: 38px 60px;
    background-size: 38px 60px;
    width: 38px;
    height: 60px;
}

.ico-success {
    background: url(img/icons/success.svg) no-repeat center;
    -webkit-background-size: 60px 60px;
    -moz-background-size: 60px 60px;
    -o-background-size: 60px 60px;
    background-size: 60px 60px;
    width: 60px;
    height: 60px;
}

.ico-save-time {
    background: url(img/icons/save-time.svg) no-repeat center;
    -webkit-background-size: 65px 60px;
    -moz-background-size: 65px 60px;
    -o-background-size: 65px 60px;
    background-size: 65px 60px;
    width: 65px;
    height: 60px;
}

.ico-purse {
    background: url(img/icons/purse.svg) no-repeat center;
    -webkit-background-size: 67px 60px;
    -moz-background-size: 67px 60px;
    -o-background-size: 67px 60px;
    background-size: 67px 60px;
    width: 67px;
    height: 60px;
}

.ico-passport {
    background: url(img/icons/passport2.svg) no-repeat center;
    -webkit-background-size: 38px 50px;
    -moz-background-size: 38px 50px;
    -o-background-size: 38px 50px;
    background-size: 38px 50px;
    width: 50px;
    height: 50px;
}

.ico-user {
    background: url(img/icons/user.svg) no-repeat center;
    -webkit-background-size: 50px 50px;
    -moz-background-size: 50px 50px;
    -o-background-size: 50px 50px;
    background-size: 50px 50px;
    width: 50px;
    height: 50px;
}

.ico-checklist {
    background: url(img/icons/checklist.svg) no-repeat center;
    -webkit-background-size: 42px 50px;
    -moz-background-size: 42px 50px;
    -o-background-size: 42px 50px;
    background-size: 42px 50px;
    width: 50px;
    height: 50px;
}

.ico-rich {
    background: url(img/icons/rich.svg) no-repeat center;
    -webkit-background-size: 40px 40px;
    -moz-background-size: 40px 40px;
    -o-background-size: 40px 40px;
    background-size: 40px 40px;
    width: 40px;
    height: 40px;
}
.ico-eye {
    background: url(img/icons/eye.svg) no-repeat center;
    -webkit-background-size: 20px 20px;
    -moz-background-size: 20px 20px;
    -o-background-size: 20px 20px;
    background-size: 20px 20px;
    width: 30px;
    height: 30px;
}
.ico-eye-slash {
    background: url(img/icons/eye-slash.svg) no-repeat center;
    -webkit-background-size: 20px 20px;
    -moz-background-size: 20px 20px;
    -o-background-size: 20px 20px;
    background-size: 20px 20px;
    width: 30px;
    height: 30px;
}
/* Got questions CTA */
.cta-questions .col {
    padding-top: 85px;
    padding-bottom: 50px;
    background: url(img/bg-gotquestions.jpg) no-repeat center;
}

/* Why use Visa First? */
.visa-benefits {
    padding: 100px 15px 135px;
    background: url(img/bg-visa-benefits.jpg) no-repeat center;
    background-size: cover;
}

.visa-benefits [class*="col-"]:nth-child(-n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.visa-benefit h4 {
    margin-top: 5px;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 18px;
    color: #f36b21;
}

.form-control:focus {
    box-shadow: none !important;
}

/* Contact us */
/* .contact-us {
    background: url(img/bg-contacts.jpg) center top no-repeat #0b1e46;
} */

/* Location with maps */
.contact-us .location {
    padding: 50px;
    margin-bottom: 50px;
    background: rgba(0, 0, 0, 0.4);
}

.contact-us .location:last-child {
    margin-bottom: 0;
}

/*Office locatio and contacts */
.contact-info {
    padding-top: 50px;
}

/*Address*/
.contact-info-location {
    padding-left: 25px;
}

.contact-info-location:before {
    content: "\f041";
}

/*Town */
.contact-info-location .town {
    font-size: 18px;
    color: #46b2fd;
}

/*Phone, email, fax link to map */
.contact-info__list {
    list-style: none;
    padding-left: 0;
}

.contact-info__list .phone:before,
.contact-info__list .mail:before,
.contact-info-location:before {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
    position: absolute;
    top: 2px;
    left: 0;
}

.contact-info__list .map:before,
.contact-info__list .fax:before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 3px;
}

.contact-info__list .map a:hover {
    text-decoration: underline;
}

.contact-info__list .map:before {
    width: 17px;
    height: 17px;
    background: url(img/map.png) no-repeat;
}

.contact-info__list .fax:before {
    width: 16px;
    height: 15px;
    background: url(img/fax.png) no-repeat;
}

.contact-info__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 7px;
}

.contact-info__list li:not(.mail) a {
    color: #fff;
}

.contact-info__list .mail a {
    color: #f36b21;
}

.contact-info__list .mail a:hover {
    text-decoration: underline;
}

.contact-info__list .phone:before {
    content: "\f095";
}

.contact-info__list .mail:before {
    content: "\f0e0";
}

/*Boxes with flags */
.location-box {
    min-height: 205px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.location-box .contact-info__list,
.location-box .contact-info-location {
    margin-left: 10px;
}

/*Responsive map iframe*/
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* 404 Page */
.page-404 {
    background: #fff;
}

.page-404 main {
    background: #fff;
    color: #333;
}

.page-404 a[href^="mailto:"] {
    color: #46b2fd;
}

.page-404 .btn {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.page-404 h1 {
    font-weight: 700;
    font-size: 54px;
}

.error__message span {
    font-weight: 900;
    font-size: 250px;
    line-height: normal;
    color: #025da0;
}

.error__message span:first-child {
    z-index: 3;
}

.error__message span:last-child {
    padding-left: 165px;
    z-index: 1;
}

.ramo {
    z-index: 4;
    -webkit-transform: translateX(140px);
    -ms-transform: translateX(140px);
    transform: translateX(140px);
}

.donut {
    z-index: 2;
    top: 20px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: rotation 5s infinite linear;
    -moz-animation: rotation 5s infinite linear;
    -o-animation: rotation 5s infinite linear;
    animation: rotation 5s infinite linear;
}

/*Dount rotate animation */
@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@-moz-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@-o-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

/* Custom select for wizard form */
.select2-container {
    width: auto !important;
    display: block !important;
    max-width: 100%;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
}

.select2-dropdown {
    border-radius: 0 !important;
}

.select2-container--default .select2-selection--single {
    padding-left: 9px;
}

.select2-container--default .select2-selection--single,
.select2-dropdown,
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 0 !important;
}

.select2-search--dropdown .select2-search__field {
    padding: 4px 4px 4px 6px;
    z-index: 2;
    position: relative;
    background: transparent;
}

.select2-search--dropdown {
    padding: 4px 4px 10px !important;
}

.select2-selection__rendered {
    font-weight: 700 !important;
}

.select2-results {
    font-weight: 400 !important;
    color: #000 !important;
}

.select2-selection--single:focus,
.select2-search__field:focus,
.select2-selection__rendered:focus {
    outline: 0 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f36b21 !important;
}

.select2-container--open.simple .select2-dropdown--below {
    top: 12px;
}

.select2-container--open .select2-dropdown--below {
    top: -34px;
}

.select2-container--default .select2-results>.select2-results__options {
    -webkit-box-shadow: 0 10px 5px 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 10px 5px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 5px 5px rgba(0, 0, 0, 0.15);
}

.custom-placeholder {
    position: absolute;
    top: 10px;
    left: 9px;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #000;
    z-index: 0;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #000 transparent transparent transparent !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #000 transparent !important;
}

.tool--hidden .visa-checker {
    opacity: 0;
    visibility: hidden !important;
}

/*Show all*/
main section.relatedservices .row.bordered {
    display: none;
}

main section.relatedservices .row.bordered:nth-child(-n+3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/*Popups*/
.modal-open {
    height: 100vh;
    overflow-y: hidden !important;
}

#checkEligibility .modal-content,
#workPermitModal .modal-content,
#fillWizzardModal .modal-content {
    max-width: 380px;
    margin: 0 auto;
}

.modal--visa .modal-header {
    padding: 25px 15px;
    background: url(img/modal-header.png) #0063a8 no-repeat;
}

.modal--visa .modal-title {
    font-weight: 700;
    font-size: 33px;
    color: #fff;
}

.modal--visa .modal-header .close {
    font-size: 35px;
    color: #fff;
    text-shadow: none;
    font-weight: 300;
    top: 5px;
    right: 25px;
}

.modal--visa .modal-header .close:focus {
    outline: 0;
}

.modal--visa .modal-body {
    padding: 25px 35px;
}

.modal--visa .modal-body p {
    margin-bottom: 0;
}

.media-body__title {
    padding-right: 150px;
    font-weight: 700;
    font-size: 16px;
    color: #f36b21;
}

.modal--visa .media {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    position: relative;
}

.modal--visa .media:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.modal--visa .media-body .btn {
    margin-left: 0;
    padding: 6px 20px;
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 700;
    font-size: 16px;
    background: #f36b21;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.modal--visa .btn--orange {
    width: 100%;
    margin: 30px 0 0 0;
    background: #f36b21;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.modal--visa .btn--orange:hover {
    background: #0063a8;
}

.modal--visa .media-body .btn:hover {
    background: #0465a9;
    color: #fff;
}

.modal--visa .item {
    width: 100%;
    float: none;
    padding: 15px 10px 15px 45px;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.modal--visa .item label,
.modal--visa .item .form-field {
    margin-bottom: 0;
}

.modal--visa .select2-container {
    width: 100% !important;
}

.modal--visa .item i {
    font-size: 20px;
    color: #0465a9;
}

.modal--visa .item i,
.modal--visa .item img {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*Datepicker */
.datepicker-panel>ul>li {
    color: #212529;
}

.form-control:focus {
    box-shadow: none;
}

.datepicker__input {
    border-bottom: 0;
    font-weight: 700;
    color: #000;
    background-color: transparent !important;
}

.datepicker__input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000;
    font-weight: 700;
    opacity: 1;

    /* Firefox */
}

.datepicker__input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000;
    font-weight: 700;
}

.datepicker__input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000;
    font-weight: 700;
}

/*workPermitModal radio buttons*/
#workPermitModal input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0 3px 5px 5px;
    border: 1px solid #0465a9;
    padding: 0;
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    outline: 0;
    overflow: hidden;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#workPermitModal input[type="radio"]:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transition: all .1s;
    border: 4px solid #0465a9;
    -webkit-transform: translate3d(-50%, -50%, 0) scale(0, 0);
    -moz-transform: translate3d(-50%, -50%, 0) scale(0, 0);
    transform: translate3d(-50%, -50%, 0) scale(0, 0);
}

#workPermitModal input[type="radio"]:checked:after {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1, 1);
    -moz-transform: translate3d(-50%, -50%, 0) scale(1, 1);
    transform: translate3d(-50%, -50%, 0) scale(1, 1);
}

#workPermitModal .item label {
    display: block;
}

#notEligibleModal .modal-body p:first-child {
    padding-bottom: 45px;
    font-weight: 700;
}

#notEligibleModal .media-body p:last-child {
    padding-top: 10px;
    font-size: 15px;
}

#notEligibleModal .media {
    display: none;
}

#notEligibleModal .media:nth-child(-n+3) {
    display: -ms-flexbox;
    display: flex;
}

#notEligibleModal .expand-btn {
    display: block;
    text-align: center;
}

#notEligibleModal .expand-btn .icon-arrow:before {
    display: inline-block;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

#infoModal .icon-arrow {
    display: none;
}

/* Cookie Notice */
.cn-bottom {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.cookie-notice-container {
    padding: 30px 15px;
}

#cn-notice-text {
    font-size: 16px;
}

.cn-button {
    background-color: #f36b21;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 10px;
}

.cn-button:hover {
    background-color: #0465a9;
    color: #fff;
}

/* Survey Thank you animated svg */
.survey-clipboard .svg-elem-1 {
    stroke-dashoffset: 1771.0882568359375px;
    stroke-dasharray: 1771.0882568359375px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 0.5s ease 1.3s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
    transition: stroke-dashoffset 0.5s ease 1.3s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}

.survey-clipboard.active .svg-elem-1 {
    stroke-dashoffset: 0;
    fill: rgb(236, 206, 147);
}

.survey-clipboard .svg-elem-2 {
    stroke-dashoffset: 1508.272705078125px;
    stroke-dasharray: 1508.272705078125px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 0.5s ease 1.42s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
    transition: stroke-dashoffset 0.5s ease 1.42s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
}

.survey-clipboard.active .svg-elem-2 {
    stroke-dashoffset: 0;
    fill: rgb(239, 239, 239);
}

.survey-clipboard .svg-elem-3 {
    stroke-dashoffset: 361.77276611328125px;
    stroke-dasharray: 361.77276611328125px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 0.5s ease 1.54s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
    transition: stroke-dashoffset 0.5s ease 1.54s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
}

.survey-clipboard.active .svg-elem-3 {
    stroke-dashoffset: 0;
    fill: rgb(231, 110, 84);
}

.survey-clipboard .svg-elem-4 {
    stroke-dashoffset: 486.5443115234375px;
    stroke-dasharray: 486.5443115234375px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 0.5s ease 1.66s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
    transition: stroke-dashoffset 0.5s ease 1.66s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
}

.survey-clipboard.active .svg-elem-4 {
    stroke-dashoffset: 0;
    fill: rgb(231, 110, 84);
}

.survey-clipboard .svg-elem-5 {
    stroke-dashoffset: 906.9033813476562px;
    stroke-dasharray: 906.9033813476562px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 0.5s ease 1.78s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
    transition: stroke-dashoffset 0.5s ease 1.78s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
}

.survey-clipboard.active .svg-elem-5 {
    stroke-dashoffset: 0;
    fill: #0063a8;
}

.survey-clipboard .svg-elem-6 {
    stroke-dashoffset: 140.59292602539062px;
    stroke-dasharray: 140.59292602539062px;
    -webkit-transition: stroke-dashoffset 0.5s ease 1.9s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
    transition: stroke-dashoffset 0.5s ease 1.9s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}

.survey-clipboard.active .svg-elem-6 {
    stroke-dashoffset: 0;
}

.survey-clipboard .svg-elem-7 {
    stroke-dashoffset: 358.5437927246094px;
    stroke-dasharray: 358.5437927246094px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 0.5s ease 2.02s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s;
    transition: stroke-dashoffset 0.5s ease 2.02s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s;
}

.survey-clipboard.active .svg-elem-7 {
    stroke-dashoffset: 0;
    fill: rgb(119, 149, 158);
}

.survey-clipboard .svg-elem-8 {
    stroke-dashoffset: 130px;
    stroke-dasharray: 130px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 0.5s ease 2.14s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s;
    transition: stroke-dashoffset 0.5s ease 2.14s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s;
}

.survey-clipboard.active .svg-elem-8 {
    stroke-dashoffset: 0;
    fill: rgb(119, 149, 158);
}

.survey-clipboard .svg-elem-9 {
    stroke-dashoffset: 130px;
    stroke-dasharray: 130px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 0.5s ease 2.26s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s;
    transition: stroke-dashoffset 0.5s ease 2.26s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s;
}

.survey-clipboard.active .svg-elem-9 {
    stroke-dashoffset: 0;
    fill: rgb(119, 149, 158);
}

.survey-clipboard .svg-elem-10 {
    stroke-dashoffset: 130px;
    stroke-dasharray: 130px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 0.5s ease 2.38s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s;
    transition: stroke-dashoffset 0.5s ease 2.38s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s;
}

.survey-clipboard.active .svg-elem-10 {
    stroke-dashoffset: 0;
    fill: rgb(119, 149, 158);
}

.survey-clipboard .svg-elem-11 {
    stroke-dashoffset: 130px;
    stroke-dasharray: 130px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 0.5s ease 2.5s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
    transition: stroke-dashoffset 0.5s ease 2.5s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}

.survey-clipboard.active .svg-elem-11 {
    stroke-dashoffset: 0;
    fill: rgb(119, 149, 158);
}

.survey-clipboard .svg-elem-12 {
    stroke-dashoffset: 294.5439758300781px;
    stroke-dasharray: 294.5439758300781px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 0.5s ease 2.62s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s;
    transition: stroke-dashoffset 0.5s ease 2.62s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s;
}

.survey-clipboard.active .svg-elem-12 {
    stroke-dashoffset: 0;
    fill: rgb(119, 149, 158);
}

.survey-clipboard .svg-elem-13 {
    stroke-dashoffset: 166.54371643066406px;
    stroke-dasharray: 166.54371643066406px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 0.5s ease 2.74s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s;
    transition: stroke-dashoffset 0.5s ease 2.74s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s;
}

.survey-clipboard.active .svg-elem-13 {
    stroke-dashoffset: 0;
    fill: rgb(119, 149, 158);
}

main.about {
    background: center center no-repeat;
}

/*Holidays message*/
.info-message {
    padding: 15px 0;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

.info-message img {
    position: absolute;
}

/* .info-message .lantern__img {
    top: -21px;
    left: 95px;
} */

.info-message .bells__img {
    top: 50%;
    left: 100px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.info-message__wrapper {
    padding-left: 80px;
    text-align: center;
}

.info-message__title {
    font-weight: 700;
    font-style: italic;
    font-size: 16px;
    color: #4aafe9;
}

.info-message__text {
    font-weight: 400;
    font-style: italic;
    font-size: 15px;
    color: #fff;
    margin-bottom: 0;
}

.info-message__wrapper .close__btn {
    position: absolute;
    right: 100px;
    cursor: pointer;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-weight: 300;
    font-size: 33px;
    line-height: 24px;
    opacity: 1;
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
}

.info-message__wrapper .close__btn:hover {
    opacity: .7;
}
/*------------------------------------------
        Form
--------------------------------------------*/
.wpcf7 form div.visible-only-if-sent,
.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}
.wpcf7 form.sent div.visible-only-if-sent {
  display: block;
}

.form-wrapper {
  padding: 65px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .2)), to(rgba(0, 0, 0, .2))), #002c5b;
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), #002c5b;
  background: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), #002c5b;
}
.form-title {
  max-width: 300px;
  margin-top: 100px;
  padding: 10px 20px;
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
  background: #39aed2;
}

/*Timepicker*/
.form-timepicker { 
  position: relative;
  margin-bottom: 20px;
  display: block;
}
.form-timepicker input {
  cursor: pointer;
}
.form-wrapper .form-timepicker input {
  height: 42px;
  padding: 14px 25px 14px 5px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.3);
  border-radius: 0;
}
.form-timepicker:after {
  content: '';
  padding: .3rem;
  border: solid rgba(255,255,255,.7);
  border-width: 0 1px 1px 0;
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 20px;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.ui-timepicker-standard {
  max-height: 20rem;
  margin: 0;
  -webkit-animation: showDropdown .2s cubic-bezier(.6, .2, .1, 1) both;
  -o-animation: showDropdown .2s cubic-bezier(.6, .2, .1, 1) both;
  animation: showDropdown .2s cubic-bezier(.6, .2, .1, 1) both;
  z-index: 9 !important;
}
@-webkit-keyframes showDropdown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px) scale(0.95, 0.95);
    transform: translateY(-10px) scale(0.95, 0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes showDropdown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px) scale(0.95, 0.95);
    transform: translateY(-10px) scale(0.95, 0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.ui-timepicker-standard  {
  border: 0;
  -webkit-box-shadow: 0 2remx 6.5rem 0 rgba(34, 48, 73, .2);
  box-shadow: 0 2rem 6.6rem 0 rgba(34, 48, 73, .2);
}
.form-wrapper .form-timepicker .form-control:disabled, .form-wrapper .form-timepicker .form-control[readonly] { background-color: transparent; }
.form-timepicker input { cursor: pointer; }
.ui-timepicker-standard .ui-state-hover {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: transparent;
  cursor: pointer;
}

/*Acceptance */
.wpcf7-acceptance input[type="checkbox"] {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin-right: 15px;
  width: 20px;
  height: 13px;
  -moz-appearance: initial;
}
.wpcf7-acceptance input[type="checkbox"]:before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .2)), to(rgba(0, 0, 0, .2))), #002c5b;
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), #002c5b;
    background: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), #002c5b;
    border: 1px solid rgba(255,255,255, .3);
    border-radius: 3px;
    position: absolute;
    top: -5px;
    z-index: 9;
}
.wpcf7-acceptance input[type="checkbox"]:checked:after {
  content: '';
  width: 2px;
  height: 2px;
  position: absolute;
  top: 7px;
  left: 7px;
  background: #fff;
  -webkit-box-shadow: 2px 0 0 #fff, 4px 0 0 #fff, 4px -2px 0 #fff, 4px -4px 0 fff, 4px -6px 0 #fff, 4px -8px 0 #fff;
  box-shadow: 2px 0 0 #fff, 4px 0 0 #fff, 4px -2px 0 #fff, 4px -4px 0 #fff, 4px -6px 0 #fff, 4px -8px 0 #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 10;
}
.wpcf7-acceptance span.wpcf7-list-item {
  margin: 10px 0 0 0;
}
.wpcf7-acceptance span.wpcf7-list-item > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.wpcf7-list-item-label {
  color: #fff;
  font-size: 14px;
}
.wpcf7-list-item-label a {
  color: #fff;
}
.wpcf7-response-output {
  color: #fff;
}

/*Floating label*/
.form-wrapper .wpcf7-form-control-wrap {
  position: relative;
  margin-bottom: 20px;
  display: block;
}
.form-wrapper .wpcf7-form-control-wrap .form-control {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.3);
  border-radius: 0;
  margin-bottom: 0!important;
  line-height: 22px;
  font-size: 16px;
  background-image: none;
  box-shadow: none;
  transition: none;
  color: rgba(255,255,255,.7);
}
.form-wrapper .wpcf7-form-control-wrap .form-control:focus {
  background-color: transparent;
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.7);
}
.form-wrapper .wpcf7-form-control-wrap input,
.form-wrapper .wpcf7-form-control-wrap label {
  height: 42px;
  padding: 10px 5px;
}
.form-wrapper .wpcf7-form-control-wrap label {
  width: 100%;
  display: block;
  margin-bottom: 0; /* Override default `<label>` margin */
  border: 1px solid transparent;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 22px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  pointer-events: none;
  cursor: text; /* Match the input under the label */
  -webkit-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

.form-wrapper .wpcf7-form-control-wrap input::-webkit-input-placeholder { color: transparent; }
.form-wrapper .wpcf7-form-control-wrap input::-moz-placeholder { color: transparent; }
.form-wrapper .wpcf7-form-control-wrap input:-ms-input-placeholder { color: transparent; }
.form-wrapper .wpcf7-form-control-wrap input::-ms-input-placeholder { color: transparent; }
.form-wrapper .wpcf7-form-control-wrap input::placeholder { color: transparent; }
.form-wrapper .wpcf7-form-control-wrap input:not(:-moz-placeholder-shown) { padding-top: 20px; padding-bottom: 4px; }
.form-wrapper .wpcf7-form-control-wrap input:not(:-ms-input-placeholder) { padding-top: 20px; padding-bottom: 4px; }
.form-wrapper .wpcf7-form-control-wrap input:not(:placeholder-shown) { padding-top: 20px; padding-bottom: 4px; }
.form-wrapper .wpcf7-form-control-wrap input:not(:-moz-placeholder-shown) ~ label { padding-top: 0; padding-bottom: 4px; font-size: 12px; }
.form-wrapper .wpcf7-form-control-wrap input:not(:-ms-input-placeholder) ~ label { padding-top: 0; padding-bottom: 4px;  font-size: 12px; }
.form-wrapper .wpcf7-form-control-wrap input:not(:placeholder-shown) ~ label { padding-top: 0; padding-bottom: 4px; font-size: 12px; }
.form-wrapper .wpcf7-form-control-wrap input:-webkit-autofill ~ label { padding-top: 0; padding-bottom: 4px; font-size: 12px; }
.form-wrapper .form-timepicker input::-webkit-input-placeholder { color:#bbb; }
.form-wrapper .form-timepicker input::placeholder { color:#bbb; }
.form-wrapper .form-timepicker input::-ms-placeholder { color:#bbb; }
.form-wrapper .form-timepicker input::-moz-placeholder { color:#bbb; }

/* Fallback for Edge
-------------------------------------------------- */
@supports (-ms-ime-align: auto) {
  .form-wrapper .wpcf7-form-control-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .form-wrapper .wpcf7-form-control-wrap label { position: static; }
  .form-wrapper .wpcf7-form-control-wrap input::-ms-input-placeholder { color: #777; }
}

.form-wrapper .wpcf7-submit.btn--orange {
  padding: 9px 30px !important;
  margin: 0 !important;
}

/*Checkbox*/
.custom-control {
  padding-left: 25px;
}
.custom-control-label {
  font-size: 12px;
}
.custom-control-label::before {
  width: 15px;
  height: 15px;
  left: -25px;
  border-color: rgba(255,255,255,.3);
  background-color: transparent;
}
.custom-checkbox .custom-control-label::before {
  border-radius: 0;
}
.custom-control-input:checked~.custom-control-label::before {
  color: #fff;
  border-color: rgba(255,255,255,.3);
  background-color: transparent;
}
.custom-control-label::after {
  width: 15px;
  height: 15px;
  left: -25px;
}
.custom-control-input:not(:disabled):active~.custom-control-label::before { background-color: transparent; }
.custom-control-input:focus~.custom-control-label::before { box-shadow: none; }
.custom-control-input:focus:not(:checked)~.custom-control-label::before { border-color: rgba(255,255,255,.3); }

.demo {
    margin-top: 200px;
    background: url(img/map.svg) no-repeat center center #0b1e46;
    background-size: contain;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
}

.demo-form-wrapper {
    padding: 60px;
}

.demo-title {
    font-size: 50px;
    line-height: 60px;
    text-transform: capitalize;
}
.demo-subtitle {
    max-width: 80%;
    margin: 0 auto;
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
}

.demo-summary ul {
    padding: 0;
    list-style: none;
    text-align: left;
}

.demo-summary ul li {
    margin-bottom: 40px;
    padding-left: 45px;
    font-weight: 400;
    line-height: 30px;
    font-size: 25px;
    background: url(img/icons/bullet-lg.svg) no-repeat left center;
}

.demo-form-wrapper label {
    font-weight: 700;
    font-size: 16px;
}

.demo-form-wrapper .form-control {
    text-align: center;
    background-color: #fff;
}
.demo-form-wrapper .form-timepicker:after {
  border: solid #000;
  border-width: 0 1px 1px 0;
  top: 40px;
  right: 20px;
}

.demo-form-wrapper .wpcf7-submit {
    font-size: 20px;
}
.demo-form-wrapper .wpcf7-submit:hover {
    box-shadow: none;
    color: #fff;
    background: #ff5c00;
}

@-webkit-keyframes spin {
    0%{
        -webkit-transform:rotate(0);
        transform:rotate(0)
    }
    to {
        -webkit-transform:rotate(-360deg);
        transform:rotate(-360deg)
    }
}
@keyframes spin{
    0% {
        -webkit-transform:rotate(0);
        transform:rotate(0)
    }
    to {
        -webkit-transform:rotate(-360deg);
        transform:rotate(-360deg)
    }
}
.loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    overflow: hidden;
    background: rgba(255,255,255,.5);
}
.loading .loading_animation {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.loading .loading_animation .plane {
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
    fill: #0063a8;
    transform-origin: 50% 50%;
}

/* Visa page FAQ */
/* Hide items from the third item onward */
.faq:not(.opened) .accordion .card:nth-child(n+3) {
    display: none;
}
.faq .card-header .btn {
    width: 100%;
    padding: 0 50px 0 0;
    font-weight: 700;
    font-size: 18px;
    color: #f36b21;
    text-align: left;
    position: relative;
    box-shadow: none;
}
.faq .card-header .btn .icon {
    font-size: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    color: #46b2fd;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.faq .card-header .btn[aria-expanded="true"] .icon::before {
    content: "\e91e";
    font-size: 2px;
    color: #f36b21;
}
.faq .card {
    box-shadow: none;
}
.faq .card-body p {
    font-weight: 300;
}
.faq .expand-faq {
    margin-top: 30px;
    display: block;
    text-align: center;
}
.faq .expand-faq span {
    font-size: 18px;
    color: #46b2fd
}
.faq .expand-faq i {
    color: #46b2fd;
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.faq .expand-faq i.rotate {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.phone-group .dropdown-toggle {
    padding: 6px 25px;
    border-bottom: 1px solid #c4c9ce;
    box-shadow: none;
    color: #495057;
}
.phone-group .dropdown-toggle:active {
    box-shadow: none !important;
}
.phone-group .form-control {
    padding: 5px;
}
.phone-group .input-group-prepend {
    width: 30%;
    padding: 0;
}
.phone-group .phone-number {
    width: 70%;
}
#irishPermitModal .select2-container {
    padding: 0 0 9px 0;
    border-bottom: 1px solid #c4c9ce;
}
#irishPermitModal .select2-container--default .select2-selection--single {
    padding-left: 5px;
}
#irishPermitModal .select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-weight: 400;
    color: #b6b9bb !important;
}
#irishPermitModal .select2-container .select2-selection--single .select2-selection__rendered {
    font-weight: 400 !important;
    color: #495057 !important;
}

#irishPermitModal .modal-header {
    padding: 25px 15px;
    background: url(img/modal-header.png) #0063a8 no-repeat;
}
#irishPermitModal .modal-header .close {
    padding: 0;
    margin: 5px 15px;
    font-weight: 300;
    color: #fff;
}
#irishPermitModal .modal-header .close:focus {
    outline: 0;
}
#irishPermitModal label {
    font-weight: 400;
    font-size: 15px;
}
#irishPermitModal sup {
    color: #dc3545;
}

#irishPermitModal .form-control::-ms-input-placeholder {
    color: #b6b9bb;
}
#irishPermitModal .form-control::placeholder {
    color: #b6b9bb;
}
#irishPermitModal .custom-select {
    padding-right: 10px;
    padding-left: 5px;
    border: 0;
    border-bottom: 1px solid #c4c9ce;
    background: url(img/icons/down-arrow.svg) no-repeat 97% center;
    background-size: 15px;
    border-radius: 0;
    text-overflow: ellipsis;
    overflow: hidden;
}
#irishPermitModal .custom-select.is-invalid {
    border-color: #dc3545 !important;
    margin-bottom: 0 !important;
}
#irishPermitModal .invalid-feedback {
    margin-bottom: 10px;
}

#irishPermitSuccess,
.alert-job-offer {
    display: none;
}

#irishPermitModal .form-check .invalid-feedback {
    position: absolute;
    bottom: -35px;
    left: -55px;
    width: 200px;
}
#irishPermitSubmit {
    height: 54px;
}
.form-spinner {
    -webkit-animation: rotate 3s linear infinite;
    animation: rotate 3s linear infinite;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    stroke: #ffffff;
    display: none;
}
.form-spinner .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 2.5s ease-in-out infinite;
            animation: dash 2.5s ease-in-out infinite;
    stroke-linecap: round;
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

/* Resoonsive */
@media (min-width: 1921px) {

    nav.fullscreen,
    .all-visas {
        background-size: cover;
    }
}

@media(min-width: 1200px) {
.demo:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    z-index: -1;
    background: rgba(0, 44, 91, .8);
}

    main section.cvs .bg--left + .container > .row > .offset-xl-6 {
        margin-left: 55%;
    }
}

@media (min-width: 1280px) {

    .tool.sticky .visa-checker,
    body.scrolled .tool--hidden .visa-checker {
        max-width: 1110px;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        -webkit-animation: smoothScroll 1s forwards !important;
        animation: smoothScroll 1s forwards !important;
    }

    .visa-checker {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
    }

    .home .tool.sticky .visa-checker {
        max-width: 1095px;
    }

    .tool:not(.tool--hidden) {
        padding-bottom: 230px;
    }

    body.scrolled .tool--hidden .visa-checker {
        opacity: 1;
        visibility: visible !important;
        -webkit-animation: smoothScroll 1s forwards !important;
        animation: smoothScroll 1s forwards !important;
    }

    /* body.scrolled .visa-checker {
        margin-bottom: 0;
    } */
}

@media (max-width: 1500px) {

    .tool.sticky .visa-checker,
    .tool.tool--hidden .visa-checker {
        max-width: 900px !important;
    }

    .tool.sticky .visa-checker .item:not(:last-child),
    .tool.tool--hidden .visa-checker .item:not(:last-child) {
        padding: 15px 15px 15px 25px;
    }

    .tool.sticky .visa-checker .item i,
    .tool.tool--hidden .visa-checker .item i {
        left: 5px;
    }

    .tool.sticky .select2-container,
    .tool.tool--hidden .select2-container {
        width: 154px !important;
    }
}

@media (min-width: 992px) {
    .services-boxes [class*="col-"]:nth-last-child(-n+2) .service-box {
        border-bottom: 0;
    }

    main section.relatedservices .row.bordered>[class*="col-"] {
        padding-bottom: 25px;
    }

    main section.relatedservices .row.bordered>[class*="col-"]>p:last-child {
        position: absolute;
        bottom: 0;
        margin: 0;
    }

    main section.aboutvisa .box .rightside .textbox {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 0;
        right: 0;
    }
}

/* @media (min-width: 320px) {
    .modal-dialog {
        max-width: 560px;
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%) !important;
        -ms-transform: translateX(-50%) translateY(-50%) !important;
        transform: translateX(-50%) translateY(-50%) !important;
    }
} */

@media (max-width: 1600px) {
    main section.cvs .path {
        display: none;
    }
}

@media (max-width: 1199px) {

    .icon-backpack:before,
    .icon-suitcase:before {
        -webkit-background-size: 50px 50px;
        -moz-background-size: 50px 50px;
        -o-background-size: 50px 50px;
        background-size: 50px 50px;
        width: 50px;
        height: 50px;
    }

    .top ul .desktop,
    .top ul .pll-parent-menu-item,
    body.scrolled .top ul .signin .desktop {
        display: none !important;
    }

    .top ul .hamburger,
    .top ul .signin .desktop,
    .top ul .signin .desktop i,
    .top ul li.hamburger,
    body.scrolled .top ul .mobile {
        display: inline-block !important;
    }

    nav.fullscreen .logo {
        margin-left: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .all-visas .slogan,
    section.wai,
    nav.fullscreen .slogan {
        display: none;
    }

    .hero h1,
    main section h2,
    main section.goodhands .box strong {
        font-size: 40px;
    }

    .accordion h5 a,
    .hero h2,
    main section h3 {
        font-size: 30px;
    }

    .destinations .item .photo img {
        width: 355px;
        height: 185px;
    }

    .destinations .item.small .text {
        /* height: 170px; */
        padding: 20px 30px;
    }

    .visa-checker .item {
        width: 100%;
        float: none;
    }

    main section.goodhands .box {
        width: 25%;
        margin: 0 2.5%;
    }

    main section.cvs {
        padding: 50px 0 0 !important;
        text-align: center;
    }

    main section.cvs h2 {
        background-position: bottom center;
        text-align: center;
    }

    main section.cvs ul {
        text-align: left;
    }

    main section.cvs .bg,
    main section.cvs .bg--left {
        width: 100%;
        margin-top: 30px;
        position: static;
    }

    .all-visas ul.search-by-country a {
        padding: 0 !important;
    }

    .photo-background {
        height: 400px;
    }

    .accordion h5 a i.before {
        width: 100px;
        height: 100px;
        line-height: 100px;
        font-size: 50px;
    }

    .accordion h5 a i.after {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }

    .accordion .flag {
        max-width: 100px;
    }
    .demo-form-wrapper { 
       background: rgba(0, 44, 91, .8);
     }
    .demo { margin-top: 300px; }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .destinations .slider.locations>div:nth-last-child(-n+4) {
        width: auto;
    }

    /* .info-message .lantern__img {
        left: 60px;
    } */

    .info-message .bells__img {
        left: 0;
    }
    .info-message__wrapper .close__btn {
        right: 0;
    }
}

@media (max-width: 991px) {
    main section.goodhands .box {
        width: 100%;
        margin: 0 0 15px;
        display: block;
    }

    .destinations .item,
    main section.aboutvisa .box,
    main section.aboutvisa .box .box-row {
        display: block;
    }

    .destinations .item.big .text,
    main section.aboutvisa .box .iconbox {
        padding: 15px;
    }

    main section.aboutvisa .box .rightside .photobox {
        height: auto;
        background-size: cover;
    }

    main section.aboutvisa .box .rightside .photobox .boxy {
        padding: 90px 30px 30px;
        text-align: center;
        position: static;
    }

    main section.aboutvisa .box .rightside .photobox .boxy i {
        top: 30px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    main section.aboutvisa .box .rightside .textbox .cost {
        padding: 60px 0 0;
    }

    main section.aboutvisa .box .rightside .textbox .cost i {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    footer {
        font-size: 14px;
        padding: 15px 0;
    }

    footer,
    footer .copy,
    footer .icons,
    footer .logo,
    main section.aboutvisa .box .rightside .textbox {
        text-align: center;
    }

    footer .social {
        border-top: 0;
        border-bottom: 0;
    }

    footer .icons,
    footer .menu {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer .icons {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer li {
        margin: 0 5px;
    }

    footer .awards li {
        margin: 10px;
    }

    footer .copy {
        opacity: .3;
    }

    .modal.show .modal-dialog {
        width: calc(100% - 30px);
    }

    #irishPermitModal.show .modal-dialog {
        width: calc(100% - 15px);
    }

    /* #loginModal .modal-content,
    #registerModal .modal-content,
    #forgottenModal .modal-content { padding: 10px 15px; }
    #loginModal .modal-content:before,
    #registerModal .modal-content:before,
    #forgottenModal .modal-content:before { display: none; }
    #loginModal .modal-body,
    #registerModal .modal-body ,
    #forgottenModal .modal-body { padding: 0; } */

    .destinations .item.big h2 {
        font-size: 26px;
    }

    .policy header {
        height: 200px;
    }

    .policy aside {
        background: #fff;
    }

    .policy .sidebar,
    .policy main>section {
        max-width: 100%;
        padding: 15px;
    }

    .policy h1 {
        font-size: 44px;
        line-height: 50px;
    }

    .visa-department__img {
        display: none;
    }

    .services-boxes [class*="col-"]:last-child .service-box {
        border-bottom: 0;
    }

    .visa-benefits [class*="col-"]:nth-child(-n+4) {
        padding-bottom: 30px;
        margin-bottom: 50px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .location-box {
        min-height: 160px;
        margin-bottom: 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    /* .info-message .lantern__img {
        display: none;
    } */

    .info-message .bells__img {
        display: none;
    }

    .info-message__wrapper {
        padding-left: 0;
    }

    .info-message__wrapper .close__btn {
        top: 0;
        right: -9px;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .all-visas .content {
        margin-top: 60px;
        clear: both;
    }
    .all-visas .return {
        position: relative;
        left: 20px;
    }
    .all-visas .exit {
        right: 30px;
    }
    #irishPermitSubmit {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .cookie-notice-container #cn-notice-text {
        margin-bottom: 25px;
    }
}

@media (max-width: 800px) {
    .all-visas .scroll {
        height: calc(100vh - 350px);
    }

    .all-visas ul.search-by-country a {
        margin-right: 10px;
    }

    .all-visas .content ul {
        padding: 0 5px;
    }

    .all-visas .scroll ul a {
        padding: 5px !important;
    }
}

@media (max-width: 768px) {

    .icon-backpack:before,
    .icon-suitcase:before {
        -webkit-background-size: 40px 40px;
        -moz-background-size: 40px 40px;
        -o-background-size: 40px 40px;
        background-size: 40px 40px;
        width: 40px;
        height: 40px;
    }

    .destinations .item.big .text,
    main section.aboutvisa .box .leftside .textbox,
    main section.aboutvisa .box .rightside .textbox {
        padding: 15px;
    }

    .destinations .item.big h2 {
        font-size: 26px;
    }

    main section.howitworks li span {
        height: 125px !important;
        font-size: 50px !important;
        line-height: 135px !important;
        width: 125px !important;
    }

    main section.howitworks li strong {
        color: #f36b21;
    }

    main section.aboutvisa .box .iconbox {
        font-size: 40px;
    }

    main section.aboutvisa .box .rightside .photobox .boxy {
        padding: 90px 15px 15px;
    }

    .accordion h5 a,
    body.survey section.body h1 {
        font-size: 24px;
    }

    .accordion h5 a i.before {
        width: 80px;
        height: 80px;
        margin-right: 5px;
        line-height: 80px;
        font-size: 40px;
    }

    .accordion .flag {
        max-width: 75px;
    }

    body.survey section.body {
        padding: 30px 0;
    }

    body.survey section.body h2 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .all-visas .exit {
        right: 15px;
    }
    main section.howitworks .path {
        display: none;
    }

    main section.howitworks ul {
        padding: 0;
    }

    main section.howitworks li {
        width: 100%;
        margin-bottom: 15px;
        display: block;
    }

    main section.customers .slider.customers {
        padding-top: 0;
    }
    .hero {
        margin-top: 250px;
    }
    .demo-banner-message {
        font-size: 14px !important;
        line-height: 30px !important;
    }
}

@media (max-width: 576px) {
    .video-background {
        background: url(img/fv_mobile_hero_img.jpg) center;
    }

    .visa-departments__box {
        margin: 0 0 50px;
    }

    .visa-department__summary {
        padding: 20px;
    }

    .photo-background {
        height: 200px;
    }

    main>section:first-child {
        padding-top: 0;
    }

    .service-box:after {
        content: none;
    }

    .service-box h3 {
        padding-right: 0;
    }

    .contact-us .location {
        padding: 25px;
    }

    .page-404 h1 {
        font-size: 30px;
    }

    .error__message span {
        font-size: 140px;
    }

    .ramo {
        max-width: 30px;
        -webkit-transform: translateX(75px);
        -ms-transform: translateX(75px);
        transform: translateX(75px);
    }

    .donut {
        max-width: 125px;
    }

    .error__message span:last-child {
        padding-left: 85px;
    }

    .modal--visa .media img {
        -ms-flex-item-align: start !important;
        align-self: start !important;
    }

    .modal--visa .media-body .btn {
        position: relative;
    }

    .modal--visa .btn--orange {
        padding: 25px 10px !important;
    }

    .modal--visa .modal-body {
        padding: 30px;
    }

    .media-body__title {
        padding-right: 0;
    }
}

@media (max-width: 567px) {
    body.scrolled .top .logo {
        width: 96px !important;
        height: 40px !important;
        background-position: 0 -154px !important;
    }

    body.scrolled .top ul a.hamburger,
    body.scrolled .top ul li.hamburger {
        padding: 0 10px;
        background: #e5e5e5 !important;
        color: #000 !important;
    }

    body.scrolled .top ul .hamburger a {
        color: #000 !important;
    }

    .top ul .hamburger a {
        color: #fff !important;
    }

    .top,
    .top ul a {
        height: 60px;
    }

    .top .logo {
        width: 96px;
        height: 40px;
        background-position: 0 -114px;
    }

    .top ul .signin .desktop {
        display: none !important;
    }

    .top ul .signin .mobile {
        display: block !important;
    }

    .top ul a {
        padding: 0 20px;
        line-height: 60px;
    }

    .top ul a.hamburger {
        line-height: 70px;
    }

    .top ul a.hamburger,
    .top ul li.hamburger {
        padding: 0 10px;
        background: transparent;
        font-size: 30px;
        color: #fff;
    }

    .hero h1,
    main section h2 {
        font-size: 30px;
    }

    .hero h2,
    main section h3 {
        font-size: 20px;
    }

    .visa-checker .item {
        height: auto;
        padding: 15px 10px 10px 45px;
    }

    .visa-checker .item i {
        left: 13px;
    }
}

@media (max-width: 480px) {

    .icon-backpack:before,
    .icon-suitcase:before {
        -webkit-background-size: 30px 30px;
        -moz-background-size: 30px 30px;
        -o-background-size: 30px 30px;
        background-size: 30px 30px;
        width: 30px;
        height: 30px;
    }

    button[type=submit] {
        width: 100%;
        min-width: 0;
    }

    .accordion h5 a {
        padding-right: 40px;
        font-size: 18px;
    }

    .accordion h5 a i.before {
        width: 60px;
        height: 60px;
        margin-left: 0;
        line-height: 60px;
        font-size: 30px;
    }

    .accordion h5 a i.after {
        width: 30px;
        height: 30px;
        right: 0;
        line-height: 30px;
        font-size: 18px;
    }

    .accordion .card-body {
        padding: 15px 0;
    }

    .accordion .flag {
        max-width: 50px;
        margin-left: 0;
    }
}

/* @media (max-width: 1599px) {
    section.wai p {
        padding-top: 400px !important;
    }
} */

/* @media (max-width: 1600px) {

    body.scrolled .tool:not(.tool--hidden) .visa-checker,
    body.scrolled .tool:not(.sticky) .visa-checker {
        margin-bottom: 100px;
        max-width: 100%;
        position: static;
        transform: translateX(0);
        z-index: 2;
    }
} */

.covid-19 {
    position: fixed;
    top: 100px;
    max-width: 335px;
    right: -290px;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
    z-index: 100;
}
.covid-19:hover {
    right: 0;
}
.covid-19:before {
    content: '';
    display: block;
    width: 32px;
    height: 64px;
    background: url(./img/info.png) no-repeat left center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 13px;
    z-index: -1;
}
.notification {
    background: rgba(0, 0, 0, .8);
    padding: 20px;
    margin-left: 45px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.notification > span {
    color: #f36b21;
}

.close__btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 30px;
    color: #8894a5;
    font-size: 20px;
    cursor: pointer;
}

.demo-banner {
    padding: 4px 15px;
    position: relative;
    z-index: 100;
    background: #e27338;
}
.demo-banner-message {
    line-height: normal;
    font-size: 16px;
}
.demo-banner .btn-outline {
    padding: 5px 15px;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    line-height: 26px;
    font-size: 18px;
    box-shadow: none;
    transition: ease .5s;
}
.section-bg {
    padding: 75px 0;
    background: #091838;
}
.underline-title:after {
    content: '';
    width: 50px;
    height: 5px;
    margin-top: 15px;
    background: #e27338;
    display: block;
}

@media (max-width: 576px) {
    .covid-update {
        padding: 23px 46px 23px 15px;
        text-align: left;
    }

    .covid-update p {
        font-size: 13px;
    }

    .close__btn {
        right: 15px;
    }
}

@media screen and (max-height: 768px) {
    @media screen and (max-width: 1370px) {
        .all-visas .scroll {
            height: calc(100vh - 400px);
        }
    }
}

@media screen and (min-width: 575px) {

    .fullscreen .menu .lang-item-fr,
    .fullscreen .menu .lang-item-it,
    .fullscreen .menu .lang-item-en {
        float: left;
        width: 50%;
    }
}

.fullscreen .menu .lang-item-fr {
    background: url(img/flags/fr-flag-01.png) no-repeat center left;
    background-position-x: 23%;
}

.fullscreen .menu .lang-item-it {
    background: url(img/flags/it-flag-01.png) no-repeat center left;
    background-position-x: 25%;
}

.fullscreen .menu .lang-item-en {
    background: url(img/flags/uk-flag-01.png) no-repeat center left;
    background-position-x: 25%;
}

@media screen and (max-width: 575px) {

    .fullscreen .menu .lang-item-fr,
    .fullscreen .menu .lang-item-it,
    .fullscreen .menu .lang-item-en {
        background-position-x: 23%;
    }
    .demo-title {
        font-size: 32px;
        line-height: 44px;
    }
    .demo-subtitle {
        max-width: 100%;
        font-size: 24px;
        line-height: 30px;
    }
    .demo-summary ul li {
        margin-bottom: 30px;
        line-height: 30px;
        font-size: 20px;
    }
    .demo-form-wrapper {
        padding: 30px;
    }
    .all-visas .content ul.search-by-country {
        padding: 20px 15px 0 15px;
    }
    .all-visas ul.search-by-country a {
        margin-right: 5px;
    }
    .tm-card {
        width: 100%;
    }
    .hero h2 > ul > li {
        margin-top: 30px;
        font-size: 20px;
    }
}

/*Markeing page*/
.mktng {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mktng .main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.mktng footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.mktng .photo-background {
    height: 435px;
}

.mktng .select2-container--open .select2-dropdown--below {
    top: -50px;
}

.mktng .custom-placeholder {
    left: 11px;
}

.mktng .select2-results__option:first-child {
    opacity: .4;
}
.mktng .select2-results__option:first-child:hover {
    opacity: 1;
}

.assets-form {
    margin-top: 50px;
    margin-bottom: 50px;
}

.assets-form:after, 
.assets-form:before {
    content: '';
    width: calc(100% - 30px);
    height: 1px;
    display: block;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 auto;
}

.assets-form:before {
    margin-bottom: 50px;
}

.assets-form:after {
    margin-top: 35px;
}

.assets-form .select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-weight: 400;
    font-size: 16px;
    color: #333 !important;
}

.assets-form .select2-container--default .select2-selection--single {
    height: 60px;
    border-radius: 0;
}

.assets-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 60px;
    line-height: 75px;
}

.assets-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 60px;
    color: #333!important;
    font-weight: 400 !important;
}

.assets-form .select2-container--default .select2-selection--single .select2-selection__rendered[title="Category (All)"],
.assets-form .select2-container--default .select2-selection--single .select2-selection__rendered[title="Country (All)"],
.assets-form .select2-container--default .select2-selection--single .select2-selection__rendered[title="Material type (All)"] {
  color:  #b7b7b7 !important;
}

.assets-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    position: relative;
    border-color: transparent !important;
    left: auto;
    top: auto;
}

.assets-form .select2-container--default .select2-selection--single .select2-selection__rendered[title="Category (All)"] + .select2-selection__arrow b:before,
.assets-form .select2-container--default .select2-selection--single .select2-selection__rendered[title="Country (All)"] + .select2-selection__arrow b:before,
.assets-form .select2-container--default .select2-selection--single .select2-selection__rendered[title="Material type (All)"] + .select2-selection__arrow b:before {
   border-top: 6px solid #b7b7b7;
}

.assets-form .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-top: 6px solid #333;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.assets-form .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
    content: '';
    position: absolute;
    left: 1px;
    top: 0;
    border-top: 5px solid #fff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.email-option:not(:last-child):after,
.banner:not(:last-child):after {
    content: '';
    width: calc(100% - 30px);
    height: 1px;
    display: block;
    background: rgba(255, 255, 255, 0.12);
    margin: 35px auto 50px;
}

.email-option:last-child,
.banner:last-child {
    padding-bottom: 100px;
}

.email-option .img__container {
    max-height: 420px;
    overflow: hidden;
    display: block;
    cursor: zoom-in;
}

.banner .title,
.email-option .title {
    font-weight: 700;
    font-size: 18px;
}

.preview,
.hint span {
    font-weight: 300;
    text-decoration: underline;
    cursor: pointer;
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
}

.preview {
    font-size: 16px;
    color: #46b2fd !important;
}

.hint {
    margin-top: 30px;
}

.hint span {
    font-size: 14px;
    color: #eb6822 !important;
}

.preview:hover,
.hint:hover span {
    text-decoration: none;
}

#helpModal .modal-title {
    font-size: 26px;
}

#helpModal .modal-content {
    padding-bottom: 30px;
}

#helpModal .modal-body {
    max-height: 480px;
    overflow-y: auto;
}

.ekko-lightbox .close,
#helpModal .close {
    font-weight: 300;
    right: 15px;
    top: 5px;
}

.social-network {
    min-width: 120px;
}


/* underMaintenance Modal */
#underMaintenance .close {
    top: 0;
    right: 15px;
    font-weight: 300;
}

#underMaintenance .btn {
    max-width: 180px;
    padding: 15px;
    font-size: 16px;
    margin: 25px auto 0;
    display: block;
    color: #fff;
    background: #0465A9;
}

.gears {
    max-width: 350px;
    margin: 0 auto 15px;
    display: block;
}

.big-gear {
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -o-transform-origin: center;
    transform-origin: center;
    -webkit-animation: rotate 1.5s linear infinite;
    -moz-animation: rotate 1.5s linear infinite;
    -o-animation: rotate 1.5s linear infinite;
    animation: rotate 1.5s linear infinite
}

.small-gear {
    margin-left: -6px;
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -o-transform-origin: center;
    transform-origin: center;
    -webkit-animation: reverseRotate 1.5s linear infinite;
    -moz-animation: reverseRotate 1.5s linear infinite;
    -o-animation: reverseRotate 1.5s linear infinite;
    animation: reverseRotate 1.5s linear infinite;
}


@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}


@-moz-keyframes rotate {
    0% {
        -moz-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}


@-o-keyframes rotate {
    0% {
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}


@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

@-webkit-keyframes reverseRotate {
    0% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@-moz-keyframes reverseRotate {
    0% {
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -moz-transform: rotate(0);
        transform: rotate(0);
    }
}

@-o-keyframes reverseRotate {
    0% {
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -o-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes reverseRotate {
    0% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
}

@media (max-width: 575px) {
    .email-option:last-child,
    .banner:last-child {
        padding-bottom: 50px;
    }

    .mktng .main h1 {
        font-size: 36px;
    }

    .mktng .main h2 {
        font-size: 26px;
    }
    .demo-banner {
        padding: 15px 0;
    }
   .demo-banner .btn-outline { margin-top: 15px; }
   .hero-software {
     margin-top: 300px;
   }
}
