/* Default Styles */

/*

[Table of contents]


• Fonts
• Defaults & Reset
• Base Style
• Page Header
• Page Footer
• Main Content
• Vendor Style
• Page Style
• Media Queries


*/


/*------------------------------------------------------------------------------------------*/
/*  FONTS */
/*------------------------------------------------------------------------------------------*/



@font-face {
    font-family: 'AmaticSC-Bold';
    src: url('../fonts/AmaticSC-Bold/AmaticSC-Bold.eot');
    src: local('☺'), 
    url('../fonts/AmaticSC-Bold/AmaticSC-Bold.woff') format('woff'), 
    url('../fonts/AmaticSC-Bold/AmaticSC-Bold.ttf') format('truetype'), 
    url('../fonts/AmaticSC-Bold/AmaticSC-Bold.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*------------------------------------------------------------------------------------------*/
/*  DEFAULTS & RESET */
/*------------------------------------------------------------------------------------------*/


::-moz-selection {
    background: #000;
    color: #fff;
}

button,
button:focus,
a:active,
a:hover,
a:focus {
  outline: 0;
}


a[href*="mailto:"],
a[href*="tel:"] {
    white-space: nowrap;
}

b, strong {
    font-weight: 500;
}
/*------------------------------------------------------------------------------------------*/
/*  BASE STYLE */
/*------------------------------------------------------------------------------------------*/

body {    
    font-size: 1rem;
    line-height: 1.5rem;
    font-family: 'Roboto', Arial, sans-serif;
    /*font-family: 'Amatic SC', cursive;*/
    font-weight: normal;
    font-style: normal;
    color: #000;
    background: #fafafa;
    position: relative;
}

body:after {
    content: "";
    position: fixed;
    top: 0;
    /* bottom: 0; */
    left: 0;
    right: 0;
    z-index: -1;
    background-image: url(../images/bg-1.png);
    background-repeat: repeat;
    background-position: center;
    height: 100vh;
    background-attachment: initial;
    -webkit-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
         -o-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
    -webkit-transition: all 0.2s linear;
         -o-transition: all 0.2s linear;
            transition: all 0.2s linear;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

.section {
    padding: 80px 0;
}

.section-head {
    margin-bottom: 30px;
    overflow: hidden;
}

.section-title {
    text-transform: uppercase;
    margin: 0 0 12px;
    font-size: 2.5rem;
}

.sub-title {
    /*font-family: 'Amatic SC', cursive;
    font-weight: 700; */

    font-family: 'AmaticSC-Bold', cursive;
}

.sub-color {
    color: #675444;
}

.section-meta {
    margin: 0 0 20px;
    font-size: 1.25rem;
    width: 100%;
    color: #675444;
}


.btn {
    font-size: .875rem;
    line-height: 1.5rem;
    padding: 12px 10px;
    border-radius: 25px;
    min-width: 270px;

    -webkit-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}

.btn:hover,
.btn:focus,
.btn:active {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn-primary {
    border: 2px solid #FF3465;
    background: #FF3465;
    color: #fff;

    -webkit-box-shadow: 0 7px 17px 0 rgba(255, 52, 101, 0.75);
            box-shadow: 0 7px 17px 0 rgba(255, 52, 101, 0.75);
}


.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.show>.btn-primary.dropdown-toggle,
.btn-primary:not(:disabled):not(.disabled).active:focus, 
.btn-primary:not(:disabled):not(.disabled):active:focus, 
.show>.btn-primary.dropdown-toggle:focus,
.btn-primary:hover {
    border: 2px solid #FF3465;
    background: #FF3465;
    color: #fff;

    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}

.btn-primary.disabled, .btn-primary:disabled {
    border: 2px solid #FF3465;
    background: #FF3465;
    color: #fff;
    opacity: .5;

    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}

.text-primary {
    color: #FF3465 !important;
}

.btn-success {
    border: 2px solid #a4e700;
    background: #a4e700;
    color: #fff;

    -webkit-box-shadow: 0 7px 27px 0 rgba(0,0,0,0.32);
    box-shadow: 0 7px 27px 0 rgba(0,0,0,0.32);
}

.text-success {
    color: #a4e700 !important;
}

.btn-success:not(:disabled):not(.disabled).active:focus, 
.btn-success:not(:disabled):not(.disabled):active:focus, 
.show>.btn-success.dropdown-toggle:focus,
.btn-success:hover {
    border: 2px solid #1c7430;
    background: #1c7430;
    color: #fff;
}



.form-text {
    font-size: .75rem;
    line-height: 1.25rem;
    font-weight: 300;
}

.form-control {
    color: #000;
    height: 52px;
    border-radius: 25px;
    background-color: #fff;
    border: 2px solid #675444;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 300;
    text-align: center;

        border-radius: 355px 45px 225px 75px/15px 225px 15px 255px;
}

.form-control:focus,
.form-control:active {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid #FBF4DE;
    background: #FBF4DE;
}

.form-group {
    position: relative;
}

label.error {
    font-size: 10px;
    color: red;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0px;
    bottom: -18px;
}

.zoom {
    position: relative;
    display: block;
}

.zoom .fa-video {
    position: absolute;
    z-index: 3;
    left: 20px;
    bottom: 20px;
    
    background: #FF3465;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    line-height: 25px;
    -webkit-box-shadow: 0 7px 17px 0 rgba(255, 52, 101, 0.75);
    box-shadow: 0 7px 17px 0 rgba(255, 52, 101, 0.75);
}

.zoom:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 41, 35, 0.5);
    opacity: 0;

    -webkit-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}

.zoom:after {
    content: '\f00e';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    position: absolute;
    z-index: 3;
    top:40%;
    left: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    font-size: 1.5rem;
    opacity: 0;

    -webkit-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}

.zoom:hover:before,
.zoom:hover:after {
    opacity: 1;
}

.zoom:hover:after {
    top: 50%;
}

/*------------------------------------------------------------------------------------------*/
/* PAGE HEADER */
/*------------------------------------------------------------------------------------------*/
.page-header {
    overflow: hidden;
}

.page-header-inner {
    padding: 15px 0 65px;
    background: url(../images/svg/bg-2.svg) 50% 0% no-repeat;
    -webkit-background-size: 150% 100%;
    background-size: 150% 100%;
    position: relative;
    z-index: 5;

    -webkit-transition: all .3s ease-in-out;
         -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
}


.sticky-hide .btn {
    min-width: inherit;
    height: 42px;
    padding: 8px 30px;
    
    width: 100%;

    -webkit-transform: translateX(1000%);
        -ms-transform: translateX(1000%);
         -o-transform: translateX(1000%);
            transform: translateX(1000%);
}

.sticky-hide {
    width: 0px;
    /*overflow: hidden;*/
    -webkit-transition: all .3s ease-in-out;
         -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
}

.page-header.sticky .sticky-hide {
    width: 165px;
    margin-left: 15px;
    overflow: visible;
}

.page-header.sticky .sticky-hide .btn {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
         -o-transform: translateX(0%);
            transform: translateX(0%);
}

.page-header.sticky .info {
    /*width: 0px;
    overflow: hidden;*/
    font-size: 0px;
    line-height: 0px;
}

.page-header.sticky .page-header-inner {
    padding-bottom: 50px;
    padding-top: 10px;

    background-position: 100% 0%;

    -webkit-background-size: 200% 100%;
            background-size: 200% 100%;
}

.navbar-light .navbar-toggler {
    width: 52px;
    min-width: inherit;
    color: #fff;
    border: 2px solid #FF3465;
    -webkit-box-shadow: 0 4px 12px 0 rgba(255, 52, 101, 0.75);
    box-shadow: 0 4px 12px 0 rgba(255, 52, 101, 0.75);
}

.navbar-light .navbar-toggler[aria-expanded="true"] {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar {
    overflow: hidden;
}

.page-header.sticky .navbar {
    overflow: visible;
}

.page-header-inner {
    position: relative;
    z-index: 5;
}

.page-header:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    height: 100%;

    background: url(../images/svg/bg-2-2.svg) 50% 0% no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 150% 100%;

    opacity: 0;

    -webkit-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);



    -webkit-transition: all .3s ease-in-out;
         -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
}

.page-header.sticky:after {
    opacity: .15;

    background-position: 100% 0%;

    -webkit-background-size: 200% 100%;
            background-size: 200% 100%;
}

.page-header.sticky .navbar-brand {
    height: 42px;
}

.page-header.sticky .phone {
    font-size: .875rem;
    line-height: 1.25rem;
}

.navbar {
    padding: 0px;
    -ms-align-items: center;
    align-items: center;

    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -o-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.navbar-brand {
    padding: 0px;
    height: 70px;

    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;

    -ms-align-items: center;
    align-items: center;

    -webkit-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}

.navbar-brand>span {
    display: block;
    font-weight: 900;
    line-height: 1.25rem;
    margin-bottom: -5px;
}

.navbar-brand>span>i {
    font-style: normal;

    -webkit-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}

.navbar-brand>img {
    max-height: 100%;
}

.navbar-nav .nav-item {
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
}

.navbar-nav .nav-link {
    text-transform: uppercase;
    font-size: 1.75rem;
    line-height: 1.5rem;
    display: block;
    position: relative;
    /*font-family: 'Amatic SC', cursive;
    font-weight: 700;  */

    font-family: 'AmaticSC-Bold', cursive; 

    -webkit-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}


.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav a.mPS2id-highlight,
.navbar-brand:hover>span>i,
.navbar-light .navbar-nav .active>.nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus, 
.navbar-light .navbar-nav .nav-link:hover,
.navbar-nav .nav-link:hover {
    color: #FF3465;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    left: 0;
    width: 0%;
    bottom: -7px;
    height: 7px;
    background: url(../images/svg/line.svg) center no-repeat;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;

    -webkit-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}

.navbar-light .navbar-nav .active>.nav-link:after,
.navbar-light .navbar-nav a.mPS2id-highlight:after,
.navbar-nav .nav-link:hover:after {
    width: 100%;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0px;
    padding-right: 0px;
}



.phone {
    color: #000;
    text-decoration: none;
    /*font-family: 'bip', Arial, sans-serif;
    font-weight: normal;*/

    /*font-family: 'Amatic SC', cursive;
    font-weight: 700;*/
    font-size: 1.25rem;
    line-height: 2rem;
    font-weight: 500;
    display: block;

    -webkit-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}

.phone:hover {
    text-decoration: none;
    color: #000;
}

.contact-xl .phone {
    font-size: 2.5rem;
    line-height: 3.5rem;
}

.contact-icon {
    font-size: 2rem;
    margin-right: 15px;
    color: #a4e700;
}

.social-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;

    -ms-align-items: center;
    align-items: center;

    justify-content: center;
}

.social-link {
    display: block;
    width: 42px;
    height: 42px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #a4e700;
    color: #000;
    font-size: 1.25rem;

    /*background: url(../images/svg/circle.svg) center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;*/

    -webkit-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}

.social-link:hover {
    color: #fff;
    background: #a4e700;
}

.social-xl .social-link {
    width: 58px;
    height: 58px;
    line-height: 52px;

    background: #a4e700;
    color: #fff;
    position: relative;
    border:none;
    margin: 4px;

    -webkit-transition: all 0.2s cubic-bezier(0.68, -0.55, 0.465, 1.55) 0.2s;
    -o-transition: all 0.2s cubic-bezier(0.68, -0.55, 0.465, 1.55) 0.2s;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.465, 1.55) 0.2s;

    -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.3), inset 0 1px 2px -4px rgba(0, 0, 0, 0.25);
            box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.3), inset 0 1px 2px -4px rgba(0, 0, 0, 0.25);
}

.social-xl .social-link:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 4px solid white;

    -webkit-transition: border-width 0.4s cubic-bezier(0.68, -0.55, 0.465, 1.55);
     -o-transition: border-width 0.4s cubic-bezier(0.68, -0.55, 0.465, 1.55);
     transition: border-width 0.4s cubic-bezier(0.68, -0.55, 0.465, 1.55); 
}

.social-xl .social-link:hover:after {
    border: 2px solid #fff;
}


.social-xl .social-link>i {
    position: absolute;
    left: 50%;
    bottom:50%;
    -webkit-transform: translate(-50%, 50%);
        -ms-transform: translate(-50%, 50%);
         -o-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
}

.social-xl .social-link:hover>i {
    

    -webkit-animation: playJumpI .5s linear infinite;
         -o-animation: playJumpI .5s linear infinite;
            animation: playJumpI .5s linear infinite;
}





@keyframes playJumpI {
    0% {
        -webkit-transform: translate(-50%, 60%) scale(1.1, 0.7);
            -ms-transform: translate(-50%, 60%) scale(1.1, 0.7);
             -o-transform: translate(-50%, 60%) scale(1.1, 0.7);
                transform: translate(-50%, 60%) scale(1.1, 0.7);
    }
    10% {
        -webkit-transform: translate(-50%, 30%) scale(0.9, 1.2);
            -ms-transform: translate(-50%, 30%) scale(0.9, 1.2);
             -o-transform: translate(-50%, 30%) scale(0.9, 1.2);
                transform: translate(-50%, 30%) scale(0.9, 1.2);
    }
    20% {
        -webkit-transform: translate(-50%, 15%);
            -ms-transform: translate(-50%, 15%);
             -o-transform: translate(-50%, 15%);
                transform: translate(-50%, 15%);
    }
    40% {
        -webkit-transform: translate(-50%, 10%);
            -ms-transform: translate(-50%, 10%);
             -o-transform: translate(-50%, 10%);
                transform: translate(-50%, 10%);
    }
    50% {
        -webkit-transform: translate(-50%, 10%);
            -ms-transform: translate(-50%, 10%);
             -o-transform: translate(-50%, 10%);
                transform: translate(-50%, 10%);
    }
    55% {
        -webkit-transform: translate(-50%, 18%);
            -ms-transform: translate(-50%, 18%);
             -o-transform: translate(-50%, 18%);
                transform: translate(-50%, 18%);
    }
    60% {
        -webkit-transform: translate(-50%, 20%);
            -ms-transform: translate(-50%, 20%);
             -o-transform: translate(-50%, 20%);
                transform: translate(-50%, 20%);
    }
    65% {
        -webkit-transform: translate(-50%, 25%);
            -ms-transform: translate(-50%, 25%);
             -o-transform: translate(-50%, 25%);
                transform: translate(-50%, 25%);
    }
    70% {
        -webkit-transform: translate(-50%, 30%);
            -ms-transform: translate(-50%, 30%);
             -o-transform: translate(-50%, 30%);
                transform: translate(-50%, 30%);
    }
    90% {
        -webkit-transform: translate(-50%, 60%) scale(1.2, 0.7);
            -ms-transform: translate(-50%, 60%) scale(1.2, 0.7);
             -o-transform: translate(-50%, 60%) scale(1.2, 0.7);
                transform: translate(-50%, 60%) scale(1.2, 0.7);
    }
    100% {
        -webkit-transform: translate(-50%, 60%) scale(1.4, 0.7);
            -ms-transform: translate(-50%, 60%) scale(1.4, 0.7);
             -o-transform: translate(-50%, 60%) scale(1.4, 0.7);
                transform: translate(-50%, 60%) scale(1.4, 0.7);
    }
}





.info {
    font-weight: 300;
    font-size: .875rem;
    line-height: 1.25rem;

    -webkit-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}

/*------------------------------------------------------------------------------------------*/
/* PAGE FOOTER */
/*------------------------------------------------------------------------------------------*/


.page-footer {
    padding: 2rem 0;
    font-size: .75rem;

}


.copyright strong {
    font-weight: 900;
}

.icon-love {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-left: 4px;
    background: url(../images/svg/love.svg) center no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}


/*------------------------------------------------------------------------------------------*/
/* MAIN CONTENT */
/*------------------------------------------------------------------------------------------*/


.intro {
    position: relative;
}

.intro-item {
    height: 800px;
    position: relative;
}

.intro-item:before {
    content: '';
    position: absolute;

    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    width: 75%;

    /*background: rgba(255,255,255,1);
    background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);*/

    background: rgba(255, 252, 241,1);
    background: -moz-linear-gradient(left, rgba(255, 252, 241,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 252, 241,1)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left, rgba(255, 252, 241,1) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(left, rgba(255, 252, 241,1) 0%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(left, rgba(255, 252, 241,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to right, rgba(255, 252, 241,1) 0%, rgba(255,255,255,0) 100%);
}

.intro-item_3:before {
    background: rgba(255,252,241,1);
    background: -moz-linear-gradient(left, rgba(255,252,241,1) 0%, rgba(255,252,241,0.75) 50%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,252,241,1)), color-stop(50%, rgba(255,252,241,0.75)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left, rgba(255,252,241,1) 0%, rgba(255,252,241,0.75) 50%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(left, rgba(255,252,241,1) 0%, rgba(255,252,241,0.75) 50%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(left, rgba(255,252,241,1) 0%, rgba(255,252,241,0.75) 50%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to right, rgba(255,252,241,1) 0%, rgba(255,252,241,0.75) 50%, rgba(255,255,255,0) 100%);
}

.intro-item>img {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;
}

.intro-inner {
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 35px;
}
.intro-inner>.container {
    height: 100%;
}

.intro-title {
    font-size: 58px;
    /*color: #FF3465;*/
    margin: 0 0 20px;
}

.intro-meta {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin: 0 0 50px;
    color: #000;

    /*color: #000;
    font-weight: 300;*/

    max-width: 450px;
}

.intro-meta strong {
    font-weight: 700;
}


.intro .slick-dots {
    position: absolute;
    bottom: 50px;
}

.intro-dots-control {
    position: relative;
    padding-left: 70px;
    padding-right: 70px;
}
#intro-control {
    position: absolute;
    z-index: 4;
    bottom: 50px;
    left: 0;
    right: 0;
}

#intro-control .slick-arrow {
    margin-top: -7px;
}

#intro-control .slick-prev {
    left: 15px;
}

#intro-control .slick-next {
    right: auto;
    left: 195px;
}



.review-bottom {
    margin-top: 2rem;
}

.insta-logo {
    width: 70px;
    display: inline-block;
}

.insta-logo img {
    width: 100%;
}


.review-bottom a,
.gallery-bottom a {
    color: inherit;
    text-decoration: underline;
}


.review-bottom a:hover,
.gallery-bottom a:hover {
    text-decoration: none;
}


.gallery-item {
    overflow: hidden;
    height: 270px;
    border-radius: 5px;
    border: 2px solid #FBF4DE;
    padding: 2px;
    margin-bottom: 30px;
}

.gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-link>img {
    display: block;
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;

    -webkit-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
}


.gallery-link:hover img {
    -webkit-transform: scale(1.2) rotate(-5deg);
    -ms-transform: scale(1.2) rotate(-5deg);
    -o-transform: scale(1.2) rotate(-5deg);
    transform: scale(1.2) rotate(-5deg);
}



.contacts {
    overflow: hidden;
}

.contacts-inner {
    background: #FBF4DE;
    border-radius: 10px;
    padding: 2rem;
}


.contacts-list li {
    margin-bottom: 30px;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 300;
}

.contacts-list li li {
    margin-bottom: 0px;
}

.contacts-list strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
}

.contacts-list a {
    color: inherit;
    text-decoration: none;
}


.contacts-list .btn {
    color: #fff;
    /*-webkit-box-shadow: none;
    box-shadow: none;*/
}

.map {
    overflow: hidden;
    /*height: 550px;*/
    /*max-width: 550px;*/
    width: 100%;
    /*border-radius: 50%;*/

    /*border-radius: 47% 53% 68% 32% / 42% 58% 42% 58% ;
    float: right;*/
}

#map {
    width: 100%;
    height: 100%;
    background: #ccc;
}

.contacts-map {
    position: relative;
    height: 400px;
    /*width: 400px;*/
    border-radius: 5px;
    /*overflow: hidden;*/
    margin: 0 auto;
    position: relative;

    -webkit-box-shadow: 0px 7px 17px rgba(0,0,0,.15);
    box-shadow: 0px 7px 17px rgba(0,0,0,.15);
}

.contacts-map>img {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    /*width: 50%;*/
    bottom: -22px;
    right: -12px;

    /*display: none;*/
}






.q {
    background: url(../images/bg-3.jpg) center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}










.price {
    background: url(../images/bg-8.jpg) center;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
}

.price:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.price .container {
    position: relative;
    z-index: 3;
}


.card {
    border: none;
    -webkit-box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.08);
    border-radius: 5px;

    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.card:hover {
    /*-webkit-box-shadow: none;
    box-shadow: none;*/
}


.card-img-top {
    border-radius: 5px 5px 0px 0px;
    width: 100%;
    height: 100%;
    /*-o-object-fit: cover;
    object-fit: cover;*/
}

.card-thumb {
    height: 220px;
    position: relative;
}

.card-thumb>a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-thumb>a:after {
    content: '\f00e';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    bottom: 30px;
    right: 30px;

    color: #fff;

    font-size: 1.25rem;

    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;

    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
    transform: translateX(50px);
}

.card-thumb>a:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;

    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.card-thumb>a:hover:before {
    opacity: 1
}

.card-thumb>a:hover:after {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}

.card-title {
    font-size: 3rem;
}

.card-meta {
    font-size: 1rem;
    width: 100%;
    color: #675444;
}

.card-price {
    font-size: 1.25rem;
    font-weight: 300;
    padding: 15px 0;
    color: #a4e700;
}

.card-price>span {
    font-size: 52px;
    font-weight: 900;
}

.card-head {
    position: relative;
    padding: 15px 0;
}

.accordion button:before,
.review-head:after,
.card-head:after {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0px;
    bottom: -10px;
    height: 20px;
    pointer-events: none;
    background: url(../images/svg/line.svg) center no-repeat;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
}

.card-meta strong {
    display: block;
}


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

.card-text {
    padding: 15px 0;
    font-size: .875rem;
    font-weight: 300;
}

.card-text ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.price-item {
    margin-bottom: 30px;
}


.price-info strong {
    color: #FF3465;
    font-family: 'Roboto', Arial, sans-serif;
    letter-spacing: -1.5px;
    white-space: nowrap;
    font-weight: 700;
}


.price-item_lux {
    -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
         -o-transform: translateY(-15px);
            transform: translateY(-15px);
}




.about .section-meta {
    font-size: 1rem;
}

.service [class*="col-"] {
    margin-bottom: 30px;
}

.service-item {
    background: #FBF4DE;
    padding: 2rem;
    border-radius: 5px;
    /*margin-bottom: 30px;*/
    height: 100%;
    text-align: center;
}

.service-icon {
    width: 50px;
    margin: 0 auto 20px;
    position: relative;
}

.service-icon .s-2 {
    position: absolute;
    z-index: 2;
    top: 0;
}

.service-icon>img {
    width: 100%;
}

.service-meta {
    font-weight: 300;
    font-size: .875rem;
}






.room {
    position: relative;
    padding-bottom: 0;
}

.room-item {
    margin-bottom: 30px;

    border: 2px solid #FBF4DE;
    padding-left: 2px;
    border-radius: 5px;
    background: #fff;
}

.room-inner {
    padding: 2rem 0rem 2rem 2rem;
}

.flex-row-reverse .room-inner {
    padding: 2rem 2rem 2rem 0;
}

.room-head {
    margin-bottom: 20px;
}

.room-title-small {
    font-weight: 300;
    margin: 0 0 20px;
    font-size: 1.25rem;
    width: 100%;
    color: #675444;
}

.room-title {
    font-size: 3rem;
}

.room-text {
    font-weight: 300;
    font-size: .875rem;
    margin-bottom: 30px;
}


.room-text p,
.room-text ul {
    margin: 0 0 .5rem;
}

.room-slider .slick-slide {
    overflow: hidden;
    border-radius: 5px;

}

.room-slider img {
    width: 100%;
}

.room-slider .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
}

.room-slider .slick-slide a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.room-price {
    font-weight: 900;
    font-size: 1.5rem; 
}




#photo-control {
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;

}

#photo-control .slick-next {
    right: auto;
    left: 70px;
}

.slider .slick-slide {
    height: 400px;
    position: relative;
    
}

.slider .slick-slide {
    
    padding: 0 5px;
    border-radius: 5px;
    
}

.slider .slick-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 2px solid #FBF4DE;
    padding: 2px;
    border-radius: 5px;
}

.slider .slick-slide img {
    max-height: 100%;
    border-radius: 2px;
}




.hotel {
    position: relative;
    background: rgba(235, 248, 230, 1) center no-repeat;
}

.hotel .slider {
    position: relative;
}

.hotel .slider:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 25%;
    z-index: 10;

    background: rgba(255,255,255,0);
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(235,248,230,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(235,248,230,1)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(235,248,230,1) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(235,248,230,1) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(235,248,230,1) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(235,248,230,1) 100%);
}

.hotel-inner {
    height: 100%;
    max-width: 350px;
    padding: 2rem;
}

.hotel-inner .section-head {
    margin-bottom: 0px;
}

.hotel-text {
    font-size: 1.25rem;
    font-weight: 300;
    height: 72px;
}

.hotel-meta {
    font-size: .75rem;
    font-weight: 300;
    margin-top: 15px;
}









.step {
    background: #ebf8e6;
    min-height: 900px;

    background: url(../images/bg-12.jpg) 0 50% no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.step:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .5;
    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.step .container {
    position: relative;
    z-index: 3;
}

.step-text {
    font-weight: 300;
    font-size: .875rem;
    position: relative;
    z-index: 3;
    min-height: 72px;
}

.step-num {
    font-weight: 900;
    font-size: 4rem;
    color: #675444;
    position: absolute;
    pointer-events: none;
    right: -25px;
    top: 0;
    z-index: 1;
}

.step-title {
    position: relative;
    z-index: 3;
}

.step-item {
    margin-bottom: 30px;
    /*max-width: 350px;*/
    position: relative;
    z-index: 3;
    padding-top: 15px;
    padding-left: 15px;

    text-align: right;
    /*float: right;*/
}

.step-inner {
    width: calc(100% - 85px);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: block;
    margin-left: 20px;
    padding: 15px;
    position: relative;
    z-index: 3;

    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;

    -webkit-box-shadow: 0 7px 17px 0 rgba(0,0,0,0.12);
    box-shadow: 0 7px 17px 0 rgba(0,0,0,0.12);
}

.step-icon img {
    width: 100%;
}

.step-bg {
    background: rgba(235, 248, 230, 0.85);
    border-radius: 5px;
    border: 2px solid #FBF4DE;
    padding: 2rem;
    padding-top: 70px;
}

.step-item_1,
.step-item_5 {
    -webkit-transform: translateX(30%);
        -ms-transform: translateX(30%);
         -o-transform: translateX(30%);
            transform: translateX(30%);
}

.step-item_2,
.step-item_4 {
    -webkit-transform: translateX(10%);
        -ms-transform: translateX(10%);
         -o-transform: translateX(10%);
            transform: translateX(10%);
}








/*.action {
    background: url(../images/bg-14.jpg) left no-repeat;
    -webkit-background-size: cover;
    background-size: cover;

    min-height: 400px;
}*/


.action {
    background: url(../images/action-bg.png) right no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;

    min-height: 400px;
    margin-bottom: 50px;
    /*overflow: hidden;*/
}

.action-thumb {
    position: relative;
    padding-bottom: 80px;
    margin-bottom: -150px;
}

.action-arrow {
    content: '';
    position: relative;
    width: 36px;
    height: 57px;
    background: url(../images/action-arrow-r.png) center no-repeat;
    display: block;
    position: absolute;
    left: -20px;
    bottom: 40px;
}

.action-thumb .sub-title {
    text-transform: inherit;
    position: absolute;
    left: 70px;
    bottom: 0;
}

.action-title {
    font-size: 6.5rem;
    /*font-weight: 900;*/
}

.action-meta {
    font-size: 1.5rem;
    margin-bottom: 50px;
    margin-top: 40px;
        color: #675444;
}








.webcam {
    background: url(../images/bg-17.jpg) left no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    overflow: hidden;
}

.webcam-thumb {
    position: relative;
}

.webcam-thumb .s-1 {
    width: 212px;
    position: absolute;
    z-index: 4;
    bottom: 0;
    right: 0%;
    /*border-radius: 50%;*/
}
.webcam-thumb .s-2 {
    position: relative;
    display: inline-block;
}


.webcam-thumb .s-2 img {
    position: relative;
    z-index: 3;

    width: 100%;
}

.webcam-thumb .s-2:after {
    content: '';
    width: 100%;
    top: 7px;
    bottom: 7px;
    left: 0;
    border-radius: 45px;
    position: absolute;

    -webkit-box-shadow: 0px 7px 17px rgba(0,0,0,.5);
    box-shadow: 0px 7px 17px rgba(0,0,0,.5);
}

.webcam-meta {
    font-size: 1rem;
    line-height: 2.7rem;
    color: #675444;
}

.webcam-inner {
    background: #FBF4DE;
    padding: 2rem;
    border-radius: 5px;
}


.webcam-text {
    font-size: .875rem;
    font-weight: 300;
}




.video-inner {
    border: 2px solid #FBF4DE;
    padding-left: 2px;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.video-inner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: rgba(0,0,0,.5);

    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.video-inner:hover:after {
    background: rgba(0,0,0,.35);
}

.video-inner iframe{
    max-width: 100%;
    width: 100%;
    height: 470px;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
}

.video-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.video-fix {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0 auto;
}

.review {
    overflow: hidden;
}

.review-item {
    background: url(../images/svg/rev.svg) center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    padding: 4rem 5rem 6rem;
    position: relative;
}

.review-item_right {
    background: url(../images/svg/rev-right.svg) center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
}

.review-item:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    /*right: 80px;
    bottom: 75px;*/

    top: 2rem;
    left: 4.5rem;
    background: url(../images/svg/right-quotes-symbol.svg) center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;

    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}


.review-item_big {
    margin-top:-100px; 
    margin-right: -100px;
}

.review-item_big:after {
    left: 8.5rem;
}


.review-item_md {
    margin-top: -100px;
}

.review-item_md:after {
    left: 6.5rem;
}


.review-text {
    font-size: .875rem;
    font-weight: 300;
   /* height: 270px;*/
}

.review-text p {
    margin: 0 0 12px;
}

.review-author {
    font-weight: 500;
    display: inline-block;
    padding: .75rem 1.5rem;
    font-size: 1rem;
    background: #fbf4de;
    border-radius: 30px;
    margin-top: 20px;
}

.review-head {
    position: relative;
    font-size: 2.5rem;
    line-height: 3rem;
    padding: 20px 0 25px;
    margin-bottom: 20px;
}



.btn-play {
    display: block;
    position: relative;
    border: 8px solid white;
    -webkit-box-shadow: 0 4px 6px -3px rgba(0, 0, 0, 0.3), inset 0 3px 4px -2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 6px -3px rgba(0, 0, 0, 0.3), inset 0 3px 4px -2px rgba(0, 0, 0, 0.25);
    

    width: 112px;
    height: 112px;
    background: #a4e700;
    border-radius: 50%;
    margin: 3rem auto;
    /*top:50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);*/
    -webkit-transition: all 0.2s cubic-bezier(0.68, -0.55, 0.465, 1.55) 0.2s, border-width 0.4s cubic-bezier(0.68, -0.55, 0.465, 1.55);
    -o-transition: all 0.2s cubic-bezier(0.68, -0.55, 0.465, 1.55) 0.2s, border-width 0.4s cubic-bezier(0.68, -0.55, 0.465, 1.55);
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.465, 1.55) 0.2s, border-width 0.4s cubic-bezier(0.68, -0.55, 0.465, 1.55);
}


.btn-play svg{
    display: block;
    position: absolute;
    content: '';
    bottom: 50%;
    left: 50%;
    width: 30px;
    z-index: 3;
    
    border-radius: 0;
    border-left-color: white;
    -webkit-transform: translate(-13px, 50%);
          transform: translate(-13px, 50%);
}

.btn-play svg:nth-of-type(2) {
    width: 30px;
    fill: #fff;
    z-index: 1;
}


.btn-play:hover {
  border: 4px solid white;
}

.btn-play:hover svg {
    -webkit-animation: playJump .5s linear infinite;
         -o-animation: playJump .5s linear infinite;
            animation: playJump .5s linear infinite;
}



@-webkit-keyframes playJump {
    0% {
        -webkit-transform: translate(-13px, 60%) scale(1.1, 0.7);
            -ms-transform: translate(-13px, 60%) scale(1.1, 0.7);
             -o-transform: translate(-13px, 60%) scale(1.1, 0.7);
                transform: translate(-13px, 60%) scale(1.1, 0.7);
    }
    10% {
        -webkit-transform: translate(-13px, 30%) scale(0.9, 1.2);
            -ms-transform: translate(-13px, 30%) scale(0.9, 1.2);
             -o-transform: translate(-13px, 30%) scale(0.9, 1.2);
                transform: translate(-13px, 30%) scale(0.9, 1.2);
    }
    20% {
        -webkit-transform: translate(-13px, 15%);
            -ms-transform: translate(-13px, 15%);
             -o-transform: translate(-13px, 15%);
                transform: translate(-13px, 15%);
    }
    40% {
        -webkit-transform: translate(-13px, 10%);
            -ms-transform: translate(-13px, 10%);
             -o-transform: translate(-13px, 10%);
                transform: translate(-13px, 10%);
    }
    50% {
        -webkit-transform: translate(-13px, 10%);
            -ms-transform: translate(-13px, 10%);
             -o-transform: translate(-13px, 10%);
                transform: translate(-13px, 10%);
    }
    55% {
        -webkit-transform: translate(-13px, 18%);
            -ms-transform: translate(-13px, 18%);
             -o-transform: translate(-13px, 18%);
                transform: translate(-13px, 18%);
    }
    60% {
        -webkit-transform: translate(-13px, 20%);
            -ms-transform: translate(-13px, 20%);
             -o-transform: translate(-13px, 20%);
                transform: translate(-13px, 20%);
    }
    65% {
        -webkit-transform: translate(-13px, 25%);
            -ms-transform: translate(-13px, 25%);
             -o-transform: translate(-13px, 25%);
                transform: translate(-13px, 25%);
    }
    70% {
        -webkit-transform: translate(-13px, 30%);
            -ms-transform: translate(-13px, 30%);
             -o-transform: translate(-13px, 30%);
                transform: translate(-13px, 30%);
    }
    90% {
        -webkit-transform: translate(-13px, 60%) scale(1.2, 0.7);
            -ms-transform: translate(-13px, 60%) scale(1.2, 0.7);
             -o-transform: translate(-13px, 60%) scale(1.2, 0.7);
                transform: translate(-13px, 60%) scale(1.2, 0.7);
    }
    100% {
        -webkit-transform: translate(-13px, 60%) scale(1.4, 0.7);
            -ms-transform: translate(-13px, 60%) scale(1.4, 0.7);
             -o-transform: translate(-13px, 60%) scale(1.4, 0.7);
                transform: translate(-13px, 60%) scale(1.4, 0.7);
    }
}
@-o-keyframes playJump {
    0% {
        -webkit-transform: translate(-13px, 60%) scale(1.1, 0.7);
            -ms-transform: translate(-13px, 60%) scale(1.1, 0.7);
             -o-transform: translate(-13px, 60%) scale(1.1, 0.7);
                transform: translate(-13px, 60%) scale(1.1, 0.7);
    }
    10% {
        -webkit-transform: translate(-13px, 30%) scale(0.9, 1.2);
            -ms-transform: translate(-13px, 30%) scale(0.9, 1.2);
             -o-transform: translate(-13px, 30%) scale(0.9, 1.2);
                transform: translate(-13px, 30%) scale(0.9, 1.2);
    }
    20% {
        -webkit-transform: translate(-13px, 15%);
            -ms-transform: translate(-13px, 15%);
             -o-transform: translate(-13px, 15%);
                transform: translate(-13px, 15%);
    }
    40% {
        -webkit-transform: translate(-13px, 10%);
            -ms-transform: translate(-13px, 10%);
             -o-transform: translate(-13px, 10%);
                transform: translate(-13px, 10%);
    }
    50% {
        -webkit-transform: translate(-13px, 10%);
            -ms-transform: translate(-13px, 10%);
             -o-transform: translate(-13px, 10%);
                transform: translate(-13px, 10%);
    }
    55% {
        -webkit-transform: translate(-13px, 18%);
            -ms-transform: translate(-13px, 18%);
             -o-transform: translate(-13px, 18%);
                transform: translate(-13px, 18%);
    }
    60% {
        -webkit-transform: translate(-13px, 20%);
            -ms-transform: translate(-13px, 20%);
             -o-transform: translate(-13px, 20%);
                transform: translate(-13px, 20%);
    }
    65% {
        -webkit-transform: translate(-13px, 25%);
            -ms-transform: translate(-13px, 25%);
             -o-transform: translate(-13px, 25%);
                transform: translate(-13px, 25%);
    }
    70% {
        -webkit-transform: translate(-13px, 30%);
            -ms-transform: translate(-13px, 30%);
             -o-transform: translate(-13px, 30%);
                transform: translate(-13px, 30%);
    }
    90% {
        -webkit-transform: translate(-13px, 60%) scale(1.2, 0.7);
            -ms-transform: translate(-13px, 60%) scale(1.2, 0.7);
             -o-transform: translate(-13px, 60%) scale(1.2, 0.7);
                transform: translate(-13px, 60%) scale(1.2, 0.7);
    }
    100% {
        -webkit-transform: translate(-13px, 60%) scale(1.4, 0.7);
            -ms-transform: translate(-13px, 60%) scale(1.4, 0.7);
             -o-transform: translate(-13px, 60%) scale(1.4, 0.7);
                transform: translate(-13px, 60%) scale(1.4, 0.7);
    }
}
@-moz-keyframes playJump {
    0% {
        -webkit-transform: translate(-13px, 60%) scale(1.1, 0.7);
            -ms-transform: translate(-13px, 60%) scale(1.1, 0.7);
             -o-transform: translate(-13px, 60%) scale(1.1, 0.7);
                transform: translate(-13px, 60%) scale(1.1, 0.7);
    }
    10% {
        -webkit-transform: translate(-13px, 30%) scale(0.9, 1.2);
            -ms-transform: translate(-13px, 30%) scale(0.9, 1.2);
             -o-transform: translate(-13px, 30%) scale(0.9, 1.2);
                transform: translate(-13px, 30%) scale(0.9, 1.2);
    }
    20% {
        -webkit-transform: translate(-13px, 15%);
            -ms-transform: translate(-13px, 15%);
             -o-transform: translate(-13px, 15%);
                transform: translate(-13px, 15%);
    }
    40% {
        -webkit-transform: translate(-13px, 10%);
            -ms-transform: translate(-13px, 10%);
             -o-transform: translate(-13px, 10%);
                transform: translate(-13px, 10%);
    }
    50% {
        -webkit-transform: translate(-13px, 10%);
            -ms-transform: translate(-13px, 10%);
             -o-transform: translate(-13px, 10%);
                transform: translate(-13px, 10%);
    }
    55% {
        -webkit-transform: translate(-13px, 18%);
            -ms-transform: translate(-13px, 18%);
             -o-transform: translate(-13px, 18%);
                transform: translate(-13px, 18%);
    }
    60% {
        -webkit-transform: translate(-13px, 20%);
            -ms-transform: translate(-13px, 20%);
             -o-transform: translate(-13px, 20%);
                transform: translate(-13px, 20%);
    }
    65% {
        -webkit-transform: translate(-13px, 25%);
            -ms-transform: translate(-13px, 25%);
             -o-transform: translate(-13px, 25%);
                transform: translate(-13px, 25%);
    }
    70% {
        -webkit-transform: translate(-13px, 30%);
            -ms-transform: translate(-13px, 30%);
             -o-transform: translate(-13px, 30%);
                transform: translate(-13px, 30%);
    }
    90% {
        -webkit-transform: translate(-13px, 60%) scale(1.2, 0.7);
            -ms-transform: translate(-13px, 60%) scale(1.2, 0.7);
             -o-transform: translate(-13px, 60%) scale(1.2, 0.7);
                transform: translate(-13px, 60%) scale(1.2, 0.7);
    }
    100% {
        -webkit-transform: translate(-13px, 60%) scale(1.4, 0.7);
            -ms-transform: translate(-13px, 60%) scale(1.4, 0.7);
             -o-transform: translate(-13px, 60%) scale(1.4, 0.7);
                transform: translate(-13px, 60%) scale(1.4, 0.7);
    }
}
@keyframes playJump {
    0% {
        -webkit-transform: translate(-13px, 60%) scale(1.1, 0.7);
            -ms-transform: translate(-13px, 60%) scale(1.1, 0.7);
             -o-transform: translate(-13px, 60%) scale(1.1, 0.7);
                transform: translate(-13px, 60%) scale(1.1, 0.7);
    }
    10% {
        -webkit-transform: translate(-13px, 30%) scale(0.9, 1.2);
            -ms-transform: translate(-13px, 30%) scale(0.9, 1.2);
             -o-transform: translate(-13px, 30%) scale(0.9, 1.2);
                transform: translate(-13px, 30%) scale(0.9, 1.2);
    }
    20% {
        -webkit-transform: translate(-13px, 15%);
            -ms-transform: translate(-13px, 15%);
             -o-transform: translate(-13px, 15%);
                transform: translate(-13px, 15%);
    }
    40% {
        -webkit-transform: translate(-13px, 10%);
            -ms-transform: translate(-13px, 10%);
             -o-transform: translate(-13px, 10%);
                transform: translate(-13px, 10%);
    }
    50% {
        -webkit-transform: translate(-13px, 10%);
            -ms-transform: translate(-13px, 10%);
             -o-transform: translate(-13px, 10%);
                transform: translate(-13px, 10%);
    }
    55% {
        -webkit-transform: translate(-13px, 18%);
            -ms-transform: translate(-13px, 18%);
             -o-transform: translate(-13px, 18%);
                transform: translate(-13px, 18%);
    }
    60% {
        -webkit-transform: translate(-13px, 20%);
            -ms-transform: translate(-13px, 20%);
             -o-transform: translate(-13px, 20%);
                transform: translate(-13px, 20%);
    }
    65% {
        -webkit-transform: translate(-13px, 25%);
            -ms-transform: translate(-13px, 25%);
             -o-transform: translate(-13px, 25%);
                transform: translate(-13px, 25%);
    }
    70% {
        -webkit-transform: translate(-13px, 30%);
            -ms-transform: translate(-13px, 30%);
             -o-transform: translate(-13px, 30%);
                transform: translate(-13px, 30%);
    }
    90% {
        -webkit-transform: translate(-13px, 60%) scale(1.2, 0.7);
            -ms-transform: translate(-13px, 60%) scale(1.2, 0.7);
             -o-transform: translate(-13px, 60%) scale(1.2, 0.7);
                transform: translate(-13px, 60%) scale(1.2, 0.7);
    }
    100% {
        -webkit-transform: translate(-13px, 60%) scale(1.4, 0.7);
            -ms-transform: translate(-13px, 60%) scale(1.4, 0.7);
             -o-transform: translate(-13px, 60%) scale(1.4, 0.7);
                transform: translate(-13px, 60%) scale(1.4, 0.7);
    }
}









.faq {

}

.faq .accordion .card {
    margin-bottom: 30px;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion .card-header {
    border-radius: 5px;
    border-bottom: none;
    position: relative;
    background: #FBF4DE;
    padding: 0px;
}

.accordion button:before {
    height: 15px;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    width: 0px;
    right: auto;
    left: 0;
}

.accordion button[aria-expanded="true"]:before {
    width: 100%;
}

.accordion .card-body {
    font-size: .875rem;
    font-weight: 300;
    padding: 2rem;

    -webkit-box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.08);
}



.accordion button {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: transparent;
    position: relative;
    width: 100%;
    cursor: pointer;
    padding: 1rem 1.25rem;
    text-align: left;
    padding-right: 70px;
}

.accordion button:after {
    content: '+';
    width: 40px;
    height: 40px;
    line-height: 36px;
    border: 2px solid #FF3465;
    background: #FF3465;
    color: #fff;
    border-radius: 25px;
    text-align: center;
    -webkit-box-shadow: 0 7px 17px 0 rgba(255, 52, 101, 0.75);
    box-shadow: 0 7px 17px 0 rgba(255, 52, 101, 0.75);
    display: block;
    position: absolute;
    right: 1.25rem;
    top:50%;
    margin-top: -20px;

    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.accordion button[aria-expanded="true"]:after,
.accordion button:hover:after {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid #fd5f85;
    background: #fd5f85;
}

.accordion button[aria-expanded="true"]:after {
    content: '-';
}





.safe {
    /*margin-bottom: -100px;*/
}


.safe-inner {
    position: relative;
    padding: 5rem 2rem 7rem;
    background: url(../images/bg-grass.png) center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    max-width: 825px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}


.safe-fix {
    /*position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);*/
    position: relative;
    /*left: 0;
    right: 0;*/
    z-index: 2;
    padding: 2rem 2rem;
    max-width: 650px;
    width: 100%;
    margin: 0px auto;
    border-radius: 5px;
    overflow: hidden;

    /*background: linear-gradient(140deg, 
        rgba(0, 0, 0, 0.58), 
        rgba(0, 0, 0, 0.5), 
        rgba(150, 150, 150, 0.5), 
        rgba(0, 0, 0, 0.5)
    );*/

    -webkit-box-shadow: inset 0 0 2px #fff, 0 10px 30px rgba(0,0,0,0.4);
            box-shadow: inset 0 0 2px #fff, 0 10px 30px rgba(0,0,0,0.4);
}

.safe-fix:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: #000;
    opacity: .2;

}

.safe-fix:after {
    content: '';
    background: url(../images/bg-grass-min.png) ;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 825px auto;
    position: absolute;
    z-index: 1;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-position: center -70px;

    -webkit-filter: blur(2px);
         -o-filter: blur(2px);
            filter: blur(2px);
}

.safe-fix .section-head,
.safe-fix .safe-text {
    position: relative;
    z-index: 3;
}

.safe-inner .section-title {
    font-weight: 900;
}


.safe-text {
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 300;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}

.safe-icon {
    width: 70px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 4;
}

.safe-icon img {
    width: 100%;
}








.family {
    min-height: 400px;
    background: #fff;
    position: relative;
}

.family .container {
    position: relative;
    z-index: 3;
}

.family img {
    width: 50%;
    display: block;
    margin: 20px auto 0;
}

.family:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(235,248,231,1);
    background: -moz-linear-gradient(top, rgba(235,248,231,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(235,248,231,1)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(top, rgba(235,248,231,1) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(top, rgba(235,248,231,1) 0%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(top, rgba(235,248,231,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(235,248,231,1) 0%, rgba(255,255,255,0) 100%);
}

.family-text {
    font-size: .875rem;
    font-weight: 300;
}





/*------------------------------------------------------------------------------------------*/
/* VENDOR STYLE */
/*------------------------------------------------------------------------------------------*/
.fancy-modal {
    display: none;
}


.fancy-modal {
    max-width: 920px;
    width: 100%;
    /*padding: 3.25rem 2rem 7rem;*/
    border: none;
    background: #fff url(../images/bg-30.png) 50% 50% no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 0px;
}


.fancybox-slide video {
    padding: 0;

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


#success-form {
    background: rgba(235, 248, 230, 1); 
}

.form-inner {
    padding: 3.25rem 2rem 3rem;
}

.fancy-modal .form-group {
    max-width: 300px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.fancy-modal .form-group {
    margin-bottom: 20px;
}

.fancy-modal .form-control {
    border-color: #000;
}

.form-title {
    font-size: 3rem;
}


.form-meta {
    font-size: .875rem;
}

.slick-slide {
    outline: none;
}

.slick-arrow {
    border:none;
    padding: 0px;
    position: absolute;
    z-index: 10;
    top:50%;
    cursor: pointer;    
    text-align: center;

    /*border: 2px solid #675444;*/
    background: #675444;
    color: #fff;
    border-radius: 50%;

    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: .75rem;

    cursor: pointer;

    -webkit-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
}

.slick-arrow:hover {
    background: #a4e700;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-dots {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    list-style-type: none;
    padding: 0;
    margin: 0;
}

.slick-dots li {
    margin: 0 7px;
    line-height: 0;
    font-size: 0px;
}

.slick-dots button {
    width: 15px;
    height: 15px;
    opacity: 1;
    background-color: #fff;
    border: 2px solid #cecece;
    padding: 0px;
    font-size: 0px;
    line-height: 0px;
    border-radius: 50%;
    cursor: pointer;    

    -webkit-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}

.slick-dots li button:hover,
.slick-dots li.slick-active button {
    background: #675444;
    border: 2px solid #cecece;
    opacity: 1;
}


.up-btn {
    position: fixed;
    z-index: 27;
    right: 15px;
    bottom: 4.5rem;
    display: none;
    width: 50px;
    height: 50px;
    background: url(../images/svg/outlined.svg) center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    color: #fff;
    line-height: 65px;
    font-family: initial;
    font-size: 52px;
    text-align: center;

    -webkit-transition: all .17s ease-in-out;
         -o-transition: all .17s ease-in-out;
            transition: all .17s ease-in-out;
}

a.mPS2id-highlight{ 
    background: transparent; 
}



/*[class*="ymaps-2"][class*="-ground-pane"] {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(100%);
}
*/

/*------------------------------------------------------------------------------------------*/
/* PAGE STYLE */
/*------------------------------------------------------------------------------------------*/










/*------------------------------------------------------------------------------------------*/
/*  MEDIA QUERIES */
/*------------------------------------------------------------------------------------------*/

/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
    .step {
        background-position: 50% 50%;
    }
}

/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {

    .page-header-inner {
        background: #fff;
        padding: 15px 0;
    }

    .page-header.sticky .page-header-inner {
        padding: 10px 0;
        background: #fff;
        -webkit-box-shadow: 0px 7px 17px rgba(0,0,0,.15);
                box-shadow: 0px 7px 17px rgba(0,0,0,.15);
    }

    .phone {
        font-size: .875rem;
        line-height: 1.25rem;
    }

    .hotel {
        overflow: hidden;
    }

    .hotel-inner {
        max-width: 100%;
        padding-bottom: 70px;
    }
    
    .flex-row-reverse .room-inner,
    .room-inner {
        padding: 2rem;
    }

    .price-item {
        max-width: 350px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }


    .review-item_big {
        margin-top: 0;
        margin-right: auto;
    }

    .review-item_right:after {
        left:20%;
    }

    .review-item_right .review-body {
        max-width: 400px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .review-item_md {
        margin-top: 0px;
    }

    .webcam-inner {
        margin-bottom: 30px;
    }

    .action-title {
        font-size: 4.5rem;
    }

    .step-item_1, .step-item_5,
    .step-item_2, .step-item_4 {
        -webkit-transform: translateX(0%);
            -ms-transform: translateX(0%);
             -o-transform: translateX(0%);
                transform: translateX(0%);
    }

    .step-item {
        float: none;
        text-align: left;
        padding-left: 30px;
    }

    .step-icon {
        margin-left: 0px;
        margin-right: 20px;
    }

    .step-num {
        left: -10px;
        right: auto;
    }

    .contacts-inner {
        margin-bottom: 30px;
    }


    /*.safe-inner {
        padding: 30px 30px 0;
    }*/

    .safe-fix {
        max-width: 470px;
    }

    .safe-fix:after {
        background: url(../images/bg-grass-min.png) center no-repeat;
        -webkit-background-size: auto 150%;
        background-size: auto 150%;
    }


    .sticky-hide {
        display: none;
    }



    /*V 1.*/
    /*.navbar-collapse {
        position: absolute;
        right: -145px;
        top: 100%;
        background: url(../images/fish-bg-2.png) 50% 0% no-repeat;
        -webkit-background-size: auto 100%;
        background-size: auto 100%;
        padding: 1rem 1rem;
        z-index: 10;
        text-align: center;
    }

    .navbar-nav .nav-item {
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .navbar-nav .nav-item:first-child .nav-link,
    .navbar-nav .nav-item:last-child .nav-link {
        background: transparent;
    }

    .navbar-nav .nav-item:first-child .nav-link {
        padding-left: 5px;
        padding-right: 5px;
    }

    .navbar-nav .nav-link {
        background: #000;
        color: #fff !important;
        border-radius: 50%;
    }

    .navbar-nav .nav-link:after {
        content: none;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        font-size: 1.25rem;
        line-height: 3rem;
    }

    .navbar-nav {
        padding-bottom: 0px;
        padding-top: 12px;

        width: 300px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 5px;
        padding-bottom: 5px;
        display: inline-block;
    }

    .navbar-nav .nav-item:last-child {
        margin-top: 0px;
    }
    

    .navbar-nav .nav-item:first-child .nav-link:hover,
    .navbar-nav .nav-link:hover {
        background: #FF3465;
    }
*/


    /*V 2.*/
    .navbar-collapse {
        position: absolute;
        right: 0px;
        left: 0px;
        top: 100%;
        background: #fff;
        padding: 2rem 1rem;
        margin-top: 10px;
        z-index: 10;
        text-align: center;
        border-radius: 5px;
        border: 2px solid #fbf4de;
        max-width: 300px;
        width: 100%;
        margin-left: auto;
    }

    .navbar-nav .nav-item {
        padding-top: 4px;
        padding-bottom: 4px;
    }

    

    .navbar-nav .nav-link {
        display: inline-block;
    }

    .navbar-expand-lg .navbar-nav .nav-link:hover {
        color: #FF3465;
    }

    .navbar-expand-lg .navbar-nav .nav-link.text-primary:focus, 
    .navbar-expand-lg .navbar-nav .nav-link.text-primary:hover {
        color: #FF3465 !important;
    }

    
    .intro-item:before {
        width: 100%;
    }


    .hotel .slider:before {
        content: none;
    }

    .contacts-inner {
        text-align: center;
    }



    .fancy-modal {
        background: #fff url(../images/bg-30.png) 100% 0% no-repeat;
        -webkit-background-size: 50%;
        background-size: 50%;
    }

    .navbar,
    .page-header {
        overflow: visible;
    }

    /*.page-header-inner {
        overflow: hidden;
    }*/


    .wow {
        opacity: 1 !important;
        -webkit-animation: none !important;
             -o-animation: none !important;
                animation: none !important;
    }

}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .action {
        -webkit-background-size: auto;
        background-size: auto;
        background-position: 100% 50%;
        min-height: inherit;
    }

    .action-title {
        font-size: 2.5rem;

    }

    .action-meta {
        font-size: 1rem;
        margin-bottom: 30px;
        margin-top: 20px;
    }

    /*.action-inner {
        text-align: center !important;
    }*/

    .safe-text {
        max-width: 100%;
    }

    .safe-inner {
        padding: 0px;
        background: transparent;
    }

    .safe-inner>img {
        display: none;
    }

    .safe-fix {
        position: relative;
        top:0;
        -webkit-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    /*.safe-inner>img {
        display: none;
    }
*/

    .family img {
        margin: 20px 0 0 auto;
    }

    .review-text {
        font-size: .75rem;
    }

    .review-item {
        padding: 4rem 3rem 6rem;
    }

    .review-head {
        font-size: 2rem;
        line-height: 2.5rem;
    }


    .intro-title {
        font-size: 2rem;
        max-width: 60%;
    }

    .intro-meta {
        font-size: .875rem;
        margin-bottom: 20px;
    }

    .intro-item {
        height: 550px;
    }
    
    .intro .slick-dots,
    #intro-control {
        bottom: 30px;
    }

    .action-thumb {
        margin: 50px auto 50px;
    }



    .webcam {
        background: url(../images/bg-17-min.jpg) center no-repeat;
        -webkit-background-size: cover;
        background-size: cover;
    }

    .action {
        background: #ffe9ba;
    }

    .step {
        background: url(../images/bg-12-min.jpg) 50% 50% no-repeat;
        -webkit-background-size: cover;
        background-size: cover;
    }

    /*.q {
        background: url(../images/bg-3-min.jpg) center no-repeat;
        -webkit-background-size: cover;
        background-size: cover;
    }*/


    .accordion button {
        font-size: 1.25rem;
    }


    .fancy-modal {
        background: #fff;
    }

    .video-fix .section-title {
        display: none;
    }

    .video-fix .btn-play {
        max-width: 0 auto;
    }
}

/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .phone {
        font-size: .75rem;
    }

    .contact-icon {
        font-size: 28px;
        margin-right: 5px;

        display: none;
    }

    .navbar-brand {
        height: 52px;
        font-size: .75rem;
        margin-right: 15px;
    }

    .navbar-brand span {
        line-height: 1rem;
    }

    /*.social-list {
        display: block;
       
    }

    .page-header .social-list {
        width: 42px;
    }

    .page-header .social-list .list-inline-item:not(:last-child) {
        margin-right: 0px;
        margin-bottom: 5px;
    }*/

    .page-header .social-link {
        font-size: .875rem;
        width: 30px;
        height: 30px;
        line-height: 28px;
    }
    
    .btn {
        min-width: 200px;
    }


    .section-title {
        font-size: 2rem;
    }

    .section-meta {
        font-size: 1rem;
    }

    .section-head {
        margin-bottom: 15px;
    }


    .step-item {
        padding-left: 0px;
    }
    
    .step-inner {
        width: 100%;
    }

    .step-num {
        left: 25px;
    }

    .contact-xl .phone {
        font-size: 2rem;
    }


    .navbar-collapse {
        max-width: 100%;
    }


    .section {
        padding-top: 40px;
        padding-bottom: 40px;
    }


    .room-item .btn {
        width: 100%;
    }

    .review-item {
        background: #ffe170;
        border-radius: 10%;
        padding: 3rem 1rem 2rem;
        margin-bottom: 30px;
    }

    .review-item_right {
        background: #ffe170;
        border-radius: 10%;
    }
    
    .review-item_right:after,
    .review-item:after {
        left: 0;
        top: 0;
    }


    /*.action {
        background: url(../images/bg-14-min.jpg) right no-repeat;
        -webkit-background-size: cover;
        background-size: cover;
    }*/

    .action-thumb {
        margin-bottom: 15px;
    }

    .action-meta {
        padding-left: 4rem;
    }

}

/*image for review*/
.img-rev {
    margin: 30px;
    max-width: 85%;
}

/* The end. 2019. With ❤ from SEV. */