@import url("https://fonts.googleapis.com/css?family=Quicksand:400,500,700&subset=latin-ext");

body {
    font-family: 'Quicksand', sans-serif;
}

a,
a:hover {
    text-decoration: none;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

img {
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.news-slider {
    z-index: 2;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 21px;
}

@media screen and (max-width: 1300px) {
    .news-slider {
        max-width: 1000px;
    }
}

@media screen and (max-width: 576px) {
    .news-slider {
        margin-top: 45px;
    }
}

.news-slider__wrp {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.news-slider__item {
    width: 300px !important;
    flex-shrink: 0;

}

@media screen and (max-width: 992px) {
    .news-slider__item {
        width: 290px !important;
    }
}

.news-slider__item.swiper-slide {
    /*opacity: 0;*/
    pointer-events: none;
    transition: all .3s;
    padding: 20px;
}

.news-slider__item.swiper-slide-active,
.news-slider__item.swiper-slide-prev,
.news-slider__item.swiper-slide-next {
    opacity: 1;
    pointer-events: auto;
}

.news-slider__ctr {
    position: relative;
    z-index: 12;
}

.news-slider__arrow {
    background: #fff;
    border: none;
    display: inline-flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 12;
    cursor: pointer;
    outline: none !important;
}

.news-slider__arrow:focus {
    outline: none !important;
}

.news-slider__arrow .icon-font {
    display: inline-flex;
    color: #303030;
}

.news-slider__arrow.news-slider-prev {
    left: 15px;
    transform: translateY(-50%);
}

.news-slider__arrow.news-slider-next {
    right: 15px;
    transform: translateY(-50%);
}

.news-slider__pagination {
    text-align: center;
    margin-top: 50px;
}

.news-slider__pagination .swiper-pagination-bullet {
    width: 13px;
    height: 10px;
    display: inline-block;
    background: #fff;
    opacity: .2;
    margin: 0 5px;
    border-radius: 20px;
    box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
    transition: opacity .5s, background-color .5s, width .5s;
    transition-delay: .5s, .5s, 0s;
}

.news-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffffff;
    width: 100px;
    transition-delay: 0s;
}

@media screen and (max-width: 576px) {
    .news-slider__pagination .swiper-pagination-bullet-active {
        width: 70px;
    }
}

.news__item {
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    color: #303030;
    border-radius: 10px;
    display: block;
    background: white;
    transition: all .3s;
    height: 350px;
}

@media screen and (min-width: 800px) {
    .news__item:hover {
        color: #222222;
        transition-delay: .1s;
    }

    .news__item:hover .news-sub,
    .news__item:hover .news__title,
    .news__item:hover .news__txt {
        opacity: 1;
        transition-delay: .1s;
    }
}

.news__item.active {
    color: #303030;
}

.news__item.active .news-sub,
.news__item.active .news__title,
.news__item.active .news__txt {
    opacity: 1;
}

.news-sub {
    margin-top: 4px;
    margin-left: 6px;
    display: inline-block;
    opacity: .7;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    transition: opacity .3s;
}

@media screen and (max-width: 576px) {
    .news-sub {
        margin-bottom: 10px;
        display: inline-flex;
        align-items: center;
        padding-bottom: 0;
    }
}

.news-sub__title {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 900;
}

@media screen and (max-width: 576px) {
    .news-sub__title {
        margin-right: 10px;
    }
}

.news-sub__txt {
    font-size: 16px;
}

.news__title {
    font-size: 25px;
    padding: 0 6px;
    font-weight: 500;
    opacity: .7;
    margin-top: 6px;
    margin-bottom: 6px;
    transition: opacity .3s;
    text-align:center;
}

@media screen and (max-width: 576px) {
    .news__title {
        font-size: 22px;
        margin-bottom: 10px;
    }
}

.news__txt {
    margin: 10px 0;
    padding: 0 6px 8px 6px;
    line-height: 1.6em;
    font-size: 15px;
    opacity: .7;
    transition: opacity .3s;
}

.news__img {
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0px 16px 0px rgba(0, 0, 0, 0.25);
    height: 200px;
    margin-top: 30px;
    width: 94%;
    position: relative;
    left: 3%;
    transition: all .3s;
    transform-origin: 0% 0%;
}

@media screen and (max-width: 576px) {
    .news__img {
        height: 180px;
        margin-top: 20px;
    }
}

.news__img img {
    max-width: 100%;
    border-radius: 0 0 10px 10px;
    height: 100%;
    width: 100%;
}


/* Swiper for sections infos*/

.swiper-container-info {
    width: 100%;
    padding: 20px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-container-info::after {
    position: absolute;
    content: '';
    width: 50%;
    background: white;
}

.swiper-wrapper {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.swiper-slide2 {
    width: 33% !important;
    flex-shrink: 0;
    background-position: center;
    background-size: cover;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
    height: 200px;
    font-weight: 900;
    border-radius: 0.5rem;
    color: white;
    font-size: 30px;
    line-height: 60px;
    text-indent: 15px;
    font-family: 'BrandonTextMedium', sans-serif !important;
    text-transform: uppercase;
}

@media screen and (max-width: 500px) {
    .swiper-slide2 {
        width: 300px !important;
    }
}

/* End of swiper for sections infos*/

/* Swiper for tables infos*/

.swiper-wrapper {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}





    .swiper-tables-infos {
 width: 100%;
    padding: 20px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
          top: 50%;
    position: relative;
    transform: translateY(-50%);
    }
    .swiper-tables-infos::after {
      position:absolute;
	content:'';
	width: 50%;
	background:white;
    }

  .swiper-tables-infos .swiper-slide {
	        background-position: center;
      background-size: cover;
	border-radius:0.5rem;
  height:400px;
	width:400px !important;
	   box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
    font-weight: 900;
    border-radius: 0.5rem;
    color: white;
    font-size: 30px;
    line-height: 60px;
    text-indent: 15px;
    
    text-transform: uppercase;
}

@media screen and (max-width: 500px) {
     .swiper-tables-infos .swiper-slide {
        width: 300px !important;
        height: 300px !important;
    }
}
#fullscreen-swiper {
  display: none;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 15%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}

#fullscreen-swiper .swiper-slide {
  background: none;
      background-position: center;
      background-size: contain;
          background-repeat: no-repeat;
}

#fullscreen-swiper .swiper-slide {
  height: 75vh;
  width:100vw;

}

#fullscreen-swiper-backdrop {
  background: #000;
  display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  
}

#fullscreen-swiper-close {
    height: 40px;
    width: 40px;
    background: #fff;
    border-radius: 50px;
    color: #303030;
    cursor: pointer;
    font-size: 60px;
    /* padding: 1px 1px 7px 9px; */
    position: absolute;
    line-height: 27px;
    text-indent: 6px;
    top: 10px;
    right: 20px;
    z-index: 10000;
}

.no-scroll {height: 100%; overflow: hidden}


/* End of swiper for tables infos*/

/* Swiper facilities*/
.swiper-container-facilities {
    z-index: 2;
    max-width: 1300px;
    padding-top: 60px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
}

.swiper-slide-facilities {
    width: 300px !important;
    flex-shrink: 0;
    height: 360px;
    border-radius: 0.5rem;
    background: #303030;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    text-indent: 0px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
}


.swiper-slide-facilities i {
    position: relative;
    font-size: 40px;
    margin-bottom: 14px;
}

.swiper-slide-facilities i::after {
    position: absolute;
    content: '';
    width: 200px;
    height: 2px;
    border-radius: 4px;
    background: #fff;
    left: 50%;
    transform: translatex(-50%);
    top: 58px;
}
.swiper-slide-facilities .material-icons {
    font-size: 40px !important;
    border: 3px solid #303030;
    border-radius: 50px;
    padding: 8px;
    margin-top: 0px;
  }
/*End of facilities swiper*/

.swiper-button-next, .swiper-button-prev {
    top: 40% !important;
}