/*
Theme Name: WordPress Customized Theme
Theme URI: https://generatepress.com
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Version: 3.6.1
Requires at least: 6.5
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: generatepress
Tags: two-columns, three-columns, one-column, right-sidebar, left-sidebar, footer-widgets, blog, e-commerce, flexible-header, full-width-template, buddypress, custom-header, custom-background, custom-menu, custom-colors, sticky-post, threaded-comments, translation-ready, rtl-language-support, featured-images, theme-options

GeneratePress, Copyright 2014-2025 EDGE22 Studios LTD.
GeneratePress is distributed under the terms of the GNU GPL

GeneratePress is based on Underscores http://underscores.me/, (C) 2012-2025 Automattic, Inc.

Actual CSS can be found in /assets/css/ folder.
*/

/* Root Variables */
:root {
  /* Color Varibles */
  --primary_bg_color : #FFFFFF;
  --secondary_bg_color : #000000;
  --ternary_bg_color : #CCCCCC;
	
  --primary_txt_color: #FFFFFF;
  --secondary_txt_color: #000000;
  --ternary_txt_color: #CCCCCC;
	
  /* Font Families */
  --font_primary: 'Inter', Arial, sans-serif;
  /* --font_secondary: 'Georgia', 'Times New Roman', serif; */
	--btn_radius : 100px;
}

body {
  background-color: var(--primary_bg_color);
  color: var(--secondary_txt_color);
  font-family: var(--font_primary);
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
}
html{
	margin-top: 0 !important;
}
/* ========================= COMMON CSS START HERE ========================= */

/* ========================= COMMON SPACE CSS ========================= */
.common-padding70 {
  padding: 70px 0;
}

.common-padding50 {
  padding: 50px 0;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

/* ========================= COLOR CSS ========================= */
.bg-black {
  background-color: var(--secondary_bg_color);
}

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

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

.black {
  color: var(--secondary_txt_color);
}

.white {
  color: var(--primary_txt_color);
}

.grey {
  color: var(--ternary_txt_color);
}

/* ========================= COMMON HEADING CSS ========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

.sec-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}

.heading-type1 {
  font-size: 50px;
  line-height: 60px;
  font-weight: bold;
}

.heading-type2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: bold;
}

.heading-type3 {
  font-size: 22px;
  line-height: 26px;
  font-weight: bold;
}

/* ========================= CMS TEXT CSS ========================= */
.cms-text1 {
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
}

.cms-text2 {
  font-size: 18px;
  line-height: 22px;
  font-weight: normal;
}

/* ========================= POINT TYPE CSS ========================= */
.point-type1 {
  row-gap: 30px;
}

.point-type1 .point {
  font-size: 17px;
  line-height: 20px;
  color: var(--secondary_txt_color);
  font-weight: 700;
  padding-left: 50px;
  position: relative;
  display: flex;
  align-items: center;
}

.point-type1 .point::before {
  content: '';
  width: 35px;
  height: 35px;
  background: var(--ternary_bg_color);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.point-type1 .point::after {
  content: '';
  width: 20px;
  height: 20px;
  background: url(assets/images/check-icon-black.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}

/* ========================= BUTTON TYPE CSS ========================= */
.btn-type1 ,.btn-type1:focus{
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  background-color: var(--primary_bg_color);
  color: var(--secondary_txt_color);
  padding: 15px 20px;
  min-width: 165px;
  border-radius: var(--btn_radius);
}

.btn-type1:hover {
  background-color: var(--ternary_bg_color);
}

.btn-type2,.btn-type2:focus {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  background-color: var(--secondary_bg_color);
  color: var(--primary_txt_color);
  padding: 15px 20px;
  min-width: 165px;
  border-radius: var(--btn_radius);
  border: 1px solid var(--secondary_txt_color);
}

.btn-type2:hover {
  background-color: transparent;
}

.btn-type3,.btn-type3:focus {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  color: var(--primary_txt_color);
  text-decoration: none;
  transition: all 0.3s;
  padding: 15px 20px;
  border: 1px solid var(--primary_bg_color);
  border-radius: var(--btn_radius);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  min-width: 165px;
}

.btn-type3:hover {
  background-color: var(--primary_bg_color);
  color: var(--secondary_txt_color)
}

/* ========================= LINK TYPE CSS ========================= */
.link-type1 {
  display: inline-block;
  vertical-align: middle;
  color: var(--secondary_txt_color);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.link-type1:hover {
  text-decoration: none;
}
/* ========================= ACCORDION TYPE CSS ========================= */
.accordion-type1 .accordion-item:not(:last-child){
	margin-bottom: 15px;
}
.accordion-type1 .accordion-item .accordion-button {
	padding: 20px 30px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    background-color: var(--primary_bg_color);
    color: var(--secondary_txt_color);
    border-bottom: 0;
    box-shadow: none;
}
.accordion-type1 .accordion-item .accordion-button:not(.collapsed){
	color: var(--primary_txt_color);
    background-color: var(--secondary_bg_color);
}
.accordion-type1 .accordion-item .accordion-body{
	padding: 20px 30px;
}
.accordion-type1 .accordion-item .accordion-button::after{
	background:url("assets/images/plus-icon.svg");
}
.accordion-type1 .accordion-item .accordion-button:not(.collapsed)::after{
	background:url("assets/images/minus-icon-white.svg");
}
/* ========================= COMMON BANNER SECTION CSS ========================= */
.common-banner-sec .bg-img{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 400px;
}
/* ========================= FOOTER CSS ========================= */
.footer-sec {
  background-color: var(--secondary_bg_color);
  padding: 50px 0;
  color: var(--primary_txt_color);
  position: relative;
}

.footer-sec .ft-sec-header {
  font-size: 22px;
  line-height: 25px;
  color: var(--primary_txt_color);
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-sec .ft-sec-content {
  margin-bottom: 30px;
}

.footer-sec .footer-social .social-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.footer-sec .footer-social .social-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary_bg_color);
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
}

.footer-sec .footer-social .social-list li a img {
  transition: transform 0.3s ease;
}

.footer-sec .footer-social .social-list li a:hover {
  background-color: var(--ternary_bg_color);
}

.footer-sec .footer-social .social-list li a:hover img {
  transform: scale(1.15);
}

.footer-sec .footer-links .footer-menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 0;
}

.footer-sec .footer-links .footer-menu li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-sec .footer-links .footer-menu li a {
  display: inline-block;
  vertical-align: middle;
  color: var(--primary_txt_color);
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-sec .footer-links .footer-menu li.current-menu-item a,
.footer-sec .footer-links .footer-menu li a:hover {
  color: var(--ternary_txt_color);
  text-decoration: underline;
}

.footer-sec .footer-links .footer-menu li {
  padding-left: 25px;
  position: relative;
}

.footer-sec .footer-links .footer-menu li::before {
  content: '';
  position: absolute;
  background: url("assets/images/right-arrow-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer-sec .ft-about-sec,
.footer-sec .ft-newsletter-sec {
  margin-right: 50px;
}

.scroll-to-top {
  background: var(--primary_bg_color) url("assets/images/top-arrow-black.svg");
  display: block;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  position: fixed;
  border: 1px solid var(--ternary_bg_color);
  right: 30px;
  bottom: 30px;
  transition: all 0.3s;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

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

.scroll-to-top:hover {
  background: var(--ternary_bg_color) url("assets/images/top-arrow-white.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
}

.footer-sec .copyright-sec {
  padding-top: 50px;
}

.footer-sec .copyright-sec a {
  color: var(--primary_txt_color);
  text-decoration: none;
  display: inline-block;
}

.footer-sec .copyright-sec a:hover {
  text-decoration: underline;
  color: var(--ternary_txt_color);
}

.footer-sec .ft-newsletter-sec .newsletter-box {
  display: flex;
  align-items: center;
}

.footer-sec .ft-newsletter-sec .newsletter-box .form-control {
  width: 100%;
  border: none;
  box-shadow: none;
  border-radius: 10px 0 0 10px;
  font-size: 16px;
  line-height: 20px;
  color: var(--secondary_txt_color);
  padding: 15px;
}

.footer-sec .ft-newsletter-sec .newsletter-box .form-control::placeholder {
  color: var(--ternary_txt_color);
}

.footer-sec .ft-newsletter-sec .newsletter-box submit {
  background: var(--ternary_bg_color);
  border-radius: 0 10px 10px 0;
  font-size: 16px;
  line-height: 20px;
  color: var(--secondary_txt_color);
  padding: 15px;
  font-weight: 500;
  cursor: pointer;
  min-width: 115px;
  text-align: center;
}

/* ========================= HEADER CSS ========================= */
.header-sec {
  background-color: var(--secondary_bg_color);
  transition: all 0.3s ease;
  z-index: 999;
  width: 100%;
}

.header-sec.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-sec .custom-logo-link {
  display: inline-block;
}
.header-sec .custom-logo-link:focus{
	outline:none;
}
/* .header-sec .custom-logo-link img {
  width: 170px;
  height: 135px;
  object-fit: cover;
  margin-bottom: -30px;
  position: relative;
  z-index: 1;
} */

.header-sec .header-menu-wrapper .header-menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.header-sec .header-menu-wrapper .header-menu li a {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--primary_txt_color);
  text-decoration: none;
  transition: all 0.3s;
}

.header-sec .header-menu-wrapper .header-menu li a:hover,
.header-sec .header-menu-wrapper .header-menu li.current-menu-item a {
  color: var(--ternary_txt_color);
  text-decoration: underline;
}

.header-sec .header-right-wrapper .search-btn {
  display: block;
  background: url("assets/images/search-icon-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 20px;
  height: 20px;
}

.header-sec .header-right-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.header-sec .header-right-wrapper .cart-btn {
  display: block;
  background: url("assets/images/cart-icon-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 20px;
  height: 20px;
}

/* ========================= CARD BOX SECTION CSS ========================= */
.card-box-sec .sec-top-info {
  margin: 0 auto;
}

.card-box-sec .card-box {
  padding: 35px;
  height: 100%;
  text-align: center;
  cursor: pointer;
  background: var(--primary_bg_color);
  transition: all 0.3s;
}

.card-box-sec .card-box:hover {
  background: var(--secondary_bg_color);
  color: var(--primary_txt_color);
}

.card-box-sec .card-box .card-img img {
  width: 100%;
  object-fit: cover;
	max-height:300px;
}

.card-box-sec .card-box .card-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  background-color: var(--primary_bg_color);
  border-radius: 100%;
  margin-top: -65px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.card-box-sec .card-box:hover .card-icon {
  background-color: var(--secondary_bg_color);
}

.card-box-sec .card-box:hover .card-icon img {
  filter: invert(100%) sepia(1%) saturate(1%) hue-rotate(1deg) brightness(1000%) contrast(100%) !important;
}

/* ========================= WELCOME SECTION CSS ========================= */
.welcome-sec .img-wrapper img {
  max-width: 515px;
  max-height: 680px;
  object-fit: cover;
  border-radius: 15px;
}

.welcome-sec .welcome-sec-right .intro-text {
  padding-left: 20px;
  border-left: 3px solid var(--ternary_bg_color);
}

.welcome-sec .img-wrapper {
  position: relative;
}

.welcome-sec .img-wrapper .image-overlay-text {
  max-width: 300px;
  background-color: var(--secondary_bg_color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 20px;
  position: absolute;
  right: 60px;
  bottom: 0;
  color: var(--ternary_txt_color);
  text-align: center;
  gap: 10px;
}

.welcome-sec .img-wrapper .image-overlay-text h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: bold;
  margin-bottom: 0;
}

.welcome-sec .img-wrapper .image-overlay-text h3 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 0;
}

/* ========================= BANNER SECTION CSS ========================= */
.banner-sec {
  width: 100%;
  overflow: hidden;
}
.banner-sec .banner-slider-wrapper{
	position:relative;
}
.banner-sec .banner-content .slide-content p:first-child {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  text-transform:uppercase;
}

.banner-sec .banner-content .slide-content h1,
.banner-sec .banner-content .slide-content h2,
.banner-sec .banner-content .slide-content h3,
.banner-sec .banner-content .slide-content h4,
.banner-sec .banner-content .slide-content h5,
.banner-sec .banner-content .slide-content h6 {
  font-size: 50px;
  line-height: 60px;
  font-weight: bold;
  margin: 15px 0;
}

.banner-sec .banner-content .slide-content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: normal;
  margin-bottom: 30px;
}

.banner-sec .banner-slide {
  background-size: cover;
  background-position: center;
  display: flex !important;
  align-items: center;
  position: relative;
  height: 100vh;
}

.banner-sec .banner-content {
  position: relative;
  color: #fff;
  max-width: 600px;
  z-index: 2;
}

.banner-sec .banner-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.banner-sec .banner-slider-arrows {
    position: absolute;
    top: 50%;
    right: calc(50% - (100% / 2) + 0.75rem);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9;
}
@media (min-width: 992px) {
	.banner-sec .banner-slider-arrows {
		right: calc(50% - 480px + 0.75rem);
	}
}
@media (min-width: 1200px) {
	.banner-sec .banner-slider-arrows {
		right: calc(50% - 570px + 0.75rem);
	}
}
@media (min-width: 1400px) {
	.banner-sec .banner-slider-arrows {
		right: calc(50% - 660px + 0.75rem);
	}
}
@media (max-width: 992px) {
	.banner-sec .banner-slider-arrows {
		bottom: 100px;
		right: auto;
		transform: none;
		top: auto;
		left: calc(50% - 360px + 0.75rem);
		flex-direction: row;
	}
}
@media (max-width: 767px) {
	.banner-sec .banner-slider-arrows {
		left: calc(50% - 270px + 0.75rem);
	}
}
@media (max-width: 576px) {
	.banner-sec .banner-slider-arrows {
		 left: calc(50% - (100% / 2) + 0.75rem);
	}
}
.banner-sec .slick-arrow {
  font-size: 0;
  line-height: 0;
  background-color: var(--primary_bg_color);
  padding: 0;
  width: 45px;
  height: 45px;
  border: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: all 0.3s;
}

.banner-sec .slick-arrow:hover {
  background-color: var(--ternary_bg_color);
}

.banner-sec .slick-arrow::before {
  content: '';
  position: absolute;
  background: url(assets/images/right-arrow-black.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 20px;
  height: 20px;
}

.banner-sec .slick-arrow.prev-arrow {
  transform: rotate(180deg);
}
/* ========================= SPECIALTIES SECTION CSS ========================= */
.specialties-section .sec-top-info {
  max-width: 700px;
  margin: 0 auto;
}

.specialties-section .services-post .service-box {
  display: block;
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.specialties-section .services-post .service-box img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  transition: opacity 0.4s ease;
	max-height:300px;
	min-height:300px;
}

.specialties-section .services-post .service-box:hover img {
  opacity: 0.7;
}

.specialties-section .services-post .service-box h3 {
  text-align: center;
  background: var(--primary_bg_color);
  padding: 40px 20px;
  color: var(--secondary_txt_color);
  border-radius: 0 0 15px 15px;
}

/* ========================= SERVICES SECTION CSS ========================= */
.services-sec .sec-top-info {
  max-width: 600px;
  margin: 0 auto;
}

.services-sec .service-category .service-category-box {
  border-radius: 15px;
  padding: 50px;
  background: var(--primary_bg_color);
  text-align: center;
  height: 100%;
  cursor: pointer;
}

.services-sec .service-category {
  row-gap: 20px;
}

.service-category-box img {
  height: 80px;
  object-fit: contain;
  width: auto;
}

.services-sec .service-category .service-category-box:hover {
  background: var(--secondary_bg_color);
  color: var(--primary_txt_color);
}

.services-sec .service-category .service-category-box:hover img {
  filter: invert(100%) sepia(1%) saturate(1%) hue-rotate(1deg) brightness(1000%) contrast(100%) !important;
}

/* ========================= OUR MINISTERS SECTION CSS ========================= */
.our-ministers-sec .connection-items-wrapper .item {
  display: flex;
  align-items: start;
  gap: 15px;
  margin-bottom: 40px;
}

.our-ministers-sec .connection-items-wrapper .item:last-child {
  margin-bottom: 0;
}

.our-ministers-sec .connection-items-wrapper .item img {
  flex: 0 0 50px;
  object-fit: none;
}

.our-ministers-sec .connection-items-wrapper .item .content-wrapper {
  flex-grow: 1;
}
.our-ministers-sec .minister-img {
	max-height: 640px;
    width: 100%;
    object-fit: fill;
}
/* ========================= UPCOMING EVENT SECTION CSS ========================= */
.upcoming-sec {
  margin-bottom: -70px;
}

.upcoming-sec .upcoming-sec-wrapper {
  padding: 50px;
  border-radius: 15px;
  position: relative;
  background: var(--ternary_bg_color);
  overflow: hidden;
  z-index: 2;
}

.upcoming-sec .upcoming-sec-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  right: -25%;
  width: 70%;
  height: 100%;
  background: var(--secondary_bg_color);
  transform: skewX(325deg);
  transform-origin: top left;
  z-index: 0;
}

.upcoming-sec .upcoming-sec-wrapper * {
  position: relative;
  z-index: 1;
}

.upcoming-sec .countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.upcoming-sec .countdown .time-box {
  width: 150px;
  height: 150px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--secondary_txt_color);
  background: var(--primary_bg_color);
  border-radius: 100%;
  box-shadow: inset 0 0 10px var(--ternary_bg_color);
  flex-direction: column;
  gap: 5px;
}

.upcoming-sec .countdown .time-box .count {
  font-size: 44px;
  line-height: 50px;
  font-weight: bold;
}

/* ========================= VIDEO SECTION CSS ========================= */
.video-sec .sec-bg {
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.video-sec .sec-bg:after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.video-sec .video-btn-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-sec .row {
  position: relative;
  z-index: 1;
}

.video-sec .play-btn {
  transition: all 0.3s;
  display: inline-block;
}

.video-sec .play-btn:hover img {
  opacity: 0.8;
}

/* ========================= READY TO HELP SECTION CSS ========================= */
.ready-help-sec .cta-items-wrapper {
  margin: 40px 0;
}

.ready-help-sec .cta-items-wrapper .item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.ready-help-sec .cta-items-wrapper .item img {
  flex: 0 0 75px;
}

.ready-help-sec .cta-items-wrapper .item:last-child {
  margin-bottom: 0;
}

.ready-help-sec .ready-help-sec-right {
  display: flex;
  gap: 20px;
  position: relative;
  width: max-content;
}

.ready-help-sec .ready-help-sec-right img {
  border-radius: 15px;
  object-fit: cover;
}

.ready-help-sec .ready-help-sec-right .circle-content {
  width: 200px;
  height: 200px;
  aspect-ratio: 1;
  background: var(--ternary_bg_color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 5px solid var(--primary_bg_color);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ready-help-sec .ready-help-sec-right h2 {
  font-size: 22px;
  line-height: 26px;
  font-weight: bold;
}

.ready-help-sec .ready-help-sec-right h3 {
  font-size: 18px;
  line-height: 22px;
  font-weight: normal;
  margin-bottom: 0;
}

/* ========================= JOIN US SECTION CSS ========================= */
.join-us-sec {
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.join-us-sec .row {
  position: relative;
  z-index: 1;
}

.join-us-sec:after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.join-us-sec .contact-box {
  padding: 50px;
  text-align: center;
  margin-top: -180px;
  max-width: 375px;
  background-color: var(--secondary_bg_color)
}

.join-us-sec .contact-box .contact-info a {
  color: var(--primary_txt_color);
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  display: block;
  transition: all 0.3s;
  position: relative;
}

.join-us-sec .contact-box .contact-info a:hover {
  text-decoration: underline;
}

.join-us-sec .contact-box .contact-info a::before {
  content: '';
  background: var(--primary_bg_color);
  opacity: 0.4;
  height: 0.5px;
  width: 100%;
  display: inline-block;
  position: absolute;
  top: -17px;
  left: 0;
}

.join-us-sec .contact-box .contact-info {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 25px;
}

/* ========================= MISSION SECTION CSS ========================= */
.mission-sec .images-wrapper img {
  border: 10px solid var(--primary_bg_color);
}

.mission-sec .images-wrapper img.small-img {
  border: 10px solid var(--primary_bg_color);
  text-align: right;
  display: block;
  margin: -300px 0 0 auto;
  z-index: 1;
  position: relative;
}

/* ========================= BLOG SECTION CSS ========================= */
.blog-sec .blog-image a {
  width: 100%;
}

.blog-sec .blog-image a img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity 0.4s ease;
	max-height:300px;
}

.blog-sec .blog-image a:hover img {
  opacity: 0.7;
}

.blog-sec .blog-content .blog-date {
  font-weight: 600;
}

.blog-sec .blog-content .blog-title a {
  color: var(--secondary_txt_color);
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.blog-sec .blog-content .blog-title a:hover {
  color: var(--ternary_txt_color);
  text-decoration: underline;
}
.blog-sec .blog-content .content{
	-webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.blog-sec .blog-slider-arrows {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-sec .blog-slider-arrows .slick-arrow::before {
  content: '';
  position: absolute;
  background: url(assets/images/right-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 20px;
  height: 20px;
}

.blog-sec .blog-slider-arrows .slick-arrow.prev-arrow {
  transform: rotate(180deg);
}

.blog-sec .blog-slider-arrows .slick-arrow {
  font-size: 0;
  line-height: 0;
  background-color: var(--secondary_bg_color);
  padding: 0;
  width: 45px;
  height: 45px;
  border: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: all 0.3s;
}

.blog-sec .blog-slider {
  margin: 0 -15px;
}

.blog-sec .blog-slider .blog-box {
  padding: 0 15px;
}

.blog-sec .slick-arrow:hover {
  background-color: var(--ternary_bg_color);
}

/* ========================= GET INVOLVED SECTION CSS ========================= */
.get-involved-sec {
  position: relative;
}

.get-involved-sec::before {
  content: '';
  background: var(--ternary_bg_color);
  width: 50%;
  left: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  display: inline-block;
}

.get-involved-sec::after {
  content: '';
  background: var(--secondary_bg_color);
  width: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  display: inline-block;
}

.get-involved-sec .row {
  position: relative;
  z-index: 1;
}

.get-involved-sec .image-part {
  height: 100%;
}

.get-involved-sec .image-part img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  min-height: 100%;
}

.get-involved-sec .content-part {
  background: var(--primary_bg_color);
  padding: 50px;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.get-involved-sec .content-part a {
  width: fit-content;
}

.get-involved-sec .donation-progress-wrapper {
  margin: 40px 0;
}

.get-involved-sec .donation-progress-wrapper .donation-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.get-involved-sec .donation-progress-wrapper .progress {
  background: var(--ternary_bg_color);
  border-radius: 5px;
  height: 8px;
}

.get-involved-sec .donation-progress-wrapper .progress .progress-bar {
  background-color: var(--secondary_bg_color);
}

/* ========================= PRODUCT SECTION CSS ========================= */
.product-sec .product-wrapper .product-box .product-image {
  background: var(--primary_bg_color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
}

.product-sec .product-wrapper .product-box .product-content .product-title a {
  width: 100%;
  height: 100%;
  background: var(--secondary_bg_color);
  padding: 30px;
  text-align: center;
  color: var(--primary_txt_color);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.product-sec .product-image {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-sec .product-hover-content {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-100%);
  opacity: 0;
  transition:
    transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 0.45s ease-out;
  will-change: transform, opacity;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.product-sec .product-box:hover .product-hover-content {
  transform: translateY(0);
  opacity: 1;
}

/* ========================= BLOG LISTING SECTION CSS ========================= */
.blog-list-sec .blog-list .blog-item {
  display: flex;
  gap: 30px;
  margin: 0 0 30px 0;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}

.blog-list-sec .blog-list .blog-item:last-child {
  margin-bottom: 0;
}

.blog-list-sec .blog-list .blog-item .blog-image a {
  display: inline-block;
  height: 100%;
}

.blog-list-sec .blog-list .blog-item .blog-image a img {
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
  max-width: 250px;
  max-height: 250px;
}

.blog-list-sec .blog-list .blog-item .blog-title a {
  color: var(--secondary_txt_color);
  transition: all 0.3s;
  text-decoration: none;
}

.blog-list-sec .blog-list .blog-item .blog-title a:hover {
  text-decoration:underline;
}

.blog-list-sec .blog-list {
  padding-right: 30px;
}
.blog-list-sec .blog-list .blog-item .blog-content .blog-excerpt{
	-webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
/* ========================= PAGINATION CSS ========================= */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.pagination-text {
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--secondary_txt_color);
  text-decoration: none;
  cursor: pointer;
}

.pagination-text:hover {
  color: var(--ternary_txt_color);
}

.pagination-text.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.pagination-numbers ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-numbers li a,
.pagination-numbers li span {
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--secondary_txt_color);
  text-decoration: none;
  cursor: pointer;
}

.pagination-numbers li span.current {
  font-weight: 800;
  text-decoration: underline;
}

/* ========================= SIDEBAR CSS ========================= */
.sidebar {
  padding: 20px;
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.sidebar .widget {
  margin-bottom: 20px;
}

.sidebar .widget.widget_search input {
  border: 1px solid var(--ternary_bg_color);
  border-radius: 5px;
  background: var(--primary_bg_color);
  outline: none;
  padding: 10px;
  color: var(--secondary_txt_color);
  font-size: 16px;
  line-height: 20px;
}

.sidebar .widget .wp-block-search__button {
  display: block;
  background: var(--secondary_bg_color) url(assets/images/search-icon-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  width: 40px;
  height: 40px;
  font-size: 0;
  border-radius: 5px;
  transition: all 0.3s;
}

.sidebar .widget .wp-block-search__button:hover {
  background: var(--ternary_bg_color) url(assets/images/search-icon-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
}

.sidebar .recent-post li:not(:last-child),
.sidebar .archive li:not(:last-child) {
  margin-bottom: 10px;
}

.sidebar .recent-post li a,
.sidebar .archive li a {
  display: inline-block;
  transition: all 0.3s;
  color: var(--secondary_txt_color);
  font-size: 16px;
  line-height: 20px;
}

.sidebar .recent-post li a:hover,
.sidebar .archive li a:hover {
  text-decoration: none;
}

.sidebar ul {
  margin: 0;
  padding: 0;
}
/* ========================= BLOG DETAIL CSS ========================= */
.blog-detail-sec .blog-detail {
	padding: 20px;
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
	margin-right:30px;
}
.blog-detail-sec .blog-detail .blog-image img{
	border-radius: 5px;
    object-fit: cover;
    width: 100%;
	max-height:500px;
}
.blog-detail-sec .blog-detail .blog-description p:last-child{
	margin-bottom:0;
}
/* ========================= ABOUT US PAGE CSS ========================= */
.aboutpage-content .page_content{
	margin-right: 30px;
}
.aboutpage-content .page_content p:last-child{
	margin-bottom:0;
}
/* ========================= CONTACT US PAGE CSS ========================= */
.contact-page .contact-form label,
.contact-page .contact-form label span{
	width:100%;
}
.contact-page .contact-form-wrapper{
	margin-right:30px;
}
.contact-page .contact-form label{
	margin-bottom: 20px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}
.contact-page .contact-form label input,
.contact-page .contact-form label textarea{
	box-shadow: none;
    border: 1px solid var(--ternary_bg_color);
    border-radius: 5px;
    background: var(--primary_bg_color);
    outline: none;
    padding: 15px;
    color: var(--secondary_txt_color);
    font-size: 16px;
    line-height: 20px;
    width: 100%;
}
.contact-page .contact-form label input::placeholder{
	color: rgba(0, 0, 0, 0.07);
}
.contact-page .contact-form .wpcf7-submit{
    background-color: var(--secondary_bg_color) !important;
    color: var(--primary_txt_color) !important;
    padding: 15px 20px !important;
    border: 1px solid var(--secondary_bg_color) !important;
}
.contact-page .contact-form .wpcf7-submit:hover{
	background-color: transparent !important;
    color: var(--secondary_txt_color) !important;
}
.contact-page .contact-info{
	padding: 20px;
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.contact-page .contact-info .contact-links{
	display:flex;
	flex-wrap:wrap;
	flex-direction:column;
	gap:15px;
}
/* ========================= GALLERY PAGE CSS ========================= */
.gallery-container .gallery-grid a img{
	width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.gallery-container .gallery-grid {
	row-gap:25px;
}
/* ========================= SEARCH CONTROL CSS ========================= */
.seacrh-popup {
    position: fixed;
    left: 0;
    width: 100%;
    height: 400px;
    background-color: var(--primary_bg_color);
    top: 0; 
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.open-seacrh-popup .seacrh-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

.search-overlay-bg {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    z-index: 100;
}

.open-seacrh-popup .search-overlay-bg {
    opacity: 1;
    visibility: visible;
}

.open-seacrh-popup {
    overflow: hidden;
}

.seacrh-popup .search-intro {
    max-width: 800px;
    margin: 0 auto;
}

.seacrh-popup .search-intro p {
    margin-bottom: 0;
}

.seacrh-popup .search-close-btn {
	background: var(--secondary_bg_color) url(assets/images/close-icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
    color: var(--primary_txt_color);
    font-size: 30px;
    opacity: 1;
    border-radius: 8px;
    top: 20px;
    right: 20px;
    font-weight: 100;
    transition: all 0.3s;
    width: 30px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seacrh-popup .search-close-btn:hover {
    background-color: var(--ternary_bg_color);
}

.seacrh-popup .search-form .search-field {
	box-shadow: none;
    border: 1px solid var(--ternary_bg_color);
    border-radius: 5px;
    background: var(--primary_bg_color);
    outline: none;
    padding: 15px;
    color: var(--secondary_txt_color);
    font-size: 16px;
    line-height: 20px;
    width: 100%;
}
.seacrh-popup .search-form .search-field::placeholder{
	color: rgba(0, 0, 0, 0.07);
}
.seacrh-popup .search-form input[type=submit]{
	background-color: var(--secondary_bg_color) !important;
    color: var(--primary_txt_color) !important;
    padding: 15px 20px !important;
    border: 1px solid var(--secondary_bg_color) !important;
}
.seacrh-popup .search-form input[type=submit]:hover{
	background-color: transparent !important;
    color: var(--secondary_txt_color) !important;
}
/* ========================= SEARCH PAGE CSS ========================= */
.search-page ul{
	margin: 0;
    padding: 0;
}
.search-page ul li{
	list-style-type: none;
    margin-bottom: 10px;
}
.search-page ul li:last-child {
	margin-bottom:0;
}
.search-page ul li a{
	font-size: 16px;
    line-height: 20px;
    font-weight: normal;
    color: var(--secondary_txt_color);
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
	transition:all 0.3s;
}
.search-page ul li a:hover{
	text-decoration:none;
}
/* ========================= RESPONSIVE CSS ========================= */
@media(max-width:1199px) {

  /* ========================= COMMON HEADING CSS ========================= */
  .heading-type1 {
    font-size: 45px;
    line-height: 55px;
  }

  .heading-type2 {
    font-size: 35px;
    line-height: 45px;
  }

  .heading-type3 {
    font-size: 20px;
    line-height: 25px;
  }

  /* ========================= FOOTER CSS ========================= */
  .footer-sec .ft-about-sec,
  .footer-sec .ft-newsletter-sec {
    margin-right: 20px;
  }

  /* ========================= HEADER CSS ========================= */
  .header-sec .header-menu-wrapper .header-menu {
    gap: 30px;
  }

  .header-sec .btn-type1 {
    min-width: 140px;
  }

  /* ========================= CARD BOX SECTION CSS ========================= */
  .card-box-sec .card-box {
    padding: 25px;
  }

  .card-box-sec .row {
    row-gap: 20px;
  }
	.card-box-sec .card-box .card-img img{
		max-height:230px;
	}
  /* ========================= WELCOME SECTION CSS ========================= */
  .welcome-sec .img-wrapper img {
    max-width: 100%;
    width: 420px;
    max-height: 500px;
  }

  .welcome-sec .img-wrapper .image-overlay-text {
    right: 0;
    max-width: 250px;
    padding: 30px 20px;
  }

  .welcome-sec .img-wrapper .image-overlay-text h2 {
    font-size: 35px;
    line-height: 42px;
  }

  .welcome-sec .img-wrapper .image-overlay-text h3 {
    font-size: 20px;
    line-height: 26px;
  }

  /* ========================= SPECIALTIES SECTION CSS ========================= */
  .specialties-section .sec-top-info {
    max-width: 635px;
  }

  .specialties-section .services-post .service-box h3 {
    padding: 30px 20px;
  }

	.specialties-section .services-post .service-box img {
		max-height:250px;
		min-height:250px;
	}
  /* ========================= SERVICES SECTION CSS ========================= */
  .service-category-box img {
    height: 70px;
  }

  .services-sec .service-category .service-category-box {
    padding: 40px 20px;
  }

  /* ========================= UPCOMING EVENT SECTION CSS ========================= */
  .upcoming-sec .upcoming-sec-wrapper {
    padding: 40px;
  }

  .upcoming-sec .countdown .time-box {
    width: 115px;
    height: 115px;
  }

  .upcoming-sec .countdown .time-box .count {
    font-size: 40px;
    line-height: 45px;
  }

  /* ========================= JOIN US SECTION CSS ========================= */
  .join-us-sec .contact-box {
    max-width: 350px;
  }

  /* ========================= BLOG SECTION CSS ========================= */
  .blog-sec .blog-slider {
    margin: 0 -10px;
  }

  .blog-sec .blog-slider .blog-box {
    padding: 0 10px;
  }

  /* ========================= GET INVOLVED SECTION CSS ========================= */
  .get-involved-sec .content-part {
    padding: 40px;
  }

  /* ========================= BANNER SECTION CSS ========================= */
  .banner-sec .banner-content .slide-content h1,
  .banner-sec .banner-content .slide-content h2,
  .banner-sec .banner-content .slide-content h3,
  .banner-sec .banner-content .slide-content h4,
  .banner-sec .banner-content .slide-content h5,
  .banner-sec .banner-content .slide-content h6 {
    font-size: 45px;
    line-height: 55px;
  }

  /* ========================= PRODUCT SECTION CSS ========================= */
  .product-sec .product-wrapper {
    row-gap: 20px;
  }

  /* ========================= BLOG SECTION CSS ========================= */
  .blog-list-sec .blog-list .blog-item .blog-image a img {
    max-width: 200px;
    max-height: 200px;
  }

  .blog-list-sec .blog-list .blog-item {
    gap: 20px;
  }

  .blog-list-sec .blog-list {
    padding-right: 10px;
  }
  .blog-detail-sec .blog-detail {
	margin-right:10px;
  }
}

@media(max-width:992px) {

  /* ========================= COMMON HEADING CSS ========================= */
  .heading-type1 {
    font-size: 42px;
    line-height: 50px;
  }

  .heading-type2 {
    font-size: 32px;
    line-height: 40px;
  }

  .heading-type3 {
    font-size: 20px;
    line-height: 25px;
  }

  /* ========================= COMMON SPACE CSS ========================= */
  .common-padding70 {
    padding: 60px 0;
  }

  .common-padding50 {
    padding: 40px 0;
  }

  .mb-50 {
    margin-bottom: 40px !important;
  }

  .mt-50 {
    margin-top: 40px !important;
  }

  /* ========================= FOOTER CSS ========================= */
  .footer-sec .ft-about-sec,
  .footer-sec .ft-newsletter-sec {
    margin-right: 0;
  }

  .footer-sec .row {
    row-gap: 30px;
  }

  .footer-sec .ft-sec-header {
    margin-bottom: 20px;
  }

  .footer-sec .ft-sec-content {
    margin-bottom: 20px;
  }

  .footer-sec .copyright-sec {
    padding-top: 30px;
  }

  .footer-sec .copyright-sec .row {
    row-gap: 15px;
  }

  /* ========================= HEADER CSS ========================= */
  .header-sec .header-menu-wrapper {
    display: none;
  }

  .header-sec .menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2;
  }

  .header-sec .menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary_bg_color);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .header-sec .menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .header-sec .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .header-sec .menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header-sec #mobileMenu .header-menu-wrapper {
    display: block;
  }

  .header-sec #mobileMenu {
    background-color: var(--secondary_bg_color);
  }

  .header-sec #mobileMenu .header-menu {
    flex-wrap: wrap;
    justify-content: start;
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }

  .header-sec #mobileMenu .header-menu li {
    border-bottom: 1px solid var(--ternary_bg_color);
    padding: 15px 0;

  }

  .header-sec #mobileMenu .header-menu li a {
    width: 100%;
    text-align: left;
    color: var(--primary_txt_color);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-decoration: none;
    display: block;
  }

  .header-sec #mobileMenu .header-menu li {
    width: 100%;
  }

  .header-sec #mobileMenu .custom-logo-link img {
    width: 115px;
    height: 100px;
    margin-bottom: 0;
  }

  .header-sec #mobileMenu .offcanvas-header .btn-close {
    background: url(assets/images/close-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 20px;
    height: 20px;
    opacity: 1;
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 1;
  }

  .header-sec .btn-type1 {
    display: none;
  }

  .header-sec #mobileMenu .btn-type1 {
    display: block;
    margin-top: 20px;
  }

  /* ========================= WELCOME SECTION CSS ========================= */
  .welcome-sec .img-wrapper img {
    width: 650px;
  }

  .welcome-sec .row {
    row-gap: 30px;
  }

  /* ========================= SPECIALTIES SECTION CSS ========================= */
  .specialties-section .sec-top-info {
    max-width: 100%;
  }

  .specialties-section .services-post {
    row-gap: 20px;
  }

  /* ========================= SERVICES SECTION CSS ========================= */
  .service-category-box img {
    height: 60px;
  }

  /* ========================= OUR MINISTERS SECTION CSS ========================= */
  .our-ministers-sec .connection-items-wrapper .item {
    margin-bottom: 30px;
  }

  /* ========================= UPCOMING EVENT SECTION CSS ========================= */
  .upcoming-sec .upcoming-sec-wrapper:after {
    width: 65%;
    right: -32%;
  }

  .upcoming-sec .upcoming-sec-wrapper .row {
    row-gap: 20px;
  }

  .upcoming-sec {
    margin: 50px 0;
  }

  /* ========================= READY TO HELP SECTION CSS ========================= */
  .ready-help-sec .cta-items-wrapper {
    margin: 30px 0;
  }

  .ready-help-sec .cta-items-wrapper .item {
    margin-bottom: 20px;
  }

  .ready-help-sec .row {
    row-gap: 30px;
  }

  /* ========================= UPCOMING EVENT SECTION CSS ========================= */

  .ready-help-sec .ready-help-sec-right {
    width: auto;
  }

  .ready-help-sec .ready-help-sec-right img {
    width: calc(50%);
  }

  /* ========================= JOIN US SECTION CSS ========================= */
  .join-us-sec .contact-box {
    margin-top: 0;
    max-width: 100%;
  }

  .join-us-sec {
    height: auto;
  }

  .join-us-sec .row {
    gap: 30px;
  }

  /* ========================= GET INVOLVED SECTION CSS ========================= */
  .get-involved-sec .donation-progress-wrapper {
    margin: 30px 0;
  }

  .get-involved-sec .content-part {
    padding: 30px;
  }

  /* ========================= BANNER SECTION CSS ========================= */
  .banner-sec .banner-content .slide-content h1,
  .banner-sec .banner-content .slide-content h2,
  .banner-sec .banner-content .slide-content h3,
  .banner-sec .banner-content .slide-content h4,
  .banner-sec .banner-content .slide-content h5,
  .banner-sec .banner-content .slide-content h6 {
    font-size: 42px;
    line-height: 50px;
  }

  .banner-sec .banner-content .slide-content p {
    margin-bottom: 20px;
  }
	.banner-sec .banner-slide {
  height: 650px;
}
  /* ========================= BLOG LISTING SECTION CSS ========================= */
  .blog-list-sec .row {
    row-gap: 30px;
  }
	    .blog-list-sec .blog-list {
        padding-right: 0;
    }
	/* ========================= BLOG DETAILS CSS ========================= */
	.blog-detail-sec .row{
		row-gap:30px;
	}
	    .blog-detail-sec .blog-detail {
        margin-right: 0;
    }
	
	/* ========================= MISSION SECTION CSS ========================= */

	.mission-sec .row{
		row-gap:30px;
	}
	/* ========================= ABOUT US PAGE CSS ========================= */
	.aboutpage-content .row{
		row-gap: 30px;
	}
	.aboutpage-content .page_content{
		margin-right: 0;
	}
	/* ========================= CONTACT US PAGE CSS ========================= */
	.contact-page .row{
		row-gap: 30px;
	}
	.contact-page .contact-form-wrapper{
		margin-right:0;
	}
}

@media(max-width:767px) {

  /* ========================= WELCOME SECTION CSS ========================= */
  .welcome-sec .img-wrapper img {
    width: 450px;
  }

  .welcome-sec .img-wrapper .image-overlay-text h2 {
    font-size: 30px;
    line-height: 40px;
  }

  /* ========================= BANNER SECTION CSS ========================= */
  .banner-sec .banner-slide {
    height: 600px;
  }

  .banner-sec .banner-content {
    max-width: 100%;
  }

  /* ========================= SPECIALTIES SECTION CSS ========================= */
  .specialties-section .sec-top-info {
    max-width: 100%;
  }

  .specialties-section .services-post {
    row-gap: 20px;
  }

  /* ========================= SERVICES SECTION CSS ========================= */
  .services-sec .service-category .service-category-box {
    padding: 30px 20px;
  }

  .service-category-box img {
    height: auto;
  }

  /* ========================= UPCOMING EVENT SECTION CSS ========================= */

  .upcoming-sec .upcoming-sec-wrapper:after {
    width: 100%;
    transform: skewX(301deg);
    right: -100%;
  }

  .upcoming-sec .upcoming-sec-wrapper {
    padding: 30px;
  }

  .upcoming-sec .countdown .time-box {
    width: 100px;
    height: 100px;
  }

  .upcoming-sec .countdown .time-box .count {
    font-size: 35px;
    line-height: 40px;
  }

  /* ========================= VIDEO SECTION CSS ========================= */
  .video-sec .row {
    row-gap: 50px;
  }

  /* ========================= READY TO HELP SECTION CSS ========================= */

  .ready-help-sec .ready-help-sec-right .circle-content {
    width: 175px;
    height: 175px;
  }

  .ready-help-sec .ready-help-sec-right h2 {
    font-size: 20px;
    line-height: 24px;
  }

  .ready-help-sec .ready-help-sec-right h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .ready-help-sec .ready-help-sec-right img {
    width: 100%;
  }

  .ready-help-sec .ready-help-sec-right {
    flex-wrap: wrap;
  }

  /* ========================= BLOG SECTION CSS ========================= */
  .blog-list-sec .blog-list .blog-item {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .blog-list-sec .blog-list .blog-item .blog-image {
    width: 100%;
  }

  .blog-list-sec .blog-list .blog-item .blog-image a {
    width: 100%;
  }

  .blog-list-sec .blog-list .blog-item .blog-image a img {
    min-width: 100%;
    max-height: 300px;
  }
	/* ========================= ACCORDION TYPE CSS ========================= */
	.accordion-type1 .accordion-item .accordion-button {
		padding: 20px;
	}
	.accordion-type1 .accordion-item .accordion-body{
		padding: 20px;
	}
		.card-box-sec .card-box .card-img img{
		max-height:250px;
	}
}

@media(max-width:576px) {

  /* ========================= COMMON HEADING CSS ========================= */
  .sec-title {
    font-size: 18px;
    line-height: 22px;
  }

  /* ========================= COMMON SPACE CSS ========================= */
  .common-padding70 {
    padding: 50px 0;
  }

  .common-padding50 {
    padding: 30px 0;
  }

  .mb-50 {
    margin-bottom: 30px !important;
  }

  .mt-50 {
    margin-top: 30px !important;
  }

  /* ========================= WELCOME SECTION CSS ========================= */

  .welcome-sec .img-wrapper img {
    width: 100%;
  }

  .welcome-sec .img-wrapper .image-overlay-text {
    max-width: 230px;
    padding: 20px;
  }

  .welcome-sec .welcome-sec-right .intro-text br {
    display: none;
  }

  /* ========================= CMS TEXT CSS ========================= */
  .cms-text1 {
    font-size: 14px;
    line-height: 18px;
  }

  .cms-text2 {
    font-size: 16px;
    line-height: 20px;
  }

  /* ========================= BANNER SECTION CSS ========================= */
  .banner-sec .banner-slide {
    height: 100vh;
  }

  .banner-sec .banner-content .slide-content p:first-child {
    font-size: 18px;
    line-height: 22px;
  }

  .banner-sec .banner-content .slide-content p {
    font-size: 16px;
    line-height: 20px;
  }

  /* ========================= SPECIALTIES SECTION CSS ========================= */
  .specialties-section .services-post .service-box h3 {
    padding: 20px;
  }

  /* ========================= OUR MINISTERS SECTION CSS ========================= */
  .our-ministers-sec .connection-items-wrapper .item {
    margin-bottom: 20px;
  }

  /* ========================= UPCOMING EVENT SECTION CSS ========================= */
  .upcoming-sec .countdown {
    flex-wrap: wrap;
  }

  .upcoming-sec .upcoming-sec-wrapper:after {
    transform: skewX(322deg);
  }

  /* ========================= SIDEBAR CSS ========================= */
  .sidebar .widget {
    margin-bottom: 15px;
  }

  .sidebar .recent-post li a,
  .sidebar .archive li a {
    font-size: 14px;
    line-height: 18px;
  }
	
/* ========================= MISSION SECTION CSS ========================= */
	.mission-sec .images-wrapper img.small-img {
		margin: 20px 0 0;
		width: 100%;
	}
	/* ========================= SEARCH PAGE CSS ========================= */
	.seacrh-popup{
		height: 600px;
	}
	/* ========================= BLOG DETAIL CSS ========================= */
	.blog-detail-sec .blog-detail .blog-image img{
		max-height:300px;
	}
}

