/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e1e1e;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 28px;
  color: #4a4a4a;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #0071f8;
  color: #fff;
}

::-moz-selection {
  background: #0071f8;
  color: #fff;
}

.section {
  margin-top: 120px;
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 56px;
}

.section-heading h2 em {
  font-style: normal;
  color: #0071f8;
}

.section-heading h6 {
  color: #ee626b;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.icon-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px 0px 0px;
  border-radius: 25px;
  transition: all .3s;
}

.icon-button a i {
  background-color: #ed2026;
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  line-height: 50px;
  display: inline-block;
  margin-right: 15px;
  margin-left: -1px;
}

.icon-button a:hover {
  color: #ed2026;
}

.icon-button a:hover i {
  color: #fff;
}

.main-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
  border-radius: 25px;
  transition: all .3s;
}

.main-button a:hover {
  background-color: #ed2026;
  color: #fff;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.99);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #ed2026;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #ed2026;
  border-radius: 50%;
}



/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.sub-header {
  background-color: #fff;
  padding: 10px 0px;
  border-bottom: 1px solid #eee;
}

.sub-header ul li {
  display: inline-block;
}

.sub-header ul.social-links {
  text-align: right;
}

.sub-header ul.social-links li {
  margin-left: 8px;
}

.sub-header ul.social-links li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #cdcdcd;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
  transition: all .3s;
}

.sub-header ul.social-links li a:hover {
  background-color: #ed2026;
}

.sub-header ul.info li {
  font-size: 14px;
  color: #7a7a7a;
  border-right: 1px solid #eee;
  margin-right: 25px;
  padding-right: 25px;
}

.sub-header ul.info li:last-child {
  margin-right: 0px;
  padding-right: 0px;
  border-right: none;
}

.sub-header ul.info li i {
  font-size: 20px;
  color: #ed2026;
  margin-right: 8px;
}

.background-header {
  background-color: #fff;
  height: 100px!important;
  position: fixed!important;
  top: 0!important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area {
  position: relative;
  background-color: #fff;
  height: 100px;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  background: transparent;
  display: flex;
}

.header-area .main-nav .logo {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
  padding-top: 15px;
}


.header-area .main-nav ul.nav {
  flex-basis: 100%;
  margin-top: 30px;
  justify-content: right;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li {
  padding-left: 10px;
  padding-right: 10px;
  height: 100px;
  line-height: 100px;
}

.header-area .main-nav .nav li a {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 500;
  font-size: 15px;
  height: 40px;
  line-height: 40px;
  text-transform: capitalize;
  color: #1e1e1e;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: transparent;
  letter-spacing: .25px;
}

.header-area .main-nav .nav li:last-child a {
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  border-radius: 20px;
  padding-left: 0px;
}

.header-area .main-nav .nav li:last-child a i {
  background-color: #ed2026;
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  margin-left: -1px;
}

.header-area .main-nav .nav li:last-child:hover a {
  background-color: #1e1e1e;
}

.header-area .main-nav .nav li:last-child:hover a i {
  color: #fff;
}

.header-area .main-nav .nav li:hover a {
  color: #ed2026;
}

.header-area .main-nav .nav li a.active {
  color: #ed2026;
}


.background-header .main-nav .nav li a.active {
  color: #ed2026;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 40px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  /*top: 22px;*/
}

.background-header .main-nav ul.nav {
  margin-top: 20px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.visible{
  display:inline !important;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 5px;
    padding-right: 5px;
  }

}

@media (max-width: 840px) {
  .background-header {
    height: 80px!important;
}
  .background-header .main-nav {
    /*box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);*/
    /*border-radius: 0px 0px 25px 25px;*/
    width: 100%;
  }
  .background-header .main-nav .nav,
  .header-area .main-nav .nav {
    background-color: #fff;
  }
  .background-header .main-nav .nav li a,
  .header-area .main-nav .nav li a {
    line-height: 50px;
    height: 50px;
    font-weight: 400;
    color: #1e1e1e;
    background-color: #fff;
     border-radius: 0px 0px 25px 25px;
  }
  .background-header .main-nav .nav li,
  .header-area .main-nav .nav li {
    border-top: 1px solid #ddd;
    background-color: #f1f0fe;
    height: 50px;
    border-radius: 0px 0px 25px 25px;
  }
  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }
  .header-area .main-nav .logo {
    position: absolute;
    left: 30px;
    top: 15px;
	width: 300px;
  }
  .background-header .main-nav .logo {
    top: 0px;
  }
  .background-header .main-nav .border-button {
    top: 0px !important;
  }
  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #ee626b!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area .nav li:last-child a {
    background-color: transparent !important;
    font-weight: 300 !important;
    text-transform: capitalize !important;
  }
  .header-area {
    padding: 0px 15px;
    height: 125px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
	margin-left: 90%;
	width: 250px;
  }
  .header-area .logo {
    margin-left: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 120px !important;
  }
  .background-header.header-sticky .nav {
    margin-top: 80px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  
}

@media (max-width: 450px) {
  .header-area .main-nav .logo {
    top: -14px;
	width: 225px;
  }
  .header-area {
    padding: 0px 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .main-nav .menu-trigger span {
    top: 0px;
}
  .header-area.header-sticky .nav {
    margin-top: 80px !important;
  }
	
  .main-banner .owl-nav .owl-prev i,
  .main-banner .owl-nav .owl-next i {
     width: 25px!important;
     height: 25px!important;
     line-height: 25px!important;
     font-size: 12px!important;
}

  .main-banner .owl-nav .owl-prev i {
     left: 5px!important;
}

  .main-banner .owl-nav .owl-next i {
     right: 5px!important;
}

  .main-banner .owl-dots {
     bottom: 20px!important;
}

	
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /*padding: 220px 20% 320px 20%; */
  margin-top: 0px;
  height: 625px;
  padding: 220px 0 320px 20%;
  
}

.main-banner .item-1 {
  background-image: url(../images/banner-01.jpg);
}

.main-banner .item-2 {
  background-image: url("../images/banner-04.jpg");
}

.main-banner .item-3 {
  background-image: url(../images/banner-03.jpg);
}

.main-banner .item span.category {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 6px 15px;
  display: inline-block;
  margin-bottom: 30px;
}

.main-banner .item span.category em {
  font-style: normal;
  color: #ed2026;
}

.main-banner .item h2 {
  font-size: 62px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 72px;
  width: 100%;
  margin-bottom: 0px;
}

.main-banner .owl-dots {
  position: absolute;
  bottom: 60px;
  left: 20%;
}

.main-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all .5s;
}

.main-banner .owl-dots .active {
  background-color: #ed2026;
}

.main-banner .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50px);
}

.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.main-banner .owl-nav .owl-prev i {
  position: absolute;
  left: 45px;
}

.main-banner .owl-nav .owl-next i {
  position: absolute;
  right: 45px;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}





/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.countdown {
	height: 85px;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(158,158,158,1) 50%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(158,158,158,1) 50%, rgba(255,255,255,1) 100%);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(158,158,158,1) 50%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);	
	width: 100%;
}

.countdown p {
	color: #FFF;
	font-size: 25px;
	font-weight: 800;
	text-align: center;
}

#timer {
	color: #FFF;
	font-size: 25px;
	font-weight: 800;
	text-align: center;
}

#message {
	color: #FFF;
	font-size: 25px;
	font-weight: 400;
	text-align: center;
	padding-top: 6px;
}

.announcement {
	height: 50px;
	background: #FDBB2D;
	background: -webkit-linear-gradient(90deg, rgba(253, 187, 45, 0) 0%, rgba(190, 161, 124, 1) 47%, rgba(253, 187, 45, 0) 100%);
	background: -moz-linear-gradient(90deg, rgba(253, 187, 45, 0) 0%, rgba(190, 161, 124, 1) 47%, rgba(253, 187, 45, 0) 100%);
	background: linear-gradient(90deg, rgba(253, 187, 45, 0) 0%, rgba(190, 161, 124, 1) 47%, rgba(253, 187, 45, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FDBB2D", endColorstr="#FDBB2D", GradientType=1);	
	width: 100%;
}

#announcementmessage {
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
	text-align: center;
	padding-top: 10px;
}




a.live-link {
  color: #337ab7;
  text-decoration: none;
}

a.live-link:hover {
  text-decoration: underline;
}





.services .left-image {
  position: relative;
}

.services .left-image img {
  padding-left: 55px;
}

.services .left-image a {
  display: inline-block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  background-color: #ededed;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: -55px;
}

.services .section-heading {
  margin-left: 100px;
  margin-right: 10px;
  margin-bottom: 60px;
  width: 150%;
  
}

.services .section-heading h2 {
  width: 70%;
}

.services .accordion {
  margin-left: 100px;
  margin-right: 10px;
  --bs-accordion-border-radius: 10px;
  --bs-accordion-inner-border-radius: 10px;
  --bs-accordion-bg: #fafafa;
  --bs-accordion-border-color: none;
  border: none !important;
  width: 150%;
}

.services .accordion-header {
  border-bottom: 1px solid #eaeaea;
}

.services .accordion-button {
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  color: #1e1e1e;
}

.services .accordion-button:not(.collapsed) {
  color: #ed2026;
  background-color: #fafafa;
  outline: none;
}

.services .accordion-button::after {
  display: none;
}

.services #headingThree {
  border-bottom: none;
}

.services .accordion-item:last-of-type .accordion-collapse {
  border-top: 1px solid #eaeaea;
}

.services .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
}




/* 
---------------------------------------------
Video Style
--------------------------------------------- 
*/

.video {
  background-image: url(../images/video-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0px 100px 0px;
  position: relative;
}

.video-content {
  margin-top: -150px;
}

.video .section-heading h2 {
  color: #fff;
}

.video-content .video-frame {
  position: relative;
  width: 100%;
  max-width: 800px; /* Set the desired width here */
  overflow: hidden;
  height: auto; /* Remove height constraint */
  aspect-ratio: 16 / 9; /* This keeps the 16:9 ratio without vertical padding */
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  margin: 0 auto; /* Centers the video on the page */
}

.video-content .video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}


/* 
---------------------------------------------
Announcements Style
--------------------------------------------- 
*/

.announcements {
  background-color: #fafafa;
  padding: 100px 0px;
}

.announcements .tab-content img {
  padding: 0px 45px;
}

.announcements .tabs-content .nav-link {
  font-size: 16px;
  font-weight: 500;
  background-color: #1e1e1e !important;
  border-radius: 5px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding: 0px 25px;
  color: #fff;
}

.announcements .tabs-content .nav-tabs .nav-link.active {
  background-color: #ed2026 !important;
  color: #fff;
}

.announcements .tabs-content ul.nav-tabs {
  border-bottom: none !important;
  margin-bottom: 80px;
  align-items: end;
  justify-content: end;
  margin-top: -130px;
}

.announcements .tabs-content ul.nav-tabs li {
  padding-right: 0px;
  border-right: none;
  margin-left: 20px;
}

.announcements .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border: 5px solid #600E0F;	
  padding: 35px 30px;
  background-color: #EDEDED;
  background-image: url("../images/back-pattern.png");
}

.announcements .tabs-content {
  padding: 0px;
  background-color: transparent;
}

.announcements .tabs-content h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 30px;
}

.announcements .icon-button {
  margin-top: 30px;
}


/* 
---------------------------------------------
Giving Style
--------------------------------------------- 
*/

.indexgiving {
	padding-bottom: 75px;
}

.indexgiving p {
	padding-right: 40%;
	padding-top: 20px;
}

.indexgiving .left-image {
  position: relative;
}

.indexgiving .left-image img {
  padding-left: 90px;
}


.indexgiving .section-heading {
  margin-left: 100px;
  margin-right: 10px;
  margin-bottom: 60px;
  width: 150%;
  
}

.indexgiving .section-heading h2 {
  width: 70%;
}



/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer.footer-no-gap {
  margin-top: 0px;
}

footer {
  background-color: #1e1e1e;
  min-height: 100px;
  padding: 20px 0 20px 0;
}

footer p {
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

footer p a {
  color: #fff;
  transition: all .3s;
  position: relative;
  z-index: 3;
}

footer p a:hover {
  opacity: 0.75;
}


/* 
---------------------------------------------
Page - About
--------------------------------------------- 
*/

.page-heading-about {
  background-image: url(../images/About-PageHeading.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0px;
  text-align: center;
}

.page-heading-about span {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 25px;
  display: inline-block;
  margin-bottom: 30px;
}

.page-heading-about span a {
  color: #1e1e1e;
}

.page-heading-about h3 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

.generalimage {
  width: 450px;         
  height: auto;        
  max-width: 100%;     
  display: block;
  border: thin solid #B7B7B7;
  padding: 5px;
  margin-bottom: 15%;
}

.quicklinks {
  height: 85px;
  width: 100%;
  text-align: center;
  background-color: #ffffff;
  background-image: url("../images/climpek.png");
  display: flex;
  justify-content: center; 
  align-items: center;     
  box-sizing: border-box; 
}

.quicklinks a {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin-right: 20px; 
  margin-left: 20px;
  text-decoration: underline!important; 
  
}

.quicklinks a:last-of-type {
  margin-right: 0; 
}

.quicklinks a + span {
  margin-left: 20px; 
  margin-right: 20px; 
  font-size: 40px;
  color: #000; 
}

.about .main-image img {
  float: none;
}

.about .main-content h4 {
  font-size: 25px;
  margin-top: 25px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.about .main-content span.category {
  background-color: #fbd9cf;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  color: #1e1e1e;
  padding: 5px 12px;
  display: inline-block;
  margin-top: 40px;
}

.about .accordion {
  margin-top: 60px;
  margin-left: 0px;
  margin-right: 0px;
  --bs-accordion-border-radius: 10px;
  --bs-accordion-inner-border-radius: 10px;
  --bs-accordion-bg: #fafafa;
  --bs-accordion-border-color: none;
  border: none !important;
}

.about .accordion-header {
  border-bottom: 1px solid #eaeaea;
}

.about .accordion-button {
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  color: #1e1e1e;
}

.about .accordion-button:not(.collapsed) {
  color: #ed2026;
  background-color: #fafafa;
  outline: none;
}

.about .accordion-button::after {
  display: none;
}

.about #headingThree {
  border-bottom: none;
}

.about .accordion-item:last-of-type .accordion-collapse {
  border-top: 1px solid #eaeaea;
}

.about .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  margin-left: 60px;
}

.about .info-table ul li {
  display: block;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #eee;
}

.about .info-table ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.about .info-table ul li img {
  float: left;
  margin-right: 25px;
}

.about .info-table ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.about .info-table ul li h4 span {
  font-size: 15px;
  color: #aaa;
  font-weight: 400;
}

/*BIOS*/

.bios .item {
  background-color: #fafafa;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.bios .item img {
  border-radius: 10px;
}

.bios .item span.category {
  background-color: #e0a0a2;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  color: #1e1e1e;
  padding: 5px 12px;
  display: inline-block;
  margin-top: 25px;
}

.bios .item h4 {
  font-size: 19px;
  margin: 25px 0px;
}

.bios .item h4 a {
  color: #1e1e1e;
}

.bios .item ul li {
  display: inline-block;
  font-size: 15px;
  color: #4a4a4a;
  margin-right: 20px;
}

.bios .item ul li span {
  font-weight: 600;
  color: #1e1e1e;
}

.bios .item ul {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.bios .item .main-button {
  text-align: center;
}

/*END BIOS*/


.mission {
  background-color: #fff;
  padding: 100px 0px;
}

.mission .tab-content img {
  padding: 0px 45px;
}

.mission .tabs-content .nav-link {
  font-size: 16px;
  font-weight: 500;
  background-color: #1e1e1e !important;
  border-radius: 5px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding: 0px 25px;
  color: #fff;
}

.mission .tabs-content .nav-tabs .nav-link.active {
  background-color: #ed2026 !important;
  color: #fff;
}

.mission .tabs-content ul.nav-tabs {
  border-bottom: none !important;
  margin-bottom: 80px;
  /*align-items: end;*/
  /*justify-content: end;*/
  margin-top: -160px;
}

.mission .tabs-content ul.nav-tabs li {
  padding-right: 0px;
  border-right: none;
  margin-left: 20px;
  margin-bottom: 20px;
}

.mission .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
}

.mission .info-table ul li {
  display: block;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 15px;
  color: #aaa;
  font-weight: 400;
}

.mission .info-table ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.mission .info-table ul li span {
  font-size: 20px;
  color: #1e1e1e;
  font-weight: 700;
  float: right;
  display: inline-block;
}

.mission .tabs-content {
  padding: 0px;
  background-color: transparent;
}

.mission .tabs-content h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 30px;
}

.mission .icon-button {
  margin-top: 30px;
}







/* 
---------------------------------------------
Page - Events
--------------------------------------------- 
*/

.page-heading-events {
  background-image: url(../images/Events-PageHeading.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0px;
  text-align: center;
}

.page-heading-events span {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 25px;
  display: inline-block;
  margin-bottom: 30px;
}

.page-heading-events span a {
  color: #1e1e1e;
}

.page-heading-events h3 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

.events .main-image img {
  float: none;
}

.events .main-content h4 {
  font-size: 25px;
  margin-top: 25px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.events .main-content span.category {
  background-color: #f0ed9e;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 700;
  color: #1e1e1e;
  padding: 5px 12px;
  display: inline-block;
  margin-top: 40px;
}


.events .main-image img {
  float: none;
  max-width: 600px;
}


/* 
---------------------------------------------
Page - Privacy
--------------------------------------------- 
*/

.page-heading-privacy {
  background-image: url(../images/Privacy-PageHeading.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0px;
  text-align: center;
}

.page-heading-privacy span {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 25px;
  display: inline-block;
  margin-bottom: 30px;
}

.page-heading-privacy span a {
  color: #1e1e1e;
}

.page-heading-privacy h3 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

/* 
---------------------------------------------
Page - Services
--------------------------------------------- 
*/

.page-heading-services {
  background-image: url(../images/Services-PageHeading.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0px;
  text-align: center;
}

.page-heading-services span {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 25px;
  display: inline-block;
  margin-bottom: 30px;
}

.page-heading-services span a {
  color: #1e1e1e;
}

.page-heading-services h3 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	border-radius: 20px;
}

.sermonspacer {
	margin-bottom: 200px;
}


/* 
---------------------------------------------
Page - Contact
--------------------------------------------- 
*/

.page-heading-contact {
  background-image: url(../images/Contact-PageHeading.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0px;
  text-align: center;
}

.page-heading-contact span {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 25px;
  display: inline-block;
  margin-bottom: 30px;
}

.page-heading-contact span a {
  color: #1e1e1e;
}

.page-heading-contact h3 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

/* 
---------------------------------------------
Page - Giving
--------------------------------------------- 
*/

.page-heading-giving {
  background-image: url(../images/Giving-PageHeading.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0px;
  text-align: center;
}

.page-heading-giving span {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 25px;
  display: inline-block;
  margin-bottom: 30px;
}

.page-heading-giving span a {
  color: #1e1e1e;
}

.page-heading-giving h3 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}




/* 
---------------------------------------------
Contact Page Style
--------------------------------------------- 
*/

.contact-page #map {
  margin-top: 100px;
}

.contact-page .section-heading {
  margin-bottom: 40px;
  margin-right: 280px;
}

.contact-page p {
  margin-bottom: 50px;
}

.contact-page .item {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
  display: inline-block;
  min-width: 360px;
}

.contact-page .phone {
  margin-bottom: 30px;
}

.contact-page .item img {
  float: left;
  margin-right: 25px;
  vertical-align: middle;
}

.contact-page .item h6 {
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}

.contact-page .item h6 span {
  font-size: 15px;
  color: #aaaaaa;
  font-weight: 400;
}

.contact-page #contact-form {
  margin-left: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
}

.contact-page #contact-form label {
  font-size: 15px;
  color: #3a3a3a;
  margin-bottom: 15px;
}

.contact-page #contact-form input {
  width: 100%;
  height: 44px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 30px;
  font-size: 14px;
  padding: 0px 15px;
}

.contact-page #contact-form textarea {
  width: 100%;
  height: 150px;
  max-height: 180px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 40px;
  font-size: 14px;
  padding: 15px 15px;
}

.contact-page #contact-form button {
  background-color: #1e1e1e;
  height: 44px;
  border-radius: 22px;
  padding: 0px 20px;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 500;
  transition: all .5s;
}

.contact-page #contact-form button:hover {
  background-color: #ed2026;
}


/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}


@media (max-width: 600px) {
	.quicklinks a {
	  font-size: 15px;
	  font-weight: 500;
	  text-align: center;
	  color: #000;
	  margin-right: 12px; 
	  margin-left: 12px;
	  text-decoration: underline!important; 

	}

	.quicklinks a:last-of-type {
	  margin-right: 0; 
	}

	.quicklinks a + span {
	  margin-left: 12px; 
	  margin-right: 12px; 
	  font-size: 20px;
	  color: #000; 
	}

}

@media (max-width: 840px) {
	
   .main-banner .item {
     padding: 120px 20% 220px 20%;
	 height: 400px;
  
}

  .announcements .tabs-content .nav-link {
    font-size: 14px;
    padding: 0px 15px;
    height: 44px;
    line-height: 44px;
  }
  .announcements .tabs-content ul.nav-tabs li {
    margin: 0px 5px;
  }
  .header-area .main-nav .nav li:last-child a {
    color: #1e1e1e!important;
	font-weight: 800!important;
	font-size: 18px;
  }
	
	.header-area .main-nav .nav li:last-child a i {
	  display: none;
	}
	
	
  .mission .tabs-content .nav-link {
    font-size: 14px;
    padding: 0px 15px;
    height: 44px;
    line-height: 44px;
  }
  .mission .tabs-content ul.nav-tabs li {
    margin: 0px 5px 20px;
  }
}

@media (max-width: 992px) {
  .sub-header {
    display: none;
  }
  .header-area {
	padding-right: 200px;
  }
  .header-area .main-nav ul.nav {
	margin-right: -190px;
}
  .header-area .main-nav .nav li a {
    padding-left: 3px;
    padding-right: 3px;
  }
  .header-area .main-nav .nav li:last-child a {
    padding-right: 15px;
  }
  .main-banner .item h2 {
    width: 100%;
	font-size: 35px;
	line-height: 40px;
  }
  .indexgiving .section-heading h2 {
	 width: 100%;
	 text-align: center;
  }
  .services .left-image a {
  	 display: none;
}
  .services .left-image img {
     padding-left: 0px;
}
  .services .section-heading h2 {
	 width: 100%;
	 text-align: center;
  }
	
  .services .section-heading {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 100px;
	width: 100%;
  }
  .indexgiving .section-heading {
    margin-left: 0px;
    margin-right: 0px;
	width: 100%;
  }
	
.indexgiving p {
	padding-right: 0%;
	padding-top: 20px;
}
	
.indexgiving .left-image img {
  padding-left: 2px;
}
	
	
  .services .accordion {
    margin-left: 0px;
    margin-right: 0px;
  }
	
  .services .accordion {
    margin-left: 10px;
    margin-right: 10px;
    width: 100%;
  }
	
  .services .section-heading h6 {
	text-align: center;
  }	
	
  .indexgiving .section-heading h6 {
	text-align: center;
  }	
	
  .services .info-table {
    margin-top: 45px;
  }
  .announcements .section-heading {
    text-align: center;
  }
  .announcements .tabs-content ul.nav-tabs {
    margin-top: 0px;
    justify-content: center;
  }
  .announcements .info-table {
    margin-bottom: 45px;
  }
  .announcements .tab-content img {
    padding: 0px;
  }
  .announcements .tabs-content h4 {
    margin-top: 45px;
  }
  .contact-content .phone {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .contact-content .email {
    margin-left: 0px;
    margin-bottom: 45px;
  }
  .contact-content #contact-form {
    margin-left: 0px;
  }
  .about .info-table {
    margin-left: 0px;
    margin-top: 45px;
  }
  .contact-page .section-heading {
    margin-right: 0px !important;
  }
  .contact-page #contact-form {
    margin-left: 0px;
    margin-top: 60px;
  }
  .mission .section-heading {
    text-align: center;
  }
  .mission .tabs-content ul.nav-tabs {
    margin-top: -180px;
    justify-content: center;
  }
  .mission .info-table {
    margin-bottom: 45px;
  }
  .mission .tab-content img {
    padding: 0px;
  }
  .mission .tabs-content h4 {
    margin-top: 45px;
  }	
  .mission .info-table ul li span {
    float: right !important;
    width: auto !important;
  }
}

@media (max-width: 1200px) {
  .contact-page .section-heading {
    margin-right: 100px;
  }
	
  .header-area .main-nav .logo {
    margin-top: 15px;
	width: 260px;
  }
	
  .header-area .main-nav ul.nav {
	margin-left: -30px;
}
  .mission .info-table ul li span {
    float: none;
    width: 100%;
  }
}