@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@300;400;500;600;700;800&family=Mulish:wght@300;400;500;600;700;800&display=swap");
:root {
    --primary--color: #27368f;
    --secondary--color: #be1d2d;
    --text-color: #343434;
    --primary-font: "Dosis", sans-serif;
    --secondary-font: "Mulish", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    vertical-align: middle;
}

a:hover,
a {
    text-decoration: none;
}

body {
    font-family: var(--secondary-font);
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    font-weight: 600;
}

figure {
    margin: 0;
}
/* Default CSS */

.site-header {
    position: relative;
    z-index: 111;
    background: #fff;
}

.logo {
    display: block;
}

.logo img {
    max-width: 150px;
    padding: 15px 0;
}

.header-ad img {
    max-width: 530px;
    width: 100%;
}
.btn {
    color: inherit;
    padding: 15px 18px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: 0.3s linear;
    border-radius: 4px;
    position: relative;
    font-size: 16px;
    overflow: hidden;
    text-transform: uppercase;
    font-family: var(--primary-font);
    font-weight: 600;
}

.btn-blue {
    background: var(--secondary--color);
    color: #fff;
}

.btn-red {
    background: var(--secondary--color);
    color: #fff;
}

.btn-red:hover {
    color: #fff;
}

.btn span {
    position: relative;
    color: #fff;
    z-index: 2;
}

.btn::before,
.btn::after {
    content: "";
    position: absolute;
    width: 101%;
    height: 100%;
    left: 0;
    top: 0;
    will-change: transform;
    z-index: 1;
    background-color: var(--secondary--color);
    -webkit-transition: -webkit-transform 0.25s
        cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: transform 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.btn.btn-red::before,
.btn.btn-red::after {
    background-color: var(--primary--color);
}

.btn::before {
    opacity: 0.5;
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%);
    -webkit-transition-delay: 0;
    transition-delay: 0;
}

.btn::after {
    opacity: 0.9;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.btn:hover::before,
.btn:hover::after {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.btn-small span {
    padding: 10px 15px;
    font-size: 16px;
}

.btn-white {
    background-color: #fff;
}

.btn-white span {
    color: var(--secondary--color);
}

.btn-blue {
    background-color: var(--primary--color);
}

.btn-white:hover span {
    color: #fff;
}

.header-btn {
    margin-left: 10px;
    display: inline-block;
    line-height: 41px;
    text-align: center;
    text-transform: uppercase;
    padding: 0 20px;
    position: relative;
    font-size: 15px;
    border-radius: 4px;
    font-weight: 700;
    color: #fff;
    background-color: var(--secondary--color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--primary-font);
}

.header-btn-white {
    color: var(--secondary--color);
    background-color: #fff;
}

.header-btn:hover {
    background: #fff;
    color: var(--secondary--color);
}

.header-btn-white:hover {
    color: #fff;
    background-color: var(--secondary--color);
}

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

    50% {
        transform: scale(0.95);
    }

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

.section {
    padding: 100px 0 0 0;
}

.heading-wrap {
    width: 50%;
    margin: auto;
    margin-bottom: 35px;
}

.heading-wrap span {
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 900;
    color: var(--primary--color);
    text-transform: uppercase;
}

.heading {
    margin: 0;
    font-size: 35px;
    font-family: var(--primary-font);
    color: #252525;
    line-height: 42px;
}

/* Default  CSS Ends */
.main-navigation {
    background: var(--primary--color);
    display: flex;
    align-items: center;
    align-self: stretch;
    margin: 0 0 0 auto;
}
.main-navigation .hamburger {
    display: none;
}
.main-navigation > div {
    display: flex;
    align-items: center;
    align-self: stretch;
    width: 100%;
}
.main-navigation > div > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    align-self: stretch;
    height: 100%;
    align-items: center;
}
.main-navigation > div > ul > li {
    display: flex;
    position: relative;
    align-items: center;
    align-self: stretch;
    margin: 0 0 0 35px;
}
.main-navigation > div > ul > li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 0%;
    background-color: var(--secondary--color);
    height: 3px;
    z-index: 2;
    transition: all 0.35s ease-in-out;
}
.main-navigation > div > ul > li > span {
    font-size: 12px;
    margin-left: 9px;
}
.main-navigation > div > ul > li > ul {
    position: absolute;
    top: 150%;
    left: 0;
    background: #fff;
    width: 250px;
    box-shadow: 2px 10px 21px rgba(0, 0, 0, 0.3490196078);
    visibility: hidden;
    opacity: 0;
    list-style-type: none;
    padding: 6px 0 12px 0px;
    border-radius: 0 0 6px 6px;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.main-navigation > div > ul > li:hover ul {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    top: 100%;
}
.main-navigation > div > ul > li > ul > li {
    padding: 10px 15px;
}

.main-navigation > div > ul > li > i {
    color: #fff;
    font-size: 14px;
    margin-left: 5px;
}
.main-navigation > div > ul > li > ul > li:last-child {
    padding-bottom: 0;
}
.main-navigation > div > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1294117647);
}
.main-navigation > div > ul > li > ul > li > a {
    font-weight: 700;
    font-size: 16px;
    color: #111;
    font-family: var(--secondary-font);
}
.main-navigation > div > ul > li > ul > li:hover > a {
    color: var(--secondary--color);
}
.main-navigation > div > ul > li > a {
    color: #fff;
    position: relative;
    font-weight: 700;
    display: block;
    font-size: 17px;
    -webkit-align-items: center;
    padding: 18px 0;
    align-items: center;
    font-family: var(--primary-font);
    transition: all 0.35s ease-in-out;
    text-transform: uppercase;
}
.main-navigation > div > ul > li:hover:before,
.main-navigation > div > ul > li.active:before {
    width: 100%;
    transition: all 0.35s ease-in-out;
}
/* .main-navigation > div > ul > li:hover > a,
.main-navigation > div > ul > li:hover span,
.main-navigation > div > ul > li.active > a,
.main-navigation > div > ul > li.active span {
  color: var(--secondary--color);

  transition: all 0.35s ease-in-out;
} */
.main-navigation > div > ul > li.active > a {
    font-weight: 900;
}

.navigation-right {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.burgerMenu {
    display: none;
    padding: 15px 20px;
    font-size: 20px;
    color: #fff;
    background: #00000021;
}

.header--sidebar__nav .contact-info {
    padding: 10px 20px;
}
.header--sidebar__nav .contact-info > div {
    padding-left: 30px;
    position: relative;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}
.header--sidebar__nav .contact-info > div img {
    width: 20px;
    height: 20px;
}
.header--right > div p {
    font-size: 17px;
    font-weight: 500;
    color: #111;
    margin-bottom: 3px;
}

.header--right > div a,
.header--sidebar__nav .contact-info > div a {
    color: var(--primary--color);
    font-size: 15px;
    font-weight: 500;
}
.header--sidebar__nav .contact-info > div {
    text-align: center;
}

.header--sidebar__head img {
    width: 150px;
}

.header--sidebar__overlay {
    background-color: rgba(0, 0, 0, 0.82);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 1026;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    -webkit-transition: transform 0.8s ease 0s;
    -khtml-transition: transform 0.8s ease 0s;
    -moz-transition: transform 0.8s ease 0s;
    -ms-transition: transform 0.8s ease 0s;
    -o-transition: transform 0.8s ease 0s;
    transition: transform 0.8s ease 0s;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    cursor: url("./assets/img/pointer.png"), auto;
}

.header--sidebar__menu {
    position: fixed;
    z-index: 1029;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    background-color: #fff;
    font-size: 15px;
    line-height: 26px;
    color: #383838;
    overflow: hidden;
    transform: translateX(-500px);
    -webkit-transform: translateX(-500px);
    -moz-transform: translateX(-500px);
    -ms-transform: translateX(-500px);
    -o-transform: translateX(-500px);
    -webkit-transition: transform 0.8s ease 0s;
    -khtml-transition: transform 0.8s ease 0s;
    -moz-transition: transform 0.8s ease 0s;
    -ms-transition: transform 0.8s ease 0s;
    -o-transition: transform 0.8s ease 0s;
    transition: transform 0.8s ease 0s;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    display: flex;
    flex-direction: column;
}

.header--sidebar__shownav .header--sidebar__menu {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.header--sidebar__shownav .header--sidebar__overlay {
    transform: scaleX(100%);
    -webkit-transform: scaleX(100%);
    -moz-transform: scaleX(100%);
    -ms-transform: scaleX(100%);
    -o-transform: scaleX(100%);
}
.header--sidebar__menu > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header--sidebar__menu > ul > li {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    transform: translateX(100px);
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.header--sidebar__menu > ul > li > ul {
    display: none;
    list-style: none;
    background-color: #f3f3f3;
    padding: 0;
    margin: 10px 0 0 0;
}
.header--sidebar__menu > ul > li > ul > li a {
    padding: 10px;
    display: block;
    color: var(--primary--color);
    font-size: 16px;
    font-weight: 500;
}
.header--sidebar__menu > ul > li > a {
    color: var(--primary--color);
    font-size: 18px;
    font-family: var(--primary-font);
    font-weight: bold;
    text-transform: uppercase;
}

.header--sidebar__shownav .header--sidebar__menu > ul > li {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    position: relative;
}
.header--sidebar__shownav .header--sidebar__menu > ul > li > i {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: var(--primary--color);
    padding: 10px;
    top: 2px;
}

.header--sidebar__head {
    background: #eee;
    text-align: center;
    padding: 15px;
}

.header-btn i {
    position: absolute;
    top: 14px;
    right: 15px;
    font-size: 12px;
}

.account-selection .header-btn {
    padding-right: 35px;
    padding-left: 15px;
}
.header-dropdown {
    padding: 0;
}

.header-dropdown > a {
    padding: 8px 15px;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Dosis", sans-serif;
    font-size: var(--secondary-font);
    color: var(--text-color);
    border-bottom: 1px solid #eee;
}

.header-dropdown > a:hover {
    background-color: #0000000d;
}

.lang-selection > a {
    color: #fff;
    font-family: var(--primary-font);
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    vertical-align: middle;
    line-height: 25px;
    display: block;
}

.lang-selection > a i {
    font-size: 12px;
}

.lang-selection > a svg {
    height: 25px;
    width: 25px;
    margin-right: 2px;
}

.lang-selection > a span {
    display: inline-block;
    vertical-align: middle;
}

.account-selection {
    margin-left: 10px;
}

/* .banner__section .prev-slide,
.banner__section .next-slide {
  width: 34px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: 24px;
}

.banner__section .owl-nav {
  position: absolute;
  top: auto;
  bottom: 50%;
  width: 100%;
  z-index: 4;
  width: 100%;
  display: flex;
  padding: 0 20px;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.18, 0.91);
  opacity: 0;
  visibility: hidden;
}

.banner__section:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.banner__section .prev-slide {
  background-image: url("../img/prev-arrow.svg");
}

.banner__section .next-slide {
  background-image: url("../img/next-arrow.svg");
}

.banner__section .owl-next {
  margin-left: auto;
} */

.img-bg {
    height: 100%;
}

.banner__section {
    box-sizing: border-box;
    /* height: 100vh; */
    display: flex;
    position: relative;
    padding: 0;
    z-index: 1;
}

.banner__section .banner-wrap img {
    max-height: 655px;
    /* height: 100%; */
    /* opacity: 0.67; */
    object-fit: cover;
}

main,
.site-footer {
    position: relative;
    z-index: 10;
    background-color: #fff;
    color: #404040;
}

.banner__section .banner-wrap {
    /* position: fixed; */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner__section .owl-carousel,
.banner__section .owl-carousel .owl-stage-outer,
.banner__section .owl-carousel .owl-stage-outer .owl-stage,
.banner__section .owl-carousel .owl-stage-outer .owl-stage .owl-item,
.banner__section .owl-carousel .owl-stage-outer .owl-stage .owl-item .item,
.banner__section
    .owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    > div {
    height: 100%;
    background: #000;
}

.banner__section .owl-nav .owl-prev,
.banner__section .owl-nav .owl-next {
    position: absolute;
    top: 0;
    bottom: 0;
    overflow: hidden;
    text-indent: 101%;
    outline: none;
    white-space: nowrap;
    width: 20%;
    z-index: 4;
}

.banner__section .owl-carousel .owl-nav button.owl-next,
.banner__section .owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.banner__section .owl-nav .owl-prev {
    left: 0;
    cursor: url("../img/prev-arrow.svg") 0 0, pointer;
}

.banner__section .owl-nav .owl-next {
    right: 0;
    cursor: url("../img/next-arrow.svg") 0 0, pointer;
}

.banner__section
    .owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    div.slider-wrap {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 261;
    display: flex;
    align-items: center;
    color: #fff;
}

.banner__section
    .owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    div.slider-wrap
    .uk-container {
    width: 100%;
}

/* Choose Language Starts */
.choose__language {
    position: fixed;
    z-index: 999;
    height: 100vh;
    width: 100%;
}

.choose__language figure {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.choose__language figure::before {
    content: "";
    background: #00000029;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.choose__language figure img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.choose-language-options {
    position: absolute;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.choose-language-options h1 {
    color: #fff;
    font-family: var(--primary-font);
    font-weight: 100px;
    font-weight: bold;
    text-transform: uppercase;
}

.choose-language-options > span {
    color: #fff;
    margin: 0 15px;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}

.choose-language-options {
    color: #fff;
}

.language-btn {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.language-btn > a {
    margin-right: 15px;
    margin-bottom: 15px;
}

.language-btn span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.language-btn span img {
    margin-right: 5px;
}

.choose__language.hide-lang-btn {
    display: none;
}

/* Choose Language Ends */

/* About Section */

.about__section {
    position: relative;
}

.about__section::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background: url("../img/japan-map-svg.svg") 0 0 no-repeat;
    width: 355px;
    height: 607px;
    opacity: 0.1;
    margin-top: 50px;
}

.each--packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.package--column img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.package--column:nth-child(even) {
    margin-top: -50px;
}

.about-content {
    padding: 30px;
    border-radius: 4px;
    background: #eee;
}

.about-content p {
    font-size: 17px;
    color: #525252;
    line-height: 29px;
}

.about-content .heading-wrap {
    margin: 0;
    width: 100%;
}

/* About Section Ends */

/* Services Section Starts */
.services__section {
    margin-top: 50px;
    padding: 75px 0;
    position: relative;
    background: rgba(39, 54, 143, 0.1);
}

.services__section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../img/worldmap.svg") 0 0 no-repeat;
    opacity: 0.8;
    z-index: -1;
    background-attachment: fixed;
}

.service-wrapper > a {
    display: block;
    width: 100%;
    /* height: 250px; */
}

.service-wrapper > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-text {
    padding: 15px;
    padding-bottom: 25px;
    background: #fff;
}

.service-text h3 {
    font-size: 22px;
    margin: 0;
}

.title {
    color: #252525;
}

.title:hover {
    color: var(--secondary--color);
}

.service-text p {
    margin: 0;
    margin: 10px 0;
}

.anchor-text {
    font-family: var(--primary-font);
    margin-top: 12px;
    color: var(--primary--color);
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 8px;
    letter-spacing: 0.4px;
    font-size: 14px;
    position: relative;
}
.anchor-text:before {
    width: 20%;
    height: 2px;
    background: #000;
    content: "";
    position: absolute;
    transition: 0.3s linear;
    bottom: 0;
    left: 0;
}
.anchor-text:hover {
    color: var(--primary--color);
    transition: 0.3s linear;
}
.anchor-text:hover:before {
    width: 100%;
    transition: 0.3s linear;
    background: var(--primary--color);
}

.service-wrapper > a {
    display: block;
    position: relative;
}

.service-wrapper > a span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--secondary--color);
}
/* Services Section Ends */

/* Three Sec */

.doc-content {
    background: rgba(39, 54, 143, 0.1);
    position: relative;
    padding: 15px;
}

.doc-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../img/small-world-map.svg") top center no-repeat;
}

.doc-content span {
    position: absolute;
    top: 22px;
    background: rgba(39, 54, 143, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.doc-content span svg {
}

.doc-content div {
    padding-left: 75px;
}

.doc-content div h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
}

.doc-content div p {
    margin: 0;
    font-size: 15px;
    color: #252525;
    line-height: 24px;
    margin-top: 6px;
}

.doc-content:hover {
    background: var(--primary--color);
}

.doc-content:hover span {
    background-color: #fff;
}

.doc-content:hover div h4,
.doc-content:hover div p {
    color: #fff;
}

/* Request A Quote */

.reqQuote-img {
    height: 100vh;
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.requestQuote {
    display: flex;
    flex-wrap: wrap;
}

.requestQuote > div {
    flex: 0 0 45%;
}

.requestQuote > div img {
    width: 100%;
}

.requestQuote > div:last-child {
    flex: 0 0 55%;
    background-color: var(--primary--color);
}

.faq-content {
    overflow: hidden;
    display: none;
    color: #c9cde3;
    line-height: 25px;
    font-size: 15px;
}

.faq-questions ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-questions ul li {
    position: relative;
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee5e;
}

.faq-questions ul li:last-child {
    border-bottom: none;
}

.faq-questions ul li a {
    display: block;
    color: #fff;
    position: relative;
    font-size: 18px;
    padding-right: 15px;
    font-weight: 500;
}

.heading-wrap {
    margin-bottom: 40px;
}

.faq-questions ul li a::after {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

.faq-questions ul li a.faq-show::after {
    content: "\f068";
}

.requestQuote-form {
    width: 75%;
    padding-left: 150px;
}

.requestQuote-form .heading {
    font-size: 45px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
}

.requestQote {
    position: relative;
}

.requestQuote-faq {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    background: var(--primary--color);
}

.requestQuote-faq::after {
    content: "";
    background: url("../img/japan-map-svg.svg") 0 0 no-repeat;
    width: 355px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 185px;
    opacity: 0.2;
    filter: brightness(0) invert(1);
}
.requestQuote-form .heading-wrap {
    margin: 0;
    width: 75%;
    margin-bottom: 30px;
}

.requestQuote > div {
    position: relative;
}

.form-wrapper {
    background-color: #fff;
    position: absolute;
    right: -80px;
    top: 140px;
    width: 550px;
    padding: 35px;
    z-index: 111;
}

.form-wrapper input,
.form-wrapper select,
.login-register-wrapper input,
.login-register-wrapper select,
.form-wrapper textarea,
.login-register-wrapper textarea {
    font-family: "Dosis", sans-serif;
    background: #f5f5f5;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 40px !important;
    font-size: 12px;
    padding-left: 20px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 600;
    color: #222;
}


.login-register-wrapper input[type="checkbox"]
{
    font-family: "Dosis", sans-serif;
    background: #f5f5f5;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 12px;
    width: auto;
    height: auto !important;
    padding-left: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.form-wrapper input::placeholder,
.form-wrapper textarea::placeholder,
.login-register-wrapper input::placeholder {
    color: #454545;
}

.form-wrapper textarea,
.login-register-wrapper textarea {
    height: 150px !important;
}

.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
    outline: 0;
    background-color: #f5f5f5;
    color: #454545;
    border-color: #e5e5e5;
}

.form-wrapper .heading-wrap {
    width: 100%;
}

.form-wrapper .heading {
    color: var(--primary--color);
}

/* Review Section */
.review-content {
    text-align: center;
    padding: 25px;
    background: #f5f5f5;
    border-radius: 4px;
    position: relative;
}

.review-content::after {
    content: "\f10e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 55px;
    color: #c2c5dc4f;
}
.review-person {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-content p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: #252525;
}

.review-person img {
    width: 50px !important;
    height: 50px;
    border-radius: 50px;
}

.review-person > div {
    /* flex: 1; */
    margin-left: 15px;
    text-align: left;
}

.review-person i {
    color: orange;
    font-size: 12px;
}

.review-person > div h5 {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
}

.review-person > div span {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary--color);
}

.testimonial__section {
    position: relative;
}

.testimonial__section .heading-wrap {
    width: 100%;
}

.testimonial__section::before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0.1;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../img/hero.png") 0 0 no-repeat;
    background-size: cover;
    z-index: -1;
}

.testimonial__section .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.testimonial__section .owl-dots .owl-dot {
    width: 25px;
    height: 5px;
    background: #eee !important;
    border-radius: 50px;
    margin-right: 8px;
}

.testimonial__section .owl-dots .owl-dot.active {
    background: var(--primary--color) !important;
}

/* University Section */
.universities {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 4px;
}

.universities img {
    height: 70px;
    margin: auto;
    width: auto !important;
}

/* Footer */

.site-footer {
    position: relative;
    padding: 50px 0 12px 0;
    background-color: #000;
    padding-top: 0;
}

.site-footer::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: url("../img/footer-background.png");
    background-size: 100%;
    background-attachment: fixed;
    background-size: cover;
}

.site-footer::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: #000;
    opacity: 0.85;
}

.site-footer > div {
    position: relative;
    z-index: 999;
}
.footer-contact-details {
    padding: 25px 50px;
    background: #1b276a;
    margin-top: -27px;
    position: relative;
}

.footer-contact-details::before,
.footer-contact-details::after {
    content: "";
    background: url("../img/footer-level-left.png");
    width: 29px;
    height: 29px;
    position: absolute;
    left: -28px;
    top: -1px;
}

.footer-contact-details::after {
    background-image: url("../img/footer-level-right.png");
    left: auto;
    right: -28px;
}
.contact-details {
    position: relative;
    padding-left: 70px;
}

.contact-details span {
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    line-height: 42px;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
}

.contact-details span::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    left: -5px;
    top: -5px;
}

.contact-details h5 {
    margin: 0;
    color: #fff;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 19px;
}

.contact-details small {
    color: #d9dbe6;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
}

.footer-details-links {
    margin-top: 100px;
}

.footer-heading {
    color: #fff;
    font-size: 22px;
    position: relative;
    font-size: 19px;
    text-transform: uppercase;
    padding-bottom: 12px;
}

.footer-heading:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 40px;
    height: 2px;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    padding-bottom: 8px;
    font-size: 15px;
}

.footer-links ul li a {
    display: inline-block;
    position: relative;
    color: #fff;
    transition: 0.4s linear;
}

.footer-links ul li a:before {
    left: -20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s linear;
    top: 0;
    content: "\f054";
    position: absolute;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
}

.footer-contact p a:hover {
    opacity: 0.8;
}

.footer-links ul li a:hover:before {
    opacity: 1;
    left: 0;
    visibility: visible;
}

.footer-links ul li a:hover {
    transition: 0.4s linear;
    padding-left: 20px;
    opacity: 0.7;
}

.footer-socials > a {
    width: 40px;
    height: 40px;
    display: inline-block;
    background: #fff;
    line-height: 40px;
    text-align: center;
    color: #111;
    margin-right: 5px;
    border-radius: 50px;
    margin-bottom: 5px;
}
.last-footer {
    text-align: center;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 1);
}

/* Login */
.login-register-form {
    position: relative;
    z-index: 999;
    height: 100vh;
    width: 100%;
}

.login-register-form figure {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.login-register-form figure::before {
    content: "";
    background: #00000029;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.login-register-form figure img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.login-register-wrapper {
    position: absolute;
    max-width: 450px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 50px;
    background: #fff;
    border-radius: 4px;
}

.login-register-wrapper h1 {
    margin-top: 0;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 9px;
    color: var(--primary--color);
    text-transform: uppercase;
}

.login-register-wrapper p {
    width: 70%;
    text-align: center;
    color: #111;
    margin: auto;
    font-weight: 500;
    margin-bottom: 25px;
    font-size: 15px;
}

.login-register-wrapper a {
    font-family: var(--primary-font);
    color: var(--primary--color);
    text-align: center;
    font-weight: 600;
    text-decoration: underline;
}

.login-register-wrapper .uk-inline {
    display: block;
}

.login-register-wrapper .uk-form-icon {
    cursor: pointer;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-left: none;
    border-radius: 4px;
}

.login-register-wrapper .btn {
    display: block;
    width: 100%;
    margin: 25px 0;
}

.login-register-wrapper input,
.login-register-wrapper select {
    margin: 0;
}

.login-register-wrapper label {
    margin-bottom: 15px;
    display: block;
}
.text-danger {
    font-family: var(--primary-font);
    color: var(--secondary--color);
    font-weight: bold;
    font-size: 14px;
    font-style: italic;
}

.login-register-wrapper input.invalid-input {
    background: #be1d2d29;
    border: 1px solid var(--secondary--color);
}

.login-register-wrapper input.invalid-input::placeholder {
    color: var(--secondary--color);
}

.dont_have_account {
    color: #111;
    font-size: 15px;
    font-family: var(--primary-font);
    font-weight: 600;
    text-align: center;
}

.dont_have_account a {
    margin-left: 5px;
}

.uk-form-icon:not(a):not(button):not(input).changePassword {
    cursor: pointer;
    pointer-events: all;
    color: #111;
}

.register-form .login-register-wrapper {
    max-width: 750px;
    padding: 25px;
}

.register-form .login-register-wrapper label {
    margin-bottom: 0;
}

.login-register-form.register-form,
.login-register-form.register-form figure img {
    height: 100%;
}

.login-register-form.register-form.passwordForm,
.login-register-form.register-form.passwordForm figure img {
    height: 100vh;
}

.login-register-form.register-form .uk-grid > label:last-child {
    width: 100%;
}

.login-register-form.register-form .uk-grid > label:last-child textarea {
    height: 150px !important;
}

.topHeader-lang {
    display: none;
}

/* About Us */

.default__banner--section {
    position: relative;
}

.default__banner--section img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.default__banner--section figure {
    display: block;
    width: 100%;
    height: 100%;
}

.default__banner--section figure::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
}

.default-banner--text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.default-banner--text h1 {
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}
.breadcrumbs nav {
    padding: 10px 0;
    text-align: center;
}

.breadcrumbs nav ul {
    margin: 0;
}
.breadcrumbs nav ul li a,
.breadcrumbs nav ul li {
    color: #fff;
    font-family: var(--primary-font);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.breadcrumbs nav ul li a:hover {
    color: #fff;
}
.breadcrumbs
    nav
    .uk-breadcrumb
    > :nth-child(n + 2):not(.uk-first-column)::before {
    content: "/";
    display: inline-block;
    margin: 0 15px;
    color: #fff;
}

.content-title h2 {
    font-size: 30px;
    text-transform: uppercase;
    color: var(--primary--color);
}

.the-content p,
.the-content {
    font-size: 17px;
    color: #252525;
    line-height: 1.8;
}

.quick-links {
    background: #f5f8fb;
    padding: 0;
    border-radius: 4px;
}

.quick-links h3 {
    color: var(--primary--color);
    font-size: 24px;
    /* padding: 15px; */
    position: relative;
    text-transform: uppercase;
    padding-bottom: 12px;
    font-weight: bold;
    margin: 15px;
    padding-top: 15px;
}
.quick-links h3:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary--color);
    width: 40px;
    height: 2px;
}
.quick-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.quick-links ul li {
    position: relative;
    padding: 15px;
    padding-right: 25px;
    border-bottom: 1px solid #eee;
}

.quick-links ul li:last-child {
    border-bottom: none;
}

.quick-links ul li a {
    font-size: 17px;
    font-weight: 600;
    display: block;
    color: #1e1e1e;
}

.quick-links ul li a::before {
    content: "\f054";
    position: absolute;
    right: 20px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 13px;
    width: 28px;
    height: 28px;
    line-height: 29px;
    text-align: center;
}

.quick-links ul li:hover {
    background: var(--primary--color);
}

.quick-links ul li:hover a {
    color: #fff;
}

.quick-links ul li:hover a::before {
    width: 28px;
    height: 28px;
    line-height: 29px;
    text-align: center;
    background-color: #fff;
    color: var(--primary--color);
    border-radius: 40px;
}
.sidebar-quotation {
    margin-top: 25px;
    padding: 25px;
    text-align: center;
    position: relative;
    background: url("../img/sidebar-img.png") 0 0 no-repeat;
    border-radius: 4px;
}

.sidebar-quotation::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #27368f9e;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.sidebar-quotation > div {
    position: relative;
}
.sidebar-quotation h3 {
    font-size: 31px;
    color: #fff;
}

.callUs {
    display: block;
    position: relative;
    padding: 24px 0 12px 0;
}

.callUs > i {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #111;
    background: #fff;
    border-radius: 70px;
    margin: auto;
    position: relative;
    font-size: 20px;
}
.lineFirst,
.lineLast {
    content: "";
    position: absolute;
    right: 64%;
    top: 55%;
    /* transform: translate(-50%, -50%); */
    width: 70px;
    height: 2px;
    background: #fff;
}

.lineFirst {
    left: 64%;
    right: auto;
}

.sidebar-quotation > div > a {
    display: block;
    padding-top: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 600;
}

.sidebar-quotation > a.btn {
    width: 100%;
    margin-top: 25px;
}

.featured-img {
    text-align: center;
    margin-bottom: 15px;
}

.featured-img img {
    width: 100%;
}

.the-content h1,
.the-content h1,
.the-content h2,
.the-content h3,
.the-content h4,
.the-content h6 {
    color: var(--primary--color);
    font-weight: bold;
}

.the-content ul,
.the-content ol {
    padding-left: 13px;
}

.the-content ul li,
.the-content ol li {
    padding: 8px 0;
}

.singleFaq.faq-questions ul li {
    padding: 0;
}
.singleFaq.faq-questions ul li a {
    background: var(--primary--color);
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 4px;
}

.singleFaq.faq-questions ul li a::after {
    right: 15px;
    top: 15px;
}

.singleFaq .faq-content,
.faq__page--content .faq-content {
    color: #111;
    font-size: 16px;
    line-height: 1.8;
}

.faq__page--content .faq-questions ul li {
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.faq__page--content .faq-questions ul li a {
    font-size: 19px;
    font-weight: 600;
}

.faq__page--content .faq-questions ul li a,
.faq__page--content .faq-questions ul li a::after {
    color: var(--primary--color);
}

.page-heading {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primary--color);
}

.page-heading-wrap {
    margin-bottom: 30px;
    text-align: center;
}

.contact__section--form .form-wrapper {
    position: static;
    width: 100%;
}

.contact__section--form .form-wrapper form {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact__section--form .form-wrapper form label {
    flex: 0 0 calc(50% - 15px);
}

.director-details span {
    color: #111;
    font-weight: bold;
}

.director-details h5 {
    margin: 0;
    font-size: 21px;
    color: var(--primary--color);
}

.readmore-text {
    overflow: hidden;
    height: 125px;
}

.review-content .read-more {
    margin-bottom: 15px;
}

.location__section .heading-wrap {
    width: 100%;
}

.location-data {
    padding: 25px;
    background: rgba(39, 54, 143, 0.1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.location-data img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.location-data h3 {
    margin: 20px 0;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primary--color);
}

.location-contact > div i {
    width: 40px;
    height: 40px;
    display: inline-block;
    background: #fff;
    line-height: 40px;
    text-align: center;
    color: #444;
    margin-right: 5px;
    border-radius: 50px;
}

.location-contact > div a {
    font-size: 17px;
    font-weight: 600;
    color: #252525;
}

.location-contact > div {
    display: inline-block;
    margin-right: 15px;
}

.location-contact {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #33333329;
}

.location-data .footer-socials a {
    background: var(--primary--color);
    color: #fff;
}

.ratings span {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #22222275;
}

.req__quote {
    overflow: hidden;
}
.testimonial__container .review-person {
    justify-content: flex-start;
}

.testimonial__container .review-content {
    text-align: left;
}

.language-btn span svg {
    margin-right: 5px;
    height: 25px;
}

.account-selection .header-btn img {
    display: none;
    width: 40px;
    filter: invert(1) brightness(1);
}

.login-register-wrapper input[type="file"] {
    width: 100%;
    max-width: 100%;
    color: #444;
    padding: 5px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #898989;
    margin-top: 5px;
}

.login-register-wrapper input[type="file"]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: var(--secondary--color);
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    -ms-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
}

.login-register-wrapper input[type="file"]::file-selector-button:hover {
    background: var(--primary--color);
}

.register-form .login-register-wrapper label {
    font-size: 14px;
    font-weight: bold;
}

.img-thumbnail {
    margin-top: 10px;
}

.characters {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: right;
}

.time__selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    grid-gap: 15px;
    box-sizing: border-box;
}

.time__selection input {
    display: none;
}

.time__selection label {
    cursor: pointer;
    font-weight: bold;
    padding: 10px 15px;
    text-align: center;
    background: #f5f5f5;
    font-size: 15px;
    width: 100%;
    font-weight: bold;
    color: #111;
    text-transform: uppercase;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.time__selection label.active {
    background-color: var(--primary--color);
    color: #fff;
    border-color: var(--primary--color);
}

.time__selection label.inactive {
    background-color: var(--secondary--color);
    color: #fff;
    border-color: var(--secondary--color);
    cursor: no-drop;
}

.time__selection label.disselected {
    background-color: rgb(214, 214, 214);
    color: black;
    cursor: no-drop;
}

.time__selection label span {
    font-size: 10px;
    display: block;
}

.booking-form .btn {
    width: 100%;
}


.loader-fullPage {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    background: #00000040;
    text-align: center;
    display: flex;
    justify-items: center;
    place-items: center;
    place-content: center;
    overflow: hidden;
}

.loader-fullPage-passport {
    width: 100vw;
    height: 200vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    background: #00000040;
    text-align: center;
    display: flex;
    justify-items: center;
    place-items: center;
    place-content: center;
    overflow: hidden;
}

.loader-fullPage svg {
    color: #fff;
}

.loader-fullPage .uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
	stroke-width: 2;
}

.appointmentDateLabel span {
    display: block;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Roadblock */

.roadblock {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  padding: 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.roadblock-wrap {
  height: 100%;
  overflow: scroll;
  height: 100%;
  width: 100%;
  overflow: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  place-items: center;
}

.skip-ad {
  /*    margin-bottom: 15px;*/
  background: var(--primary--color);
  text-align: center;
  /*    / padding: 6px 19px; /*/
  color: #fff;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  /*    / padding: 6px 20px 6px 20px; /*/
  border-radius: 50px;
  vertical-align: middle;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.skip-ad:hover {
  color: #fff;
}

.roadblock-news-wrap .primary {
  color: #fff;
  background-color: #002c3e;
}
.roadblock-news-wrap h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
  color: #fff;
}
.roadblock-news-wrap h3 a:hover {
  color: #fff;
  opacity: 0.9;
}
.roadblock-news-wrap p {
  font-size: 20px;
  line-height: 32px;
}

.roadblock-news-wrap {
  margin-bottom: 30px;
}

.roadblock-ad {
  overflow: hidden;
}

.roadblock-remove .roadblock {
  opacity: 0;

  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  visibility: hidden;
}
.aligncenter {
  text-align: center;
}
.roadblock__ad .container {
  width: 100%;
}

.alignright {
  text-align: right;
  margin: 0;
}

.roadblock__ad {
  text-align: center;
  position: relative;
}

.roadblock__ad .alignright {
	position: absolute;
	right: -70px;
	top: 0;
}
.mobile-view {
  display: none;
}

.siteLogo img {
  max-width: 250px;
}

.roadblock__ad > div.desktop-view img {
  max-width: 500px;
  width: 100%;
}

.roadblock-logo img {
  width: 100px;
  margin-bottom: 25px;
}


/* Pagination */
/* Container styles */
.uk-pagination {
    margin: 20px 0;
}

/* Pagination item styles */
.uk-pagination li {
    display: inline-block;
    margin: 0 5px;
}

.uk-pagination li a,
.uk-pagination li span {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    color: var(--secondary--color);
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Active page styles */
.uk-pagination .uk-active span {
    color: #fff;
    background-color: var(--secondary--color);
    border-color: var(--secondary--color);
}

/* Disabled page styles */
.uk-pagination .uk-disabled span,
.uk-pagination .uk-disabled a {
    color: #6c757d;
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

/* Hover effects */
.uk-pagination li a:hover {
    color: white;
    background-color: var(--secondary--color);
    border-color: var(--secondary--color);
    text-decoration: none;
}

/* Accessibility styles */
.uk-pagination li a[aria-label] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Previous and next arrow styles */
.uk-pagination li a[rel="prev"],
.uk-pagination li a[rel="next"] {
    font-size: 16px;
    padding: 8px 10px;
}

/* Responsive styles */
@media (max-width: 576px) {
    .uk-pagination li {
        margin: 0 2px;
    }

    .uk-pagination li a,
    .uk-pagination li span {
        padding: 6px 8px;
        font-size: 12px;
    }
}


.form_field{
    color: var(--secondary--color);
}

.passport-form p{
    width: 100% !important;
    text-align: left;
}
