@charset "UTF-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}


/* BASIC SETUP */

.page-wrapper {
  width: 100%;
  height: auto;
}

.nav-wrapper {
  width: 100%;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  background-color: #251f69;
}

.grad-bar {
  width: 100%;
  height: 5px;
    background: linear-gradient(-45deg, #dcba2b, #26206a, #ffffff, #5e54a5);  background-size: 400% 400%;
  	-webkit-animation: gradbar 15s ease infinite;
	-moz-animation: gradbar 15s ease infinite;
	animation: gradbar 15s ease infinite;
}

/* NAVIGATION */

.navbar {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  height: 80px;
  overflow: hidden;
  background-color: #251f69;
  padding: 0.5rem 0rem!important;
}

.navbar .HDR
{
	font-size: 1.2rem;
    margin-left: 10px;
	color: #bc9324;
    font-weight: 600;
	position: absolute;
	margin-top: 14px;
}

.navbar img {
  height: 60px;
  width: auto;
  justify-self: start;
}

.navbar ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  justify-self: end;
  
}

.nav-item a {    
	color: #fff;
    font-size: 1rem;
    font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.nav-item a:hover {
  color: #fff;
  -webkit-text-shadow: 0 0 20px #fff, 0 0 50px #fff;
  -moz-text-shadow: 0 0 20px #fff, 0 0 50px #fff;
  -ms-text-shadow: 0 0 20px #fff, 0 0 50px #fff;
  -o-text-shadow: 0 0 20px #fff, 0 0 50px #fff;
  text-shadow: 0 0 20px #fff, 0 0 50px #fff;
  text-decoration: none;
}

/* SECTIONS */


/* SEARCH FUNCTION */

#search-icon {    
  color: #6259a7;
  font-size: 0.9rem;
  margin-top: 3px;
  margin-left: 28px;
  transition: color 0.3s ease-out;
}

#search-icon:hover {
  color: #3498db;
  cursor: pointer;
}

.search {
  transform: translate(-35%);
  -webkit-transform: translate(-35%);
  transition: transform 0.7s ease-in-out;
  color: #3498db;
}

.no-search {
  transform: translate(0);
  transition: transform 0.7s ease-in-out;
}

.search-input {
  position: absolute;
  top: -4px;
  right: -125px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.6s ease;
}

.search-active {
  opacity: 1;
  z-index: 0;
}

input {
  border: 0;
  border-left: 1px solid #ccc;
  border-radius: 0; /* FOR SAFARI */
  outline: 0;
  padding: 5px;
}

/* MOBILE MENU & ANIMATION */

.menu-toggle .bar{
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-toggle {
  justify-self: end;
  margin-right: 25px;
  display: none;
}

.menu-toggle:hover{
  cursor: pointer;
}

#mobile-menu.is-active .bar:nth-child(2){
  opacity: 0;
}

#mobile-menu.is-active .bar:nth-child(1){
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

#mobile-menu.is-active .bar:nth-child(3){
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

/* KEYFRAME ANIMATIONS */

@-webkit-keyframes gradbar {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes gradbar {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes gradbar {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

/* Media Queries */

  /* Mobile Devices - Phones/Tablets */

@media only screen and (max-width: 720px) { 
  .features {
    flex-direction: column;
    padding: 50px;
  }
  
  /* MOBILE HEADINGS */
  
  h1 {
    font-size: 1.9rem;
  }
  
  h2 {
    font-size: 1rem;
  }
  
  p {
    font-size: 0.8rem;
  }
  
  /* MOBILE NAVIGATION */
     
  .navbar ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    justify-content: start;
    top: 86px;
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: calc(55vh - 55px);
    transform: translate(-101%);
    text-align: center;
    overflow: hidden;
    left: 0px;
  }
  
  .navbar li {
    padding: 15px;
  }
  
  .navbar li:first-child {
    margin-top: 50px;
  }
  
  .navbar li a {
    font-size: 1rem;    
	color: #251f69;
    font-weight: 600;
  }
   
  .menu-toggle, .bar {
    display: block;
    cursor: pointer;
  }
  
  .mobile-nav {
  transform: translate(0%)!important;
}
  
  /* SECTIONS */
  
  .headline {
    height: 20vh;
  }
    
  .feature-container p {
    margin-bottom: 25px;
  }
  
  .feature-container {
    margin-top: 20px;
  }
  
  .feature-container:nth-child(2) {
    order: -1;
  }
  
  /* SEARCH DISABLED ON MOBILE */
  
  #search-icon {
    display: none;
  }
  
  .search-input {
  display: none;
 }
  
}
/*
.about {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  transition: all 0.2s ease;
}
.about .bg_links {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  backdrop-filter: blur(5px);
  position: absolute;
}
.about .logo {
  width: 40px;
  height: 40px;
  z-index: 9;
  background-image: url(https://rafaelalucas91.github.io/assets/codepen/logo_white.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 10px 7px;
  opacity: 0.9;
  transition: all 1s 0.2s ease;
  bottom: 0;
  right: 0;
}
.about .social {
  opacity: 0;
  right: 0;
  bottom: 0;
}
.about .social .icon {
  width: 100%;
  height: 100%;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  display: flex;
  transition: all 0.2s ease, background-color 0.4s ease;
  opacity: 0;
  border-radius: 100%;
}
.about .social.portfolio {
  transition: all 0.8s ease;
}
.about .social.portfolio .icon {
  background-image: url(https://rafaelalucas91.github.io/assets/codepen/link.svg);
}
.about .social.dribbble {
  transition: all 0.3s ease;
}
.about .social.dribbble .icon {
  background-image: url(https://rafaelalucas91.github.io/assets/codepen/dribbble.svg);
}
.about .social.linkedin {
  transition: all 0.8s ease;
}
.about .social.linkedin .icon {
  background-image: url(https://rafaelalucas91.github.io/assets/codepen/linkedin.svg);
}
.about:hover {
  width: 105px;
  height: 105px;
  transition: all 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .logo {
  opacity: 1;
  transition: all 0.6s ease;
}
.about:hover .social {
  opacity: 1;
}
.about:hover .social .icon {
  opacity: 0.9;
}
.about:hover .social:hover {
  background-size: 28px;
}
.about:hover .social:hover .icon {
  background-size: 65%;
  opacity: 1;
}
.about:hover .social.portfolio {
  right: 0;
  bottom: calc(100% - 40px);
  transition: all 0.3s 0s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.portfolio .icon:hover {
  background-color: #698fb7;
}
.about:hover .social.dribbble {
  bottom: 45%;
  right: 45%;
  transition: all 0.3s 0.15s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.dribbble .icon:hover {
  background-color: #ea4c89;
}
.about:hover .social.linkedin {
  bottom: 0;
  right: calc(100% - 40px);
  transition: all 0.3s 0.25s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.linkedin .icon:hover {
  background-color: #0077b5;
}

*/

/* swiper */

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

.swiper-container {
  padding: 0;
  height: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .swiper-container {
    height: 500px;
  }
}
.swiper-slide {
  width: 100%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.swiper-slide:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
  opacity: 0.3;
}

.swiper-slide:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
}

/* swiper arrows */
.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev {
  left: 30px;
}

.swiper-button-next {
  right: 30px;
}

.swiper-button-prev span,
.swiper-button-next span {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    position: absolute;
    border: solid 3px #251f69;
    border-left: 0;
    border-bottom: 0;
    transition: all 0.3s ease;
}

.swiper-button-prev span {
  transform: rotate(-135deg);
  left: 50%;
}

.swiper-button-next span {
  transform: rotate(45deg);
  right: 50%;
}

.swiper-button-prev span:after,
.swiper-button-next span:after {
  content: "";
  position: absolute;
  border: 4px solid #251f69;
  background-color: #251f69;
  width: 0px;
  height: 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: rotate(-45deg);
}

.swiper-button-prev:hover span {
  left: 30%;
}

.swiper-button-next:hover span {
  right: 30%;
}

.swiper-button-prev:hover span:after,
.swiper-button-next:hover span:after {
  width: calc(20px - 4px);
}

/* swiper arrows mobile */
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: 0px;
  }

  .swiper-button-next {
    right: 0px;
  }

  .swiper-button-prev:hover span {
    left: 50%;
  }

  .swiper-button-next:hover span {
    right: 50%;
  }

  .swiper-button-prev:hover span:after,
.swiper-button-next:hover span:after {
    display: none;
  }
}
/* swiper pagination */
.swiper-pagination {
  height: 40px;
}

.swiper-pagination-bullet {
  background-color: transparent;
  border: solid 1px white;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.swiper-pagination-bullet:hover {
  background-color: white;
}

.swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  left: 0;
  background-color: transparent;
  border: solid 1px white;
}

/* text content */
.slide-text {
  text-align: center;
  color: white;
  opacity: 1;
  z-index: 2;
  width: 80%;
  max-width: 580px;
}

.slide-text h1 {
  font-size: 30px;
  letter-spacing: 0.03em;
}

.slide-text p {
     font-size: 24px;
    font-weight: 500;
	color: #fff;
	-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

/* text mobile */
@media screen and (max-width: 768px) {
  .slide-text {
    width: 60%;
  }

  .slide-text h1 {
    font-size: 20px;
    letter-spacing: 0.02em;
  }

  .slide-text p {
    font-size: 14px;
  }
}
/* button */

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #261f69!important;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: none!important;
    right: 10px;
    left: auto;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: none!important;
    left: 10px;
    right: auto;
}

.slide-text .btn {
  background-color: transparent;
  border: solid 1px white;
  padding: 15px 30px;
  min-width: 100px;
  width: fit-content;
  font-size: 14px;
  letter-spacing: 2px;
  color: white;
  position: relative;
  border-radius: 80px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin-top: 20px;
}

.slide-text .btn:after {
  content: "";
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 0px;
  border-radius: inherit;
  transition: all 0.3s ease-in-out;
}

.slide-text .btn:hover::after {
  left: 4px;
  top: 5px;
  background-color: rgba(255, 255, 255, 0.3);
}

.slide-text .btn:hover {
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .slide-text .btn:hover::after {
    left: 0px;
    top: 0px;
    background-color: rgba(255, 255, 255, 0.1);
  }
}
button:focus {
  outline: 0;
}

.section {
	position: relative;
	height: 80vh;
	width: 100%;
	float: left;
}

.section .section-center {
	width: 100%;
	float: left;
	position: absolute;
	top: 80%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#booking {
	background-size: cover;
	background-position: center;
	font-weight: 300;
	display: none;
}

#booking .col-md-8{
	float: right;
}

.booking-form {
    border: 3px solid #fff;
    background-image: url(../../../CHARITY/ss-AM_03.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 15px 30px;
    border-radius: 15px;
    overflow: auto;
}

.booking-form .form-group {
	position: relative;
	margin-bottom: 30px;
}

.booking-form .form-control {
	border: none;
	height: 65px;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 24px;
	color: #090a0b;
	font-weight: 300;
	background: #f2f1f1;
	border-radius: 4px;
}

.booking-form .form-control::-webkit-input-placeholder {
	color: #b1b6bd;
}

.booking-form .form-control:-ms-input-placeholder {
	color: #b1b6bd;
}

.booking-form .form-control::placeholder {
	color: #b1b6bd;
}

.booking-form input[type="date"].form-control:invalid {
	color: #b1b6bd;
}

.booking-form select.form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.booking-form select.form-control+.select-arrow {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 24px;
	text-align: center;
	pointer-events: none;
	height: 65px;
	line-height: 65px;
	color: #b1b6bd;
	font-size: 14px;
}

.booking-form select.form-control+.select-arrow:after {
	content: '\279C';
	display: block;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.booking-form .form-label {
	color: #fff;
	display: block;
	font-weight: 600;
	height: 25px;
	line-height: 25px;
	font-size: 16px;
	position: relative;
	margin-top: 10px;
	text-transform: uppercase;
}

.booking-form .form-label:after {
	content: '';
	position: absolute;
	left: 10px;
	top: -10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #f2f1f1 transparent transparent transparent;
}

.booking-form .form-btn {
	margin-bottom: 30px;
}

.drp2
{
	margin-top: 20px!important;
}

.dropbtn {
    background-color: rgb(37 31 105);
    padding: 16px 105px;
    font-size: 22px;
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 6px;    
	font-weight: 900;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #39346f;
}
.booking-form .submit-btn {
	background: #251f69;
	border: none;
	font-weight: 600;
	text-transform: uppercase;
	height: 90px;
	font-size: 18px;
	width: 100%;
	color: #fff;
	border-radius: 4px;
	display: block;
}


.gallery
{
	border: px solid gray;
	width: 100%;
	float: left;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.main
{
	width: 100%;
	float: left;    
	padding: 2rem 0rem;
	padding-bottom: 3rem;
}

.main .c2 {  
  max-width: 74rem;
  width: 100%;
  padding: 0rem 2rem!important;
  padding-top: 2rem!important;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.main .c2 h1{  
    color: #251f69;
    font-size: 32px;
    font-weight: 600;
}

.main .container {  
  max-width: 74rem;
  width: 100%;
  padding: 2rem 2rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}
.main .card {
  color: #252a32;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}
.main .c1 {
  box-shadow: none;
  border: none;
  padding-top: 55px;
}
.main .drpt3{
  padding: 16px 118px!important;    
  margin-top: 16px;
}
.main .cdd {
	display: none;
}
.main .chh {
}
.main .chh img{
}
.card .flex-1 {
  flex: 1;
  min-width: 250px;
  margin: 0 auto 50px;
}
.card .button {
  border: 1px solid #fff;
  padding: 2rem 13.7rem;
  background: #251f69;
  color: #fff;
  text-align: center;
  display: inline-block;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  will-change: transform;
}
.btn-4 {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.95);
  border: 1px solid white;
  transition: 0.3s all ease-in-out;
}
.btn-4:hover {
  background: #3e3884;
  box-shadow: 0px 0px 10px 5px rgba(255, 255, 255, 0.85);
}
.main .card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 45%;
  background: #ffffff;
}
.main .cd1 {
	color: #252a32;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: none!important;
	border: none!important;
}
.main .ci1 {
  position: relative;
  display: block;
  width: 1120px!important;
  padding-top: 0%!important;
  background: none!important;
}
.main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 600px) {
  .main .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
	padding: 2rem 1rem;
  }
}

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

.rooms .mb-25 {
    margin-bottom: 25px;
}

.rooms .mb-25 h2{
    margin-bottom: 1.2rem;
}

.rooms .mb-25 h2 a{
    font-size: 32px;
    line-height: 1.8rem;
    font-weight: 600;
    color: #251f69;
	text-decoration: none;
}

.rooms .description{
	overflow: hidden;
}

.rooms .description p
{
	font-size: 1.25rem;
	font-weight: 400;
}

.rooms .col-md-3 .text-right
{
	margin-top: 50px;
}

.rooms .col-md-3 .text-right i
{
	font-size: 10px;
}

.rooms .col-md-3 .text-right a
{
	color: red;
	text-decoration: underline;
}

.featured-carousel ul li
{
	display: inline-block;
}

.featured-carousel ul li i
{
	color: #fff;
	margin-right: 14px;
}

.featured-carousel ul li svg
{
	margin-right: 14px;
}

.ftco-section .btn{
    padding: 1rem 2.5rem;
    line-height: 2rem;
    background-color: #251f69;
    border: none;
	cursor: pointer;
	color: #fff;
	font-weight: 900;
	margin-top: 45px;
}

.ftco-section .btn:hover{
	color: #fff;
}

.services
{
	width: 100%;
	float: left;    
	padding: 2em 0px;
}

.services h1{  
    color: #251f69;
    font-size: 32px;
    font-weight: 600;
}

.services ul
{
	list-style: none;
	margin-top: 3rem;
}

.services ul li
{
    display: inline-block;
    width: 16%;
    color: #676767;
}

.services ul li:hover
{
    color: #000;
	transition: ease 1s;
	cursor: pointer;
}

.services ul li i
{
	margin-left: auto;
	margin-right: auto;
	display: block;
	font-size: 42px;
}

.services ul li h2
{
	text-align: center;
	font-size: 16px;    
	margin-top: 12px;
}

.place
{
	width: 100%;
	float: left;    
	padding-top: 2rem;
}

.place h1{  
    color: #251f69;
    font-size: 32px;
    font-weight: 600;
}

.place .container h5{ 
    font-weight: 400;
}


.place .main{
  width: 100%;
  margin: 0 auto;
}

.place .main h1 {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

.place .main img {
  height: 252px;
  max-width: 100%;
  vertical-align: middle;
}

.place .btn {
  color: #ffffff;
  padding: 0.8rem;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 400;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.place .btn:hover {
	color: #fff;
}

.place .cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.place .cards_item {
  display: flex;
  padding: 1rem;
}

@media (min-width: 40rem) {
  .place .cards_item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .place .cards_item {
    width: 33.3333%;
  }
}

.place .card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.place .card_content {
  padding: 1rem;
  background: linear-gradient(to bottom left, #251f69 40%, #000000 100%);
}

.place .card_title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0px;
}

.place .card_text {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;    
  font-weight: 400;
}

/*---------- testimonial css start ----------*/
.p1
{
	width: 100%;
	float: left;    
	display: flex;
    padding: 0rem 7rem;
}
.pn_reviews{
	width: 100%;
	float: left;
}
.pn_reviews .col-md-12{
	padding: 0px;
}
.pn_testimonial_box {
  font-weight: 300;
  padding: 2rem;
  margin: 2rem;
  border: 1px solid #405fbd;
  position: relative;
  transition: 1s;
  transform: scale(0.9);
  background-color: #fff;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  -ms-border-radius: 4rem;
  border-radius: 4rem;
}
.pn_testimonial_box:hover {
  box-shadow: 2px 4px 8px #d6d8da;
  border: 1px solid #fff;
  transform: scale(1);
  position: relative;
  z-index: 1;
}
.pn_review_rating img {
  width: 20%;
}
.pn_review_profile img {
  position: absolute;
  margin: -1rem -5rem 0;
}
.pn_review_profile span {
  position: absolute;
}
.mb-9 {
    margin-bottom: 2rem;
}
.mb-10 {
    margin-bottom: 5rem;
}
.mb-11 {
    margin-bottom: 5.5rem;
}
.mb-12 {
    margin-bottom: 10rem;
}

@media (max-width: 575px) {
    /*---------- testimonial css start ----------*/
    .pn_reviews {
        padding: 3rem 0;
    }
    .pn_reviews h1 {
        font-size: 2rem;
        padding-bottom: 1rem !important;
    }
    .pn_testimonial_box {
        padding: 2rem;
        margin: 0rem;
        border: 1px solid #405fbd;
        position: relative;
        -webkit-border-radius: 4rem;
        -moz-border-radius: 4rem;
        -ms-border-radius: 4rem;
        border-radius: 4rem;
    }
    .pn_review_profile img {
        position: absolute;
        margin: -1.1rem -3rem 0;
    }
    .pn_review_profile span {
        position: absolute;
        padding: 1rem;
    }
    .pn_review_rating img {
        width: auto;
    }
}

/* slider обертка */
.slider {
  position: relative;
  height: 100%;
  width: 100%;
  float: left;
  overflow: hidden;    
  padding: 2rem 0rem;
}
.slider .container h1{
	color: #251f69;
    font-size: 32px;
    font-weight: 600;
}
/*Окно со слайдами*/
.slider-content {
  position: relative;
  width: 100%;
}
/*Контейнер для слайдов (передвигаем)*/
.slider-content-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
/*Слайд*/
.slider-content__item {
  flex: 1 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
/* Блок с контролами */
.slider-controls {
  padding: 20px;
  text-align: center;
  display: none;
}
/* Блок с контролами внутри окна */
.slider-content__controls {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /*transform: translateY(-50%);*/
  /*padding:0 15px;*/
}
/* Arrows */
.prev-arrow,
.next-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: rgb(38 31 105 / 55%);
  width: 20px;
  transition: all 0.3s;
}
.prev-arrow {
  left: 70px;
}
.next-arrow {
  right: 70px;
}
.prev-arrow:hover,
.next-arrow:hover {
  cursor: pointer;
  color: #251f69;
}
/* Dots */
.dots {
  position: absolute;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0%;    
  margin: 1rem 0rem;
}
.dot {
  cursor: pointer;
    width: 12px;
    height: 12px;
  margin-right: 4px;
  background-color: rgba(0, 0, 0, 0.3);
  /*box-shadow: 0 0 5px 0px rgba(0,0,0,0.9);*/
  border-radius: 50%;
  transition: all 0.3s;
}
.dot:last-child {
  margin-right: 0;
}
.dot:hover {
  background-color: #fff;
}
.dot--active {
  background-color: #261f69;
}
/* Buttons */
button {
  cursor: pointer;
  margin-right: 8px;
  border: none;
  border-radius: 4px;
  padding: 10px;
  background-color: #3066BE;
  color: #FFF;
  transition: all 0.5s;
}
button:last-child {
  margin-right: 0;
}
button:hover {
  background-color: #60AFFF;
}
button:focus {
  outline: none;
}
/* Mods */
.disabled {
  background-color: #DCCFCF;
  color: #B0A8A8;
  cursor: default;
  pointer-events: none;
}
.d-none {
  display: none;
}
.active {
  opacity: 1;
}
.centered {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer1
{
	width: 100%;
	float: left;
}

.cid-qJ3OvXSQuM {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: #251f69;
}

.mbr-white {
    color: #ffffff;
}

.mbr-section-title {
    letter-spacing: 1px;
    margin: 0;    
	line-height: 1.2;
}

.display-5 {
    font-size: 1.9rem;
}

.cid-qJ3OvXSQuM .mbr-section-subtitle {
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #cccccc;
	font-size: 0.8rem;
}
.mbr-section-subtitle {
    letter-spacing: 2px;
    margin: 0;
}
.mbr-section-subtitle {
    line-height: 1.3;
}
.cid-qJ3OvXSQuM .first-column .mbr-text {
	margin: 0;
}
.mbr-text {
    letter-spacing: 1px;
}
.mbr-text a{
    letter-spacing: 1px;
	color: #fff;
}
.mbr-text a:hover{
	color: #fff;
}
.mbr-text {
    font-style: normal;
    line-height: 1.7;
}
.mbr-lighter {
    font-weight: 100 !important;
}
.cid-qJ3OvXSQuM .icons-wrapper ul {
    margin: 0;
    padding: 0;
}
.cid-qJ3OvXSQuM .icons-wrapper ul li {
    margin-right: 1.25rem;
    display: inline-block;
}
.cid-qJ3OvXSQuM .icons-wrapper ul li a i{
	color: #fff;
	font-size: 1.5rem;  
	padding: 10px;
	border-radius: 50%;
}
.cid-qJ3OvXSQuM .icons-wrapper ul li a .fa-facebook {
    padding: 10px 14px;
}
.cid-qJ3OvXSQuM .icons-wrapper ul li a .fa-facebook:hover{
	background-color: #3b5998;
}
.cid-qJ3OvXSQuM .icons-wrapper ul li a .fa-instagram:hover{
  background-image: linear-gradient(#8a3ab9, #fbad50, #cd486b, #4c68d7);
}
.cid-qJ3OvXSQuM .form1 .mbr-form {
    display: inline-flex;
    width: 100%;
}
.cid-qJ3OvXSQuM .form1 .mbr-form .input-wrap {
    width: 55%;
}
.cid-qJ3OvXSQuM .form1 .mbr-form .input-wrap input {
    font-size: .9rem;
    height: 100%;
    border: none;
    width: 100%;
    padding: .3rem .5rem;
    background: #000000;
    color: #d8d7d7;
}
.cid-qJ3OvXSQuM .form1 .mbr-form .input-group-btn .btn-lg {
    padding: 1rem 2.2rem;
    margin: 0 !important;
	border-radius: 0;
    font-size: 0.8rem;
}
.cid-qJ3OvXSQuM .btn-primary, .btn-primary:active, .btn-primary.active {
    background-color: #251f69 !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

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

.cid-qJ3OwtSWji {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}
.cid-qJ3OwtSWji .mbr-text {
    color: #212529;
	text-align: center;
}