@font-face {
    font-family: 'Sfuadiner';
    src: url(../fonts/SFUADINEKIRNBERGREGULAR.TTF) format("opentype");
    font-weight: 900;
}
@font-face {
    font-family: 'UVFAssassin';
    src: url(../fonts/UVFAssassin.ttf) format("opentype");
    font-weight: 900;
}
@font-face {
    font-family: 'Prata-Regular';
    src: url(../fonts/Prata-Regular.ttf) format("opentype");
    font-weight: 900;
}
@font-face {
    font-family: 'UTM-Bebas';
    src: url(../fonts/UTM-Bebas.ttf) format("opentype");
    font-weight: 900;
}
@font-face {
    font-family: 'UTM-AvoBold';
    src: url(../fonts/UTM-AvoBold.ttf) format("opentype");
    font-weight: 900;
}
html, body {
    position: relative;
    height: 100%;
}
body {
    background: #fff;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color:#000;
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
strong {
    font-weight: 700;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.loader {

    position: relative;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-gap: 2px;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);

}
.loader > div {
    position: relative;
    width: 100%;
    height: 100%;
    background: #FBC986;
    transform: scale(0);
    transform-origin: center center;
    animation: loader 2s infinite linear;
}
.animition {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #331A51;
}
.loader > div:nth-of-type(1), .loader > div:nth-of-type(5), .loader > div:nth-of-type(9) {
    animation-delay: 0.4s;
}
.loader > div:nth-of-type(2), .loader > div:nth-of-type(6) {
    animation-delay: 0.6s;
}
.loader > div:nth-of-type(3) {
    animation-delay: 0.8s;
}
.menu-top {
    top:0;
    width: 100%;
    z-index: 9;
    background-repeat: no-repeat;
    transform: translateY(0px);
    transition: transform 500ms ease;
    -webkit-transition: transform 500ms ease;
    position: fixed;
    background-size: 100% 100%;
    background-image: url(../images/background-menu.jpg);
    height: 75px;
    display: flex;
    align-items: center;
}
.logo-top {
    align-items: center;
    color: #FFF;
}
.logo-top p {
    margin-left: 15px;
    margin-bottom: 0;
    color: #F8D3BA;
    font-weight: 700;
    font-size: 0.85em;
}
.menu-top.sticky {
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: -72px;
    left: 0;
    right: 0;
    z-index: 99;
    transform: translateY(70px);
    transition: transform 500ms ease, background 500ms ease;
    -webkit-transition: transform 500ms ease, background 500ms ease;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../images/background-menu.jpg);
}
.wrapper {
    width: 100%;
    margin: 0 auto;
}


/*
.container {
  max-width: 960px;
  width: 95%;
  margin: 0 auto;
}

header {
  background: #f04343;
  color: #f7e9cc;
  padding: 1.5em 0;
  position: relative;
}

/*header::after {
  content: '';
  clear: both;
  display: block;
}*/


.logo {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    padding-top: 24px;
    padding-left: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    height: 65px;
}

.logo span {
    font-weight: 400;
}

.menu-toggle {
    position: absolute;
    padding: 0.8em;
    top: 2.2em;
    right: .5em;
    cursor: pointer;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    background: #C49977;
    height: 3px;
    width: 2em;
    border-radius: 3px;
    -webkit-transition: all ease-in-out 350ms;
    transition: all ease-in-out 350ms;
}

.hamburger::before {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
}

.hamburger::after {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
}

.open .hamburger {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.open .hamburger::before {
    display: none;
}

.open .hamburger::after {
    -webkit-transform: translateY(-1px) rotate(-90deg);
    transform: translateY(-1px) rotate(-90deg);
}

/*.site-nav--open {
  -webkit-clip-path: circle(150% at top right);
          clip-path: circle(150% at top right);
}
*/




nav ul.opening {
    display: block;
}
nav {
    margin: 0;
    padding: 0;
}

nav ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: none;
}

nav ul.opening {
    display: block;
}

nav li {
    border-bottom: 1px solid #f6f4e2;
}
nav li:last-child {
    border-bottom: none;
}
nav a {
    color: #F8D3BA;
    display: block;
    padding: 1.5em 4em 1.5em 3em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
}

nav a:hover,
nav a:focus {
    background: #E4B363;
}
.logo-top a {
    padding:0;
}
.logo-top a:hover {
    background:unset;
    text-decoration: unset;
}
.site-nav--icon {
    font-size: 1.4em;
    margin-right: 1em;
    width: 1.1em;
    text-align: right;
    color: rgba(255,255,255,.4);
}
.bg-light {
    background: transparent!important;
}
/* flex styles */


/*
nav {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background: #e7a119;
  -webkit-clip-path: circle(0px at top left);
          clip-path: circle(0px at top left);
  -webkit-transition: -webkit-clip-path ease-in-out 700ms;
  transition: -webkit-clip-path ease-in-out 700ms;
  transition: clip-path ease-in-out 700ms;
  transition: clip-path ease-in-out 700ms, -webkit-clip-path ease-in-out 700ms;
  text-align: left;
}
*/







@media (min-width: 780px) {

    .menu-toggle {
        display: none;
    }



    nav ul {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    nav li {
        flex: 1 1 auto;
        border: none;
    }

    nav li a {
        padding: 1.5em 1.3em 1.5em 1.3em;
        margin: 0;
        border: none;
    }
    nav a:hover,
    nav a:focus {
        background-color: rgba(255,255,255,.10);
    }



    .logo {
        flex: 0 0 200px;
        margin: 0;
        padding-left: 20px;
    }


    nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;

        text-align: center;
    }
    /* nav {
        flex: 1 1 0;
        -webkit-clip-path: none;
              clip-path: none;

        border: 3px solid purple;
    }
  */

    /*.site-nav a:hover,
    .site-nav a:focus {
      background: transparent;
    }
  */
    .site-nav--icon {
        display: none;
    }

}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background: transparent;
    color: #FFF;
    text-shadow: 0px 0px 3px #000;
}
@keyframes loader {
    0% { transform: scale(0); }
    40% { transform: scale(1); }
    80% {transform: scale(1);}
    100% {transform: scale(0);}
}
.img-slider,#slider .container-fluid,#slider .container-fluid .row {
    width: 100%;
    height: 100%;
}
.img-slider img {
    height: 100%;
    object-fit: cover;width: 100%;
}
#slider {
    height: 100vh;
    border: 5px solid #E8DE9B;
    padding-top: 70px;
}
#slider .container-fluid,#slider .container-fluid .col-lg-6 {
    padding:0;
    height: 100%;
}
#slider .container-fluid .row,#tieukhu .container-fluid .row {
    margin:0;
}
.img-slider-left {
    background: #EC1964;
}

#kimcuong {
    padding:0 100px;
    background-image:url(../images/background-donghai.jpg);
}
#kimcuong .kiet-tac-1,#kimcuong .kiet-tac-2,#kimcuong .kiet-tac-3 {
    width: 30%;
}
#kimcuong {
    position: relative;
}
#kimcuong .hoathi {
    position: absolute;
    left: 0;
    top:0;
    height: 100%;
    object-fit: cover;
}
#kimcuong .hoathi-2 {
    position: absolute;
    right: 0;
    top:0;
    height: 100%;
    object-fit: cover;
}
#kimcuong .kiet-tac-3 {
    margin-left:auto;
}
#kimcuong .kiet-tac-2 {
    margin: auto;
}
#kimcuong .kiet-tac-1 {
    margin-right:auto;
}

#vitri {
    padding:70px 0px;
}
#vitri img,#phankhu img {
    width: 100%;
}
#phankhu img {
    border-radius:50px;
}
#vitri .background-vitri {
    background-image: url(../images/background-menu.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
}
#vitri .background-vitri img,#matbang-tang .goc-trai,#matbang-tang .goc-phai{
    position: absolute;
}
#vitri .background-vitri .goc-trai,#matbang-tang .goc-trai {
    top:0;
    left:0;
    height: 100%;
    width: auto;
    object-fit: cover;
    opacity: 0.2;
}
#vitri .background-vitri .goc-phai,#matbang-tang .goc-phai {
    bottom:0;
    right:0;
    height: 100%;
    width: auto;
    object-fit: cover;
    opacity: 0.2;
}
#matbang-tang .goc-phai,#matbang-tang .goc-trai {
    opacity: 0.4;
}
#vitri .description-vitri,#matbang-tang .description-vitri {
    width: 100%;
    padding:30px 50px;
}
#vitri .description-vitri h2,#matbang-tang .description-vitri h2 {
    color: #3D4B67;
    text-align: center;
    margin-bottom :50px;
    font-family: 'UVFAssassin';
    font-size: 2rem;
}
#vitri .line-left {
    border-left: 1px solid #3D4B67;
    width: 100%;
    height: 50px;
    margin-bottom: 30px;
}
#vitri .description-vitri h2 {
    text-align: left;
    margin-bottom: 30px;
}
#vitri .description-vitri h2 span {
    padding:0px 30px;
    border-radius: 10px;
}
#vitri .description-vitri p {
    font-size: 15px;
    color: #666;
    text-align: justify;

}
#vitri .description-vitri p strong {
    font-family: "UTM-AvoBold";
}


#khuvuc {
    padding: 100px;
    position: relative;
}
#khuvuc .owl-nav .owl-prev,#khuvuc .owl-nav .owl-next,#matbang-tang .owl-nav .owl-prev,#matbang-tang .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
}
#khuvuc .owl-nav .owl-next,#matbang-tang .owl-nav .owl-next{
    right: 0;
}
#khuvuc .owl-nav .owl-prev,#matbang-tang .owl-nav .owl-prev {
    left:0;
}
#matbang-tang .owl-nav .owl-next {
    right: -5%;
}

#matbang-tang .owl-nav .owl-prev {
    left: -5%;
}
#khuvuc .owl-nav .owl-prev .fa,#khuvuc .owl-nav .owl-next .fa,#matbang-tang .owl-nav .fa {
    color: #FFF;
    opacity: 0.5;
}
#matbang-tang .owl-nav .fa {
    color: #351D55;
    opacity: 1;

}


#tieukhu .item {
    position: relative;
}
#tieukhu .text-tieukhu {
    position: absolute;
    top:0;
    width: 50%;
    left:50%;
    height: 100%;
}
#tieukhu .owl-item .item .background-tieukhu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    opacity: 0.85;
    position: relative;
    right:-100%;
    transition: all 1s ease;
    transition-delay: 1s;
}
#tieukhu .owl-item:nth-child(4) .item .background-tieukhu.the-opera{
    background: linear-gradient(100deg,transparent 0%,transparent 14.99%,#BA352C 15%,#A52E29 40%,#932928 60%,#882627 85%);
}
#tieukhu .owl-item:nth-child(3) .item .background-tieukhu.the-liberty {
    background: linear-gradient(100deg,transparent 0%,transparent 14.99%,#B37C1A 15%,#A36519 40%,#924E13 60%,#843D0D 85%);
}
#tieukhu .owl-item:nth-child(5) .item .background-tieukhu.the-marina{
    background: linear-gradient(100deg,transparent 0%,transparent 14.99%,#114A86 15%,#04518A 40%,#035989 60%,#005F8A 85%);
}
#tieukhu .owl-item.active .item .background-tieukhu {
    right:0;
    transition: all 1s ease;
    transition-delay: 1s;
}
#tieukhu .text-tieukhu h2,#tieukhu .text-tieukhu p {
    text-align: center;
}
#tieukhu .text-tieukhu h2 {
    font-family: "Prata-Regular";
    font-weight: 900;
    background: linear-gradient(90.97deg,#A67E4C 0%,#C1955E 15%,#E3B476 30%,#FECB85 50% ,#E3B476 70%, #C1955E 85%,#A67E4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.8;
    margin-bottom:0;
}
#tieukhu .text-tieukhu p,#tieukhu .text-tieukhu li{
    color: #FFF;
    font-family: "UTM-Bebas";
    font-size: 1.8em;
}
#tieukhu .text-tieukhu li {
    font-size: 1.3em;
}
#tieukhu .text-tieukhu .quymo {
    width: 50%;
    margin: 40px auto;
}

#tieukhu .owl-item .background-tieukhu img,
#tieukhu .owl-item .text-tieukhu h2,
#tieukhu .owl-item .text-tieukhu p,
#tieukhu .owl-item .text-tieukhu .quymo
{
    position: relative;
    right:-100%;
}
#tieukhu .owl-item.active .background-tieukhu img,
#tieukhu .owl-item.active .text-tieukhu h2,
#tieukhu .owl-item.active .text-tieukhu p,
#tieukhu .owl-item.active .text-tieukhu .quymo{
    right:0;
    transition: all 1s ease;
}
#tieukhu .owl-item.active .background-tieukhu img {
    transition-delay: 2.2s;
}
#tieukhu .owl-item.active .text-tieukhu h2 {
    transition-delay: 2.4s;
}
#tieukhu .owl-item.active .text-tieukhu p {
    transition-delay: 2.6s;
}
#tieukhu .owl-item.active .text-tieukhu .quymo {
    transition-delay: 2.8s;
}
#tieukhu .slider-tieukhu .owl-dots {
    height: 22px;
    bottom: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: absolute;
}
#tieukhu .slider-tieukhu .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    margin: 0px 5px;
    background: transparent;
    border-radius: 50%;
    border:2px solid #FFF;
    transition: all 0.3s ease;
}
#tieukhu .slider-tieukhu .owl-dots .owl-dot.active {
    width: 25px;
    height: 25px;
    background: #FFF;
    transition: all 0.3s ease;
}




#matbang-tang {
    padding: 70px;
    position: relative;
}
#matbang-tang .description-vitri h2 {
    margin-bottom: 0;
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'UVFAssassin';
}


#footer {
    padding: 100px 0px;
}
#footer .map {
    width: 100%;
    display: block;
}
#footer .title-footer,#footer .title-footer-2,#footer .title-footer-3,#footer p {
    text-align: center;
}
#footer .title-footer,#footer .title-footer-2,#footer .title-footer-3 {
    margin:30px 0px;
}
#footer .title-footer span,#footer .title-footer-2 span{
    position: relative;
    font-family: "UTM-Bebas";
    font-size: 1.5em;
}
#footer .title-footer span:before,#footer .title-footer-2 span:after{
    position: absolute;
}
#footer .title-footer span:before,#footer .title-footer-2 span:after{
    width: 40%;
    height: 2px;
    background: #000;
}
#footer .title-footer span:before {
    bottom:-10px;
    left:50%;
    content:'';
    transform: translateX(-50%);
}
#footer .title-footer-2 span:after {
    bottom:-10px;
    right:50%;
    content:'';
    transform: translateX(50%);
}
#footer .logoTNR {
    margin:0 auto;
}
#footer h4 {
    font-size: 1.3rem;
}
.close {
    position: absolute;
    right: -20px;
    top: -5px;
    color: #FFF;
}
#news p {
    margin:0;
}
#news p:last-child{
    margin-bottom:1rem;
}
.img-logo-top {
    top: 26%;
    width: 20%;
    left: 50%;
    transform: translateX(-50%) translateY(-20%);
}
.background-top {
    width: 100%;
    height: calc(100vh - 70px);
    object-fit: cover;
}
#phankhu {
    padding:40px 0px 10px;
}
#phankhu .phankhu-right {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-flow: column;
    margin-top: 20px;
}
#phankhu .tongthe-phankhu {
    padding:0 calc(100vw/12);
    position: relative;
}
#phankhu .title-phankhu {
    text-align: center;
    position: relative;
    font-family: "UTM-Bebas";
    font-size: 3em;
    margin-bottom: 30px;

}
#phankhu .title-phankhu span {
    background: linear-gradient(90.97deg,#A67E4C 0%,#C1955E 15%,#E3B476 30%,#FECB85 50% ,#E3B476 70%, #C1955E 85%,#A67E4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
#phankhu .title-phankhu span:before {
    content:'';
    position: absolute;
    width: 50%;
    height: 3px;
    background: linear-gradient(90.97deg,#A67E4C 0%,#C1955E 15%,#E3B476 30%,#FECB85 50% ,#E3B476 70%, #C1955E 85%,#A67E4C 100%);
    bottom: -10px;
    left:50%;
    transform: translateX(-50%);
}
#phankhu .phankhu-right .title-phankhu,#phankhu .phankhu-right .title-phankhu-1 {
    text-align: center;
    font-family: 'UVFAssassin';
    font-weight: 900;
    font-size: 2rem;
}
#phankhu .title-phankhu h2 {
    margin-top: 50px;
}
#phankhu .phankhu-right .title-phankhu-1 {
    background: #4B5765;
    padding: 5px;
    width: 100%;
}
#phankhu .phankhu-right .title-phankhu-1 h3 {
    font-size: 1.2rem;
    color: #FFF;
}
#phankhu .list-phankhu {
    width: 100%;
    padding: 0 calc(100vw/12);
}
#phankhu .list-phankhu span {
    padding: 2px 3px;
    background: #EC1964;
    color: #FFF;
    border-radius: 100%;
    margin-right: 8px;
}
#phankhu .list-phankhu .list-phankhu-1 span{
    padding: 2px 5px;
}
#phankhu .list-phankhu .list-phankhu-1 p {
    font-weight: 700;
}
.position-absolute {
    position: absolute !important;
}
.facilities_layout-hotspot {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.facilities_layout-hotspot-item {
    background-color: #000;
    border: 1px solid #fff;
    border-radius: 50%;
    display: block;
    font-size: 13px;
    font-weight: bold;
    width: 24px;
    line-height: 22px;
    position: absolute;
    cursor: pointer;
    text-align: center;
    color: #FFF;
}
.facilities_layout-hotspot-item:after {
    position: absolute;
    top: -9px;
    left: -9px;
    width: 40px;
    height: 40px;
    content: "";
    -webkit-animation: pulsate 1s ease-out;
    animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 0;
    border: 3px solid #EC1964;
    border-radius: 30px;
}
.facilities_layout-hotspot-item.multiple {
    font-size: 9px;
    white-space: nowrap;
}
.facilities_layout-hotspot-item.item-1 {
    top: 72.5%;
    left: 54%;
}
.facilities_layout-hotspot-item.item-2 {
    top: 70.5%;
    left: 55.5%;
}
.facilities_layout-hotspot-item.item-3 {
    top: 69.5%;
    left: 57%;
}
.facilities_layout-hotspot-item.item-4 {
    top: 77.5%;
    left: 56.5%;
}
.facilities_layout-hotspot-item.item-5 {
    top: 77%;
    left: 59%;
}
.facilities_layout-hotspot-item.item-6 {
    top: 73%;
    left: 59%;
}
.facilities_layout-hotspot-item.item-7 {
    top: 77.5%;
    left: 54.5%;
}
.facilities_layout-hotspot-item.item-8 {
    top: 75%;
    left: 54%;
}
.facilities_layout-hotspot-item.item-9 {
    top: 73.5%;
    left: 56%;
}
.facilities_layout-hotspot-item.item-10 {
    top: 79%;
    left: 53.5%;
}
.facilities_layout-hotspot-item.item-11 {
    top: 69.5%;
    left: 53.5%;
}
.facilities_layout-hotspot-item.item-12 {
    top: 78%;
    left: 58%;
}
.facilities_layout-hotspot-item.item-13 {
    top: 64%;
    left: 57.5%;
}
.facilities_layout-hotspot-item.item-14 {
    top: 67%;
    left: 55%;
}
.facilities_layout-hotspot-item.item-15 {
    top: 19%;
    left: 61.5%;
}
.facilities_layout-hotspot-item.item-16 {
    top: 22%;
    left: 62.5%;
}
.facilities_layout-hotspot-item.item-17 {
    top: 22%;
    left: 61%;
}
.facilities_layout-hotspot-item.item-18 {
    top: 24.5%;
    left: 61.5%;
}
.facilities_layout-hotspot-item.item-19 {
    top: 27.5%;
    left: 61.5%;
}
.facilities_layout-hotspot-item.item-20 {
    top: 28.5%;
    left: 62.5%;
}
.facilities_layout-hotspot-item.item-21 {
    top: 30.5%;
    left: 61.5%;
}
.facilities_layout-hotspot-item.item-22 {
    top: 31.5%;
    left: 63%;
}
.facilities_layout-hotspot-item.item-23 {
    top: 34%;
    left: 62.5%;
}
.facilities_layout-hotspot-item.item-24 {
    top: 61%;
    left: 66%;
}
.facilities_layout-hotspot-item.item-24.item-24-2 {
    top: 70%;
    left: 66.5%;
}
.facilities_layout-hotspot-item.item-25 {
    top: 67%;
    left: 62.5%;
}
.facilities_layout-hotspot-item.item-26 {
    top: 87%;
    left: 53%;
}
.facilities_layout-hotspot-item.item-27 {
    top: 71%;
    left: 50.5%;
}
.facilities_layout-hotspot-item.item-28 {
    top: 54.5%;
    left: 53%;
}
.facilities_layout-hotspot-item.item-29 {
    top: 36%;
    left: 32.5%;
}
.facilities_layout-hotspot-item.item-30 {
    top: 52.5%;
    left: 35%;
}
.facilities_layout-hotspot-item.item-31 {
    top: 58.5%;
    left: 36%;
}
.facilities_layout-hotspot-item.item-32 {
    top: 68%;
    left: 35%;
}
.facilities_layout-hotspot-item.item-33 {
    top: 77.5%;
    left: 35%;
}
.facilities_layout-hotspot-item.item-34 {
    top: 81%;
    left: 36.5%;
}
.facilities_layout-hotspot-item.item-35 {
    top: 67%;
    left: 29.5%;
}
.facilities_layout-hotspot-item.item-36 {
    top: 73%;
    left: 28.5%;
}
.facilities_layout-hotspot-item.item-37 {
    top: 70%;
    left: 32%;
}
.facilities_layout-hotspot-item.item-38 {
    top: 76%;
    left: 31%;
}
.facilities_layout-hotspot-item.item-39 {
    top: 70%;
    left: 37.5%;
}
.facilities_layout-hotspot-item.item-40 {
    top: 76%;
    left: 39%;
}
.facilities_layout-hotspot-item.item-41 {
    top: 82.5%;
    left: 40%;
}
.facilities_layout-hotspot-item.item-42 {
    top: 68%;
    left: 40.5%;
}
.facilities_layout-hotspot-item.item-43 {
    top: 74%;
    left: 41.5%;
}
.facilities_layout-hotspot-item.item-44 {
    top: 80%;
    left: 42.5%;
}
.facilities_layout-hotspot-item.item-45 {
    top: 87.5%;
    left: 34.5%;
}
.facilities_layout-hotspot-item.item-46 {
    top: 88.5%;
    left: 24.5%;
}
.facilities_layout-hotspot-item.item-47-1 {
    top: 70.5%;
    left: 54.5%;
}
.facilities_layout-hotspot-item.item-47-2 {
    top: 4.5%;
    left: 44.5%;
}
.facilities_layout-hotspot-item.item-47-3 {
    top: 61%;
    left: 51%;
}
.facilities_layout-hotspot-item.item-48-1 {
    top: 75.5%;
    left: 48.5%;
}
.facilities_layout-hotspot-item.item-48-2 {
    top: 80.5%;
    left: 45.5%;
}
.facilities_layout-hotspot-item.item-48-3 {
    top: 16.5%;
    left: 42.5%;
}
.facilities_layout-hotspot-item.item-49-1 {
    top: 66.5%;
    left: 27.5%;
}
.facilities_layout-hotspot-item.item-49-2 {
    top: 67.5%;
    left: 43%;
}
.facilities_layout-hotspot-item.item-49-3 {
    top: 32.5%;
    left: 42%;
}
.facilities_layout-hotspot-item.item-49-4 {
    top: 45.5%;
    left: 31%;
}
.facilities_layout-hotspot-item.item-50 {
    top: 21.5%;
    left: 44%;
}
.facilities_layout-hotspot-item.item-51 {
    top: 21.5%;
    left: 35%;
}
.facilities_layout-hotspot-item.item-52 {
    top: 38%;
    left: 55.5%;
}
.facilities_layout-hotspot-item.item-53 {
    top: 45%;
    left: 41%;
}
.facilities_layout-hotspot-item.item-54 {
    top: 26.5%;
    left: 31%;
}
.facilities_layout-hotspot-item.item-55-1 {
    top: 56.5%;
    left: 33.5%;
}
.facilities_layout-hotspot-item.item-55-2 {
    top: 71.5%;
    left: 34%;
}
.facilities_layout-hotspot-item.item-55-3 {
    top: 54.5%;
    left: 49.5%;
}
@keyframes pulsate {

    0% {

        -webkit-transform: scale(0.1, 0.1);

        opacity: 0;

    }

    50% {

        opacity: 1;

    }

    100% {

        -webkit-transform: scale(1.2, 1.2);

        opacity: 0;

    }

}

@-webkit-keyframes pulsate {

    0% {

        -webkit-transform: scale(0.1, 0.1);

        opacity: 0;

    }

    50% {

        opacity: 1;

    }

    100% {

        -webkit-transform: scale(1.2, 1.2);

        opacity: 0;

    }

}
.arcontactus-widget.right.arcontactus-message {
    bottom: 50px;
    right:50px
}
.arcontactus-widget.arcontactus-message {
    z-index: 99;
    right: 20px;
    bottom: 20px;
    position: fixed !important;
    height: 70px;
    width: 70px;
}
.arcontactus-widget.active {
    opacity: 1;
}
.arcontactus-widget {
    opacity: 0;
    transition: .2s opacity;
    line-height: 1;
}
.arcontactus-widget .arcontactus-message-button {
    width: 70px;
    position: absolute;
    height: 70px;
    right: 0;
    background-color: red;
    border-radius: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.arcontactus-widget .arcontactus-message-button .pulsation {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}
.arcontactus-widget .arcontactus-message-button .pulsation {
    width: 100px;
    height: 100px;
    background-color: red;
    border-radius: 50px;
    position: absolute;
    left: -15px;
    top: -15px;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: arcontactus-pulse 2s infinite;
    animation: arcontactus-pulse 2s infinite;
}
.arcontactus-widget .arcontactus-message-button .static {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -19px;
    margin-left: -26px;
    width: 52px;
    height: 52px;
    text-align: center;
}
.arcontactus-widget .arcontactus-message-button .static svg {
    width: 24px;
    height: 24px;
    color: #fff;
}
.arcontactus-widget .arcontactus-message-button p, .arcontactus-widget .arcontactus-message-button .arcu-item-label {
    font-family: Segoe UI,Frutiger,Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    line-height: 11px;
    margin: 0;
}
@keyframes arcontactus-pulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}
.floating-wrapper {
    background-color: #f8a62096;
    font-size: 14px;
    padding: 10px 0;
    text-align: left;
    transition-duration: 500ms;
    position: fixed;
    z-index: 10;
    bottom: 0;

}

.floating-wrapper .close-floating {
    background-color: #ED1C24;
    color: #fff;
    font-size: 34px;
    font-family: serif;
    position: absolute;
    line-height: 25px;
    right: 0;
    top: 0;
    opacity: 1;
    width: 25px;
    z-index: 9;
    text-align: center;
}
.floating-wrapper.hide {
    opacity: 0;
    right:50px;
}
.floating-wrapper .register-button {
    background-color: #f8a620;
    color: #fff;
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0 10px;
    line-height: 40px;
    position: fixed;
    top: 100%;
    opacity: 0;
    transition-duration: 500ms;
}

.floating-wrapper .register-button .fa {
    animation: shake-anim 2s infinite ease-in-out;
    color: #ED1C24;
    font-size: 30px;
    display: inline-block;
    vertical-align: baseline;
    margin-left: 5px;
    position: relative;
    top: -18px;
}
.floating-wrapper.hide .register-button {
    opacity: 1;
    top: calc(100% - 40px);
}
@keyframes shake-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}


#distribution {
    background-image: url(../images/slider-top-2.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    position: relative;
}
#distribution:before {
    position: absolute;
    content:'';
    background: linear-gradient(to right,#532F82 0%,#812975 50%, #AD1D6C 100%);
    opacity: 0.5;
    top:0;
    left:0;
    bottom:0;
    right:0;
    z-index: 0;
}
#distribution .title-distribution {
    color: #FFF;
    text-align: center;
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    margin:20px 0px;
    font-family: "UTM-Bebas";
    font-size: 3em;

}


/**************** View 360 ********************/
#view-360 {
    width: 100%;
    height: 70vh;
    display: block;
    margin-top: 30px;
}
#view-360 iframe {
    height: 100%;
    display: block;
    width: 100%;

}


.form-input {
    background-color: #f8d3ba91;
    font-size: 14px;
    text-align: left;
    transition-duration: 400ms;
    position: static;
    right: 10em;
    top: 15em;
    width: 100%;
    z-index: 10;
    padding-bottom: 10px;
}

.form-input .floating-content {
    padding: 10px 15px 0;
}
.form-input h3 {
    font-family: 'Roboto',sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    text-align: center;
    color: #000;
}
.form-input  p {
    color: #000;
    font-weight: 700;
}