﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

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

:root {
    font-family: 'Roboto', sans-serif;
    --pink: #EC619F;
    --green: #24A639;
}

html {
    font-size: 15px;
    overflow-x: hidden
}

body {
    background: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif !important;
    line-height: 1.9em
}

p {
    font-size: 1rem;
    line-height: 2rem
}

a {
    text-transform: none;
    color: #404040;
    cursor: pointer
}

a:hover {
    color: #404040;
    text-decoration: none
}

ul {
    list-style: none
}

li {
    color: #404040
}

.divider {
    width: 2.5rem;
    font-weight: 700;
    color: dimgray;
    margin: 20px 0
}

.btn {
    background-color: #ec63a0;
    margin: 1rem 0;
    color: #fff;
    padding: 1rem
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px
    }
}

#loader-section {
    z-index: 999999;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0
}

#loader-section .loader {
    border: 2px solid #e3e3e3;
    border-top: 2px solid #f39;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -150px 0 0 -150px;
    width: 300px;
    height: 300px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite
}

#loader-section .image {
    position: absolute;
    max-width: 250px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

#loader-section .image img {
    width: 100%
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

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

.curtain {
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: transparent;
    display: flex;
    position: fixed
}

.top-of-header {
    background-color: #EC619F;
    font-size: 13px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.top-of-header .welcome-msg {
    color: White;
    font-weight: 900;
    letter-spacing: 1px;
}

.right-contact-item:first-child {
    padding-right: 5px
}

.top-of-header .top-right-contact a {
    color: White;
    display: inline-flex;
    align-items: center;
    font-weight: 500;

}

.top-of-header .top-right-contact a i {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 5px;
    color: dimgray;
    margin-right: 5px;
}

header {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 9000;
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, .75);
    max-width: 1200px;
    border-radius: 20px;
    border-bottom: 10px solid #24A639;
    transition: .3s;

}

header.affix {
    top: 0;
    max-width: 100%;
    border-radius: 0;
}

header.affix .top-of-header {
    height: 0;
    padding: 0;
    opacity: 0;
}

.welcome-msg, .top-right-contact a, .nav-item a, .tooltip-item {
    color: dimgray
}

.nav-item {
    background-color: #fff;
    display: flex;
    align-self: baseline;
    margin: auto;
    font-size: 14px;
    font-weight: 500
}

.navbar {
    padding: 10px 0
}

.navbar-nav {
    padding-right: 0;
    display: flex;
    flex-direction: row
}

.navbar-nav li:last-child {
    margin-right: 0
}

.navbar-brand {
    padding-top: 0
}

#toggle-menu {
    width: 300px;
    left: auto;
    right: -300px;
    transition: .3s;
    z-index: 9001
}

.toggle-menu-button {
    display: none;
    cursor: pointer
}

.toggle-menu-button .line {
    position: relative;
    display: block;
    width: 30px;
    height: 3px;
    margin-bottom: 6px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    background: var(--green);
    -webkit-transition: .4s;
    transition: .4s
}

.reservation {
    display: flex;
    opacity: .9;
    border-radius: 0 0 .5rem .5rem;
    border: 2px solid dimgray;
    transition: .3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.reservation a {
    padding: 1rem;
    transition: .3s;
    letter-spacing: .5px;

}

.reservation:hover {
    background-color: mediumturquoise;
    border-color: transparent;
}

.reservation:hover a {
    color: white;
}

.tooltip-link {
    position: relative;
    padding: 23.5px 0
}

.tooltip-menu::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #fff transparent
}

.tooltip-menu {
    position: absolute;
    background-color: #fff;
    width: 200%;
    left: 0;
    z-index: 99;
    padding-top: 5px;
    top: 10rem;
    transition: all .75s;
    opacity: 0;
    visibility: hidden
}

.tooltip-item {
    font-size: 1rem;
    display: flex;
    padding: 2px 8px
}

.nav-item.tooltip-link:hover .tooltip-menu {
    opacity: 1;
    visibility: visible;
    top: 5.25rem;
    border-radius: 2px
}

.main-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.main-slider-item {
    height: 100vh;

}

.main-slider-item:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);

}

#main-slider {
    position: relative;
    height: 100vh;

}

#main-slider .slogan-area {
    position: absolute;
    left: 50%;
    bottom: 150px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 992px;
    text-align: center;
}

#main-slider .slogan-area h1 {
    text-shadow: 0 0 30px rgba(0, 0, 0, 1);
    color: White;
    font-weight: 600;
    font-size: 54px;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 3px solid white;
    margin-bottom: 30px;
}

#main-slider .slogan-area h1 strong {
    display: inline-block;
    border-radius: 2px;
    padding: 4px 10px;
    margin: 4px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    text-shadow: 0 0 20px rgba(0, 0, 0, .5);
    font-weight: 900;

}

#main-slider .slogan-area h1 strong:first-of-type {
    background: var(--green);
}

#main-slider .slogan-area h1 strong:last-of-type {
    background: var(--pink);
}

#main-slider .slogan-area .social-medias a {
    padding: 6px 14px;
    background: white;
    color: dimgray;
    margin: 4px 10px;
    height: auto;
    display: inline-flex;
    align-items: center;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, .25);
    border-top: 6px solid dimgray;
}

#main-slider .slogan-area .social-medias a i {
    font-size: 20px;
    background: transparent;
    color: black;
    text-align: center;
    border: none;
    padding: 0;
    margin-right: 5px;
}

.main-slick-slider {
}

.left-arrow {
    border: hidden;
    font-size: 30px;
    height: 7rem;
    width: 2rem;
    align-content: center;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 99;
    transform: translateY(-50%);
}

.right-arrow {
    border: hidden;
    font-size: 30px;
    height: 7rem;
    width: 2rem;
    align-content: center;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 99;
    transform: translateY(-50%);

}

#about {
    margin: 8rem 0;
    height: auto
}

.about-section {
    display: flex;
    flex-wrap: wrap
}

.about section img {
    object-fit: contain
}

.about-content {
    color: #404040;
    border: hidden
}

.section-title {
    display: block;
    font-stretch: condensed;
    color: #404040 !important;
    opacity: .85;
    font-weight: 700;
    font-size: 55px;
    margin-bottom: 3rem
}

.subtitle {
    font-size: 15px;
    margin-bottom: 3rem
}

.service {
    padding: 5px 0
}

.btn:hover {
    background-color: mediumaquamarine
}

#rooms {
    margin: 5rem 0;
    background-color: rgba(192, 192, 192, .2);
    opacity: .8;
    height: auto
}

.rooms-section {
    padding-top: 2rem;
    position: relative
}

.right-title {
    position: absolute;
    bottom: -2rem;
    right: 0;
    margin-bottom: 1rem
}

.img-top {
    width: 100%;
    min-height: 20rem
}

.rooms-card-item {
    position: relative
}

.card-price {
    position: absolute;
    right: 10%;
    top: 55%;
    background-color: rgba(255, 255, 255, .8);
    padding: .5rem;
    border: hidden;
    align-content: center
}

.icon-column {
    position: absolute;
    left: 10%;
    top: 45%
}

.icon-column-item {
    display: flex;
    position: relative
}

.icon-column i {
    display: block;
    margin-bottom: .2rem;
    padding: .5rem;
    border: hidden;
    background-color: rgba(255, 255, 255, .8);
    align-content: center
}

.icon-description {
    display: none;
    margin: 2px 0 2px 10px;
    text-align: center;
    padding: 2px;
    position: absolute;
    left: 100%;
    top: 0
}

.card-title, .item-title, .room-title {
    font-weight: 700
}

.icon-description::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: -10px;
    top: 10px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #fff transparent transparent
}

.icon-column-item:hover .icon-description {
    left: 100%;
    display: inline-block;
    width: max-content;
    background-color: #fff;
    opacity: .8;
    position: absolute;
    top: 0
}

.item-body {
    height: 8rem;
    border: 1px solid #efefef;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

#services {
    height: auto;
    margin: 1rem 0
}

#services figure {
    position: relative
}

.services-img {
    opacity: .8
}

.slider-section {
    margin-top: 2rem
}

.services-figcaption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: #fff;
    font-weight: 700;
    z-index: 100
}

#services-descriptions {
    margin: auto
}

.description.slick-current {
    background-color: var(--pink);
    color: #fff;
    border-color: #c4e6f6;
    transition: .3s;

}

.slick-current .service-icon {
    color: white
}

.description {
    border: 1px solid #EFEFEF !important;
    border-radius: 2px;
    padding: 10px;
    display: flex !important;
    flex-direction: row;
    margin-bottom: 1rem;
    outline: none;
    cursor: pointer
}

.service-icon {
    display: flex;
    font-size: 2rem;
    margin-right: .5rem;
    align-items: center;
    color: var(--pink);
    transition: .3s;
    border-right: 2px solid;
    min-width: 50px;
    justify-content: center;
}

.service-content > p {
    display: flex;
    font-size: .9rem
}

#gallery {
    height: auto;
    margin: 7rem 0
}

.gallery-section {
    position: relative
}

.gallery-slider-item {
    margin-right: 1rem;
    border: 1px solid transparent;
    border-radius: 3rem
}

.gallery .row {
    justify-content: space-evenly
}

.lb-number {
    display: none !important
}

.left-arrow2 {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    position: absolute;
    border: hidden;
    border-radius: 50%;
    top: 60%;
    left: -3rem;
    opacity: .8;
    align-items: center
}

.right-arrow2 {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    position: absolute;
    border: hidden;
    border-radius: 50%;
    top: 60%;
    right: -2rem;
    opacity: .8;
    align-items: center
}

#blog {
    height: auto;
    margin: 7rem 0
}

.blog-section {
    position: relative
}

.card {
    margin: 1rem 0
}

.section-title.social-media-title {
    margin-top: 3rem
}

footer {
    color: #afafaf;
    height: auto;
    margin: 2rem 0 0 0;
    border-top: 10px solid var(--pink);
}

footer .footer-logo {
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
    padding: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

footer .footer-logo p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.top-of-footer {
    padding: 3rem 0
}

.bottom-of-footer {
    padding: 1rem 0;
    background: dimgray;
}

.social-media {
    display: inline-block;
    height: 2rem;
    border-radius: 2px
}

.social-media i {
    color: #fff;
    background-color: #afafaf;
    font-size: 1rem;
    padding: 10px;
    border: 1px solid #afafaf;
    border-radius: 2px
}

.footer-menu h4 {
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid;
    color: var(--green);
}

.footer-submenu {
    display: flex;
    flex-direction: column
}

.footer-submenu-item {
    padding: 2px 0
}

.footer-submenu-item a {
    color: #afafaf
}

.back-to-top {
    background: var(--green);
    height: 50px;
    width: 50px;
    border-radius: 4px;
    position: fixed;
    bottom: 60px;
    right: 10px;
    text-align: center;
    box-shadow: 0 5px 10px 0 rgba(35, 50, 56, .15);
    transition: all .4s ease;
    z-index: 999
}

.back-to-top i {
    color: #fff;
    line-height: 50px;
    font-size: 22px
}

#gradient-sub-header {
    margin: 105px 0 3rem 0;
    height: 20vh;
    width: 100%;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to right, rgba(240, 100, 150, .5), rgba(140, 200, 208, .5)), url(../../assets/images/breadcrumb.jpg)
}

.inner-header {
    position: relative
}

.header-title {
    position: relative;
    font-weight: 700;
    left: 0;
    z-index: 99
}

.breadcrumb {
    background-color: transparent;
    position: relative;
    left: 0;
    z-index: 99;
    padding: 0
}

.main-item a {
    color: #fff
}

.sub-item {
    color: #edcb9a
}

.breadcrumb-item.sub-item::before {
    display: none
}

.about {
    margin-top: 5rem
}

.in-the-press-img {
    border-radius: 10%
}

.contact-infos {
    margin: 10rem 0 3rem 0
}

.contact-item .row {
    border: 1px solid #e3e3e3;
    font-size: 12px;
    margin-bottom: 1rem;
    display: flex;
    align-content: center;
    justify-content: space-between
}

.contact-item .row .col-11 {
    font-size: 13px;
    margin: auto
}

.contact-item .row .col-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0;
    background-color: #e3e3e3;
    color: dimgray
}

.form-control {
    background-color: #f7f8f9;
    height: 3rem;
    margin: 1rem 0
}

.custom-file-label {
    background-color: #f7f8f9;
    height: 3rem
}

.custom-file-label::after {
    height: 3rem
}

.social-media-icons a {
    border: 1px solid #e3e3e3;
    margin: 5px;
    padding: 8px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center
}

.google-map {
    margin: 1rem 0 2.5rem 0
}

.write-button {
    display: flex
}

.justify-content-evenly {
    justify-content: space-evenly
}

.comment-item {
    border: 1px solid #efefef;
    border-radius: 2px;
    padding: 20px;
    text-align: center;
    margin: 2rem 0
}

.date {
    display: inline-block;
    border: 1px solid #E3E3E3;
    padding: .5rem .5rem;
    margin: 2rem auto
}

.year {
    font-size: 2rem
}

.author {
    display: flex;
    justify-content: center;
    margin: auto;
    font-weight: 700
}

.write-comment-title {
    color: #E3E3E3;
    font-size: 2rem
}

.comment-form {
    margin-top: 3rem
}

.form-group {
    margin: 1rem 0
}

.rooms {
    margin-top: 10rem
}

.room-card {
    margin: 4rem 0;
    border: 1px solid #E3E3E3
}

.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-features {
    margin-top: 1rem
}

.room-cards-item {
    margin: 1rem 0
}

i.room-services {
    color: goldenrod
}

.room-price {
    display: flex;
    flex-direction: column;
    margin: auto
}

.dropcap:first-letter {
    float: left;
    color: #edcb9a;
    font-size: 7em;
    line-height: 5rem;
    margin: 0 20px 5px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 700
}

.dropcap {
    margin: 3rem 0
}

.services-list {
    margin: 3rem 0
}

.fa-check {
    color: green
}

.with-border {
    max-width: 30%;
    border: 1px solid #e3e3e3;
    padding-left: 0;
    padding-right: 0;
    margin: 1.5rem .5rem
}

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

.slider-nav-item img {
    width: 90%;
    height: auto
}

.room-content {
    padding: 30px 20px;
    background: linear-gradient(to bottom, dimgray, var(--pink));
    margin: 3rem 0;
    position: relative;
}

.room-content p {
    color: white;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 500;
}

.room-slider {
    position: relative;
    margin: 3rem 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, .25);
}

.room-features .section-title, .other-rooms .section-title {
    border-left: 4px solid var(--pink);
    padding-left: 10px;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    display: grid
}

.blog-btn {
    border-radius: 2px;
    display: flex;
    width: 7rem;
    margin: 1rem auto
}

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

.card {
    border: none
}

.card-body {
    border: 1px solid #E3E3E3
}

.blog-img {
    margin: 4rem auto;
    display: flex;
    width: 100%;
    justify-content: center
}

.blog-details {
    margin-bottom: 2rem
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    color: darkgray
}

.blog-subtitle {
    font-size: .8rem;
    color: darkgray
}

.blog-form {
    margin-top: 5rem
}

.place-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px
}

.place-img {
    position: relative
}

.img-title {
    font-size: 2rem;
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    color: #fff
}

.blockquote {
    display: flex;
    position: relative;
    padding: 10px 15px;
    padding-top: 5px;
    margin: 1rem 0;
    background: #efefef;
    border-radius: 0 2px 2px 0;
    opacity: .9
}

.quote-left {
    position: absolute;
    top: 10px;
    left: 5px;
    font-size: 3rem;
    color: darkgray;
    padding-left: .5rem
}

.quote-right {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 3rem;
    color: darkgray;
    padding-right: .5rem
}

.blockquote-content {
    font-size: 17px;
    padding: 1rem 3rem 1rem 4rem;
    color: dimgray
}

.content {
    font-size: 1rem;
    margin: 1rem 0
}

.content-title {
    font-size: 2rem;
    margin: 2rem 0;
    color: darkgray
}

.content-subtitle {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: darkgray
}

.direction {
    margin: 4rem 0
}

.direction:first-child {
    margin-top: 10rem
}

.direction-title {
    font-size: 2rem;
    margin-bottom: 2rem
}

.reservation-infos {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1rem;
    border: 1px solid #e3e3e3;
    background-color: #fbfbfb;
    border-radius: 10px;
    margin-bottom: 3rem
}

.buttons {
    padding-left: 2rem;
    font-size: 20px;
    height: 20px;
    width: 20px
}

.buttons i {
    cursor: pointer
}

.dropdown-item:active, .dropdown-item:hover {
    color: #212529;
    background-color: transparent
}

.room-services i {
    border: 1px solid #e3e3e3;
    background-color: #fff;
    color: #afafaf;
    font-size: 11px;
    width: 30px;
    height: 30px;
    padding-left: 7px;
    line-height: 30px
}

.room-services i:hover {
    background-color: #e3e3e3
}

.price-btn {
    margin: auto auto 2rem 0
}

.dropdown-toggle {
    display: flex;
    height: 3rem;
    margin: 1rem 0;
    background-color: #f7f8f9;
    align-items: center;
    border-radius: .25rem;
    border: 1px solid #ced4da;
    position: relative
}

.dropdown-menu {
    background-color: #fff;
    width: 50%;
    border: 1px solid #e3e3e3;
    position: absolute;
    left: 2rem !important;
    top: 1rem !important;
    padding: 5px 5px
}

.dropdown-item {
    display: flex
}

.dropdown-menu::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #e3e3e3 transparent
}

.active-content {
    display: block
}

.dropdown-row {
    padding: .5rem 0
}

.active-toggle .line1 {
    transform: translateY(9px) rotate(-135deg)
}

.active-toggle .line2 {
    opacity: 0
}

.active-toggle .line3 {
    transform: translateY(-9px) rotate(-45deg)
}

.mm-menu_offcanvas {
    display: block
}

.mm-navbar {
    display: flex !important;
    background-color: lightgray;
    height: 5rem;
    align-items: center;
    justify-content: center
}

.mm-panel {
    padding: 75px 15px 0 15px;
}

.mm-btn {
    margin-top: .5rem
}

.mm-navbar__title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase
}

.toggle-menu-items, .toggle-sub-menu {
    padding: 0;
    margin: 0 !important;
    line-height: 30px
}

.toggle-menu-item, .toggle-sub-menu-item {
    font-weight: 700;
    color: gray;
    font-size: 15px
}

.swal2-container {
    z-index: 9996 !important;
}

.toggle-menu-item::after, .toggle-sub-menu-item::after {
    left: 0
}

.toggle-menu-item.reservation {
    border-radius: 0;
    padding: 0;
    margin: 1rem
}

.toggle-menu-item.reservation::after {
    display: none
}

.modal {
    z-index: 9995;
}

.modal-backdrop {
    z-index: 9994;
}
.about-videos .video {
    position: relative;
    margin: 30px 0;
}
.about-videos .video:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 50%;
    height: 40px;
    background: linear-gradient(to bottom, dimgray, gray);
    border-radius: 10px;
    z-index: -1;
}
.about-videos .video .youtube-embeded {
    background-color: #000;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
    -webkit-box-shadow: 0 0 20px #182834;
    box-shadow: 0 0 20px #182834;
    border-radius: 5px 5px 12px 12px;
}
.about-videos .video .youtube-embeded img {
    width: 100%;
    top: -16.82%;
    left: 0;
    opacity: 0.7;
}
.about-videos .video .youtube-embeded .play-button {
    width: 90px;
    height: 60px;
    background-color: #333;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0.8;
    border-radius: 6px;
}
.about-videos .video .youtube-embeded .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26px;
    border-color: transparent transparent transparent #fff;
}
.about-videos .video .youtube-embeded img,
.about-videos .video .youtube-embeded .play-button {
    cursor: pointer;
}
.about-videos .video .youtube-embeded img,
.about-videos .video .youtube-embeded iframe,
.about-videos .video .youtube-embeded .play-button,
.about-videos .video .youtube-embeded .play-button:before {
    position: absolute;
}
.about-videos .video .youtube-embeded .play-button,
.about-videos .video .youtube-embeded .play-button:before {
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
.about-videos .video .youtube-embeded iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

@media screen and (max-width: 1440px) {
    #main-slider .slogan-area h1 {
        font-size: 48px;
    }
}

@media screen and (max-width: 1200px) {
    .section-title {
        font-size: 40px
    }

    .about-section img {
        margin: auto
    }

    #main-slider .slogan-area h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 992px) {
    #main-slider .slogan-area {
        max-width: calc(100% - 40px);
        bottom: auto;
        top: 150px;
    }

    #main-slider .slogan-area h1 {
        border-bottom: none;
        font-size: 32px;
    }

    .toggle-menu-button {
        display: block;
        float: right
    }

    .room-features {
        margin: 1rem
    }

    .navbar-nav {
        display: none
    }

    .navbar {
        flex-wrap: nowrap
    }

    .contact-infos {
        margin: 5rem 0
    }

    .dropdown-menu {
        width: 70%
    }

    #main-slider {
        margin-top: 85px;
        height: auto;
    }

    .main-slider-item {
        height: calc(90vh - 85px);
    }

    .navbar {
        padding: 3px 0;
    }

    #about {
        margin: 4rem 0;
    }

    .section-title {
        font-size: 36px;
    }

    #gradient-sub-header {
        margin: 85px 0 25px 0;
    }

    .direction:first-child {
        margin-top: 5rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .icon-column {
        left: 5%;
        top: 60%
    }

    .card-price {
        right: 5%;
        top: 70%
    }

}

@media screen and (max-width: 768px) {
    .right-contact-item {
        display: none !important;
    }

    .dropdown-menu {
        width: 90%;
    }

    #main-slider .slogan-area h1 {
        font-size: 24px;
    }

    #main-slider .slogan-area .social-medias a {
        font-size: 14px;
        padding: 5px 10px;
    }

    #main-slider .slogan-area .social-medias a i {
        font-size: 16px;
    }

    .main-slider-item {
        height: calc(80vh - 85px);
    }

    .section-title {
        font-size: 32px;
    }

    .direction:first-child {
        margin-top: 3rem;
    }
}

@media screen and (max-width: 576px) {
    #main-slider .slogan-area h1 {
        font-size: 20px;
    }

    .dropdown-menu {
        width: 100%;
        font-size: 13px
    }

    .buttons {
        font-size: 15px
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 30px;
    }

    .back-to-top i {
        line-height: 40px;
    }

    .main-slider-item {
        height: calc(70vh - 85px);
    }

    .section-title {
        font-size: 28px;
    }

    .direction:first-child {
        margin-top: 2rem;
    }
    header .logo a{
        width: 200px;
    }
}

#wrapper {
    position: relative;
    width: 100%;
    overflow-x: hidden
}