body {
    -webkit-font-smoothing: subpixel-antialiased;
}

body.locked {
    height: 100%;
    overflow: hidden;
}

video {
    display: block;
    will-change: initial;
}

.centered {
    margin: auto;
    display: block;
}

.full_width {
    width: 100%;
}

.full_height {
    height: 100%;
    width: auto;
}

.absolute {
    position: absolute;
    top: 0;
    left: 0;
}

body * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}

.vertical-nav {
    height:auto;
    list-style:none;
    /*width: 100%; ****** MODIFIED ********/
    margin: 20px 0 0 0;  
    z-index: 2;
    right: 0px;
}

.vertical-center {
  margin: 0;
  position: fixed;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vertical-nav li {
    height: 40px;
    margin: 0;
    padding: 5px 5px;
    background-color: #E2DFDD;
    border: none;
    text-align: center;
    display: block;
    float: right;
    clear: both;
    width: 100px; 
}

.vertical-nav li.active {
    background-color: #332613;
    color:#FFFFFF;
}

.vertical-nav li:hover {
    background-color:#332613;
    color:#FFFFFF;
}
.vertical-nav li a {
    font-family: Raleway;
    font-size: 10px;
    
    letter-spacing: 2px;
    padding: 10px 10px;
    display: block;
    text-align: center;
    font-weight: 600;
}
.vertical-nav li a:hover{
    color: #ffffff; 
}

.vertical-nav li.active {
    background-color:#332613;
}
.vertical-nav li.active a {
    color:#ffffff;
}

.vertical-nav li ul {
    display: none;
    margin-top: 10px;
    padding: 0;
}
.vertical-nav li:hover ul {
    display: block;
}


.section-container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x)/ -2);
    margin-left: calc(var(--bs-gutter-x)/ -2);
    
}

.section-container .columns {
    flex: 0 0 auto;
    width: 50%;
    
    
}

.section-container .columns.image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;    
}

.section-container .columns.content .content-container {
    padding: 40px 50px; 
}


.center {
    display: block;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.section-container .columns.content .content-container h5 {
    margin-bottom: 20px;
    margin-bottom: 10px;
    text-align: center;
    font-family: Ostrich;
    font-size: 40px;
    letter-spacing: 1px;
  
    
}

.section-container .columns.content .content-container p {
    font-family: CooperHewitt;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 25px;
    color: #342613;
    text-align: justify;
    
}

#room_selector_new {
    position: fixed;
    left: calc(94.5%);
    z-index: 2;
}



#room_list_new {
    background: #FFFFFF;
    width: 100%;
    position: relative;
}

#room_list_new ul {
    width: 75px;
    margin: auto;
    padding: 10px 15px;
}

#room_list_new ul li a {
    font-family: Raleway;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 10px 0;
    display: block;
    text-align: center;
    font-weight: 500;
}

#room_list_new ul li a:hover {
    color: #ACA196;
}

a.active {
    color: #ffffff;
}

#room_list_new ul li hr {
    width: 20px;
}

.navigation {
    position: fixed;
    display: inline-block; 
    left: calc(76%);
    width: 50px;
    height: 69px;
    background: #5e524a;
    transition: width 0.5s, height 0.5s;
    transition-delay: 0s,0.75s;
    z-index: 100000;
    border-radius: 0px;
    overflow: hidden;
}

.navigation .toggle {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 69px;
    display: flex;
    justify-content: center;
    background: #332613;
    cursor: pointer;
}

.navigation.active {
    
    width: 250px;
    height: 350px;
    background: #5e524a;
    transition: height 0.5s, width 0.5s;
    transition-delay: 0s,0.75s;
}

.navigation .toggle.active {
    background: #5e524a;
}

.navigation .toggle::before {
    content: '+';
    font-family: Raleway;
    color: #FFFFFF;
    font-size: 2em;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 69px;
    transition: 0.5s;
}

.navigation .toggle.active::before {
    transform: rotate(315deg);
}

.has_transition_800_inout_exp {
    -webkit-transition: all 900ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 900ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    will-change: transform, opacity;
}

.has_transition_800_inout {
    -webkit-transition: all 800ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 800ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    will-change: transform, opacity;
}

.has_transition_1600 {
    -webkit-transition: all 1600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all 1600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    will-change: transform, opacity;
}

.has_transition_1200 {
    -webkit-transition: all 1200ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all 1200ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    will-change: transform, opacity;
}

.has_transition_1800 {
    -webkit-transition: all 1800ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all 1800ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    will-change: transform, opacity;
}

.has_transition_1600_inout {
    -webkit-transition: all 1600ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1600ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    will-change: transform, opacity;
}

.has_transition_1000_inout_cubic {
    -webkit-transition: all 1000ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 1000ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
    will-change: transform, opacity;
}

.has_transition_1300_inout_cubic {
    -webkit-transition: all 1300ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 1300ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
    will-change: transform, opacity;
}

.has_transition_600_inout_cubic {
    -webkit-transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
    will-change: transform, opacity;
}

.has_transition_400_inout {
    -webkit-transition: all 400ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 400ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
    will-change: transform, opacity;
}

.has_transition_300_inout {
    -webkit-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
    will-change: transform, opacity;
}

.has_transition_300 {
    -webkit-transition: all 300ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
    transition: all 300ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
    will-change: transform, opacity;
}

.has_transition_1000_inout {
    -webkit-transition: all 1000ms cubic-bezier(0.645, 0.045, 0.355, 1.000) !important;
    transition: all 1000ms cubic-bezier(0.645, 0.045, 0.355, 1.000) !important;
    will-change: transform, opacity;
}

.has_transition_600_inout {
    -webkit-transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1.000) !important;
    transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1.000) !important;
    will-change: transform, opacity;
}

.has_transition_400 {
    -webkit-transition: all 400ms cubic-bezier(0.165, 0.840, 0.440, 1.000) !important;
    transition: all 400ms cubic-bezier(0.165, 0.840, 0.440, 1.000) !important;
    will-change: transform, opacity;
}

.has_transition_600 {
    -webkit-transition: all 600ms cubic-bezier(0.165, 0.840, 0.440, 1.000) !important;
    transition: all 600ms cubic-bezier(0.165, 0.840, 0.440, 1.000) !important;
    will-change: transform, opacity;
}

.has_transition_800 {
    -webkit-transition: all 800ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
    transition: all 800ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
    will-change: transform, opacity;
}

.has_transition_600_cubic {
    -webkit-transition: all 600ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition: all 600ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    will-change: transform, opacity;
}

.has_transition_400_cubic {
    -webkit-transition: all 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition: all 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    will-change: transform, opacity;
}

.has_transition_600_expo {
    -webkit-transition: all 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    will-change: transform, opacity;
}

.has_transition_800_expo {
    -webkit-transition: all 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    will-change: transform, opacity;
}

.transform_centered {
    -webkit-transform-origin: center center!important;
    transform-origin: center center !important;
}

.has_transition_800 {
    -webkit-transition: all 800ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
    transition: all 800ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
    will-change: transform, opacity;
}

.has_transition_1000 {
    -webkit-transition: all 1000ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
    transition: all 1000ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
    will-change: transform, opacity;
}

.has_transition_1000_cubic {
    -webkit-transition: all 1000ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition: all 1000ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    will-change: transform, opacity;
}

.has_transition_1500_cubic {
    -webkit-transition: all 1500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition: all 1500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    will-change: transform, opacity;
}

.has_transition_800_cubic {
    -webkit-transition: all 800ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition: all 800ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    will-change: transform, opacity;
}

.no_transition {
    -webkit-transition: none !important;
    transition: none !important;
}

.horizontal_mirror {
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.button {
    cursor: pointer;
}

.no_width {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.no_height {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.no_events {
    pointer-events: none;
}

.no_margin_left {
    margin-left: 0 !Important;
}

.no_opacity {
    opacity: 0!important;
    pointer-events: none;
}

.top_single {
    opacity: 0 !important;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

.top_double {
    opacity: 0 !important;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

.top_triple {
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
}

.veil {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.6;
    will-change: opacity;
}

.hidden_by_scaleup {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
}

.hidden_by_scaleup_low {
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
    opacity: 0 !important;
    pointer-events: none;
}

.hidden_by_scaling {
    -webkit-transform: scale(0.4) !important;
    transform: scale(0.4) !important;
    opacity: 0;
    pointer-events: none;
}

.hidden_by_scaling_low {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
}

.hidden_by_scaling_ultralow {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
    opacity: 0 !important;
    pointer-events: none;
}

.hidden_by_scaling_invisible {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    opacity: 0 !important;
}

.left_translated {
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
}

.left_translated_low {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    opacity: 0;
}

.right_translated {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
    opacity: 0.8;
}

.container {
    margin: auto;
    width: 800px;
}

.half {
    width: 50%;
    float: left;
    position: relative;
}

.quarter {
    float: left;
    width: 25%;
}

.third {
    float: left;
    width: 33.3333%;
}

.sixty {
    width: 60%;
    float: left;
}

.thirty {
    width: 30%;
    float: left;
}

.fourty {
    width: 40%;
    float: left;
}

.twenty {
    width: 20%;
    float: left;
}

.white_back {
    background: #FFFFFF;
}

.overflow_wrap {
    overflow: hidden;
}

.overflow_wrap .top {
    -webkit-transform: translateY(120%);
    transform: translateY(120%);
}

.covered {
    position: relative;
    overflow: hidden;
}

.covered.full {
    width: 100%;
    height: 100%;
}

.covered.text {
    display: inline-block;
}

.cover {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 100%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 1;
}

.covered .content {
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
    width: auto !important;
    height: 100%;
}

.cover.removed {
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
}

.content.positioned {
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
}

.covered.vertical .cover {
    top: 100%;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    left: 0;
}

.covered.vertical .content {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
}

.covered.vertical .cover.removed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.covered.right .cover {
    left: -100%;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 1;
}

.covered.right .content {
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
    width: auto !important;
}

.cover.grey {
    background: #EDEAE6;
}

.cover.white {
    background: #FFFFFF;
}

.loader {
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 3px solid rgba(198, 191, 178, 0.3);
    border-right: 3px solid rgba(198, 191, 178, 0.3);
    border-bottom: 3px solid rgba(198, 191, 178, 0.3);
    border-left: 3px solid #C6BFB2;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: loaderSpin 1s infinite linear;
    animation: loaderSpin 1s infinite linear;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
    z-index: 1;
}

.loader,
.loader:after {
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

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

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

h1,
h2,
h3,
h4,
h5 {
    font-weight: normal;
}

a {
    text-decoration: none;
    color: #332C26;
}

hr {
    border: none;
    border-top: 1px solid #C7C4C4;
}

.top_30 {
    margin-top: 30px !important;
}

.top_60 {
    margin-top: 60px !important;
}

.top_90 {
    margin-top: 90px !important;
}

.top_120 {
    margin-top: 120px !important;
}

.bottom_30 {
    margin-bottom: 30px !important;
}

.bottom_60 {
    margin-bottom: 60px !important;
}

.bottom_90 {
    margin-bottom: 90px !important;
}

.bottom_120 {
    margin-bottom: 120px !important;
}

.bottom_150 {
    margin-bottom: 150px !important;
}


/**********************************************/

#main {}

#logo_container {
    background: #FFFFFF;
    width: 181px;
    height: 181px;
    position: fixed;
    z-index: 14;
    padding: 3%;
    overflow: hidden;
}

#logo_container.closed {
    width: calc(181px + 6%);
    height: 69px;
    padding: 0;
    height: 69px;
}

#logo {
    position: relative;
    width: 177px;
    height: 177px;
    left: 50%;
    margin-left: -88.5px;
}

#borders {
    position: absolute;
    width: 100%;
    height: 100%;
}

#borders .top {
    width: 100%;
    border-top: 2px solid #362715;
    -webkit-transform-origin: left;
    transform-origin: left;
    position: absolute;
    top: 0;
}

#borders .bottom {
    width: 100%;
    border-bottom: 2px solid #362715;
    -webkit-transform-origin: right;
    transform-origin: right;
    position: absolute;
    bottom: 0;
}

#borders .left {
    height: 100%;
    border-left: 2px solid #362715;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    position: absolute;
}

#borders .right {
    height: 100%;
    border-left: 2px solid #362715;
    -webkit-transform-origin: top;
    transform-origin: top;
    position: absolute;
    right: 0;
}

#logo.no_border {}

#logo_container.closed #logo {}

#logo_container.closed .nap {
    position: absolute;
    top: 5px;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
}

#menu_controller {
    position: absolute;
    width: 25px;
    right: 11%;
    top: 23px;
    z-index: 1;
    cursor: pointer;
}

#menu_bar.hidden #menu_controller {
    -webkit-transform: translateY(117.5px);
    transform: translateY(117.5px);
}

#menu_controller.opened #lines {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

#menu_controller:hover hr._1,
#menu_controller.opened hr._1 {
    width: 26px;
    -webkit-transform: rotate(90deg) translate3d(7px, -1px, 0) !important;
    transform: rotate(90deg) translate3d(7px, 0px, 0) !important;
}

#menu_controller:hover hr._2,
#menu_controller.opened hr._2 {
    opacity: 0;
}

#menu_controller:hover hr._3,
#menu_controller.opened hr._3 {
    -webkit-transform: translate3d(0px, -7px, 0) !important;
    transform: translate3d(0px, -7px, 0) !important;
    width: 26px;
}

#menu_controller hr {
    width: 25px;
    height: 0px;
    border: none;
    border-bottom: 2px solid #362715;
    margin: 0;
    margin-top: 5px;
    margin-left: 0;
}

#logo_container.closed #lines hr {
    -webkit-transition: all 600ms cubic-bezier(0.165, 0.840, 0.440, 1.000) !important;
    transition: all 600ms cubic-bezier(0.165, 0.840, 0.440, 1.000) !important;
}

#menu_bar.hidden #menu_controller hr {
    border-bottom: 1px solid #FFFFFF;
}

#menu_controller hr.hidden {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

#menu_controller hr:first-child {
    margin-top: 0;
}

.nap {
    position: absolute;
    top: 142px;
    /*30px;*/
    right: 18.5px;
}

.luxury {
    position: absolute;
    top: 0px;
    /*100px;*/
    left: 50%;
    margin-left: -71px;
}

.guesthouse {
    position: absolute;
    left: 50%;
    margin-left: -71px;
    top: 132px;
}

#head {
    overflow: hidden;
    background: #EDEAE6;
}

#menu {
    float: left;
    padding: 3% 3% 0 3%;
    position: absolute;
    background: #FFFFFF;
    width: 181px;
    z-index: 5;
    
}

#menu.fixed {
    position: fixed;
    top: 69px;
    z-index: 2;
    padding: 0 3%;
    -webkit-transform-origin: top;
    transform-origin: top;
}

#menu.fixed #menu_buttons {
    width: 135px;
    margin-left: 39px;
    padding: 20px 0 40px 0;
    margin-top: 0;
}

#menu_buttons {
    width: 135px;
    margin: auto;
    padding: 37% 0;
    margin-top: 181px;
    height: 273px;
}

#menu_buttons ul li.hidden {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
    opacity: 0;
}

#menu_buttons ul li:hover a {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
}

#menu_buttons ul li a {
    font-family: Raleway;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 12px 0;
    display: block;
}

#top_bar {
    float: left;
    width: 70%;
    background: #E2DFDD;
    padding-right: calc(24% - 181px);
    left: calc(6% + 181px);
    position: fixed;
    z-index: 2;
}

#slider {
    float: left;
    width: calc(94% - 181px);
    position: relative;
    left: calc(6% + 181px);
    margin-top: 0px;
    overflow: hidden;
    height: 1080px;
    background: #EDEAE6;
}

#pay {
    position: absolute;
    top: 54.5%;
    left: 50%;
    margin-left: -380px;
}

#pay h3 {
    color: #2E231F;
    font-size: 60px;
    font-family: Ostrich;
    line-height: 50px;
}

#pay h3.top {
    -webkit-transform: translateY(135%);
    transform: translateY(135%);
}

#pay hr {
    margin: 0;
    padding: 0;
    border-top: 1px solid #F1DCBF;
    margin-top: 5px;
}

#pay hr.lower {
    margin-top: 5px;
}

.book_now_button {
    background: #332613;
    float: left;
    color: #FFFFFF;
    font-family: Raleway;
    padding: 27px 35px;
    font-size: 13px;
    letter-spacing: 2px;
}

#quick_container {
    margin-top: 29px;
}

#langs {
    cursor: pointer;
    pointer-events: all;
}

#quick_langs {
    position: absolute;
    float: left;
    top: 27px;
    background: #E2DFDD;
    width: 100%;
    -webkit-transform-origin: top;
    padding-left: 1px;
    transform-origin: top;
    padding: 10px 1px 14px 0;
    -webkit-transform: translateY(0px) scale(1, 1);
    transform: translateY(0px) scale(1, 1);
}

#menu_bar.full #quick_langs {
    -webkit-transform: translateY(20px) scale(1, 1);
    transform: translateY(20px) scale(1, 1);
}

#quick_langs.hidden {
    transform: translateY(0px) scale(1, 0);
    -webkit-transform: translateY(0px) scale(1, 0);
}

#menu_bar.full #quick_langs.hidden {
    transform: translateY(20px) scale(1, 0);
    -webkit-transform: translateY(20px) scale(1, 0);
}

#quick_langs .small_lato {
    text-align: center;
}

#quick_langs hr {
    width: 20px;
    border: none;
    border-bottom: 1px solid #333333;
}

#quick_contacts {
    pointer-events: all;
}

#socials {
    margin-right: 0;
    pointer-events: all;
}

#socials p {
    cursor: pointer;
}

.quick_socials {
    position: absolute;
    float: left;
    top: 27px;
    background: #E2DFDD;
    width: 100%;
    height: 153px;
    -webkit-transform-origin: top;
    transform-origin: top;
}

.quick_socials.hidden {
    transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
}

.quick_socials ul li {
    margin-top: 5px;
}

.quick_socials ul li:hover {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

.quick_socials ul li img {
    display: block;
    margin: auto;
}

.quick_socials ul li:first-child {
    margin-top: 0;
}

.small_lato {
    font-family: Raleway;
    font-size: 11px;
    letter-spacing: 1.5px;
    display: block;
}

.top_button {
    float: right;
    margin-right: 20px;
    position: relative;
}

#intro {
    width: 100%;
    background: #EDEAE6;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.left_panel {
    width: 50%;
    float: left;
    position: relative;
}

#index .left_panel {
    height: 757px;
}

#index .left_panel img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 330px;
}

.welcome_text {
    margin-left: 40px;
    margin-top: 70px;
    width: 414px;
}

.welcome_text h2 {
    margin: 0 !important;
}

.right_panel {
    float: left;
    width: 50%;
}

.text_box {
    width: 100%;
    background: #FFFFFF;
    overflow: hidden;
}

#index .text_box {
    height: 600px;
}

.text_box h2 {
    margin-top: 70px;
    margin-left: 40px;
    color: #332613;
}

.text_box h2 .s1 {
    font-family: Ostrich Rounded;
    font-size: 60px;
}

.text_box h2 .s2 {
    font-family: Prestige;
    font-size: 36px;
    margin-left: 10px;
}

.text_box h2 .s3 {
    font-family: Notera;
    margin-left: 15px;
    font-size: 71px;
    position: relative;
    top: -8px;
}

.body_text {
    font-family: CooperHewitt;
    font-size: 14px;
    line-height: 25px;
    color: #342613;
    text-align: justify;
}

.body_text.centered {
    text-align: center;
}

.body_text.padded {
    padding: 10px 0;
}

#index .text_box .body_text {
    margin-top: 110px;
    margin-left: 46px;
    width: 405px;
}

.big_title {
    font-family: Ostrich;
    font-size: 78px;
    margin-top: 80px;
    text-indent: 80px;
    color: #332613;
    position: relative;
    top: 7px;
}

.spacer_container {
    margin-left: calc(6% + 181px);
    width: 70%;
}

.vertical_spacer.intro {
    left: 50%;
    margin-left: 175px;
    position: relative;
    margin-top: 15px;
    margin-bottom: 30px;
}

.center_call {
    width: 100%;
    overflow: hidden;
    padding: 70px 0;
}

.center_call .container {
    width: 80%;
    margin: auto;
    position: relative;
    max-width: 500px;
}

.top_left_bracket {
    width: 15px;
    height: 15px;
    border-top: 1px solid #C7C4C4;
    border-left: 1px solid #C7C4C4;
    position: absolute;
    left: -18px;
    top: -12px;
}

.bottom_left_bracket {
    width: 15px;
    height: 15px;
    border-bottom: 1px solid #C7C4C4;
    border-left: 1px solid #C7C4C4;
    position: absolute;
    left: -18px;
    bottom: -12px;
}

.top_right_bracket {
    width: 15px;
    height: 15px;
    border-top: 1px solid #C7C4C4;
    border-right: 1px solid #C7C4C4;
    position: absolute;
    right: -18px;
    top: -12px;
}

.bottom_right_bracket {
    width: 15px;
    height: 15px;
    border-bottom: 1px solid #C7C4C4;
    border-right: 1px solid #C7C4C4;
    position: absolute;
    right: -18px;
    bottom: -12px;
}

.type_title {
    text-align: center;
    font-family: Prestige;
    font-size: 24px;
    letter-spacing: -0.2px;
}

img+.type_title {
    margin-top: 35px;
}

.center_call .body_text {
    width: 100%;
    text-align: center;
    position: relative;
}

.center_call .text_container {
    margin: auto;
    margin-top: 60px;
    margin-bottom: 0;
    position: relative;
    width: 100%;
    height: 75px;
}

.center_call .text_container.hidden {
    margin: auto;
    margin-top: 90px;
    margin-bottom: 32px;
    position: relative;
    width: 0px;
    height: 13px;
}

.discover_more {
    background: #362715;
    float: left;
    color: #FFFFFF;
    font-family: Raleway;
    padding: 18px 35px;
    font-size: 13px;
    letter-spacing: 2px;
    margin-top: 70px;
    display: block;
    margin-left: -100px;
    left: 50%;
    position: relative;
    border: 1px solid #FFFFFF;
}

.discover_more:hover {
    color: #362715;
    background: #FFFFFF;
    border: 1px solid #362715;
}

#place {
    background: #EDEAE6;
    width: 100%;
    overflow: hidden;
}

.tabled {
    vertical-align: middle;
    display: table;
    height: 100%;
}

.table-cell {
    display: table-cell;
    vertical-align: middle;
}

.plate .content {
    width: 50%;
    margin: auto;
    max-width: 300px;
}

.plate .body_text {
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 80%;
}

#featured {
    overflow: hidden;
    position: relative;
}

#featured_back {
    position: absolute;
    height: 100%;
    float: right;
    width: 50%;
    right: 0;
    background: #EDEAE6;
}

.featured_title {
    position: relative;
    left: 135px;
    margin-top: 80px;
    float: left;
}

.title {
    font-family: Ostrich;
    font-size: 60px;
    color: #332613;
    position: relative;
}

#featured .featured_title>img {
    margin-left: -135px;
}

#featured_container {
    max-width: 1100px;
    margin: auto;
    width: 80%;
    position: relative;
}

.news {
    width: 100%;
    margin-top: 60px;
    float: left;
    position: relative;
}

.news_pic {
    width: 80%;
    float: left;
}

.news_data {
    position: absolute;
    top: -45px;
    left: 20px
}

.cipher {
    font-size: 100px;
    font-weight: bold;
    position: relative;
    top: 52px;
    font-family: CooperHewitt;
    color: #FFFFFF;
}

.news_data p {
    font-family: CooperHewitt;
    color: #FFFFFF;
    font-size: 28px;
}

.news_data p span {
    font-size: 100px;
    font-weight: bold;
    position: relative;
    top: 52px;
}

.news_body {
    top: 0px;
    position: absolute;
    float: right;
    width: 350px;
    right: -20px;
    padding: 35px 50px;
    background: url(../images/index/news_back.png) no-repeat;
}

.news_title {
    color: #342613;
    font-family: Raleway;
    font-weight: bold;
    font-size: 20px;
}

.buttons a {
    font-size: 14px;
    font-family: Raleway;
    display: block;
    text-align: center;
}

hr.more_margin {
    margin-top: 20px;
    margin-bottom: 20px;
}

.buttons a:first-child {
    margin-top: 20px;
}

.buttons hr+img {
    margin-top: -10px;
}

.news_date {
    color: #342613;
    font-family: CooperHewitt;
    font-size: 17px;
    margin-top: 20px;
}

#lifestyle {
    position: relative;
}

#lifestyle_title {
    width: 440px;
    margin: auto;
    height: 220px;
}

#lifestyle_title h3 {
    font-family: Ostrich;
    font-size: 70px;
    margin-left: 23px;
    margin-top: 75px;
}

#lifestyle_title .half {
    height: 100%;
    background: #FFFFFF;
}

#lifestyle_title .half:last-child {
    background: #EDEAE6;
}

#lifestyle_title .half img {
    margin: auto;
    display: block;
    margin-top: 77px;
}

.lifestyle_pic {
    margin-top: -100px;
}

#lifestyle_container {
    position: absolute;
    width: 1110px;
    left: 50%;
    margin-left: -555px;
    top: 50%;
    margin-top: 50px;
}

#lifestyle_container ul li {
    float: left;
    position: relative;
}

#lifestyle_container ul li a {
    font-family: CooperHewitt;
    color: #FFFFFF;
    font-size: 38px;
}

#lifestyle_container ul li>a+img {
    position: absolute;
    left: 50%;
    top: 50px;
    margin-left: -12px;
}

#lifestyle_container ul li img.spacing {
    margin-top: -30px;
    padding: 0 30px;
}

#footer {
    /*height: 450px;*/
    background: #2C2110;
    overflow: hidden;
    width: 100%;
    float: left;
    padding-bottom: 50px;
}

#footer_content {
    overflow: hidden;
    padding: 60px 0 80px 0;
    width: 660px;
    margin: auto;
}

#footer_buttons {
    margin-top: 8px;
}

#footer_buttons,
#footer_socials,
#footer_socials .social_ico {
    float: left;
}

#footer_buttons ul li {
    float: left;
}

#footer_buttons ul li a {
    font-family: Raleway;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 0 16px;
    display: block;
    color: #B1A295;
}

#footer_socials {
    margin-top: -4px;
    margin-left: 20px;
}

#footer_logo {
    margin-top: 60px;
}

.social_ico {
    padding: 0 4px;
}

#copyright {
    text-align: center;
    color: #B1A194;
    font-family: Lato;
    font-size: 12px;
    letter-spacing: 0px;
}

#copyright a {
    color: #B1A194;
    font-family: Lato;
    font-size: 12px;
    text-decoration: underline;
}

.section_title {
    font-family: Ostrich;
    font-size: 70px;
    padding: 70px 0;
    color: #332613;
    position: relative;
    right: 40px;
    float: right;
}

.right_side {
    width: 100%;
    float: right;
}

#exclusive {
    overflow: hidden;
    width: 560px;
    
    margin: auto;
}
#description  {
    overflow: hidden;
    width: 560px;
    height: 250px;
    text-align: center;
    margin: 10px 10px 10px 10px;
    padding-left: 200px;
}

#descriptionone  {
    overflow: hidden;
    width: 560px;
    height: 250px;
    align-content: center;
    margin: 10px 10px 10px 10px;
    padding-left: 200px;
}

#exclusive hr {
    width: 40px;
}

.alex_text {
    font-family: AlexBrush;
    font-size: 38px;
    text-align: center;
    margin-top: 10px;
    line-height: 32px;
}

.prestige_text {
    font-family: pRESTIGE;
    font-size: 25px;
    text-align: center;
    margin-top: 10px;
    line-height: 32px;
}

.more {
    border: 1px solid #B1A295;
    color: #B1A295;
    font-family: Raleway;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 10px 10px;
    margin: auto;
    display: block;
    width: 44px;
    margin-top: 10px;
}

.more:hover {
    background: #B1A295;
    color: #FFFFFF;
    border: 1px solid #B1A295;
}

.right_panel .lower_container {
    position: relative;
}



#room_selector {
    position: absolute;
    margin-left: -106px;
    z-index: 2;
}

#room_nap_logo {
    padding: 20px 35px;
    background: #D5D0CD;
}

#room_list {
    background: #FFFFFF;
    width: 100%;
    position: relative;
}

#room_list ul {
    width: 134px;
    margin: auto;
    padding: 40px 0;
}

#room_list ul li a {
    font-family: Raleway;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 12px 0;
    display: block;
    text-align: center;
}

#room_list ul li a:hover {
    color: #ACA196;
}

#room_list ul li hr {
    width: 20px;
}

#room_selector .book_now_button {
    padding: 38px 0;
    font-size: 13px;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
}

.availability_form {
    width: 100%;
    position: relative;
    background: #EDEAE6;
    float: left;
}

.form_container {
    background: #FFFFFF;
    padding: 50px;
    width: 55%;
    margin: auto;
    overflow: hidden;
    max-width: 800px;
    margin-bottom: 60px;
}

.availability_form h4 {
    color: #FFFFFF;
    font-size: 85px;
    font-family: Ostrich;
    text-align: center;
    margin-top: -200px;
    margin-bottom: 30px;
}

.form_input {
    width: 100%;
    float: left;
    margin-top: 30px;
}

.form_input.date input,
.form_input.date label {
    cursor: pointer;
}

.form_input.half {
    width: 45%;
}

.form_input.half label {
    width: 132px;
}

.form_input.half input {
    width: calc(100% - 162px);
}

.form_input.date label img {
    margin-left: 10px;
    position: relative;
    top: -1px;
}

.form_input.half.margin {
    margin-left: 10%;
}

.form_input:first-child {
    margin-top: 0;
}

form label {
    padding: 10px;
    width: 100px;
    display: block;
    text-align: left;
    color: #5E5E5E;
    font-family: Prestige;
    font-size: 18px;
    float: left;
}

form label.larger {
    padding: 10px;
}

form input {
    width: calc(100% - 130px);
    float: left;
    border: 0;
    font-size: 15px;
    margin-top: 7px;
    border: none;
    border-bottom: 1px solid #ACA196;
    font-weight: 100;
    color: #2C2C2B;
    -webkit-appearance: none;
    border-radius: 0;
    height: 18px;
    font-family: CooperHewitt;
}

form textarea {
    width: calc(100% - 198px);
    margin-left: 26px;
    float: left;
    padding: 20px;
    font-family: CooperHewitt;
    font-size: 15px;
    border: 1px solid #ACA196;
    margin-top: 11px;
    font-weight: 100;
    color: #2C2C2B;
    height: 98px;
    -webkit-appearance: none;
    border-radius: 0;
}

p.radio_input {
    float: left;
    font-family: Lato;
    color: #333333;
    font-size: 12px;
    position: relative;
    height: 18px;
    margin-top: 58px;
    text-indent: 0;
}

p.radio_input>input {
    padding: 0;
    margin: 0;
    height: 18px;
    width: 17px;
    float: left;
    position: absolute;
    left: 0;
    opacity: 0;
}

input[type=radio],
input[type=checkbox] {
    cursor: pointer;
}

p.radio_input:not(#foo)>input[type=radio]+label {
    background-position: 0 -7px;
}

p.radio_input:not(#foo)>input+label {
    background: url(../images/radio_input.png) 0 -1px no-repeat;
    height: 16px;
}

p.radio_input>label {
    line-height: 18px;
    padding: 0px 0px 1px 28px;
    float: left;
    font-weight: 100;
    font-size: 14px;
    width: 405px;
    text-align: left;
    color: #666666;
    font-family: Prestige;
}

p.radio_input:not(#foo)>input[type=radio]:hover+label,
p.radio_input:not(#foo)>input[type=radio]:focus+label,
p.radio_input:not(#foo)>input[type=radio]+label:hover {
    background-position: 0 -32px;
}

p.radio_input:not(#foo)>input[type=radio]+label {
    background-position: 0 -7px;
}

p.radio_input:not(#foo)>input[type=radio]:hover:checked+label,
p.radio_input:not(#foo)>input[type=radio]:focus:checked+label,
p.radio_input:not(#foo)>input[type=radio]:checked+label:hover,
p.radio_input:not(#foo)>input[type=radio]:focus:checked+label {
    background-position: 0 -57px;
}

p.radio_input:not(#foo)>input[type=radio]:checked+label {
    background-position: 0 -57px;
}

.send {
    cursor: pointer;
    width: 170px;
    text-align: center;
    background: #362715;
    float: left;
    color: #FFFFFF;
    font-family: Raleway;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 15px 0px;
    float: right;
    margin-top: 39px;
    margin-right: 10px;
    border: 1px solid #FFFFFF;
}

.send:hover {
    color: #362715;
    background: #FFFFFF;
    border: 1px solid #362715;
}

.box_title {
    font-family: CooperHewitt;
    font-size: 40px;
    color: #332613;
    position: relative;
    font-weight: 100;
}

#panels_container .section .right_panel .text_content {
    margin-top: 76px;
    margin-left: 60px;
}

#panels_container .section .left_panel .text_content {
    margin-top: 76px;
    position: relative;
}

.text_content.equal_margin {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
}

.text_content.equal_margin .body_text {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

#panels_container .section .left_panel .covered.text {
    left: 50%;
    margin-left: -150px;
}

.services_box {
    /* overflow:hidden;*/
    position: relative;
}
/*
.services_box .text_content {
    margin-top: 40px !important;
}*/

.section {
    width: 100%;
    float: left;
}

.services_box .body_text {
    width: 300px;
}

.text_box .body_text {
    width: 450px;
    letter-spacing: 0.2px;
    margin-top: 74px;
    margin-bottom: 50px;
    margin-left: 60px;
}

#rooms.index .text_box .body_text,
#position.index .text_box .body_text {
    margin-bottom: 74px;
}

.text_box .text_content>.body_text {
    margin-left: 0;
}

.box_title+.body_text {
    margin-top: 25px;
}

.services_box h3,
.text_box h3 {
    font-family: CooperHewitt;
    font-size: 32px;
    color: #332613;
    position: relative;
    font-weight: 100;
    margin-bottom: 40px;
}

#services .services_box h3 {
    margin-bottom: 20px;
}

.service_list+h3 {
    margin-top: 40px;
}

.services_box .plate .content {
    width: 100%;
    margin: auto;
    max-width: 300px;
}

.services_box .text_content.right {
    float: right;
    right: 0;
    margin-right: 60px;
    margin-top: 45px !important;
    margin-left: 0 !important;
    left: 0 !important;
    width: 60%;
    margin-bottom: 60px;
}

.services_box .text_content.right .body_text {
    width: 266px;
    float: right;
}

.services_box .text_content.right h3 {
    text-align: right;
    font-size: 36px;
}

.text_content.tabled {
    width: auto !important;/*60*/
    left: 0 !important;
    margin: auto !important;
    /*max-width: 470px !important;*/
    padding: 10% 10%;
}

.text_content.tabled .table-cell .box_title {
    text-align: center;
}

.section hr {
    width: 30px;
    margin-top: 20px;
}

.text_content.tabled .table-cell .body_text {
    width: 100%;
    margin-left: 0;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.service_list {
    font-family: Raleway;
    font-size: 13px;
    color: #332613;
    line-height: 26px;
}

.mini_slider {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.mini_slider img {
    float: right;
}

.section_slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section_slider .covered,
.section_slider .content {
    height: 100%;
}

#last_panel #room_selector {
    width: 0px;
    float: left;
    margin-left: 0;
    position: relative;
}

#last_panel #exclusive {
    width: 90%;
    height: 100% !important;
}

#last_panel #room_selector #room_list ul {
    padding: 30px 0;
}

#last_panel {
    width: 100%;
    height: 415px;
}

#rooms .detail .section:last-child>div {
    height: 704px;
    overflow: hidden;
}

#house .section:first-child .text_content {
    margin-top: 76px;
}

#house .section:first-child .right_panel .half {
    left: 8%;
}

#house .section:last-child>div {
    height: 762px;
    overflow: hidden;
}

#house #exclusive {
    height: 270px;
}

#exclusive .section_title {
    font-size: 57px;
    font-family: Ostrich;
    padding: 0;
    right: 0;
    float: none;
    width: 100%;
    text-align: center;
}

#exclusive .section_title img {
    margin: 0;
    display: inline;
}

#position #slider {
    height: 80vh !important;
}

#position #room_list ul {
    padding: 30px 0 50px 0;
}

#lifestyle #room_list ul {
    width: 150px;
    margin: auto;
    padding: 90px 0;
}

.list_label {
    font-family: Raleway;
    font-size: 13px;
    letter-spacing: 2px;
    display: block;
    text-align: center;
    padding-top: 40px;
}

#position #room_list ul li {
    padding: 5px 0;
}

.slider_overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

#list_detail {
    position: absolute;
    top: 0;
    width: 472px;
    height: 472px;
    left: 100%;
    background: #D5D0CD;
    -webkit-transform-origin: left;
    transform-origin: left;
}

#list_detail .cover {
    background: #D5D0CD;
}

.list_content {
    background: #FFFFFF;
    margin: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    position: absolute;
}

.position_icon {
    margin: auto;
    display: block;
    margin-top: 50px;
}

.list_content .body_text {
    width: 200px;
    margin: auto;
    margin-top: 40px;
}

.close_button {
    display: block;
    margin: auto;
    margin-top: 40px;
    width: 34px;
}

#services .section:first-child .text_content {
    margin-top: 76px;
    margin-bottom: 130px;
}

#lifestyle .detail .section:first-child .text_content {
    margin-top: 76px;
    margin-left: 60px !important;
}

#contacts .section:first-child .text_content {
    margin-top: 76px;
}

.info_title {
    font-family: Ostrich;
    font-size: 70px;
    padding: 25px 0;
    color: #332613;
    position: relative;
    text-align: center;
}

.right_panel .form_container {
    width: 80%;
    padding: 10%;
    margin-bottom: 0;
}

#contacts .left_panel .covered {
    height: calc(100% - 109px);
}

#contacts .left_panel .covered img {
    margin-right: 0 !important;
}

#position .button:hover img {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}


#terms {
    padding: 80px 0 0px 0;
}

.terms_open {
    width: 39px;
    margin-top: 30px;
}

#terms_box {
    width: 450px;
    margin: auto;
    padding: 40px;
    border: 1px solid #B1A295;
    margin-top: 40px;
    overflow: hidden;
    /*height: 520px;*/
    margin-bottom: 40px;
}

#terms_box p {
    font-family: Raleway;
}

#terms_box.hidden {
    height: 0px !important;
    padding: 0px !Important;
    opacity: 0 !Important;
}

#terms .close_button {
    margin-top: -35px;
    cursor: pointer;
}

#rooms #terms_box {
    width: 709px;
    height: 312px;
}

.pointer {
    display: block;
    position: relative;
    width: 30px;
    margin: auto;
}

.pointer .hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.pointer:hover .hover {
    opacity: 1;
}

#lifestyle .text_content.tabled .table-cell .body_text {
    text-align: justify;
}

#lifestyle .section .left_panel .covered.full_height {
    float: right;
    right: 0;
    left: auto;
}

#lifestyle .section .left_panel .covered.full_height h3 {
    text-align: right;
}

#lifestyle .text_content.tabled {
    padding: 0;
}

#lifestyle .fixed_height {
    height: 65%;
}

#lifestyle #bovio {
    height: 35%;
    width: 100%;
}

.bovio_detail {
    max-width: 490px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 13px !important;
    text-align: center;
}

#lifestyle .detail #room_list ul {
    width: 150px;
    margin: auto;
    padding: 30px 0;
}

#lifestyle .detail #room_selector {
    margin-left: -212px;
}

#lifestyle .left_panel .text_content.tabled {
    margin-right: 60px !Important;
}

#lifestyle .right_panel .text_content.tabled {
    margin-left: 60px !Important;
}

#exclusive img {
    width: 104px;
}

#audio_player {
    position: absolute;
    left: 178px;
}

#audio_player button {
    font-family: Raleway;
    font-size: 11px;
    letter-spacing: 1.5px;
    display: block;
    border: none;
    background: none;
    cursor: pointer;
    float: left;
}

#audio_controller {
    width: 300px;
    position: relative;
    top: 28px;
    left: 15px;
}

#canvas {
    float: left;
}

html[lang=en] #pay {
    margin-left: -406px;
}

html[lang=en] .center_call .container {
    max-width: 585px;
}

html[lang=en] .form_input.half label {
    width: 142px;
}

@media all and (min-width: 1400px) {
    #place>.content {
        border: 1px solid #C7C4C4;
        padding: 50px 80px;
    }
    .featured_title {
        position: relative;
        left: 0px;
        margin-top: 80px;
        float: left;
    }
    .body_text {
        font-size: 15px;
    }
}

