/* Font Families Installation */

@font-face {
  font-family: "Asap Regular";

  src: url("assets/fonts/Asap-Regular.otf") format("opentype"),
    url("assets/fonts/Asap-Regular.ttf") format("ttf");
}

@font-face {
  font-family: "Asap Italic";

  src: url("assets/fonts/Asap-Italic.otf") format("opentype"),
    url("assets/fonts/Asap-Italic.ttf") format("ttf");
}

@font-face {
  font-family: "Asap Italic Bold";

  src: url("assets/fonts/Asap-BoldItalic.otf") format("opentype"),
    url("assets/fonts/Asap-BoldItalic.ttf") format("ttf");
}

@font-face {
  font-family: "Barabara";

  src: url("assets/fonts/BARABARA-final.otf") format("opentype");
}

/* CSS Reset */

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

html,
body {
  font-family: "Asap Regular";
}

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

ul {
  margin: 0;
}

button:focus {
  outline: none;
}

/* CSS Variables */

:root {
  /* Fonts */

  --font-header: "Barabara", sans-serif;

  --font-body: "Asap Regular", sans-serif;

  /* Colors */

  --color-white: #ffffff;

  --color-off-white: #f8f8f8;

  --color-black: #000000;

  --color-black-light: #3b3b3b;

  --color-yellow: #ffd700;

  --color-yellow-dark: #f9c126;

  --color-purple: #32347c;

  --color-purple-light: #7779bb;

  --color-gray: #8a817a;

  --color-gray-light: #858585;

  --color-hover-yellow: #b98f1c;

  --color-hover-purple: #232557;

  /* Transition */

  --transition-all: all 0.4s;
}

/* Global Styles */

h1,
h2,
h4 {
  font-family: var(--font-header);

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

h3,
a,
li {
  font-family: var(--font-body);

  letter-spacing: 0.5px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

p {
  font-family: var(--font-body);

  font-size: 16px;

  line-height: 24px;

  letter-spacing: 0px;

  color: var(--color-black-light);
}

li {
  font-family: var(--font-body);

  font-size: 16px;

  color: var(--color-black-light);
}

a {
  font-family: var(--font-body);

  font-size: 16px;

  transition: var(--transition-all);
}

a:hover {
  transition: var(--transition-all);
}

img {
  object-fit: cover;

  object-position: center;
}

@media (max-width: 991px) {
  .row.align-items-center > div:nth-child(2) {
    margin-top: 60px;
  }

  .row.align-items-center.row-align-default > div:nth-child(1) {
    margin-top: 60px;
  }

  .row.align-items-center.row-align-default > div:nth-child(2) {
    margin-top: 0px;
  }
}

/* CSS Utilities */

.section-spacer-80 {
  padding: 80px 0;
}

.section-spacer-100 {
  padding: 100px 0;
}

@media (max-width: 991px) {
  .section-spacer-100 {
    padding: 80px 0;
  }
}

.radius-right {
  border-radius: 15px 0 15px 0;

  overflow: hidden;
}

.radius-left {
  border-radius: 0px 15px 0px 15px;

  overflow: hidden;
}

.dot-mb-20 {
  margin-bottom: 20px;
}

.dot-mb-50 {
  margin-bottom: 50px;
}

.dot-mt-70 {
  margin-top: 70px;
}

/* CSS Components */

.dot-color-yellow {
  color: var(--color-yellow);
}

.dot-btn-yellow {
  color: var(--color-white);

  font-size: 15px;

  text-transform: uppercase;

  background-color: var(--color-yellow-dark);

  display: inline-block;

  padding: 15px 30px;

  border-radius: 15px 0 15px 0;
}

.dot-btn-yellow:hover {
  text-decoration: none;

  color: white;

  background-color: var(--color-hover-yellow);
}

.dot-color-purple {
  color: var(--color-purple);
}

.dot-btn-purple {
  color: var(--color-white);

  font-size: 15px;

  text-transform: uppercase;

  background-color: var(--color-purple);

  display: inline-block;

  padding: 15px 30px;

  border-radius: 15px 0 15px 0;
}

.dot-btn-purple:hover {
  text-decoration: none;

  color: white;

  background-color: var(--color-hover-purple);
}

.title-bg {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;
}

.title-bg h2 {
  margin: 0;
}

.title-bg-white {
  color: var(--color-white);

  text-align: center;
}

.title-bg-black {
  color: var(--color-black);

  text-align: center;
}

.title-bg-purple {
  color: var(--color-purple);

  text-align: center;
}

.title-bg-yellow {
  color: var(--color-yellow);

  text-align: center;
}

.title-bg-text {
  font-size: 65px;

  opacity: 0.1;

  letter-spacing: 6px;

  position: absolute;
}

.title-bg-text-75 {
  font-size: 75px;

  opacity: 0.1;

  letter-spacing: 6px;

  position: absolute;
}

.title-bg-text-65 {
  font-size: 65px;

  opacity: 0.1;

  letter-spacing: 6px;

  position: absolute;
}

@media (max-width: 991px) {
  .title-bg-text {
    font-size: 45px;

    letter-spacing: 4px;
  }

  .title-bg-text-75 {
    font-size: 45px;

    opacity: 0.1;

    letter-spacing: 6px;

    position: absolute;
  }
}

@media (max-width: 767px) {
  .title-bg-text {
    font-size: 40px;

    letter-spacing: 1px;
  }

  .title-bg-text-75 {
    font-size: 40px;

    opacity: 0.1;

    letter-spacing: 6px;

    position: absolute;
  }
}

@media only screen and (max-width: 375px) {
  .title-bg-text-75 {
    font-size: 29px;
    opacity: 0.1;
    letter-spacing: 6px;
    position: absolute;
  }
}

.box-overlay {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;
}

/* Navbar Styles */

.dot-navbar {
  background-color: var(--color-black);

  padding: 10px 0;
}

.dot-navbar-cont {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.dot-navbar-cont img {
  width: 63px;
}

.dot-navbar-cont li {
  display: inline;

  margin-left: 50px;

  color: var(--color-white);

  position: relative;
}

.dot-navbar-cont a {
  color: var(--color-white);
}

.dot-navbar-cont a:hover {
  color: var(--color-yellow);
}

.dot-navbar .fa-bars {
  display: none;
}

@media (max-width: 991px) {
  .dot-nav-links {
    display: none !important;
  }

  .dot-navbar .fa-bars {
    display: unset;

    font-size: 30px;

    color: white;
  }
}

/* Nav Drawer */

.nav-drawer {
  position: fixed;

  background: rgba(0, 0, 0, 0.9);

  z-index: 1000;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  overflow: auto;
}

#close-drawer {
  font-size: 30px;

  color: white;

  position: absolute;

  top: 35px;

  right: 42px;
}

.nav-drawer img {
  width: 200px;

  margin-bottom: 50px;
}

.nav-drawer-links {
  list-style: none;

  text-align: center;

  margin-top: 345px;
}

.nav-drawer-links li {
  margin-bottom: 15px;
}

.nav-drawer-links li a {
  color: white;

  font-size: 25px;
}

.nav-drawer-links li a i {
  transform: rotate(90deg);
  margin-left: 14px;
}

ul.nav-drawer-links .sublink {
  display: flex !important;
  position: relative;
  max-width: 100%;
  background-color: transparent;
  margin-bottom: 40px;
}

ul.nav-drawer-links .sublink a {
  width: 100%;
  background-color: transparent;
  border-bottom: 0;
  padding: 10px 10px;
  font-size: 16px !important;
}

@media (min-width: 992px) {
  .nav-drawer {
    display: none;
  }
}

@media (max-width: 767px) {
  .nav-drawer img {
    width: 140px;
  }
}

/* Homepage Styles */

.dot-hp-banner {
  background: url("assets/images/hp-banner-atv.jpg");

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;
}

.hp-banner-cont {
  height: 700px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: flex-start;

  color: var(--color-white);
}

.hp-banner-cont h1 {
  font-size: 72px;

  color: var(--color-white);

  margin: -10px 0 15px;
}

.hp-banner-cont p:nth-of-type(1) {
  font-size: 18px;

  color: var(--color-white);

  margin-bottom: 12px;
}

.hp-banner-cont p:nth-of-type(2) {
  font-size: 20px;

  line-height: 35px;

  letter-spacing: 0.5px;

  color: var(--color-white);

  width: 62%;
}

@media (max-width: 991px) {
  .hp-banner-cont p:nth-of-type(2) {
    width: 100%;
  }

  .dot-hp-banner {
    box-shadow: inset 0 0 0 1000px #0000004a;
  }
}

@media (max-width: 767px) {
  .hp-banner-cont h1 {
    font-size: 40px;

    color: var(--color-white);
  }

  .hp-banner-cont p:nth-of-type(2) {
    font-size: 18px;

    line-height: 25px;
  }
}

/* Homepage: Travel Destinations */

.travel-dest-boxes {
  margin-top: 100px;
}

.travel-dest-boxes .col-lg-3 {
  padding: 0 7px;
}

.travel-dest-boxes .dest-boxes-item.dot-mb-20 {
  margin-bottom: 10px;
}

.dest-boxes-item {
  position: relative;

  height: 100%;
}

.dest-boxes-item img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;
}

.dest-boxes-item .box-overlay {
  background-color: rgba(0, 0, 0, 0.207);

  transition: var(--transition-all);
}

.dest-boxes-item:hover .box-overlay {
  background-color: rgba(0, 0, 0, 0.973);

  transition: var(--transition-all);
}

.dest-boxes-item h4 {
  color: var(--color-white);

  transition: var(--transition-all);
}

.dest-boxes-item:hover h4 {
  transform: scale(1.2);

  transition: var(--transition-all);
}

.dest-box-small {
  height: 200px;
}

@media (max-width: 991px) {
  .dest-boxes-item {
    height: 230px !important;
  }

  .travel-dest-boxes .row {
    display: flex;

    flex-wrap: nowrap;

    overflow-x: auto;

    margin-right: -8px;
  }

  .travel-dest-boxes .col-lg-3 {
    margin: 0 5px;

    flex: 0 0 auto;

    width: 330px;
  }

  .travel-dest-boxes .col-lg-3.wtg-big-card {
    width: 183px;
    margin-right: 0;
    margin-left: 0;
  }

  .travel-dest-boxes .col-lg-3.wtg-big-card:last-child {
    margin-left: -5px;
  }

  .travel-dest-boxes .col-lg-12 {
    margin: 0 5px;

    padding: 0;

    width: 330px;
  }

  .dot-travel-dest .container {
    max-width: 100%;
  }
}

/* Homepage: Be Part Of The Fun */

.dot-be-part {
  z-index: -1000;

  margin-top: -300px;

  position: relative;
}

.dot-be-part img:nth-child(1) {
  width: 20%;

  bottom: -80px;

  left: -60px;

  position: absolute;

  z-index: 100;
}

.dot-be-part img:nth-child(2) {
  width: 100%;
}

@media (max-width: 991px) {
  .dot-be-part {
    margin-top: -50px;
  }
}

/* Homepage: Scheduled Events */

.dot-sched-events {
  background-color: var(--color-purple);

  margin-top: -10px;

  position: relative;

  padding-top: 30px;

  overflow: hidden;
}

.dot-sched-events > img:nth-child(1) {
  width: 20%;

  position: absolute;

  right: -50px;

  bottom: -50px;
}

.sched-events-cont {
  margin-top: 100px;
}

.sched-event-card {
  height: 400px;

  position: relative;

  overflow: hidden;
}

.sched-event-card img {
  width: 100%;

  height: 100%;

  transition: var(--transition-all);
}

.sched-event-card:hover img {
  transform: scale(1.05);

  transition: var(--transition-all);
}

.sched-event-card .box-overlay {
  position: absolute;

  bottom: 0px;

  right: 0px;

  top: unset;

  left: unset;

  width: 100%;

  height: 18%;

  display: block;

  text-align: center;

  border-radius: 0 0 15px 0;

  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5998774509803921) 0%,
    rgba(0, 0, 0, 0) 100%
  );

  color: white;
}

.event-card-meta {
  display: flex;

  align-items: center;

  justify-content: space-evenly;
}

.event-card-meta p {
  color: var(--color-white);

  margin-bottom: 0;
}

.event-card-meta p img {
  width: 15px;

  margin-right: 5px;

  line-height: 0px;
}

.sched-events-cont .dot-btn-yellow {
  margin: 70px 0 0;
}

@media (max-width: 991px) {
  .dot-sched-events .container {
    max-width: 100%;
  }

  .sched-events-cont .row {
    display: flex;

    flex-wrap: nowrap;

    overflow-x: auto;
  }

  .sched-events-cont .row > * {
    flex: 0 0 auto;

    width: 400px;
  }
}

@media (max-width: 768px) {
  .sched-events-cont .row > * {
    flex: 0 0 auto;

    width: 320px;
  }
}

@media (max-width: 767px) {
  .dot-sched-events {
    padding-top: 90px;
  }
}

/* Homepage: About */

.dot-hp-about {
  background: var(--color-off-white);
}

.hp-about-cont {
  margin-top: 70px;
}

.hp-about-cont img {
  width: 100%;
}

/* Homepage: Blog */

.latest-news-cont {
  display: flex;

  align-items: center;

  height: 450px;

  margin-top: 100px;
}

.latest-news-cont > * {
  height: 100%;
}

.blog-feat-cont {
  margin-right: 30px;
}

.blog-card-big {
  display: flex;

  align-items: center;

  background: white;

  height: 100%;

  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}

.blog-card-big img {
  width: 50%;

  height: 100%;

  transition: var(--transition-all);
}

.blog-card-big:hover img {
  transform: scale(1.2);
}

.blog-feat-desc {
  padding: 0 30px;

  z-index: 100;

  height: 100%;

  background: white;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.blog-feat-desc p:first-of-type {
  color: #858585;

  font-size: 14px;

  text-transform: uppercase;

  margin-bottom: 15px;
}

.blog-feat-desc h3 {
  font-size: 24px;

  font-family: var(--font-header);

  color: var(--color-black);

  margin: -5px 0 20px 0;

  text-transform: uppercase;
}

.blog-feat-desc a {
  color: #32347c;

  font-weight: bold;
}

.blog-feat-sm-cont {
  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

.blog-feat-sm-item {
  height: 215px;

  width: 290px;
}

.blog-card-small {
  position: relative;

  height: 100%;

  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}

.blog-card-small img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  transition: var(--transition-all);
}

.blog-card-small:hover img {
  transform: scale(1.2);
}

.blog-card-small-desc {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  flex-direction: column;

  background: rgba(0, 0, 0, 0.25);
}

.blog-card-small-desc p {
  color: #e7e7e7;

  font-size: 14px;

  margin-bottom: 3px;

  text-transform: uppercase;
}

.blog-card-small-desc h3 {
  font-size: 24px;

  font-family: var(--font-header);

  color: white;

  text-transform: uppercase;
}

@media (max-width: 991px) {
  .latest-news-cont {
    flex-direction: column;

    height: 100%;
  }

  .blog-feat-cont {
    margin-right: 0;
  }

  .blog-card-big {
    height: 400px;
  }

  .blog-feat-sm-cont {
    margin-top: 30px;
  }

  .blog-feat-sm-cont {
    flex-direction: row;
  }

  .blog-feat-sm-item {
    width: 48%;
  }
}

@media (max-width: 767px) {
  .blog-card-big {
    flex-direction: column;

    height: 100%;
  }

  .blog-card-big img {
    width: 100%;

    height: 100%;

    transition: var(--transition-all);
  }

  .blog-feat-desc {
    padding: 30px;
  }
}

@media (max-width: 424px) {
  .blog-feat-sm-cont {
    flex-direction: column;
  }

  .blog-feat-sm-item {
    width: 100%;

    margin-bottom: 30px;
  }
}

.blogs-fw-img {
  z-index: -1000;

  margin-top: -350px;

  position: relative;
}

.blogs-fw-img img {
  width: 100%;

  height: 770px;

  object-position: top;
}

.blogs-fw-img p {
  position: absolute;

  bottom: 20%;

  right: 10%;

  color: white;
}

.blogs-fw-img p img {
  width: 15px;

  height: 20px;

  margin-right: 5px;

  margin-bottom: 5px;

  object-fit: contain;
}

@media (max-width: 991px) {
  .blogs-fw-img {
    margin-top: -210px;
  }

  .blogs-fw-img img {
    width: 100%;

    height: 540px;

    object-position: top;
  }

  .blogs-fw-img p {
    bottom: 38%;
    right: 7%;
    font-size: 13px;
  }
}

/* Footer */

.footer-main {
  position: relative;

  overflow: hidden;
}

.footer-main > img {
  width: 320px;

  position: absolute;

  right: -50px;

  bottom: -120px;
}

.footer-purple {
  background: #32347c;

  padding: 90px 0 75px;
}

.footer-purple h4 {
  color: #7779bb;

  margin-bottom: 20px;

  line-height: 30px;
}

.footer-purple a {
  display: block;

  color: white;

  margin-bottom: 15px;
}

.footer-purple a:hover {
  color: var(--color-yellow);
}

@media (max-width: 991px) {
  .footer-purple .row > *:not(:last-of-type) {
    margin-bottom: 30px;
  }

  .footer-main > img {
    right: -100px;
  }
}

.footer-main {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(assets/images/hp-footer-bg.jpg);

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  padding: 90px 0 0;
}

.footer-main h4 {
  color: #8a817a;

  margin-bottom: 20px;

  line-height: 30px;
}

.footer-main a {
  display: block;

  color: white;

  margin-bottom: 15px;
}

.footer-main a:hover {
  color: var(--color-yellow);
}

.footer-main .row:not(:last-of-type) {
  margin-bottom: 50px;
}

.accred-logos {
  margin-top: 50px;
}

.accred-logos img {
  width: 23%;

  margin-right: 15px;
}

.gov-agencies {
  column-count: 2;
  list-style: none;
}

@media (max-width: 991px) {
  .footer-main .row > *:not(:last-of-type) {
    margin-bottom: 30px;
  }

  .footer-main .row:not(:last-of-type) {
    margin-bottom: 15px;
  }

  .accred-logos {
    margin-top: 30px;

    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .accred-logos img {
    width: 19%;
  }
}

.footer-copyright {
  text-align: center;

  padding: 50px 0 20px;

  position: relative;
}

.footer-copyright p {
  display: inline;

  color: white;

  font-size: 15px;
}

.footer-copyright a {
  display: inline;

  color: white;

  font-size: 15px;
}

.footer-copyright a:hover {
  color: var(--color-yellow);
}

@media (max-width: 767px) {
  .footer-copyright {
    padding: 100px 0 20px;
  }

  .nav-drawer-links li a {
    font-size: 20px;
  }
}

/*Inside Page Overall Style */

.overall-inside-h2 {
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--color-purple);
  margin-bottom: 20px;
}

.overall-inside-p {
  color: var(--color-black);
  line-height: 28px;
  font-size: 16px;
  letter-spacing: 0;
  font-family: var(--font-body);
}

.pm-welcome-carousel-parent {
  width: 100%;
  max-width: 50%;
}

.pm-welcome-parent-div {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/*Provinces Template Styles*/

.pm-banner-div {
  width: 100%;
}

.pm-banner-div h1 {
  font-size: 72px;

  color: var(--color-white);

  text-align: center;

  letter-spacing: 17px;
}

.pm-banner-div p {
  font-size: 18px;

  color: var(--color-white);

  text-align: center;

  margin-bottom: 0;
}

.pm-banner-section {
  background-image: url(assets/images/albay-banner.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: bottom;

  padding: 185px 0px 352px;
}

@media only screen and (min-width: 1700px) {
  .pm-banner-section {
    padding: 284px 0px 408px;
  }
}

@media only screen and (max-width: 767px) {
  .pm-banner-div h1 {
    font-size: 40px;

    color: var(--color-white);

    text-align: center;

    letter-spacing: 6.6px;

    margin-top: 5px;
  }

  .pm-banner-div p {
    font-size: 16px;
  }
}

/*pm welcome to albay section*/

section.pm-welcome-section {
  padding: 40px 0 80px;
}

.pm-welcome-content {
  width: 100%;

  max-width: 50%;
}

.pm-welcome-content h2 {
  text-align: left;
}

.inside-carousel-thumb .pm-welcome-carousel-child-cards {
  width: 100%;
}

.inside-carousel-thumb .owl-carousel {
  max-width: 500px;
  height: auto;
  margin: unset;
  margin-left: auto;
  position: relative;
}

.inside-carousel-thumb .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: 324px;
  transition: 0.4s;
}

.inside-carousel-thumb .owl-carousel .owl-item img:hover {
  transform: scale(1.2);
  transition: 0.4s;
}

.inside-carousel-thumb .owl-thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-bottom-left-radius: 30px;
  background-color: rgba(0, 0, 0, 0.7);
}

.inside-carousel-thumb .owl-carousel .owl-stage-outer {
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  -webkit-transform: translate3d(0, 0, 0);
}

.inside-carousel-thumb .owl-nav {
  display: flex;
  justify-content: space-between;
  z-index: 3;
  color: red;
  font-size: 30px;
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: 383px;
  right: 0;
  left: 0;
  margin: auto;
  line-height: 0;
  height: 71px;
}

.inside-carousel-thumb .owl-thumb-item {
  width: 100%;
  max-width: 90px;
  height: auto;
  border: transparent;
}

.inside-carousel-thumb button.owl-thumb-item img {
  width: 100%;
  height: 59px;
}

.inside-carousel-thumb button.owl-thumb-item {
  z-index: 3;
  margin: 7px 5px;
}

.inside-carousel-thumb button.owl-thumb-item.active {
  display: none;
}

.inside-carousel-thumb button.owl-prev span,
button.owl-next span {
  border: 1px solid white;
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  width: 33px;
  padding-bottom: 4px;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.3s;
}

.inside-carousel-thumb button.owl-prev:focus span,
button.owl-next:focus span {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: transparent;
  transition: var(--transition-all);
}

@media only screen and (max-width: 1199px) {
  .inside-carousel-thumb .owl-carousel {
    max-width: 451px;
  }
}

@media only screen and (max-width: 991px) {
  .inside-carousel-thumb .owl-carousel {
    max-width: 337px;
    height: auto;
    margin: unset;
    margin-left: auto;
    position: relative;
  }

  .inside-carousel-thumb .owl-nav {
    max-width: 283px;
    height: 60px;
  }

  .inside-carousel-thumb button.owl-thumb-item img {
    height: 46px;
  }

  .inside-carousel-thumb .owl-thumb-item {
    max-width: 64px;
  }

  .inside-carousel-thumb .owl-carousel .owl-item img {
    height: 244px;
  }
}

@media only screen and (max-width: 767px) {
  .pm-welcome-content {
    width: 100%;
    max-width: 100%;
  }

  .pm-welcome-carousel-parent {
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
  }

  .inside-carousel-thumb .owl-carousel {
    max-width: 337px;
    height: auto;
    margin: auto;
    position: relative;
  }
}

/*overall divider css*/

.overall-divider {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.overall-divider img {
  margin: 0px 8px;
}

section.pm-how-to-get-here-section {
  padding-top: 60px;
}

section.pm-how-to-get-here-section img {
  position: relative;
  z-index: 3;
  width: 100%;
}

.pm-how-to-get-here-parent-div {
  width: 100%;
}

.pm-how-to-get-here-parent-div h2 {
  color: #cb2f3f;
}

.pm-where-to-go-header-div {
  width: 100%;
}

.pm-where-to-go-header-div h2 {
  color: white;
  text-align: center;
  font-size: 30px;
}

section.pm-where-to-go {
  background: linear-gradient(0deg, #32347c, #32347c, #32347cf5);
  padding: 280px 0 108px;
  margin-top: -212px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

/*Carousel tab for Where to go style*/

.pm-where-to-go-carousel-tab-parent {
  position: relative;
  z-index: 2;
  margin-top: 70px;
}

.pm-where-to-go-carousel-tab-parent a {
  font-family: var(--font-body);
  font-size: 20px;
  color: #9092d5;
}

nav.pm-where-to-go-carousel-nav {
  display: block;
  width: 100%;
  max-width: 730px;
  margin: auto;
  margin-bottom: 70px;
}

.pm-where-to-go-carousel-tab-parent .nav-tabs .nav-item.show .nav-link,
.pm-where-to-go-carousel-tab-parent .nav-tabs .nav-link.active {
  color: white;
  opacity: 1;
  font-weight: bold;
  background-color: transparent;
  border-color: transparent;
}

.pm-where-to-go-carousel-tab-parent .nav-tabs .nav-link:focus,
.pm-where-to-go-carousel-tab-parent .nav-tabs .nav-link:hover {
  border-color: transparent;
  background-color: transparent;
}

.pm-where-to-go-carousel-tab-parent .nav-tabs {
  border-bottom: transparent;
}

.pm-where-to-go-carousel-container {
  display: flex;
  width: 100%;
  max-width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pm-where-to-go-carousel-child-cards {
  background-color: white;
  /* padding-bottom: 25px; */
  width: 100%;
  max-width: 93%;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  margin: auto;
}

.pm-where-to-go-img {
  overflow: hidden;
  border-top-left-radius: 15px;
}

.pm-where-to-go-carousel-child-cards img {
  border-top-left-radius: 15px;
  height: 170px;
  transition: 0.4s;
}

.owl-stage {
  margin: auto;
}

.pm-where-to-go-content {
  padding: 30px 24px;
  transition: 0.4s;
  height: 265px;
}

.pm-where-to-go-content h4 {
  font-size: 14px;
  color: black;
  line-height: 26px;
}

.pm-where-to-go-content p {
  font-size: 14px;
  color: black;
}

.pm-where-to-go-content span {
  font-size: 14px;
  text-transform: uppercase;
  color: #b0b0b0;
  margin-bottom: 0px;
  display: block;
}

.weaver-top {
  position: absolute;
  top: 38px;
  left: -81px;
}

.weaver-bot {
  position: absolute;
  bottom: -60px;
  right: -97px;
}

.pm-where-to-go-carousel-parent a:hover img {
  transform: scale(1.2);
  transition: 0.4s;
}

@media only screen and (max-width: 1199px) {
  .pm-where-to-go-carousel-child-cards img {
    height: 141px;
  }

  .pm-where-to-go-carousel-child-cards {
    background-color: white;
    max-width: 95%;
  }
}

@media only screen and (max-width: 991px) {
  .pm-where-to-go-content {
    padding: 31px 24px 50px;
    height: 193px;
  }

  .pm-where-to-go-carousel-child-cards img {
    height: 178px;
  }
}

@media only screen and (max-width: 767px) {
  .pm-where-to-go-carousel-tab-parent a {
    font-size: 15px;
  }

  .pm-where-to-go-carousel-nav div#nav-tab {
    display: flex;
    flex-direction: column;
  }

  section.pm-where-to-go {
    padding: 165px 0 108px;
    margin-top: -78px;
  }

  .weaver-top {
    position: absolute;
    top: -12px;
    left: -81px;
    width: 203px;
    height: auto;
  }

  .pm-where-to-go-content {
    padding: 31px 24px 50px;
    height: auto;
  }
}

/*pm-whats-near-section class*/

.pm-whats-near-section {
  background-color: #f3f3f4;
  padding: 90px 0;
}
.pm-whats-near .item {
  text-align: center;
  padding: 0px;
  height: 381px;
  width: 100%;
  max-width: 327px;
  border-bottom-right-radius: 25px;
  border-top-left-radius: 25px;
  transition: 0.4s;
  overflow: hidden;
  position: relative;
  background-color: black;
  margin: auto;
}

.pm-whats-near .item img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-bottom-right-radius: 25px;
  border-top-left-radius: 25px;
  opacity: 0.7;
  transition: 0.4s;
}

.pm-whats-near .item:hover img {
  transition: 0.4s;
  opacity: 0;
}

.pm-whats-near .item:hover h4 {
  transition: 0.4s;
  transform: scale(1.1);
}

.pm-whats-near .item h4 {
  color: white;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  width: 100%;
  max-width: 85%;
  margin: auto;
}

.pm-whats-near-parent-div {
  margin-top: 90px;
}

.pm-whats-near-section h2 {
  letter-spacing: 3px;
}

.pm-whats-near-section button.owl-dot {
  width: 100%;
  max-width: 69px;
}

.pm-whats-near-section .owl-theme .owl-dots .owl-dot span {
  background-color: #d5d7e3;
  border-radius: 0;
  width: 100%;
  max-width: 60px;
  display: inline-block;
  height: 6px;
}

.pm-whats-near-section .owl-theme .owl-dots .owl-dot.active span,
.pm-whats-near-section .owl-theme .owl-dots .owl-dot:hover span {
  background: #32357c;
}

.pm-whats-near-section .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 65px;
}

@media only screen and (max-width: 767px) {
  .pm-whats-near-section .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 34px;
  }

  .pm-whats-near-section button.owl-dot {
    width: 100%;
    max-width: 29px;
  }

  .pm-whats-near-section .owl-theme .owl-dots .owl-dot span {
    max-width: 20px;
    height: 4px;
  }
}

@media only screen and (max-width: 425px) {
  .pm-whats-near-section button.owl-dot {
    width: 100%;
    max-width: 26px;
  }
}

/*Camarines Sur*/

.page-id-28 section.pm-where-to-go {
  background: linear-gradient(0deg, #32347c, #32347c, #32347cf5);
  padding: 320px 0 108px;
  margin-top: -306px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

.page-id-28 .weaver-top {
  position: absolute;
  top: 61px;
  left: -81px;
}

@media only screen and (max-width: 600px) {
  .page-id-28 section.pm-where-to-go {
    background: linear-gradient(0deg, #32347c, #32347c, #32347cf5);
    padding: 156px 0 108px;
    margin-top: -195px;
  }
}

/*Masbate Page*/

.page-id-73 section.pm-where-to-go {
  background: linear-gradient(0deg, #32347c, #32347c, #32347cf5);
  padding: 350px 0 108px;
  margin-top: -324px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .page-id-73 section.pm-where-to-go {
    background: linear-gradient(0deg, #32347c, #32347c, #32347cf5);
    padding: 235px 0 108px;
    margin-top: -207px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
  }
}

@media only screen and (max-width: 600px) {
  .page-id-73 section.pm-where-to-go {
    background: linear-gradient(0deg, #32347c, #32347c, #32347cf5);
    padding: 135px 0 108px;
    margin-top: -102px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
  }
}

/*sorsogon page*/

.page-id-78 section.pm-where-to-go {
  background: linear-gradient(0deg, #32347c, #32347c, #32347cf5);
  padding: 447px 0 108px;
  margin-top: -391px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .page-id-78 section.pm-where-to-go {
    background: linear-gradient(0deg, #32347c, #32347c, #32347cf5);
    padding: 257px 0 108px;
    margin-top: -211px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
  }
}

@media only screen and (max-width: 567px) {
  .page-id-78 section.pm-where-to-go {
    background: linear-gradient(0deg, #32347c, #32347c, #32347cf5);
    padding: 146px 0 108px;
    margin-top: -164px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
  }
}

@media only screen and (max-width: 425px) {
  .page-id-78 section.pm-where-to-go {
    background: linear-gradient(0deg, #32347c, #32347c, #32347cf5);
    padding: 123px 0 108px;
    margin-top: -122px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
  }
}

/*Catanduanes Page*/

.page-id-87 section.pm-where-to-go {
  background: linear-gradient(0deg, #32347c, #32347c, #32347cf5);
  padding: 530px 0 108px;
  margin-top: -476px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

.page-id-87 .weaver-top {
  position: absolute;
  top: 248px;
  left: -81px;
}

@media only screen and (max-width: 1199px) {
  .page-id-87 section.pm-where-to-go {
    background: linear-gradient(0deg, #32347c, #32347c, #32347cf5);
    padding: 394px 0 108px;
    margin-top: -340px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
  }

  .page-id-87 .weaver-top {
    position: absolute;
    top: 149px;
    left: -81px;
  }
}

@media only screen and (max-width: 991px) {
  .page-id-87 section.pm-where-to-go {
    background: linear-gradient(0deg, #32347c, #32347c, #32347cf5);
    padding: 336px 0 108px;
    margin-top: -264px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
  }

  .page-id-87 .weaver-top {
    position: absolute;
    top: 77px;
    left: -81px;
  }

  .page-id-87 .pm-banner-div h1 {
    letter-spacing: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .page-id-87 .pm-banner-div h1 {
    letter-spacing: 4px;
    font-size: 30px;
  }
}

@media only screen and (max-width: 567px) {
  .page-id-87 section.pm-where-to-go {
    background: linear-gradient(0deg, #32347c, #32347c, #32347cf5);
    padding: 225px 0 108px;
    margin-top: -170px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
  }
}

@media only screen and (max-width: 425px) {
  .page-id-87 section.pm-where-to-go {
    background: linear-gradient(0deg, #32347c, #32347c, #32347cf5);
    padding: 155px 0 108px;
    margin-top: -116px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
  }
}

@media only screen and (max-width: 320px) {
  .pm-banner-div h1 {
    font-size: 35px;
    color: var(--color-white);
    text-align: center;
    letter-spacing: 6.6px;
    margin-top: 5px;
  }
}

/*Page Events Main Style*/

.events-main-banner h1 {
  font-size: 48px;
  color: white;
  text-align: center;
  letter-spacing: 4px;
}

.events-main-banner {
  width: 100%;
}

.events-main-section {
  background-image: url(assets/images/event-main-banner.jpg);
  padding: 147px 0 172px;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1000px #0000002e;
}

/*Events Main Sched events*/

.events-main-sched-events .sched-event-card {
  height: 400px;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  margin-right: 20px;
}

.events-main-sched-events .sched-events-cont {
  margin-top: 30px;
}

.dot-sched-events.events-main-sched-events {
  background-color: white;
  padding-top: 55px;
}

.events-main-sched-events .sched-event-card:last-child {
  margin-right: 0;
}

button.events-main-search-button {
  width: 100%;
  display: block;
  max-width: 217px;
  margin-left: auto;
  border: transparent;
  border: 1px solid #dcdcdc;
  background-color: transparent;
  padding: 19px;
  font-size: 15px;
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  border-top-left-radius: 18px;
  border-bottom-right-radius: 18px;
  transition: 0.4s;
}

.events-main-sched-search-button {
  margin-bottom: 53px;
}

.dropdown-event {
  position: relative;
}

ul.dropdown-menu-event {
  width: 100%;
  display: block;
  max-width: 217px;
  margin-left: auto;
  list-style: none;
  position: absolute;
  z-index: 4;
  background-color: white;
  right: 0;
  box-shadow: 1px 4px 6px 0px #0000002e;
  margin-top: 10px;
  border-radius: 10px;
  display: none;
  overflow: hidden;
}

ul.dropdown-menu-event li {
  padding: 10px 10px;
}

ul.dropdown-menu-event li a {
  color: black;
}

ul.dropdown-menu-event li:hover {
  background-color: #32347c;
}

ul.dropdown-menu-event a:hover li {
  color: white;
  transition: 0.4s;
}

.display-block-class {
  display: block !important;
}

button.events-main-search-button:hover {
  background-color: #32347c;
  transition: 0.4s;
  color: white;
}

@media only screen and (max-width: 767px) {
  button.events-main-search-button {
    width: 100%;
    display: block;
    max-width: 146px;
    margin-left: auto;
    border: transparent;
    border: 1px solid #dcdcdc;
    background-color: transparent;
    padding: 10px;
    font-size: 12px;
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    border-top-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }

  .events-main-sched-events .dot-sched-events {
    padding-top: 30px;
  }

  .events-main-sched-search-button {
    margin-bottom: 35px;
  }

  ul.dropdown-menu-event {
    max-width: 146px;
  }

  ul.dropdown-menu-event li {
    padding: 4px 10px;
  }

  ul.dropdown-menu-event li a {
    color: black;
    font-size: 12px;
  }
}

/*See and do Page Style*/

.sad-banner-section h1 {
  color: white;
  text-align: center;
  font-size: 48px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.sad-banner-section p {
  color: white;
  text-align: center;
  font-size: 18px;
}

.sad-banner-section {
  background-image: url(assets/images/See-and-do-banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  height: 501px;
  padding-top: 143px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-position: 100% 65%;
}

.sad-nav a {
  font-family: var(--font-header);
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: 113px;
  padding-bottom: 30px;
}

.sad-nav .nav-tabs .nav-item.show .nav-link,
.sad-nav .nav-tabs .nav-link.active {
  border: transparent;
  background-color: transparent;
  color: white;
  border-bottom: 5px solid white;
  transition: 0.1s;
}

.sad-nav .nav-tabs .nav-link:focus,
.sad-nav .nav-tabs .nav-link:hover {
  border: transparent;
  border-bottom: 5px solid white;
  transition: 0.1s;
}

.sad-child-section .pm-where-to-go-content {
  padding: 30px 24px;
  box-shadow: 0px 1px 6px #0000000f;
  border-bottom-right-radius: 15px;
}

.sad-child-section .pm-where-to-go-carousel-child-cards {
  background-color: white;
  width: 100%;
  max-width: 100%;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  margin: auto;
  margin-bottom: 30px;
}

.tab-article {
  padding: 90px 0;
  background-color: #f9f9fa;
}

.tab-article .title-bg {
  margin-bottom: 110px;
}

.tab-article
  .pm-where-to-go-carousel-child-cards:hover
  .tab-article
  .pm-where-to-go-content {
  background-color: #32347c;
  transition: 0.4s;
}

.tab-article
  .pm-where-to-go-carousel-child-cards:hover
  .tab-article
  .pm-where-to-go-content
  h4 {
  color: white;
  transition: 0.4s;
}

.tab-article
  .pm-where-to-go-carousel-child-cards:hover
  .tab-article
  .pm-where-to-go-content
  p {
  color: white;
  transition: 0.4s;
}

.tab-article .pm-where-to-go-carousel-child-cards img {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .sad-nav a {
    font-size: 10px;
  }
}

/*Blog Page Main*/

.dot-blog-page {
  background-color: #f9f9f9;
  position: relative;
  z-index: 2;
}

.blog-content-parent ul {
  display: flex;
  flex-direction: row;
  list-style: none;
}

.blog-content-parent {
  margin-top: 26px;
}

.blog-content-parent ul li {
  width: 100%;
  max-width: 25%;
  margin-right: 28px;
}

.blog-content-parent ul li:last-child {
  margin-right: 0px;
}

.blog-content-parent li:hover .pm-where-to-go-content {
  box-shadow: 0px 1px 18px 0px #c9c9c95e;
  transition: 0.4s;
}

.blog-content-parent .pm-where-to-go-content label {
  font-size: 14px;
  font-weight: bold;
  color: #32347c;
}

.blog-content-parent ul li:hover img {
  transform: scale(1.2);
}

.blog-content-parent .pm-where-to-go-carousel-child-cards {
  background-color: white;
  max-width: 100%;
}

section.blog-image-section img {
  width: 100%;
  margin-top: -86px;
}

.blog-image-section {
  position: relative;
}

.blog-image-section p {
  position: absolute;
  color: white;
  font-size: 18px;
  bottom: 130px;
  right: 100px;
}

@media only screen and (max-width: 991px) {
  .blog-content-parent {
    margin-top: 80px;
  }

  .blog-content-parent ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
  }

  .blog-content-parent ul li {
    width: 100%;
    max-width: 48%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  section.blog-image-section img {
    height: 500px;
  }
}

@media only screen and (max-width: 550px) {
  .blog-content-parent ul li {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .blog-content-parent .pm-where-to-go-carousel-child-cards img {
    height: 214px;
    width: 100%;
  }

  .blog-image-section p {
    position: absolute;
    color: white;
    font-size: 18px;
    bottom: 50px;
    right: 10px;
  }
}

/*Single Events*/

.single-events .events-main-banner p {
  text-align: center;
  margin-top: 20px;
  color: white;
  font-size: 18px;
}

@media only screen and (max-width: 425px) {
  .events-main-banner h1 {
    font-size: 42px;
  }
}

.single-how-to-get-here {
  background-color: #32347c;
  border-radius: 16px;
  padding: 100px 37px 120px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

section.single-event-content {
  padding: 70px 0;
  overflow: hidden;
}

.single-how-to-get-here h3 {
  font-family: var(--font-header);
  text-transform: uppercase;
  color: white;
  font-size: 18px;
  margin-bottom: 30px;
}

.single-how-to-get-here p {
  color: white;
  font-size: 16px;
  line-height: 28px;
}

img.weave-lower {
  position: absolute;
  bottom: -123px;
  right: -127px;
}

img.weave-upper {
  position: absolute;
  top: -106px;
  left: -105px;
  z-index: -1;
}

.single-event-under-carousel {
  margin-top: 35px;
}

.single-city-date {
  display: flex;
  width: 100%;
  justify-content: space-between;
  max-width: 309px;
  margin-bottom: 10px;
}

.single-city-date span {
  color: #7f7f7f;
  font-size: 16px;
}

.single-city-date i {
  margin-right: 11px;
}

.single-event-under-carousel h3 {
  font-family: var(--font-header);
  text-transform: uppercase;
  font-size: 24px;
  color: #32347c;
  margin-bottom: 25px;
}

.single-event-under-carousel p {
  color: black;
  line-height: 28px;
  font-size: 16px;
}

.single-event-content .overall-divider {
  margin: 35px 0;
}

.single-what-to-wear h3 {
  font-family: var(--font-header);
  text-transform: uppercase;
  color: #cb2f3f;
  font-size: 18px;
  margin-bottom: 20px;
}

.single-what-to-wear p {
  color: black;
  line-height: 28px;
  font-size: 16px;
}

.single-event-content .inside-carousel-thumb .owl-carousel {
  max-width: 100%;
  height: auto;
  margin: unset;
  margin-left: auto;
  position: relative;
}

.single-event-content .pm-welcome-carousel-parent {
  width: 100%;
  max-width: 100%;
}

.single-event-content .inside-carousel-thumb .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: 410px;
  transition: 0.4s;
}

.single-event-content .inside-carousel-thumb .owl-thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-bottom-left-radius: 30px;
  background-color: rgba(0, 0, 0, 0.7);
  height: 95px;
}

.single-event-content .inside-carousel-thumb .owl-nav {
  display: flex;
  justify-content: space-between;
  z-index: 3;
  font-size: 30px;
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: 487px;
  right: 0;
  left: 0;
  margin: auto;
  line-height: 0;
  height: 90px;
}

.single-event-content .inside-carousel-thumb button.owl-prev span,
button.owl-next span {
  border: 1px solid white;
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  width: 33px;
  padding-bottom: 4px;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.3s;
}

.single-event-content .inside-carousel-thumb button.owl-thumb-item img {
  width: 100%;
  height: 75px;
}

.single-event-content .inside-carousel-thumb .owl-thumb-item {
  width: 100%;
  max-width: 112px;
  height: auto;
  border: transparent;
}

section.single-where-to-stay {
  background-color: #f9f9fa;
  padding: 60px 0 100px;
}

.single-where-to-stay ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  margin-top: 80px;
}

.single-where-to-stay li {
  width: 100%;
  max-width: 25%;
  margin-right: 25px;
}

.single-where-to-stay li:last-child {
  margin-right: 0;
}

.single-where-to-stay .pm-where-to-go-carousel-child-cards {
  background-color: white;
  /* padding-bottom: 25px; */
  width: 100%;
  max-width: 100%;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  margin: auto;
  overflow: hidden;
}

.single-where-to-stay .pm-where-to-go-carousel-child-cards img {
  border-top-left-radius: 15px;
  height: 170px;
  transition: 0.4s;
  width: 100%;
}

.single-where-to-stay .pm-where-to-go-content h4 {
  font-size: 14px;
  color: black;
  line-height: 26px;
  margin: 5px 0px 10px;
}

.pm-where-to-go-content i {
  margin-right: 10px;
  color: #b5b5b5;
}

.single-where-to-stay li:hover .pm-where-to-go-content {
  background-color: #32347c;
}

.single-where-to-stay li:hover h4 {
  font-size: 14px;
  color: white;
  line-height: 26px;
  margin: 5px 0px 10px;
}

.single-where-to-stay li:hover i {
  margin-right: 10px;
  color: white;
}

.single-where-to-stay li:hover p {
  font-size: 14px;
  color: white;
}

.single-where-to-stay li:hover img {
  transform: scale(1.2);
}

@media only screen and (max-width: 991px) {
  .single-where-to-stay ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin-top: 80px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .single-where-to-stay li {
    width: 100%;
    max-width: 48%;
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .single-how-to-get-here {
    margin-top: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .single-where-to-stay li {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .single-city-date span {
    color: #7f7f7f;
    font-size: 15px;
  }
}

@media only screen and (max-width: 500px) {
  .single-event-content .inside-carousel-thumb .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 315px;
    transition: 0.4s;
  }

  .single-event-content .inside-carousel-thumb .owl-thumb-item {
    width: 100%;
    max-width: 73px;
    height: auto;
    border: transparent;
  }

  .single-event-content .inside-carousel-thumb button.owl-thumb-item img {
    width: 100%;
    height: 59px;
  }

  .single-event-content .inside-carousel-thumb button.owl-prev span,
  button.owl-next span {
    border: 1px solid white;
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 29px;
    width: 29px;
    padding-bottom: 4px;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
  }

  .single-event-content .inside-carousel-thumb .owl-nav {
    display: flex;
    justify-content: space-between;
    z-index: 3;
    font-size: 30px;
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 330px;
    right: 0;
    left: 0;
    margin: auto;
    line-height: 0;
    height: 90px;
  }
}

@media only screen and (max-width: 375px) {
  .single-event-content .inside-carousel-thumb .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 261px;
    transition: 0.4s;
  }

  .single-event-content .inside-carousel-thumb button.owl-thumb-item img {
    width: 100%;
    height: 53px;
  }

  .single-event-content .inside-carousel-thumb .owl-thumb-item {
    width: 100%;
    max-width: 53px;
    height: auto;
    border: transparent;
  }

  .single-where-to-stay .title-bg-text-65 {
    font-size: 40px;
    opacity: 0.1;
    letter-spacing: 6px;
    position: absolute;
  }
}

/*--------------- PAGINATION --------------------*/

.pagination {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

span.page-numbers.current {
  background-color: #32347c;
  color: white;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0px 2px;
}

a.page-numbers {
  background-color: #dbdbdb;
  color: #7c7c7c;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0px 2px;
}

a.page-numbers:hover {
  background-color: #32347c;
  color: white;
}

a.next.page-numbers i {
  font-size: 13px;
}

/*See and Do Single Event*/

.see-and-do-single.events-main-section {
  background-image: url(assets/images/event-main-banner.jpg);
  padding: 147px 0 257px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 2000px rgba(53, 53, 53, 0.42);
}

.see-and-do-single .events-main-banner h1 {
  font-size: 60px;
  color: white;
  text-align: center;
  letter-spacing: 7px;
  margin-bottom: 20px;
  line-height: 75px;
}

.see-and-do-single p {
  text-align: center;
  font-size: 18px;
  color: white;
}

.sad-nav h3:first-child {
  display: none;
}

@media only screen and (max-width: 767px) {
  .see-and-do-single .events-main-banner h1 {
    font-size: 36px;
    color: white;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 55px;
  }

  .sad-nav h3:first-child {
    display: block;
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-header);
    text-transform: uppercase;
    font-size: 13px;
    margin-top: 118px;
    margin-bottom: 21px;
  }

  .sad-nav a {
    font-family: var(--font-header);
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    height: auto;
    padding-bottom: 9px;
    width: 100%;
  }

  .sad-nav a img {
    margin-right: 29px;
    display: none;
  }

  .sad-nav .nav-tabs .nav-link:focus,
  .sad-nav .nav-tabs .nav-link:hover {
    border: transparent;
    border-bottom: 1px solid white;
    transition: 0.1s;
  }

  .sad-banner-section {
    height: auto;
  }

  .sad-nav .nav-tabs .nav-item.show .nav-link,
  .sad-nav .nav-tabs .nav-link.active {
    border: transparent;
    background-color: transparent;
    color: white;
    border-bottom: 1px solid white;
    transition: 0.1s;
  }

  .sad-nav-parent {
    height: 0;
    /*height: 225px;*/
    transition: 0.4s;
    overflow: hidden;
  }

  .sad-nav-add-height {
    height: 225px;
    transition: 0.4s;
  }

  .sad-nav .nav-tabs {
    border-bottom: 0px solid #dee2e6;
  }
}

@media only screen and (max-width: 375px) {
  .see-and-do-single .events-main-banner h1 {
    font-size: 28px;
    color: white;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 55px;
  }
}

.see-and-do-content .single-how-to-get-here {
  background-color: #32347c;
  border-radius: 16px;
  padding: 100px 37px 120px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
  margin-top: 0;
  width: 100%;
  max-width: 95%;
  margin-left: auto;
  display: block;
}

.single-event-under-carousel label {
  font-size: 14px;
  color: #7f7f7f;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 12px;
}

.seen-and-do-content-child {
  padding-right: 22px;
}

.see-and-do-single img {
  width: 100%;
  max-width: 100%;
  height: 364px;
  object-fit: cover;
  border-top-right-radius: 33px;
  border-bottom-left-radius: 33px;
}

@media only screen and (max-width: 1199px) {
  .seen-and-do-content-child {
    padding-right: 0;
  }

  .see-and-do-content .single-how-to-get-here {
    max-width: 100%;
  }

  .single-event-under-carousel {
    margin-top: 35px;
    margin-bottom: 40px;
  }
}

/*Single Blog*/

section.single-blog {
  padding: 70px 0;
}

.single-blog-content img {
  width: 100%;
  height: 371px;
  object-position: center;
  transition: 0.4s;
}

.single-featured-image {
  width: 100%;
  height: 371px;
  overflow: hidden;
  border-top-right-radius: 35px;
  border-bottom-left-radius: 35px;
}

.single-featured-image:hover img {
  transition: 0.4s;
  transform: scale(1.2);
}

.single-title {
  margin-top: 27px;
  margin-bottom: 27px;
}

.single-title h1 {
  font-size: 24px;
  color: #32347c;
  letter-spacing: 2px;
}

.single-title span {
  font-size: 14px;
  color: #7f7f7f;
  display: block;
}

.single-blog-content p {
  font-size: 16px;
  color: black;
  line-height: 28px;
  margin-bottom: 20px;
}

.single-social-media {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-top: 40px;
}

.single-social-media-inside {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 260px;
  background-color: white;
  position: relative;
}

.single-social-media i {
  color: #0c0c0c;
  font-size: 13px;
  border: 1px solid #dfdfdf;
  /* padding: 15px; */
  border-radius: 60px;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 5px;
  transition: 0.4s;
}

span.single-line-blogs {
  border-top: 1px solid #dfdfdf;
  color: transparent;
  position: absolute;
  width: 100%;
  margin-top: 8px;
}

.single-title span {
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.blog-post-search-button button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 65px;
  border-top-left-radius: 15px;
  background-color: #32347c;
  color: white;
  font-size: 17px;
  border: 0;
  transition: 0.4s;
}

.blog-post-search-button button:hover {
  background-color: #141544;
  transition: 0.4s;
}

input#search {
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
  border: 0px;
  padding-left: 30px;
  font-size: 15px;
}

form.blog-post-search-button {
  position: relative;
  height: 58px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  border-top-left-radius: 15px;
  overflow: hidden;
  border-bottom-right-radius: 15px;
}

input#search::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #b4b4b4;
  opacity: 1; /* Firefox */
}

input#search:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #b4b4b4;
}

input#search::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #b4b4b4;
}

/*sidebar recent post */

.relate-blog-content {
  display: flex;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid #f1f1f2;
  padding: 15px 0px;
}

.relate-blog-content img {
  width: 82px;
  height: 57px;
  object-fit: cover;
  object-position: center;
  transition: 0.4s;
}

.relate-blog-title h4 {
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: bold;
  color: black;
  letter-spacing: 0px;
}

.relate-blog-title span {
  display: block;
  font-size: 12px;
  color: #b6b6b6;
  text-transform: uppercase;
}

.relate-blog-content:last-child {
  border: 0;
}

.related-blog-post-div {
  background-color: #f9f9fa;
  margin-top: 35px;
  border-top-left-radius: 17px;
  border-top: 8px solid #32347c;
  overflow: hidden;
  padding: 30px 10px 24px 25px;
}

.relate-blog-head {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.relate-blog-head h3 {
  margin-bottom: 0;
  font-family: var(--font-header);
  color: #32347c;
  font-size: 14px;
}

.relate-blog-head img {
  margin-right: 12px;
}

.single-blog-category img.weave-lower {
  position: absolute;
  bottom: -141px;
  right: -115px;
}

.single-blog-category.single-how-to-get-here {
  background-color: #32347c;
  border-radius: 16px;
  padding: 69px 37px 69px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
  margin-top: 26px;
}

.single-blog-category.single-how-to-get-here h3 {
  text-align: center;
}

.single-blog-category.single-how-to-get-here ul {
  text-align: center;
  list-style: none;
}

.single-blog-category.single-how-to-get-here a {
  color: white;
  font-size: 16px;
}

.single-blog-category.single-how-to-get-here a:hover {
  color: var(--color-yellow);
}

.single-blog-category.single-how-to-get-here li {
  margin: 13px 0px;
}

.relate-blog-content:hover img {
  transition: 0.4s;
  transform: scale(1.2);
}

.relate-blog-image {
  width: 82px;
  overflow: hidden;
  margin-right: 15px;
}

.single-blog-content-parent {
  padding-right: 20px;
}
.single-sidebar-parent {
  padding-left: 15px;
}

.relate-blog-content:hover h4 {
  color: #32347c;
  transition: 0.4s;
}

.single-social-media i:hover {
  color: white;
  background-color: #32347c;
  transition: 0.4s;
}

@media only screen and (max-width: 991px) {
  .single-sidebar-parent {
    padding-left: 0;
    margin-top: 43px;
  }

  .relate-blog-content img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    object-position: center;
    transition: 0.4s;
  }

  .relate-blog-image {
    width: 140px;
    overflow: hidden;
    margin-right: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .relate-blog-content img {
    width: 82px;
    height: 57px;
    object-fit: cover;
    object-position: center;
    transition: 0.4s;
  }

  .relate-blog-image {
    width: 82px;
    overflow: hidden;
    margin-right: 15px;
  }
}

/*Where To Go Page*/

section.where-to-go-main-section.dot-travel-dest.section-spacer-80 {
  background-color: #f9f9fa;
}

.wtg-image {
  margin-top: -50px;
}

.wtg-image img {
  width: 100%;
}

/*Thank you page and 404 pages*/

.thank-you-section {
  background-image: url(assets/images/Thank-you.jpg);
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 213px;
}

section.thank-you-section h1 {
  color: white;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 48px;
  letter-spacing: 3px;
}

section.thank-you-section h3 {
  display: block;
  width: 100%;
  text-align: center;
  color: white;
  margin-top: 45px;
}

.thank-you-section .single-blog-sidebar {
  width: 100%;
  max-width: 536px;
  margin: auto;
  margin-top: 20px;
}

a.back-to-homepage-link {
  display: block;
  width: 100%;
  text-align: center;
  color: white;
  margin-top: 18px;
}

a.back-to-homepage-link:hover,
a.back-to-homepage-link:active,
a.back-to-homepage-link:focus {
  color: var(--color-yellow);
}

@media only screen and (max-width: 991px) {
  .thank-you-section {
    background-image: url(assets/images/Thank-you.jpg);
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 213px 20px;
  }
}

@media only screen and (max-width: 767px) {
  section.thank-you-section h3 {
    margin-top: 27px;
  }

  .thank-you-section h1 {
    font-size: 40px;
    line-height: 61px;
  }

  .thank-you-section {
    padding: 106px 20px;
  }
}

/*Search Result CSS*/

.search-result-section .blog-feat-cont {
  margin-right: 30px;
  margin-bottom: 45px;
}

.search-result-section .blog-card-big {
  display: flex;
  align-items: unset;
  background: white;
  height: 100%;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  flex-direction: column;
}

.search-result-section .blog-card-big img {
  width: 100%;
  height: 350px;
  transition: var(--transition-all);
  object-position: top;
}

.search-result-section .blog-feat-cont {
  margin-right: 30px;
  margin-bottom: 45px;
}

section.search-result-section {
  background-color: #f9f9f9;
  padding: 100px 0;
}

.search-result-section .blog-feat-desc {
  padding: 30px 30px 50px;
  z-index: 100;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card-big.radius-left p {
  font-size: 15px;
}

.search-result-section .title-bg.title-bg-purple {
  margin-bottom: 95px;
}

.search-result-section ul.page-numbers {
  text-align: center;
}

.search-result-section .oceanwp-pagination.clr {
  width: 100%;
}

.search-result-section .blog-feat-desc a:hover {
  color: #32347cb5;
  font-weight: bold;
}

@media only screen and (max-width: 991px) {
  .search-result-section .blog-feat-cont {
    margin-right: 0;
    margin-bottom: 45px;
  }

  .search-result-section ul.page-numbers {
    text-align: center;
    margin-top: 44px;
  }
}

ul.dot-nav-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sublink {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: absolute;
  background-color: black;
  width: 200%;
  max-width: 200px;
  margin-top: 0px;
  display: none;
  padding-top: 20px;
  z-index: 9;
}

.sublink a {
  width: 100%;
  background-color: black;
  border-bottom: 1px solid white;
  padding: 10px 10px;
}

.sublink-show {
  display: flex;
}

.single-event-under-carousel p img {
  width: 100%;
  margin-bottom: 35px;
  margin-top: 35px;
}

/*.postid-295 .single-event-content .pm-welcome-carousel-parent
{
    display: none;
}

.postid-310 .single-event-content .pm-welcome-carousel-parent
{
    display: none;
}*/

.postid-295 .single-event-content .inside-carousel-thumb .owl-thumbs {
  display: none;
}

.postid-295 .single-event-content .inside-carousel-thumb .owl-nav {
  display: none;
}

.postid-295 .inside-carousel-thumb.pm-welcome-carousel-parent {
  pointer-events: none;
}

.postid-310 .single-event-content .inside-carousel-thumb .owl-thumbs {
  display: none;
}

.postid-310 .single-event-content .inside-carousel-thumb .owl-nav {
  display: none;
}

.postid-310 .inside-carousel-thumb.pm-welcome-carousel-parent {
  pointer-events: none;
}

.postid-306 button.owl-thumb-item:last-child {
  display: none;
}

button.events-main-search-button {
  display: none;
}

/*without blog in homepage   comment out this when you have already blogs*/

.blogs-fw-img {
  z-index: unset;
  margin-top: -297px;
  position: relative;
}

/*section.dot-hp-news.section-spacer-100 {
    display: none;
}*/

.dot-hp-about {
  background: #ffffff;
}

@media only screen and (max-width: 991px) {
  .blogs-fw-img {
    margin-top: -210px;
  }
}

/*links REVISIONS*/

@media only screen and (max-width: 1199px) {
  .useful-links .sublink {
    right: -35px;
  }
}

@media only screen and (max-width: 991px) {
  .useful-links .sublink {
    right: 0px;
  }
}

@media only screen and (max-width: 991px) {
  .hp-banner-cont p:nth-of-type(1) {
    display: block;
    margin-bottom: 15px;
  }
}

ul.nav-drawer-links a:hover {
  color: var(--color-yellow);
}

.pm-where-to-go-carousel-child-cards:hover p {
  color: white !important;
  transition: 0.4s;
}

.pm-where-to-go-carousel-child-cards:hover .pm-where-to-go-content h4 {
  color: white;
  transition: 0.4s;
}

.pm-where-to-go-carousel-child-cards:hover .pm-where-to-go-content {
  background-color: #32347c;
  transition: 0.4s;
}

.pm-where-to-go-carousel-child-cards:hover img {
  transform: scale(1.1);
}

.landing-page {
  padding: 50px 0;
}

.landing-page .landing-page-header .front-text {
  margin-top: 50px;
}

.landing-page .landing-page-content {
  margin-top: 50px;
}
.landing-page img {
  margin-bottom: 25px;
}
.landing-page .landing-page-content h2 {
  margin-bottom: 25px;
}
@media all and (max-width: 769px) {
  .landing-page .landing-page-header .title-bg-text.title-bg-purple {
    max-width: 100%;
    word-break: break-word;
  }
  .landing-page .landing-page-content {
    margin-top: 50px;
  }
}
.dot-nav-links .fa-sort-down {
  position: absolute;
  right: -15px;
}

.dot-navbar-cont .sublink .sublink-lower {
  display: none;
}
.dot-navbar-cont .sublink li {
  margin-left: 0px;
  color: var(--color-white);
  position: relative;
  border-bottom: 1px solid #fff;
  padding: 10px;
  width: 100%;
  display: block;
}
.dot-navbar-cont .sublink li a {
  border-bottom: none;
  width: 100%;
  display: block;
  padding: 0;
}
.dot-navbar-cont .sublink {
  margin-left: 0px;
}
.dot-navbar-cont .sublink .sublink-lower.sublink-show {
  display: block;
}
.sublink-lower {
  position: absolute;
  right: -188px;
  max-width: 320px;
  width: 100%;
  display: block;
  top: 0;
}

.dot-navbar-cont .sublink .sublink-lower a {
  padding: 15px;
  border-bottom: 1px solid #fff;
}

/****** OCTOBER 6, 2020 SAFEph PAGE ******/
/*---------------------------------------*/
.safeph-background {
  background-color: #f9f9fa;
}
.safeph-background strong {
  color: #3c3c3c;
}
.safeph-hero {
  /* background: url(assets/images/hero-safeph.png); */
  background: url(assets/images/dot-safetrip-banner.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-content {
  text-align: center;
  margin: 80px auto 0;
}
.hero-content h1 {
  text-align: center;
  font-size: 50px;
  color: #32347c;
}
.hero-content p {
  margin-top: 20px;
  text-transform: uppercase;
  text-align: center;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: bolder;
  color: #000;
  font-family: var(--font-body);
}
@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 35px;
  }
  .title-bg-purple {
    font-size: 30px;
  }
  .title-bg-text {
    font-size: 50px;
  }

  .hero-content p {
    margin-top: 10px;
    font-size: 15px;
  }
}

@media screen and (max-width: 426px) {
  .hero-content {
    margin: 30px auto 0;
  }

  .hero-content h1 {
    font-size: 30px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .safeph-hero {
    height: 325px;
  }

  .title-bg-purple {
    font-size: 12px;
  }
  .title-bg-text {
    font-size: 25px;
  }
}

@media screen and (max-width: 376px) {
  .hero-content h1 {
    font-size: 25px;
  }
  .hero-content p {
    font-size: 12px;
  }
}
@media screen and (max-width: 330px) {
  .hero-content h1 {
    font-size: 22px;
  }
}

/*** Public Safety Announcement ***/
.public-safety-announcement {
  text-align: center;
  padding: 60px 0px;
}
.public-safety-announcement .updated {
  color: var(--color-white);
  font-size: 15px;
  text-transform: uppercase;
  background-color: #cb2f3f;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 0px 30px 0px 30px;
}
.announcement-content h2 {
  /***margin-bottom: 30px; ***/
  color: var(--color-purple);
}
.announcement-content {
  margin-top: 100px;
  padding: 35px;
  background-color: #fff;
  border-radius: 0px 30px 0px 30px;
  -webkit-box-shadow: 0px 0px 28px 4px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 0px 0px 28px 4px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 28px 4px rgba(0, 0, 0, 0.11);
}
.announcement-content .dot-logo {
  border-radius: 50%;
  margin-top: -135px;
}

.announcement-content a {
  color: #323484;
}
.announcement-content .inner-content {
  font-size: 15px;
  text-align: left;
}

@media screen and (max-width: 1025px) {
  .public-safety-announcement .updated {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .announcement-content {
    padding: 30px;
  }

  .announcement-content h2 {
    font-size: 18px;
  }
}

@media screen and (max-width: 426px) {
  .public-safety-announcement .updated {
    font-size: 12px;
    padding: 15px 25px;
    margin-bottom: 30px;
  }
}
/*** Public Safety Announcement ***/

/*** Collapse***/
.container-collapse {
  width: 60%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.quarantine-levels {
  padding: 30px 0px 50px;
  text-align: center;
}
.quarantine-levels h3 {
  color: var(--color-purple);
  font-size: 21px;
  margin: 40px auto 30px;
  font-family: var(--font-header);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quarantine-levels .card {
  border: none;
}
.quarantine-levels .accordion {
  margin-bottom: 15px;
}

.quarantine-levels .card-body {
  padding: 30px;
}
.quarantine-levels .card .card-header {
  background-color: var(--color-purple);
}
.quarantine-levels .accordion .card {
  border-radius: 15px 0 15px 0;
  font-size: 15px;
  text-align: left;
  -webkit-box-shadow: 0px 0px 28px 4px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 0px 0px 28px 4px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 28px 4px rgba(0, 0, 0, 0.11);
}

.quarantine-levels .btn-link {
  font-weight: lighter;
  color: #fff;
  padding: 15px;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}

.quarantine-levels .btn-link:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
}

.quarantine-levels .active-arrow .btn-link:after {
  font-family: "Font Awesome 5 Free";
  content: "\f077";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
}

.quarantine-levels .collapse {
  background-color: #fff;
  text-align: left;
  font-size: 15px;
}

.quarantine-levels ul {
  margin: 10px 30px 10px;
}
/* .quarantine-levels ul li::before {
  content: "•";
  color: var(--color-black);
  padding-right: 10px;
} */
.quarantine-levels ul {
  margin-top: 5px;
}

/* .quarantine-levels .no-bullet li {
  list-style-type: none;
} */

@media screen and (max-width: 768px) {
  .quarantine-levels h3 {
    font-size: 18px;
  }
  .container-collapse {
    width: 90%;
  }
}
/*** Collapse ***/

/*** Safe Travels Banner ***/
.safe-travels {
  background: url(assets/images/safe-travels-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 80px;
  height: 70vh;
}

.safe-travels .safeTravel-logo {
  margin-top: 90px;
}

.safe-travels .safeTravels-content {
  margin-top: 110px;
  padding: 20px;
}
.safeTravels-content p {
  font-size: 15px;
  /**
  color: var(--color-black);
  **/
  font-weight: normal;
}

.safe-travels .btn-read-more {
  background-color: var(--color-yellow);
  color: var(--color-purple);
  font-size: 15px;
  border-radius: 15px 0 15px 0;
  padding: 15px 40px 15px 40px;
  font-weight: bold;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .safe-travels .safeTravels-content {
    margin-top: 10px;
    padding: 0px;
  }
  .safe-travels {
    height: 122vh;
  }
  .safe-travels .img-container {
    text-align: center;
  }
}

/*** Safe Travels Banner ***/

/*** List of opened tourism sites and ACCOMMODATION ESTABLISHMENTS ***/
.tourism-sites {
  padding: 90px 0px;
  text-align: center;
}

.tourism-sites p {
  color: var(--color-black);
  font-size: 18px;
  margin-top: 40px;
}

.accomodation {
  font-size: 46px;
  opacity: 0.1;
  letter-spacing: 6px;
  position: absolute;
  margin-bottom: 40px;
}
.tourism-sites .radius-right {
  border-radius: 30px 0 30px 0;
  overflow: hidden;
  cursor: pointer;
  height: 330px;
}

.tourism-sites .radius-right img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.list-tourism-sites {
  margin-top: 10px;
}

/* .tourism-title:hover {
  display: none;
} */

/* .content:hover + .tourism-title {
  display: none;
} */

.list-tourism-sites .tourism-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* .content-overlay:hover .tourism-title {
  opacity: 0;
} */

.list-tourism-sites .tourism-title h4 {
  color: var(--color-white);
  font-size: 25px;
}

.list-tourism-sites .card {
  background: none;
}

.list-tourism-sites .card-title {
  margin: auto 0;
  color: var(--color-white);
  text-align: center;
}

.container .title {
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}
.list-tourism-sites .col-lg-6 {
  margin-top: 40px;
}

.content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.content .content-overlay {
  background: rgba(0, 0, 0, 0.9);
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 30px 0 30px 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay {
  opacity: 1;
}

/* div.content-details {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
} */
.list-tourism-sites .content-details {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
  padding: 20px;
}
.content-details .container {
  overflow-x: hidden;
  height: 280px;
}

/* scrollbar */
.tourism-sites ::-webkit-scrollbar {
  width: 6px;
}

/* scrollbar */
.tourism-sites ::-webkit-scrollbar-track {
  box-shadow: inset 10px 10px 10px #868788;
  border-radius: 10px;
}

/* scrollbar */
.tourism-sites ::-webkit-scrollbar-thumb {
  background: #cdcdcd;
  border-radius: 10px;
}
.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details h4 {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.15em;
  margin: 20px 15px 0px;
  text-align: left;
  text-transform: uppercase;
}

.content-details p {
  color: #fff;
  font-size: 15px;
  text-align: left;
  margin: 15px 0px -10px 15px;
}

.fadeIn-bottom {
  top: 80%;
}

.content-details input.form-control {
  border-radius: 30px 0px 0px 30px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  padding: 15px;
}
.content-details .input-group {
  margin-top: 15px;
}
.content-details .fa-search {
  color: var(--color-white);
}

.btn-transparent {
  border-radius: 0px 30px 30px 0px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  border: 0.5px solid var(--color-white);
}

@media screen and (max-width: 1025px) {
  .tourism-sites p {
    margin-top: 20px;
  }
  .tourism-sites .date {
    margin-top: 50px;
  }
}

@media screen and (max-width: 769px) {
  .accomodation {
    font-size: 50px;
  }
  .content {
    width: 80%;
  }

  .tourism-sites p {
    margin-top: 20px;
  }

  .accredited-hotels-resort p {
    margin-top: 80px;
  }
  .center-div {
    margin: -110px auto -100px;
  }
}
@media screen and (max-width: 426px) {
  .list-tourism-sites .content-details {
    padding: 25px 0px 0px 0px;
  }
  .content:hover .content-details {
    left: 46%;
  }
  .accomodation {
    font-size: 30px;
  }
  .content {
    width: 100%;
  }

  .tourism-sites p {
    margin-top: 30px;
  }
  .content-details p {
    margin: 15px 0px -10px 12px;
  }
  .list-tourism-sites .custom-row {
    width: 125%;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -39px;
  }
}

@media screen and (max-width: 376px) {
  .list-tourism-sites .tourism-title h4 {
    font-size: 18px;
  }
  .protocols-img p {
    margin-top: -50px;
  }
  .accredited-hotels-resort .mt-custom {
    margin: -45px auto 50px;
  }
  .accomodation {
    font-size: 27px;
  }
  .content:hover .content-details {
    left: 45%;
  }
  .content-details p {
    margin: 20px 0px -10px 12px;
  }
  .list-tourism-sites .custom-row {
    width: 132%;
    margin-left: -42px;
  }
}

@media screen and (max-width: 330px) {
  .center-div {
    margin: -30px auto -100px;
  }
  .list-tourism-sites .content-details {
    padding: 25px 0px 0px 0px;
  }
  .content:hover .content-details {
    left: 45%;
  }
  .accomodation {
    font-size: 22px;
  }
  .content-details p {
    margin: 20px 0px -10px 15px;
  }
  .content-details h4 {
    font-size: 13px;
  }
  .list-tourism-sites .custom-row {
    width: 135%;
    margin-left: -40px;
  }
}

/*** List of opened tourism sites and ACCOMMODATION ESTABLISHMENTS ***/

/*** Accredited Hotels Resorts Protocol ***/
.accredited-hotels-resort {
  padding: 130px 0px;
  text-align: center;
}

.accredited-hotels-resort .title-bg-text {
  font-size: 62px;
  opacity: 0.1;
  letter-spacing: 6px;
  position: absolute;
}

.accredited-hotels-resort a {
  color: var(--color-purple);
}
.accredited-hotels-resort p {
  font-size: 18px;
  margin-top: 40px;
}

/* Accredited Hotels-Resorts & Airport slides */
.hotelresorts-airport-slides {
  padding: 0px;
}
.hotelresorts-airport-inner .item {
  text-align: center;
  padding: 0px;
  height: 381px;
  width: 100%;
  max-width: 327px;
  border-bottom-right-radius: 25px;
  border-top-left-radius: 25px;
  transition: 0.4s;
  overflow: hidden;
  position: relative;
  background-color: black;
  margin: auto;
}

.hotelresorts-airport-inner .item img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-bottom-right-radius: 25px;
  border-top-left-radius: 25px;
  opacity: 0.7;
  transition: 0.4s;
}

/* .hotel-resorts-inner .item:hover img {
  transition: 0.4s;
  opacity: 0;
}

.hotel-resorts-inner .item:hover h4 {
  transition: 0.4s;
  transform: scale(1.1);
} */
.protocols-img .card {
  background-color: unset;
}
.hotelresorts-airport-inner .item h4 {
  color: white;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  width: 100%;
  max-width: 85%;
  margin: auto;
}

.hotelresorts-airport-slides-parent-div {
  margin-top: 90px;
}

.hotelresorts-airport-slides h2 {
  letter-spacing: 3px;
}

/* PREV-NEXT BUTTON */
.hotelresorts-airport-slides .owl-prev,
.hotelresorts-airport-slides .owl-next {
  width: 0px;
  height: 100px;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  display: block !important;
}
.hotelresorts-airport-slides .owl-prev {
  left: -35px;
}
.hotelresorts-airport-slides .owl-next {
  right: 0px;
}
.hotelresorts-airport-slides .owl-prev i,
.hotelresorts-airport-slides .owl-next i {
  transform: scale(4, 4);
  color: var(--color-purple);
  margin: 50px 0px 0px 14px;
}

.hotelresorts-airport-slides button.owl-dot {
  width: 100%;
  max-width: 69px;
}

.hotelresorts-airport-slides .owl-theme .owl-dots .owl-dot span {
  background-color: #d5d7e3;
  border-radius: 0;
  width: 100%;
  max-width: 60px;
  display: inline-block;
  height: 6px;
}

.hotelresorts-airport-slides .owl-theme .owl-dots .owl-dot.active span,
.hotelresorts-airport-slides .owl-theme .owl-dots .owl-dot:hover span {
  background: #32357c;
}

.hotelresorts-airport-slides .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 65px;
}

.hotelresorts-airport-slides .owl-theme .owl-nav {
  margin-top: 40px;
}

@media screen and (max-width: 1026px) {
  .accredited-hotels-resort p {
    font-size: 18px;
    margin-top: 70px;
  }
  .hotelresorts-airport-slides {
    margin: 0px 9px 0px -18px;
    padding: 0px;
  }
}

@media only screen and (max-width: 768px) {
  .hotelresorts-airport-slides .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 34px;
  }

  .hotelresorts-airport-slides button.owl-dot {
    width: 100%;
    max-width: 29px;
  }

  .hotelresorts-airport-slides .owl-theme .owl-dots .owl-dot span {
    max-width: 20px;
    height: 4px;
  }

  .accredited-hotels-resort .title-bg-text {
    font-size: 20px;
  }

  .accredited-hotels-resort .protocols-img p {
    margin-top: -55px;
  }
  .accredited-hotels-resort .title-bg-text {
    font-size: 50px;
  }
  .hotelresorts-airport-slides .owl-prev i,
  .hotelresorts-airport-slides .owl-next i {
    margin: 50px 0px 0px 16px;
  }

  .hotelresorts-airport-slides {
    margin: 0px 9px 0px -10px;
    padding: 0px;
  }
}

@media only screen and (max-width: 426px) {
  .hotelresorts-airport-slides button.owl-dot {
    width: 100%;
    max-width: 26px;
  }

  .accredited-hotels-resort .protocols-img p {
    margin-top: -100px;
  }

  .accredited-hotels-resort .title-bg-text {
    font-size: 30px;
  }
  .hotelresorts-airport-slides .owl-prev i,
  .hotelresorts-airport-slides .owl-next i {
    margin: 50px 0px 0px 15px;
  }
  .hotelresorts-airport-slides-parent-div {
    margin: 90px 0px 0px 10px;
  }
}

@media only screen and (max-width: 376px) {
  .accredited-hotels-resort .protocols-img p {
    margin-top: -80px;
  }
  /* .hotelresorts-airport-slides .owl-prev i,
  .hotelresorts-airport-slides .owl-next i {
    margin: 50px 0px 0px 15px;
  } */
  .hotelresorts-airport-slides-parent-div {
    margin: 90px 0px 0px 15px;
  }
}

@media only screen and (max-width: 330px) {
  .accredited-hotels-resort .protocols-img p {
    margin-top: -60px;
  }
  .accredited-hotels-resort .title-bg-text {
    font-size: 25px;
  }
  /* .hotelresorts-airport-slides-parent-div {
    margin: 50px 0px 0px 15px;
  } */
  /* .hotelresorts-airport-slides .owl-prev i,
  .hotelresorts-airport-slides .owl-next i {
    margin: 50px 0px 0px 15px;
  } */
}

.protocols-img .card-img-top {
  object-fit: none;
  object-position: center;
}

.protocols-img p {
  margin-top: -80px;
}
/*** Accredited Hotels-Resorts & Airport slides ***/

/*** Guidelines for Accommodation Establishments ***/
.guidlines-background {
  background-color: #f9f9fa;
}
.guidelines {
  padding: 90px 0px;
  text-align: center;
}

.guidelines .title-bg-text {
  font-size: 48px;
  opacity: 0.1;
  letter-spacing: 6px;
  position: absolute;
  margin-bottom: 40px;
}

.guidelines p {
  font-size: 18px;
  margin-top: 40px;
}
.policy-list .container {
  overflow-x: hidden;
  height: 830px;
}

.policy-list {
  margin-top: 50px;
  background-color: white;
  padding: 40px;
  border-radius: 0px 30px 0px 30px;
  overflow-y: hidden;
  overflow-x: hidden;
  height: 944px;
}
.policy-list h2 {
  font-size: 21px;
}

.policy-list ol {
  text-align: left;
  padding: 40px;
}

.policy-list .reception,
.policy-list .food-beverages,
.policy-list .rooms-housekeeping,
.policy-list .cards {
  padding: 10px;
}
/* scrollbar */
.guidelines ::-webkit-scrollbar {
  width: 7px;
}
/* scrollbar */
.guidelines ::-webkit-scrollbar-track {
  background: #eceded;
  border: 1px solid #bababa;
  border-radius: 30px;
}
/* scrollbar */
.guidelines ::-webkit-scrollbar-thumb {
  background: #fdfdfd;
  border: 1px solid #7c7c7c;
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .guidelines .title-bg-text {
    font-size: 57px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 426px) {
  .policy-list {
    padding: 20px;
  }

  .policy-list h2 {
    font-size: 21px;
    margin-top: 30px;
  }

  .policy-list ol {
    padding: 10px 0px 10px;
  }
  .guidelines .title-bg-text {
    font-size: 30px;
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 376px) {
  .guidelines .title-bg-text {
    font-size: 27px;
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 330px) {
  .policy-list {
    padding: 0px;
    height: 870px;
  }

  .policy-list h2 {
    font-size: 18px;
    margin-top: 50px;
  }

  .guidelines .title-bg-text {
    font-size: 2px;
    margin-bottom: 0px;
  }
}
/*** Guidelines for Accommodation Establishments ***/

/*** Download Accomodation ***/
.download-accomodation {
  padding: 50px 0px;
  background-color: var(--color-purple);
}
.download-accomodation h2 {
  font-size: 16px;
  color: var(--color-white);
  text-align: center;
  line-height: 1.7;
  margin: 20px 20px;
}

.download-accomodation p {
  font-size: 15px;
  color: var(--color-white);
}
.download-accomodation .btn-download {
  background: rgb(249, 193, 38);
  background: linear-gradient(
    170deg,
    rgba(249, 193, 38, 1) 24%,
    rgba(203, 47, 63, 1) 82%
  );
  margin: 0 auto;
  display: block;
  border: 0;
}
.btn-download {
  margin: 10px;
  padding: 10px 36px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
  display: block;
}

.btn-download .fa-chevron-down {
  background-color: white;
  padding: 7px;
  color: rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  margin-left: 15px;
}
.download-accomodation span {
  position: relative;
  top: -7px;
}

.download-accomodation .fa-chevron-down:before {
  content: "";
  background-image: url(assets/images/download-icon.png);
  height: 17px;
  width: 17px;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* .download-accomodation .download-icon {
  background: url("assets/images/download-icon.png");
  height: 20px;
  width: 20px;
  display: block;
} */

@media screen and (max-width: 768px) {
  .download-accomodation p {
    font-size: 15px;
    color: var(--color-white);
    /* margin: 0 auto; */
    text-align: center;
  }
}
/*** Download Accomodation ***/

/*** New normal protocols ***/
.new-normal-protocols {
  padding: 90px 0px;
  text-align: center;
}

.new-normal-protocols p {
  color: var(--color-black);
  font-size: 18px;
  text-align: center;
  margin: 40px 0px 80px;
}
.new-normal-protocols .slides-title {
  font-size: 20px;
  margin-top: 50px;
}

@media screen and (max-width: 426px) {
  .new-normal-protocols p {
    margin: 50px 0px 80px;
  }
}

@media screen and (max-width: 376px) {
  .new-normal-protocols .slides-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 330px) {
  .new-normal-protocols .slides-title {
    font-size: 16px;
  }
}
/* New normal protocols slides */
.protocols-slides {
  padding: 0px;
}
.protocols-divider {
  margin: 70px 0px 80px;
}
.protocols-slides .card {
  margin: 0px 40px;
  padding: 0px 20px;
  background-color: var(--color-white);
}
.protocols-slides .card p {
  margin-top: unset;
  font-size: 15px;
}
.protocols-slides .card-body {
  padding: unset;
}
.protocols-inner .item {
  text-align: center;
  padding: 0px;
  height: 381px;
  width: 100%;
  max-width: 327px;
  border-bottom-right-radius: 25px;
  border-top-left-radius: 25px;
  transition: 0.4s;
  overflow: hidden;
  position: relative;
  background-color: black;
  margin: auto;
}

.protocols-inner .item img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-bottom-right-radius: 25px;
  border-top-left-radius: 25px;
  opacity: 0.7;
  transition: 0.4s;
}

.protocols-inner .item h4 {
  color: white;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  width: 100%;
  max-width: 85%;
  margin: auto;
}

.protocols-slides-parent-div {
  margin-top: 90px;
}

.protocols-slides h2 {
  letter-spacing: 3px;
}

/* PREV-NEXT BUTTON */
.protocols-slides .fa-angle-left {
  margin: 0px 0px 100px 20px;
}

.protocols-slides .fa-angle-right {
  margin: 0px 0px 100px 0px;
}
.protocols-slides .owl-prev,
.protocols-slides .owl-next {
  width: 0px;
  height: 100px;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  display: block !important;
}
.protocols-slides .owl-prev {
  left: -35px;
}
.protocols-slides .owl-next {
  right: 0px;
}
.protocols-slides .owl-prev i,
.protocols-slides .owl-next i {
  transform: scale(4, 4);
  color: var(--color-purple);
}

.protocols-slides button.owl-dot {
  width: 100%;
  max-width: 69px;
}

.protocols-slides .owl-theme .owl-dots .owl-dot span {
  background-color: #d5d7e3;
  border-radius: 0;
  width: 100%;
  max-width: 60px;
  display: inline-block;
  height: 6px;
}

.protocols-slides .owl-theme .owl-dots .owl-dot.active span,
.protocols-slides .owl-theme .owl-dots .owl-dot:hover span {
  background: #32357c;
}

.protocols-slides .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 65px;
}

.protocols-slides .owl-theme .owl-nav {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .protocols-slides .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 34px;
  }

  .protocols-slides button.owl-dot {
    width: 100%;
    max-width: 29px;
  }

  .protocols-slides .owl-theme .owl-dots .owl-dot span {
    max-width: 20px;
    height: 4px;
  }
}

@media only screen and (max-width: 425px) {
  .protocols-slides button.owl-dot {
    width: 100%;
    max-width: 26px;
  }
}

/*** New normal protocols ***/

/*** Land Tourist protocols ***/
.land-tourist-background {
  background-color: #f9f9fa;
}

.land-tourist-transportation {
  padding: 90px 0px;
  text-align: center;
}
.land-tourist-transportation p {
  margin: 40px 0px 80px;
}

.land-tourist-transportation .title-bg-text {
  font-size: 48px;
  opacity: 0.1;
  letter-spacing: 6px;
  position: absolute;
  margin-bottom: 40px;
}

.land-tourist-transportation .card {
  margin: 0px 40px;
  padding: 0px 20px;
  background-color: #f9f9fa;
}
.transpo-vehicle-policy .container {
  overflow-x: hidden;
  height: 830px;
}

.transpo-vehicle-policy {
  margin-top: 50px;
  background-color: white;
  padding: 40px;
  border-radius: 0px 30px 0px 30px;
  overflow-y: hidden;
  overflow-x: hidden;
  height: 944px;
}
.transpo-vehicle-policy h2 {
  font-size: 21px;
}

.transpo-vehicle-policy p {
  margin: 40px 0px 0px 42px;
  text-align: left;
}
.transpo-vehicle-policy h2 p {
  text-align: left;
}

.transpo-vehicle-policy ol {
  text-align: left;
  padding: 40px;
}

/* scrollbar */
.land-tourist-transportation ::-webkit-scrollbar {
  width: 7px;
}
/* scrollbar */
.land-tourist-transportation ::-webkit-scrollbar-track {
  background: #eceded;
  border: 1px solid #bababa;
  border-radius: 30px;
}
/* scrollbar */
.land-tourist-transportation ::-webkit-scrollbar-thumb {
  background: #fdfdfd;
  border: 1px solid #7c7c7c;
  border-radius: 30px;
}

.land-tourist-transportation .kits,
.land-tourist-transportation .directory {
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .land-tourist-transportation .title-bg-text {
    font-size: 60px;
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 426px) {
  .transpo-vehicle-policy {
    padding: 20px;
  }

  .land-tourist-transportation .title-bg-text {
    font-size: 30px;
    margin-bottom: 0px;
  }
  .land-tourist-transportation .slides-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 376px) {
  .transpo-vehicle-policy ol {
    text-align: left;
    padding: 20px 0px;
  }
  .transpo-vehicle-policy p {
    margin: 40px 0px 0px 0px;
  }
  .land-tourist-transportation .title-bg-text {
    font-size: 27px;
  }
  .land-tourist-transportation .slides-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 330px) {
  .transpo-vehicle-policy {
    padding: 10px 0px 0px 0px;
    height: 870px;
  }
  .transpo-vehicle-policy h2 {
    font-size: 18px;
    margin-top: 50px;
  }
  .land-tourist-transportation .title-bg-text {
    font-size: 20px;
    margin-bottom: 0px;
  }
  .transpo-vehicle-policy ol {
    padding: 20px 0px;
  }
  .transpo-vehicle-policy p {
    margin: 40px 0px 0px 0px;
  }
  .land-tourist-transportation .slides-title {
    font-size: 16px;
  }
}
/*** Land Tourist protocols ***/

/*** Airport protocols ***/
.airport-protocol {
  padding: 90px 0px;
  text-align: center;
}

.airport-protocol p {
  margin: 40px 0px 80px;
}

.airport-protocols-img .card-img-top {
  object-fit: none;
  object-position: center;
}

.airport-protocols-img p {
  margin-top: -80px;
}
.airport-protocols-img .card {
  background-color: unset;
}
@media only screen and (max-width: 426px) {
  .airport-protocols-img p {
    margin-top: -100px;
  }
  .accredited-hotels-resort .mt-custom {
    margin: -50px auto 50px;
  }
  .airport-protocol .airport-title {
    font-size: 20px;
  }

  .airport-protocols-img .mt-custom {
    margin-top: -100px;
  }
}

@media only screen and (max-width: 376px) {
  .airport-protocols-img p {
    margin-top: -80px;
  }
  .airport-protocol .airport-title {
    font-size: 18px;
  }
  .airport-protocols-img .mt-custom {
    margin-top: -90px;
  }
}

@media screen and (max-width: 330px) {
  .airport-protocols-img .card {
    margin: -50px auto;
  }

  .airport-protocols-img p {
    margin-top: -60px;
  }
  .airport-protocols-img .mt-custom {
    margin-top: -40px;
  }

  .airport-protocol .airport-title {
    font-size: 16px;
  }
}
/*** Airport protocols ***/

/*** Aviation Health protocols ***/
.aviation-health-protocols {
  padding: 90px 0px;
  background-color: var(--color-purple);
}
.aviation-health-protocols h2 {
  color: var(--color-white);
  text-align: center;
}
.aviation-inner {
  margin-top: 50px;
  background-color: white;
  padding: 40px 120px 40px 120px;
  border-radius: 30px 0px 30px 0px;
}
.aviation-inner input.form-control {
  border-radius: 30px 0px 0px 30px;
  background: white;
  border: 1px solid var(--color-purple);
  font-size: 18px;
  color: var(--color-purple);
  padding: 15px;
}

.aviation-inner .btn-airport {
  border-radius: 0px 30px 30px 0px;
  color: var(--color-purple);
  border: 0.5px solid var(--color-white);
  border-right: 1px solid var(--color-purple);
  border-top: 1px solid var(--color-purple);
  border-bottom: 1px solid var(--color-purple);
}
.aviation-inner .fa-search {
  font-size: 20px;
}

.aviation-container {
  width: 70%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.search-airport-row .input-group {
  display: none;
}

/* .search-airport-row {
  margin-bottom: 70px;
} */
/* for the meantime for search airport */
.search-airport-row {
  margin-bottom: -10px;
}
.aviation-health-protocols .card {
  border: none;
}
.aviation-health-protocols .accordion {
  margin: 20px 0px 10px 0px;
}

.aviation-health-protocols .card-body {
  padding: 20px 30px 30px 70px;
  background-color: #ebebeb;
  overflow-y: initial;
  overflow-x: hidden;
  height: 290px;
}
.aviation-health-protocols .card-body p {
  margin: 0px 0px 0px -42px;
  text-align: left;
}

.aviation-health-protocols .card .card-header {
  background-color: var(--color-purple);
  padding: 0.1rem 1.25rem;
  margin-bottom: 0;
}
.aviation-health-protocols .accordion .card {
  border-radius: 30px;
  font-size: 15px;
  text-align: left;
  -webkit-box-shadow: 0px 0px 28px 4px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 0px 0px 28px 4px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 28px 4px rgba(0, 0, 0, 0.11);
}

.aviation-health-protocols .btn-link {
  font-weight: 500;
  color: #fff;
  padding: 8px;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}

.aviation-health-protocols .btn-link:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
}

.aviation-health-protocols .active-arrow .btn-link:after {
  font-family: "Font Awesome 5 Free";
  content: "\f077";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
}

#camiguin_airport strong {
  color: var(--color-purple);
}

#camiguin_airport {
  padding: 20px 30px 30px 30px;
  background-color: #ebebeb;
  overflow-y: hidden;
  overflow-x: hidden;
  height: 350px;
}

#camiguin_airport ::-webkit-scrollbar {
  width: 10px;
}

#camiguin_airport ::-webkit-scrollbar-track {
  background: #eceded;
  border: 1px solid #bababa;
  border-radius: 30px;
}

#camiguin_airport ::-webkit-scrollbar-thumb {
  background: #fdfdfd;
  border: 1px solid #7c7c7c;
  border-radius: 30px;
}

@media screen and (max-width: 426px) {
  .aviation-inner {
    padding: 40px 20px 40px 20px;
  }

  .aviation-health-protocols .card-body {
    height: 700px;
  }

  #camiguin_airport {
    padding: 20px 30px 30px 10px;
  }
}

@media screen and (max-width: 330px) {
  .aviation-health-protocols h2 {
    font-size: 20px;
  }

  .aviation-inner {
    padding: 40px 10px 40px 10px;
  }

  .aviation-inner input.form-control {
    font-size: 18px;
  }

  .aviation-container {
    width: 85%;
  }
}
/*** Aviation Health protocols ***/

/*** Aircraft Disinfection ***/
.aircraft-disinfection {
  padding: 90px 0px;
}

.aircraft-disinfection .card-text {
  text-align: center;
  font-size: 15px;
}
.disinfection-img {
  width: 100px;
  margin: 0px auto;
}

/*** Aircraft Disinfection ***/

/*** Social Distancing Measures ***/
.social-distancing-measures {
  padding: 90px 0px;
  background: rgb(70, 72, 163);
  background: linear-gradient(
    169deg,
    rgba(70, 72, 163, 1) 29%,
    rgba(203, 47, 63, 1) 100%
  );
  text-align: center;
}
.social-distancing-measures h2 {
  color: var(--color-white);
}
.social-distancing-measures p {
  color: var(--color-white);
  margin-top: 40px;
}

.social-distancing-measures .title-bg-text {
  font-size: 46px;
}

@media screen and (max-width: 768px) {
  .social-distancing-measures .title-bg-text {
    font-size: 50px;
  }
}

@media screen and (max-width: 426px) {
  .social-distancing-measures .title-bg-text {
    font-size: 30px;
  }
}

@media screen and (max-width: 376px) {
  .social-distancing-measures p {
    margin-top: 60px;
  }
}

@media screen and (max-width: 330px) {
  .social-distancing-measures p {
    margin-top: 60px;
  }
}
/*** Social Distancing Measures ***/

/*** What you Should do ***/
.what-you-should-do {
  padding: 90px 0px;
}

.what-you-should-do p {
  margin-top: 40px;
  text-align: center;
}

.what-you-should-do .card {
  max-width: 540px;
  border: 0px;
  margin-top: 50px;
}

.what-you-should-do .card-text {
  margin-top: 15px;
  text-align: left;
}

.what-you-should-do a {
  color: var(--color-purple);
}

@media screen and (max-width: 768px) {
  .what-you-should-do p {
    margin-top: 60px;
    text-align: center;
  }

  .what-you-should-do .center-div {
    margin: -25px auto -100px;
  }
  .what-you-should-do .dot-page {
    margin-top: 150px;
  }
}

@media screen and (max-width: 426px) {
  .what-you-should-do .card-text {
    text-align: center;
  }
  .what-you-should-do .center-div {
    text-align: center;
  }
}
/*** What you Should do ***/

/*** Stop Spread Fake news ***/

.fake-news {
  padding: 90px 190px;
  background-color: #cb2f3f;
}
.fake-news h2 {
  color: var(--color-white);
}

.fake-news p {
  text-align: left;
  color: var(--white);
  margin-top: 30px;
}
.fake-news .title-bg-purple {
  font-size: 38px;
}

.fake-news a {
  color: var(--color-yellow);
}

@media screen and (max-width: 768px) {
  .fake-news {
    padding: 90px 90px;
  }

  .fake-news .title-bg-purple {
    font-size: 35px;
  }

  .fake-news .title-bg-text {
    font-size: 50px;
  }
}

@media screen and (max-width: 475px) {
  .fake-news .title-bg-purple {
    font-size: 20px;
  }

  .fake-news {
    padding: 90px 40px;
  }
}

@media screen and (max-width: 330px) {
  .fake-news {
    padding: 90px 20px;
  }
}

/*** Stop Spread Fake news ***/

/*** Keeping you safe is our priority. ***/
.Keeping-you-safe {
  padding: 90px 0px;
}

.Keeping-you-safe .btn-philtravel {
  background: rgb(70, 72, 163);
  background: linear-gradient(
    170deg,
    rgba(70, 72, 163, 1) 29%,
    rgba(203, 47, 63, 1) 86%
  );
  text-align: center;
  color: var(--color-white);
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 18px;
  margin: 0 auto;
  display: block;
  border: 0;
}
.Keeping-you-safe .title-bg-black {
  color: var(--color-black);
  text-align: center;
  margin-bottom: 30px;
}

a.btn-philtravel {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;

  text-decoration: none;
  color: initial;
}

/*** Keeping you safe is our priority. ***/

/*** Downloadable Memos ***/
.downloadable-memos {
  padding: 90px 0px;
}

.btn-download-memos {
  border-radius: 15px 0 15px 0;
  background-color: var(--color-purple);
  padding: 15px 40px;
  color: white;
  font-size: 15px;
  font-family: "Asap Regular";
}

.downloadable-memos .title-bg-text {
  font-size: 60px;
}
.btn-download-memos:hover {
  background-color: #232557;
  color: white;
}
.downloadable-memos-row h2 {
  font-family: "Asap Regular";
  font-size: 25px;
}
.downloadable-memos-row p {
  margin: 10px 0px 40px;
}

.downloadable-memos-row {
  margin-top: 60px;
}
.downloadable-memos .mb-custom {
  margin-bottom: 80px;
}

.downloadable-memos-row hr {
  border: 0.7px solid #afafaf;
  width: 131%;
  margin-left: -40px;
}

.hr-sp {
  display: none;
}
@media screen and (max-width: 1025px) {
  .btn-download-memos {
    margin: 0 -20px;
  }
  .downloadable-memos-row h2 {
    width: 95%;
  }
  .downloadable-memos p {
    width: 95%;
  }
}
@media screen and (max-width: 992px) {
  .hr-sp {
    display: block;
    width: 115%;
  }
  .hr-pc {
    display: none;
  }
  .downloadable-memos .mb-custom {
    margin-bottom: 20px;
  }

  .btn-download-memos {
    margin-bottom: 20px;
  }

  .downloadable-memos-row p {
    margin: 10px 0px 0px;
    width: 100%;
  }
  .downloadable-memos-row h2 {
    margin-top: 20px;
    width: 100%;
  }
  .downloadable-memos .title-bg-text {
    font-size: 40px;
  }
  .downloadable-memos-row hr {
    width: 100%;
  }
}
@media screen and (max-width: 769px) {
  .downloadable-memos-row hr {
    width: 100%;
    margin-left: 0px;
  }
  .downloadable-memos .title-bg-purple {
    font-size: 25px;
  }
  .downloadable-memos .title-bg-text {
    font-size: 36px;
  }
  .btn-download-memos {
    margin: 0px auto 15px;
  }
}
@media screen and (max-width: 330px) {
  .downloadable-memos .title-bg-text {
    font-size: 20px;
  }
  .downloadable-memos .title-bg-purple {
    font-size: 18px;
  }
}

/*** Downloadable Memos ***/

/****** OCTOBER 6, 2020 SAFEph PAGE ******/
/*---------------------------------------*/

section.financial-assistance {
  padding: 90px 0px;
}

section.financial-assistance .title-bg {
  margin-bottom: 30px;
}

section.financial-assistance div.financial-content {
  padding: 0 70px;
}

section.financial-assistance div.financial-content p {
  font-size: 15px;
  text-align: left;
}

section.financial-assistance div.financial-content img {
  margin-top: 20px;
}

section.financial-assistance div.financial-content .d-flex {
  flex-wrap: wrap;
}

section.financial-assistance div.financial-content .d-flex > * {
  margin-right: 20px;
  color: var(--color-purple);
}

@media (max-width: 768px) {
  section.financial-assistance div.financial-content {
    padding: 0;
  }
}

.safeph-subnav.navaffix, .navaffix {
    position: fixed;
    top: 0;
    bottom: auto;
    left: 0; 
	right: 0;  
    z-index: 1;
}

.safeph-subnav-menu{
	width: 25%;
	height: 100%;
}

.safeph-subnav-menu:hover, .safeph-subnav-menu a.selected{
	background-color:#03877f;
}

.safeph-subnav-menu a{
	text-decoration: none!important;
}

/*** TABLES START***/
/* 
table, th, td, tr {
	border: 1px solid black;
	text-align: center; 
	vertical-align: middle;
}
.tableHead {
    text-align: center; 
    vertical-align: middle;
}
*/
/* 
Generic Styling, for Desktops/Laptops 
*/
table { 
  width: 100%; 
  border-collapse: collapse; 
  text-align: center; 
  vertical-align: middle; 
}
/* Zebra striping */
tr:nth-of-type(odd) { 
  background: #eee; 
  border: 2px solid #ccc; 
  text-align: center; 
  vertical-align: middle; 
}
tr { 
  text-align: center; 
  vertical-align: middle; 
}
th { 
  /*background: #333; */
  color: white; 
  font-weight: bold; 
  text-align: center; 
  vertical-align: middle; 
}
td, th { 
  /* padding: 6px; */
  border: 2px solid #ccc; 
  text-align: center; 
  vertical-align: middle; 
}

/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.

 
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  { */

	/* Force table to not be like tables anymore 
	table, thead, tbody, th, td, tr { 
		display: block; 
	} */
	
	/* Hide table headers (but not display: none;, for accessibility) 
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	tr { border: 2px solid #ccc; }
	
	td {  */
		/* Behave  like a "row" 
		border: none;
		border: 2px solid #eee; 
		position: relative;
		padding-left: 50%; 
		text-align: center; 
		vertical-align: middle; 
	}
	
	td::before {  */
		/* Now like a table header  
		position: absolute; */
		/* Top/left values mimic padding 
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		text-align: center; 
		vertical-align: middle; 
	} */
	
	/*
	Label the data
	
	td:nth-of-type(1):before { 
		content: tag(h4)"LGU "; 
	}
	td:nth-of-type(2):before { 
		content: "RT-PCR / RDT TEST "; 
	}
	td:nth-of-type(3):before { 
		content: "TRAVEL AUTHORITY "; 
	}
	td:nth-of-type(4):before { 
		content: "CONTACT TRACING "; 
	}
	td:nth-of-type(5):before { 
		content: "QUARANTINE "; 
	}
	td:nth-of-type(6):before { 
		content: "SYMPTOMS CHECKING "; 
	}
	td:nth-of-type(7):before { 
		content: <h4>"LGU ISSUANCES "</h4>; 
	} 
} */