/*--------------------------------------------------------------
# Global styles
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Fonts */
  --font-Martel: "Martel";
  --font-Source-Sans-Pro: "Source Sans Pro";

  /* color themes */
  --Primary-color: #A50026;
  --Secondary-color: #c28b3a;
  --Teritary-color: #fafdf5;

  /* Background colors */
  --Background-white: #fff;
  --Background-light-grey: #f7f7f7;

  /* Text colors */
  --Text-white: #fff;
  --Text-black: #4A4A4A;
}

/* Fonts Style & weight */
/*
@font-face {
  font-family: "Source Sans Pro";
  src: url("../vendor/Font/SourceSansPro-Regular.woff");
} */

/* @font-face {
  font-family: "Source Sans Pro";
  src: url("../vendor/Font/SourceSansPro-Black.woff") format('woff');
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("../vendor/Font/SourceSansPro-BlackIt.woff") format('woff');
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("../vendor/Font/SourceSansPro-Bold.woff") format('woff');
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("../vendor/Font/SourceSansPro-BoldIt.woff") format('woff');
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("../vendor/Font/SourceSansPro-ExtraLight.woff") format('woff');
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("../vendor/Font/SourceSansPro-ExtraLightIt.woff") format('woff');
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("../vendor/Font/SourceSansPro-It.woff") format('woff');
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("../vendor/Font/SourceSansPro-Light.woff") format('woff');
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("../vendor/Font/SourceSansPro-LightIt.woff") format('woff');
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("../vendor/Font/SourceSansPro-Regular.woff") format('woff');
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("../vendor/Font/SourceSansPro-Semibold.woff") format('woff');
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("../vendor/Font/SourceSansPro-SemiboldIt.woff") format('woff');
} */

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background-color: var(--Background-white);
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-Martel);
  margin-bottom: 30px;
}

p {
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-size: 18px;
}

ul {
  list-style: none;
  /* padding-left: 0; */
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

/* Privay-policy */
.privay-policy-text span {
  font-size: 12px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
  text-align: center;
}

.privay-policy-text span a {
  color: var(--Primary-color);
}

.privay-policy-text {
  text-align: center;
  margin-top: 15px;
}

/* Privay-policy */

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--Primary-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--Primary-color);
  color: var(--Background-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# header-wrapper
--------------------------------------------------------------*/
.header-wrapper {
  transition: all 0.5s;
  border-bottom: 1px solid #ddd;
  background-color: var(--Background-white);
}

.fixed-top {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.header-wrapper .navbar-brand {
  height: 100%;
  max-width: 60px;
}

.header-wrapper .navbar-brand img {
  height: 100%;
  width: 100%;
  object-position: center;
}

.header-wrapper .nav-item .nav-link {
  font-size: 18px;
  color: var(--Text-black);
  font-family: var(--font-Source-Sans-Pro);
  font-weight: 400;
}

.header-wrapper .nav-item {
  margin: 0 5px;
}

.header-wrapper .navbar-nav .nav-link.active,
.header-wrapper .navbar-nav .nav-link:hover {
  color: var(--Primary-color);
}

.header-wrapper .navbar-nav {
  align-items: center;
}

.header-wrapper .donate-button a {
  background-color: var(--Primary-color);
  color: var(--Text-white);
  font-size: 16px;
  font-family: var(--font-Source-Sans-Pro);
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease 0s;
}

.header-wrapper .donate-button {
  margin: 0 0 0 10px;
}

.header-wrapper .donate-button a:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color)
}

.header-wrapper .navbar-toggler:focus {
  box-shadow: none;
}

.header-wrapper .dropdown-item.active,
.header-wrapper .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--Primary-color);
}

.header-wrapper .dropdown-item:hover {
  background-color: var(--Primary-color);
  color: var(--Text-white);
}

/*--------------------------------------------------------------
# banner-wrapper 
--------------------------------------------------------------*/
.banner-wrapper {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.banner-wrapper::before {
  position: absolute;
  content: '';
  background-color: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .5;
  z-index: -1;
}

.banner-wrapper .banner-contents h1 {
  color: var(--Text-white);
  font-size: 35px;
  font-weight: 700;
}

.banner-wrapper .banner-contents p {
  color: var(--Text-white);
  font-family: var(--font-Source-Sans-Pro);
  font-size: 18px;
  font-weight: 400;
}

.banner-wrapper .banner-btn a {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: var(--font-Source-Sans-Pro);
  display: inline-block;
  color: var(--Text-white);
  padding: 10px 35px;
  border-radius: 50px;
  transition: all 0.5s ease 0s;
  background-color: var(--Primary-color);
}

.banner-wrapper .banner-btn a:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color);
}

.banner-wrapper .banner-contents {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/*--------------------------------------------------------------
# Talk-to-us
--------------------------------------------------------------*/
.Talk-to-us {
  background-color: var(--Primary-color);
  padding: 25px 0px;
  outline: 1px solid var(--Primary-color);
}

.Talk-to-us .row {
  align-items: center;
}

.Talk-to-us h2 {
  font-size: 20px;
  color: var(--Text-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 0;
}

.Talk-to-us .call-us-button {
  text-align: end;
}

.Talk-to-us .call-us-button .call-us-btn {
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font-Source-Sans-Pro);
  display: inline-block;
  color: var(--Primary-color);
  padding: 10px 35px;
  border-radius: 50px;
  transition: all 0.5s ease 0s;
  background-color: var(--Background-white);
  text-align: end;
}

.Talk-to-us .call-us-button .call-us-btn:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color);
}

/*--------------------------------------------------------------
# Our-mission 
--------------------------------------------------------------*/
.our-mission .row {
  align-items: center;
}

.our-mission .our-mission-contents h2 {
  font-size: 35px;
  color: var(--Primary-color);
  font-weight: 700;
}

.our-mission .our-mission-contents p {
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
  text-align: justify;
}

.our-mission .our-mission-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.our-mission .our-mission-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

/*--------------------------------------------------------------
# offerings-mass-cards
--------------------------------------------------------------*/
.offerings-mass-cards .offerings-title h2 {
  font-size: 35px;
  color: var(--Primary-color);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.offerings-mass-cards .offerings-para p {
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
  text-align: center;
  margin-bottom: 10px;
}

.offerings-mass-cards .mass-card-intensions a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: var(--font-Source-Sans-Pro);
  display: inline-block;
  color: var(--Text-white);
  padding: 10px 35px;
  border-radius: 50px;
  transition: all 0.5s ease 0s;
  background-color: var(--Primary-color);
}

.offerings-mass-cards .mass-card-intensions a:hover {
  background-color: var(--Secondary-color);
  transition: 0.3s;
}

.offerings-mass-cards .mass-card-heading h2 {
  font-size: 18px;
  color: var(--Primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.offerings-mass-cards .offerings-mass-card-list .card {
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  transition: 0.3s;
  background-color: var(--Background-white);
  border: 0;
}

.offerings-mass-cards .offerings-mass-card-list .card:hover {
  transform: scale(1.02);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
  transition: 0.3s;
}

.offerings-mass-cards .offerings-mass-card-list .card .card-title a {
  font-size: 15px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Primary-color);
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: .07em;
  text-align: center;
  transition: 0.3s;
}

.offerings-mass-cards .offerings-mass-card-list .card .card-title a:hover {
  color: var(--Secondary-color);
  transition: 0.3s;
}

.offerings-mass-cards .offerings-mass-card-list .card .card-price {
  font-size: 14px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}

.offerings-mass-cards .offerings-mass-card-list .card .card-text {
  font-size: 14px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
}

.offerings-mass-cards .offerings-mass-card-list .card img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------
# offerings-newsletter
--------------------------------------------------------------*/
.offerings-newsletter {
  background-color: var(--Primary-color);
}

.newsletter-main-sec-bg {
  background-color: var(--Background-white);
}

.offerings-newsletter .row {
  align-items: center;
}

.offerings-newsletter .offerings-newsletter-heading h2 {
  font-size: 35px;
  color: var(--Text-white);
  font-weight: 700;
}

.newsletter-main-sec-bg .offerings-newsletter-heading h2 {
  font-size: 35px;
  color: var(--Primary-color);
  font-weight: 700;
}

.newsletter-main-sec-bg .offerings-newsletter-para p {
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black) !important;
  font-weight: 400;
}

.offerings-newsletter .offerings-newsletter-para p {
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-white);
  font-weight: 400;
}

.offerings-newsletter .tnp-field.tnp-field-button {
  margin-top: 20px;
}

.offerings-newsletter .privay-policy-text p {
  color: var(--Text-white);
}

.newsletter-main-sec-bg .privay-policy-text p {
  color: var(--Text-black) !important;
}

.offerings-newsletter .privay-policy-text p a {
  color: var(--Secondary-color);
  font-weight: bold;
}

.offerings-newsletter .tnp-subscription input.tnp-submit {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: var(--font-Source-Sans-Pro);
  display: inline-block;
  color: var(--Primary-color);
  padding: 10px 35px;
  border-radius: 50px;
  transition: all 0.5s ease 0s;
  background-color: var(--Background-white);
}

.newsletter-main-sec-bg .tnp-subscription input.tnp-submit {
  background-color: var(--Primary-color) !important;
  color: var(--Text-white) !important;
}

.offerings-newsletter .tnp-subscription input.tnp-submit:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color);
}

.newsletter-main-sec-bg .tnp-subscription input.tnp-submit:hover {
  color: var(--Text-white) !important;
  background-color: var(--Secondary-color) !important;
}


.offerings-newsletter .form-control:focus {
  box-shadow: none;
}

.offerings-newsletter input::placeholder {
  font-size: 16px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
}

.offerings-newsletter .tnp-subscription input[type=text],
.offerings-newsletter .tnp-subscription input[type=email] {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#news-letter input::placeholder {
  font-size: 16px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
}

#news-letter .tnp-subscription input[type=text],
#news-letter .tnp-subscription input[type=email] {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#news-letter .tnp.tnp-subscription {
  max-width: 100%;
}

.offerings-newsletter .tnp.tnp-subscription {
  max-width: 100%;
}

#news-letter .tnp-subscription input.tnp-submit {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: var(--font-Source-Sans-Pro);
  display: inline-block;
  color: var(--Text-white);
  padding: 10px 35px;
  border-radius: 50px;
  transition: all 0.5s ease 0s;
  background-color: var(--Primary-color);
}

#news-letter .tnp-subscription input.tnp-submit:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color);
}

#news-letter .tnp-field.tnp-field-button {
  text-align: center !important;
  margin-top: 30px;
}

#news-letter .privay-policy-text p a {
  color: var(--Primary-color);
}

.offerings-newsletter form {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.offerings-newsletter .tnp-field.tnp-field-firstname,
.offerings-newsletter .tnp-field.tnp-field-surname,
.offerings-newsletter .tnp-field.tnp-field-email {
  width: 33.33%;
}

.offerings-newsletter .tnp-subscription div.tnp-field {
  padding: 0px 8px;
}

/*--------------------------------------------------------------
# Ireland-mass-rocks
--------------------------------------------------------------*/
.image-with-content {
  background-color: var(--Teritary-color);
}

.image-with-content .row {
  align-items: center;
}

.image-with-content .image-with-content-heading h2 {
  font-size: 35px;
  color: var(--Primary-color);
  font-weight: 700;
}

.image-with-content .image-with-content-para p {
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
  text-align: justify;
}

/* .Ireland-mass-rocks .Ireland-mass-rocks-button {
  margin-top: 30px;
} */

.image-with-content .image-with-content-button a {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: var(--font-Source-Sans-Pro);
  display: inline-block;
  color: var(--Text-white);
  padding: 10px 35px;
  border-radius: 50px;
  transition: all 0.5s ease 0s;
  background-color: var(--Primary-color);
}

.image-with-content .image-with-content-button a:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color);
}

.image-with-content .image-with-content-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.image-with-content .image-with-content-image {
  height: 400px;
  width: 100%;
  overflow: hidden;
}

.image-with-content .image-with-content-para ul li {
  font-size: 18px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
  position: relative;
  padding-bottom: 8px;
  text-align: justify;
}

.image-with-content .image-with-content-para ul li {
  margin-bottom: 0px;
  position: relative;
}

.image-with-content .image-with-content-para ul li::before {
  content: '\f101';
  position: absolute;
  font-family: 'FontAwesome';
  top: 0;
  left: -25px;
  width: 100%;
  height: 100%;
  color: var(--Primary-color);
}

section#image-with-content-block_4b8ff0c71e6ef5e87b8bda552ca9b63b {
  background-color: var(--Background-white);
}

/*--------------------------------------------------------------
# offerings-Latest-news
--------------------------------------------------------------*/
.offerings-Latest-news {
  background-color: var(--Background-white);
}

.offerings-Latest-news .offerings-Latest-news-heading h2 {
  font-size: 35px;
  color: var(--Primary-color);
  font-weight: 700;
}

.offerings-Latest-news .offerings-Latest-news-slide .card {
  transition: 0.3s;
  background-color: var(--Background-white);
}

.offerings-Latest-news .Latest-news-heading p {
  font-size: 18px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 1rem;
}

.offerings-Latest-news .offerings-Latest-news-slide .card a {
  font-size: 18px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
  margin-bottom: 10px;
}

.offerings-Latest-news .offerings-Latest-news-slide .card p {
  font-size: 14px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 700;
}

.offerings-Latest-news .offerings-Latest-news-slide .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top;
}

.offerings-Latest-news .offerings-Latest-news-slide .card-body {
  width: 100%;
  /* height: 145px; */
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}

.offerings-Latest-news .offerings-Latest-news-slide .owl-carousel button.owl-prev,
.offerings-Latest-news .offerings-Latest-news-slide .owl-carousel button.owl-next {
  font-size: 25px;
  color: var(--Primary-color);
  top: -62px;
}

.offerings-Latest-news .offerings-Latest-news-slide .owl-carousel button.owl-prev:hover,
.offerings-Latest-news .offerings-Latest-news-slide .owl-carousel button.owl-next:hover {
  background: none;
}

.offerings-Latest-news .offerings-Latest-news-slide .owl-carousel button.owl-prev {
  position: absolute;
  right: 40px;
}

.offerings-Latest-news .offerings-Latest-news-slide .owl-carousel button.owl-next {
  position: absolute;
  right: 0px;
}

.offerings-Latest-news .offerings-Latest-news-slide .owl-carousel .owl-dots.disabled,
.offerings-Latest-news .offerings-Latest-news-slide .owl-carousel .owl-nav.disabled {
  display: block;
}

.offerings-Latest-news .offerings-Latest-news-slide .owl-theme .owl-dots .owl-dot.active span,
.offerings-Latest-news .offerings-Latest-news-slide .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--Primary-color);
}

.offerings-Latest-news .offerings-Find-more-button a {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: var(--font-Source-Sans-Pro);
  display: inline-block;
  color: var(--Text-white);
  padding: 10px 35px;
  border-radius: 50px;
  transition: all 0.5s ease 0s;
  background-color: var(--Primary-color);
}

.offerings-Latest-news .offerings-Find-more-button {
  margin-top: 30px;
}

.offerings-Latest-news .offerings-Find-more-button a:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.Footer-wrapper {
  background-color: var(--Primary-color);
}

.Footer-wrapper .Footer-heading h3 {
  font-size: 25px;
  color: var(--Text-white);
  font-weight: 700;
}

.Footer-wrapper .contact-info p,
.Footer-wrapper .contact-info a {
  font-size: 18px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-white);
  font-weight: 400;
}

.Footer-wrapper .contact-info a:hover {
  color: var(--Secondary-color);
  transition: 0.2s;
}

.Footer-wrapper .Navigations-links ul li a {
  font-size: 18px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-white);
  font-weight: 400;
}

.Footer-wrapper .Navigations-links ul li a:hover {
  color: var(--Secondary-color);
  transition: 0.2s;
}

.Footer-wrapper .Footer-navigations ul li {
  margin: 8px 0px;
}


.Footer-wrapper .Footer-navigations {
  display: flex;
  align-items: center;
  justify-content: center;
}


.Footer-wrapper .Footer-social-links ul {
  display: flex;
  flex-direction: row;
}

.Footer-wrapper .Footer-social-links ul li {
  margin: 0 25px 0px 0px;
}

.Footer-wrapper .Footer-social-links ul li:last-child {
  margin: 0px 0px 0px 0px;
}

.Footer-wrapper .Footer-social-links ul li i {
  font-size: 20px;
  color: var(--Text-white);
  transition: 0.3s;
}

.Footer-wrapper .Footer-social-links ul li i:hover {
  color: var(--Secondary-color);
  transition: 0.3s;
}

/* Bottom-footer */
.bottom-footer {
  background-color: #212121;
  padding: 20px 0px;
}

.bottom-footer p {
  margin: 0;
  font-size: 16px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-white);
  font-weight: 400;
}

.bottom-footer a {
  color: var(--Primary-color);
}



/*--------------------------------------------------------------
# donate-banner
--------------------------------------------------------------*/
.donate-banner {
  background: url('../img/image-2.jpeg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 88px 0px 0px 0px;
}

.donate-banner::before {
  position: absolute;
  content: '';
  background-color: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .5;
  z-index: -1;
}

.donate-banner .donate-banner-contents h1 {
  color: var(--Text-white);
  font-size: 35px;
  font-weight: 700;
}

.donate-banner .donate-banner-para p {
  color: var(--Text-white);
  font-family: var(--font-Source-Sans-Pro);
  font-size: 18px;
  font-weight: 400;
}

.donate-banner .donate-banner-contents {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/*--------------------------------------------------------------
# donation-information
--------------------------------------------------------------*/

.donation-information {
  background-color: var(--Teritary-color);
}

.donation-information .donation-information-left .donation-para p {
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
  text-align: justify;
}

#donate_form-details {
  background-color: var(--Background-light-grey);
}

.donation-information .donation-heading h2 {
  font-size: 35px;
  color: var(--Primary-color);
  font-weight: 700;
}

/*--------------------------------------------------------------
# newsletter-banner 
--------------------------------------------------------------*/
.masses-detail-page {
  /* margin-top: 88px; */
  /* background-color: var(--Teritary-color); */
  background-color: var(--Background-white);
}

.masses-detail-page .masses-detail-page-heading h2 {
  font-size: 25px;
  color: var(--Primary-color);
  font-weight: 700;
}

.masses-detail-page .masses-detail-page-para p {
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
}

.masses-detail-page .price span {
  font-size: 16px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.masses-detail-page .price {
  margin-bottom: 0.5rem;
}

.masses-detail-page .suggested-mass p {
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
  font-style: italic;
}

.masses-detail-page .masses-detail-page-image img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.masses-detail-page .masses-detail-page-image {
  height: 350px;
  width: 100%;
  overflow: hidden;
}

.masses-detail-page .summary tr {
  display: flex;
  flex-direction: column;
}

.woocommerce div.product form.cart .variations select {
  display: block;
  width: 100%;
  padding: .375rem 2.25rem .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 4px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.post-thumbnail {
  width: 100%;
  height: 400px;
  margin-top: 20px;
}

nav.navigation.post-navigation .nav-links {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}

nav.navigation.post-navigation {
  margin-top: 40px;
}

nav.navigation.post-navigation .nav-links .nav-previous a,
nav.navigation.post-navigation .nav-links .nav-next a {
  background-color: var(--Primary-color);
  color: var(--Text-white);
  font-size: 16px;
  font-family: var(--font-Source-Sans-Pro);
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease 0s;
}

nav.navigation.post-navigation .nav-links .nav-previous a:hover,
nav.navigation.post-navigation .nav-links .nav-next a:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color);
}

img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

h1.entry-title {
  font-size: 25px;
  color: var(--Primary-color);
  font-weight: 700;
}

.posted-on a time {
  color: #c28b3a;
  font-weight: 500;
}

a.a2a_dd.addtoany_share_save.addtoany_share {
  display: none;
}

.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled {
  display: flex;
  flex-direction: column;
}

.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-disabled {
  display: flex;
  flex-direction: column;
}

button.single_add_to_cart_button.button.alt {
  margin-top: 15px;
  width: fit-content;
}

/*--------------------------------------------------------------
# newsletter-banner 
--------------------------------------------------------------*/
.masses-banner {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.masses-banner::before {
  position: absolute;
  content: '';
  background-color: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .5;
  z-index: -1;
}

.masses-banner .banner-contents h1 {
  color: var(--Text-white);
  font-size: 35px;
  font-weight: 700;
}

.masses-banner .banner-text p {
  color: var(--Text-white);
  font-family: var(--font-Source-Sans-Pro);
  font-size: 18px;
  font-weight: 400;
}

.masses-banner .banner-contents {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/*--------------------------------------------------------------
# offerings-masses-list 
--------------------------------------------------------------*/

.offerings-masses-list {
  background-color: var(--Teritary-color);
}

.offerings-masses-list h3 {
  font-size: 18px;
  color: var(--Primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.offerings-masses-list .offerings-masses-list-heading h2 {
  font-size: 35px;
  color: var(--Text-black);
  font-weight: 700;
}

.offerings-masses-list .offerings-masses-list-para p {
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400
}

.offerings-masses-list .masses-card-items .card-title {
  font-size: 15px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Primary-color);
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: .07em;
  text-align: center;
  transition: 0.3s;
}

.offerings-masses-list .masses-card-items .card-text {
  font-size: 14px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
}

.offerings-masses-list .masses-card-items .card-price {
  font-size: 14px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}

.offerings-masses-list .masses-card-items .card-body {
  display: flex;
  flex-direction: column;
}

.offerings-masses-list .masses-card-items .card {
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  transition: 0.3s;
  background-color: var(--Background-white);
  border: 0;
}

.offerings-masses-list .masses-card-items .card:hover {
  transform: scale(1.02);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
  transition: 0.3s;
}

.offerings-masses-list .masses-card-items img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------
# newsletter-banner 
--------------------------------------------------------------*/
.newsletter-banner {
  background: url('../img/image-4.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 88px 0px 0px 0px;
}

.newsletter-banner::before {
  position: absolute;
  content: '';
  background-color: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .5;
  z-index: -1;
}

.newsletter-banner .newsletter-banner-contents h1 {
  color: var(--Text-white);
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
}

.newsletter-banner .newsletter-banner-para p {
  color: var(--Text-white);
  font-family: var(--font-Source-Sans-Pro);
  font-size: 18px;
  font-weight: 400;
}

.newsletter-banner .newsletter-banner-contents {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/*--------------------------------------------------------------
# offerings-newsletter
--------------------------------------------------------------*/
#news-letter {
  background-color: var(--Background-white);
}

#news-letter .news-letter-offerings-heading h2 {
  font-size: 35px;
  color: var(--Primary-color);
  font-weight: 700;
}

#news-letter #content .news-letter-offerings-para p {
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
}

#news-letter .news-letter-offerings-button {
  margin-top: 30px;
}

#news-letter .news-letter-offerings-button a {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: var(--font-Source-Sans-Pro);
  display: inline-block;
  color: var(--Text-white);
  padding: 10px 35px;
  border-radius: 50px;
  transition: all 0.5s ease 0s;
  background-color: var(--Primary-color);
}

#news-letter .news-letter-offerings-button a:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color);
}

#news-letter .form-control:focus {
  box-shadow: none;
}

#news-letter input::placeholder {
  font-size: 16px;
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
}

#news-letter #bg-image {
  background: url('../img/image-3.jpeg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

#news-letter #bg-image::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--Secondary-color);
  opacity: .7;
  z-index: -1;
}

#news-letter #content {
  display: flex;
  align-self: center;
  justify-content: center;
  background-color: var(--Teritary-color);
}

#news-letter .news-letter-offerings-title h2 {
  font-size: 35px;
  color: var(--Text-white);
  font-weight: 700;
  text-align: center;
}

#news-letter #bg-image .news-letter-offerings-para p {
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-white);
  font-weight: 400;
  text-align: center;
}

/* NewsLetter Page */
.offerings-Latest-news .news-grid-items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.offerings-Latest-news .news-grid-items .item {
  width: 33.33%;
  padding: 10px;
}

.offerings-Latest-news .news-grid-items .item img.card-img-top {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top;
}

.blog-paination-arrow.d-flex a {
  background: var(--Primary-color);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}

.blog-paination-arrow.d-flex a.disabled {
  opacity: .5;
}

.blog-paination-arrow.d-flex .arrow-previous i,
.blog-paination-arrow.d-flex .arrow-next i {
  font-size: 20px;
  color: var(--Text-white);
}

.blog-paination {
  margin-top: 20px;
}

/* Newsletter Page */

/* Parallex-with-content */
.parallax-with-content {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  height: 100%;
  width: 100%;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-with-content .container {
  margin: 80px 0px;
}

.parallax-with-content::before {
  position: absolute;
  content: '';
  background-color: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .5;
  z-index: -1;
}

.parallax-with-content h2 {
  color: var(--Text-white);
  font-size: 35px;
  font-weight: 700;
}

.parallax-with-content .parallax-content p {
  color: var(--Text-white);
  font-family: var(--font-Source-Sans-Pro);
  font-size: 18px;
  font-weight: 400;
}

.parallax-with-content .call-us-button a {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: var(--font-Source-Sans-Pro);
  display: inline-block;
  color: var(--Text-white);
  padding: 10px 35px;
  border-radius: 50px;
  transition: all 0.5s ease 0s;
  background-color: var(--Primary-color);
}

.parallax-with-content .call-us-button a i {
  margin-right: 5px;
}

.parallax-with-content .call-us-button a:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color);
}

.give-form-navigator {
  background: red !important;
}

/* Parallex-with-content */

/* section#image-with-content-block */
.content-with-form-heading h2 {
  font-size: 35px;
  color: var(--Primary-color);
  font-weight: 700;
}

section#video-with-content-block_24b72ba8b2b171bdea0f63b5e4affe71 .video-main-content-heading h2 {
  color: var(--Primary-color);
  font-size: 35px;
  font-weight: 700;
}

section#video-with-content-block_24b72ba8b2b171bdea0f63b5e4affe71 .video-main-content-para p {
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-weight: 400;
}

section#video-with-content-block_24b72ba8b2b171bdea0f63b5e4affe71 .video-wrapper {
  margin: 20px 0px;
}

section#video-with-content-block_24b72ba8b2b171bdea0f63b5e4affe71 .video-content-heading h2 {
  color: var(--Primary-color);
  font-size: 25px;
  margin-bottom: 15px;
}

section#image-with-content-block_f210ddc583a116891feb109bdf951a3f .Ireland-mass-rocks-para h3 {
  color: var(--Primary-color);
  font-size: 25px;
  margin-bottom: 15px;
  margin-top: 40px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn {
  background-color: var(--Primary-color);
  color: var(--Text-white);
  font-size: 16px;
  font-family: var(--font-Source-Sans-Pro);
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease 0s;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color);
}

.Ireland-mass-rocks-button a {
  background-color: var(--Primary-color);
  color: var(--Text-white);
  font-size: 16px;
  font-family: var(--font-Source-Sans-Pro);
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease 0s;
}

.Ireland-mass-rocks-button a:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color);
}

.Ireland-mass-rocks .Ireland-mass-rocks-para p label {
  font-family: var(--font-Source-Sans-Pro);
  color: #212529;
  font-weight: 500;
  font-size: 16px;
}

section#image-with-content-block_f210ddc583a116891feb109bdf951a3f span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required.form-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

div#wpcf7-f442-p51-o1 {
  margin-top: 30px;
}

.content-with-form-button a {
  background-color: var(--Primary-color);
  color: var(--Text-white);
  font-size: 16px;
  font-family: var(--font-Source-Sans-Pro);
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease 0s;
}

.content-with-form-button a:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color);
}

/* section#image-with-content-block */

.Ireland-mass-rocks-para ul li p {
  margin-bottom: 0px;
  position: relative;
}

/* .Ireland-mass-rocks-para ul li p::before {
  content: '\f101';
  position: absolute;
  font-family: 'FontAwesome';
  top: 0;
  left: -25px;
  width: 100%;
  height: 100%;
  color: var(--Primary-color);
} */

.Ireland-mass-rocks-para ul li {
  margin-bottom: 0px;
  position: relative;
}

.Ireland-mass-rocks-para ul li::before {
  content: '\f101';
  position: absolute;
  font-family: 'FontAwesome';
  top: 0;
  left: -25px;
  width: 100%;
  height: 100%;
  color: var(--Primary-color);
}

.content-with-form-para ul li {
  position: relative;
}

.content-with-form-para ul li::before {
  content: '\f101';
  position: absolute;
  font-family: 'FontAwesome';
  top: 0;
  left: -25px;
  width: 100%;
  height: 100%;
  color: var(--Primary-color);
}

.Ireland-mass-rocks-para a {
  color: var(--Secondary-color);
}

.content-with-form-button {
  margin-top: 30px;
}

.col-lg-6.col-md-12.form-wrapper {
  display: flex;
  justify-content: end;
}

.col-md-6.col-12.donate-form-wrapper {
  display: flex;
  justify-content: end;
}

.slider_below_text {
  margin-top: 30px;
}

.counter-item-main-heading h2 {
  font-size: 35px;
  color: var(--Primary-color);
  font-weight: 700;
}

.counter-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  width: 100%;
  justify-content: space-between;
  margin-top: 15px;
}

.counter-item.card {
  width: 32.33%;
  height: 100%;
  padding: 15px;
}

.counter-items-wrapper span.counter {
  font-size: 52px;
  font-family: var(--font-Martel);
  color: var(--Primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.counter-items-wrapper h2.title {
  font-size: 18px;
  margin-bottom: 15px;
  font-family: var(--font-Martel);
  font-weight: 700;
  color: var(--Primary-color);
}

.masses-banner .banner-btn a {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: var(--font-Source-Sans-Pro);
  display: inline-block;
  color: var(--Text-white);
  padding: 10px 35px;
  border-radius: 50px;
  transition: all 0.5s ease 0s;
  background-color: var(--Primary-color);
}

.masses-banner .banner-btn a:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color);
}

#image-with-content-block_01e98b37d3242abeba222a422e093dae .Ireland-mass-rocks-para h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--Primary-color);
  line-height: normal;
}

blockquote {
  margin-left: 0;
  margin-right: 0;
  border-left: 1px solid rgba(176, 176, 176, .5);
  padding-left: 1.618em;
}

.slider-cta-button a {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: var(--font-Source-Sans-Pro);
  display: inline-block;
  color: var(--Text-white);
  padding: 10px 35px;
  border-radius: 50px;
  transition: all 0.5s ease 0s;
  background-color: var(--Primary-color);
}

.slider-cta-button a:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color);
}

.form-control:focus {
  color: var(--Text-black);
  background-color: var(--Background-white);
  outline: 0;
  box-shadow: none;
}

.Ireland-mass-rocks-heading h2,
.video-main-content-heading h2 {
  font-size: 35px;
  color: var(--Primary-color);
  font-weight: 700;
}

.entry-content {
  margin-top: 30px;
}

.post-date span {
  color: var(--Secondary-color);
}

.site-main .Ireland-mass-rocks-para h2 {
  font-size: 35px;
  color: var(--Primary-color);
  font-weight: 700;
}

.news-filters.d-flex {
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

input.search-field {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

select#category-select {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

input.search-submit {
  background-color: var(--Primary-color);
  color: var(--Text-white);
  font-size: 16px;
  font-family: var(--font-Source-Sans-Pro);
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease 0s;
  border: 0;
}

input.search-submit:hover {
  background-color: var(--Secondary-color);
}

.category-dropdown {
  display: flex;
  align-items: center;
}

.category-dropdown label {
  font-family: var(--font-Source-Sans-Pro);
  color: var(--Text-black);
  font-size: 18px;
  margin-right: 5px;
}

.woocommerce-product-gallery__image {
  height: 350px !important;
  width: 100% !important;
  border-radius: 10px !important;
}

.woocommerce-product-gallery__wrapper {
  height: 100% !important;
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 10px !important;
}



/* Responsive styles */
@media(min-width:992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

@media(max-width:991px) {
  .offerings-mass-cards .mass-card-intensions a {
    display: block;
  }

  .donate-button.text-center {
    margin: 15px 0px;
    text-align: left !important;
  }

  .header-wrapper .donate-button a {
    margin: 0px;
  }

  .offerings-Latest-news .news-grid-items .item {
    width: 50%;
  }

  .col-lg-6.col-md-12.form-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .donation-widget.tabs {
    position: relative;
    max-width: 100%;
    min-width: 100%;
  }

  .slider_below_text {
    margin: 30px 0px;
  }

  section#image-with-content-block_f210ddc583a116891feb109bdf951a3f span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required.form-control {
    justify-content: left;
  }

  .counter-item.card {
    margin: 15px 0px;
    height: auto;
    width: 100%;
  }

  .header-wrapper .navbar-nav {
    align-items: start;
    margin-top: 15px;
  }

  .header-wrapper .nav-item {
    margin: 0 5px;
    width: 100%;
  }

  .header-wrapper ul.dropdown-menu.depth_0.show .nav-item {
    width: auto;
  }

  .our-mission-contents {
    text-align: center;
  }

  .parallax-with-content h2 {
    text-align: center;
  }

  .parallax-with-content .parallax-content p {
    text-align: center;
  }

  .parallax-with-content .call-us-button {
    text-align: center;
  }

  .our-mission .our-mission-contents p {
    text-align: center;
  }

  .image-with-content-heading {
    text-align: center;
  }

  .image-with-content-button {
    text-align: center;
  }

  .image-with-content .image-with-content-para p {
    text-align: center;
  }

  div#navbarNav {
    height: 250px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}

@media(min-width:768px) {
  .woocommerce div.product {
    margin-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

@media(max-width:767px) {
  .Talk-to-us h2 {
    text-align: center;
  }

  .Talk-to-us .call-us-button {
    text-align: center;
    margin-top: 30px;
  }

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

  .d-md-none.slider_below_text {
    text-align: center;
  }

  .col-lg-6.col-md-12.content-wrapper {
    text-align: center;
  }

  .content-wrapper ul {
    text-align: left;
  }

  .d-md-none.slider-cta-button {
    text-align: center;
  }

  /* form.wpcf7-form.init {
    text-align: left;
  }

  form.wpcf7-form.invalid {
    text-align: left;
  } */

  .offerings-mass-cards .mass-card-intensions a {
    font-size: 13px;
  }

  .Ireland-mass-rocks-para ul {
    text-align: left;
  }

  .donate-offerings-heading,
  .Ireland-mass-rocks-heading {
    text-align: center;
  }

  .donate-offerings-para,
  .Ireland-mass-rocks-para {
    text-align: center;
  }

  .donate-to .donate-offerings-button,
  .Ireland-mass-rocks-button {
    margin-top: 30px;
    text-align: center;
  }

  .Footer-wrapper .Footer-navigations {
    text-align: center;
  }

  .Footer-social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .offerings-newsletter .tnp-field.tnp-field-firstname,
  .offerings-newsletter .tnp-field.tnp-field-surname,
  .offerings-newsletter .tnp-field.tnp-field-email {
    width: 100%;
  }

  .parallax-with-content .row {
    flex-direction: column-reverse;
  }

  .col-md-6.col-12.donate-form-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 35px;
  }

  h1,
  h2 {
    font-size: 30px !important;
  }

  p {
    font-size: 16px !important;
  }

  span.wpcf7-spinner {
    display: none;
  }

  .image-with-content .image-with-content-para ul li {
    font-size: 16px;
  }

  .call-us-button {
    text-align: center;
  }

  section#parallax-with-content-block_2beb56d9c64c3911010d3715567efd3d {
    min-height: 60vh !important;
  }

  .col-md-12.form-submission-btn {
    text-align: center;
  }

  .news-filters.d-flex {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .category-dropdown {
    margin-top: 30px;
  }
}

@media(max-width:575px) {
  .offerings-Latest-news .news-grid-items .item {
    width: 100%;
    padding: 10px;
  }
}

@media(max-width:480px) {
  #news-letter .tnp-subscription input.tnp-submit {
    width: auto;
  }
}

@media(max-width:475px) {
  section {
    padding: 40px 0;
  }
}

@media(max-width:375px) {
  form.search-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  input.search-submit {
    width: fit-content;
    margin-top: 15px;
  }

  .search-form label {
    width: 100%;
  }

  .category-dropdown {
    margin-top: 20px;
    flex-direction: column;
    width: 100%;
  }

  .category-dropdown label {
    margin-bottom: 15px;
  }
}

.search-results article {
  padding: 15px 0px;
  border-bottom: 1px solid #ddd;
}

.search-results article .entry-title {
  margin-bottom: 10px;
  font-size: 28px;
}

.search-results article .entry-title a,
.search-results .nav-links a {
  color: var(--Primary-color);
}

.search-results .nav-links {
  margin-top: 15px;
}

.search-results .masses-banner {
  height: 280px;
}

@media (max-width: 575px) {

  .search-results .container,
  .search-results .container-sm {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.Ireland-mass-rocks-para ul li {
    margin-bottom: 10px;
    position: relative;
    font-family: var(--font-Source-Sans-Pro);
    color: var(--Text-black);
    font-size: 18px;
}
ul li {
	margin-bottom: 10px;
  	position: relative;
    font-family: var(--font-Source-Sans-Pro);
    color: var(--Text-black);
    font-size: 18px;
}

/* Banner slider */
.Banner-slider .banner-contents h1 {
  color: var(--Text-white);
  font-size: 35px;
  font-weight: 700;
}

.Banner-slider .banner-contents p {
  color: var(--Text-white);
  font-family: var(--font-Source-Sans-Pro);
  font-size: 18px;
  font-weight: 400;
}

.Banner-slider .banner-btn a {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: var(--font-Source-Sans-Pro);
  display: inline-block;
  color: var(--Text-white);
  padding: 10px 35px;
  border-radius: 50px;
  transition: all 0.5s ease 0s;
  background-color: var(--Primary-color);
}

.Banner-slider .banner-btn a:hover {
  color: var(--Text-white);
  background-color: var(--Secondary-color);
}

.carousel {
  height: 100vh; 
}

.carousel-item {
  height: 100vh; 
  position: relative; 
}

.carousel-item img {
  object-fit: cover; 
  height: 100%; 
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1; 
}

.carousel-caption {
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  z-index: 2;
  width: 75%;
}

/* Banner slider ends90*/


/* Responsive styles */
@media(max-width:991px){
  .Banner-slider .banner-contents h1 {
		font-size: 30px;
	}
	.Banner-slider .banner-contents p {
	  font-size: 16px;
	}
}
@media(max-width:575px){
  .Banner-slider .banner-contents h1 {
		font-size: 25px;
	}
	.Banner-slider .banner-contents p {
	  font-size: 14px;
	}
}