/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hidden {
    display: none;
}

html {
    font-size: 10px;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: normal;
    font-style: normal;
    line-height: 1.5;
    color: #3d3d3d;
    background: #fff;
    padding: 7rem 0 0;
    margin: 0;
}

::-moz-selection {
    color: #fff;
    background: var(--blue);
}

::selection {
    color: #fff;
    background: var(--blue);
}

.btn {
    cursor: pointer;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: .025em;
    height: 4.5rem;
    line-height: 4.5rem;
    padding: 0 1.5rem;
    color: #fff;
    background: var(--pink);
    border: none;
    border-radius: 2.5rem;
    text-align: center;
    min-width: 17rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background .4s var(--transition);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 3rem;
    height: 3rem;
    background: url('/new_layout/themes/voyage/img/hearts-logo.svg') no-repeat 50% 50%;
    background-size: contain;
    animation: btnHeart .15s ease-out 1 forwards;
}
.btnInner {
    display: inline-block;
    transform: translate3d(0, 0, 0);
    transition: transform .4s var(--transition);
}

.btn:hover .btnInner {
    transform: translate3d(-1.5rem, 0, 0);
}

.btn:hover::after {
    animation: btnHeartHover .2s ease-in 1 forwards;
}

@keyframes btnHeart {
    0% {
        transform: translate3d(-.5rem, -55%, 0);
    }
    100% {
        transform: translate3d(-.5rem, -200%, 0);
    }
}

@keyframes btnHeartHover {
    0% {
        transform: translate3d(-.5rem, 100%, 0);
    }
    100% {
        transform: translate3d(-.5rem, -55%, 0);
    }
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
}

header::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 1rem;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAAoCAYAAADUgSt0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE5JREFUeNp8j8sJACAMQyO4/3JuY5VaDwVDiodAaF5/DcAIoYcszQo1qfg1M6OV0XwZEGOlcWF4u0YfmAbqHD7+A5v8ZWU7f6rwrpkjwADtEi21ayPLkgAAAABJRU5ErkJggg==") repeat-x 0 0;
    background-size: auto 100%;
    opacity: .1;
}

.header__mobile {
    height: 7rem;
    display: flex;
    align-items: center;
}

.header__mobile .topnav__logo {
    width: 16rem;
    margin: 0 auto 0 2rem;
}

.header__mobile .loginModalTrigger {
    padding: 1.5rem 1rem;
    position: relative;
    cursor: pointer;
    line-height: 1;
    font-size: 0;
}

.mobileNav__login {
    fill: var(--pink);
}

.hamburger__open {
    width: 6rem;
    height: 6rem;
    position: relative;
    cursor: pointer;
}

.hamburger__open::before {
    content: '';
    position: absolute;
    height: 1.3rem;
    width: 2rem;
    border-top: .2rem solid;
    border-bottom: .2rem solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hamburger__open::after {
    content: '';
    position: absolute;
    width: 2.2rem;
    border-top: .2rem solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hamburger__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
}

.hamburger__close::before,
.hamburger__close::after {
    content: '';
    position: absolute;
    height: .3rem;
    width: 2.4rem;
    background: #999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.topbar {
    order: 1;
}

.topbar__inner {
    max-width: 118rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.topbar__links {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.topbar__links li {
    line-height: 1;
}

.topbar__links a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: var(--blue);
    display: inline-block;
    height: 4rem;
    text-decoration: none;
    line-height: 4rem;
    padding: 0 .5rem;
    transition: color .4s var(--transition);
    overflow: hidden;
    vertical-align: top;
}

.topbar__links a:hover {
    color: var(--pink);
}

.topbar__icon {
    fill: var(--blue);
    vertical-align: middle;
    margin: 0 .25rem;
    transition: fill .4s var(--transition);
    position: relative;
}

.topbar__links a:hover .topbar__icon {
    fill: var(--pink)
}

.topbar__lang {
    text-transform: uppercase;
    letter-spacing: .05em;
}

.topbar__links .separator {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
}

.topbar__links .separator::before {
    content: '';
    display: block;
    width: 6rem;
    border-top: .1rem solid #ccc;
    margin: 0 auto;
}

.topnav {
    position: relative;
}

.topnav__inner {
    max-width: 118rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.topnav__logo {
    position: relative;
    width: 20rem;
    transform: translate(0, -.5rem) scale(1);
    transform-origin: left center;
    transition: transform .35s var(--transition);
}

.topnav__logo::before {
    content: '';
    display: block;
    padding: 30.75% 0 0;
}

.topnav__logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.topnav__links {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.topnav__links a,
.topnav__links .loginModalTrigger {
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--blue);
    position: relative;
    text-decoration: none;
    padding: .5rem 1rem;
    display: inline-block;
}

.topnav__links .active {
    color: var(--blue);
}

.topnav__heart {
    position: absolute;
    right: -2.5rem;
    top: 92%;
    transform: translate(-50%, -100%);
    fill: var(--pink);
    opacity: 0;
    transition: transform .4s var(--transition), opacity .4s var(--transition);
}

.topnav__links a:hover .topnav__heart,
.topnav__links .loginModalTrigger:hover .topnav__heart {
    transform: translate(-50%, -125%);
    opacity: 1;
}

.hero {
    position: relative;
    background: var(--pink);
}

.heroSwiper .swiper-wrapper {
    min-height: 30rem;
}

.heroSwiper .swiper-slide {
    height: auto;
    overflow: hidden;
}

.heroSwiper .swiper-slide::before {
    content: '';
    display: block;
    padding: 40% 0 0;
}

.heroSwiper img {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    max-width: none;
    height: 100%;
    transform: translate(-50%, 0);
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    outline: none;
}

.heroSwiper-next::after,
.heroSwiper-prev::after {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    border-right: .5rem solid #fff;
    border-bottom: .5rem solid #fff;
    transform: rotate(-45deg);
}

.heroSwiper-prev::after {
    transform: rotate(135deg);
}

.heroInfo {
    text-align: center;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.heroInfo p {
    background: var(--blue);
    color: #fff;
    border-radius: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    padding: 1rem;
    margin: 0;
    text-shadow: .1rem .1rem rgba(0, 0, 0, .5);
}

.heroInfoButtons {
    position: absolute;
    display: flex;
    flex-direction: column;
    bottom: 100%;
    margin-bottom: 2rem;
    margin-left: -.5rem;
    max-width: calc(100vw - 4rem);
}

.heroInfoButtons .btn--register {
    line-height: 6rem;
    height: 6rem;
    font-size: 1.8rem;
    border-radius: 3rem;
    padding: 0 4rem;
    margin: 0 .5rem 1rem;
}

.heroInfoButtons .loginModalTrigger {
    background: var(--blue);
    flex: 1;
    flex-shrink: 0;
    margin: 0 .5rem 1rem;
}

.heroInfoButtons .login--google {
    display: flex;
    height: 4.5rem;
    line-height: 4.5rem;
    color: var(--blue);
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: .025em;
    white-space: nowrap;
    flex: 1;
    flex-shrink: 0;
    margin: 0 .5rem;
    padding: 0 1rem 0 2rem;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 0 .3rem var(--blue);
    background: #fff;
    border-radius: 30px;
    transition: box-shadow .4s var(--transition), color .4s var(--transition);
}

.heroInfoButtons .login--google img {
    margin: 0 0 0 1rem;
}

.heroInfoButtons .login--google:hover {
    color: var(--pink);
    box-shadow: inset 0 0 0 .3rem var(--pink);
}

.heroInfoButtons .separator {
    width: 100%;
}

.searchForm {
    background: var(--pink);
    padding: 2rem 2rem 4rem;
    text-align: center;
}

.searchFormSelect {
    display: block;
    font-size: 1.6rem;
    font-weight: normal;
    color: #fff;
    line-height: 1.3;
    padding: .6em 1.4em .5em .8em;
    margin: 0 0 2rem;
    width: 100%;
    max-width: 100%;
    border: .1rem solid transparent;
    box-shadow: 0 .1rem 0 .1rem rgba(0, 0, 0, .04);
    border-radius: 2rem;
    background-color: rgba(255, 255, 255, .5);
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right .7em top 50%;
    background-size: .65em auto;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.searchFormSelect::-ms-expand {
    display: none;
}

.searchFormSelect:hover {
    border-color: #fff;
}

.searchFormSelect:focus {
    border-color: #fff;
    box-shadow: 0 0 .1rem .3rem rgba(255, 255, 0, .5);
    color: #fff;
    outline: none;
}

.searchFormSelect option {
    font-weight: normal;
    color: #3d3d3d;
}

.searchForm .btn {
    background: linear-gradient(45deg, var(--blue), var(--darkblue));
    width: 100%;
    padding: 0;
    min-width: 0;
}

.welcome {
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    color: #fff;
    text-align: center;
}

.welcome::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: .7;
    z-index: 0;
}

.welcome img {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.welcome h2 {
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    margin: 0 0 .75em;
    line-height: 1.35;
}

.welcome p {
    position: relative;
    font-size: 1.4rem;
}

.welcome .btn {
    position: relative;
    background: var(--blue);
    margin: 2rem 0;
}

.heart__separator {
    position: relative;
    display: block;
    line-height: 1;
    font-size: 0;
    margin: 1.5rem auto;
    width: 100%;
    text-align: center;
}

.heart__separator::before,
.heart__separator::after {
    content: '';
    position: absolute;
    top: 50%;
    height: .3rem;
    width: calc(50% - 2rem);
    max-width: 9.5rem;
    border-radius: .2rem;
    background: var(--pink);
    transform: translate(0, -50%);
}

.heart__separator::before {
    left: calc(50% + 2rem);
}

.heart__separator::after {
    right: calc(50% + 2rem);
}

.heart__separator svg {
    fill: var(--pink)
}

.steps {
    background: #f7f7f7;
    text-align: center;
    padding: 4rem 2rem;
}

.steps h2 {
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    margin: 0 0 .75em;
    line-height: 1.35;
    color: #151515;
}

.steps ol {
    list-style: none;
    padding: 0;
    margin: 4rem 0 0;
}

.steps li {
    margin: 0 0 2rem;
}

.steps h4 {
    position: relative;
    color: #151515;
    font-size: 1.5rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 2rem 0 2rem;
    padding: 0 0 .75rem;
    letter-spacing: .05em;
}

.steps h4::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 10rem;
    height: .3rem;
    background: var(--blue);
    transform: translate(-50%, 0);
}

.stepsImg,
.statsImg {
    position: relative;
    overflow: hidden;
    width: 12rem;
    height: 12rem;
    margin: 0 auto;
    border-radius: 50%;
}

.stepsImg img,
.statsImg img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: none;
    width: 101%;
    height: 101%;
    transform: translate(-50%, -50%);
}

.stats {
    color: #fff;
    background: var(--blue);
    text-align: center;
    padding: 4rem 2rem;
}

.stats h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    margin: 0 0 .75em;
    line-height: 1.35;
}

.stats ul {
    list-style: none;
    padding: 0;
    margin: 4rem 0 0;
}

.stats li {
    margin: 0 0 3rem;
}

.statsCounter {
    font-size: 3.2rem;
    margin: .5rem 0 0;
}

.stats p {
    font-size: 1.4rem;
    margin: 0;
}

.recent,
.topmatches {
    text-align: center;
    padding: 4rem 2rem 2.8rem;
}

.topmatches {
    background: var(--pink);
}

.recent h2,
.topmatches h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    margin: 0 0 .75em;
    line-height: 1.35;
    color: #151515;
}

.topmatches h2 {
    color: #fff;
}

.recentSwiper,
.topMatchesSwiper {
    padding-bottom: 3rem;
}

.recentSwiper > .swiper-pagination-bullets,
.topMatchesSwiper > .swiper-pagination-bullets {
    bottom: 0;
}

.recentSwiper .swiper-pagination-bullet {
    background: var(--blue);
}

.topMatchesSwiper .swiper-pagination-bullet {
    background: #fff;
}

.recentSwiper-next::after,
.recentSwiper-prev::after,
.topMatchesSwiper-next::after,
.topMatchesSwiper-prev::after {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    border-right: .5rem solid #fff;
    border-bottom: .5rem solid #fff;
    transform: rotate(-45deg);
    opacity: .75;
    transition: opacity .4s var(--transition);
}

.recentSwiper-prev::after,
.topMatchesSwiper-prev::after {
    transform: rotate(135deg);
}

.recentSwiper-next:hover::after,
.recentSwiper-prev:hover::after,
.topMatchesSwiper-next:hover::after,
.topMatchesSwiper-prev:hover::after {
    opacity: 1;
}

.recentSwiper .swiper-slide,
.topMatchesSwiper .swiper-slide {
    overflow: hidden;
}

.recentSwiper .swiper-slide::before,
.topMatchesSwiper .swiper-slide::before {
    content: '';
    display: block;
    padding: 100% 0 0;
}

.recentSwiper img,
.topMatchesSwiper img {
    position: absolute;
    max-width: none;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.recentSwiper .name,
.topMatchesSwiper .name {
    text-transform: uppercase;
    line-height: 4.5rem;
    height: 4.6rem;
    position: absolute;
    right: -.1rem;
    bottom: -.1rem;
    left: -.1rem;
    text-align: center;
    background: rgba(0, 0, 0, .5);
    color: yellow;
    font-size: 1.5rem;
    letter-spacing: .025rem;
    transition: background .4s var(--transition), color .4s var(--transition);
}

.recentSwiper a:hover .name {
    background: var(--pink);
    color: #fff;
}

.topMatchesSwiper .name {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    background: rgba(64, 192, 217, .75);
    color: #fff;
}

.topMatchesSwiper .name::after {
    content: '';
    position: absolute;
    bottom: .1rem;
    left: 50%;
    width: 0;
    height: .1rem;
    background: #fff;
    transition: width .4s var(--transition), left .4s var(--transition);
}

.topMatchesSwiper a:hover .name {
    background: rgba(255, 77, 110, .8);
    color: #fff;
}

.topMatchesSwiper a:hover .name::after {
    width: 100%;
    left: 0;
}

.testimonials {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    color: #fff;
    text-align: center;
}

.testimonials img {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.testimonials h2 {
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    margin: 0 0 .75em;
    line-height: 1.35;
}

.testimonialsSwiper .swiper-slide {
    padding: 3rem;
}

.testimonialItem {
    position: relative;
    border-radius: 1rem;
    padding: 3rem 3rem 4rem;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, .15);
    color: #3d3d3d;
    text-align: left;
}

.testimonialItem h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--blue);
    margin: 0 0 1rem;
}

.testimonialItem q {
    quotes: "“" "”" "‘" "’";
    position: relative;
    margin: 0;
    font-size: 1.4rem;
}

.testimonialItem q::before {
    content: open-quote;
    color: var(--blue);
    font-size: 4rem;
    position: absolute;
    top: 0;
    right: 100%;
    font-family: serif;
    font-weight: 700;
    line-height: 1;
    transform: translate(-.5rem, -25%);
}

.testimonialItem q::after {
    content: close-quote;
    color: var(--blue);
    font-size: 4rem;
    position: absolute;
    font-family: serif;
    font-weight: 700;
    line-height: 1;
    transform: translate(.5rem, 25%);
}

.testimonialImg {
    position: relative;
    width: 12rem;
    height: 12rem;
    border: .5rem solid var(--blue);
    border-radius: 1rem;
    background: var(--blue);
    margin: -6rem 0 1.5rem;
}

.testimonialImg img {
    z-index: 0;
    border-radius: .6rem;
}

.testimonialsSwiper-next,
.testimonialsSwiper-prev {
    width: 4.4rem;
}

.testimonialsSwiper-next::before,
.testimonialsSwiper-prev::before {
    content: '';
    position: absolute;
    width: 4.4rem;
    height: 4.4rem;
    background-color: var(--blue);
    border-radius: 50%;
    transition: background-color .4s var(--transition);
}

.testimonialsSwiper-next::after,
.testimonialsSwiper-prev::after {
    content: '';
    position: absolute;
    width: 1rem;
    height: 1rem;
    border-right: .3rem solid #fff;
    border-bottom: .3rem solid #fff;
    transform: translate(-.3rem, 0) rotate(-45deg);
}

.testimonialsSwiper-prev::after {
    transform: translate(.3rem, 0) rotate(135deg);
}

.testimonialsSwiper-next:hover::before,
.testimonialsSwiper-prev:hover::before {
    background-color: var(--darkblue);
}

.blog {
    padding: 4rem 2rem 8rem;
    text-align: center;
}

.blog h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    margin: 0 0 1.5em;
    line-height: 1.35;
}

.blog .btn {
    background: linear-gradient(45deg, var(--blue), var(--darkblue));
}

.blogItem {
    margin: 0 0 3rem;
    position: relative;
}

.blogItemLink {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.blogItem h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: .01rem;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    transition: color .4s var(--transition);
}

.blogItem:hover h4 {
    color: var(--blue);
}

.blogItem img {
    margin: 0 0 1.5rem;
    transform: scale(1);
    transition: transform .4s var(--transition);
}

.blogItem:hover img {
    transform: scale(1.05);
}

.blogItem p {
    margin: 0;
}

.blogItem + .heart__separator {
    margin: 4rem auto;
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.footer__logo {
    display: inline-block;
    transform: translate(-.5rem, 0) scale(.95) rotate(.001deg);
    transition: transform .4s var(--transition);
}

.footer__logo:hover {
    transform: translate(-.5rem, 0) scale(1) rotate(.001deg);
}

.footer__links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0 2rem;
    padding: 0;
}

.footer__links li::before {
    content: '';
    display: inline-block;
    width: .3rem;
    height: .3rem;
    border-radius: 50%;
    background: var(--blue);
    vertical-align: middle;
}

.footer__links li:first-child::before {
    content: none;
}

.footer__links a {
    color: var(--blue);
    text-decoration: none;
    margin: 0 1rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    transition: .4s;
}

.footer__links a::after {
    content: '';
    position: absolute;
    width: 0;
    bottom: 0;
    left: auto;
    right: 0;
    height: .1rem;
    background: var(--blue);;
    transition: .3s;
}

.footer__links a:hover::after {
    width: 100%;
    left: 0;
}

.money-guarantee {
    width: 15rem;
    height: 15rem;
    display: block;
    margin: 1rem auto;
}

footer a[href*="rtalabel"] {
    display: inline-block;
    transform: translate(.5rem, 0);
    padding: 1rem .5rem 1rem 1rem;
    font-size: 0;
    border: .2rem solid transparent;
    border-radius: 1rem;
    transition: border-color .4s var(--transition);
}

footer a[href*="rtalabel"]:hover {
    border-color: var(--pink);
}

footer .copyright {
    margin: .5rem 0 0;
}

.menu--anchor {
    position: absolute;
    width: 0;
    height: 0;
    margin-top: -11rem;
}

.btn--top {
    width: 4.9rem;
    height: 4.9rem;
    border-radius: 50%;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 1;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .15);
    border: 2px solid #fff;
    background: var(--blue);
    transform: translate3d(0, 0, 0);
    opacity: 0;
    visibility: hidden;
    transition: transform .4s var(
            --transition), visibility .4s, opacity .4s var(--transition);
    overflow: hidden;
}

.btn--top::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-45deg, var(--blue) 0%, var(--darkblue) 100%);
    transform: rotate(0deg);
    transition: transform .6s var(--transition);
}

.btn--top::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: none solid solid;
    border-width: 1rem .7rem;
    border-color: transparent transparent #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -.2rem;
}

.btn--top:hover {
    transform: translate3d(0, -1rem, 0);
}

.btn--top:hover::before {
    transform: rotate(360deg);
}

.btn--top.visible {
    opacity: 1;
    visibility: visible;
}

.gdpr--popup-wrapper {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    z-index: -2;
    transition: opacity .4s var(--transition), visibility .4s var(--transition), z-index 0s linear .4s;
}

.gdpr--popup-wrapper.show {
    visibility: visible;
    opacity: 1;
    z-index: 10000000000;
    transition: opacity .4s var(--transition), visibility .4s var(--transition);
}

.gdpr--popup-overlay {
    background: rgba(12, 54, 89, .5);
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
    top: -2rem;
    min-height: 100%;
    height: auto;
    width: calc(100% + 4rem);
    margin: -2rem calc(-100% - 2rem) -2rem -2rem;
    backdrop-filter: blur(1rem);
}

.gdpr--popup {
    margin: auto;
    width: 100%;
    max-width: 60rem;
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 1.1rem 1.1rem 1rem 1rem;
    box-shadow: 0 .25rem 1.5rem .5rem rgba(21, 21, 21, .25);
}

.gdpr--popup-heading {
    border-radius: .9rem .9rem 0 0;
    background: linear-gradient(-45deg, rgba(0, 109, 187, .75), rgba(64, 179, 209, .75)), url('/new_layout/themes/voyage/img/cookies.svg') no-repeat 100% 0, linear-gradient(-45deg, #006dbb, #40b3d1);
    background-size: 100% 100%, 10rem auto, 100% 100%;
    color: #fff;
    padding: 1em 2rem;
    font-size: 1.5em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    position: relative;
}

.gdpr--popup-body {
    padding: 2rem;
}

.gdpr--popup-body p {
    font-size: 1.15em;
    margin: 0 0 1em;
    line-height: 1.5;
    color: #999;
}

.gdpr--popup-buttons {
    padding: 0 2rem 1rem;
    text-align: right;
}

.gdpr--popup-buttons a {
    font-size: 1.1em;
    color: var(--blue);
    border-bottom: .1rem solid rgba(64, 179, 209, .75);
    margin: 0 1rem 1rem 0;
    display: inline-block;
    line-height: 1.33;
    vertical-align: middle;
    text-decoration: none;
    transition: color 250ms var(--transition), border-color 250ms var(--transition);
}

.gdpr--popup-buttons a:hover {
    text-decoration: none;
    color: var(--pink);
    border-color: rgba(255, 77, 110, .75);
}

.gdpr--popup-buttons .btn {
    line-height: 4.5rem;
    padding: 0 1em;
    vertical-align: middle;
    font-size: 1.4rem;
    text-transform: uppercase;
    background: #ddd;
    color: #666;
    margin: 0 0 1rem 1rem;
    border: none;
    transition: background 250ms, color 250ms;
    overflow: visible;
}

.gdpr--popup-buttons .btn::after {
    content: none;
}

.gdpr--popup-buttons .btn:hover {
    background: #d00303;
    color: #fff;
}

.gdpr--popup-buttons .btn--accept {
    color: #fff;
    background: var(--blue);
    position: relative;
}

.gdpr--popup-buttons .btn--accept::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-style: solid;
    border-width: 1.2rem 2rem;
    border-color: var(--blue);
    border-radius: 2.5rem;
}

.gdpr--popup-buttons .btn--accept:hover {
    background: #27be86;
}

.gdpr--popup-buttons .btn--accept:hover::before {
    animation: acceptanimation .75s ease-in 2 forwards;
}

@keyframes acceptanimation {
    0% {
        border-color: #40b3d1;
        opacity: 1;
        transform: scale(1, 1);
    }

    100% {
        border-color: #27be86;
        opacity: 0;
        transform: scale(1.3, 1.55);
    }
}

.loginmodal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    z-index: -2;
    transition: opacity .4s var(--transition), visibility .4s var(--transition), z-index 0s linear .4s;
}

.loginmodal.show {
    visibility: visible;
    opacity: 1;
    z-index: 9999;
    transition: opacity .4s var(--transition), visibility .4s var(--transition);
}

.loginmodal--overlay {
    background: rgba(0, 0, 0, .4);
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
    top: -2rem;
    min-height: 100%;
    height: auto;
    width: calc(100% + 4rem);
    margin: -2rem calc(-100% - 2rem) -2rem -2rem;
}

.loginmodal--content {
    margin: auto;
    width: 100%;
    max-width: 60rem;
    position: relative;
    z-index: 2;
    border-radius: 1rem;
    border: .1rem solid rgba(0, 0, 0, .2);
    background: rgba(0, 0, 0, .2);
    backdrop-filter: blur(.2rem);
    color: #fff;
    transform: translate3d(0, -25%, 0);
    transition: transform .4s var(--transition);
}

.loginmodal.show .loginmodal--content {
    transform: translate3d(0, 0, 0);
}

.loginmodal--heading {
    border-radius: .9rem .9rem 0 0;
    background: #fff;
    padding: .75rem 2rem 1rem;
}

.login__logo {
    position: relative;
    width: 16rem;
    display: block;
}

.login__logo::before {
    content: '';
    display: block;
    padding: 30.75% 0 0;
}

.login__logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.loginmodal__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    cursor: pointer;
    opacity: .75;
    transition: opacity .4s var(--transition);
}

.loginmodal__close:hover {
    opacity: 1;
}

.loginmodal__close::before,
.loginmodal__close::after {
    content: '';
    position: absolute;
    height: .3rem;
    width: 2.1rem;
    background: #666;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.loginmodal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.loginmodal--content form {
    padding: 2rem 2rem 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.loginmodal--content h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: .025em;
    margin: 0 0 2rem;
}

.loginmodal--content p {
    margin: 0 0 2rem;
}

.loginmodal--content a {
    color: var(--blue);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color .4s var(--transition);
}

.loginmodal--content a:hover {
    color: var(--pink);
}

.loginmodal--content h4 + a {
    margin-left: auto;
}

.loginmodal--content input {
    width: 100%;
    height: 4.5rem;
    padding: 0 1rem;
    border: none;
    background: #fff;
    margin: 0 0 1.5rem;
    font-size: 1.6rem;
    line-height: 1.5;
}

.loginmodal--content input:focus {
    box-shadow: 0 0 .1rem .3rem var(--blue);
    outline: none;
}

.loginmodal--content .btn {
    font-size: 1.6rem;
    background: var(--blue);
}

.forgotPasswordTrigger {
    font-size: 1.3rem;
    margin-left: auto;
    cursor: pointer;
    transition: color .4s var(--transition);
}

.forgotPasswordTrigger:hover {
    color: var(--pink);
}

.loginmodal--content .separator {
    width: 100%;
}

.loginmodal--content .heart__separator {
    margin: 4rem auto;
}

.loginmodal--content h5 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    margin: 0 0 1.5rem;
}

.loginmodal--social {
    text-align: center;
    width: 100%;
}

.loginmodal--social a {
    display: flex;
    height: 4.5rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 .3rem transparent;
    transition: box-shadow .4s var(--transition);
}

.loginmodal--social a:hover {
    box-shadow: 0 0 0 .3rem var(--blue);
}

.loginmodal--google {
    background: #fff;
    border-radius: 30px;
    justify-self: flex-end;
}

.forgotPassword {
    visibility: hidden;
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s var(--transition), visibility 0s linear .4s;
}

.forgotPassword[aria-hidden="false"] {
    visibility: visible;
    transition: max-height .4s var(--transition), visibility 0s;
}

.topCountries {
    background: var(--blue);
    color: #fff;
    line-height: 2;
}

.topCountriesInner {
    max-width: 118rem;
    margin: 0 auto;
    padding: 2rem 2rem;
    min-height: 6rem;
    display: flex;
    flex-wrap: wrap;
}

.topCountries strong {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: .025em;
    margin: 0 2rem 0 0;
}

.topCountries a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    margin: 0 2rem 0 0;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: .4s;
}

.topCountries a::after {
    content: '';
    position: absolute;
    width: 0;
    bottom: 0;
    left: auto;
    right: 0;
    height: .1rem;
    background: #fff;
    transition: .3s;
}

.topCountries a:hover::after {
    width: 100%;
    left: 0;
}

@media (min-width: 640px) {
    .gdpr--popup-heading {
        background: url('/new_layout/themes/voyage/img/cookies.svg') no-repeat .5rem 0, linear-gradient(-45deg, #006dbb, #40b3d1);
        background-size: 10rem auto, 100% 100%;
        padding: 1em 2rem 1em 11.5rem;
    }

    .gdpr--popup-body {
        padding: 2rem 4rem;
    }

    .gdpr--popup-buttons {
        padding: 0 4rem 1rem;
    }

    .recentSwiper .swiper-slide,
    .topMatchesSwiper .swiper-slide {
        width: calc((100% - 1rem) / 2);
        margin-right: 1rem;
    }

    .topmatches {
        padding-left: 0;
        padding-right: 0;
    }

    .loginmodal--social {
        display: flex;
        align-items: center;
    }

    .loginmodal--content h5 {
        margin: 0 1.5rem 0 0;
    }

    footer {
        padding: 3rem 18rem;
    }

    .money-guarantee {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translate3d(0, -50%, 0);
        margin: 0;
    }
}

@media (max-width: 767.9px) {
    .header__inner {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transform: translate3d(-105%, 0, 0);
        background: rgba(255, 255, 255, .95);
        display: flex;
        flex-direction: column;
        padding: 4rem 0 calc(4rem + env(safe-area-inset-bottom, 0));
        z-index: 1;
        visibility: hidden;
        overflow-x: hidden;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        transition: transform .4s var(--transition), visibility 0s linear .4s;
    }

    .header__inner.open {
        visibility: visible;
        transform: translate3d(0, 0, 0);
        transition: transform .4s var(--transition), visibility 0s;
    }
}

@media (min-width: 768px) {
    body {
        padding-top: 12rem;
    }

    header,
    header::before,
    header::after {
        transform: translate3d(0, 0, 0);
        transition: transform .35s var(--transition);
    }

    .scrollDown header {
        transform: translate3d(0, -5rem, 0);
    }

    .scrollDown header::before,
    .scrollDown header::after {
        transform: translate3d(0, -1rem, 0);
    }

    .scrollDown .topnav__logo {
        transform: translate(0, -.2rem) scale(.8);
    }

    .scrollDown .topnav__heart {
        transform: translate(-50%, -65%);
    }

    .scrollDown .topnav__links a:hover .topnav__heart,
    .scrollDown .topnav__links .loginModalTrigger:hover .topnav__heart {
        transform: translate(-50%, -90%);
    }

    .topbar {
        background: var(--blue);
        color: #fff;
        position: relative;
        overflow: hidden;
        order: 0;
    }

    .topbar__inner {
        display: flex;
    }

    .topbar__links {
        margin: 0 -.5rem 0 auto;
        flex-wrap: nowrap;
    }

    .topbar__links a {
        color: #fff;
        position: relative;
    }

    .topbar__links a:hover {
        color: var(--navy);
    }

    .topbar__icon {
        fill: #fff;
    }

    .topbar__links a:hover svg {
        animation: topbarIcon .25s ease-in-out 1 forwards;
    }

    @keyframes topbarIcon {
        0% {
            transform: translate3d(0, 0, 0);
            fill: #fff;
        }
        50% {
            transform: translate3d(0, -200%, 0);
            opacity: 0;
        }
        50.1% {
            transform: translate3d(0, 200%, 0);
            opacity: 0;
        }
        100% {
            transform: translate3d(0, 0, 0);
            fill: var(--navy);
            opacity: 1;
        }
    }

    .topbar__links a[href*="instagram"]:hover svg {
        animation: none;
        fill: #fff;
    }

    .topbar__links a[href*="instagram"]::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        transform: translate(-50%, -47%) rotate(180deg);
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
        z-index: 0;
        opacity: 0;
        transition: transform .6s var(--transition), opacity .2s var(--transition);
    }

    .topbar__links a[href*="instagram"]:hover::before {
        opacity: 1;
        transform: translate(-50%, -47%) rotate(720deg);
    }

    .topbar__lang {
        text-transform: uppercase;
        letter-spacing: .05em;
    }

    .topbar__links .separator {
        width: 2rem;
    }

    .topbar__links .separator::before {
        width: 0;
        height: 1.5rem;
        border-top: none;
        border-right: .1rem solid #fff;
    }

    .topnav__inner {
        flex-direction: row;
        height: 8rem;
    }

    .topnav__logo::before {
        content: '';
        display: block;
        padding: 30.75% 0 0;
    }

    .topnav__logo img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
    }

    .topnav__links {
        margin: 0 -1rem 0 auto;
        flex-direction: row;
    }

    .topnav__links a,
    .topnav__links .loginModalTrigger {
        padding: 0 1rem 0 0;
    }

    .topnav__heart {
        left: 50%;
        right: auto;
        top: 0;
    }

    header .heart__separator,
    .header__mobile,
    .hamburger__close {
        display: none !important;
    }

    .heroInfo {
        position: absolute;
        z-index: 1;
        width: 55rem;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
    }

    .heroInfo p {
        background: rgba(64, 192, 217, .75);
        font-size: 2.2rem;
        padding: 3rem;
        border-radius: 2rem;
    }

    .heroInfo a,
    .heroInfo .loginModalTrigger {
        margin: 0 1rem 0 0;
        min-width: 14rem;
    }

    .heroInfoButtons .login--google {
        min-width: 22rem;
        margin: 0;
    }

    .heroInfoButtons {
        position: relative;
        max-width: 400px;
        margin: 4rem -.5rem 0;
        flex-direction: row;
    }

    .heroInfoButtons .btn--register {
        margin: 0 1rem 0 0;
        line-height: 4.5rem;
        height: 4.5rem;
        font-size: 1.4rem;
        padding: 0 1.5rem;
    }

    .heroSwiper .swiper-slide {
        min-height: 46rem;
    }

    .menu--anchor {
        margin-top: -10rem;
    }

    .searchForm {
        position: absolute;
        z-index: 1;
        top: 50%;
        right: 2rem;
        padding: 3rem 2rem;
        width: calc(100vw - 55rem - 2rem);
        max-width: 24rem;
        border-radius: 2rem;
        background: rgba(255, 77, 110, .8);
        transform: translate(0, -50%);
    }

    .searchFormInner {
        max-width: 118rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

    .searchFormSelect {
        width: auto;
        padding: .75em 1.4em .688em .8em;
        flex-grow: 1;
    }

    .welcome {
        padding: 8rem 2rem 6rem;
    }

    .welcome h2 {
        font-size: 3.2rem;
    }

    .welcome p {
        max-width: 81rem;
        margin: 0 auto;
        font-size: 1.6rem;
    }

    .welcome .btn {
        line-height: 6rem;
        height: 6rem;
        margin-top: 4rem;
        font-size: 1.8rem;
        border-radius: 3rem;
        padding: 0 4rem;
    }

    .steps,
    .stats {
        padding: 8rem 2rem 6rem;
    }

    .steps h2,
    .stats h2,
    .recent h2,
    .topmatches h2 {
        font-size: 3.2rem;
        max-width: 70rem;
        margin: 0 auto 3rem;
    }

    .steps p,
    .stats p {
        max-width: 81rem;
        margin: 0 auto;
        font-size: 1.6rem;
    }

    .steps ol,
    .stats ul {
        max-width: 118rem;
        margin: 4rem auto 0;
        display: flex;
    }

    .steps li,
    .stats li {
        flex: 1;
        padding: 0 1rem;
    }

    .steps h4 {
        margin: 3rem 0 2.8rem;
        font-size: 1.8rem;
    }

    .statsCounter {
        font-size: 4rem;
    }

    .recent {
        padding: 8rem 2rem 7rem;
    }

    .topmatches {
        padding: 5rem 1rem 4rem;
    }

    .recentSwiper {
        max-width: 118rem;
        margin: 0 auto;
    }

    .recentSwiper .swiper-slide {
        width: calc((100% - 4rem) / 3);
        margin-right: 2rem;
    }

    .topMatchesSwiper .swiper-slide {
        width: calc(100% / 3);
        margin: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .topMatchesSwiper .swiper-slide a {
        position: absolute;
        top: 0;
        left: 1rem;
        right: 1rem;
        bottom: 0;
        overflow: hidden;
    }

    .testimonialsSwiper {
        max-width: 118rem;
        margin: 0 auto;
    }

    .testimonialsSwiper .swiper-slide {
        width: 50%;
        padding: 3rem 2rem 3rem 3rem;
    }

    .testimonialItem {
        padding-left: 10.5rem;
    }

    .testimonialImg {
        margin: -1rem 0 0 -13rem;
        float: left;
    }

    .testimonialItem h3 {
        font-size: 2.4rem;
    }

    .testimonialItem q {
        font-size: 1.6rem;
    }

    .testimonialItem q::before {
        position: static;
        display: inline-block;
        vertical-align: baseline;
        transform: none;
        margin-right: .5rem;
        margin-left: -.5rem;
    }

    .blog {
        padding: 8rem 1rem 7rem;
        max-width: 118rem;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
    }

    .blog h2 {
        font-size: 3.2rem;
        width: 100%;
        margin: 0 auto 3rem;
    }

    .blogItem {
        width: calc(100% / 3);
        flex-grow: 0;
        flex-shrink: 0;
        padding: 0 1rem;
    }

    .blogItem p {
        font-size: 1.4rem;
    }

    .blog .btn {
        line-height: 6rem;
        height: 6rem;
        font-size: 1.8rem;
        border-radius: 3rem;
        padding: 0 4rem;
        margin: 4rem auto 2rem;
    }

    .topCountries {
        background: var(--pink);
    }

    .topCountries .see-all {
        margin: 0 0 0 auto;
    }
}

@media (min-width: 992px) {
    .topnav__links a,
    .topnav__links .loginModalTrigger {
        padding: 0 1rem;
    }

    .heroInfoButtons .btn--register {
        min-width: 17rem;
    }

    .searchForm {
        padding: 4rem 2rem 2rem;
    }

    .searchFormSelect {
        margin-right: 1rem;
    }

    .searchForm .btn {
        min-width: 14rem;
        width: auto;
    }

    .recentSwiper .swiper-slide {
        width: calc((100% - 6rem) / 4);
    }

    .topmatches {
        padding-left: 0;
        padding-right: 0;
    }

    .topMatchesSwiper .swiper-slide {
        width: 280px;
    }
}

@media (min-width: 1180px) {
    .heroInfo {
        left: calc(50% - 59rem);
    }

    .testimonialsSwiper .swiper-slide {
        padding: 3rem 5rem;
    }

    .testimonialItem {
        padding-left: 10rem;
    }

    .testimonialImg {
        margin: -1rem 0 0 -15rem;
    }

    .searchForm {
        right: calc(50% - 59rem + 2rem);
    }
}
.macos_msg_node {
     background: #fff;
     position: fixed;
     padding: .75em 2em .75em 1.25em;
     font-size: .9em;
     border-radius: 0 0 4px 4px;
     z-index: 990;
     top: -1000px;
     left: 50%;
     box-shadow: 0 0 15px rgba(0, 38, 67, .5);
     -webkit-transform: translateX(-50%);
     transform: translateX(-50%);
     -webkit-transition: top .5s ease;
     transition: top .35s ease;
 }
.macos_msg_node .icon-close {
    position: absolute;
    top: .5em;
    right: .5em;
    font-size: .9em;
    text-decoration: none;
}
.macos_message {
    color: green;
}
.macos_error {
    color: #D63939;
}
.macos_notice {
    color: #FFB500;
}
.loginmodal--content .btn::before {
    content: '';
    position: absolute;
    top: .8rem;
    left: 1.5rem;
    width: 2.3rem;
    height: 2.3rem;
    border: 3px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    pointer-events: none;
    -webkit-touch-callout: none;
    opacity: 0;
    transition: opacity .4s var(--transition);
}

.loginmodal--content .in_process .btn[disabled]::before {
    opacity: 1;
    animation: buttonSpinner 1s linear infinite forwards;
}

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