/* Modern CSS Reset */
/* === HARD RESET CSS === */

/* Reset all margins, paddings, borders */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

/* Remove default font styling */
html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    background: #F6F8F9;
    color: #3C5B7F;
    font-family: "Lato", sans-serif;
}

body {
    overflow-x: hidden;
}

path,
line,
rect {
    shape-rendering: geometricPrecision;
}


body.page-template-about {
    background: #F5F5F5;
}

/* Remove all default list styles */
ol,
ul {
    list-style: none;
}

/* Remove quote styles */
blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
}

/* Remove default table spacing */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
    color: #ff3c00;
}

/* Remove outline and inherit font for form elements */
input,
textarea,
select,
button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
    appearance: none;
}

/* Images, media: responsive by default */
img,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Buttons should have pointer */
button {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

/* Remove all headings default spacing */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: normal;
}

/* Remove strong/em default styles */
em,
i,
strong,
b {
    font-style: normal;
    font-weight: normal;
}

a.button {
    border-radius: 10px;
    padding: 18px 30px;
    background: none;
    color: #fff;
    background: #38D6AC;
    font-weight: 700;
    display: flex;
    transition: all .25s ease;
    font-size: 16px;
    line-height: 19px;
}

a.button.green {
    color: #fff;
    background: #12AFAA;
}

a.button.green:hover {
    background: #1E9B55;
}

a.button:hover {
    background: #12AFAA;
    color: #fff;
}

a.button svg {
    opacity: 0;
    transform: translateX(20px);
    margin-left: 5px;
    transition: opacity .25s ease, transform .25s ease;
}

a.button:hover svg {
    margin-left: 5px;
    opacity: 1;
    transform: translateX(12px);
}

#site-header a.button {
    position: relative;
    text-align: center;
    justify-content: center;
}

#site-header {
    width: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 0;
    left: 0;
    z-index: 999;
}

#site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #EDF5F0;
    opacity: 1;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 25px;
    max-width: 1360px;
    width: 100%;
    margin: auto;
    padding: 18px;
    background: #fff;
    transition: background-color .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}

#site-header.is-scrolled .header-inner {
    background: rgba(255, 255, 255, .4);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.top-section-background {
    width: 100%;
    background: url('../images/bg_hero.png') no-repeat center top 50px;
}

.mobile-buttons-holder {
    display: none;
}

.top-mobile-nav {
    display: none;
}

.top-switcher {
	display: flex;
}

.primary-menu-wrapper .wpml-flag-dropdown  {
	display: none!important;
}

.header-inner .primary-menu-wrapper ul {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.header-inner .primary-menu-wrapper ul li {
    margin: 0 25px;
}

.header-inner .primary-menu-wrapper ul li a {
    color: #1B3F69;
    font-size: 16px;
    line-height: 22px;
    display: block;
    font-weight: 700;
    position: relative;
}

.header-inner .primary-menu-wrapper ul li a:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #38D6AC;
    position: absolute;
    bottom: -4px;
    left: 0;
    opacity: 0;
    transition: all ease .5s;
}


.header-inner .primary-menu-wrapper ul li a:hover:after {
    opacity: 1;
}


/*Home*/
.hero {
    width: 100%;
    padding: 140px 0;
    margin: auto;
}

.hero-inner {
    max-width: 1360px;
    position: relative;
    display: flex;
    margin: auto;
    justify-content: space-between;
}

.hero .hero-content {
    display: flex;
    flex-direction: column;
    max-width: 788px;
    width: 100%;
    font-size: 18px;
    line-height: 26px;
}

.hero .hero-content .icon {
    max-width: 70px;
    margin-bottom: 50px;
}

.hero-text {
    background: #1B3F69 url('../images/lines_dark.jpg') center/cover no-repeat;
    border-radius: 40px;
    margin-bottom: 20px;
    padding: 80px 80px 65px;
    color: #fff;
    min-height: 619px;
    overflow: hidden;
}

.hero-icons {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: 20px 30px;
}

.hero .hero-content .hero-icons ul {
    padding: 0;
    justify-content: space-between;
    align-items: center;
}

.hero .hero-content .hero-icons ul li {
    display: flex;
    font-size: 18px;
    white-space: nowrap;
    margin: 0;
    align-items: center;
}

.hero .hero-content .hero-icons ul li img {
    max-width: 40px;
    margin-right: 10px;
}

.hero .hero-image {
    max-width: 572px;
    width: 100%;
	margin-right: -18px;
}

.hero .hero-image img {
    width: calc(100% + 44px);
    max-width: calc(100% + 44px);
    margin-left: auto;
}

.hero .hero-image img.img-mobile {
    display: none;
}

.hero .hero-content .hero-text strong {
    font-weight: 900;
}

.hero .hero-content a.button {
    font-size: 16px;
    line-height: 20px;
    padding-left: 72px;
    padding-right: 72px;
    align-items: center;
}

.hero .hero-content h1 {
    font-size: 56px;
    line-height: 61px;
    font-weight: 400;
    margin: 0 0 20px;
}

.hero .hero-content h1 strong {
    font-weight: 900;
}

.hero .hero-content h3 {
    font-size: 24px;
    line-height: 34px;
    margin: 0 0 53px;
    font-weight: 400;
}

.hero .hero-content h3 strong {
    font-weight: 900;
    color: #39D6AC;
}

.hero .hero-content p {
    margin-bottom: 20px;
}

.hero .hero-content p.note {
    margin-bottom: 0;
}

.hero .hero-content p:last-of-type {
    margin-bottom: 0;
}

.hero .hero-content a {
    display: flex;
    max-width: fit-content;
}

.hero .hero-content ul {
    display: flex;
    font-size: 16px;
    line-height: 22px;
    padding-top: 22px;
}

.hero .hero-content ul li {
    margin-right: 20px;
    font-weight: 600;
}

.hero .hero-content ul li:last-child {
    margin-right: 0;
}

.flights-problem {
    width: 100%;
    padding: 100px 0;
    background: url('../images/bg_testimonial.png') no-repeat center left;
    background-size: auto 100%;
    margin: 66px 0 113px;
}

.flights-problem-top {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto 100px;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
}

.flights-problem-top img {
    margin-bottom: 40px;
    display: inline-block;
}

.flights-problem-top h3 {
    font-size: 40px;
    line-height: 50px;
    font-weight: bold;
    max-width: 465px;
    margin-bottom: 20px;
    letter-spacing: -1.2px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials {
    width: 100%;
    padding: 100px 0 200px;
    background: #fff;
    background-size: auto 100%;
    margin: 0px 0 13px;
}

.testimonials-inner {
    max-width: 1360px;
    margin: auto;
}

.testimonials-inner .testimonials-stars {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 28px;
    color: #1B3F69;
}

.testimonials-inner .testimonial-content {
    font-size: 18px;
    line-height: 28px;
    color: #1B3F69;
}

.testimonials-inner .testimonial-content p {
    font-size: 18px;
    line-height: 28px;
    color: #1B3F69;
    min-height: 162px;
}

.testimonials-inner .testimonials-stars ul {
    display: flex;
    justify-content: flex-start;
}

.testimonials-inner .testimonials-stars ul li {
    background: url('../images/bg_star.png') no-repeat center;
    background-size: cover;
    width: 25px;
    height: 25px;
    padding: 0;
    border: none;
    margin-right: 10px;
}

.testimonials-inner h4 {
    max-width: fit-content;
    background: #fff url('../images/bg_testimonial_title.png') no-repeat center left 20px;
    background-size: 22px 17px;
    letter-spacing: 2.4px;
    font-size: 12px;
    line-height: 14px;
    padding: 15px 20px;
    border-radius: 29px;
    padding-left: 50px;
    font-weight: bold;
}

.testimonials-inner h2 {
    font-size: 44px;
    line-height: 54px;
    font-weight: 900;
    margin: 0px 0 90px;
    color: #1B3F69;
    text-align: center;
}

.testimonials-inner ul {
    display: flex;
    justify-content: space-between;
}

.testimonials-inner ul li {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    padding: 40px;
    max-width: 440px;
    box-shadow: 0px 20px 80px #1B3F690D;
    border: 1px solid #1B3F691A;
    border-radius: 40px;
}

.testimonials-inner ul li h3 {
    font-weight: 600;
    letter-spacing: -0.72px;
    font-size: 24px;
    line-height: 34px;
    margin: 0 0 20px;
}

.testimonials-inner ul li p {
    color: #7E7E7E;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: start;
    padding-top: 28px;
    font-size: 16px;
}

.testimonial-icon {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #1B3F691A;
    padding: 3px;
    border-radius: 100%;
    margin-right: 10px;
}

.testimonial-icon img {
    border-radius: 100%;
    max-width: 30px;
}

.flight-delayed {
    width: 100%;
    margin: 150px 0;
}

.flight-delayed-inner {
    max-width: 1360px;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.flight-delayed-left,
.flight-delayed-right {
    max-width: 670px;
    width: 100%;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #EDF5F0;
    border-radius: 40px;
}

.flight-delayed-left {
    padding: 50px;
    font-size: 20px;
    line-height: 30px;
}

.flight-delayed-left .delayed-icon {
    margin-bottom: 40px;
}

.flight-delayed-left h3 {
    font-size: 40px;
    line-height: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: -1.2px;
}

.flight-delayed-left strong {
    font-weight: bold;
}

.flight-delayed-left p {
    margin-bottom: 110px;
}

.flight-delayed-left .note {
    font-size: 16px;
    line-height: 22px;
    color: #7E7E7E;
    padding-top: 20px;
}

.flight-delayed-left .button {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 22px;
    position: relative;
}

.flight-delayed-left .button svg {
    position: absolute;
    right: 30px;
}

.flight-delayed-right {
    display: flex;
    /*     background: url('../images/bg_delayed_two.svg') no-repeat top left; */
}

.flight-delayed-right-inner {
    display: flex;
    width: 100%;
    border-radius: 40px;
    background: url('../images/cloud_delayed.svg') no-repeat bottom -370% right 170%;
}

.flight-delayed-right img {
    margin: -70px -40px 0 auto;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1360px;
    margin: auto;
}

.slider-container {
    display: flex;
    transition: transform 0.4s ease;
    padding-left: 228px;
}

.slide {
    flex: 0 0 555px;
    margin-right: 20px;
    background: #FFFFFF;
    box-shadow: 0px 20px 80px #1B3F691A;
    border: 1px solid #1B3F691A;
    border-radius: 40px;
    padding: 50px;
    max-width: 555px;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    opacity: 0.3;
}

.slide.is-active {
    opacity: 1;
}

.icon-holder {
    width: 100px;
    height: 100px;
    background: #39D6AC;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide:last-child {
    margin-right: 0;
}

.slide-content {
    font-size: 20px;
    line-height: 25px;
    color: #3B5A7E;
}

.slide-content h3 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 38px;
    font-weight: bold;
    max-width: 450px;
    color: #1B3F69;
}

.slide-content h3 p {
    margin: 0;
}

.slide-content h3 strong {
    font-weight: bold;
}

.slide-content p {
    margin-bottom: 0;
}


.flight-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 30px;
}

.flight-icon img {}

.slider-arrows {
    position: absolute;
    top: 72%;
    transform: translateY(-50%);
    width: 100%;
    display: none;
    height: 50px;
}

.what-you-get-inner:hover .slider-arrows {
    display: block;
}

.slider-arrow {
    position: absolute;
    cursor: pointer;
    display: none;
    z-index: 10;
}

.slider-arrow svg {
    width: 60px;
    height: 60px;
}

.slider-wrapper:hover .slider-arrow {
    display: block;
}

.slider-arrow.prev {
    left: 224px;
}

.slider-arrow.next {
    right: 0px;
}

.slider-pagination {
    display: flex;
    margin-top: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.slider-pagination .pager {
    border-radius: 40px;
    width: 210px;
    height: 234px;
    padding: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 10px;
}

.slider-pagination .pager:nth-child(4) span {
    padding: 10px 30px 0;
}

.slider-pagination .pager.is-active {
    background: #fff;
}

.slider-pagination .pager span {
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
    display: block;
    padding: 10px 10px 0;
}

.lang-ro .slider-pagination .pager span {
	font-size: 19px;
}

.slider-pagination .dot {
    width: 130px;
    height: 5px;
    background: #212F3D 0% 0% no-repeat padding-box;
    border-radius: 3px;
    margin: 0 5px;
    opacity: 0.2;
}

.how-it-works {
    width: 100%;
}

.how-it-works-inner {
    width: 100%;
    max-width: 1360px;
    margin: auto;
}

.how-central-block {
    width: 100%;
    background: url('../images/bg_delayed_two.svg') no-repeat center;
    background-size: cover;
    display: flex;
    border-radius: 40px;
}

.how-right,
.how-left {
    width: 100%;
    max-width: 50%;
    padding: 100px 0 0;
}

.how-right .how-right-inner {
    display: flex;
    width: 100%;
    background: url('../images/bg_clud_left.svg') no-repeat left -150px bottom -150px;
}

.how-right img {
    margin-left: -50px;
}

.how-left {
    padding: 115px 115px 50px 115px;
    position: relative;
}

.how-left .top {
    position: relative;
}

.how-left .top:before {
    content: "";
    width: 3px;
    height: 62%;
    position: absolute;
    top: 20px;
    left: -54px;
    background: #fff;
}

.how-left .top ul:before {
    content: "";
    width: 3px;
    height: 20%;
    position: absolute;
    top: 20px;
    left: -54px;
    background: #30AC62;
}

.how-left .top ul li {
    background: #FFFFFF;
    border: 1px solid #EDF5F0;
    border-radius: 20px;
    padding: 25px;
    font-size: 20px;
    line-height: 27px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.how-left .top ul li:before {
    content: "";
    position: absolute;
    left: -86px;
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 8px solid #EDF5F0;
    background: #fff;
    top: 50%;
    transform: translateY(-50%);
}

.how-left .top ul li:first-child:before {
    background: #30AC62 url('../images/icon_one.svg') no-repeat center;
    border-color: #D5EEDF;
}

.how-left .top ul li:nth-child(2n):before {
    width: 50px;
    height: 50px;
    border: none;
    margin: 8px;
    background: #fff url('../images/icon_two.svg') no-repeat center;
}

.how-left .top ul li:last-child:before {
    width: 50px;
    height: 50px;
    border: none;
    margin: 8px;
    background: #fff url('../images/icon_three.svg') no-repeat center;
}

.how-left .bottom {
    padding-top: 20px;
}

.how-left .bottom ul {
    display: flex;
    justify-content: space-between;
}

.how-left .bottom ul li {
    font-size: 16px;
    line-height: 22px;
    padding-left: 30px;
    background: url(../images/check.svg) no-repeat center left;
}

.how-left .button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.how-left .button svg {
    position: absolute;
    right: 30px;
}

.how-top-block {
    text-align: center;
    max-width: 500px;
    margin: auto;
}

.how-top-block h4 {
    max-width: fit-content;
    background: #fff;
    background-size: 22px 17px;
    letter-spacing: 2.4px;
    font-size: 12px;
    line-height: 14px;
    padding: 15px 20px;
    border-radius: 29px;
    font-weight: bold;
    margin: auto;
}

.how-top-block h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: bold;
    margin: 40px 0 100px;
    letter-spacing: -1.2px;
}

.bottom-section {
    width: 100%;
    background: url('../images/bg_before_footer.png') no-repeat center;
    background-size: cover;
}

.bottom-section-inner {
    width: 100%;
    margin: auto;
    max-width: 1360px;
    padding: 150px 0;
}

.bottom-section-inner .sign-top {
    text-align: center;
}

.bottom-section-inner .sign-top .icon-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px;
    width: 89px;
    height: 89px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 20px #1B3F690D;
    border: 1px solid #38D6AC;
    border-radius: 100%;
}

.bottom-section-inner .sign-top .icon-top img {
    display: block;
    max-width: 35px;
}

.bottom-section-inner .sign-top h3 {
    font-size: 44px;
    line-height: 54px;
    color: #fff;
    margin: 0 auto 50px;
    font-weight: 800;
}

.bottom-section-inner .sign-top h4 {
    max-width: fit-content;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    color: #fff;
    padding: 27px 45px;
    border-radius: 42px;
    background: #39D6AC;
    margin: 0 auto 50px;
}

.sign-middle ul {
    display: flex;
    justify-content: space-between;
}

.sign-middle ul li {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #1B3F691A;
    border-radius: 20px;
    padding: 40px;
    max-width: 325px;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
}

.sign-middle ul li img {
    max-width: 40px;
    margin-bottom: 30px;
}

.sign-middle ul li strong {
    font-weight: bold;
}

.travel-smarter {
    width: 100%;
    padding: 100px 0 150px;
    background: url(../images/bg_plane.png) no-repeat center top 50px;
}

.travel-smarter-inner {
    width: 100%;
    margin: auto;
    max-width: 1360px;
    display: flex;
    justify-content: space-between;
}

.travel-smarter-inner .travel-smarter-left {
    width: 100%;
    max-width: 785px;
}

.travel-smarter-inner .travel-smarter-right {
    width: 100%;
    max-width: 555px;
}

.travel-smarter-inner .travel-smarter-right {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #1B3F691A;
    border-radius: 40px;
    padding: 60px;
    font-size: 26px;
    line-height: 36px;
}

.travel-smarter-inner .travel-smarter-right .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 20px #1B3F690D;
    border: 1px solid #38D6AC;
    width: 89px;
    height: 89px;
    border-radius: 100%;
    margin-bottom: 60px;
}

.travel-smarter-inner .travel-smarter-right .icon img {
    max-width: 40px;
}

.travel-smarter-inner .travel-smarter-right h3 {
    font-size: 60px;
    line-height: 65px;
    font-weight: 800;
    color: #1B3F69;
    margin: 0 0 20px;
}

.travel-smarter-inner .travel-smarter-right p {
    margin-bottom: 60px;
}

.travel-smarter-inner .travel-smarter-right ul {
    margin-bottom: 50px;
}

.travel-smarter-inner .travel-smarter-right ul li {
    font-size: 20px;
    line-height: 34px;
    background: url('../images/check.png') no-repeat left top;
    background-size: 30px;
    padding-left: 44px;
    margin-bottom: 16px;
}

.travel-smarter-inner .travel-smarter-left {
    border-radius: 40px;
    background-color: #1B3F69 !important;
    display: flex;
    align-items: center;
}

.travel-smarter-inner .travel-smarter-left img {}

.buttons {
    display: flex;
}

.buttons .icon img {
    width: 35px;
}

.buttons .button {
    font-size: 24px;
    line-height: 29px;
    padding: 30px 30px;
    border-radius: 20px;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.what-you-get {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 80px;
    background-size: auto 100%;
	overflow: hidden;
}

.what-you-get-inner {
    width: 100%;
    max-width: 1360px;
    margin: auto;
}

.what-you-get-top {
    width: 100%;
    text-align: center;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 100px;
}

.what-you-get-top h3 {
    font-weight: 800;
    font-size: 44px;
    line-height: 54px;
    color: #1B3F69;
    margin: 0 auto 0;
    max-width: 800px;
}

.pricing {
    width: 100%;
    padding: 100px 0 150px;
    background: url('../images/bg_pricing.png') no-repeat center top 150px;
}

.pricing-inner {
    max-width: 1130px;
    margin: auto;
    width: 100%;
}

.pricing-title {
    text-align: center;
    font-size: 22px;
    line-height: 34px;
    color: #1B3F69;
    margin-bottom: 100px;
}

.pricing-title h3 {
    color: #1B3F69;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: 0.44px;
    font-weight: 900;
    max-width: 530px;
    margin: 0 auto 20px;
}

.lang-ro .pricing-title h3 {
	max-width: 830px;
}

.pricing-title p {
    margin: 0;
}

.pricing-content {
    display: flex;
    justify-content: space-between;
}

.pricing-content .pricing-box {
    max-width: 555px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 20px 80px #1B3F690D;
    border-radius: 40px;
    padding: 40px;
}

.pricing-content .pricing-box .pricing-box-top {
    display: flex;
    align-items: start;
    min-height: 130px;
	position: relative;
}

.pricing-content .pricing-box .pricing-box-top .info {
	position: absolute;
	top: 0;
	right: 0;
	background: url('../images/info-icon.svg') no-repeat center;
	background-size: cover;
	width: 31px;
	height: 31px;
	display: block;
}

.pricing-box-icon {
    max-width: 70px;
}

.picing-box-title {
    margin-left: 20px;
    font-size: 18px;
    line-height: 26px;
    color: #3B5A7E;
}

.picing-box-title h3 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 900;
    margin: 10px 0;
    color: #1B3F69;
}

.picing-box-title p {
    margin: 0;
}

.pricing-box-middle {
    border: 2px solid #38D6AC;
    border-radius: 10px;
    margin-bottom: 30px;
}

.pricing-box-middle .price {
    text-align: center;
    position: relative;
}

.pricing-box-middle .price .price-price {
    display: flex;
    align-items: end;
    justify-content: center;
    color: #1B3F69;
    font-size: 20px;
    line-height: 30px;
    padding: 20px 0 28px;
}

.pricing-box-middle .price .price-price .special-price {
    color: #1B3F69;
    font-weight: 900;
    font-size: 36px;
    line-height: 44px;
    margin-right: 10px;
}

.pricing-box-middle .price .price-price .regular-price {
    text-decoration: line-through;
    font-size: 20px;
    line-height: 28px;
    margin-right: 10px;
}

.pricing-box-middle .price .price-note {
    position: absolute;
    background: #fff;
    font-size: 14px;
    line-height: 17px;
    color: #3B5A7E;
    bottom: -8px;
    left: 0;
    right: 0;
    margin: auto;
    max-width: fit-content;
    padding: 0 5px;
}

.pricing-box-bottom {
    font-size: 16px;
    line-height: 26px;
    color: #3B5A7E;
    margin-bottom: 40px;
    min-height: 170px;
}

.lang-ro .pricing-box-bottom {
	min-height: 195px;
}

.pricing-box-bottom strong {
    font-weight: 700;
}

.pricing-box-bottom ul li {
    margin-bottom: 13px;
    background: url('../images/check_small.svg') no-repeat top 2px left;
    padding-left: 30px;
}

.pricing-box-bottom ul li:last-child {
    margin-bottom: 0;
}

.pricing-button a.button {
    align-items: center;
    justify-content: center;
}

.pricing-bottom-note {
    margin-top: 50px;
    border: 1px solid #1B3F691A;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.pricing-bottom-note-left {
    max-width: 710px;
    font-size: 16px;
    line-height: 21px;
    color: #3B5A7E;
}

.pricing-bottom-note-left strong {
    display: block;
    margin-bottom: 13px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 900;
}

.pricing-bottom-note-right .button.empty {
    color: #1B3F69;
    border: 2px solid #38D6AC;
    background: none;
	padding-left: 35px;
	padding-right: 35px;
}

.pricing-bottom-note-right .button.empty:hover {
    border: 2px solid #0ACBC5;
    color: #1B3F69;
}

#site-footer {
    background: #fff;
    padding: 100px 0 50px;
}

#site-footer .logo {
    margin-bottom: 52px;
}

#site-footer .footer-top {
    margin-bottom: 70px;
}

#site-footer .footer-socials ul {
    display: flex;
    padding-top: 20px;
}

#site-footer .footer-socials ul li {
    margin-right: 20px;
}

#site-footer .footer-socials ul li a {
    width: 20px;
    height: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
    border-radius: 100%;
}

#site-footer .section-inner {
    max-width: 1360px;
    width: 100%;
    margin: auto;
}

#site-footer .section-inner .boxes {
    display: flex;
    justify-content: space-between;
}

#site-footer .section-inner .boxes .box {
    width: 100%;
    max-width: 316px;
    font-size: 16px;
    line-height: 26px;
    color: #3B5A7E;
}

#site-footer .section-inner .boxes .box a {
    color: #3B5A7E;
}

#site-footer .section-inner .boxes .box a:hover {
    color: #1D1D1B;
}

#site-footer .section-inner .boxes .box h3 {
    color: #1B3F69;
    display: block;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
}

#site-footer .section-inner .boxes ul li {
    margin-bottom: 0;
}

#site-footer .section-inner .boxes .box p {
    margin-bottom: 21px;
}

#site-footer .section-inner .boxes .box p:last-child {
    margin-bottom: 0;
}

#site-footer .section-inner .boxes .box.box-four p {
    font-size: 16px;
    line-height: 26px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    line-height: 26px;
    color: #3B5A7E;
    border-top: 1px solid #F6F8F9;
    padding-top: 49px;
}

.footer-bottom-content a.to-top {
    border: 1px solid #EDF5F0;
    border-radius: 15px;
    padding: 17px;
}

.footer-bottom-content a.to-top:hover {
    background: #FBFBFB;
}

.mobile-top {
    display: none;
}

.primary-menu-wrapper a.button {
    display: none;
}

.hero .hero-content ul.mobile {
    display: none;
}

.hero .hero-content ul.desktop {
    display: flex;
}

.popup {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF url('../images/bg_popup.png') no-repeat center;
    opacity: 1;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.popup.is-visible {
    display: block;
}

.popup .popup-close {
    position: absolute;
    top: -35px;
    right: -35px;
    cursor: pointer;
    border-radius: 100%;
    background: #fff;
    width: 73px;
    height: 73px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-inner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1B3F69;
    border-radius: 40px;
    width: 100%;
    max-width: 1219px;
    display: block;
    margin: auto;
    left: 0;
    right: 0;
}

.popup-inner .popup_bg.poupbg_mobile {
    display: none;
}

.popup-inner .popup_bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.popup-inner-boxes {
    padding: 80px;
    display: flex;
    position: relative;
    z-index: 1;
}

.popup-left,
.popup-right {
    width: 100%;
    max-width: 50%;
}

.popup-left img {
    max-width: 70px;
    margin: 0 0 50px;
}

.popup-left h2 {
    font-size: 56px;
    line-height: 61px;
    font-weight: normal;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -0.56px;
}

.popup-left h2 strong {
    font-weight: 900;
}

.popup-left h3 {
    font-size: 30px;
    line-height: 40px;
    color: #fff;
    font-weight: normal;
    margin-bottom: 45px;
}

.popup-left h3 strong {
    font-weight: 900;
    color: #39D6AC;
}

.popup-left .button {
    max-width: fit-content;
}

.error-404 {
    height: 80dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-404 h1 {
    font-size: 150px;
    line-height: 150px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #39D6AC;
}

.error-404 h2 {
    margin: 0 0 40px;
    font-weight: bold;
    font-size: 70px;
    line-height: 80px;
}

.steps {
    width: 100%;
    padding: 120px 20px 80px;
}

.step-block-number {
	margin-right: 20px;
}

.steps-inner {
    width: 100%;
    max-width: 1360px;
    margin: auto;
}

.steps-right:after {
    content: "";
    background: url(../images/bg_cards.png) no-repeat center;
    background-size: 146% auto;
    width: 1000px;
    height: 495px;
    position: absolute;
    bottom: -33%;
    right: -143px;
}

.steps-title {
    margin-bottom: 100px;
}

.steps-title h3 {
    text-align: center;
    font-size: 44px;
    line-height: 54px;
    font-weight: 900;
    color: #1B3F69;
    max-width: 565px;
    margin: auto;
    letter-spacing: -0.5px;
}

.steps-block {
    display: flex;
    justify-content: space-between;
}

.steps-block .steps-left {
    width: 100%;
    max-width: 555px;
    position: relative;
}

.steps-block .steps-left .scroller {
    content: "";
    height: 82%;
    width: 3px;
    background: #B8EBE0;
    position: absolute;
    z-index: 1;
    top: 25px;
    left: 46px;
}

.steps-block .steps-left .scroller-inner {
    background: #39D6AC;
}

.steps .steps-left {
    position: relative;
}

.steps-right .step-image-holder {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
}

.steps-right .step-image-holder.active {
    opacity: 1;
    transform: none;
}


.steps-left .step-block.active .step-block-number-inner {
    background: #111;
    color: #fff;
}

/* .steps-left .step-block.current { outline:2px solid #111; outline-offset:2px; }
 */

.steps {
    --pin-top: 12vh;
}

/* koliko od vrha viewporta stoji pin */
.steps .steps-block {
    position: static;
}

/* default */
.steps .steps-block.is-sticky {
    position: sticky;
    top: var(--pin-top);
    z-index: 3;
}

html.sequence-locked,
body.sequence-locked {
    overscroll-behavior: none;
}


.steps-block .steps-left .step-block {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    align-items: start;
}

.steps-block .steps-left .step-block:last-child {
    margin-bottom: 0;
}

.steps-block .steps-left .step-block .step-block-content {
    background: #FFFFFF;
    border: 1px solid #1B3F691A;
    border-radius: 20px;
    padding: 30px;
    font-size: 16px;
    line-height: 21px;
    max-width: 440px;
    width: 100%;
}

.steps-block .steps-left .step-block .step-block-content h3 {
    font-size: 22px;
    line-height: 30px;
    color: #1B3F69;
    font-weight: 900;
    margin-bottom: 7px;
}

.steps-block .steps-left .step-block.active .step-block-number-inner {
    background: #39D6AC;
    color: #fff;
}

.steps-block .steps-left .step-block.active .step-block-number:after {
    opacity: 1;
}

.steps-block .steps-left .step-block.active .step-block-content h3 {
    color: #39D6AC;
}

.step-block-number {
    position: relative;
    padding: 21px;
}

.step-block-number:after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 20px;
    opacity: 0.3;
}

.step-block-number-inner {
    width: 51px;
    height: 51px;
    font-size: 28px;
    line-height: 30px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #39D6AC;
    border-radius: 10px;
    color: #39D6AC;
    position: relative;
    z-index: 1;
    background: #F7F8F9;
}

.steps-right {
    width: 100%;
    max-width: 715px;
    position: relative;
}

.steps-right .step-image-holder {
    background: #F5F6F8;
    box-shadow: 0px 20px 80px #1B3F690D;
    border-radius: 40px;
    width: 100%;
    height: 100%;
}

.steps-right .step-image-holder .step-image {
    width: 100%;
    height: 100%;
    background-size: 100% !important;
}

.steps-right .step-image-holder {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.steps-right .step-image-holder.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    overflow: hidden;
}

.mobile-switcher {
    display: none;
}

.lang-bg .travel-smarter-inner .travel-smarter-right h3 {
	font-size: 40px;
	line-height: 50px;
}

.lang-bg .pricing-box-bottom,
.lang-nl .pricing-box-bottom {
	min-height: 195px;
}

.lang-bg .pricing-title h3,
.lang-nl .pricing-title h3,
.lang-fr .pricing-title h3,
.lang-it .pricing-title h3,
.lang-es .pricing-title h3,
.lang-lt .pricing-title h3 {
	max-width: 730px;
}

.lang-bg .what-you-get-top h3,
.lang-fr .what-you-get-top h3, 
.lang-it .what-you-get-top h3,
.lang-es .what-you-get-top h3,
.lang-lt .what-you-get-top h3 {
	max-width: 1100px;
}

.lang-bg .hero .hero-content .hero-icons ul li {
	font-size: 16px;
}

.lang-es .hero .hero-content .hero-icons ul li,
.lang-lt .hero .hero-content .hero-icons ul li {
	font-size: 16px;
}

.lang-nl .travel-smarter-inner .travel-smarter-right h3,
.lang-es .travel-smarter-inner .travel-smarter-right h3 {
	font-size: 53px;
}

.lang-nl .steps-title h3,
.lang-fr .steps-title h3,
.lang-it .steps-title h3,
.lang-lt .steps-title h3 {
	max-width: 690px;
}

.lang-nl .slider-pagination .pager span,
.lang-lt .slider-pagination .pager span {
	font-size: 17px;
}

.lang-es .slider-pagination .pager span {
	font-size: 16px;
}

.lang-it .slider-pagination .pager span {
	font-size: 15px;
}

.lang-fr .hero .hero-content h1 {
	font-size: 52px;
}

.lang-fr .hero .hero-content h3 {
	font-size: 20px;
}

.lang-fr .slider-pagination .pager span {
	font-size: 19px;
}

.lang-fr .steps-block .steps-left .scroller,
.lang-nl .steps-block .steps-left .scroller,
.lang-bg .steps-block .steps-left .scroller,
.lang-lt .steps-block .steps-left .scroller,
.lang-es .steps-block .steps-left .scroller {
	height: 80%;
}

.lang-ro .steps-block .steps-left .scroller {
	height: 75%;
}

@media screen and (max-width: 1370px) and (min-width: 940px) {
    .hero {
        width: calc(100% - 64px);
    }

    .flight-delayed,
    .how-it-works,
    .flights-problem-top {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .flight-delayed-left,
    .flight-delayed-right {
        max-width: 49%;
    }

    .testimonials-inner h4,
    .testimonials-inner h2 {
        margin-left: 20px;
    }

    .how-left .bottom ul {
        display: block;
    }

    .how-left .bottom ul li {
        display: inline-block;
        margin-bottom: 10px;
    }


    .how-top-block h4 {
        display: none;
    }

    .how-top-block h2 {
        font-size: 32px;
        line-height: 38px;
        margin-top: 0;
    }

    .how-central-block {
        background: none;
    }

    .how-right,
    .how-left {
        width: 100%;
        max-width: 100%;
        padding: 20px 20px;
    }

    .how-left {
        padding: 20px 20px 20px 100px;
    }

    .how-left .bottom {
        margin-left: -80px;
    }

    .how-left .bottom ul {
        display: block;
        text-align: center;
    }

    .how-left .button {
        margin-left: -80px;
    }

    .how-left .bottom ul li {
        display: inline-block;
        margin-bottom: 10px;
    }

    .how-right {
        padding: 100px 0 0;
        margin: 0 20px;
        width: calc(100% - 40px);
        background: url('../images/bg_delayed_two.svg') no-repeat left top;
        background-size: cover;
        border-radius: 30px;
    }

    .how-right .how-right-inner {
        border-radius: 30px;
        background: url('../images/bg_clud_left.svg') no-repeat left -1px bottom -50px;
        background-size: 100%;
    }

    .how-right img {
        margin-left: -10px;
    }

    .how-left .top ul li {
        font-size: 18px;
        line-height: 28px;
    }
}

@media screen and (max-width: 1366px) and (min-width: 1024px) {
	#site-header {
		padding-left: 20px;
		padding-right: 20px;
	}
	
    .testimonials {
        padding-left: 20px;
        padding-right: 20px;
    }

    .middle-arrow {
        display: none;
    }

    .hero .hero-content,
    .hero .hero-image {
        max-width: 49%;
    }

    .hero .hero-content .hero-text {
        padding: 40px;
        min-height: inherit;
    }

    .hero .hero-content ul {
        display: block;
    }

    .hero .hero-content .hero-icons ul li {
        display: inline-block;
        margin: 0 10px 10px 0;
		font-size: 16px;
    }

	.steps-block .steps-left .scroller {
		height: 75%;
	}
	
    .hero .hero-content .hero-icons ul li:last-child {
        margin-bottom: 0;
    }

    .hero .hero-content .hero-icons ul li * {
        display: inline-block;
        vertical-align: middle;
    }

    .hero .hero-content h1 {
        font-size: 32px;
        line-height: 43px;
        letter-spacing: -0.96px;
    }

    .travel-smarter {
        padding-left: 20px;
        padding-right: 20px;
    }

    .travel-smarter-inner {
        flex-direction: row;
    }

    .travel-smarter-inner .travel-smarter-left,
    .travel-smarter-inner .travel-smarter-right {
        max-width: 49%;
    }

    .slider-container {
        padding-left: 6vw;
    }

    .pricing {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pricing-content .pricing-box {
        max-width: 49%;
    }

    .steps-block .steps-left {
        max-width: 40%;
    }

    .steps-block .steps-right {
        max-width: 55%;
    }

    .hero .hero-content h1 strong {
        font-size: 57px;
        line-height: 78px;
        letter-spacing: -1.71px;
        max-width: fit-content;
    }

    .hero .hero-content h1 strong:after {
        height: 10px;
        bottom: 4px;
    }

    .hero .hero-content .hero-text {
        font-size: 16px;
        line-height: 28px;
        max-width: 100%;
    }

    .hero .hero-content p {
        margin-bottom: 30px;
    }

    .hero .hero-content h2 {
        font-size: 19px;
        line-height: 28px;
    }

    .hero .hero-content {
        position: relative;
        top: 0;
        transform: translateY(0);
        width: 100%;
    }

    .testimonials {
        padding-bottom: 100px;
        background-position: right center;
        margin-top: 0;
    }

    .testimonials-inner {
        /*width: calc(100% - 40px);*/
    }

    .testimonials-inner .testimonials-stars {
        margin-bottom: 30px;
    }

    .testimonial-author {
        font-size: 14px;
        padding-top: 30px;
    }

    .testimonials-inner ul {
        white-space: nowrap;
        overflow: auto;
    }

    .testimonials-inner ul li {
        max-width: calc(100% - 40px);
        margin-right: 20px;
        padding: 40px 30px;
    }

    .testimonials-inner ul li:first-child {
        margin-left: 20px;
    }

    .testimonials-inner ul li h3 {
        font-size: 22px;
        line-height: 32px;
    }

    .testimonials-inner .testimonials-stars ul li:first-child {
        margin-left: 0;
    }

    .testimonial-author {
        font-size;
        16px;
    }

    .testimonial-figure {
        width: 35vw;
        white-space: normal;
    }

    .testimonials-inner h2 {
        font-size: 28px;
        line-height: 33px;
        margin: 0 20px 50px;
        padding: 0 20px;
    }

    .testimonials-inner .testimonial-content p {
        font-size: 16px;
        line-height: 26px;
    }

    .testimonials-inner h4 {
        display: none;
    }

    .flight-delayed {
        margin: 88px auto 100px;
    }

    .flight-delayed-inner {
        width: 100%;
    }

    .flight-delayed-left,
    .flight-delayed-right {
        max-width: 49%;
        display: block;
    }

    .flight-delayed-left {
        order: 2;
        padding: 40px 30px;
        font-size: 18px;
        line-height: 28px;
    }

    .flight-delayed-left h3 {
        font-size: 32px;
        line-height: 42px;
    }

    .flight-delayed-left p {
        margin-bottom: 50px;
    }

    .flight-delayed-left .note {
        font-size: 14px;
        line-height: 19px;
    }

    .flight-delayed-right {
        order: 1;
        display: flex;
        align-items: end;
    }

    .flight-delayed-right-inner {
        background: url(../images/cloud_delayed.svg) no-repeat bottom -73px right -20px;
        background-size: 100%;
    }

    .flight-delayed-right img {
        margin: -40px -10px 0 auto;
    }

    #site-footer .section-inner {
        width: 95%;
    }

    .how-right {
        align-items: end;
        display: flex;
    }
	
    .travel-smarter-inner .travel-smarter-right h3 {
        font-size: 45px;
        line-height: 50px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 940px) {
    #site-header {
        padding: 16px 20px 10px;
    }

    #site-header .header-inner {
        border-radius: 10px;
    }

    .left-navigation .logo svg {
        width: 130px;
    }

    .header-footer-group .header-inner {
        padding: 18px;
        background: #fff;
    }

    .mobile-buttons-holder {
        display: block;
    }

    .mobile-buttons-holder .mobile-opener span {
        font-size: 10px;
        color: #fff;
        line-height: 10px;
    }

    .mobile-holder {
        background-size: cover;
        border-radius: 20px;
        min-height: 77dvh;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        padding-bottom: 10dvh;
        z-index: 9;
        background: #fff;
    }

    .top-mobile-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 20px 0;
        flex-direction: column;
    }

    .closer {
        position: absolute;
        top: 40px;
        right: 40px;
    }

    .primary-menu-wrapper {
        display: none;
        position: fixed;
        top: -18px;
        right: -18px;
        width: 100vw;
        height: 100dvh;
        z-index: 999;
        background: #fff;
        background-size: cover;
        transform: translateX(100%);
        transition: transform .3s ease;
        will-change: transform;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        pointer-events: none;
        padding: 20px;
    }

    .primary-menu-wrapper .right-menu {
        display: block;
        position: absolute;
        bottom: 20px;
        max-width: 80vw;
        margin: auto;
        left: 0;
        right: 0;
        text-align: center;
    }

    .primary-menu-wrapper .right-menu li.button a {
        background: #fff;
        color: #FF3C00 !important;
        padding: 13px !important;
    }

    .primary-menu-wrapper .right-menu li .top-mobile-nav {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid rgba(33, 33, 33, 0.1);
    }

    .top-mobile-nav a.logo {
        max-width: 170px;
        margin-top: 40px;
    }

    .primary-menu-wrapper.active {
        display: flex;
        flex-direction: column;
        transform: translateX(0);
        pointer-events: auto;
        opacity: 1;
        background: #f7f7f7 url('../images/bg_mobile_menu.png') no-repeat top 32dvh center;
        background-size: auto 100%;
    }

    .header-inner .primary-menu-wrapper ul {
        flex-direction: column;
        margin: 20px;
        font-size: 24px;
        line-height: 33px;
        text-align: left;
        align-items: center;
    }

    .header-inner .primary-menu-wrapper ul li {
        margin: 0 0 34px;
    }

    #site-header .primary-menu-wrapper a.button {
        display: block;
        margin: 20px 0px 0;
        text-align: center;
        width: 100%;
    }

    .header-inner .primary-menu-wrapper ul li a {
        font-size: 24px;
        line-height: 29px;
        color: #1B3F69;
        font-weight: 600;
    }

    .hero {
        background: none !important;
    }

    .hero-icons {
        background: #FFFFFF 0% 0% no-repeat padding-box;
        border-radius: 20px 0 0 20px;
        padding: 20px 30px;
        width: calc(100% + 20px);
        overflow: auto;
    }

    .hero .hero-content .hero-icons ul {
        display: flex;
    }

    .hero .hero-content .hero-icons ul li,
    .hero .hero-content .hero-icons ul li:last-child {
        margin-right: 20px;
    }

    .hero .hero-content h1 {
        font-size: 32px;
        line-height: 35px;
        margin-bottom: 10px;
    }

    .hero .hero-content .hero-text {
        font-size: 16px;
        line-height: 28px;
        max-width: 100%;
        padding: 30px 20px;
        border-radius: 20px;
        min-height: auto;
    }

    .hero .hero-content h3 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .hero .hero-content p.note {
        font-size: 15px;
        line-height: 19px;
    }

    .hero .hero-content a.button {
        font-size: 14px;
        line-height: 17px;
        padding: 15px;
    }

    .hero .hero-content .icon {
        max-width: 39px;
        margin-bottom: 20px;
    }

    .hero .hero-content p {
        margin-bottom: 15px;
    }

    .hero .hero-content h2 {
        font-size: 19px;
        line-height: 28px;
    }

    .hero .hero-content {
        position: relative;
        top: 0;
        transform: translateY(0);
        width: 100%;
        order: 2;
        max-width: 100%;
    }

    .hero-inner {
        flex-direction: column;
    }

    .hero .hero-image {
        max-width: 100%;
        order: 1;
        background: #fff;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .hero .hero-image img {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero .hero-image img.img-mobile {
        display: block;
        margin-left: auto;
        width: calc(100% + 24px);
        max-width: calc(100% + 24px);
    }

    .hero .hero-image img.img-desktop {
        display: none;
    }

    .middle-arrow {
        display: none;
    }

    .hero {
        width: calc(100% - 40px);
        margin: 98px auto 0;
        padding: 0;
    }

    .hero .hero-content ul {
        display: block;
    }

    .hero .hero-content ul.mobile {
        display: block;
    }

    .hero .hero-content ul.mobile li {
        font-weight: 400;
        margin-right: 6px;
        padding-left: 25px;
        font-size: 14px;
    }

    .hero .hero-content ul.mobile li:last-child {
        background: url('../images/check.svg') no-repeat center left;
    }

    .hero .hero-content ul.desktop {
        display: none;
    }

    .hero .hero-content ul li {
        display: inline-block;
        margin-bottom: 10px;
    }

    .mobile-top {
        width: 100%;
        margin: 0 0 30px;
        display: block;
        border-radius: 30px;
    }

    .flights-problem {
        padding: 0 20px;
        background: url(../images/bg_testimonial.png) no-repeat top left;
        background-size: 200% auto;
        margin-bottom: 130px;
        margin-top: 150px;
    }

    .flights-problem-top {
        text-align: center;
        font-size: 18px;
        line-height: 28px;
    }

    .flights-problem-top img {
        display: inline-block;
    }

    .flights-problem-top h3 {
        font-size: 32px;
        line-height: 38px;
        margin-left: auto;
        margin-right: auto;
    }

    .icon-holder {
        width: 52px;
        height: 52px;
        border-radius: 15px;
    }

    .icon-holder img {
        width: 25px;
    }

    .slider-pagination .pager {
        width: auto;
        height: auto;
        padding: 5px;
        margin: 0 5px;
        border-radius: 15px;
    }

    .slider-pagination .pager span {
        display: none;
    }

    .what-you-get-top {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 0;
    }

    .what-you-get-top h3 {
        font-size: 28px;
        line-height: 40px;
        margin: 0 auto 10px;
    }

    .what-you-get {
        padding: 150px 20px 50px;
        overflow: hidden;
        background-size: 100% auto;
    }

    .slider-container {
        padding-left: 0;
    }

    .slide {
        flex: 0 0 310px;
        margin: 0 10px 0 0;
        padding: 30px;
        border-radius: 20px;
    }

    .steps-block .steps-left .scroller {
        height: 75%;
        top: 25px;
        left: 38px;
    }

    .flight-icon {
        width: 30px;
        height: 30px;
        margin: 0 0 30px;
    }

    .flight-icon svg {
        width: 32px;
        height: 32px;
    }

    .slide-content {
        font-size: 16px;
        line-height: 26px;
    }

    .slide-content h3 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 10px;
    }
	
	.slider-arrows {
		display: block;
		top: 62%;
	}

	.slider-arrow.prev {
		left: 0;
	}
	
	.slider-arrow {
		display: block;
	}
	
    .how-top-block h4 {
        display: none;
    }

    .how-top-block h2 {
        font-size: 32px;
        line-height: 38px;
        margin-top: 0;
    }

    .how-central-block {
        flex-direction: column;
        background: none;
    }

    .how-right,
    .how-left {
        width: 100%;
        max-width: 100%;
        padding: 20px 20px;
    }

    .how-left {
        padding: 20px 20px 20px 100px;
    }

    .how-left .bottom {
        margin-left: -80px;
    }

    .how-left .bottom ul {
        display: block;
        text-align: center;
    }

    .how-left .button {
        margin-left: -80px;
    }

    .how-left .bottom ul li {
        display: inline-block;
        margin-bottom: 10px;
        padding-left: 25px;
        margin-right: 5px;
        font-size: 14px;
    }

    .how-right {
        padding: 100px 0 0;
        margin: 0 20px;
        width: calc(100% - 40px);
        background: url('../images/bg_delayed_two.svg') no-repeat left top;
        background-size: cover;
        border-radius: 30px;
    }

    .how-right .how-right-inner {
        border-radius: 30px;
        background: url('../images/bg_clud_left.svg') no-repeat left -1px bottom -50px;
        background-size: 100%;
    }

    .how-right img {
        margin-left: -10px;
    }

    .how-left .top ul li {
        font-size: 18px;
        line-height: 28px;
    }

    .testimonials {
        padding-bottom: 0;
        background-position: right center;
        margin-top: 0;
    }

    .testimonials-inner {
        /*width: calc(100% - 40px);*/
    }

    .testimonials-inner ul {
        white-space: nowrap;
        overflow: auto;
    }

    .testimonials-inner ul li {
        max-width: calc(100% - 40px);
        margin-right: 20px;
        padding: 40px 30px;
    }

    .testimonials-inner ul li:first-child {
        margin-left: 20px;
    }

    .testimonials-inner ul li h3 {
        font-size: 22px;
        line-height: 32px;
    }

    .testimonials-inner .testimonials-stars ul li:first-child {
        margin-left: 0;
    }

    .testimonial-author {
        font-size;
        16px;
    }

    .testimonial-figure {
        width: 60vw;
        white-space: normal;
    }

    .testimonials-inner h2 {
        font-size: 28px;
        line-height: 33px;
        margin: 0 20px 50px;
        padding: 0;
    }

    .testimonials-inner h4 {
        display: none;
    }

    .steps {
        padding: 80px 20px 50px;
        overflow: hidden;
    }

    .steps-right .step-image-holder {
        border-radius: 20px;
    }

    .steps-title {
        margin-bottom: 50px;
    }

    .steps-title h3 {
        font-size: 28px;
        line-height: 33px;
    }

    .steps-block {
        flex-direction: column;
        align-items: center;
    }

    .steps-left {
        max-width: 715px;
    }

    .steps-right {
        min-height: 56dvh;
        margin-top: 20px;
    }

    .step-block-number {
        padding: 14px;
        margin-right: 20px;
    }

    .steps-block .steps-left .step-block .step-block-content {
        padding: 20px;
    }

    .steps-block .steps-left .step-block .step-block-content h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .mobile-switcher {
        display: flex;
        background: #FFFFFF 0% 0% no-repeat padding-box;
        box-shadow: 0px 5px 20px #1B3F690D;
        border-radius: 10px;
        padding: 3px;
        max-width: fit-content;
        margin: 0 auto 40px;
    }

    .mobile-switcher .button {
        width: 90px;
        font-size: 14px;
        line-height: 32px;
        background: none;
        color: #1B3F69;
        text-align: center;
    }

    .mobile-switcher .button.active {
        background: #38D6AC;
        border-radius: 7px;
        font-weight: 900;
        color: #fff;
    }

    .pricing {
        padding: 50px 20px 100px;
    }

    .pricing-bottom-note {
        flex-direction: column;
        padding: 20px;
    }

    .pricing-bottom-note-left {
        margin-bottom: 30px;
    }

    .pricing-bottom-note-left,
    .pricing-bottom-note-right {
        width: 100%;
        max-width: 100%;
    }

    .pricing-bottom-note-right .button.empty {
        max-width: fit-content;
    }

    .pricing-content {
        flex-direction: column;
        align-items: center;
    }

    .pricing-content .pricing-box {
        border-radius: 20px;
        padding: 30px;
        display: none;
    }

    .pricing-content .pricing-box.active {
        display: block;
    }

    .pricing-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 50px;
    }

    .pricing-title h3 {
        font-size: 28px;
        line-height: 33px;
    }

    .picing-box-title {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 30px;
    }

    .picing-box-title h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .pricing-box-bottom {
        font-size: 16px;
        line-height: 21px;
    }

    .pricing-box-icon {
        max-width: 55px;
    }

    .pricing-box-middle .price .price-price {
        font-size: 18px;
    }

    .pricing-box-middle .price .price-price .regular-price {
        font-size: 18px;
    }

    .pricing-box-middle .price .price-price .special-price {
        font-size: 34px;
    }

    .flight-delayed {
        margin: 88px auto 100px;
        width: 100%;
    }

    .flight-delayed-inner {
        flex-direction: column;
        width: calc(100% - 40px);
        margin: auto;
    }

    .flight-delayed-left,
    .flight-delayed-right {
        max-width: 100%;
    }

    .flight-delayed-left {
        order: 2;
        padding: 40px 30px;
        font-size: 18px;
        line-height: 28px;
    }

    .flight-delayed-left h3 {
        font-size: 32px;
        line-height: 42px;
    }

    .flight-delayed-left p {
        margin-bottom: 50px;
    }

    .flight-delayed-left .note {
        font-size: 14px;
        line-height: 19px;
    }

    .flight-delayed-right {
        order: 1;
        margin-bottom: 20px;
        height: 84dvw;
    }

    .flight-delayed-right-inner {
        background: url(../images/cloud_delayed.svg) no-repeat bottom -73px right -20px;
        background-size: 100%;
    }

    .flight-delayed-right img {
        margin: -40px -10px 0 auto;
    }

    .travel-smarter {
        padding: 150px 20px 100px;
    }

    .travel-smarter-inner {
        flex-direction: column;
        align-items: center;
    }

    .travel-smarter-inner .travel-smarter-right {
        padding: 30px;
        border-radius: 20px;
    }

    .travel-smarter-inner .travel-smarter-left {
        border-radius: 20px;
        margin-bottom: 20px;
        min-height: 40vh;
    }

    .travel-smarter-inner .travel-smarter-right {
        max-width: 785px;
    }

    .travel-smarter-inner .travel-smarter-left img {
        margin-left: 0px;
    }

    .buttons .icon {
        width: 56px;
        height: 56px;
    }

    .buttons .icon img {
        width: 28px;
    }

    .buttons .button {
        font-size: 16px;
        line-height: 19px;
        padding: 18px 21px;
        border-radius: 10px;
    }

    .travel-smarter-inner .travel-smarter-right {
        font-size: 16px;
        line-height: 20px;
    }

    .travel-smarter-inner .travel-smarter-right p {
        margin-bottom: 40px;
    }

    .travel-smarter-inner .travel-smarter-right .icon {
        margin-bottom: 40px;
        width: 56px;
        height: 56px;
    }

    .travel-smarter-inner .travel-smarter-right .icon img {
        width: 23px;
    }

    .travel-smarter-inner .travel-smarter-right h3 {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .travel-smarter-inner .travel-smarter-right ul li {
        background-size: 20px;
        font-size: 16px;
        line-height: 20px;
        padding-left: 30px;
    }

    .bottom-section-inner {
        padding: 50px 20px;
    }

    .bottom-section-inner .sign-top .icon-top {
        width: 60px;
        height: 60px;
        margin-bottom: 30px;
    }

    .bottom-section-inner .sign-top .icon-top img {
        max-width: 28px;
    }

    .bottom-section-inner .sign-top h3 {
        font-size: 28px;
        line-height: 34px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .bottom-section-inner .sign-top h4 {
        font-size: 18px;
        line-height: 26px;
        padding: 20px 24px;
        margin-bottom: 56px;
    }

    .sign-middle ul {
        flex-direction: column;
    }

    .sign-middle ul li {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .sign-middle ul li:last-child {
        margin-bottom: 0;
    }

    #site-header .top-switcher {
        display: none;
    }
	
	
	.primary-menu-wrapper .wpml-flag-dropdown {
		width: 100%;
		display: block!important;
		margin-top: 20px;
	}
	
	.wpml-flag-dropdown .toggle  {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.primary-menu-wrapper .wpml-flag-dropdown li {
		margin: 0!important;
	}
	
	.primary-menu-wrapper .wpml-flag-dropdown li a {
		font-size: 14px!important;
	}

    #site-footer {
        padding: 39px 20px;
    }

    #site-footer .section-inner .boxes {
        flex-direction: column;
    }

    #site-footer .section-inner .boxes .box {
        margin-bottom: 30px;
    }

    #site-footer .footer-top {
        margin-bottom: 0;
    }

    .footer-bottom-content {
        flex-direction: row;
        align-items: center;
        padding-top: 39px;
    }

    .footer-bottom-content a.to-top {
        max-width: fit-content;
        margin-left: auto;
        margin-bottom: 30px;
    }

    .popup {
        overflow: auto;
    }

    .popup-inner {
        position: relative;
        margin: 0 20px;
        width: calc(100% - 40px);
        top: 50%;
        transform: translateY(-50%);
        border-radius: 20px;
        height: auto;
        background: #fff;
    }

    .popup-left img {
        width: 38px;
        margin-bottom: 20px;
    }

    .popup-left h2 {
        font-size: 32px;
        line-height: 35px;
        margin-bottom: 10px;
        color: #1B3F69;
    }

    .popup-left h3 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
        color: #1B3F69;
    }

    .popup-left .button {
        font-size: 14px;
        line-height: 17px;
        padding: 15px;
    }

    .popup-inner .popup_bg.poupbg_desktop {
        display: none;
    }

    .popup-inner .popup_bg.poupbg_mobile {
        display: block;
        position: relative;
        height: 43dvh;
        background-color: #1B3F69 !important;
        border-radius: 20px 20px 0 0;
    }

    .popup .popup-close {
        background: none;
        top: -42px;
        right: -42px;
    }

    .popup-left,
    .popup-right {
        max-width: 100%;
        min-height: 50%;
    }

    .popup-inner-boxes {
        padding: 20px;
        flex-direction: column;
    }
}