@font-face {
    font-family: "RobotoRegular";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/RobotoRegular/RobotoRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoRegular/RobotoRegular.woff") format("woff"), url("../fonts/RobotoRegular/RobotoRegular.ttf") format("truetype");
}

@font-face {
    font-family: "RobotoBold";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/RobotoBold/RobotoBold.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoBold/RobotoBold.woff") format("woff"), url("../fonts/RobotoBold/RobotoBold.ttf") format("truetype");
}

@font-face {
    font-family: "RobotoLight";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/RobotoLight/RobotoLight.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoLight/RobotoLight.woff") format("woff"), url("../fonts/RobotoLight/RobotoLight.ttf") format("truetype");
}

@font-face {
    font-family: "RobotoMedium";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/RobotoMedium/RobotoMedium.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoMedium/RobotoMedium.woff") format("woff"), url("../fonts/RobotoMedium/RobotoMedium.ttf") format("truetype");
}

@font-face {
    font-family: "RobotoSlabRegular";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/RobotoSlabRegular/RobotoSlabRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoSlabRegular/RobotoSlabRegular.woff") format("woff"), url("../fonts/RobotoSlabRegular/RobotoSlabRegular.ttf") format("truetype");
}

@font-face {
    font-family: "RobotoSlabBold";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/RobotoSlabBold/RobotoSlabBold.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoSlabBold/RobotoSlabBold.woff") format("woff"), url("../fonts/RobotoSlabBold/RobotoSlabBold.ttf") format("truetype");
}

@font-face {
    font-family: "RobotoSlabLight";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/RobotoSlabLight/RobotoSlabLight.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoSlabLight/RobotoSlabLight.woff") format("woff"), url("../fonts/RobotoSlabLight/RobotoSlabLight.ttf") format("truetype");
}

@font-face {
    font-family: "LatoBold";
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/LatoBold/LatoBold.eot?#iefix") format("embedded-opentype"), url("../fonts/LatoBold/LatoBold.woff") format("woff"), url("../fonts/LatoBold/LatoBold.ttf") format("truetype");
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}

*::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
}

*:-moz-placeholder {
    color: #999;
    opacity: 1;
}

*::-moz-placeholder {
    color: #999;
    opacity: 1;
}

*:-ms-input-placeholder {
    color: #999;
    opacity: 1;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    border-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
li {
    margin: 0;
}

img {
    border-style: none;
    display: block;
}

input,
select,
textarea {
    vertical-align: middle;
    font: 100% arial, helvetica, sans-serif;
}

a {
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
    color: unset;
}

html,
body {
    height: 100%;
}

body {
    min-width: 320px;
    margin: 0;
    color: #292827;
    overflow-x: hidden;
    font-family: "RobotoLight";
    color: #292827;
    font-size: 18px;
    line-height: 1.4;
    opacity: 1;
}


/* general styles */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    z-index: 101;
}

.pulse {
    position: relative;
    left: 50%;
    top: 50vh;
    margin-left: -40px;
    margin-top: -40px;
}

.pulse:before,
.pulse:after {
    content: '';
    border: 5px solid #ff382d;
    width: 80px;
    height: 80px;
    border-radius: 500px;
    position: absolute;
}

.pulse:before {
    -webkit-animation: pulse-outer .8s ease-in infinite;
    animation: pulse-outer .8s ease-in infinite;
}

.pulse:after {
    -webkit-animation: pulse-inner .8s linear infinite;
    animation: pulse-inner .8s linear infinite;
}

@-webkit-keyframes pulse-outer {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    50% {
        opacity: 0.5;
        filter: alpha(opacity=50);
    }
    100% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

@keyframes pulse-outer {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    50% {
        opacity: 0.5;
        filter: alpha(opacity=50);
    }
    100% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

@-webkit-keyframes pulse-inner {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
        filter: alpha(opacity=0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

@keyframes pulse-inner {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
        filter: alpha(opacity=0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

.clearfix:after {
    content: '';
    display: block;
    clear: both;
}

.btn-tour {
    font-family: "RobotoSlabBold";
    font-size: 16px;
    line-height: 50px;
    padding: 0 35px;
    width: 160px;
    background-color: #ea4c58;
    color: #fff;
    display: inline-block;
    border-radius: 7px;
    outline: none !important;
    border: none;
}

.btn-tour:hover {
    color: #fff;
    background-color: #f95d69;
}

.btn-tour:active,
.btn-tour:focus {
    color: #fff;
    background-color: #d92d3a;
}

.h2 {
    font-size: 34px;
    font-family: "RobotoSlabBold";
    margin-top: 0;
    margin-bottom: 35px;
    text-align: left;
    color: #292827;
}

.tours-heading-title {
	display: block;
	text-align: center;
	padding: 50px 0 25px;
}
.tours-heading-title .h2 {
	display: block;
	text-align: center;
}

.tour-ladies .h2 {
    text-align: center;
}

.h2-ornament {
    text-align: center;
    padding-bottom: 45px;
    background: url("../img/ornament.png") no-repeat 50% 100%;
}

.h4 {
    display: block;
    font-size: 18px;
    line-height: 25px;
    font-family: 'RobotoSlabBold';
    color: #000;
    margin-bottom: 10px;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    padding: 0;
}


/* general styles END */


/* edge | advantage section */

.edge {
    margin-bottom: 100px;
}

.edge-card {
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.15);
}

.card-content {
    padding: 50px 45px 70px 45px;
    height: 100%;
    min-height: 470px;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
}

.edge-col.flipster__item.flipster__item--current .edge-card {
    position: relative;
}

.edge-col.flipster__item.flipster__item--current .edge-card:after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background: #eee;
    -webkit-transform: rotate(45deg) translateX(-50%);
    -ms-transform: rotate(45deg) translateX(-50%);
    -o-transform: rotate(45deg) translateX(-50%);
    transform: rotate(45deg) translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: 60px;
}

.edge-col.flipster__item.flipster__item--current .edge-card .card-content {
    background: #ea4c58 url("../img/ornament-row.png") repeat-x 0 0;
}

.edge-card.second-card .card-content {
    background: #a5a7b8;
}

.edge-card.third-card .card-content {
    background: #bdbfca;
}

.edge-top {
    padding: 30px 0 35px;
    text-align: center;
    background: #fff;
}

.edge-top img {
    display: inline-block;
}

.edge-container {
    max-width: 1170px;
    margin: 0 auto;
}

.edge-col {
    max-width: 350px;
    width: 100%;
}

.card-title {
    display: block;
    text-align: center;
    font-size: 24px;
    line-height: 25px;
    font-family: "RobotoSlabBold";
    color: #fff;
    margin-bottom: 25px;
}

.card-text {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-family: "RobotoRegular";
}


/* edge | advantage section END*/


/* 3D carousel customization */

.flipster__button {
    font-size: 15px;
    outline: none;
    z-index: 100;
    padding: 50px 20px;
    margin-left: 0;
    margin-right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #fff;
}

.flipster__button svg {
    stroke: #f24841;
}

.flipster--carousel .flipster__item--past-2 .flipster__item__content {
    -webkit-transform: translateX(25%) rotateY(0) scale(0.65);
    -ms-transform: translateX(25%) rotateY(0) scale(0.65);
    -o-transform: translateX(25%) rotateY(0) scale(0.65);
    transform: translateX(25%) rotateY(0) scale(0.65);
}

.flipster--carousel .flipster__item--past-1 .flipster__item__content {
    -webkit-transform: rotateY(0) scale(0.8);
    -ms-transform: rotateY(0) scale(0.8);
    -o-transform: rotateY(0) scale(0.8);
    transform: rotateY(0) scale(0.8);
}

.flipster--carousel .flipster__item--future-1 .flipster__item__content {
    -webkit-transform: rotateY(0) scale(0.8);
    -ms-transform: rotateY(0) scale(0.8);
    -o-transform: rotateY(0) scale(0.8);
    transform: rotateY(0) scale(0.8);
}

.flipster--carousel .flipster__item--future-2 .flipster__item__content {
    -webkit-transform: translateX(-25%) rotateY(0) scale(0.65);
    -ms-transform: translateX(-25%) rotateY(0) scale(0.65);
    -o-transform: translateX(-25%) rotateY(0) scale(0.65);
    transform: translateX(-25%) rotateY(0) scale(0.65);
}


/* 3D carousel customization END*/


/* upcoming tours */

.upcoming {
    padding-top: 100px;
}

.upcoming-row {
    margin-bottom: 150px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    /*   
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
   */
}

.upcoming-box {
    height: 100%;
    min-height: 450px;
    display: block;
    border: 3px solid #fd8891;
    border-radius: 7px;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.upcoming-box:hover .upcoming-img {
    width: 100%;
}

.upcoming-img {
    position: relative;
    height: 200px;
    width: 107%;
    overflow: hidden;
    -webkit-transition: all .2s ease-in-out .1s;
    -o-transition: all .2s ease-in-out .1s;
    transition: all .2s ease-in-out .1s;
}

.upcoming-img img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: auto;
}

.upcoming-header {
    background: #ea4c58;
}

.upcoming-header p {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    font-family: 'RobotoSlabBold';
    padding: 15px 0 15px 21px;
}

.header-top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.upcoming-content {
    padding: 0 15px 0;
}

.upcoming-content p {
    display: block;
    font-family: 'RobotoRegular';
    color: #797979;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 25px;
}

.upcoming-box.coming-soon .upcoming-header {
    background-color: transparent;
}

.upcoming-box.coming-soon .upcoming-header p {
    color: #ea4c58;
}

.btn-notify-hold {
    display: block;
    text-align: center;
}

.btn-notify {
    display: inline-block;
    font-family: 'RobotoRegular';
    color: #3f4cae;
    padding: 0 55px;
    font-size: 14px;
    line-height: 36px;
    border: 1px solid #3f4cae;
    border-radius: 7px;
    background: none;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
    outline: none !important;
}

.btn-notify:hover {
    color: #fff;
    background-color: #3f4cae;
}


/* upcoming tours END*/


/* page top section START */

.header-tours {
    padding-top: 20px;
    background: url("../img/bg-line.png") repeat-x 0 100%;
    background-size: auto 52px;
    position: relative;
}

.top-buttons_holder {
    display: block;
    text-align: right;
}

.header-btn {
    display: inline-block;
    border: 1px solid transparent;
    font-family: "RobotoLight";
    font-size: 14px;
    line-height: 31px;
    border-radius: 5px;
    margin-left: 21px;
    width: 100px;
    background: none;
    text-align: center;
    -webkit-transition: all .1s ease .15s;
    -o-transition: all .1s ease .15s;
    transition: all .1s ease .15s;
    outline: none;
}

.btn-log-in,
.btn-log-in:focus {
    color: #000;
    border: 1px solid #999;
    text-align: center;
    background: transparent;
    color: #5d5d5d;
    border-radius: 5px;
}

.btn-log-in:hover {
    background: #848484;
    color: #fff;
    border-color: #848484;
}

.btn-log-in:active {
    color: #fff;
    border-color: #676767;
    background-color: #676767;
}

.btn-register {
    color: #fff;
    background: #ff382d;
    outline: none;
}

.btn-register:hover {
    color: #fff;
    background-color: #f95d69;
}

.btn-register:active,
.btn-register:focus {
    color: #fff;
    background-color: #d92d3a;
}

.logo {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    -webkit-transform: translate(-50%, 30%);
    -ms-transform: translate(-50%, 30%);
    -o-transform: translate(-50%, 30%);
    transform: translate(-50%, 30%);
    z-index: 99;
}

.logo img {
    width: 100%;
    height: auto;
}

.nav-tours {
    font-family: "LatoBold";
    margin-top: 30px;
    margin-bottom: 35px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-tours ul {
    list-style: none;
}

.nav-tours ul li {
    display: inline-block;
}

.nav-tours ul li a {
    font-size: 20px;
    line-height: 22px;
    color: #000;
    padding-bottom: 5px;
    background: -webkit-linear-gradient(left, #ea4c58, #ea4c58) no-repeat 50% 100%;
    background-size: 0 2px;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
}

.nav-tours ul li a:hover {
    background-size: 100% 2px;
}

.nav-tours_left,
.nav-tours_right {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    width: 38%;
}

.nav-tours_left {
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.nav-tours_left li {
    margin-left: 37px;
}

.nav-tours_left li:first-child {
    margin-left: 0;
}

.nav-tours_right {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.nav-tours_right li {
    margin-right: 37px;
}

.middle-link {
    padding: 0 35px;
    position: relative;
}

.middle-link:before,
.middle-link:after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: #ea4c58;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.middle-link:before {
    left: 0;
}

.middle-link:after {
    right: 0;
}

.behind-logo {
    width: 22%;
    height: 1px;
    visibility: hidden;
}

.tours-banner_wrap {
    background-image: url("../img/banner-01.jpg");
    background-position: 50% 50%;
    min-height: 670px;
    background-size: cover;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -ms-align-items: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.tours-banner {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

.banner-box {
	position: relative;
	z-index: 2;
    margin-top: 130px;
}

.banner-box_top {
    padding-left: 35px;
}

.banner-sticker {
    font-family: 'RobotoMedium';
    padding: 0 15px;
    display: inline-block;
    background-color: #3f4cae;
    font-size: 18px;
    line-height: 34px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border-radius: 5px;
    color: #fff;
    position: relative;
}

.banner-sticker:before {
    content: '';
    position: absolute;
    left: -35px;
    top: 0;
    width: 23px;
    height: 36px;
    display: block;
    background: url("../img/geo.png") no-repeat 0 0;
}

.banner-title {
    font-family: "RobotoSlabBold";
    display: block;
    font-size: 47px;
    line-height: 49px;
    color: #fff;
    margin-bottom: 30px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner-title-left {
    padding-right: 45px;
    position: relative;
    margin-right: 25px;
}

.banner-title-left span {
    display: block;
}

.banner-title-left:after {
    content: '';
    width: 5px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
}

.banner-paragraph {
    font-family: "RobotoBold";
    display: block;
    font-size: 28px;
    line-height: 35px;
    color: #fff;
    margin-bottom: 50px;
    max-width: 400px;
}

.banner-title.small-banner {
    font-size: 50px;
    line-height: 54px;
    margin-bottom: 40px;
    text-shadow: 2px -2px rgba(0,0,0,.8);
}

.banner-paragraph.small-banner {
    max-width: 500px;
    font-size: 24px;
    line-height: 30px;
}

.banner-btn {
    display: inline-block;
    background: -webkit-linear-gradient(left, #d81a29, #ea4c58);
    background: -moz-linear-gradient(left, #d81a29, #ea4c58);
    background: -ms-linear-gradient(left, #d81a29, #ea4c58);
    background: -o-linear-gradient(left, #d81a29, #ea4c58);
    background: linear-gradient(to right, #d81a29, #ea4c58);
    border-radius: 5px;
    font-family: "RobotoSlabBold";
    text-transform: uppercase;
    font-size: 19px;
    line-height: 60px;
    width: 250px;
    border: none;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    border: none;
    outline: none !important;
}

.banner-btn:hover {
    color: #fff;
    background: #ea4c58;
}

.banner-btn:active,
.banner-btn:focus {
    color: #fff;
    background: -webkit-linear-gradient(left, #9b121c, #ea4c58);
    background: -moz-linear-gradient(left, #9b121c, #ea4c58);
    background: -ms-linear-gradient(left, #9b121c, #ea4c58);
    background: -o-linear-gradient(left, #9b121c, #ea4c58);
    background: linear-gradient(to right, #9b121c, #ea4c58);
}

.tours-banner_wrap .social-buttons {
    margin-bottom: 50px;
    -webkit-transform: translateX(160px);
    -ms-transform: translateX(160px);
    -o-transform: translateX(160px);
    transform: translateX(160px);
}

.social-buttons {
    text-align: center;
}

.social-buttons li {
    display: inline-block;
}

.social-buttons_link {
    margin: 0 10px;
    display: inline-block;
    margin: 0 7px;
    background: #fff;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
}

.social-buttons_link:hover {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}

.social-buttons_link img {
    width: 32px;
    height: 32px;
}

.btn-mobile {
    display: none;
    position: fixed;
    right: 10px;
    top: 10px;
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    border: none;
    outline: none;
    background: #ea4c58 -webkit-linear-gradient(left, #fff, #fff) no-repeat 50% 50%;
    background: #ea4c58 -moz-linear-gradient(left, #fff, #fff) no-repeat 50% 50%;
    background: #ea4c58 -ms-linear-gradient(left, #fff, #fff) no-repeat 50% 50%;
    background: #ea4c58 -o-linear-gradient(left, #fff, #fff) no-repeat 50% 50%;
    background: #ea4c58 linear-gradient(to right, #fff, #fff) no-repeat 50% 50%;
    background-size: 75% 3px;
    z-index: 501;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    opacity: .85;
}

.btn-mobile:before,
.btn-mobile:after {
    content: '';
    display: block;
    position: absolute;
    background: #fff;
    width: 75%;
    height: 3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.btn-mobile:before {
    top: 28%;
}

.btn-mobile:after {
    top: 67%;
}

.btn-mobile.active:after,
.btn-mobile.active:before {
    top: 50%;
}

.nav-mobile {
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 500;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    overflow: hidden;
    opacity: 0;
}

.nav-mobile ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 50px 0;
}

.nav-mobile ul li {
    text-align: center;
    display: block;
    width: 100%;
}

.nav-mobile ul li a {
    padding: 15px 30px;
    font-size: 13px;
    line-height: 15px;
    color: #fff;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.nav-mobile ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-mobile.active {
    height: 100%;
    opacity: 1;
}


/* page top section END */


/* slider section */

.slider-wrapper {
    position: relative;
}

.slider-footer {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 99;
}

.slide-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 670px;
}

.first-slide {
    background-image: url("../img/banner-01.jpg");
}

.second-slide {
    background-image: url("../img/banner-02.jpg");
}

.third-slide {
    background-image: url("../img/banner-03.jpg");
}

.forth-slide {
    background-image: url("../img/banner-ukraine.jpg");
}

.fifth-slide {
    background-image: url("../img/ukraine-banner-2.jpg");
}

.slide-5 {
    background-image: url("../img/ukraine-banner-5.jpg");
}

.slide-7 {
    background-image: url("../img/ukraine-banner-7.jpg");
}

.slide-8 {
    background-image: url("../img/banner-ukraine.jpg");
}

.slider-pagination .slick-dots {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 5px;
}

.slider-pagination .slick-dots li {
    width: 9px;
    height: 9px;
    display: block;
    margin-right: 20px;
    overflow: hidden;
    background: #fff;
}

.slider-pagination .slick-dots li:hover {
    opacity: 0.9;
}

.slider-pagination .slick-dots li button {
    display: block;
    font-size: 0;
    line-height: 0;
    border: none;
    outline: none;
    width: 9px;
    height: 9px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.slider-pagination .slick-dots li:hover,
.slider-pagination .slick-dots li:active {
    outline: none;
    box-shadow: none;
    background: none;
}

.slider-pagination .slick-dots li.slick-active {
    opacity: 0.5;
}


/* slider section END */


/* about our tours */

.about-tours {
    background-image: url("../img/about-tours.jpg");
    background-repeat: no-repeat;
    background-size: 349px auto;
    background-position: 10% 0;
    margin-bottom: 100px;
}

.about-tours_wrap {
    padding-top: 70px;
}

.about-tours .h2 {
    margin-top: 25px;
    margin-bottom: 45px;
}

.border-block {
    border: 3px solid #fd8891;
    border-radius: 7px;
    min-height: 280px;
    padding-top: 25px;
    padding-bottom: 25px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    margin-bottom: 35px;
    overflow: hidden;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.border-content {
    display: block;
    font-family: 'RobotoRegular';
    font-size: 16px;
    line-height: 25px;
    color: #292827;
    position: relative;
    max-height: 150px;
    overflow: hidden;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.border-content:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 65px;
    width: 100%;
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) no-repeat 0 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.border-content.hide-gradient {
    height: 100%;
    max-height: 100%;
}

.border-content_hold {
    height: 100%;
}

.border-content.hide-gradient:after {
    height: 0;
    -webkit-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
}

.read-more {
    display: inline-block;
    font-family: "RobotoLight";
    font-size: 18px;
    line-height: 20px;
    color: #292827;
    padding-right: 53px;
    position: relative;
    margin-bottom: 35px;
    border: none;
    background: none;
    outline: none !important;
}

.read-more:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 38px;
    height: 11px;
    background: url("../img/point.png") no-repeat 0 50%, url("../img/point.png") no-repeat 14px 50%, url("../img/point.png") no-repeat 27px 50%;
    background-size: 11px 11px, 11px 11px, 11px 11px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.read-more:hover:after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}


/* about our tours END */


/* content navigation / scroll styles */

.content-nav {
    padding-top: 50px;
    margin-bottom: 75px;
}

.content-nav_link {
    display: block;
    min-height: 105px;
    border: 2px solid #ea4c58;
    border-radius: 10px;
    font-family: 'RobotoSlabRegular';
    font-size: 19px;
    line-height: 25px;
    color: #292827;
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s;
    padding: 0 45px;
    text-align: center;
}

.content-nav_link:hover {
    background: #f26e6e;
    color: #fff;
}

.content-nav_link:after {
    content: '';
    display: block;
    position: absolute;
    width: 52px;
    height: 25px;
    top: -14px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url("../img/ornament.png") no-repeat 0 0;
}


/* content navigation / scroll styles */


/* contact us styles section */

.contact {
    padding-top: 60px;
}

.contact-subheading {
    display: block;
    text-align: center;
    font-family: "RobotoRegular";
    color: #292827;
    font-size: 18px;
    line-height: 28px;
    width: 60%;
    margin: 0 auto 120px;
}

.contact-form_hold {
    margin-bottom: 115px;
}

.contact-form {
    padding: 50px 55px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.h3-tours {
    font-family: "RobotoSlabBold";
    font-size: 24px;
    line-height: 26px;
    padding-bottom: 40px;
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.h3-tours:after {
    content: '';
    display: block;
    position: absolute;
    background: url("../img/heading-ornament.png") no-repeat 0 100%;
    bottom: 0;
    left: 50%;
    width: 170px;
    height: 25px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.form-input {
    font-size: 16px;
    line-height: 30px;
    padding: 0 10px;
    font-family: "RobotoLight";
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    width: 100%;
    outline: none;
    position: relative;
}

textarea.form-input {
    resize: none;
    max-height: 100px;
}

.form-input:focus {
    color: 1px solid rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.form-row_hold {
    position: relative;
}

.form-row_hold .error-message {
    content: '';
    width: 100%;
    height: 20px;
    bottom: 10px;
    left: 0;
    right: 0;
    position: absolute;
    display: block;
    font-size: 12px;
    line-height: 14px;
    color: red;
    z-index: 100;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-row_hold .error-message:empty {
    display: none;
}

.form-input.error {
    border-bottom-color: #ea4c58;
    color: #ea4c58;
}

.form-subtitle {
    color: #717171;
    font-family: "RobotoRegular";
    font-size: 16px;
    line-height: 18px;
    margin-top: 35px;
    margin-bottom: 35px;
    text-align: center;
    letter-spacing: 0.7px;
}

.checkbox-holder {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.checkbox-item {
    margin: 0 15px;
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.checkbox-item label {
    margin: 0;
    font-family: "RobotoSlabLight";
    font-size: 14px;
    line-height: 16px;
    color: #717171;
    letter-spacing: 0.7px;
}

.checkbox-item input[type="checkbox"] {
    margin: 0;
}

.checkbox-item_hold {
    width: 13px;
    position: relative;
    margin-right: 10px;
}

.check-label {
    border: 2px solid #bfbfbf;
    width: 13px;
    height: 14px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 0;
    margin: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.check-label:after {
    content: '';
    width: 9px;
    height: 5px;
    position: absolute;
    top: 2px;
    left: 1px;
    border: 3px solid #44b759;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.check-label:hover::after {
    opacity: 0.3;
}

input[type='checkbox'] {
    visibility: hidden;
}

input[type='checkbox']:checked+label:after {
    opacity: 1;
}

.preferred-method {
    margin-bottom: 40px;
}

.contact-us-form {
    text-align: center;
}


/* contact us styles section END */


/* join us section */

.join-us_hold {
    background: #3f4cae;
    width: 100%;
    padding: 55px 0;
}

.join-us_hold .btn-tour {
    width: 180px;
}

.join-us {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.join-us-title {
    font-size: 36px;
    line-height: 38px;
    color: #fff;
    font-family: 'RobotoSlabLight';
}


/* join us section END */


/* footer / page bottom section */

.footer-hold {
    background: #eee;
    padding-top: 40px;
}

.footer-nav-title {
    font-family: "RobotoSlabBold";
    font-size: 16px;
    line-height: 18px;
}

.footer-nav {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-nav_col li {
    margin-bottom: 10px;
}

.footer-nav_col li a {
    padding-left: 24px;
    font-family: 'RobotoLight';
    font-size: 16px;
    line-height: 18px;
    color: #000;
    position: relative;
}

.footer-nav_col li a:before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #ea4c58;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    margin: 0 auto;
    display: inline-block;
    left: 0;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
}

.footer-nav_col li a:hover {
    color: #000;
}

.footer-nav_col li a:hover:before {
    width: 10px;
    height: 10px;
    -webkit-transform: translateY(-50%) translateX(0px) rotate(0deg);
    -ms-transform: translateY(-50%) translateX(0px) rotate(0deg);
    -o-transform: translateY(-50%) translateX(0px) rotate(0deg);
    transform: translateY(-50%) translateX(0px) rotate(0deg);
    border-radius: 100px;
}

.footer-logo_hold {
    text-align: right;
}

.footer-logo {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
}

.footer-logo img {
    margin: 0 auto;
    display: inline-block;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-phone {
    color: #ea4c58;
    font-size: 24px;
    line-height: 26px;
    font-family: 'RobotoSlabBold';
}

.policy-nav li {
    display: inline-block;
}

.policy-nav li a {
    color: #3f4cae;
    font-size: 14px;
    line-height: 16px;
    text-decoration: underline;
    margin: 0 10px;
}

.policy-nav li a:hover {
    text-decoration: none;
}

.footer-bottom {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}

.footer-bottom .social-buttons_link {
    margin: 0 10px;
}

.page-bottom {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-family: 'RobotoLight';
    font-size: 12px;
    line-height: 14px;
}

.success {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: -webkit-linear-gradient(top, #fdc9c5 0%, #f9b9bf 54%, #f3a2bb 100%) no-repeat 0 0;
    background: -moz-linear-gradient(top, #fdc9c5 0%, #f9b9bf 54%, #f3a2bb 100%) no-repeat 0 0;
    background: -ms-linear-gradient(top, #fdc9c5 0%, #f9b9bf 54%, #f3a2bb 100%) no-repeat 0 0;
    background: -o-linear-gradient(top, #fdc9c5 0%, #f9b9bf 54%, #f3a2bb 100%) no-repeat 0 0;
    background: linear-gradient(to bottom, #fdc9c5 0%, #f9b9bf 54%, #f3a2bb 100%) no-repeat 0 0;
    z-index: 101;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: height .5s;
    -o-transition: height .5s;
    transition: height .5s;
}

.success p {
    display: block;
    font-family: "RobotoSlabLight";
    color: #fffefe;
    font-size: 24px;
    line-height: 35px;
}

.success img {
    margin-top: 60px;
}

.success.active {
    height: 100%;
}


/* footer / page bottom section END */


/* second payment */

.second-payment {
    width: 100%;
    max-width: 650px;
    height: 550px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    margin-top: 50px;
    border-radius: 5px;
    overflow: hidden;
}

.second-payment iframe {
    min-width: 300px;
    min-height: 525px;
    overflow-y: auto;
}


/* modal's start*/

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

.modal .modal-dialog {
    margin: 150px auto 0;
    width: 410px;
}

.modal .title-modal {
    font-family: 'RobotoSlabLight';
    font-size: 35px;
    line-height: 37px;
    color: #000;
    margin-bottom: 35px;
    padding-bottom: 35px;
    background: url("../../user_interface/img/main/bg-h2.png") no-repeat 50% 100%;
    font-weight: normal;
    text-align: center;
    background-size: auto;
    width: 100%;
    display: block;
}

.modal .title-modal-login {
    font-family: 'BanderaProMedium';
    font-size: 35px;
    line-height: 37px;
    color: #000;
    margin: 0 0 0 0;
    padding: 0 0 31px 0;
    background: url("../../user_interface/img/main/bg-h2.png") no-repeat 50% 100%;
    font-weight: normal;
    text-align: center;
    background-size: auto;
    width: 100%;
    display: block;
}

.modal .form-row {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
}

.form-error-message {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    text-align: center;
    font-size: 12px;
    line-height: 14px;
    color: red;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal .modal-content {
    border-radius: 7px;
    text-align: center;
}

.login-error {
    text-align: center;
    font-size: 12px;
    line-height: 14px;
    color: red;
}

.login-error:empty {
    display: none;
}

.modal input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px white inset;
    -webkit-text-fill-color: #333;
}

.modal .form-control {
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    font-size: 20px;
    line-height: 22px;
    width: 100%;
    height: 50px;
    border-radius: 7px;
    color: #000;
    padding: 0 15px;
    outline: none;
    position: relative;
}

.modal .form-control:focus {
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
}

.modal .view-password {
    position: absolute;
    right: 14px;
    top: 18px;
    display: block;
    width: 26px;
    height: 16px;
    z-index: 200;
}

.modal .forget-password {
    display: block;
    margin-bottom: 15px;
}

.modal .btn-danger {
    padding: 0 35px;
    margin: 0 auto 15px;
    display: block;
}

.modal .exit {
    height: 41px;
    width: 41px;
    border: none;
    background: #fff url("../../user_interface/img/pop-ups/exit.png") no-repeat 50% 50%;
    border-radius: 30px;
    position: absolute;
    right: -19px;
    top: -14px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    text-align: center;
    cursor: pointer;
    transition: all .3s;
    -webkit-transition: all .15s;
    -moz-transition: all .15s;
    -ms-transition: all .15s;
    -o-transition: all .15s;
    outline: none;
}

.btn-register-modal {
    font-family: "RobotoSlabBold";
    font-size: 16px;
    line-height: 50px;
    padding: 0 35px;
    margin-bottom: 25px;
    width: 100%;
    background-color: #ea4c58;
    color: #fff;
    display: inline-block;
    border-radius: 7px;
    outline: none;
    border: none;
}

.btn-register-modal:hover {
    color: #fff;
    background-color: #f95d69;
}

.btn-register-modal:active,
.btn-register-modal:focus {
    color: #fff;
    background-color: #d92d3a;
}

.exit:hover {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.modal-social-buttons {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.btn-social {
    font-family: "RobotoRegular";
    text-shadow: none;
    background-color: transparent;
    border-radius: 5px;
    outline: none;
    font-size: 13px;
    line-height: 30px;
    padding: 0 15px;
    width: 47%;
    outline: none !important;
}

.btn-social:active {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) inset;
}

.modal .btn-facebook {
    background: #2b4b90;
    color: #fff;
    border: 1px solid #2b4b90;
}

.modal .btn-facebook:hover {
    background: #30487b;
}

.modal .btn-google-plus {
    color: #d34332;
    border: 1px solid #d34332;
}

.modal .btn-google-plus:hover {
    color: #d22814;
    border: 1px solid #d22814;
}

.modal .fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.modal .modal-bottom {
    background: url("../../user_interface/img/pop-ups/modal-bg.png") repeat-x 0 0;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    padding: 35px 0;
}

.modal .modal-bottom span {
    padding: 0 12px;
}

.modal .modal-bottom span a {
    color: #e83c32;
}

.modal .modal-bottom span a:hover {
    color: #d02318;
}

.forgot-popup .h3 {
    font-family: 'RobotoLight';
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 19px;
    display: block;
}

.terms-conditions,
.forget-password {
    display: inline-block;
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    color: #606060;
}

.terms-conditions a,
.forget-password a {
    display: inline-block;
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    color: #606060;
}

.terms-conditions a,
.forget-password a {
    text-decoration: underline;
}

.terms-conditions a:hover,
.forget-password a:hover {
    text-decoration: none;
}


/* modals end */


/* modal subscribe */

.login-error {
    font-family: "RobotoRegular";
    display: block;
    margin-bottom: 7px;
    visibility: hidden;
    color: #e83c32;
    padding: 0 30px;
}

.login-error.incorrect-login {
    visibility: visible;
}

.form-error-message {
    font-family: "RobotoRegular";
    font-size: 12px;
    line-height: 14px;
    color: #ea4c58;
    display: block;
    height: 14px;
}

.modal-dialog {
    width: 500px;
    margin: 200px auto 50px;
}

.modal-close-btn {
    position: absolute;
    right: -28px;
    top: -25px;
    cursor: pointer;
    border: none;
    background: none;
    color: #fa8e88;
    font-size: 21px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 100px;
    vertical-align: middle;
    text-align: center;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-subscribe .modal-body {
    border: 4px solid #fa8e88;
    padding: 30px 55px;
    text-align: center;
    background-color: #fbe7e5;
}

.modal-upcoming .modal-body {
    padding: 40px;
}

.modal-upcoming .modal-subscr-heading {
    margin-bottom: 0;
}

.modal-subscr-heading {
    display: inline-block;
    font-family: "RobotoSlabBold";
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 31px;
    letter-spacing: 0.7px;
    width: 95%;
}

.modal-subscr-content {
    font-family: 'RobotoRegular';
    font-size: 16px;
    line-height: 26px;
    display: block;
    margin-bottom: 25px;
}

.modal-subscr-field {
    font-family: "RobotoLight";
    color: rgba(0, 0, 0, 0.6);
    line-height: 53px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    text-indent: 13px;
    max-width: 360px;
    width: 100%;
    border-radius: 3px;
    margin-bottom: 20px;
    outline: none;
}

.modal-subscr-field:focus {
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.modal-subscr-btn {
    font-family: "RobotoSlabBold";
    font-size: 16px;
    line-height: 52px;
    background-color: #ea4c58;
    margin-bottom: 44px;
    border-radius: 5px;
    color: #fff;
    padding: 0 43px;
    border: none;
    cursor: pointer;
    -webkit-transition: all .15s;
    -moz-transition: all .15s;
    -ms-transition: all .15s;
    -o-transition: all .15s;
}

.modal-subscr-btn:hover {
    background-color: #f95d69;
}

.modal-subscr-btn:active {
    background-color: #d92d3a;
}

.modal-upcoming .modal-subscr-btn {
    margin-bottom: 0;
}

.modal-subscr-info {
    font-family: "RobotoRegular";
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    display: inline-block;
}

.modal-participate .modal-dialog {
    width: 750px;
    height: 525px;
}

.modal-participate .modal-content {
    border-radius: 5px;
    position: relative;
}

.modal-participate .modal-body {
    padding: 0;
}

.close-payment-modal {
    display: block;
    border: none;
    background: none;
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    background: none;
    border-radius: 0;
    position: absolute;
    outline: none;
    right: 7px;
    top: 4px;
    box-shadow: none;
    text-align: center;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    z-index: 100;
    padding: 0;
}

.close-payment-modal:hover {
    color: #fefefe;
}

.modal-participate .modal-body {
    width: 100%;
    height: 100%;
}

.modal-participate .modal-content {
    width: 100%;
    height: 100%;
}

.modal-participate .modal-dialog {
    width: 650px;
    height: 550px;
}

.modal-body iframe {
    min-width: 300px;
    min-height: 525px;
    overflow-y: auto;
}


/* NEW HEADER */

.header-concept {
    width: 100%;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
}

.logo-head {
    display: block;
    margin-bottom: 0;
    max-width: 150px;
}

.logo-head img {
    display: inline-block;
    width: 100%;
    height: auto;
}

.header-concept_nav a {
    margin: 0 15px;
    font-family: 'RobotoLight';
    color: #000;
    font-size: 16px;
    line-height: 18px;
    position: relative;
    padding-bottom: 5px;
}

.header-concept_nav a:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-linear-gradient(left, #000, #000) no-repeat 50% 0;
    background: -moz-linear-gradient(left, #000, #000) no-repeat 50% 0;
    background: -ms-linear-gradient(left, #000, #000) no-repeat 50% 0;
    background: -o-linear-gradient(left, #000, #000) no-repeat 50% 0;
    background: linear-gradient(left, #000, #000) no-repeat 50% 0;
    background-size: 0 100%;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
}

.header-concept_nav a:hover:after {
    background-size: 100% 1px;
}

.user-photo {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 100px;
}

.user-photo a img {
    width: 100%;
    height: auto;
}

.header-concept_profile {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.user-name {
    font-family: 'RobotoBold';
    font-size: 16px;
    line-height: 18px;
    color: #000;
    padding: 5px 10px 5px 5px;
    border-right: 2px solid rgba(0, 0, 0, .3);
    margin-right: 10px;
}

.user-name:hover {
    text-decoration: underline;
}

.set-icos a {
    display: inline-block;
    margin: 0 5px;
    color: rgba(0, 0, 0, .3);
    font-size: 23px;
    line-height: 25px;
}

.set-icos a:hover {
    margin: 0 5px;
    color: rgba(0, 0, 0, .5);
}

.header-concept_inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -ms-align-items: center;
    align-items: center;
    padding: 10px 0;
}

.credits-ico {
    display: block;
    width: 13px;
    height: 11px;
    background: url('../img/icons/profile-status.png');
    background-position: 100% 0;
}

.status-icos_hold {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    padding: 1px 15px 2px 0;
    border-right: 2px solid rgba(0, 0, 0, .3);
    margin-right: 15px;
}

.status-ico_wrap {
    margin: 0 5px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.satus-ico {
    font-size: 12px;
    line-height: 12px;
    border-radius: 100px;
    display: inline-block;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    background: rgba(0, 0, 0, .3);
    width: 25px;
    height: 25px;
    color: #fff;
    margin-right: 5px;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
}

.satus-ico:hover {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
}

.satus-ico:hover,
.satus-ico:active,
.satus-ico:focus {
    color: #fff;
}

.status-ico_wrap.active .satus-ico {
    background: #009993;
}

.status-ico_wrap.active .status-amount {
    color: #009993;
}

.satus-ico:hover {
    color: #fff;
}

.status-amount {
    display: inline-block;
    font-family: 'RobotoMedium';
    font-size: 14px;
    line-height: 16px;
    color: rgba(0, 0, 0, .3);
    ;
}

.lang-wrap select {
    font-family: 'RobotoRegular';
    font-size: 14px;
    line-height: 16px;
    color: rgba(0, 0, 0, .5);
    background: none;
    border: none;
    text-decoration: underline;
    outline: none;
    cursor: pointer;
}

.lang-wrap select option {
    line-height: 25px;
    border: none;
}


/* modal subscribe END */

.tour-video {
    margin-bottom: 100px;
    margin-top: 100px;
}

.video-container {
    position: relative;
    /* padding-bottom:56.25%; */
    padding-bottom: 45%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*Ladies profiles cards*/

.tour-ladies_holder {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ladies-profile {
    width: 32%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 55px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-align-items: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    text-align: left;
}

.ladies-profile_left {
    width: 55%;
    overflow: hidden;
    position: relative;
}

.ladies-profile_left img {
    width: 100%;
    height: auto;
}

.add-to-favorites {
    position: absolute;
    display: inline-block;
    height: 24px;
    width: 22px;
    background: #ff382d;
    left: 10%;
    top: 0;
    cursor: pointer;
    border: none;
    box-shadow: none;
    outline: none;
    color: #ffffff;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
    z-index: 99;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.add-to-favorites:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    top: 0;
    margin-top: 24px;
    border-bottom: 9px solid transparent;
    border-left: 11px solid #ff382d;
    border-right: 11px solid #ff382d;
    -webkit-transition: all .1s;
    -moz-transition: all .1s;
    -ms-transition: all .1s;
    -o-transition: all .1s;
}

.add-to-favorites:hover {
    color: #fcff00;
}

.star-flag {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 11px;
    line-height: 13px;
}

.profile-id-video {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 3px;
    top: 3px;
    z-index: 10;
}

.profile-id {
    display: inline-block;
    border-radius: 0;
    background: #fff;
    font-size: 12px;
    line-height: 15px;
    color: #000;
    padding: 2px 5px;
    font-family: 'RobotoSlabBold';
}

.play-video-button {
    color: #f2f2f2;
    background: #ff4132;
    width: 31px;
    height: 23px;
    border-radius: 5px;
    text-align: center;
    font-size: 9px;
    vertical-align: middle;
    line-height: 23px;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
}

.play-video-button:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    color: #fff;
}

.profile-photo-link {
    position: absolute;
    display: block;
    z-index: 99;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.profile-photo-link:after {
    font-family: 'FontAwesome';
    position: absolute;
    content: '\f144';
    opacity: 0;
    color: #fff;
    font-size: 100px;
    line-height: 1.1;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
}

.profile-photo-link:hover:after {
    opacity: .7;
}

.profile-photo-link:active:after {
    opacity: 1;
}


.search-profile-info {
    width: 45%;
    padding-left: 15px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
	border: 1px solid #c9c9c9;
	border-left: none;
    border-radius: 0 10px 10px 0;
}

.profile-name {
    display: block;
    font-family: 'RobotoSlabBold';
    letter-spacing: 0.7px;
    font-size: 22px;
    line-height: 30px;
    color: #000;
}

.card-hold {
    display: block;
    color: #a0a0a0;
    font-family: 'RobotoRegular';
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
}

.card-hold em {
    display: block;
    font-style: normal;
    font-family: 'RobotoRegular';
    font-size: 14px;
    line-height: 17px;
    padding-left: 20px;
    position: relative;
}

.card-hold em:before {
    font-family: 'FontAwesome';
    content: '\f004';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 11px;
}

.card-hold span {
    display: block;
	font-family: 'RobotoRegular';
    font-size: 14px;
    line-height: 18px;
	margin-bottom: 3px;
}

.card-hold.offline {
    color: #a0a0a0;
}

.card-hold.offline em {
    color: #a0a0a0;
}

.card-hold.online em {
    color: #26a19c;
}

.card-hold.online em {
    color: #26a19c;
}

.profile-button {
    display: block;
    border: 1px solid #bdbdbd;
    font-size: 12px;
    line-height: 14px;
    width: 125px;
    height: 40px;
    overflow: hidden;
    padding: 0 9px;
    -webkit-transition: box-shadow .15s;
    -moz-transition: box-shadow .15s;
    -ms-transition: box-shadow .15s;
    -o-transition: box-shadow .15s;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 10px;
}

.profile-button.inactive-button {
    pointer-events: none;
    position: relative;
}

.profile-button.inactive-button:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    background: rgba(0, 0, 0, .05);
}

.profile-button:after,
.profile-button:focus {
    outline: none
}

.profile-button:hover {
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.profile-button span {
    color: #000;
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
	font-family: 'RobotoRegular';
}

.profile-button img {
    margin-right: 10px;
}

.view-profile-button {
    display: inline-block;
    background: #ff382d;
    color: #fff;
    font-family: 'RobotoRegular';
    width: 125px;
    font-size: 14px;
    line-height: 40px;
    border-radius: 5px;
    -webkit-transition: all .05s;
    -moz-transition: all .05s;
    -ms-transition: all .05s;
    -o-transition: all .05s;
    text-align: center;
}

.view-profile-button:hover {
    color: #fff;
    background-color: #f95d69;
}

.view-profile-button:active,
.view-profile-button:focus {
    color: #fff;
    background-color: #d92d3a;
}

.tour-participant {
	position: absolute;
	bottom: 17px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: rgba(255,255,255,.85);
	border-radius: 10px;
	padding: 7px 0;
	min-width: 145px;
	box-shadow: 0 2px 5px rgba(0,0,0,.2);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}

.tour-participant span {
	padding-left: 30px;
    font-family: "RobotoMedium";
	font-size: 12px;
	line-height: 14px;
	color: #000;
	background-image: url('../img/tour-participant.png');
	background-repeat: no-repeat;
	background-position: 0 50%;
	max-width: 120px;
}

.tours-details {
    background-size: 500px auto;
    margin-bottom: 230px;
    background-repeat: no-repeat !important;
    background-position: 100% 0;
}
.slide-sale {
	position: relative;
}

.sale-slide .banner-sticker {
	position: relative;
}
.sale-slide .banner-sticker:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transform: translate(-85%,-65%);
	-ms-transform: translate(-85%,-65%);
	-o-transform: translate(-85%,-65%);
	transform: translate(-85%,-65%);
	width: 150px;
	height: 150px;
	background-image: url('../img/sale.png');
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}

.page-bottom_info {
	display: block;
	font-size: 9px;
	line-height: 1.25;
	font-family: 'Roboto';
	text-align: center;
	color: #a4a4a4;
	margin-top: 15px; 
}

/*modal apply*/
.modal.modal-apply .modal-dialog {
    width: 500px;
    margin: 200px auto 50px; }

.modal-close-btn {
    position: absolute;
    right: -28px;
    top: -25px;
    cursor: pointer;
    border: none;
    background: none;
    color: #fa8e88;
    font-size: 21px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 100px;
    vertical-align: middle;
    text-align: center;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s; }
.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.1); }

.modal-apply .modal-content {
    border: 4px solid #fa8e88;
    text-align: center;
    background-color: #fbe7e5;
    border-radius: 0;
}

.modal-apply .modal-body {
    padding: 30px 55px
}

.modal-subscr-heading {
    display: inline-block;
    font-family: "RobotoRegular";
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 31px;
    letter-spacing: 0.7px;
    width: 100%;
    max-width: 350px;
}

.modal-subscr-heading .program-title {
    font-family: "RobotoSlabBold";
    display: inline-block;
    font-size: 24px;
    line-height: 31px;
    margin: 5px 0;
}

.modal-subscr-field {
    font-family: "RobotoLight";
    color: rgba(0, 0, 0, 0.6);
    line-height: 53px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    text-indent: 13px;
    max-width: 360px;
    width: 100%;
    border-radius: 3px;
    margin-bottom: 0;
    outline: none; }
.modal-subscr-field:focus {
    border: 1px solid rgba(0, 0, 0, 0.4); }

.modal-subscr-btn {
    font-family: "RobotoSlabBold";
    font-size: 16px;
    line-height: 52px;
    background-color: #ea4c58;
    margin-bottom: 20px;
    border-radius: 5px;
    color: #fff;
    padding: 0 43px;
    border: none;
    cursor: pointer;
    -webkit-transition: all .15s;
    -moz-transition: all .15s;
    -ms-transition: all .15s;
    -o-transition: all .15s; }
.modal-subscr-btn:hover {
    background-color: #f95d69; }
.modal-subscr-btn:active {
    background-color: #d92d3a; }

.modal-subscr-info {
    font-family: "RobotoRegular";
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    display: inline-block; }
/*modal apply END*/

/*ladies profiles end*/

/*==========  Desktop First  ==========*/
/* Large Devices, Wide Screens */

@media only screen and (min-width: 1200px) {
    .nav-mobile {
        display: none;
    }
}


/* Large Devices, Wide Screens */

@media only screen and (max-width: 1200px) {
    .nav-tours,
    .header-btn {
        display: none;
    }
    .header-concept_nav {
        display: none;
    }
    .header-concept_inner {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .btn-mobile {
        display: block;
    }
    .header-tours {
        background-size: auto 45px;
        margin-bottom: 80px;
        padding-top: 35px;
    }
    .header-tours .logo {
        min-width: 200px;
    }
    .banner-box {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
        -o-justify-content: flex-start;
        justify-content: flex-start;
        -ms-align-items: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .tours-banner_wrap .social-buttons {
        -webkit-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
        transform: translate(0);
    }
    .banner-box_top {
        text-align: left;
    }
    .banner-paragraph {
        margin: 0 0 40px 0;
    }
    .tour-ladies_holder {
        padding-left: 15px;
        padding-right: 15px;
        -webkit-justify-content: space-around;
        -moz-justify-content: space-around;
        -ms-justify-content: space-around;
        -o-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .tours-details_border {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .tours-details_text p {
        max-width: 80%;
    }
    .tours-details_border {
        min-height: auto;
        margin: 0 15px;
    }

    .tour-detail_block {
        margin-bottom: 40px;
    }
    .tours-details {
        margin-bottom: 70px;
        -webkit-background-size: 420px auto;
        background-size: 420px auto;
    }
    .participate {
        padding: 25px;
    }
    .participate strong {
        font-size: 17px;
        line-height: 23px;
        margin-bottom: 20px;
    }
    .days-row {
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .tour-plan_holder {
        min-height: auto;
        background-size: 280px auto;
    }
    .content-nav_link {
        margin-bottom: 25px;
    }
    .slider-pagination .slick-dots {
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .banner-title.small-banner {
        font-size: 35px;
        line-height: 37px;
	    margin-bottom: 30px;
    }
    .banner-paragraph.small-banner {
        font-size: 18px;
        line-height: 28px;
		max-width: 320px;
    }
    .slide-cover {
        min-height: 550px;
        background-position: 65% 0;
    }
    .slider-footer {
        bottom: 0;
    }
    .about-tours {
        background-position: 0 0;
    }
    .ladies-profile {
        width: 47%;
    }
}


/* Medium Devices, Desktops */

@media only screen and (max-width: 992px) {
    .tours-date_block {
        min-height: auto;
        margin: 0;
        padding: 280px 0 35px;
    }
    .tours-date .h2,
    .tours-details .h2,
    .tour-plan .h2,
    .h2 { 
        text-align: center;
        font-size: 29px;
        line-height: 1.5;
    }
    .plan-dates {
        text-align: center;
    }
    .join-us {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-align-items: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .join-us_hold {
        padding: 25px 15px;
    }
    .join-us-title {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 30px;
    }
    .footer-logo_hold {
        text-align: center;
    }
    .footer-bottom {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .footer-phone,
    .policy-nav,
    .social-buttons {
        margin-bottom: 25px;
    }
    .tours-date {
        background-position: 50% 10%;
        background-size: auto 300px;
        margin-bottom: 50px;
    }
    .upcoming-img {
        width: 100%;
        height: auto;
    }
    .upcoming-img img {
        position: static;
        width: 100%;
        height: auto;
    }
    .modal-subscribe .modal-body {
        padding: 25px 5%;
    }
    .modal-close-btn:hover {
        background: rgba(255, 255, 255, 1);
    }
    .modal-close-btn {
        z-index: 100;
        right: -10px;
        top: -10px;
        background: rgba(255, 255, 255, .9);
    }
    .modal-participate .modal-dialog {
        width: 500px;
        height: 780px;
    }
    .upcoming-col {
        margin-bottom: 25px;
    }
    .tours-details {
        -webkit-background-size: 320px auto;
        background-size: 320px auto;
        background-position: 100% 12%;
    }
	.sale-slide .banner-sticker:before {
		display: none;
	}
	.sale-slide .banner-sticker:after {
		-webkit-transform: translate(-85%,-65%);
		-ms-transform: translate(-85%,-65%);
		-o-transform: translate(-85%,-65%);
		transform: translate(-85%,-65%);
		width: 100px;
		height: 100px;
	}
	.tours-details_text p {
		width: 100%;
		max-width: 100%;
	}
	.tour-participant {
		width: 90%;
		min-width: 100px;
	}
}


/* Small Devices, Tablets */

@media only screen and (max-width: 768px) {
    .banner-box_top {
        padding: 0 15px 0 30px;
    }
    .banner-title {
        font-size: 30px;
        line-height: 40px;
    }
    .banner-paragraph {
        font-size: 18px;
        line-height: 25px;
    }
    .banner-box {
        margin: 70px 0 120px;
    }
    .tours-banner_wrap {
        min-height: 300px;
        height: auto;
        background-position: 60% 0;
    }
    .tour-plan_holder {
        min-height: auto;
        background-size: 280px auto;
        background-position: 50% 30%;
		background: none;
    }
    .plan-border {
        padding-top: 15px;
        overflow: hidden;
		min-height: 100px;
    }
    .day-title {
        font-size: 36px;
        line-height: 40px;
		margin-bottom: 15px;
    }
    .plan-border_block {
        display: none;
        padding: 0;
    }
	.day-week {
		display: none;
	}
	.day-block {
		-webkit-justify-content: space-around;
		-moz-justify-content: space-around;
		-ms-justify-content: space-around;
		-o-justify-content: space-around;
		justify-content: space-around;
		margin: 0;
		margin-bottom: 10px;
	}
    .plan-border_block.view-day {
        display: block;
    }
    .day-subheding {
        font-size: 13px;
        line-height: 15px;
        background-size: 50px auto;
        padding-left: 50px;
        margin-bottom: 20px;
    }
    .day-plan_text {
        font-size: 14px;
        line-height: 20px;
    }
    .tour-plan {
        margin-bottom: 70px;
    }
    .contact-form {
        padding: 50px 25px;
    }
    .checkbox-holder {
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        -o-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .checkbox-item {
        margin: 15px 15px;
    }
    .footer-nav_col {
        margin-bottom: 25px;
    }
    .about-tours {
        background-size: auto 350px;
        background-position: 50% 75px;
        margin-bottom: 50px;
    }
    .border-block {
        padding-top: 350px;
        margin: 0 15px 35px;
    }
    .read-hold {
        text-align: center;
    }
    .upcoming-box {
        max-width: 300px;
    }
    .modal-participate .modal-dialog {
        width: 500px;
        height: 780px;
    }
    .second-payment {
        width: 500px;
        height: 780px;
    }
	
	.ladies-profile {
		width: 80%;
		max-width: 450px;
	}
	.profile-button,
	.view-profile-button {
		width: 100%;
	}
	.view-profile-button {
		margin-top: 0;
	}
	.ladies-profile_left {
		max-height: 300px;
		width: 50%;
	}
	.search-profile-info {
		padding: 15px;
		width: 50%;
	}
	.profile-name {
		font-size: 18px;
	}
    .tour-detail_left {
        width: 100%;
    }

	.sale-slide .banner-sticker:after {
		-webkit-transform: translate(-62%,-90%);
		-ms-transform: translate(-62%,-90%);
		-o-transform: translate(-62%,-90%);
		transform: translate(-62%,-90%);
		width: 100px;
		height: 100px;
	}
    .slide-cover {
        height: 650px;
    }
	.tours-details {
		-webkit-background-size: auto 250px;
		background-size: auto 250px;
		background-position: 50% 80px;
	}
	.tours-details_border {
		padding-top: 265px;
		padding-bottom: 50px;
	}
}

@media only screen and (max-width: 560px) {
    .modal-participate .modal-dialog {
        width: 85%;
        height: 450px;
    }
    .second-payment {
        width: 100%;
        height: 520px;
    }
    .upcoming-col {
        width: 100%;
    }
    .upcoming-box {
        max-width: 260px;
        margin: 0 auto 30px;
    }
    .header-concept_profile {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        justify-content: center;
    }
    .logo-head {
        margin: 0 auto 25px;
        display: none;
    }
}


/* Extra Small Devices, Phones */

@media only screen and (max-width: 480px) {
    .banner-title {
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 20px;
        line-height: 30px;
    }
    .modal .title-modal {
        font-size: 25px;
        line-height: 27px;
        margin-bottom: 15px;
    }
    .policy-nav {
        text-align: center;
    }
    .banner-paragraph {
        font-size: 17px;
        line-height: 20px;
    }
    .dates-holder {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .date-block {
        margin-bottom: 30px;
    }
    .tours-dates_content {
        padding: 0;
    }
    .day-block {
        margin-bottom: 10px;
    }
    .modal-social-buttons {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .btn-social {
        width: 100%;
        margin-bottom: 15px;
    }
    .upcoming-box {
        max-width: 260px;
    }
    .flipster__button {
        font-size: 8px;
        outline: none;
        z-index: 100;
        padding: 50px 5px;
        margin-left: 0;
        margin-right: 0;
    }
    .edge-col {
        max-width: 100%;
        width: 85%;
    }
    .card-content {
        min-height: 320px;
        padding: 40px 25px 25px;
    }
    .card-text {
        font-size: 14px;
        line-height: 20px;
    }
    .edge-col.flipster__item.flipster__item--current .edge-card:after {
        bottom: 20px;
    }
    .edge-top {
        padding: 30px 0;
    }
    .edge-top img {
        width: 110px;
        height: 110px;
    }
    .banner-sticker {
        font-size: 16px;
        line-height: 34px;
    }
    .contact-subheading {
        width: 90%;
    }
    .modal .exit {
        right: -8px;
    }
    .modal .modal-dialog {
        width: 90%;
        margin-top: 250px;
    }
    .ladies-profile_left img {
        width: auto;
        height: 100%;
    }
	.ladies-profile {
        width: 95%;
    }
    .ladies-profile:nth-child(2n+1) {
        display: none;
    }
    .search-profile-info {
        padding: 15px 5%;
    }
    .banner-sticker {
        padding: 0 10px;
    }
}

@media only screen and (max-width: 450px) {
    .ladies-profile_left img {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

@media only screen and (max-width: 400px) {
    .ladies-profile {
        width: 100%;
    }
    .profile-name {
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .card-hold {
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 10px;
    }
    .card-hold em {
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 10px;
    }
    .ladies-profile_left img {
        width: auto;
        height: 100%;
    }
    .profile-button,
    .view-profile-button {
        width: 100%;
    }
    .search-profile-info {
        padding: 10px;
    }
    .profile-button,
    .view-profile-button {
        width: 100%;
    }
}


/* Custom, iPhone Retina */

@media only screen and (max-width: 320px) {
    /**/
}


/*==========  Mobile First  ==========*/


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) {
    /**/
}


/* Extra Small Devices, Phones */
    /**/

/* Small Devices, Tablets */

@media only screen and (min-width: 768px) {
    /**/
}


/* Medium Devices, Desktops */

@media only screen and (min-width: 992px) {
    /**/
}


/* Large Devices, Wide Screens */

@media only screen and (min-width: 1200px) {
    /**/
}