
:root {
  --fontMain: "Manrope", sans-serif;
  --black-color: #333; 
  --white-color: #fff; 
  --page-bg-color: #fff;
  --main-color: rgba(25, 44, 120, 1); /*blue 192c78*/
  --main-color-opacity: rgba(25, 44, 120, .8); 
  --main-color-xxlight:#ebeffb;
  --gray-text-color:#7a7e8c; /*3d3d3d*/
  --gray-light:#868686;
  --dark-color: rgba(45, 49, 65,1);
 
  interpolate-size: allow-keywords;
}

.bg-grey {
    background-color: #f3f3f3;
}

/* BASIC SETTINGS  */
html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--page-bg-color);
  font-family: var(--fontMain);
  font-weight: 400;
  font-size: 18px;
  color: var(--black-color);
  padding-top:100px;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}
button:focus,
.btn:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}
ul li {
  list-style: none;
}
a {
  color: var(--main-color);
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  text-decoration: none;
  color: inherit;
}
.visually-hidden {
    background-color: rgba(0, 0, 0, 0.005);
}
/*HEADINGS
==================================*/
h1, h2, h3, h4, 
.h1, .h2, .h3, .h4 {
    font-family: var(--fontMain);
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--main-color);
}
h1, .h1 {
  font-size: 44px;
}
h2, .h2 {
  font-size: 34px;
}
h3, .h3 {  
  font-size: 26px;
  margin-bottom: 25px;
}
h4, .h4 {
  font-size: 24px;
  margin-bottom: 25px;
}
@media screen and (max-width: 1199px) {
  h1, .h1 {
    font-size: 36px;
  } 
  h2, .h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  h1, .h1 {
    font-size: 30px;
  }
  h2, .h2 {
    font-size: 24px;
  }
  h3, .h3 {
      font-size: 18px;
    }
}

/*BUTTONS
====================================*/
.btn {
  font-family: var(--fontMain);
  font-size: 16px;
  color: var(--white-color);
  line-height:1;
  border-radius: 8px;
  padding: 14px 24px;
  background-color: var(--main-color);
}
.btn.login {
    background: var(--main-color) url(/images/user.svg) no-repeat 14px center;
    background-size: 20px!important;
    padding: 14px 24px 14px 42px;
}
.btn.login:hover {
    background: var(--main-color-opacity) url(/images/user.svg) no-repeat 14px center;
    color: var(--white-color);
}

.btn-more {
    font-size: 18px;
    line-height:1.8;
    color: var(--main-color);
    position: relative;
    display: inline-block;
    transition: .3s linear;
    background-color: rgba(0, 0, 0, 0.005);
}
.btn-more::before {
    content: "";
    position: absolute;
    margin:0 auto;
    display: block;
    width:0%;
    height: 2px;
    background-color: var(--gray-text-color);
    z-index: 0;
    bottom: 2px;
    left:0;
    transition: .3s linear;
}
.btn-more.active::before,
.btn-more:hover::before {
    width:100%;
}

/*SPACING
===============================*/
.mt-offset {
  margin-top: 120px;
}
.py-offset {
    padding-top:60px;
    padding-bottom:60px;
}
@media screen and (max-width: 767px) {
    .mt-offset {
        margin-top: 80px;
    }
}
.section-banners.mt-offset {
    margin-top:60px;
}


/*HEADER 
==============================*/
header {
    padding: 10px;
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
    background: #fff;
}
@media (min-width: 992px) {
    .left-column,
    .right-column {
        width:200px;
    }
    .center-column {
        width:calc(100% - 400px);
    }
}
@media (max-width: 991px) {
    .right-column {
        padding-right:60px;
    }
}
.place-logo img {
   height: 80px;
}
@media (max-width: 575px) {
    .place-logo img {
        height: 50px;
    }
}
header .btn.login {
    margin-left:20px;
}
.main-nav a {
    color: var(--black-color);
    padding: 0 30px 0 0;
    text-shadow: 1px 0 0 rgba(6,49,113,0);
    font-size: 18px;
}
.main-nav a.active,
.main-nav a:hover {
    color: var(--main-color);
}
@media (max-width: 1399px) {
    .main-nav a {
        padding: 0 20px 0 0;
        font-size: 20px;
    } 
}
@media (max-width: 1199px) {
    header {
        font-size: 18px;
    }
    .main-nav a {
        padding: 0 15px 0 0;
        font-size: 18px;
    }
}
@media (min-width: 992px) and (max-width: 1023px) {
    .main-nav a {
        padding: 0 10px 0 0;
    }
}
@media (max-width: 991px) {
    .main-nav a {
        font-size: 22px;
    }
}
@media (max-width: 991px) {
    header .main-nav {
        display: none;
    }
}
.main-nav > li {
    position: relative;
}
.submenu {
    list-style: none;
    background: #fff;
    z-index: 3;
    padding: 0px 15px;
}
.submenu a {
    color: var(--light-color);
}

.submenu a {
    text-shadow: 1px 0 0 rgba(6, 49, 113, 0);
    font-size: 18px;
    line-height: 1.2;
    display: inline-block;
    padding: 8px 0;
    text-decoration: none;
}
.submenu li:first-child a {
    padding: 16px 0 8px 0;
}
.submenu li:last-child a {
    padding: 8px 0 16px 0;
}
@media (min-width: 992px) {
    .main-nav .submenu {
        display: none;
        width: 240px;
    }
    .main-nav > li:hover .submenu {
        display: block;
        position: absolute;
        left: -20px;
        padding-top: 20px;
    }
}

.lang-holder {
    margin-left: auto;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}
.lang-holder a {
    text-decoration: none;
    color: var(--primary-color);
    transition: font-size .2s ease-out;
}
.lang-holder:not(:hover) a.active {
    font-size: 20px;
}



/*Mobile Menu
=============================*/
body.menu-open,
.site__body--noscroll {
    overflow: hidden;
}
@media (min-width: 992px) {
    .menuButton-placement,
    .main_navigation {
        display: none;
    }
}
.menuButton-placement {
    position: fixed;
    z-index: 9999;
    right: 10px;
    top: 30px;
    line-height: 1;
}
@media (max-width: 575px) {
    .menuButton-placement {
        top: 18px;
    }
}
.nav_burger_icon {
    position: relative;
    display: block;
    vertical-align: middle;
}
.nav_burger_icon .bar {
    height: 3px;
    border-radius: 3px;
    width: 35px;
    display: block;
    margin: 7px auto;
    position: relative;
    background-color: var(--main-color);
    transition: .5s cubic-bezier(.5, .2, .2, 1);
}
.nav_burger_icon .bar:last-child {
    margin-bottom: 0;
}
.nav_burger_text {
    display: none;
}
/*
.nav_burger_text {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: var(--primary-color);
    width: 40px;
}
.nav_burger_text:last-child, 
.menu-open .nav_burger_text {
    display: none;
}
.menu-open .nav_burger_text:last-child {
    display: inline-block;
}*/

.menu-open .nav_burger_icon .bar:first-of-type {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}
.menu-open .nav_burger_icon .bar:nth-of-type(2) {
    opacity: 0;
}
.menu-open .nav_burger_icon .bar:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}
.main_navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    padding-top: 0px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1035;
    transition: .5s;
    text-align: left;
    font-weight: 500;
}
.Blur {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 100%;
    left: 0;
    background: none;
    backdrop-filter: blur(10px);
    height: 100%;
    transition: .3s;
    -webkit-transform: translateX(0%) scaleX(0);
    -ms-transform: translateX(0%) scaleX(0);
    transform: translateX(0%) scaleX(0);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
}
.menu-open .main_navigation .Blur {
    display: block;
    transition: .3s;
    -webkit-transform: translateX(0%) scaleX(1);
    -ms-transform: translateX(0%) scaleX(1);
    transform: translateX(0%) scaleX(1);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
}
.menu-open .main_navigation {
    transition: .5s;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
@media (min-width:992px) {
    .menu-open .main_navigation {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
.main_navigation_inner {
    height: auto;
    min-height: 100%;
    width: 80%;
    right: 0;
    position: absolute;
    background-color: white;
}
.menu--main {
    position: relative;
    width: 100%;
    height: calc(100% - 180px);
    padding: 120px 30px 60px;
}
@media (min-width:768px) {
    .menu--main {
        padding: 100px 50px 50px;
        height: calc(100% - 150px);
    }
}
.main_navigation .main-nav {
    display: block;
}


/* TOP CAROUSEL 
========================= */
/* Video
=================================== */
.mainVideoSlider {
        position: relative;
        height: 100vh;
    }
.mainVideoSlider video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 991px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 450px;
    }
}
@media screen and (max-width: 767px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 400px;
    }
}
@media screen and (max-width: 480px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 350px;
    }
}
/*YOUTUBE
------------------------------*/
.intro-video-bg-margin {
 /* height: 125px;*/
  background: white;
    position: relative;
    z-index: 1;
}
.intro-video-bg{
	height:auto;
/*	margin-top: -125px;*/
	position:relative;
	z-index:0;
}
/*
@media screen and (max-width: 991px) {
     .intro-video-bg{
        margin-top: -60px;
    }
}
@media (max-width: 767px) {
    .intro-video-bg-margin {
      height: 105px;
    }
    .intro-video-bg{
        margin-top: 0px;
    }
}
*/

/*=== Carousel Slider
=====================================*/
#bigCarousel .carousel-item,
#bigCarousel {
    position: relative;
    /* height: calc(100vh - 115px);*/
    height: calc(70vh - 115px);
}
@media (max-width: 767px) {
    #bigCarousel .carousel-item,
    #bigCarousel {
      /* height: calc(100vh - 103px);*/
      height:auto;
    }
}
#bigCarousel img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.carousel-control-next, 
.carousel-control-prev {
    opacity:1;
    width:10%;
    filter:brightness(0) invert(1);
}
#bigCarousel .carousel-control-next-icon {
    background-image: url(../images/arrow-right.svg)!important;
}
#bigCarousel .carousel-control-prev-icon {
    background-image: url(../images/arrow-right.svg)!important;
    transform:          rotate(180deg);
  -ms-transform:      rotate(180deg);
  -moz-transform:     rotate(180deg);
  -webkit-transform:  rotate(180deg);
  -o-transform:       rotate(180deg);
}
#bigCarousel .carousel-control-next-icon, 
#bigCarousel .carousel-control-prev-icon {
  display: inline-block;
   height: 85px!important;
  width: 40px!important;
  background: no-repeat 50%/100% 100%;
}
@media screen and (max-width: 767px) {
    #bigCarousel .carousel-control-next-icon, 
    #bigCarousel .carousel-control-prev-icon {
        height: 55px!important;
        width: 25px!important;
    }
}
@media screen and (max-width: 575px) {
    #bigCarousel .carousel-control-next-icon, 
    #bigCarousel .carousel-control-prev-icon {
        height: 45px!important;
        width: 22.5px!important;
    }
}
.contentOverSlider {
    position: absolute;
    z-index: 9;
    color: white;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 80%;
    text-align:center;
    left:0;
    right:0;
    margin:auto;
    background-color: rgba(0, 0, 0, 0.005);
}
.contentOverSlider .h1{
    margin:0;
    font-size:40px;
}
@media screen and (max-width: 991px) {
    .contentOverSlider .h1{
        font-size:36px;
    }
}
@media screen and (max-width: 767px) {
     .contentOverSlider .h1{
        font-size:22px;
    }   
}

/*SWIPER
============================= */
.swiper-button-next,
.swiper-button-prev {   
    height: 42px;
    width: 32px;
}
.swiper-button-next svg,
.swiper-button-prev svg{   
    display: none;
}
.swiper-button-next{
    right:3%;
    left:unset;
}
.swiper-button-prev {  
    left:3%; 
}
.swiper-button-next:after,
.swiper-button-prev:after {
    display:none;  
}
.swiper-button-next:before,
.swiper-button-prev:before {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    filter: unset;
    background: url(../images/arrow-right.svg) no-repeat center center;
    background-size: 100%;
}
.swiper-button-prev:before {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
/*BULLETS BELLOW small
--------------------------- */
.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 26px;
    font-size: 22px;
    font-weight: 400;
    color: var(--gray-light);
    opacity: 0.3;
    margin: 0 5px !important;
    background: none !important;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    color: var(--black-color);
}

/* START OF BREADCRUMB 
====================*/
.breadcrumb {
    margin-bottom: 0;
    justify-content: start;
    margin-top:15px;
}

.breadcrumb {
    color: var(--black-color);
}
.breadcrumb li+li:before {
    padding: 8px;
    color:  var(--black-color);
    content: "/";
    font-size: 12px;
}
.breadcrumb a {
    color: var(--main-color);

    text-decoration: none;
    font-weight: 300;
 }
.breadcrumb a:hover {
    color: var(--main-color);
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .breadcrumb {
        font-size:14px;
    }    
} 
/* END OF BREADCRUMB */

/* Main Text SECTION
================================ */
.homepage .main-text {
    font-size: 22px;
    color:var(--gray-text-color);
}
@media screen and (min-width: 992px) {
    .homepage .main-text h1{
        margin-right:40px;
    }
}
.boxes-section .theBox{
  border-radius: 25px;
  padding: 25px;
  background-color: var(--main-color-xxlight);
  height: 100%;
  text-align: center;
  position:relative;
}
.rounded-icon {
    height: 100px;
    width: 100px;
    background-color: #fff;
    border-radius: 50%;
    padding: 25px;
    margin: 0 auto 25px auto;
}
.rounded-icon img{
    height: 100%;
    filter: brightness(0) saturate(100%) invert(13%) sepia(60%) saturate(2685%) hue-rotate(216deg) brightness(96%) contrast(94%);
}
@media screen and (max-width: 991px) {
    .boxes-section .col-12{
        margin-bottom:30px;
    }
}
.link-above {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}
.link-above span{
    display: none;
}
/*NEWS
===================================*/
.news-recent h2{
    text-align: center;
}
.news-recent .text-holder{
    margin-top:20px;
    background-color: rgba(0, 0, 0, 0.005);
}
.news-recent .text-holder h3{
    margin-bottom:10px;
    font-size:22px;
}
.new-date{
    color:var(--gray-light);
    font-size:16px;
    margin-bottom:20px;
    background-color: rgba(0, 0, 0, 0.005);
}
.news-releases .item{
    margin-bottom: 50px;
}
.news-releases .item h2{
    margin-bottom:5px;
}
.news-releases .pagination ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    margin-top: 15px;
    margin: auto;
}
.news-releases .pagination li {
    padding: 5px;
    background: none;
    font-weight: 600;
    list-style: none;
}
.news-releases .pagination li a {
    text-decoration: none;
    color: var(--black-color);
}
.news-releases .pagination li a:hover {
    text-decoration: underline;
}
.news-releases .pagination li.active a {
    color: var(--gray-light) !important;
    text-decoration: underline;
    background-color: rgba(0, 0, 0, 0.005);
}
.prevNextWrap {
    display: flex;
    padding-top: 30px;
    font-weight: 600;
   /* justify-content: center; */
}
.prevNextWrap a {
    color: var(--black-color);
    text-decoration: none;
    text-transform: uppercase;
}
.prevNextWrap .next {
    margin-left: 15px;
}
@media (min-width: 576px) {
    .prevNextWrap .next {
        margin-left: 30px;
    }
}
.prevNextWrap .disabled {
 color: var(--gray-light);
 cursor: auto;
}

@media (min-width: 768px) {
    .img-float {
        width: 40%;
        float: left;
        margin-right: 40px;
        margin-bottom: 20px;
    }
}

/*BODY SECTIONS
=========================*/
.section-body-text .row {
    align-items: center;
}
@media screen and (min-width: 992px) {
    .section-body-text:not(.revert) .place-text {
        padding-right:50px;
    }
    .section-body-text.revert .place-text {
        padding-left:50px;
    }
}
.section-body-text .text-only{
    text-align:center;
}
.section-body-text.bg-color {
    background: var(--dark-color);
    color: var(--main-color-xxlight);
}
.section-body-text.bg-color h2 {
    color: var(--main-color-xxlight);
}

/*BANNERS
=========================*/
.section-banners {
    padding:0px;
}
.banners {
    display: flex;
    flex-wrap: wrap;
}
.banners .banner{
    padding:15px;
}

/*GALLERY
=========================*/
.galleries-list .h4{
    padding:5px 10px;
}
.section-banners {
    padding:0px;
}
.banners {
    display: flex;
    flex-wrap: wrap;
}
.banners .banner{
    padding:15px;
}
@media screen and (max-width: 767px) {
    .banners .banner{
        width: calc(50%);
        text-align: center;
    }
}


/*FOOTER
=========================== */
.bottomMenu {
    background-color: var(--main-color-xxlight);
    margin-top:60px;
    padding:15px 0;
}
.bottomMenu ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.bottomMenu li {
  padding: 5px 10px;
}
.bottomMenu a {
    color: var(--main-color);
}

.footer {
    border-top: #dfe3ef 1px solid;
    padding-top:50px;
    font-size:16px;
}
.footer a{ 
      color: var(--black-color);
}
.footer .member{
  margin-bottom: 20px;
}
.footer .member .heading{
    padding-bottom: 10px;
}
.footer .member img{
      height:68px;
      margin-right:5px;
}
.footer .social-icons {
    padding-top:20px;
    display:inline-block;
}
.footer .social-icons img {
  height: 30px;
}
@media screen and (max-width: 991px) {
  .footer .social-icons img {
    height: 28px;
  }
}

.copyright {
  font-size: 14px;
  color: var(--black-color);
  margin: 20px 0 10px;  
  text-align: center;
}
.copyright a{
  color: var(--black-color);
}


.cookie-icon {
    position:fixed;
    left:15px;
    bottom:15px;
    opacity: 1;
    width:46px;
    height:46px;
    border-radius: 50%;
    background: rgba(232, 232, 232, 1);
    padding:6px;
    font-size:8px;
    z-index: 10;
}


/*SCROLL UP 
==========================*/
.toTop {
  text-align: right;
}
a.scrollup {
  position: fixed;
  right: 15px;
  bottom: 15px;
  background: rgba(232, 232, 232, 1) url("../images/arrow-right.svg") no-repeat center center;
  background-size: 30px;
  transform: rotate(-90deg);
  border-radius:26px;
  width: 52px;
  height: 52px;
  z-index: 100;
  display: none;
}
.scrollup.is-visible {
  display: inline;
  opacity: 1;
}
.scrollup span {
    display: none;
}
@media screen and (max-width: 991px) {
  a.scrollup {
    bottom: 18px;
  }
}


/* NEWSLETTER 
================================ */
.newsletterform {
    padding-top:100px;
    padding-bottom:20px;
    position:relative;
}
.newsletter .form-group {
  padding: 10px 15px;
}
.newsletter .form-control {
  border-radius: 0;
  background: none;
  border: none;
  font-size:18px;
}
.newsletter .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.newsletter label {
  line-height: unset;
  padding-right:10px;
  min-width:110px;
  font-weight: bold;
  margin-bottom:0;
}
@media screen and (min-width: 576px) {
    .newsletter .form-group {
        width: 450px;
    }
    .newsletter .submit {
        position: absolute;
        bottom: 50px;
        right:2px;
    }
}
.newsletter .submit .sendBtn{
    background-color: var(--black-color);
    padding: 12px 15px;
    color: var(--white-color);
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius:0;
}
.newsletter .form-agree,
.newsletter .form-agree a{
    color: var(--white-color);
}
@media screen and (max-width: 767px) {
  .newsletter label,
  .newsletter .sendBtn {
    font-size: 16px!important;
  }
  .newsletter .form-group {
    width: 300px;
  }
}

@media screen and (max-width: 575px) {
  .newsletter .form-group {
    padding: 10px 8px;
    width: 100%;
  }
  .newsletter .sendBtn {
    top: 10px;
    font-size: 14px;
    margin-top:10px;
    margin-left:10px;
  }
  .newsletter label{
    font-size: 14px!important;
  }
}






















/* END LIsting Subpages - extend room class
========================================= */
.main-text ul,
.list,
.umb-block-list ul {
    margin-bottom:15px;
}
.main-text ul li,
.list li,
.umb-block-list ul li {
    list-style: circle;
    list-style-position: inside;
}
.main-text ul li p,
.umb-block-list ul li p {
    margin-bottom:0;
    display: inline;
}

/* BLOCK LISTS
========================================= */
@media screen and (min-width: 1200px) {
    .section-row .text-container{
        max-width:70%;
        margin-left:10%;
        margin-right:20%;
    }
}
/*secgtion Image & Text Bg
----------------------------*/
.section-row .img-bg .img-bg-container{
    position:relative;
}
.section-row .img-bg:not(.order-lg-2) .img-bg-container{
    padding:30px 30px 0 0;
}
.section-row .img-bg.order-lg-2 .img-bg-container{
       padding:30px 0 0 30px;
}
.section-row .img-bg .img-bg-container:after {
    content:"";
    position: absolute;
    background-color: #d6d6d6;
    width:80%;
    height: 80%;
    top: 0;
    z-index: -1;
}
.section-row .img-bg:not(.order-lg-2) .img-bg-container:after {
    right:0;
}
.section-row .img-bg.order-lg-2 .img-bg-container:after{
     left:0;
}
@media screen and (min-width: 1200px) {
    .section-row .img-bg:not(.order-lg-2) .img-bg-container{
        padding:50px 50px 0 0;
    }
    .section-row .img-bg.order-lg-2 .img-bg-container{
        padding:50px 0 0 50px;
    }
}

.section-facilities-columns h2,
.section-facilities-columns .text {
    text-align: center;
}
.section-facilities-columns .row{
    padding-top:60px;
}


/* FORMS
====================================== */
.contactform {
    text-align: left;
    padding-top:30px;
}
.contactform .form-control {
    font-family: var(--fontMain);
  	border-radius: 0px;
  	height: 40px;
  	font-size: 18px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	outline: none;
	color: #565656;
	padding: .375rem .375rem;
}
.contactform .form-control:focus {
	outline: 0;
	border: 1px solid rgba(97, 97, 97, 1);		
	box-shadow: 0 1px 3px transparent;
}
.contactform select.form-control {
	color:#989898;
}

.contactform textarea.form-control {
  height: auto;
}
.field-validation-valid {
  display: none;
  color: red; }
.field-validation-error {
  display: block;
  color: red;
  font-size: 12px;
  text-align: left; }
.control-label {
  font-weight: normal;
  text-align: left;
  display: block; }
label span {
  color: red; }
label.required:after {
  content: " *";
  color: #FF0000; }
.asterisk {
	text-align:left;
	font-size:13px;
}
.form-agree label {
	display:inline;
	font-size:18px;
}
.form-agree .field-validation-error {
	display: inline-block;
}
.form-agree a {
    text-decoration:underline;
}
.form-agree a:hover {
    text-decoration:none;
}
.submitBtn{
    background-color: var(--black-color);
    border: 0px;
    padding: 12px 30px;
    vertical-align: inherit;
    transition: all 0.3s ease 0s;
    margin-top: 0!important;
    color: var(--white-color);
  border-radius:0;
    
}
.submitBtn:hover,
.submitBtn:focus {
	outline: 0 !important;
    background-color: #f1f1f1;
    border: 0px;
    color: var(--black-color);
}

.signup .field-validation-error {
  text-align: center; }
  

#json-msg {
    padding-top: 20px;
}
.status-failure,
.status-busy {
    margin: 6px 0 0 0;
}
.status-busy img {
    height: 10px;
}
/*SITEMAP
----------------------------*/
.sitemap {
    text-transform: uppercase;
}
.sitemap a {
    text-decoration: none;
}
.sitemap a:hover {
    text-decoration: underline;
}

.sitemap a{
    color: var(--black-color);
}
.sitemap a:hover{
    text-decoration:underline;
}


















.wordbreak a{
     word-break: break-word;  
}
.error {
    color: #f1cdc9;
    font-size: 12px;
    padding-left: 15px;
}






/* Popups
====================== */
.modal {
  z-index: 10500;
}
.modal .modal-dialog {
    max-width: 720px;
}
.modal .modal-content {
  -webkit-box-shadow: 0px 20px 20px #00000045;
          box-shadow: 0px 20px 20px #00000045;
  border-radius: 0px;
  border: none;
  text-align: left;
  font: normal normal 300 19px/30px var(--fontMain);
  letter-spacing: 0px;
    background: var(--white-color);
  color: var(--black-color); 
}
.modal  .h3{
   /* font-size: 2.2rem;*/
}
.modal .btn-close {
    position: absolute;
    width: 2em;
    height: 2em;
    right: 0px;
    top: 0px;
    opacity: .8;
    border-radius: 0px;
}
.modal .btn-close:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--black-color);
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .5;
}
@media screen and (max-width: 767px) {
    .modal .modal-body .imgCol {
        height: 300px !important;
    }
    .modal .modal-content {
        font: normal normal 300 16px/27px var(--fontMain);
    }
    .modal .modal-dialog {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.modal .modal-content .text > div > div {
    padding-top:20px;
}


/* CUSTOM CURSOR
================================ */
.sliderContainer{
    overflow:hidden;
}
.cursor {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 5;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.cursor-dot {
    position: relative;
    display: flex;
    width: 6.25rem;
    height: 6.25rem;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(237, 238, 238, .8);
    opacity: 0;
    transition: height 300ms ease, width 300ms ease, opacity 300ms ease;
}
.text-wrapper {
    overflow: hidden;
    height: 1rem;
}
.cursor-text {
    transition: transform 300ms ease;
    font-size: 1rem;
    line-height: 1;
    color:var(--black-color);
    font-size:12px;
    font-weight:300;
    letter-spacing:2px;
}
.cursor-dot-accent {
    position: absolute;
    transition: opacity 300ms ease;
}

.cursor-dot-accent.left {
    left:5px;
    /*background: url(../images/arrow-left.svg) no-repeat;*/
    background: url(../images/arrow.svg) no-repeat;
    transform: scaleX(-1);
    width: 15px;
    height: 13px;
        background-size: contain;
}
.cursor-dot-accent.right {
    width: 15px;
    height: 13px;
    right:5px;
    background: url(../images/arrow.svg) no-repeat;    background-size: contain;
}
.no-click{
    pointer-events: none;
    touch-action: none;
}
.can-click{
    pointer-events: auto;
    touch-action: auto;
}
.cursor-dot.show{
 	opacity: 1;
}
.cursor-dot.active{
  	width: 4rem;
    height: 4rem;
}
.cursor-dot.active .cursor-text{
  	transform: translateY(-100%)
}
.cursor-dot.active .cursor-dot-accent{
  	opacity: 1;
}


 
/*# sourceMappingURL=style.css.map */