/****************************************************
****** HTML, SITEWIDE  ******************************
****************************************************/
html {
  overflow-x: hidden;
}

body {
  font-family: "Amatic SC", sans-serif;
  overflow-x: hidden;
  background-color: #ffffff;
}
body.admin-bar .sticky {
  margin-top: 30px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
img.no-full {
  max-width: 100%;
  width: unset;
  height: unset;
}

/****************************************************
****** CONTAINERS/WRAPPERS  ******************************
****************************************************/
#main-content {
  position: relative;
  z-index: 1;
}
#main-content .two-col-grid .col p {
  font-family: "Onest", sans-serif;
}
#main-content .one-col p {
  font-family: "Onest", sans-serif;
}

div#text-content {
  background: black;
  padding: 3rem;
}

div#text-content * {
  color: white;
}

.two-col-grid.align-c.alternative-layout {
  gap: 0;
}

#main-content .two-col-grid .col a {
  color: #FFF;
  width: auto;
  float: right;
  font-family: "Amatic SC", helvetica, arial, sans-serif;
  font-weight: bold;
  font-size: 40px;
  padding-right: 90px;
  background: url(https://www.privyimp.co.uk/wp-content/uploads/2025/10/more.png) center right no-repeat;
  background-size: auto 45%;
  text-decoration: none;
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
.wrapper .wrapper-inner {
  padding-left: 30px;
  padding-right: 30px;
}

/***  HERO WRAPPER ***/
.hero-wrapper {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.hero-wrapper .wrapper-inner {
  padding-left: 0;
  padding-right: 0;
}

/***  WRAPPER WIDE ***/
.wrapper.wide {
  max-width: 1700px;
}
.wrapper.wide .wrapper-inner {
  padding-left: 2rem;
  padding-right: 2rem;
}

/***  WRAPPER FULL ***/
.wrapper.full {
  max-width: unset;
}
.wrapper.full .wrapper-inner {
  padding-left: 0;
  padding-right: 0;
}

.wrapper-header {
  max-width: 1400px;
  margin: 0 auto;
}
.wrapper-header .wrapper-inner {
  padding-left: 30px;
  padding-right: 30px;
}

.narrow-content {
  max-width: 800px;
  margin: 0 auto;
}

.gap-s {
  padding-top: 1rem;
}

.gap-b-s {
  padding-bottom: 1rem;
}

.gap {
  padding-top: 7rem;
}

.gap-b {
  padding-bottom: 7rem;
}

.gap-l {
  padding-top: 10rem;
}

.gap-b-l {
  padding-bottom: 10rem;
}

.white-text h1, .white-text h2, .white-text h3, .white-text h4, .white-text h5, .white-text h6, .white-text p, .white-text a, .white-text strong, .white-text span {
  color: #FFFFFF;
}

.white-bg h1, .white-bg h2, .white-bg h3, .white-bg h4, .white-bg h5, .white-bg h6, .white-bg p, .white-bg a, .white-bg strong, .white-bg span {
  color: #000000;
}

.dark-bg {
  background-color: #000000;
}
.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6, .dark-bg p, .dark-bg a, .dark-bg strong, .dark-bg span, .dark-bg li {
  color: #FFFFFF;
}
.dark-bg hr {
  border-color: rgba(54, 165, 141, 0.2);
  margin-bottom: 30px;
  border-width: 0.5px;
}

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

/****************************************************
****** COLUMNS  ******************************
****************************************************/
/***  ONE COLUMN  ***/
.one-col {
  max-width: 1200px;
  margin: 0 auto;
}
.one-col.narrow {
  max-width: 900px;
}

/***  TWO COLUMN GRID  ***/
.two-col-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
}
.two-col-grid.left-third {
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  grid-gap: 5rem;
}
.two-col-grid.right-third {
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  grid-gap: 5rem;
}
.two-col-grid :first-child {
  -ms-grid-column: 1;
}
.two-col-grid :last-child {
  -ms-grid-column: 2;
}

/***  TWO COLUMN FLEX  ***/
.two-col-flex {
  display: flex;
  grid-gap: 2%;
  flex-wrap: wrap;
}
.two-col-flex .col {
  width: 49%;
}

/***  THREE COLUMN GRID  ***/
.three-col-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 3rem;
}
.three-col-grid :first-child {
  -ms-grid-column: 1;
}
.three-col-grid :nth-child(2) {
  -ms-grid-column: 2;
}
.three-col-grid :last-child {
  -ms-grid-column: 3;
}

/***  THREE COLUMN FLEX  ***/
.three-col-flex {
  display: flex;
  grid-gap: 2%;
  flex-wrap: wrap;
}
.three-col-flex .col {
  width: 32%;
}

/***  FOUR COLUMN GRID  ***/
.four-col-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 2rem;
}
.four-col-grid :first-child {
  -ms-grid-column: 1;
}
.four-col-grid :nth-child(2) {
  -ms-grid-column: 2;
}
.four-col-grid :nth-child(3) {
  -ms-grid-column: 3;
}
.four-col-grid :last-child {
  -ms-grid-column: 4;
}

/***  FIVE COLUMN GRID  ***/
.five-col-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 2rem;
}
.five-col-grid :first-child {
  -ms-grid-column: 1;
}
.five-col-grid :nth-child(2) {
  -ms-grid-column: 2;
}
.five-col-grid :nth-child(3) {
  -ms-grid-column: 3;
}
.five-col-grid :nth-child(4) {
  -ms-grid-column: 4;
}
.five-col-grid :last-child {
  -ms-grid-column: 5;
}

/***  FOUR COLUMN FLEX  ***/
.four-col-flex {
  display: flex;
  grid-gap: 2%;
  flex-wrap: wrap;
}
.four-col-flex .col {
  width: 23%;
}

.col.center {
  display: flex;
  justify-content: center;
}

.align-c {
  align-items: center;
}

.align-b {
  align-items: flex-end;
}

/****************************************************
****** FONTS STYLES, & TYPOGRAPHY ***********
****************************************************/
h1.arrow, p.arrow {
  font-size: 40px;
  line-height: 40px;
  font-family: "Amatic SC", helvetica, arial, sans-serif;
  background: url(https://www.privyimp.co.uk/wp-content/uploads/2025/10/tail.jpg) center left no-repeat, url(https://www.privyimp.co.uk/wp-content/uploads/2025/10/head.jpg) center right no-repeat;
  padding: 0 100px 0 140px;
  background-size: auto 60%;
  width: auto;
  float: left;
  margin-bottom: 0;
}

h1 {
  color: #000000;
  font-weight: 800;
  font-size: 56px;
  line-height: 64px;
  margin-bottom: 1.5rem;
}

h2 {
  color: #000000;
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 1.5rem;
}

h3 {
  color: #000000;
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 1.5rem;
}

h4 {
  color: #000000;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 1.5rem;
}

h5 {
  color: #000000;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

h6 {
  color: #000000;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 1.5rem;
}

p {
  color: #16181D;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  margin: 0 auto 20px;
}

p.large {
  color: #16181D;
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
  margin: 0 auto 20px;
}

strong {
  font-weight: 700;
  color: #000000;
}

a {
  text-decoration: none;
  color: #000000;
}

blockquote p {
  font-size: 22px;
  font-style: italic;
  line-height: 36px;
  margin-bottom: 20px !important;
}
blockquote p:last-child {
  margin-bottom: 0;
}

.blue-hue {
  color: #1FB6D4 !important;
}

div#main-content ul,
div#main-content ol {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
div#main-content ul li,
div#main-content ol li {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  padding: 3px 0;
}
div#main-content ul li::marker,
div#main-content ol li::marker {
  color: #1FB6D4;
}
div#main-content ul li strong,
div#main-content ol li strong {
  font-weight: 500;
  color: #1FB6D4;
}

ul.nothing {
  margin: 0 !important;
  list-style-type: none !important;
  padding: 0 !important;
}

ul.lined {
  border: 5px solid rgba(255, 255, 255, 0.0705882353);
  border-bottom: 5px solid rgba(38, 50, 79, 0.0705882353);
  padding: 2rem 3rem !important;
  margin-top: 5px !important;
  transition: all ease-in-out 0.4s;
}
ul.lined h4 {
  margin-bottom: 10px;
}
ul.lined p:last-child {
  margin-bottom: 0;
}
ul.lined:hover {
  border: 5px solid rgba(38, 50, 79, 0.0705882353);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.0901960784);
  border-radius: 0 50px !important;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 46px;
    line-height: 54px;
    margin-bottom: 1.5rem;
  }
  h2 {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 1.5rem;
  }
  h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 1.5rem;
  }
  h4 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 1.5rem;
  }
  h5 {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 1.5rem;
  }
  h6 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 1.5rem;
  }
  p {
    font-size: 16px;
    line-height: 28px;
    margin: 0 auto 20px;
  }
  div#main-content ul,
  div#main-content ol {
    padding-left: 20px;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
  }
  div#main-content ul li,
  div#main-content ol li {
    font-size: 16px;
    line-height: 28px;
    padding: 3px 0;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 1.5rem;
  }
  h2 {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 1.5rem;
  }
}
/****************************************************
****** BUTTONS *************************************
****************************************************/
.btn {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  padding: 1rem 3rem;
  text-align: center;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
  gap: 10px; /* Space between text and arrow */
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  /* Ensure text stays above pseudo element */
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  z-index: 1;
  transition: width 0.4s ease;
}
.btn span {
  position: relative;
  z-index: 2;
  color: inherit;
}
.btn:hover {
  color: #0e3a56;
}
.btn:hover::before {
  width: 100%;
}

.btn.bright {
  border: 2px solid #1FB6D4;
  color: #1FB6D4;
}
.btn.bright::before {
  background: #1FB6D4;
}
.btn.bright:hover {
  color: #ffffff;
}

.btn.dark {
  border: 2px solid #000000;
  color: #000000;
}
.btn.dark::before {
  background: #000000;
}
.btn.dark:hover {
  color: #ffffff;
}

.background-animation {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  background-color: #000000;
}
.background-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  z-index: 1;
  transition: width 0.4s ease;
}
.background-animation span {
  position: relative;
  z-index: 2;
  color: inherit;
}
.background-animation:hover {
  color: #FFFFFF;
  background-color: #1FB6D4;
}
.background-animation:hover::before {
  width: 100%;
}

/****************************************************
****** HEADER  ******************************
****************************************************/
header {
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1215686275);
  position: relative;
  z-index: 101;
  border-bottom: 5px solid #efefef;
  background-color: #FFF;
}
header .navigation .wrapper-header .wrapper-inner .n-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-logo svg {
  width: 200px;
  height: auto;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-nav .main-navigation {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: flex-end;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact .telephone {
  background-color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 8px;
  color: #000000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact .telephone svg path {
  fill: #000000;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact .telephone:hover {
  background-color: #1FB6D4;
}

/* Submenu Dropdown */
.main-navigation li {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.1607843137);
  padding-right: 20px;
  margin-right: 20px;
}
.main-navigation li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.main-navigation li a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.main-navigation li a:hover {
  color: #1FB6D4;
}
.main-navigation li > ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  min-width: 350px;
  border-radius: 0;
}
.main-navigation li > ul li {
  position: relative;
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1rem;
}
.main-navigation li > ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.main-navigation li > ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000000;
}
.main-navigation li > ul li a:after {
  content: "";
  width: 18px; /* Adjust size */
  height: 12px;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93.162 61.291'%3E%3Cpath d='M226.734 39.422l25.774 25.556.215.2a4.939 4.939 0 0 1 1.439 3.316l0 .448A4.857 4.857 0 0 1 252.9 71.91l-.3.31L226.734 97.869a4.917 4.917 0 0 1-6.918 0 4.867 4.867 0 0 1 0-6.918L237.673 73.24l-71.771 0a4.881 4.881 0 1 1 0-9.763l71.2 0L219.816 46.34a4.867 4.867 0 0 1 0-6.918 4.917 4.917 0 0 1 6.918 0Z' transform='translate(-161 -38)' fill='%23122C42'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.main-navigation li > ul li a:hover {
  color: #1FB6D4;
}
.main-navigation li > ul li a:hover:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93.162 61.291'%3E%3Cpath d='M226.734 39.422l25.774 25.556.215.2a4.939 4.939 0 0 1 1.439 3.316l0 .448A4.857 4.857 0 0 1 252.9 71.91l-.3.31L226.734 97.869a4.917 4.917 0 0 1-6.918 0 4.867 4.867 0 0 1 0-6.918L237.673 73.24l-71.771 0a4.881 4.881 0 1 1 0-9.763l71.2 0L219.816 46.34a4.867 4.867 0 0 1 0-6.918 4.917 4.917 0 0 1 6.918 0Z' transform='translate(-161 -38)' fill='%231FB6D4'/%3E%3C/svg%3E") no-repeat center;
}
.main-navigation li:hover > ul {
  opacity: 1;
  display: block;
}

.menu-item-has-children > a:after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  margin-left: 0;
  vertical-align: middle;
}
.menu-item-has-children > a:hover:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%231FB6D4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
}

/* Mobile Flyout Styles */
.nbar-tog {
  border-radius: 8px;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  margin-right: 30px;
}
.nbar-tog #nav-button {
  display: block;
  width: 40px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 4px;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease-out;
}
.hamburger-line:nth-child(1) {
  top: 0;
}
.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 85%;
}
.hamburger-line:nth-child(3) {
  bottom: 0;
}

.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}
.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}

.closed#nav-button:hover .hamburger-line:nth-child(1) {
  transform: rotate(15deg) translate(0px, 0px);
}
.closed#nav-button:hover .hamburger-line:nth-child(3) {
  transform: rotate(-15deg) translate(0px, 0px);
}

/* Sticky Area Styling */
.flyout {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: -100%; /* Start hidden above the top */
  background-color: #000000;
  overflow-x: hidden;
  padding-top: 10rem;
  transition: top 0.2s; /* Animate the top property */
}

.mobile-menu .submenu-open > a:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23FFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
  transform: rotate(180deg);
}

.mobile-menu .menu-item-has-children > a:hover:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23FFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
}

.flyout .flyout-contact {
  margin-top: 2rem;
  padding-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1607843137);
}
.flyout .flyout-contact .flyout-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.flyout .flyout-contact .flyout-contact-item span {
  display: inline-block;
  min-width: 150px;
}
.flyout .flyout-contact .flyout-contact-item a {
  background-color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 8px;
  color: #000000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.flyout .flyout-contact .flyout-contact-item a svg path {
  fill: #000000;
}
.flyout .flyout-contact .flyout-contact-item a:hover {
  background-color: #1FB6D4;
  color: #FFFFFF;
}
.flyout .flyout-contact .flyout-contact-item a:hover svg path {
  fill: #FFFFFF;
}

/* Sticky Menu Styling */
header.nav-header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 101;
}
header.nav-header.sticky .email {
  display: none !important;
}
header.nav-header.sticky .navigation .wrapper-header .wrapper-inner .n-bar {
  padding: 15px 0;
}
header.nav-header.sticky .navigation .wrapper-header .wrapper-inner .n-bar .n-logo svg {
  width: 180px;
  height: auto;
}
header.nav-header.sticky .navigation .wrapper-header .wrapper-inner .n-bar .n-content {
  flex-direction: row-reverse;
  align-items: center;
}

/****************************************************
****** MULTI COLUMNS  ******************************
****************************************************/
.text-image .two-col-grid .col:first-child {
  order: 2;
}
.text-image .two-col-grid .col:last-child {
  order: 1;
}

.two-col-grid.image-grid .col,
.three-col-grid.image-grid .col,
.four-col-grid.image-grid .col,
.five-col-grid.image-grid .col {
  background: #FFFFFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.two-col-grid.image-grid .col:hover,
.three-col-grid.image-grid .col:hover,
.four-col-grid.image-grid .col:hover,
.five-col-grid.image-grid .col:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.4s ease;
}
.two-col-grid.image-grid .col:hover .column-image,
.three-col-grid.image-grid .col:hover .column-image,
.four-col-grid.image-grid .col:hover .column-image,
.five-col-grid.image-grid .col:hover .column-image {
  transform: scale(1.1);
}
.two-col-grid.image-grid .col:hover .column-heading a,
.three-col-grid.image-grid .col:hover .column-heading a,
.four-col-grid.image-grid .col:hover .column-heading a,
.five-col-grid.image-grid .col:hover .column-heading a {
  color: #1FB6D4;
}
.two-col-grid.image-grid .col:hover .link-icon-overlay,
.three-col-grid.image-grid .col:hover .link-icon-overlay,
.four-col-grid.image-grid .col:hover .link-icon-overlay,
.five-col-grid.image-grid .col:hover .link-icon-overlay {
  background-color: #1FB6D4 !important;
}
.two-col-grid.image-grid .col .column-link,
.three-col-grid.image-grid .col .column-link,
.four-col-grid.image-grid .col .column-link,
.five-col-grid.image-grid .col .column-link {
  position: relative;
}
.two-col-grid.image-grid .col .column-link picture,
.three-col-grid.image-grid .col .column-link picture,
.four-col-grid.image-grid .col .column-link picture,
.five-col-grid.image-grid .col .column-link picture {
  display: flex;
  margin-bottom: 10px;
  overflow: hidden;
}
.two-col-grid.image-grid .col .column-link picture .column-image,
.three-col-grid.image-grid .col .column-link picture .column-image,
.four-col-grid.image-grid .col .column-link picture .column-image,
.five-col-grid.image-grid .col .column-link picture .column-image {
  transition: transform 0.4s ease;
}
.two-col-grid.image-grid .col .column-link .link-icon-overlay,
.three-col-grid.image-grid .col .column-link .link-icon-overlay,
.four-col-grid.image-grid .col .column-link .link-icon-overlay,
.five-col-grid.image-grid .col .column-link .link-icon-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #014167;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.two-col-grid.image-grid .col .column-link .link-icon-overlay svg,
.three-col-grid.image-grid .col .column-link .link-icon-overlay svg,
.four-col-grid.image-grid .col .column-link .link-icon-overlay svg,
.five-col-grid.image-grid .col .column-link .link-icon-overlay svg {
  width: 20px;
  height: auto;
  fill: white;
}
.two-col-grid.image-grid .col .column-content,
.three-col-grid.image-grid .col .column-content,
.four-col-grid.image-grid .col .column-content,
.five-col-grid.image-grid .col .column-content {
  padding: 1rem 2rem 2rem;
}
.two-col-grid.image-grid .col .column-content p:last-child,
.two-col-grid.image-grid .col .column-content ul:last-child,
.three-col-grid.image-grid .col .column-content p:last-child,
.three-col-grid.image-grid .col .column-content ul:last-child,
.four-col-grid.image-grid .col .column-content p:last-child,
.four-col-grid.image-grid .col .column-content ul:last-child,
.five-col-grid.image-grid .col .column-content p:last-child,
.five-col-grid.image-grid .col .column-content ul:last-child {
  margin-bottom: 0 !important;
}
.two-col-grid.image-grid .col picture,
.three-col-grid.image-grid .col picture,
.four-col-grid.image-grid .col picture,
.five-col-grid.image-grid .col picture {
  overflow: hidden;
}
.two-col-grid.image-grid .col picture .column-image,
.three-col-grid.image-grid .col picture .column-image,
.four-col-grid.image-grid .col picture .column-image,
.five-col-grid.image-grid .col picture .column-image {
  transition: transform 0.4s ease;
}
.two-col-grid.icon-grid .link-icon-overlay,
.three-col-grid.icon-grid .link-icon-overlay,
.four-col-grid.icon-grid .link-icon-overlay,
.five-col-grid.icon-grid .link-icon-overlay {
  display: none;
}
.two-col-grid.icon-grid .col.text-left,
.three-col-grid.icon-grid .col.text-left,
.four-col-grid.icon-grid .col.text-left,
.five-col-grid.icon-grid .col.text-left {
  text-align: left;
}
.two-col-grid.icon-grid .col.text-center,
.three-col-grid.icon-grid .col.text-center,
.four-col-grid.icon-grid .col.text-center,
.five-col-grid.icon-grid .col.text-center {
  text-align: center;
}
.two-col-grid.icon-grid .col .column-image,
.three-col-grid.icon-grid .col .column-image,
.four-col-grid.icon-grid .col .column-image,
.five-col-grid.icon-grid .col .column-image {
  margin-bottom: 20px;
  width: auto;
  height: 46px;
  transition: transform 0.4s ease;
}
.two-col-grid.icon-grid .col:hover .column-content h3 a,
.three-col-grid.icon-grid .col:hover .column-content h3 a,
.four-col-grid.icon-grid .col:hover .column-content h3 a,
.five-col-grid.icon-grid .col:hover .column-content h3 a {
  color: #1FB6D4;
}
.two-col-grid.icon-grid .col .column-content,
.three-col-grid.icon-grid .col .column-content,
.four-col-grid.icon-grid .col .column-content,
.five-col-grid.icon-grid .col .column-content {
  padding: 0;
}
.two-col-grid.icon-grid .col .column-content h3,
.three-col-grid.icon-grid .col .column-content h3,
.four-col-grid.icon-grid .col .column-content h3,
.five-col-grid.icon-grid .col .column-content h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 28px;
}
.two-col-grid.icon-grid .col .column-content p,
.three-col-grid.icon-grid .col .column-content p,
.four-col-grid.icon-grid .col .column-content p,
.five-col-grid.icon-grid .col .column-content p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 26px;
}
.two-col-grid.image-grid.image-h-small .col .column-image,
.three-col-grid.image-grid.image-h-small .col .column-image,
.four-col-grid.image-grid.image-h-small .col .column-image,
.five-col-grid.image-grid.image-h-small .col .column-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.two-col-grid.image-grid.image-h-med .col .column-image,
.three-col-grid.image-grid.image-h-med .col .column-image,
.four-col-grid.image-grid.image-h-med .col .column-image,
.five-col-grid.image-grid.image-h-med .col .column-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.two-col-grid.image-grid.image-h-large .col .column-image,
.three-col-grid.image-grid.image-h-large .col .column-image,
.four-col-grid.image-grid.image-h-large .col .column-image,
.five-col-grid.image-grid.image-h-large .col .column-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.grey-bg {
  background-color: #F7F7F7;
}

.column-icon-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.column-icon-wrapper .icon {
  text-align: center;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  padding: 2rem;
}
.column-icon-wrapper .icon img {
  margin-bottom: 10px;
  width: 90px;
  height: auto;
}
.column-icon-wrapper .icon p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 28px;
}

/****************************************************
****** CONTACT CTA ROW  ******************************
****************************************************/
.contact-cta .cta-tel {
  display: block;
  font-size: 26px;
  line-height: 26px;
  margin-bottom: 2rem;
  color: #1FB6D4;
}
.contact-cta .cta-tel:hover {
  color: #d42167;
}

/****************************************************
****** CARDS  ******************************
****************************************************/
.cards .card {
  position: relative;
  border-radius: 8px;
  display: flex;
  overflow: hidden;
}
.cards .card a {
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  width: 100%;
}
.cards .card a .card-image {
  border-radius: 8px;
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.4s ease;
  overflow: hidden;
  display: flex;
}
.cards .card a .card-content {
  position: absolute;
  left: 17px;
  bottom: 20px;
  background-color: #000000;
  padding: 1.5rem;
  border-radius: 8px;
}
.cards .card a .card-content h3 {
  color: #FFFFFF;
  margin: 0;
  z-index: 1;
  position: relative;
}
.cards .card a .card-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #1FB6D4;
  z-index: 1;
  transition: width 0.4s ease;
  border-radius: 8px;
}
.cards .card a:hover {
  color: #FFFFFF;
}
.cards .card a:hover span {
  position: relative;
  z-index: 2;
  color: inherit;
}
.cards .card a:hover .card-content::before {
  width: 100%;
}
.cards .card a:hover .card-image {
  transform: scale(1.05);
  overflow: hidden;
}
.cards .card a:hover .card-content h3 {
  color: #FFFFFF;
}

/****************************************************
****** HERO AREAS ******************************
****************************************************/
.hero-area-two-column .hero-wrapper .wrapper-inner {
  padding: 0;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex {
  align-items: center;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-content {
  max-width: 650px;
  margin-left: auto;
  padding: 6rem 0 6rem 30px;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image {
  align-self: stretch;
  position: relative;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image picture img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  max-height: 800px;
  max-width: 1200px;
  display: flex;
  object-position: center;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image .google-badge-overlay {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image .google-badge-overlay .wpsr-reviews-badge-html.wpsr-default {
  margin-bottom: 0;
}

.hero-area-full {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 600px;
  position: relative;
}
.hero-area-full .wrapper {
  min-height: 600px;
}
.hero-area-full .wrapper .wrapper-inner {
  position: absolute;
  bottom: 0;
}
.hero-area-full .wrapper .wrapper-inner .hero-float-box {
  position: relative;
}
.hero-area-full .wrapper .wrapper-inner .hero-float-box .hero-float-box-inner {
  max-width: 600px;
  background-color: rgba(247, 247, 247, 0.9);
  padding: 3rem 3rem 2rem;
}

/****************************************************
****** ACCORDION ******************************
****************************************************/
.accordion-wrapper .accordion-item {
  margin-top: 1rem;
  border-top: 1px solid rgba(1, 66, 103, 0.1058823529);
  padding-top: 1rem;
}
.accordion-wrapper .accordion-item:last-child {
  border-bottom: 1px solid rgba(1, 66, 103, 0.1058823529);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.accordion-wrapper .accordion-item .accordion-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 5px 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  transition: background 0.3s ease;
  position: relative;
  font-family: "Amatic SC", sans-serif;
  color: #000000;
}
.accordion-wrapper .accordion-item .accordion-toggle .accordion-icon {
  transition: transform 0.3s ease;
}
.accordion-wrapper .accordion-item .accordion-toggle .accordion-icon::before {
  content: "+";
  font-size: 2rem;
  line-height: 28px;
}
.accordion-wrapper .accordion-item .accordion-toggle.open .accordion-icon {
  transform: rotate(45deg);
}
.accordion-wrapper .accordion-item .accordion-toggle:hover {
  color: #1FB6D4;
}
.accordion-wrapper .accordion-item .accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  padding: 0;
}
.accordion-wrapper .accordion-item .accordion-content p {
  font-size: 16px;
  line-height: 28px;
}
.accordion-wrapper .accordion-item .accordion-content.open {
  padding-top: 0.5rem;
}

/****************************************************
****** TABS ******************************
****************************************************/
.tabs .tab-buttons {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: center;
  justify-content: center;
}
.tabs .tab-buttons .tab-button {
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  font-family: "Amatic SC", sans-serif;
}
.tabs .tab-buttons .tab-button.active {
  color: #1FB6D4;
}
.tabs .tab-buttons .tab-button.active::after {
  content: "";
  display: block;
  height: 3px;
  background: #1FB6D4;
  width: 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.tabs .tab-buttons .tab-button:hover {
  color: #1FB6D4;
}
.tabs .tab-contents .tab-content {
  display: none;
}
.tabs .tab-contents .tab-content.active {
  display: block;
}
.tabs .tab-contents .tab-content .two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.tabs .tab-contents .tab-content .two-col-grid .col p {
  margin-bottom: 1rem;
}
.tabs .tab-contents .tab-content .two-col-grid .col img {
  max-width: 100%;
  border-radius: 8px;
  background: #f2f2f2;
  aspect-ratio: 16/11;
  object-fit: cover;
}

/****************************************************
****** FLICKITY ******************************
****************************************************/
/****************************************************
****** BLOG  ******************************
****************************************************/
.blog-post-grid {
  margin-bottom: 3rem;
}

ul.pager {
  list-style-type: none !important;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
}
ul.pager li a {
  background: #f0f0f0;
  padding: 5px 15px;
}

/****************************************************
****** FOOTER  ******************************
****************************************************/
footer {
  position: relative;
  border-top: 5px solid #efefef;
  background-color: #FFF;
}
footer .footer-email {
  font-size: 40px !important;
  line-height: 40px !important;
  float: right;
}
footer .footer-row-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 4rem;
  z-index: 2;
  position: relative;
}
footer .footer-row-grid .col.footer-main {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 4rem;
}
footer .footer-row-grid .three-col-grid .col {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 4rem;
}
footer .footer-row-grid .three-col-grid .col:last-child {
  border-right: none;
  padding-right: 0;
}
footer ul.menu li {
  padding: 5px 0 !important;
}
footer ul.menu li a {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  text-transform: uppercase;
  padding: 2px 0;
  display: inline-block;
}
footer ul.menu li a:hover {
  color: #1FB6D4;
  font-weight: 300;
}
footer p, footer span, footer a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
}
footer h6 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}
footer .bottom-bar {
  padding: 2rem 0;
}
footer .bottom-bar p, footer .bottom-bar li, footer .bottom-bar span, footer .bottom-bar a {
  font-size: 22px;
  line-height: 26px;
  opacity: 1;
  margin-bottom: 0;
}
footer .bottom-bar a {
  font-weight: 700;
}
footer .bottom-bar div#text-col {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
footer .bottom-bar div#text-col ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-contact {
  margin-bottom: 2rem;
}
.footer-contact .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.footer-contact .footer-contact-item span {
  display: inline-block;
  min-width: 150px;
}
.footer-contact .footer-contact-item a {
  background-color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 8px;
  color: #000000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.footer-contact .footer-contact-item a svg path {
  fill: #000000;
}
.footer-contact .footer-contact-item a:hover {
  background-color: #1FB6D4;
  color: #FFFFFF;
}
.footer-contact .footer-contact-item a:hover svg path {
  fill: #FFFFFF;
}

/****************************************************
****** MEDIA QUERIES ******************************
****************************************************/
/** IE11/10 **/
/*** MIN WIDTH 1200PX ***/
/*** MAX WIDTH 1199PX ***/
/*** MAX WIDTH 1199PX ***/
@media screen and (max-width: 991px) {
  h1.arrow, p.arrow {
    font-size: 34px;
    line-height: 34px;
    padding: 0 80px 0 110px;
    background-size: auto 60%;
  }
  .hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-content {
    width: 100%;
    max-width: unset;
    order: 2;
    padding: 3rem 30px 3rem 30px;
  }
  .hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image {
    width: 100%;
  }
  .hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image picture img {
    max-height: 400px;
  }
  .hide-tablet,
  header .n-bar .n-contact .email,
  header .n-bar .n-contact .telephone {
    display: none !important;
  }
  footer .footer-row-grid {
    text-align: center;
    grid-template-columns: 1fr;
  }
  footer .footer-row-grid .col {
    border: none;
    padding: 0;
  }
  footer .contact-details div a {
    justify-content: center;
  }
  .wrapper .wrapper-inner, .hero-wrapper .wrapper-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
  .nbar-tog {
    display: none;
  }
  .n-nav {
    display: none !important;
  }
  .four-col-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3rem;
  }
  .three-col-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .two-col-grid,
  .tabs .tab-contents .tab-content .two-col-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
  }
}
@media screen and (max-width: 575px) {
  .three-col-grid,
  .four-col-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 3rem;
  }
  h1.arrow, p.arrow {
    font-size: 24px;
    line-height: 24px;
    padding: 0 40px 0 56px;
    background-size: auto 42%;
  }
}
/*** MAX WIDTH 460PX ***/

/*# sourceMappingURL=main.css.map */
