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

:root {
  --Primary-color: #1F4E79;
  --Secondary-color: #76a5d1;

  --Background-white: #ffffff;
  --Background-grey: #F4F4F4;

  --Text-white: #ffffff;
  --Text-black: #000000;

  --Main-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.05);

  /* Define your main font */
  --font-primary: 'Montserrat', sans-serif;
	
	scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# Fonts Import (Correct Path)
--------------------------------------------------------------*/
@font-face {
  font-family: 'Montserrat';
  src: url('../vendor/Font/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../vendor/Font/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../vendor/Font/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../vendor/Font/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../vendor/Font/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 800;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background-color: var(--Background-white);
  font-family: var(--font-primary);
  color: var(--Text-black);
}

a {
  text-decoration: none;
}

h1 {
  font-family: var(--font-primary) !important;
  font-size: 45px !important;
  font-weight: 800 !important;
  line-height: 60px !important;
  letter-spacing: 0.2px !important;
  margin-bottom: 15px;
}

h2 {
  font-family: var(--font-primary) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 28px !important;
  letter-spacing: 0.2px !important;
  margin-bottom: 0;
}

p {
  font-family: var(--font-primary);
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  letter-spacing: 0.2px !important;
  margin-bottom: 0;
}

.text-primary {
  color: var(--Primary-color) !important;
}

.text-secondary {
  color: var(--Secondary-color) !important;
}

.text-black {
  color: var(--Text-black) !important;
}

.text-white {
  color: var(--Text-white) !important;
}

.bg-primary {
  background-color: var(--Primary-color);
}

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

.bg-gray {
  background-color: var(--Background-grey);
}

.main-button {
  background-color: var(--Primary-color);
  color: var(--Text-white);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.5px;
  padding: 15px;
  min-width: 200px;
  display: block;
  transition: all 0.3s;
}

.main-button:hover {
  background-color: var(--Secondary-color);
}

@media (max-width:500px) {
  h1 {
    font-family: var(--font-primary) !important;
    font-size: 35px !important;
    font-weight: 800 !important;
    line-height: 50px !important;
    letter-spacing: 0.2px !important;
    margin-bottom: 15px !important;
  }
}

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

@media (max-width:500px) {
  section {
  padding: 80px 0;
}
}
/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--Secondary-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 3px solid var(--Background-white);
}

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

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

/*--------------------------------------------------------------
# header-wrapper
--------------------------------------------------------------*/
header {
  background-color: var(--Primary-color);
  min-height: 40px;
  display: flex;
  align-items: center;

}

.header-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.header-strip a {
  display: flex;
  align-items: start;
  gap: 5px;
}
.header-strip a img{
	margin-top:3px;
}

.header-strip a:last-child {
  margin-left: auto;
}

.strip-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.2px;
  color: var(--Text-white);
}

.strip-text:hover {
  color: var(--Secondary-color);
}

.cart-wrapper {
  position: relative;
  z-index: 0;
}

.cart-value {
  font-size: 10px;
  font-weight: 600;
  line-height: 8px;
  letter-spacing: 0.2px;
  text-align: center;
  background-color: var(--Primary-color);
  color: var(--Text-white);
  border-radius: 100px;
  padding: 5px;
  width: 17px;
  height: 18px;
  display: block;
  position: absolute;
  z-index: 1;
  top: -13px;
  right: -11px;
}

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

.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: 14px;
  font-weight: 500;
  color: var(--Text-black);
  line-height: 24px;
  letter-spacing: 0.2px;
}

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

.header-wrapper .navbar-nav .nav-link.active {
  color: var(--Primary-color) !important;
  font-weight: 600 !important;
}

.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) !important;
  font-size: 14px !important;
  font-family: var(--font-primary) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  line-height: 22px !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease 0s !important;
  display:inline-block;
}

.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;
}

@media (max-width:991px) {
  .header-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 12px;
  }

  .header-strip a:last-child {
    margin-left: 0%;
  }

}

@media (min-width: 992px) and (max-width: 1399px) {
	.header-wrapper .container{
		max-width:100% !important;
	}
	.header-wrapper .nav-item .nav-link {
    	font-size: 12px !important;
		padding: 8px 0;
	}
}

/*--------------------------------------------------------------
# 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;
  padding: 170px 0px 0px 0px;
}

.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-heading {
  margin-bottom: 20px;
}

 .banner-contents p {
  color: var(--Text-white);
  font-family: var(--font-primary);
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 24px !important;
  letter-spacing: 0.2px !important;
  margin-bottom: 30px;
}

 .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: 0.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);
}

/*--------------------------------------------------------------
# Mild Cards section 
--------------------------------------------------------------*/
.mild-cards .card-body-wrapper {
  background-color: var(--Background-white);
  box-shadow: var(--Main-box-shadow);
  padding: 30px;
  border-radius: 20px;
  border:1px solid #E7E9ED;
  text-align: center;
  height: 100%;
}

.mild-cards .card-body-wrapper .rating-value {
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 60px !important;
  letter-spacing: 0.2px !important;
}

.mild-cards .card-body-wrapper img {
  margin-bottom: 30px;
}

.mild-cards h1 {
  margin-bottom: 55px;
}

.mild-cards .card-body-wrapper h2 {
  margin-bottom: 5px;
}

@media (max-width: 992px) {
  .mild-cards .card-body-wrapper .rating-value {
    font-size: 38px !important;
    font-weight: 700 !important;
    line-height: 60px !important;
    letter-spacing: 0.2px !important;
  }
}

/*--------------------------------------------------------------
# Our-mission 
--------------------------------------------------------------*/
.our-mission .our-mission-image {
  width: 100%;
  overflow: hidden;
}

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

/*--------------------------------------------------------------
# Media Preview
--------------------------------------------------------------*/
.media-thumbnail {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
  height: auto;
}

.media-thumbnail iframe {
  width: 100%;
  object-fit: cover;
  filter: brightness(80%);
  border-radius: 20px;
}

.media-preview-section h1 {
  margin-bottom: 55px;
}

.media-preview-section h2 {
  margin-bottom: 5px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  z-index: 10;
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid #000;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .media-thumbnail {
    height: 400px;
  }
	
  .media-thumbnail iframe {
    height:100%;
  }
}

@media (max-width: 480px) {
  .media-thumbnail {
    height: 230px;
  }

  .play-button {
    width: 55px;
    height: 55px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials h1 {
  margin-bottom: 55px;
}

section.testimonials .testimonial-card {
  background: #fff;
  border-radius: 15px;
  border:1px solid #E7E9ED;
  padding: 30px;
  box-shadow: var(--Main-box-shadow);
  min-height: 230px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

section.testimonials .testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

section.testimonials .testimonial-user img {
  width: 51px !important;
  height: 51px !important;
  border-radius: 50%;
  object-fit: cover;
}

section.testimonials .stars {
  font-size: 14px;
  color: #f4c542;
  margin-top: 2px;
}

/* Custom Nav Buttons */

.owl-carousel {
  position: relative;
}

/* Position nav buttons vertically centered on left & right */
.owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 110%;
  transform: translateX(-4.5%) translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  /* allow clicks to pass except on buttons */
}

.owl-nav button {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  background: #fff !important;
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.owl-nav.disabled {
  display: flex !important;
}

.owl-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid #cdccd0 !important;
}

.owl-nav button i {
  font-size: 15px;
  color: var(--Text-black);
}

.owl-stage-outer {
  padding: 10px 0;
}

.owl-carousel .bi::before {
  font-weight: 800 !important;
}

.owl-carousel .owl-item {
  padding: 20px;
}

.owl-carousel .owl-stage {
  display: flex;
}

@media (max-width: 1200px) {
  .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }
}

/*--------------------------------------------------------------
# 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: 0.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: 0.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: 0.375rem 0.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 0.15s ease-in-out, box-shadow 0.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: 0.375rem 0.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 0.15s ease-in-out, box-shadow 0.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: 0.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
--------------------------------------------------------------*/
section.Footer-wrapper {
  padding-top: 50px;
  padding-bottom: 20px;
}

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

.footer-logo {
  background-color: var(--Background-white);
  border-radius: 10px;
  width: 211px;
  height: 126px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 94px;
  height: 114px;
}

.Footer-wrapper .Footer-heading h3 {
  font-size: 20px;
  font-family: var(--font-primary);
  color: var(--Text-white);
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.2px;
  margin-bottom: 15px;
}

.Footer-wrapper .contact-info {
  margin-bottom: 20px;
}

.Footer-wrapper {
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  line-height: 22px !important;
  color: var(--Text-white) !important;
}

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

.Footer-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.Footer-wrapper ul li {
  margin:0 !important; 
}
.Footer-wrapper ul li a {
  color: var(--Text-white);
	display:flex;
	gap:5px;
	align-items:start !important;
	font-size:14px !important;
	line-height:22px !important;
	letter-spacing:0.2px !important;
	font-weight:500 !important;
}
.Footer-wrapper ul li a img{
	margin-top:3px;
}

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


.Footer-wrapper .Footer-navigations {
  display: flex;
  align-items: 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;
}

@media (max-width:767px) {
  .footer-logo {
    width: auto;
  }
	.Footer-wrapper ul li a{
		justify-content:center;
	}
	.Footer-wrapper .Footer-navigations {
	justify-content:center;
}
}

/* Bottom-footer */
.bottom-footer {
  background-color: var(--Primary-color);
}

.bottom-footer-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  border-top: 1px solid var(--Text-white);
  padding: 20px 0;
}

.bottom-footer p {
  margin-right: auto !important;
}

.bottom-footer p,
.bottom-footer a {
  font-size: 12px !important;
  line-height: 24px !important;
  font-family: var(--font-primary) !important;
  color: var(--Text-white) !important;
  font-weight: 500 !important;
  letter-spacing: 0.2px !important;
}

.bottom-footer a:hover {
  color: var(--Secondary-color) !important;
}


@media (max-width:767px) {
  .bottom-footer-wrap {
    flex-direction: column;
    justify-content: center;
    gap: 0px;
	padding:20px !important;
  }

  .bottom-footer p {
    margin-right: 0 !important;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# 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: 0.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: 0.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: 0.375rem 2.25rem 0.375rem 0.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 0.15s ease-in-out, box-shadow 0.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;
	margin-top:7em;
}

.masses-banner::before {
  position: absolute;
  content: "";
  background-color: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.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;
}

@media (max-width:991px) {
	.masses-banner {
		margin-top:10em;
	}
}
/*--------------------------------------------------------------
# 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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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, 0.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: 0.375rem 0.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 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

select#category-select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.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 0.15s ease-in-out, box-shadow 0.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: .5em 0;
  }

  .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;
  }

  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-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: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 75%;
}

/* Banner slider ends90*/

/*--------------------------------------------------------------
# Stay Connected Section
--------------------------------------------------------------*/
.offerings-newsletter-heading h2{
  font-family: var(--font-primary) !important;
  font-size: 45px !important;
  font-weight: 800 !important;
  line-height: 60px !important;
  letter-spacing: 0.2px !important;
  margin-bottom: 20px !important;
  color: var(--Primary-color) !important;
}

.offerings-newsletter-para p{
  margin-bottom: 45px !important;
}

.form-details form{
	display:flex;
	align-items:center;
	justify-content:center;
	background: var(--Background-white) !important;
	border-radius: 40px;
    padding: 6px;
}
.tnp-field{
	margin:0px !important;
}
.form-details form input{
  border: none !important;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  background: var(--Background-white) !important;
  padding-left: 20px !important;
  font-family: var(--font-primary) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  letter-spacing: 0.2px !important;
  box-shadow: none !important;
}

.form-details form input:focus{
outline: none !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.form-details .tnp-field-email{
	width:100% !important;
}

.tnp-field-button .tnp-submit{
  background: var(--Primary-color) !important;
  color: var(--Background-white) !important;
  padding: 12px 35px !important;
  font-weight: 700 !important;
	font-size:14px !important;
	line-height:22px !important;
	letter-spacing:0.5px !important;
  border-radius: 40px !important;
  transition: 0.3s ease !important;
	text-transform: capitalize !important;
}

.tnp-field-button .tnp-submit:hover{
  background: var(--Secondary-color) !important;
  color: var(--Background-white) !important;
}

@media (max-width: 576px) {
  .form-details form {
    flex-direction: column;
    padding: 10px;
    border-radius: 20px;
  }
	
 .tnp-field-button {
    width: 100%;
  }
	
  .tnp-field-button .tnp-submit {
    width: 100%;
    margin-top: 10px;
    border-radius: 15px !important;
  }
	.form-details form input{
  	padding-left: 0px !important;
	border-top-left-radius: 0px;
 	border-bottom-left-radius: 0px;
 
}
}

/*--------------------------------------------------------------
# About Us - Three-Col-Cards-Section
--------------------------------------------------------------*/
.three-col-cards h1 {
  margin-bottom: 55px !important;
}

.cardcol-body-wrapper {
  background-color: var(--Background-white);
  box-shadow: var(--Main-box-shadow);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #E7E9ED;
  text-align: center;
  height: 100%;
}

.cardcol-body-wrapper img {
  border-radius: 10px;
  width: 100%;
  margin-bottom: 15px;
}

.read-more-btn {
  color: #0088FF;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #045dac;
}

.card-contents {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-contents h2 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-contents p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*--------------------------------------------------------------
# About Us - Four-Col-Carousel-Section
--------------------------------------------------------------*/

.four-col-carousel h1 {
  margin-bottom: 25px !important;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .owl-carousel .owl-item {
        padding: 0px !important;
    }
}

/*--------------------------------------------------------------
# About Us - FAQ
--------------------------------------------------------------*/
.FAQ-section h1 {
  margin-bottom: 55px !important;
}

.accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100% !important;
}

.accordion-item {
  width: 930px !important;
  border: 1px solid #D3D3D3 !important;
  border-radius: 8px !important;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);

}

.accordion-header {
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
}


.accordion-button {
  box-shadow: none !important;
  border-bottom: 1px solid rgb(255, 255, 255) !important;
  border-radius: 8px !important;
  color: #000000 !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--Background-white);
  border-bottom: 1px solid #D3D3D3 !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  color: #000000 !important;
}

@media (max-width:992px) {
  .accordion-item {
    width: 100% !important;
  }
}



