/*
Theme Name: XT Grid Theme
Author: Xtensive Web Design
Author URI: https://www.xtensive.co.uk
Description: A base theme built with CSS Grid
Version: 1.0
*/
/* Breakpoints */
/* Colors */
h1,
h2,
h3,
h4 {
  color: #000;
  padding: 0;
  margin: 0 0 1rem 0;
  font-family: "zuume", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  font-size: 1rem;
  color: #000;
  padding: 0;
  margin: 0 0 1rem 0;
}

a {
  font-size: 1rem;
  color: #000;
  text-decoration-color: transparent;
  transition: 0.3s;
}
a:hover, a:focus {
  color: #CD162D;
}

ul {
  padding: 0 0 0 1.5rem;
}

li {
  padding: 0;
  margin: 0;
  line-height: 1.5rem;
}

.wp-block-media-text {
  margin: 0 0 4rem 0;
}
.wp-block-media-text .wp-block-media-text__content {
  margin: 2rem 0 0 0;
  padding: 0;
}
@media (min-width: 850px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding: 4rem 0 4rem 1rem;
    margin: 0;
  }
}
.wp-block-media-text .wp-block-media-text__media {
  position: relative;
  border-radius: 10px;
}
@media (min-width: 850px) {
  .wp-block-media-text .wp-block-media-text__media {
    margin: 0 1rem 0 0;
  }
}
.wp-block-media-text .wp-block-media-text__media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
@media (min-width: 850px) {
  .wp-block-media-text .wp-block-media-text__media img {
    height: 100%;
  }
}

@media (min-width: 850px) {
  .has-media-on-the-right .wp-block-media-text__content {
    padding: 4rem 1rem 4rem 0;
  }
}
.has-media-on-the-right .wp-block-media-text__media {
  position: relative;
  border-radius: 10px;
}
@media (min-width: 850px) {
  .has-media-on-the-right .wp-block-media-text__media {
    margin: 0 0 0 1rem;
  }
}
.has-media-on-the-right .wp-block-media-text__media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (min-width: 850px) {
  .has-media-on-the-right .wp-block-media-text__media img {
    height: 100%;
  }
}

@media (max-width: 850px) {
  .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 100% !important;
  }
}
@media (max-width: 850px) {
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
  }
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 2;
  }
}
.wp-block-columns {
  gap: 0;
  margin: 0;
}
@media (min-width: 850px) {
  .wp-block-columns {
    gap: 2rem;
  }
}
.wp-block-columns .wp-block-column ul {
  margin: 0;
}
@media (min-width: 850px) {
  .wp-block-columns .wp-block-column ul {
    margin: 1rem 0;
  }
}

.introduction {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem;
  padding: 4rem 2rem 2rem 2rem;
  width: 100%;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards;
}
@media (min-width: 850px) {
  .introduction {
    width: 80%;
  }
}

.stats {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
}
.stats .stat-box {
  width: 100%;
  height: 350px;
  margin: 0 0 4rem 0;
  position: relative;
  clip-path: inset(0 0 0 -40px);
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.2s;
}
@media (min-width: 850px) {
  .stats .stat-box {
    width: calc((100% - 4rem) / 2);
    margin: 0 4rem 0 0;
    height: 400px;
  }
}
.stats .stat-box:last-child {
  margin: 0;
}
.stats .stat-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.stats .stat-box .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 10px;
}
.stats .stat-box .overlay .ribbon {
  position: relative;
  background: #fff;
  padding: 0.5rem 3rem 0.25rem 3rem;
  border: 2px solid #CD162D;
  margin: 0 0 0 -2rem;
}
.stats .stat-box .overlay .ribbon h2 {
  margin: 0;
}
.stats .stat-box .overlay .ribbon:after {
  content: "";
  position: absolute;
  background: #CD162D;
  width: 2px;
  height: 25px;
  top: -23px;
  left: 7px;
  transform: rotate(45deg);
  z-index: -1;
}
.stats .stat-box .overlay .links {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 575px) {
  .stats .stat-box .overlay .links {
    flex-direction: row;
  }
}
@media (min-width: 850px) {
  .stats .stat-box .overlay .links {
    flex-direction: row;
  }
}
.stats .stat-box .overlay .links .btn-white {
  width: 100%;
  margin: 0 0 1rem 0;
  text-align: center;
}
@media (min-width: 576px) {
  .stats .stat-box .overlay .links .btn-white {
    width: 50%;
    margin: 0 1rem 0 0;
  }
}
.stats .stat-box .overlay .links .btn-white:last-child {
  margin: 0;
}
.stats .stat-box:hover .overlay .links, .stats .stat-box:focus .overlay .links {
  transform: translateY(0);
  transition: 0.3s;
}

.home-teams-wrap {
  background: #230D55;
  margin: 2rem 0;
}
@media (min-width: 850px) {
  .home-teams-wrap {
    position: relative;
  }
}
.home-teams-wrap .home-teams {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 850px) {
  .home-teams-wrap .home-teams {
    width: 100%;
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 2rem;
    padding: 0 2rem;
    flex-direction: row;
  }
}
.home-teams-wrap .home-teams .home-teams-content {
  width: 100%;
  padding: 2rem;
}
@media (min-width: 850px) {
  .home-teams-wrap .home-teams .home-teams-content {
    width: 30%;
    padding: 6rem 3rem 6rem 0;
  }
}
@media (min-width: 2600px) {
  .home-teams-wrap .home-teams .home-teams-content {
    width: 40%;
  }
}
.home-teams-wrap .home-teams .home-teams-content h2 {
  color: #fff;
  letter-spacing: 1px;
}
@media (min-width: 850px) {
  .home-teams-wrap .home-teams .home-teams-content h2 {
    padding: 0;
  }
}
.home-teams-wrap .home-teams .home-teams-content p {
  color: #fff;
}
.home-teams-wrap .home-teams-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}
@media (min-width: 850px) {
  .home-teams-wrap .home-teams-image {
    width: 60%;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media (min-width: 2600px) {
  .home-teams-wrap .home-teams-image {
    width: 100%;
    position: static;
  }
}
.home-teams-wrap .home-teams-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-news-section {
  position: relative;
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem;
}
.home-news-section .home-news-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.home-news-section .home-news-header h2 {
  margin: 0;
  text-align: center;
}
@media (min-width: 850px) {
  .home-news-section .home-news-header h2 {
    text-align: left;
  }
}
.home-news-section .home-news-header p {
  margin: 0;
}
.home-news-section .home-news-header .new-header-link {
  display: block;
}
.home-news-section .home-news-header .new-header-link a {
  padding: 0 0 -2px 0;
  border-bottom: 1px solid #000;
}
.home-news-section .home-news-main {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 0 0 0;
  display: flex;
  flex-direction: row;
}
.home-news-section .home-news-main:last-child {
  margin: 0;
}
.home-news-section .home-news-main .slick-list {
  height: 390px;
}
.home-news-section .home-news-main .excerpt-card {
  width: 100%;
  margin: 0 1rem 0 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  overflow: hidden;
}
.home-news-section .home-news-main .excerpt-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.home-news-section .home-news-main .excerpt-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.home-news-section .home-news-main .excerpt-card .news-content {
  padding: 2rem;
}
.home-news-section .home-news-main .excerpt-card .news-content h3 {
  margin: 0;
  text-transform: uppercase;
}
.home-news-section .home-news-main .excerpt-card .news-content .iconify {
  width: 40px;
  height: 40px;
  color: #230D55;
  transition: 0.3s;
}
.home-news-section .slick-dots-news {
  position: absolute;
  display: flex;
  justify-content: center;
  margin: 0;
  list-style-type: none;
  bottom: -1rem;
  right: 0;
  left: 0;
  padding: 0;
}
.home-news-section .slick-dots-news ul {
  display: flex;
  flex-direction: row;
  padding: 0;
}
.home-news-section .slick-dots-news ul li {
  margin: 0 0.1rem;
  list-style-type: none;
}
.home-news-section .slick-dots-news ul button {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border: 1px solid #230D55;
  background: #fff;
  border-radius: 50%;
  text-indent: -9999px;
  cursor: pointer;
  transition: 0.3s;
}
.home-news-section .slick-dots-news ul button:hover, .home-news-section .slick-dots-news ul button:focus {
  background: #230D55;
  border: none;
}
.home-news-section .slick-dots-news ul li.slick-active button {
  background: #230D55;
  border: none;
}

.shop-wrap {
  background: linear-gradient(0deg, rgb(35, 13, 85) 24%, rgb(255, 255, 255) 64%), url("http://glenvale-afc.local/wp-content/uploads/2024/09/diamond-bg.png");
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  margin: 2rem 0;
}
@media (min-width: 850px) {
  .shop-wrap {
    background: linear-gradient(90deg, rgb(35, 13, 85) 24%, rgb(255, 255, 255) 64%), url("http://glenvale-afc.local/wp-content/uploads/2024/09/diamond-bg.png");
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    margin: 2rem 0;
  }
}
.shop-wrap .shop {
  display: flex;
  flex-direction: column-reverse;
  padding: 2rem;
}
@media (min-width: 850px) {
  .shop-wrap .shop {
    width: 100%;
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 2rem;
    flex-direction: row;
  }
}
.shop-wrap .shop .shop-content {
  width: 100%;
  padding: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 850px) {
  .shop-wrap .shop .shop-content {
    width: 30%;
    padding: 6rem 0 6rem 3rem;
    align-items: flex-start;
  }
}
@media (min-width: 2600px) {
  .shop-wrap .shop .shop-content {
    width: 40%;
  }
}
.shop-wrap .shop .shop-content h2 {
  letter-spacing: 1px;
}
@media (min-width: 850px) {
  .shop-wrap .shop .shop-content h2 {
    padding: 0;
  }
}
.shop-wrap .shop-images {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.shop-wrap .shop-images .kit-card {
  margin: 0 1rem 0 0;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  overflow: hidden;
}
.shop-wrap .shop-images .kit-card:nth-child(2) {
  display: none;
}
@media (min-width: 935px) {
  .shop-wrap .shop-images .kit-card:nth-child(2) {
    display: block;
  }
}
.shop-wrap .shop-images .kit-card:nth-child(3) {
  display: none;
}
@media (min-width: 850px) {
  .shop-wrap .shop-images .kit-card:nth-child(3) {
    display: block;
  }
}
.shop-wrap .shop-images .kit-card .kit-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}
.shop-wrap .shop-images .kit-card .kit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-wrap .shop-images .kit-card .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgb(0, 0, 0) 6%, rgba(255, 255, 255, 0) 100%);
  padding: 2rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.shop-wrap .shop-images .kit-card .overlay h3 {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 1px;
}

.instagram-feed {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}
@media (min-width: 850px) {
  .instagram-feed {
    text-align: left;
  }
}

.client-wrap {
  width: 100%;
}
.client-wrap .client {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem;
}
.client-wrap .client .client-logo {
  height: 100px;
  margin: 0 1rem;
}
.client-wrap .client .client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-layout {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 4rem 2rem 0 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.6s;
}
.team-layout .team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  margin: 0 0 2rem 0;
}
@media (min-width: 850px) {
  .team-layout .team {
    flex-direction: row;
  }
}
.team-layout .team.default-logo {
  align-items: center;
}
.team-layout .team .text {
  width: 100%;
}
@media (min-width: 850px) {
  .team-layout .team .text {
    width: 50%;
    padding: 2rem 0;
  }
}
.team-layout .team .team-image {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 850px) {
  .team-layout .team .team-image {
    width: 50%;
  }
}
.team-layout .team .team-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.team-layout .team .team-image-default {
  width: 100%;
  height: 250px;
}
@media (min-width: 850px) {
  .team-layout .team .team-image-default {
    width: 50%;
  }
}
.team-layout .team .team-image-default img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 850px) {
  .team-layout .team:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.sponsors-wrap {
  background: #f6f6f6;
  width: 100%;
}
.sponsors-wrap .sponsors {
  margin: 2rem auto;
  background: #f6f6f6;
  padding: 2rem 0;
  position: relative;
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem;
}
.sponsors-wrap .sponsors .sponsor-image {
  height: 150px;
}
.sponsors-wrap .sponsors .sponsor-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-box {
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column-reverse;
  background: #fff;
}
@media (min-width: 900px) {
  .contact-box {
    flex-direction: row;
  }
}
.contact-box .contact-form {
  width: 100%;
  padding: 2rem;
}
@media (min-width: 900px) {
  .contact-box .contact-form {
    width: 60%;
  }
}
.contact-box .contact-form h2 {
  margin: 0 0 1rem 0;
}
.contact-box .contact-form p {
  margin: 0 0 1rem 0;
}
.contact-box .contact-form p a {
  font-size: 1rem;
}
.contact-box .contact-form p a:hover, .contact-box .contact-form p a:focus {
  color: #f6f6f6;
}
.contact-box .contact-form .gfield_consent_label a {
  color: #230D55;
  text-decoration: none;
  font-size: 1rem;
}
.contact-box .contact-form .gfield_consent_label a:focus, .contact-box .contact-form .gfield_consent_label a:hover {
  color: #230D55;
}
.contact-box .contact-form .gform_footer.top_label {
  padding: 1rem 0 0 0;
}
.contact-box .contact-form .gform_wrapper.gravity-theme input[type=color],
.contact-box .contact-form .gform_wrapper.gravity-theme input[type=date],
.contact-box .contact-form .gform_wrapper.gravity-theme input[type=datetime-local],
.contact-box .contact-form .gform_wrapper.gravity-theme input[type=datetime],
.contact-box .contact-form .gform_wrapper.gravity-theme input[type=email],
.contact-box .contact-form .gform_wrapper.gravity-theme input[type=month],
.contact-box .contact-form .gform_wrapper.gravity-theme input[type=number],
.contact-box .contact-form .gform_wrapper.gravity-theme input[type=password],
.contact-box .contact-form .gform_wrapper.gravity-theme input[type=search],
.contact-box .contact-form .gform_wrapper.gravity-theme input[type=tel],
.contact-box .contact-form .gform_wrapper.gravity-theme input[type=text],
.contact-box .contact-form .gform_wrapper.gravity-theme input[type=time],
.contact-box .contact-form .gform_wrapper.gravity-theme input[type=url],
.contact-box .contact-form .gform_wrapper.gravity-theme input[type=week],
.contact-box .contact-form .gform_wrapper.gravity-theme select,
.contact-box .contact-form .gform_wrapper.gravity-theme textarea {
  background: #f6f6f6;
  border: 1px solid black;
}
.contact-box .contact-form .gform_required_legend {
  display: none;
}
.contact-box .contact-side-bar {
  width: 100%;
  padding: 2rem;
  background: #f6f6f6;
}
.contact-box .contact-side-bar p {
  margin: 2rem 0;
}
@media (min-width: 900px) {
  .contact-box .contact-side-bar {
    width: 40%;
  }
}
.contact-box .contact-side-bar .details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 2rem 0;
}
.contact-box .contact-side-bar .details .iconify {
  width: 10%;
  color: #230D55;
  font-size: 2rem;
}
.contact-box .contact-side-bar .details a,
.contact-box .contact-side-bar .details p {
  width: 80%;
  padding: 0 0 0 0.5rem;
  margin: 0;
}
.contact-box .contact-side-bar .details a:hover, .contact-box .contact-side-bar .details a:focus {
  color: #230D55;
}

.news-main {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 850px) {
  .news-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
.news-main .excerpt-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 576px) {
  .news-main .excerpt-card {
    flex-direction: row;
  }
}
.news-main .excerpt-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}
@media (min-width: 576px) {
  .news-main .excerpt-card .card-image {
    width: 30%;
  }
}
.news-main .excerpt-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.news-main .excerpt-card .news-content {
  padding: 1rem 0;
  width: 100%;
}
@media (min-width: 576px) {
  .news-main .excerpt-card .news-content {
    width: 70%;
  }
}
.news-main .excerpt-card .news-content h3 {
  padding: 0;
  margin: 0;
  color: #230D55;
  font-size: 1.3rem;
  text-transform: uppercase;
}
.news-main .excerpt-card .news-content p:last-of-type() {
  margin: 0;
}
.news-main .excerpt-card:hover .card-image img, .news-main .excerpt-card:focus .card-image img {
  transform: scale(1.1);
}

.pagination {
  text-align: center;
  padding: 0.5rem 1rem;
}
.pagination .nav-links .page-numbers {
  color: #fff;
  font-weight: 700;
  padding: 0.5rem 0.75rem 0.25rem 0.75rem;
  background: #230D55;
  color: #fff;
  border: 1px solid #230D55;
  cursor: pointer;
}
.pagination .nav-links .page-numbers::before {
  content: "";
  height: 0;
}
.pagination .nav-links .page-numbers:hover, .pagination .nav-links .page-numbers:focus {
  background: #fff;
  color: #230D55;
  border: 1px solid #230D55;
}
.pagination .nav-links .current {
  background: #fff;
  color: #230D55;
  border: 1px solid #230D55;
}

.error {
  width: 100%;
  background-repeat: no-repeat;
  background-image: url("/wp-content/uploads/2024/09/team-1-1500x1000.jpg");
  background-position: center center;
  background-size: cover;
}
.error .overlay {
  width: 100%;
  height: 70vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.error .content {
  text-align: center;
}
.error .content h1,
.error .content h2,
.error .content p {
  color: #fff;
}
.error .content .btn {
  margin: 1rem 0;
}

.blog-header {
  width: 100%;
  text-align: center;
  padding: 2rem;
  background: #230D55;
}
.blog-header h1,
.blog-header h3 {
  color: #fff;
}

.blog-main {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.25rem;
  padding: 2rem;
  max-width: 75rem;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .blog-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .blog-main {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 850px) {
  .blog-container {
    flex-direction: row;
  }
}
.blog-container .post-single {
  width: 100%;
}
@media (min-width: 850px) {
  .blog-container .post-single {
    width: 70%;
    margin: 0 2rem 0 0;
  }
}
.blog-container .post-single .attachment-post-thumbnail {
  width: 100%;
  height: auto;
  margin: 0 0 1rem 0;
  border-radius: 10px;
}
.blog-container .post-single .share-buttons {
  position: relative;
  text-align: center;
  list-style-type: none;
  padding: 0;
  display: flex;
  align-content: flex-start;
}
.blog-container .post-single .share-buttons a {
  width: 25px;
  height: 25px;
  margin: 0 1rem 0 0;
}
.blog-container .post-single .share-buttons a .iconify {
  font-size: 2rem;
  color: #230D55;
  transition: 0.3s;
}
.blog-container .post-single .share-buttons a:hover .iconify, .blog-container .post-single .share-buttons a:focus .iconify {
  font-size: 2.1rem;
}
.blog-container .side-bar {
  width: 100%;
  margin: 2rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 850px) {
  .blog-container .side-bar {
    width: 30%;
    position: sticky;
    top: 2rem;
    height: fit-content;
    margin: 0;
    padding: 0 0 1rem 0;
  }
}
.blog-container .side-bar .side-card .side-image {
  height: 150px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.blog-container .side-bar .side-card .side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.blog-container .side-bar .side-card .side-image .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border-radius: 10px;
}
.blog-container .side-bar .side-card .side-image .overlay h2 {
  color: #fff;
  margin: 0;
}
.blog-container .side-bar .side-card:hover .side-image img, .blog-container .side-bar .side-card:focus .side-image img {
  transform: scale(1.1);
}

.btn-red, #gform_submit_button_1 {
  display: inline-block;
  background: #CD162D;
  color: #fff;
  padding: 1rem 1rem 0.75rem 1rem;
  transition: 0.3s;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  font-weight: bold;
  letter-spacing: 1px;
  border: none;
}
.btn-red:hover, .btn-red:focus, #gform_submit_button_1:hover, #gform_submit_button_1:focus {
  color: #fff;
  background: #e92d45;
  transform: translateY(-0.1rem);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.btn-white {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 1rem 1rem 0.75rem 1rem;
  transition: 0.3s;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  font-weight: bold;
  letter-spacing: 1px;
}
.btn-white:hover, .btn-white:focus {
  color: #fff;
  background: #e92d45;
  transform: translateY(-0.1rem);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.main-footer {
  background: #230D55;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 2rem 1rem 2rem;
}
.main-footer .footer-logo img {
  max-width: 10rem;
  height: auto;
}
.main-footer .contact-details {
  margin: 1rem 0 0 0;
}
.main-footer .contact-details p {
  color: #fff;
  font-size: 1.2rem;
}
.main-footer .contact-details a {
  color: #fff;
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  display: inline-block;
}
.main-footer .contact-details a::before {
  background: #fff;
}
.main-footer .contact-details a:hover {
  color: #CD162D;
}
.main-footer .policies {
  margin: 1rem 0 0 0;
}
.main-footer .policies p {
  font-size: 0.8rem;
  color: #fff;
  margin: 0;
}
.main-footer .policies p:last-of-type {
  margin: 0;
}
.main-footer .policies a {
  font-size: 0.8rem;
  color: #fff;
}

.home.active {
  height: 100%;
  overflow: hidden;
}

.page-overlay {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
  display: none;
}
.page-overlay.active {
  display: block;
  cursor: pointer;
}
@media (min-width: 900px) {
  .page-overlay.active {
    display: none;
  }
}
@media (min-width: 900px) {
  .page-overlay {
    display: none;
  }
}

.site-header {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
}
.site-header .top-header-wrap {
  background: #CD162D;
  width: 100%;
  display: none;
}
@media (min-width: 525px) {
  .site-header .top-header-wrap {
    display: block;
  }
}
.site-header .top-header-wrap .top-header {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem;
  padding: 0 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.site-header .top-header-wrap .top-header .contact-details {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.site-header .top-header-wrap .top-header .contact-details a {
  margin: 0.25rem 0.5rem 0 0;
  color: #fff;
  font-size: 0.9rem;
}
.site-header .top-header-wrap .top-header .contact-details a:hover, .site-header .top-header-wrap .top-header .contact-details a:focus {
  color: #fce6e9;
}
.site-header .top-header-wrap .top-header .header-contact a {
  color: #fff;
  display: inline-block;
  margin: 0.25rem 0 0 0;
  font-size: 0.9rem;
}
.site-header .top-header-wrap .top-header .header-contact a:hover, .site-header .top-header-wrap .top-header .header-contact a:focus {
  color: #fce6e9;
}

.container {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  position: relative;
  height: 100px;
}
@media (min-width: 900px) {
  .container {
    height: unset;
  }
}

.logo {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
}
.logo img {
  max-width: 8rem;
  height: auto;
}
@media (min-width: 935px) {
  .logo img {
    max-width: 10rem;
  }
}
.logo a {
  display: flex;
}

#mobile-button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border: 0;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
}
#mobile-button .iconify {
  color: #000;
  width: 25px;
  height: 25px;
  transition: 0.3s;
}
#mobile-button .iconify:hover, #mobile-button .iconify:focus {
  color: #CD162D;
}
#mobile-button.active {
  display: none;
}
@media (min-width: 900px) {
  #mobile-button {
    display: none;
  }
}

#close-button {
  position: absolute;
  top: 30px;
  right: 0.5rem;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
}
#close-button .iconify {
  color: #000;
  width: 25px;
  height: 25px;
  transition: 0.3s;
}
#close-button .iconify:hover, #close-button .iconify:focus {
  color: #CD162D;
}

#mobile-menu {
  width: 100%;
  max-width: 450px;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  overflow-y: scroll;
  padding: 1rem;
  margin: 0;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 1000;
}
#mobile-menu.active {
  left: 0;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
@media (min-width: 900px) {
  #mobile-menu.active {
    display: none;
  }
}
#mobile-menu .contact-details {
  display: flex;
  flex-direction: column;
}
#mobile-menu .menu-primary-container {
  margin: 3rem 0 0 0;
  width: 100%;
}
#mobile-menu .menu {
  margin: 20px 0;
}
#mobile-menu .menu li {
  border-bottom: 1px solid #000;
  transition: 0.3s;
}
#mobile-menu .menu li:first-child {
  border-top: 1px solid #000;
}
#mobile-menu .menu li:first-child .sub-menu li {
  padding: 0.5rem 0;
}
#mobile-menu .menu li a {
  display: block;
  margin: 0.75rem 0 0.5rem 0rem;
  transition: 0.3s;
}
#mobile-menu .menu li a:hover, #mobile-menu .menu li a:focus {
  color: #000;
}
#mobile-menu .menu li:hover, #mobile-menu .menu li:focus {
  cursor: pointer;
  background: #f6f6f6;
  padding: 0.5rem 0 0.5rem 0.5rem;
}
#mobile-menu .menu li.active {
  cursor: pointer;
  background: #f6f6f6;
  padding: 0.5rem 0 0.5rem 0.5rem;
}
#mobile-menu .sub-menu {
  list-style-type: none;
  padding: 0 0 0 1rem;
  margin: 0;
  display: none;
}
#mobile-menu .sub-menu.active {
  display: block;
}
#mobile-menu .sub-menu li {
  border-bottom: none;
  padding: 0.5rem 0 0.5rem -0.5rem;
}
#mobile-menu .sub-menu li:first-child {
  border-top: none;
}
#mobile-menu .mobile-menu-footer .btn-red {
  width: 100%;
  text-align: center;
}

#main-menu {
  display: none;
}
@media (min-width: 900px) {
  #main-menu {
    display: flex;
  }
}
#main-menu .menu {
  position: relative;
}
#main-menu .menu li {
  position: relative;
}
#main-menu .menu li .sub-menu {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
#main-menu .menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
#main-menu .sub-menu {
  position: absolute;
  top: 40px;
  left: 0;
  padding: 0 2rem;
  max-width: 300px;
  min-width: 250px;
  background: #f6f6f6;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 2000;
}
#main-menu .sub-menu a {
  display: block;
  padding: 0.5rem;
}

.menu {
  list-style-type: none;
  padding-left: 0;
}
.menu li {
  padding: 0.5rem 0;
}
@media (min-width: 900px) {
  .menu li {
    display: inline;
    padding: 0.5rem 1rem;
  }
}
.menu a {
  color: #000;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  margin: 0.25rem 0 0 0;
}
.menu a:hover {
  color: #CD162D;
}

/* Add a right arrow to menu items with sub-menus */
.menu-item-has-children > a:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='20' viewBox='0 0 12 24'%3E%3Cpath fill='black' fill-rule='evenodd' d='M10.157 12.711L4.5 18.368l-1.414-1.414l4.95-4.95l-4.95-4.95L4.5 5.64l5.657 5.657a1 1 0 0 1 0 1.414'/%3E%3C/svg%3E") no-repeat center;
  display: inline-block;
  margin-bottom: -4px;
  position: absolute;
  right: 1rem;
  transition: 0.3s;
}
@media (min-width: 900px) {
  .menu-item-has-children > a:after {
    content: none;
  }
}
.menu-item-has-children > a.active:after {
  transform: rotate(90deg);
}

.page-header {
  width: 100%;
  height: 250px;
  position: relative;
}
.page-header .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
}
.page-header .overlay h1 {
  padding: 0;
  margin: 0;
  color: #fff;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards;
}
.page-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slides {
  max-height: 400px;
  overflow: hidden;
  margin: 0 auto;
}

.slide-img {
  width: 100%;
  height: 400px;
  position: relative;
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-img .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

html {
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}

body {
  font-size: 16px;
  padding: 0;
  margin: 0;
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px;
}

.entry-content .alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
}

.alignfull img {
  width: 100vw;
}

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-layout {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.6s;
}/*# sourceMappingURL=style.css.map */