body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

body * {
  box-sizing: inherit;
}

.container {
  max-width: 1920px;
  padding: 0 3%;
}

.text-pink {
  color: #DD137B !important;
}

.text-white {
  color: #ffffff !important;
}

.text-center {
  text-align: center !important;
}

.me-1 {
  margin-right: 1rem;
}

.me-2 {
  margin-right: 2rem;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-gap-2x {
  gap: 2rem;
}

.flex-gap-3x {
  gap: 3rem;
}

.flex-1 {
  flex: 1;
}

.flex-33 {
  flex: 1 0 33.33%;
}

.content {
  width: 100%;
}

h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bolder;
  font-family: "Dosis", sans-serif;
}

@media only screen and (max-width: 991px) {
  h2 {
      font-size: 35px;
  }
}

@media only screen and (max-width: 767px) {
  h2 {
      font-size: 30px;
  }
}

@media only screen and (max-width: 500px) {
  h2 {
      font-size: 25px;
  }
}


p {
  font-family: "Open Sans", sans-serif;
}

.custom-select {
  padding: 15px;
  border-radius: 40px;
  border: 1px solid #ccc;
  width: 100%;
  max-width: 300px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../images/drop-down-arrow.png);
  background-size: 13px 13px;
  background-position: 95% center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .custom-select {
      padding: 10px;
      background-size: 10px 10px;
  }
}


.flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-self-start {
  justify-self: flex-start !important;
}

.justify-self-end {
  justify-self: flex-end !important;
}

.justify-self-center {
  justify-self: center !important;
}

.justify-self-between {
  justify-self: space-between !important;
}

footer {
  padding: 20px 0;
  background: #a020f0eb;
}

@media only screen and (max-width: 991px) {
  footer {
      padding: 40px 0;
  }
}

footer .footer {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

footer .footer .logo {
  width: 26%;
  margin-right: 4%;
  text-align: center;
  align-self: center;
}

@media only screen and (max-width: 991px) {
  footer .footer .logo {
      width: 100%;
      text-align: left;
  }
}

@media only screen and (max-width: 500px) {
  footer .footer .logo {
      text-align: center;
  }
}

footer .footer .logo img {
  width: 100%;
  width: 150px;
}

footer .footer .usefull {
  width: 21%;
  margin-right: 4%;
}

@media only screen and (max-width: 991px) {
  footer .footer .usefull {
      width: 49%;
      margin-right: 1%;
  }
}

@media only screen and (max-width: 500px) {
  footer .footer .usefull {
      width: 100%;
  }
}

footer .footer .usefull h2 {
  color: #fff;
}

@media only screen and (max-width: 500px) {
  footer .footer .usefull h2 {
      text-align: center;
  }
}

footer .footer .usefull ul {
  margin: 0;
  padding: 0;
}

footer .footer .usefull ul li {
  margin-bottom: 10px;
}

footer .footer .usefull ul li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: block;
}

footer .footer .usefull ul li a:hover {
  color: #DD137B;
}

@media only screen and (max-width: 500px) {
  footer .footer .usefull ul li a {
      text-align: center;
  }
}

footer .footer .mailing {
  width: 45%;
}

@media only screen and (max-width: 991px) {
  footer .footer .mailing {
      width: 49%;
      margin-left: 1%;
  }
}

@media only screen and (max-width: 500px) {
  footer .footer .mailing {
      margin-left: 0;
      width: 100%;
  }
}

footer .footer .mailing p, footer .footer .mailing h2 {
  color: #fff;
}

@media only screen and (max-width: 500px) {
  footer .footer .mailing p, footer .footer .mailing h2 {
      text-align: center;
  }
}

footer .footer .mailing .input {
  display: flex;
  width: 70%;
}

@media only screen and (max-width: 500px) {
  footer .footer .mailing .input {
      width: 100%;
      justify-content: center;
  }
}

footer .footer .mailing .button {
  background-color: #DD137B;
}

footer.footer-bottom {
  background: #000;
  padding: 10px 0;
}

footer.footer-bottom .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  footer.footer-bottom .content {
      justify-content: center;
      flex-direction: column;
  }
}

footer.footer-bottom p {
  color: #fff;
  font-weight: lighter;
  font-size: 14px;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  footer.footer-bottom p {
      margin-bottom: 10px;
  }
}

@media only screen and (max-width: 500px) {
  footer.footer-bottom p {
      text-align: center;
  }
}

footer.footer-bottom p a {
  font-weight: bolder;
  color: #fff;
}

footer.footer-bottom p a:hover {
  color: #ea7066;
}

footer.footer-bottom .social ul {
  display: flex;
  margin: 0;
  padding: 0;
}

footer.footer-bottom .social ul li {
  list-style: none;
  margin-left: 10px;
}

footer.footer-bottom .social ul li a {
  text-decoration: none;
  width: 26px;
  height: 26px;
  font-size: 12px;
  background-color: royalblue;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer.footer-bottom .social ul li a.fb {
  background-color: #f0c24b;
}

footer.footer-bottom .social ul li a.twitter {
  background-color: #b5d56a;
}

footer.footer-bottom .social ul li a.google {
  background-color: #ea7066;
}

footer.footer-bottom .social ul li a.pinterest {
  background-color: #84bed6;
}

footer.footer-bottom .social ul li a.vimeo {
  background-color: #a597e7;
}

header::after {
  content: "";
  clear: both;
}

header .banner {
  position: relative;
  height: 650px;
}

@media only screen and (max-width: 991px) {
  header .banner {
      height: 100%;
  }
}

@media only screen and (max-width: 767PX) {
  header .banner {
      height: 100%;
  }
}

@media only screen and (max-width: 500px) {
  header .banner {
      height: 100%;
  }
}

header .banner .background {
  height: 650px;
}

@media only screen and (max-width: 991px) {
  header .banner .background {
      height: 470px;
  }
}

@media only screen and (max-width: 767px) {
  header .banner .background {
      height: 400px;
  }
}

@media only screen and (max-width: 500px) {
  header .banner .background {
      height: 250px;
  }
}

header .banner .background img {
  height: 100%;
  display: block;
}

header .banner .inner .slider-button {
  text-align: center;
}

header .banner .inner {
  position: absolute;
  top: 3%;
  right: 6%;
  width: 470px;
  height: 80%;
  background: rgba(255, 255, 255, 0.884);
  border-right: 5px solid rgba(255, 0, 0, 0.5);
  padding: 20px 20px;
  padding-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  header .banner .inner {
      width: 400px;
      right: auto;
      left: 50%;
      transform: translateX(-50%);
  }
}

@media only screen and (max-width: 500px) {
  header .banner .inner {
      width: 320px;
      padding: 10px 30px;
  }
}

@media only screen and (max-width: 380px) {
  header .banner .inner {
      width: 80%;
  }
}

header .banner .inner .content h1 {
  color: #DD137B;
  text-transform: uppercase;
  font-size: 50px;
}

@media only screen and (max-width: 991px) {
  header .banner .inner .content h1 {
      font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  header .banner .inner .content h1 {
      font-size: 36px;
  }
}

@media only screen and (max-width: 500px) {
  header .banner .inner .content h1 {
      font-size: 26px;
      line-height: 34px;
      margin-bottom: 0;
  }
}

@media only screen and (max-width: 380px) {
  header .banner .inner .content h1 {
      margin-bottom: 20px;
      font-size: 22px;
  }
}

header .banner .inner .content p {
  color: #002d5e;
  font-size: 26px;
  font-weight: lighter;
  line-height: 46px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
  header .banner .inner .content p {
      font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  header .banner .inner .content p {
      font-size: 18px;
  }
}

@media only screen and (max-width: 500px) {
  header .banner .inner .content p {
      font-size: 16px;
      margin-bottom: 15px;
      margin-top: 0;
  }
}

@media only screen and (max-width: 380px) {
  header .banner .inner .content p {
      display: none;
  }
}

header .banner .inner .content a {
  color: #fff;
  text-decoration: none;
  background: #0f305f;
  padding: 15px 35px;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 20px;
  transition: all 1s;
}

header .banner .inner .content a:hover {
  background-color: #ea7066;
}

@media only screen and (max-width: 767px) {
  header .banner .inner .content a {
      font-size: 18px;
  }
}

@media only screen and (max-width: 500px) {
  header .banner .inner .content a {
      font-size: 16px;
      padding: 10px 25px;
  }
}

@media only screen and (max-width: 380px) {
  header .banner .inner .content a {
      padding: 8px 16px;
      font-size: 14px;
  }
}

header .banner.banner1 .background {
  background-position: left center;
  background-size: cover;
}

header .banner.banner2 .background {
  background-position: right;
  background-size: cover;
}

header .banner.banner3 .background {
  background-position: right;
  background-size: cover;
}

header .banner.banner4 .background {
  background-position: right;
  background-size: cover;
}

header .banner.banner2 .inner {
  left: 6%;
  right: auto;
}

@media only screen and (max-width: 767px) {
  header .banner.banner2 .inner {
      left: 50%;
      transform: translateX(-50%);
  }
}

.no-style {
  list-style: none !important;
}

header.header-contactus .banner1 .background {
  background: url(../images/contact/contact1.jpg);
  background-position: left center;
  background-size: cover;
}

header.header-contactus .banner2 .background {
  background: url(../images/contact/contact2.jpg);
  background-position: right;
  background-size: cover;
}

header .owl-nav {
  position: absolute;
  top: 275px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  header .owl-nav {
      top: 235px;
  }
}

@media only screen and (max-width: 767px) {
  header .owl-nav {
      top: 200px;
  }
}

@media only screen and (max-width: 500px) {
  header .owl-nav {
      top: 125px;
  }
}

header .owl-nav .owl-prev, header .owl-nav .owl-next {
  background-color: #d05b67 !important;
  color: #fff !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-size: 26px !important;
  width: 30px;
  height: 30px;
  padding-bottom: 5px !important;
}

header .item {
  margin: 0 !important;
  padding: 0;
}

header .active {
  padding: 0;
  margin: 0;
}

header .owl-item {
  padding: 0;
  margin: 0;
}

header .owl-item.active {
  margin-right: 10px !important;
}

header .owl-item::after {
  content: "";
  clear: both;
}

header .active {
  padding: 0;
  margin: 0;
}

header {overflow: hidden;}
header .owl-stage {height: 550px;overflow: hidden;}
header .owl-stage .owl-item .item {height: 550px;}
/*header .owl-stage .owl-item .item img{width: 100%; height: 100%;}*/

@media only screen and (max-width: 991px) {
  /*header {height: 370px;}*/
  header .owl-stage {height: 370px;}
  header .owl-stage .owl-item .item {height: 370px;}
}

@media only screen and (max-width: 767px) {
  /*header {height: 270px;}*/
  header .owl-stage {height: 300px;}
  header .owl-stage .owl-item .item {height: 300px;}
}

@media only screen and (max-width: 500px) {
  /*header {height: 370px;}*/
  header .owl-stage {height: 250px;}
  header .owl-stage .owl-item .item {height: 250px;}
}

header .owl-carousel {
  position: absolute;
}

.top-nav {
  background-color: #DD137B;
}

.top-nav .content {
  display: flex;
  justify-content: flex-end;
}

.top-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.top-nav ul li {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.top-nav ul li a, .top-nav ul li a:hover, .top-nav ul li a:visited {
  padding: 10px;
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
}

@media only screen and (max-width: 767px) {
  .top-nav ul li a, .top-nav ul li a:hover, .top-nav ul li a:visited {
      font-size: 12px;
  }
}

.top-nav ul li a:hover {
  background-color: #A020F0;
}

.top-nav ul li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

@media only screen and (max-width: 767px) {
  .hidden-mobile {
      display: none;
  }
}

.nav {
  padding: 8px 0;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.nav .logo {
  width: 100%;
  max-width: 65px;
  margin-right: 70px;
}

@media only screen and (max-width: 767px) {
  .nav .logo {
      margin-right: 40px;
  }
}

@media only screen and (max-width: 500px) {
  .nav .logo {
      margin-right: 20px;
  }
}

.nav .logo a {
  display: block;
}

.nav .logo a img {
  width: 100%;
}

.nav .menu-btn {
  display: none;
  cursor: pointer;
  font-size: 20px;
  color: #ea7066;
  transition: all 1s;
}

.nav .menu-btn:hover {
  color: #3fbed1;
}

@media only screen and (max-width: 1100px) {
  .nav .menu-btn {
      display: block;
  }
}

.nav ul {
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 1100px) {
  .nav ul:not(.ul-locations) {
      display: none;
      position: absolute;
      top: 100%;
      background: #fff;
      right: 4px;
      z-index: 11111;
      padding: 20px;
      width: 215px;
      box-shadow: 1px 1px 1px 2px rgba(0, 0, 0, 0.3);
      overflow: hidden;
  }
}

@media only screen and (max-width: 1100px) {
  .nav ul ul:not(.ul-locations) {
      position: relative;
      box-shadow: none;
      padding: 20px;
      width: 100%;
  }
}

.nav ul li {
  margin-right: 5px;
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .nav ul li {
      margin-right: 3px;
  }
}

.nav ul li a, .nav ul li a:visited, .nav ul li span {
  cursor: pointer;
  padding: 10px;
  color: #333;
  text-decoration: none;
  display: block;
  font-family: "Open Sans", sans-serif;
}

@media only screen and (max-width: 1400px) {
  .nav ul li a, .nav ul li a:visited, .nav ul li span {
      padding: 5px;
  }
}

@media only screen and (max-width: 1200px) {
  .nav ul li a, .nav ul li a:visited, .nav ul li span {
      font-size: 14px;
  }
}

.nav ul li a:hover, .nav ul li a.active {
  color: #DD137B;
}

.nav ul li .sub {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 70px;
  left: -20px;
  z-index: 99999999999999;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
  transition: all 0.5s;
}

.nav ul li .sub h2 {
  font-size: 16px;
  margin-bottom: 5px;
}

.nav ul li .sub h3 {
  font-size: 12px;
  color: #666;
  font-weight: 400;
  margin: 0 0 10px 0;
}

.nav ul li .sub p {
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

.nav ul li .sub ul {
  margin: 0;
  padding: 0;
}

.nav ul li .sub ul li a, .nav ul li .sub ul li span {
  cursor: pointer;
  padding: 10px;
  font-weight: 400;
  font-size: 14px;
}

.nav ul li .sub ul li a:hover, .nav ul li .sub ul li span:hover {
  color: #fff;
  background-color: #DD137B;
}

.nav ul li .sub-location {
  width: 200px;
  right: 0;
}

.nav ul li .sub-location li {
  margin-right: 0;
}

.nav ul li:hover .sub {
  opacity: 1;
  top: 55px;
  visibility: visible;
}

.nav ul li:hover .sub ul {
  display: block;
}

.buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

div .button {
  border-radius: 8px;
  transform: skewX(-20deg);
  min-width: 167px;
}

.button {
  color: #fff;
  text-decoration: none;
  background: #DD137B;
  padding: 10px 20px;
  font-weight: 600;
  text-transform: capitalize;
  border: 0;
  transition: all 1s;
  cursor: pointer;
  margin-top: 6px;
  text-align: center;
}

.button:hover {
  background-color: #A020F0;
}

.button.view-more {
  border: 1px solid #002d5e;
  border-radius: 30px;
  padding: 15px 30px;
  font-size: 16px;
  background-color: transparent;
  color: #002d5e;
  display: block;
  margin: 20px auto;
}

.button.view-more:hover {
  background-color: #ea7066;
}

input {
  padding: 10px;
  border: 1px solid #ccc;
  width: 100%;
}

.popup {
  width: 100vw;
  height: 100%;
  overflow: auto;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 99999998;
  display: flex;
  justify-content: center;
}

.popup .message {
  position: relative;
  width: 90%;
  max-width: 400px;
  background-color: #fff;
  height: max-content;
  margin-top: 60px;
}

.popup .message .close {
  position: absolute;
  right: 5px;
  top: -10px;
  background-color: #af0606;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.popup .message .body {
  padding: 20px;
}

.popup .message .img {
  width: 100%;
}

.popup .message .img img {
  width: 100%;
}

.popup .message h2, .popup .message p {
  text-align: center;
  margin-bottom: 20px;
}

.popup .message a:not(.button) {
  color: #ea7066;
  text-decoration: none;
}

.promotions-conttainer {
  position: relative;
  overflow: hidden;
}

.promotions-conttainer:hover .promotions {
  animation-play-state: paused;
}

.promotions {
  padding: 10px 0;
  display: flex;
  animation: 23s scroll both infinite linear;
  /*width: 1920px;*/
  height: 40px;
  gap: 23px;
}

.promotions a {
  font-weight: bold;
  color: #ea7066;
  text-transform: uppercase;
  text-decoration: none;
}

.promotions .promotion {
  text-align: left;
  white-space: nowrap;
}

.promotions.backwards {
  position: absolute;
  left: 0;
  top: 0;
  animation-delay: 10s;
}

@keyframes scroll {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}

.section-locations {
  overflow-x: hidden;
  background: url(../images/bg-pattern1.jpg);
}

.section-locations h2 {
  color: #ffffff;
  text-align: center;
  font-size: 40px;
  font-weight: bolder;
  font-family: "Dosis", sans-serif;
}

@media only screen and (max-width: 991px) {
  .section-locations h2 {
      font-size: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .section-locations h2 {
      font-size: 30px;
  }
}

@media only screen and (max-width: 500px) {
  .section-locations h2 {
      font-size: 25px;
  }
}

.section-locations .locations {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.section-locations .locations .location {
  display: block;
  text-decoration: none;
  width: 34.33%;
  margin: 1%;
}

@media only screen and (max-width: 767px) {
  .section-locations .locations .location {
      width: 48%;
  }
}

@media only screen and (max-width: 500px) {
  .section-locations .locations .location {
      width: 88%;
  }
}

.section-locations .locations .location .img {
  position: relative;
  border: 4px solid #eee;
  overflow: hidden;
}

.section-locations .locations .location .img img {
  width: 100%;
  display: block;
}

.section-locations .locations .location .img .button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  padding: 10px 30px;
  opacity: 0;
  transition: all 1s;
  z-index: 111;
}

.section-locations .locations .location .img::before {
  content: "";
  position: absolute;
  background-color: rgba(234, 112, 102, 0);
  width: 100%;
  height: 100%;
  top: 0%;
  left: -50%;
  transform: rotate(40deg);
  z-index: 10;
  transition: all 1s;
}

.section-locations .locations .location .img::after {
  content: "";
  position: absolute;
  background-color: rgba(0, 45, 94, 0);
  width: 100%;
  height: 100%;
  top: 0%;
  transition: all 1s;
}

.section-locations .locations .location h2 {
  color: #DD137B;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.section-locations .locations .location:hover .img .button {
  opacity: 1;
}

.section-locations .locations .location:hover .img::before {
  content: "";
  background-color: rgba(234, 112, 102, 0.7);
}

.section-locations .locations .location:hover .img::after {
  background-color: rgba(0, 45, 94, 0.7);
}

.section-advantages {
  padding: 40px 0;
  background-color: #3fbed1;
  overflow-x: hidden;
}

.section-advantages h2 {
  color: #fff;
  text-align: center;
  font-size: 40px;
  margin: 0;
  font-family: "Dosis", sans-serif;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .section-advantages h2 {
      font-size: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .section-advantages h2 {
      font-size: 30px;
  }
}

@media only screen and (max-width: 500px) {
  .section-advantages h2 {
      font-size: 25px;
  }
}

.section-advantages .advantages {
  display: flex;
  flex-wrap: wrap;
  transform: skewX(-8deg);
}

@media only screen and (max-width: 587px) {
  .section-advantages .advantages {
      transform: skewX(0deg);
  }
}


.section-advantages .advantages .advantage {
  display: block;
  text-decoration: none;
  width: 31.33333%;
  margin: 1%;
  border: 3px solid #fff;
  padding: 15px;
  border-radius: 10px;
  color: #fff;
  transition: all 1s;
  box-shadow: 0 5px 8px #ffffff;
  /*transform: skewX(-10deg);*/
}

@media only screen and (max-width: 991px) {
  .section-advantages .advantages .advantage {
      margin: 1%;
      width: 48%;
  }
}

@media only screen and (max-width: 500px) {
  .section-advantages .advantages .advantage {
      margin: 1%;
      width: 98%;
  }
}

.section-advantages .advantages .advantage .icon {
  font-size: 40px;
  transition: all 0.2s;
}

.section-advantages .advantages .advantage h2 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: left;
  transition: all 0.2s;
}

.section-advantages .advantages .advantage p {
  line-height: 27px;
  transition: all 0.2s;
}

.section-advantages .advantages .advantage:hover {
  background-color: #fff;
  color: #3fbed1;
}

.section-advantages .advantages .advantage:hover h2 {
  color: #3fbed1;
}

.section-blogs {
  overflow-x: hidden;
  background-color: #ddd;
  padding: 50px 0;
}

.section-blogs h2 {
  color: #DD137B;
  text-align: center;
  font-size: 40px;
  margin: 0;
  font-family: "Dosis", sans-serif;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .section-blogs h2 {
      font-size: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .section-blogs h2 {
      font-size: 30px;
  }
}

@media only screen and (max-width: 500px) {
  .section-blogs h2 {
      font-size: 25px;
  }
}

.section-blogs .blogs {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.section-blogs .blogs .blog {
  display: block;
  width: 23%;
  margin: 1%;
  color: #000;
  text-decoration: none;
  background-color: #fff;
  transition: all 1s;
}

@media only screen and (max-width: 1150px) {
  .section-blogs .blogs .blog {
      width: 48%;
  }
}

@media only screen and (max-width: 500px) {
  .section-blogs .blogs .blog {
      width: 98%;
  }
}

.section-blogs .blogs .blog:hover {
  transform: scale(1.03);
}

.section-blogs .blogs .blog .head img {
  width: 100%;
}

.section-blogs .blogs .blog .body {
  padding: 20px;
}

.section-blogs .blogs .blog .body .meta {
  display: flex;
  justify-content: space-between;
}

.section-blogs .blogs .blog .body .meta .date {
  background-color: #f59d29;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  margin-top: -60px;
}

.section-blogs .blogs .blog .body .meta .by {
  display: block;
  padding: 2px 10px;
  border-radius: 30px;
  color: #03b99b;
  font-size: 14px;
}

.section-blogs .blogs .blog .body p.desc {
  line-height: 27px;
  color: #002d5e;
}

.section-parties {
  padding: 50px 0;
  background: linear-gradient(180deg, #DD137B 0%, #A020F0 100%);
  background-size: cover;
  overflow-x: hidden;
}

.section-parties h2 {
  color: #fff;
  text-align: center;
  font-family: "Dosis", sans-serif;
  font-size: 40px;
  margin: 0;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .section-parties h2 {
      font-size: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .section-parties h2 {
      font-size: 30px;
  }
}

@media only screen and (max-width: 500px) {
  .section-parties h2 {
      font-size: 25px;
  }
}

.section-parties .parties {
  max-width: 1333px;
  margin: 0 auto;
}

.section-parties .parties .party {
  display: flex;
  align-items: center;
  margin: 40px 0;
}

@media only screen and (max-width: 500px) {
  .section-parties .parties .party {
      flex-direction: column;
  }
}

.section-parties .parties .party .img {
  flex: 0 0 33%;
  margin-right: 5%;
  border: 3px solid #fff;
}

.section-parties .parties .party .img img {
  width: 100%;
  display: block;
}

@media only screen and (max-width: 500px) {
  .section-parties .parties .party .img {
      margin-bottom: 30px;
      margin-right: 0;
  }
}

.section-parties .parties .party .text h2 {
  text-align: left;
  font-style: italic;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}

@media only screen and (max-width: 500px) {
  .section-parties .parties .party .text h2 {
      text-align: center;
  }
}

.section-parties .parties .party .text p {
  text-align: left;
  font-style: italic;
  color: #fff;
  margin-bottom: 30px;
}

@media only screen and (max-width: 500px) {
  .section-parties .parties .party .text p {
      text-align: center;
  }
}

.section-parties .parties .party .text .buttons {
  display: flex;
}

@media only screen and (max-width: 500px) {
  .section-parties .parties .party .text .buttons {
      justify-content: center;
  }
}

.section-parties .parties .party .text .button {
  border: 1px solid #fff;
  padding: 10px 20px;
  font-size: 16px;
  background-color: transparent;
  color: #fff;
}

.section-parties .parties .party .text .button:hover {
  background-color: #fff;
  color: #002d5e;
}

.section-parties .parties .party:nth-child(even) .img {
  order: 2;
  margin-right: 0;
  margin-left: 5%;
}

@media only screen and (max-width: 500px) {
  .section-parties .parties .party:nth-child(even) .img {
      order: 1;
      margin-left: 0;
  }
}

.section-parties .parties .party:nth-child(even) .text {
  order: 1;
}

@media only screen and (max-width: 500px) {
  .section-parties .parties .party:nth-child(even) .text {
      order: 2;
  }
}

.section-attractions {
  overflow-x: hidden;
  padding: 15px;
  background: url(../images/bg-pattern1.jpg);
}

.section-attractions h2 {
  color: #DD137B;
  font-family: "Dosis", sans-serif;
  text-align: center;
  font-size: 40px;
  margin: 0;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .section-attractions h2 {
      font-size: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .section-attractions h2 {
      font-size: 30px;
  }
}

@media only screen and (max-width: 500px) {
  .section-attractions h2 {
      font-size: 25px;
  }
}

.section-attractions .attractions {
  max-width: 100%;
  margin: 0 auto;
}

.section-attractions .attractions .attraction {
  display: flex;
  margin: 10px 0;
  flex-wrap: wrap;
}

@media only screen and (max-width: 680px) {
  .section-attractions .attractions .attraction {
      flex-direction: column;
      justify-content: center;
      max-width: 400px;
      margin: 10px auto;
  }
}

.section-attractions .attractions .attraction .img {
  max-width: 40%;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

@media only screen and (max-width: 680px) {
  .section-attractions .attractions .attraction .img {
      flex: 0 0 100%;
      max-width: 400px;
      width: 100%;
      height: auto;
  }
}

.section-attractions .attractions .attraction .img img {
  width: 100%;
  height: 100%;
  display: block;
}

.section-attractions .attractions .attraction .text {
  flex: 1;
  padding: 20px;
  background-color: #eee;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.section-attractions .attractions .attraction .text h2 {
  text-align: left;
  margin-bottom: 0;
  font-size: 22px;
  font-family: "Open Sans", sans-serif;
}

@media only screen and (max-width: 680px) {
  .section-attractions .attractions .attraction .text h2 {
      text-align: center;
  }
}

.section-attractions .attractions .attraction .text p {
  color: #002d5e;
  margin-bottom: 20px;
  text-align: left;
}

@media only screen and (max-width: 680px) {
  .section-attractions .attractions .attraction .text p {
      text-align: center;
  }
}

.section-attractions .attractions .attraction .text .buttons {
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 680px) {
  .section-attractions .attractions .attraction .text .buttons {
      justify-content: center;
  }
}

.section-attractions .attractions .attraction .text .button {
  padding: 10px 20px;
  font-size: 16px;
}

.section-attractions .attractions .attraction .text .button:hover {
  color: #ffffff;
}

.section-attractions .attractions .attraction:nth-child(even) .img {
  order: 2;
}

@media only screen and (max-width: 680px) {
  .section-attractions .attractions .attraction:nth-child(even) .img {
      order: 1;
  }
}

.section-attractions .attractions .attraction:nth-child(even) .text {
  order: 1;
}

@media only screen and (max-width: 680px) {
  .section-attractions .attractions .attraction:nth-child(even) .text {
      order: 1;
  }
}

.section-attractions .attractions .attraction:nth-child(even) .text h2 {
  text-align: right;
}

@media only screen and (max-width: 680px) {
  .section-attractions .attractions .attraction:nth-child(even) .text h2 {
      text-align: center;
  }
}

.section-attractions .attractions .attraction:nth-child(even) .text p {
  margin-bottom: 30px;
  text-align: right;
}

@media only screen and (max-width: 680px) {
  .section-attractions .attractions .attraction:nth-child(even) .text p {
      text-align: center;
  }
}

.section-attractions .attractions .attraction:nth-child(even) .text .buttons {
  justify-content: flex-end;
}

@media only screen and (max-width: 680px) {
  .section-attractions .attractions .attraction:nth-child(even) .text .buttons {
      justify-content: center;
  }
}

.section-attractions p {
  text-align: center;
  color: #ea7066;
  font-size: 14px;
}

.section-gallery {
  padding: 50px 0;
  background: linear-gradient(180deg, #DD137B 0%, #ea7066 100%);
}

.section-gallery h2 {
  color: #fff;
  text-align: center;
  font-family: "Dosis", sans-serif;
  font-size: 40px;
  margin: 0;
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .section-gallery h2 {
      font-size: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .section-gallery h2 {
      font-size: 30px;
  }
}

@media only screen and (max-width: 500px) {
  .section-gallery h2 {
      font-size: 25px;
  }
}

.section-gallery .gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 2000px;
  margin: 0 auto;
}

.section-gallery .gallery .img {
  width: 32%;
  margin-bottom: 20px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 1s;
  display: block;
}

.section-gallery .gallery .img img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

.section-gallery .gallery .img:hover {
  transform: scale(1.06);
}

.section-comments {
  padding: 50px 0;
  background: #D8BFD8;
}

.section-comments h2 {
  color: #DD137B;
  text-align: center;
  font-family: "Dosis", sans-serif;
  font-size: 40px;
  margin: 0;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .section-comments h2 {
      font-size: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .section-comments h2 {
      font-size: 30px;
  }
}

@media only screen and (max-width: 500px) {
  .section-comments h2 {
      font-size: 25px;
  }
}

.section-comments .comments .comment {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.section-comments .comments .comment .meta .img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  margin-bottom: 10px;
}

.section-comments .comments .comment .meta .img img {
  width: 100%;
}

.section-comments .comments .comment .meta .name {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  font-family: "Dosis", sans-serif;
  color: rgba(55, 55, 55, 0.7);
}

.section-comments .comments .comment .desc {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  position: relative;
}

.section-comments .comments .comment .desc::before {
  content: '"';
  font-size: 50px;
  color: #fff;
  position: absolute;
  left: -10px;
  font-family: "Dosis", sans-serif;
  top: -30px;
}

.section-comments .comments .comment .desc::after {
  content: '"';
  font-family: "Dosis", sans-serif;
  font-size: 50px;
  color: #fff;
  position: absolute;
  right: 10px;
  top: calc(100%);
}

.section-comments .owl-dots {
  display: flex;
  justify-content: center;
}

.section-comments .owl-dot {
  background: rgba(255, 255, 255, 0.5) !important;
  width: 12px !important;
  height: 12px !important;
  margin: 5px !important;
  border-radius: 50% !important;
}

.section-comments .owl-dot.active {
  background-color: #fff !important;
}


.section-page-content {
  padding: 10px 0;
  background: url(../images/bg-pattern1.jpg);
}

.section-page-content .flex {
  display: flex;
  align-items: flex-start;
}

@media only screen and (max-width: 991px) {
  .section-page-content .flex {
      flex-direction: column;
      align-items: center;
  }
}

.section-page-content .flex .img {
  flex: 0 0 30%;
  margin-right: 5%;
}

@media only screen and (max-width: 991px) {
  .section-page-content .flex .img {
      flex: 0 0 100%;
      margin-right: 0;
      max-width: 500px;
      margin-bottom: 20px;
  }
}

.section-page-content .flex .img img {
  width: 100%;
}

.section-page-content .flex .content h2 {
  text-align: left;
  font-family: "Open Sans", sans-serif;
  font-size: 26px;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 800;
}

@media only screen and (max-width: 991px) {
  .section-page-content .flex .content h2 {
      text-align: left;
  }
}

@media only screen and (max-width: 991px) {
  .section-page-content .flex .content p {
      text-align: left;
  }
}

.section-page-content .flex .content ul {
  list-style: none;
}

.section-page-content .flex .content ul li {
  margin-bottom: 6px;
  position: relative;
}

.section-page-content .flex .content ul li::before {
  content: '\25c6';
  position: absolute;
  top: 0;
  left: -25px;
  color: #ea7066;
}

.form-input {
  margin-bottom: 15px;
}

.form-input input, .form-input textarea, .form-input select {
  border: 1px solid whitesmoke;
  padding: 15px 10px;
  display: block;
  width: 100%;
}

.form-input select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../images/contact/arrow-down.png");
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 98% center;
}

.form-input label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.contact-header {
  height: 500px;
  display: flex;
  justify-content: flex-end;
  background: url(../images/contact/contact2.jpg);
  background-size: cover;
  background-position: center right;
}

@media only screen and (max-width: 991px) {
  .contact-header {
      height: 400px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-header {
      height: 300px;
  }
}

.contact-header img {
  height: 100%;
  display: block;
}

.contact-detail .details {
  display: flex;
  justify-content: space-between;
  margin-top: -50px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.contact-detail .details .detail {
  padding: 10px;
  background-color: #ccc;
}

.contact-detail .details .detail h2 {
  font-size: 22px;
  margin-bottom: 5px;
  text-align: left;
  color: #fff;
}

.contact-detail .details .detail p {
  color: #fff;
  margin: 0;
  margin-bottom: 5px;
}

.contact-detail .details .detail-1 {
  background-color: #379283;
  width: 20%;
}

@media only screen and (max-width: 991px) {
  .contact-detail .details .detail-1 {
      width: 100%;
  }
}

.contact-detail .details .detail-2 {
  background-color: #ea7066;
  width: 20%;
}

@media only screen and (max-width: 991px) {
  .contact-detail .details .detail-2 {
      width: 33.3333333%;
  }
}

@media only screen and (max-width: 450px) {
  .contact-detail .details .detail-2 {
      width: 100%;
  }
}

.contact-detail .details .detail-3 {
  background-color: #84bed6;
  width: 20%;
}

@media only screen and (max-width: 991px) {
  .contact-detail .details .detail-3 {
      width: 33.3333333%;
  }
}

@media only screen and (max-width: 450px) {
  .contact-detail .details .detail-3 {
      width: 100%;
  }
}

.contact-detail .details .detail-4 {
  background-color: #a597e7;
  width: 40%;
}

@media only screen and (max-width: 991px) {
  .contact-detail .details .detail-4 {
      width: 33.3333333%;
  }
}

@media only screen and (max-width: 450px) {
  .contact-detail .details .detail-4 {
      width: 100%;
  }
}

.section-get-in-touch {
  margin-top: 0;
  margin-bottom: 40px;
}

.section-get-in-touch .form {
  width: 49%;
  margin-right: 1%;
  background-color: #e4e4e4;
  padding: 20px;
}

@media only screen and (max-width: 991px) {
  .section-get-in-touch .form {
      width: 100%;
      margin: 0;
      margin-bottom: 20px;
  }
}

.section-get-in-touch .form h2 {
  margin: 0;
  margin-bottom: 10px;
  font-size: 28px;
  text-align: left;
}

.section-get-in-touch .form .flex {
  width: 100%;
}

.section-get-in-touch .form .flex .form-input {
  width: 49%;
  margin-right: 1%;
}

@media only screen and (max-width: 550px) {
  .section-get-in-touch .form .flex .form-input {
      width: 100%;
      margin-right: 0;
  }
}

.section-get-in-touch .form .flex .form-input:last-child {
  margin-right: 0;
  margin-left: 1%;
}

@media only screen and (max-width: 550px) {
  .section-get-in-touch .form .flex .form-input:last-child {
      width: 100%;
      margin-left: 0;
  }
}

.section-get-in-touch .map {
  width: 49%;
  margin-left: 1%;
}

@media only screen and (max-width: 991px) {
  .section-get-in-touch .map {
      width: 100%;
      margin: 0;
      height: 400px;
  }
}

.section-get-in-touch .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


.section-tickets {
  padding: 5px 0;
}

.section-tickets h2 {
  color: #DD137B;
  text-align: center;
  font-size: 40px;
  font-weight: bolder;
  font-family: "Dosis", sans-serif;
}

@media only screen and (max-width: 991px) {
  .section-tickets h2 {
      font-size: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .section-tickets h2 {
      font-size: 30px;
  }
}

@media only screen and (max-width: 500px) {
  .section-tickets h2 {
      font-size: 25px;
  }
}

.section-tickets .flex h2 {
  margin-right: 20px;
}

.section-tickets .tickets {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section-tickets .tickets .ticket {
  width: 24%;
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
  background-size: cover;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-bottom: 20px;
  transition: all 1s;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .section-tickets .tickets .ticket {
      width: 48%;
  }
}

@media only screen and (max-width: 400px) {
  .section-tickets .tickets .ticket {
      width: 98%;
  }
}

.section-tickets .tickets .ticket p {
  text-align: center;
  transition: all 1s;
}

.section-tickets .tickets .ticket p.price {
  color: goldenrod;
  font-weight: bold;
  font-size: 40px;
}

.section-tickets .tickets .ticket:hover p {
  color: black;
}

.section-tickets .tickets .ticket.ticket-1:hover {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/ticket-1.jpg);
}

.section-tickets .tickets .ticket.ticket-2:hover {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/ticket-2.jpg);
}

.section-tickets .tickets .ticket.ticket-3:hover {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/ticket-3.jpg);
}

.section-tickets .tickets .ticket.ticket-4:hover {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/ticket-4.jpg);
}


.center-container {
  text-align: center;
}

.center-contents {
  margin: 0 auto;
}


.location-title {
  color: #FF8C00;
/ / darkorange
}


/* Custom CSS */
.attractions1 {
  padding: 50px;
  margin: 0;
  background-color: orangered;
}

.attraction-content {
  width: 94%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: auto;
}

/*.curve-content-section .curve-content {flex: 1;}*/
.curve-content {
  flex: 1 0 calc(24.66% - 10px);
  transform: skewX(-6deg);
  border-radius: 10px;
}

.curve-content-img {
  box-shadow: 0 0 8px 5px #ffffff;
  border-radius: 10px;
  height: 400px
}

.curve-content-img img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

@media only screen and (max-width: 1470px) {
  .curve-content-img {
      height: 300px
  }
}

@media only screen and (max-width: 1247px) {
  .curve-content-img {
      height: 267px
  }
}

@media only screen and (max-width: 997px) {
  .curve-content {
      flex: 1 0 calc(46.66% - 10px);
  }
}

@media only screen and (max-width: 770px) {
  .curve-content {
      flex: 1 0 calc(93% - 10px);
  }
}


.curve-content-text {
  background-color: #eee;
  box-shadow: 0 5px 10px rgb(178 46 46);
  border-radius: 10px;
  padding: 11px;
}

@media only screen and (max-width: 567px) {
  .curve-content {
      flex: 1 0 calc(100% - 10px);
  }
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500; /* Ensures full height of viewport, adjust as needed */
  display: flex;
  align-items: flex-end; /* Positions text content at bottom */
}

.swiper-slide-text-contents {
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Optional: add semi-transparent background */
  color: #fff;
  z-index: 1;
  width: 100%;
}



.contact-container {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
}
.contact-header {
  background: linear-gradient(45deg, #007bff, #6c757d);
  color: white;
  padding: 40px 0;
  text-align: center;
}
.contact-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.contact-header p {
  font-size: 1.2rem;
}
.contact-info {
  margin-top: 30px;
}
.contact-info h3 {
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 1.1rem;
  margin: 0;
}
.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.contact-form h3 {
  margin-bottom: 20px;
}
.map-container {
  margin: 30px 0;
}
iframe {
  border-radius: 10px;
  width: 100%;
  height: 400px;
}