/*!
Theme Name: Brizo 2023
Author: Nathan Palaganas
*/
.site-header {
  position: fixed;
  z-index: 999;
  width: 100%;
}
.site-header .header-box {
  background-color: rgba(255, 255, 255, 0.9);
  width: 70%;
  margin: 5px auto;
  padding: 15px;
  display: flex;
  box-shadow: 0px 0px 5px #888;
}
.site-header .header-box .site-branding img {
  width: 150px;
}
.site-header .header-box .main-navigation ul {
  padding: 0;
  margin: 0;
  text-align: right;
}
.site-header .header-box .main-navigation ul li {
  display: inline-block;
  padding-right: 1.5em;
}
.site-header .header-box .main-navigation ul li:last-of-type {
  padding-right: 0;
}
.site-header .header-box .main-navigation ul li a {
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  font-family: 'Avenir-Regular';
  font-weight: 800;
  color: #4D55BF;
}
.site-header .header-box .main-navigation ul li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #4F5AA9;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.site-header .header-box .main-navigation ul li a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.site-header .header-box .main-navigation ul li.current-menu-item a:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/*--------------------------------------------------------------
## Mobile Menu
--------------------------------------------------------------*/
.menu-toggle {
  display: none;
  position: absolute;
  right: 40px;
  top: 18px;
  z-index: 11;
  width: 30px;
  cursor: pointer;
}
.menu-toggle span.bar {
  display: block;
  margin-top: 7px;
  height: 2px;
  margin-bottom: 7px;
  z-index: 2;
  background-color: #4F5AA9;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.menu-toggle span.bar.top-bar {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.menu-toggle span.bar.middle-bar {
  opacity: 1;
}
.menu-toggle span.bar.bottom-bar {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.menu-toggle.toggled span.bar.top-bar {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 0% 200%;
  -moz-transform-origin: 0% 200%;
  -ms-transform-origin: 0% 200%;
  -o-transform-origin: 0% 200%;
  transform-origin: 0% 200%;
}
.menu-toggle.toggled span.bar.middle-bar {
  opacity: 0;
}
.menu-toggle.toggled span.bar.bottom-bar {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 10% 10%;
  -moz-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  -o-transform-origin: 10% 10%;
  transform-origin: 20% 10%;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(0, 0, 0, 0.34);
  z-index: 10002;
  cursor: pointer;
}
nav.mobile-navigation {
  position: fixed;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
}
nav.mobile-navigation .nav-container {
  padding: 0 15px;
  position: fixed;
  width: 80%;
  overflow-y: scroll;
  height: 100%;
  font-size: 15px;
  text-transform: uppercase;
}
nav.mobile-navigation .nav-container ul {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
}
nav.mobile-navigation .nav-container ul li {
  padding: 10px;
}
nav.mobile-navigation .nav-container ul li.current_page_item a {
  font-weight: 700;
}
nav.mobile-navigation .nav-container ul a {
  display: inline-block;
  padding: 5px 0;
  color: #4D55BF;
  text-decoration: none;
  font-family: 'Avenir-Regular';
}
@media screen and (min-width: 992px) and (max-width: 1272px) {
  .site-header .header-box .main-navigation ul li {
    padding-right: 1.2vw;
  }
  .site-header .header-box .main-navigation ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  body {
    position: relative;
    right: 0;
    overflow-x: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  body.menu-visible {
    right: 80%;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  body.menu-visible #masthead {
    left: -80%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .overlay {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .overlay.toggled {
    width: 20%;
  }
  nav.mobile-navigation {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  nav.mobile-navigation.toggled {
    width: 80%;
  }
  .menu-toggle,
  .main-navigation.toggled .nav-menu {
    display: block;
    right: 20px;
  }
  .main-navigation ul {
    display: none;
  }
  .site-header {
    left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .site-header .header-box {
    width: 100%;
    margin: 0;
    padding: 15px;
    box-shadow: 1px 0px 5px #888;
  }
  .site-header .header-box .site-branding img {
    width: 120px;
  }
  .site-header .header-box > .container {
    max-width: 100%;
  }
}
.brizo-home {
  background-color: #B3BDFB;
  height: 100%;
  margin: 0;
  padding: 0;
  padding: 6rem 0;
}
.brizo-home .site-branding {
  text-align: center;
}
.brizo-home .site-branding img {
  width: 250px;
}
.brizo-home i {
  color: #4D55BF;
  font-size: 20px;
}
.brizo-home .title-head {
  line-height: 40px;
  font-size: 26px;
}
.brizo-home h5 {
  padding-top: 2rem;
  font-family: 'Felixti';
  letter-spacing: 1px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .brizo-home {
    padding: 5rem 0;
  }
  .brizo-home .title-head {
    line-height: 30px;
    font-size: 22px;
  }
  .brizo-home h5 {
    padding-top: 0;
  }
  .brizo-home .brizo-bataan {
    margin-top: 3rem;
  }
}
img {
  max-width: 100%;
  height: auto;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #B3BDFB;
}
html {
  width: 100%;
  overflow-x: hidden;
}
p,
span {
  font-family: 'Avenir-Regular';
}
.primary-font-color {
  color: #4D55BF;
}
.light-blue-font-color {
  color: #73B7DE;
}
.primary-bg-color {
  background-color: #4F5AA9;
}
.primary-font {
  font-family: 'Avenir-Regular';
}
.intro-page {
  text-align: center;
  margin-bottom: 3rem;
}
.intro-page h1,
.intro-page h2,
.intro-page h3,
.intro-page h4,
.intro-page h5,
.intro-page h6 {
  color: #4D55BF;
  font-family: 'Avenir-Next';
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.title-head {
  color: #4D55BF;
  font-family: 'Avenir-Next';
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.default-btn {
  background-color: #4F5AA9;
  font-family: 'Avenir-Regular';
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  padding: 15px 30px;
  display: inline-block;
  font-size: 14px;
  border-radius: 30px;
}
.default-btn:hover {
  color: #fff;
}
.page-banner-section {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.page-banner-section .page-banner-content {
  position: absolute;
  left: 7%;
  width: 30vw;
  color: #fff;
}
.page-banner-section .page-banner-content h1 {
  font-family: 'Felixti';
  font-size: 3.5rem;
  letter-spacing: 1px;
}
.page-banner-section .page-banner-content p {
  margin: 20px 0 0;
  letter-spacing: 1px;
  font-size: 20px;
}
.default-carousel {
  width: 90%;
  margin: auto auto 30px auto;
}
.default-carousel .owl-item .item img {
  border-radius: 10px;
  margin-bottom: 1rem;
}
.default-carousel .owl-nav {
  font-size: 24px;
  color: #fff;
}
.default-carousel .owl-nav .owl-prev {
  position: absolute;
  left: -7%;
  top: 41%;
  background-color: #4f5aa9 !important;
  width: 38px;
  border-radius: 20px;
}
.default-carousel .owl-nav .owl-prev i {
  position: relative;
  left: -1px;
}
.default-carousel .owl-nav .owl-next {
  position: absolute;
  right: -7%;
  top: 41%;
  background-color: #4f5aa9 !important;
  width: 38px;
  border-radius: 20px;
}
.default-carousel .owl-nav .owl-next i {
  position: relative;
  right: -1px;
}
.default-carousel .owl-dots {
  text-align: center;
}
.default-carousel .owl-dots .owl-dot {
  height: 15px;
  width: 15px;
  border-radius: 12px;
  border: 1px solid #4f5aa9;
  display: inline-block;
  margin: 0 8px;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -moz-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -ms-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -o-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.default-carousel .owl-dots .owl-dot.active {
  background-color: #4F5AA9;
}
/*--------------------------------------------------------------
## Animations/Transitions
--------------------------------------------------------------*/
.default-transition {
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -moz-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -ms-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -o-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.slow-transition {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/*--------------------------------------------------------------
## Fonts 
--------------------------------------------------------------*/
@font-face {
  font-family: 'Avenir-Regular';
  src: url('fonts/Avenir.ttc');
  font-display: swap;
}
@font-face {
  font-family: 'Avenir-Next';
  src: url('fonts/Avenir Next.ttc');
  font-display: swap;
}
@font-face {
  font-family: 'Avenir-Next-Condensed';
  src: url('fonts/Avenir Next Condensed.ttc');
  font-display: swap;
}
@font-face {
  font-family: 'Felixti';
  src: url('fonts/Felixti.TTF');
  font-display: swap;
}
@media screen and (max-width: 767px) {
  .page-banner-section .page-banner-content {
    width: 40vw;
  }
  .page-banner-section .page-banner-content h1 {
    font-size: 18px;
  }
  .page-banner-section .page-banner-content p {
    margin: 0;
    font-size: 12px;
  }
}
.site-footer .site-info {
  padding: 4rem 5rem;
  background-color: #B3BDFB;
}
.site-footer .site-info a > img {
  width: 220px;
}
.site-footer .site-info .contact-details {
  padding: 2rem 0 0;
  margin: 0;
}
.site-footer .site-info .contact-details li {
  list-style: none;
  font-size: 14px;
  display: flex;
  margin-bottom: 20px;
  color: #4D55BF;
  letter-spacing: 1px;
  font-weight: 700;
}
.site-footer .site-info .contact-details li i {
  font-size: 30px;
  margin-right: 25px;
  width: 15px;
}
.site-footer .site-info .contact-details li i.fa-envelope {
  font-size: 15px;
  padding-top: 5px;
}
.site-footer .site-info .contact-details li i.fa-phone {
  font-size: 22px;
}
.site-footer .site-info .contact-details li .contact-label {
  width: 95px;
}
.site-footer .site-info .contact-details li span {
  display: block;
}
.site-footer .site-info .contact-details li:last-of-type {
  margin-bottom: 0;
}
.site-footer .site-info .booking-form-section {
  align-self: center;
}
.site-footer .site-info .booking-form-section h1 {
  color: #4853BC;
  font-family: 'Avenir-Regular';
  letter-spacing: 1px;
  font-size: 25px;
  font-weight: 700;
}
.site-footer .site-info .booking-form-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #4D55BF;
  font-family: 'Avenir-Regular';
  font-weight: 600;
  letter-spacing: 1px;
}
.site-footer .site-info .booking-form-section .wpcf7-text {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
  border: none;
  font-style: italic;
  font-family: 'Avenir-Regular';
}
.site-footer .site-info .booking-form-section .wpcf7-text::placeholder {
  color: #000;
}
.site-footer .site-info .booking-form-section p {
  margin-bottom: 0;
}
.site-footer .site-info .booking-form-section input[type="submit"] {
  text-align: center;
  width: 60%;
  background-color: #4F5AA9;
  color: #fff;
  border: none;
  padding: 15px 0;
  border-radius: 5px;
  margin: 15px 0 0;
  text-transform: uppercase;
  font-family: 'Avenir-Regular';
}
.site-footer .site-info .booking-form-section .wpcf7-spinner {
  display: block;
  margin: auto;
}
.site-footer .site-info .booking-form-section .wpcf7-not-valid-tip {
  display: unset;
}
.site-footer .site-info .footer-menu ul li {
  margin-bottom: 20px;
  list-style-type: none;
}
.site-footer .site-info .footer-menu ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #4D55BF;
  letter-spacing: 1px;
  font-weight: 500;
}
.site-footer .site-info .footer-menu ul li:last-child {
  margin-bottom: 0;
}
.site-footer .bottom-footer {
  background-color: #4F5AA9;
  color: #fff;
  padding: 3rem 0;
  text-transform: uppercase;
}
.site-footer .bottom-footer p {
  margin-bottom: 0;
  letter-spacing: 1px;
  font-size: 14px;
}
.site-footer .scroll-to-top {
  position: fixed;
  cursor: pointer;
  box-shadow: 0 0 5px #888;
  z-index: 9;
  bottom: 5%;
  right: 3%;
  background: #fff;
  padding: 25px 22px;
  border-radius: 50px;
}
.site-footer .scroll-to-top a {
  display: inline-flex;
}
.site-footer .scroll-to-top a img {
  width: 50px;
}
@media screen and (max-width: 767px) {
  .site-footer .site-info {
    padding: 2rem 1rem;
  }
  .site-footer .site-info a > img {
    width: 120px;
  }
  .site-footer .site-info .booking-form-section {
    margin-top: 25px;
    text-align: center;
  }
}
