/**
	@package: Slimfac
	@author: Akudo Silas;
*/
:root {
  --gohura-font-family: 'Geist';
}

.row-xs {
  clear: both;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.row-xs > [class*=col-] {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.row-sm {
  clear: both;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.row-sm > [class*=col-] {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.row-md {
  clear: both;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.row-md > [class*=col-] {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.row-lg {
  clear: both;
  margin-left: -1rem;
  margin-right: -1rem;
}
.row-lg > [class*=col-] {
  padding-left: 1rem;
  padding-right: 1rem;
}

.row-xl {
  clear: both;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}
.row-xl > [class*=col-] {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.top-a {
  top: auto;
}

.right-a {
  right: auto;
}

.bottom-a {
  bottom: auto;
}

.left-a {
  left: auto;
}

.m-50 {
  margin: 50px !important;
}

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

.mx-50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

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

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

.mr-50 {
  margin-right: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.p-50 {
  padding: 50px !important;
}

.px-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.fs-3 {
  font-size: 1rem;
}

.fs-20 {
  font-size: 20px;
}

.fs-30 {
  font-size: 30px;
}

.fs-50 {
  font-size: 50px;
}

.fs-70 {
  font-size: 70px;
}

.fs-100 {
  font-size: 100px;
}

/*===============================
	Header CSS
=================================*/
.header {
  background-color: #fff;
  background-image: url("../img/bg/bg-header.png");
}
.header .topbar {
  padding: 0.2rem 0px;
  color: #fff;
  font-size: 0.8rem;
  background-color: #E1114C;
}
.header .topbar a {
  color: inherit;
}

.header .navbar-collapse {
  padding: 0;
}

/* Topbar */
.header .content li {
  display: inline-block;
  color: #ccc;
  margin-right: 10px;
  font-weight: 500;
}

.header .content li:last-child {
  margin-right: 0px;
  padding-right: 0px;
  border-right: 0px;
}

.header .content li i {
  margin-right: 5px;
}

.header .content li a {
  color: #ccc;
}

/* Logo */
.header .logo {
  float: left;
  margin-top: 24px;
}

.header-widget {
  float: right;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header-menu {
  background-color: #1569C3;
  z-index: 3333;
}

.header .navbar {
  background: none;
  box-shadow: none;
  border: none;
  position: relative;
  padding: 0;
}

.navbar-nav {
  display: block;
}

.header .nav li {
  float: left;
  position: relative;
  margin-right: 5px;
}

.header .nav li:last-child {
  margin-right: 0px;
}

.header .nav li a {
  color: #fff;
  font-size: 14px;
  padding: 1rem 0.5rem;
  display: block;
  position: relative;
  text-shadow: none;
  font-weight: 400;
}

.header .nav li:hover a,
.header .nav li.active a {
  color: #fff;
}

.header .nav li a i {
  margin-left: 5px;
}

.header .nav li .dropdown {
  width: 220px;
  position: absolute;
  left: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin: 0;
  background-color: #E1114C;
}

.header .nav li:hover .dropdown {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.header .nav li .dropdown li {
  float: none;
  margin: 0;
}
.header .nav li .dropdown li:last-child > a {
  border-bottom: 0;
}

.header .nav li .dropdown li a {
  padding: 10px 15px;
  color: #fff;
  display: block;
  font-weight: 400;
  text-transform: capitalize;
  background: transparent;
  border-bottom: 1px solid maroon;
}

.header .nav li .dropdown li i {
  float: right;
}

.header .nav li .dropdown li:hover a {
  color: #000;
  background-color: #fff;
}

.header .nav li .dropdown.submenu {
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  transform: scale(0.5);
}

.header .nav li .dropdown li:hover .dropdown.submenu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.header .nav li .dropdown li .dropdown.submenu li a {
  color: #777;
  background: transparent;
}

.header .nav li .dropdown li .dropdown.submenu li:hover a {
  color: #fff;
}

.header .button {
  position: absolute;
  top: 0;
  right: 0;
}

.header .button .btn {
  margin-top: 8px;
  color: #fff;
  border-radius: 50px;
  box-shadow: none;
  border: 1px solid transparent;
}

.header .button .btn:hover {
  color: #252525;
  background: transparent;
  border-color: #e6e6e6;
}

.header .button .btn i {
  margin-right: 5px;
}

/* Header Sticky */
.header.sticky .header-menu {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  animation: fadeInDown 1s both 0.2s;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

/*===============================
	Slider CSS 
=================================*/
.home-slider {
  height: 450px;
}
.home-slider .single-slider {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 450px;
  border: none;
}
.home-slider .single-slider.overlay {
  border-bottom: 0.24rem solid #00A701;
}
.home-slider .single-slider.overlay:before {
  opacity: 1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
.home-slider .single-slider .slider-text {
  position: absolute;
  bottom: 0;
  max-width: 520px;
  margin: 100px 0 0;
  padding: 1rem;
}
.home-slider .single-slider .slider-title {
  font-size: 2rem;
  line-height: 1.4;
  text-transform: capitalize;
  font-weight: 800;
  color: #E1114C;
  margin-bottom: 20px;
  text-shadow: 1px 1px 0.5rem #000;
}
@media (min-width: 960px) {
  .home-slider .single-slider .slider-title big {
    display: block !important;
  }
  .home-slider .single-slider .slider-title small {
    display: block !important;
    color: #00A701;
    font-weight: 800;
  }
}
.home-slider .single-slider .button {
  margin-top: 20px;
}
.home-slider .single-slider .container {
  height: 100%;
}
.home-slider .single-slider .container > .row {
  height: 100%;
}
.home-slider .single-slider .container > .row > div {
  position: relative;
}

.home-slider .single-slider:before {
  opacity: 0;
}

.home-slider .single-slider p {
  font-size: 16px;
  color: #ccc;
  padding-right: 100px;
}

.home-slider .single-slider .text-center p {
  font-size: 16px;
  color: #ccc;
  padding: 0 100px;
}

.home-slider .single-slider .text-right p {
  font-size: 16px;
  color: #ccc;
  padding: 0 0 0 100px;
}

.home-slider .single-slider .btn {
  margin-right: 15px;
  color: #252525;
  background: #fff;
  position: relative;
  z-index: 3;
  text-transform: uppercase;
  border-radius: 50px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.home-slider .single-slider .btn:hover {
  background: transparent;
  color: #fff;
}

.home-slider .single-slider .btn.primary {
  color: #fff;
}

.home-slider .single-slider .btn.primary:before {
  background: #fff;
}

.home-slider .single-slider .btn.primary:hover {
  color: #252525;
  background: transparent;
}

.home-slider .single-slider .btn:last-child {
  margin-right: 0px;
}

/* Slider Meta */
.home-slider .owl-carousel .owl-nav div {
  height: 55px;
  width: 55px;
  line-height: 55px;
  top: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 25px;
  position: absolute;
  border: none;
  margin: -30px 0 0 0;
  padding: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 100%;
}

.home-slider .owl-carousel .owl-nav div:hover {
  background: #fff;
}

.home-slider .owl-carousel .owl-nav .owl-prev {
  left: 15px;
}

.home-slider .owl-carousel .owl-nav .owl-prev:hover {
  left: 25px;
}

.home-slider .owl-carousel .owl-nav .owl-next {
  right: 15px;
}

.home-slider .owl-carousel .owl-nav .owl-next:hover {
  right: 25px;
}

/* Slider Animation */
.home-slider .owl-item.active .slider-text {
  animation: fadeInUp 1s both 0.1s;
}

.home-slider .owl-item.active .slider-text h1 {
  animation: fadeInUp 1s both 0.8s;
}

.home-slider .owl-item.active .slider-text p {
  animation: fadeInUp 1s both 1s;
}

.home-slider .owl-item.active .slider-text .button {
  animation: fadeInUp 1s both 1s;
}

/*===============================
	End Slider CSS 
=================================*/
.owl-theme .owl-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.owl-theme .owl-dots .owl-dot.active span {
  background-color: rgba(190, 0, 0, 0.5);
}
.owl-theme .owl-dots .owl-dot span {
  width: 2rem;
  height: 0.25rem;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.5);
}

.social {
  overflow: hidden;
}
.social .social-icon {
  float: left;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin: 0.25rem;
  line-height: 2rem;
  text-align: center;
  border-radius: 50%;
  background-color: #E1114C;
}
.social .social-icon .fa {
  font-size: 1rem;
  color: #fff;
}

.cta-title {
  margin-top: 3rem;
  margin-bottom: 3rem;
  color: #fff;
}

.our-features {
  background-color: #fff;
}
.our-features .single-feature {
  margin-top: 30px;
}
.our-features .single-feature img {
  width: 100%;
}
.our-features .single-feature img:hover {
  transform: scale(1.1) rotate(1deg);
}
.our-features .single-feature h2 {
  font-size: 1rem;
  margin: 0;
  padding: 1rem 1rem;
  color: #fff;
  font-weight: 400;
}
.our-features .single-feature h2 a {
  color: inherit;
}
.our-features .feature-head {
  position: relative;
  overflow: hidden;
}

.contact .contact-bottom {
  margin-top: 30px;
}

.contact .contact-info {
  text-align: left;
  margin-top: 30px;
  position: relative;
  padding-left: 100px;
}

.contact .contact-info .icon {
  position: absolute;
  left: 0;
}

.contact .contact-info .icon i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border: 1px solid #e7e7e7;
  font-size: 25px;
  border-radius: 100%;
  text-align: center;
}

.contact .contact-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px;
}

.contact .contact-info a {
  color: #777;
}

.contact .contact-info p {
  color: #777;
  font-size: 15px;
}

.contact .contact-map {
  margin-top: 30px;
}

.contact .contact-map #map {
  height: 466px;
}

.contact .contact-head {
  overflow: hidden;
}

.contact .form-head {
  margin-top: 30px;
}

.contact .form-head .form-group:last-child {
  margin: 0;
}

.contact .form-head .form-group input {
  height: 50px;
  width: 100%;
  padding-left: 15px;
  box-shadow: none;
  text-shadow: none;
  border: none;
  border: 1px solid #ccc;
  color: #666666;
  font-size: 15px;
}

.contact .form-head .form-group input:hover,
.contact .form-head .form-group textarea:hover {
  padding-left: 25px;
}

.contact .form-head .form-group textarea {
  height: 192px;
  width: 100%;
  font-size: 15px;
  padding-left: 15px;
  padding-top: 18px;
  box-shadow: none;
  text-shadow: none;
  border: none;
  border: 1px solid #ccc;
  color: #666666;
  resize: none;
}

.contact .form-head .form-group .button {
  margin-top: 20px;
}

.contact .form-head .form-group button {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact .form-head .form-group button:before {
  background: #252525;
}

.contact .form-head .form-group button:hover {
  background: transparent;
}

/*=============================
	Footer CSS
===============================*/
.footer {
  background-image: url("../img/footer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0;
}
.footer::before {
  opacity: 0.9;
}

.footer a,
.footer p {
  color: #eee;
  font-weight: 400;
}

.footer .footer-top {
  padding: 60px 0 30px;
}

.footer .single-widget {
  margin-top: 30px;
}

.footer .single-widget h2 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  color: #fff;
  position: relative;
}

.footer .single-widget h2:before {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 50px;
  height: 2px;
}

.footer .about p {
  margin-top: 20px;
}

.footer .list {
  margin-top: 20px;
}

.footer .list li {
  line-height: 30px;
  color: #fff;
}

.footer .list li a {
  color: #fff;
}

.footer .list li i {
  margin-right: 15px;
}

.footer .useful-links ul li {
  position: relative;
  line-height: 36px;
}

.footer .useful-links ul li a {
  color: #fff;
  font-size: 15px;
}

.footer .useful-links ul li i {
  margin-right: 10px;
}

.footer .single-news {
  position: relative;
  padding-left: 65px;
  margin-bottom: 15px;
}

.footer .single-news:last-child {
  margin: 0;
}

.footer .single-news img {
  width: 55px;
  height: 55px;
  position: absolute;
  left: 0;
  border-radius: 50px;
  top: 10px;
}

.footer .single-news h4 a {
  color: #fff;
  font-size: 15px;
}

.footer .single-news p {
  padding-right: 50px;
}

.footer .newsletter .title {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}

.footer .newsletter .form {
  position: relative;
  margin-top: 20px;
}

.footer .newsletter .form input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  color: #2c2c2c;
  box-shadow: none;
  text-shadow: none;
  border: none;
  padding: 0px 50px 0px 20px;
  font-size: 16px;
  border-radius: 0px;
}

.footer .newsletter .button {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 50px;
  color: #fff;
  box-shadow: none;
  font-size: 20px;
  text-shadow: none;
  border: none;
  border-radius: 0px;
  border-left: 1px solid transparent;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer .newsletter .button:hover {
  background: #fff;
  border-left-color: #e7e7e7;
  color: #252525;
}

.footer .bottom-head {
  padding: 10px 0;
  border-top: 1px solid rgba(231, 231, 231, 0.25);
}

.footer .social li {
  display: inline-block;
  margin-right: 5px;
}

.footer .social li:last-child {
  margin: 0;
}

.footer .social li a {
  display: block;
  height: 34px;
  width: 34px;
  line-height: 37px;
  background: rgba(69, 69, 69, 0.5);
  text-align: center;
  margin: 0;
  padding: 0;
  border-radius: 100%;
  color: #fff;
}

.footer .social li a:hover {
  background: #fff;
}

.footer .copyright {
  text-align: center;
}

.footer .copyright p {
  font-size: 13px;
  color: #fff;
  text-transform: capitalize;
}

.footer .copyright a:hover {
  color: #fff;
}

/*=============================
	End Footer CSS
===============================*/
body {
  font-family: var(--gohura-font-family), Roboto, system-ui, sans-serif;
  font-size: 16px;
}

.section {
  padding: 2rem 0;
}

.text-red {
  color: #BE0000;
}

.text-blue {
  color: #0000FE;
}

.text-green {
  color: #00A701;
}

.text-small {
  font-size: small;
}

.text-smaller {
  font-size: smaller;
}

.text-primary {
  color: #E1114C !important;
}

.btn-flat {
  border-radius: 0 !important;
}

.btn-rounded {
  border-radius: 27px;
}

.btn-warning {
  color: #fff;
  border-color: #FF9800;
  background-color: #FF9800;
}

.bg-1 {
  background-image: url("../img/bg/bg-1.jpg") !important;
}

.bg-2 {
  background-image: url("../img/bg/bg-2.jpg") !important;
}

.bg-3 {
  background-image: url("../img/bg/bg-3.jpg") !important;
}

.bg-4 {
  background-image: url("../img/bg/bg-4.jpg") !important;
}

.bg-5 {
  background-image: url("../img/bg/bg-5.jpg") !important;
}

.bg-main {
  background-image: url("../img/bg/bg-main.webp") !important;
}

.bg-center {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bg-primary {
  background-color: #E1114C !important;
}

.bg-secondary {
  background-color: #1569C3 !important;
}

.bg-support {
  background-color: #484848 !important;
}

.heading-2 {
  color: #1F387F !important;
}

.heading-underline {
  max-width: 20%;
  height: 0.4rem;
  background-color: #E1114C;
}

.card-img.border-1 {
  position: relative;
  border: 0.5rem solid #fff;
  border-radius: 0;
  overflow: hidden;
}
.card-img.border-1 img {
  position: relative;
  width: 100%;
}
.card-img.border-1 img:hover {
  transform: scale(1.2) rotate(5deg);
}

.card.activity {
  border: 0.5rem solid #fff;
  border-radius: 0;
  box-shadow: 0 0 3px #484848;
  overflow: hidden;
}
.card.activity .card-img {
  position: relative;
  width: 100%;
  transition: all 0.3s linear;
}
.card.activity .card-img:hover, .card.activity .card-img:focus {
  transform: scale(1.2) rotate(-5deg);
}
.card.activity .card-img-overlay {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
}
.card.gallery {
  margin-bottom: 0 !important;
  border: 1px solid #fff;
  border-radius: 0 !important;
  overflow: hidden;
}
.card.gallery .card-img {
  position: relative;
  width: 100%;
  transition: all 0.3s linear;
  border-radius: 0 !important;
}
.card.gallery .card-img:hover, .card.gallery .card-img:focus {
  transform: scale(1.2) rotate(-5deg);
}
.card.gallery .card-img-overlay {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
}

.nice-list .check-square {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #00A701;
  text-align: center;
  line-height: 28px;
}
.nice-list .check-square .fa {
  font-size: 1.25rem;
  color: #00A701;
}

.list-count-circle {
  padding: 0;
}
.list-count-circle > span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 25% 0 25% 0;
  text-align: center;
}

.home-welcome-section {
  background-color: #e6e6e6;
}

.event-panel:hover, .event-panel:focus {
  background-color: #eee;
}
.event-panel .date {
  padding-bottom: 0.8rem;
  border-bottom: 0.25rem solid #E1114C;
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}
.event-panel .date .day {
  margin-bottom: 0.5rem;
  font-size: 1.9rem;
  font-weight: 800;
  text-align: center;
  color: #E1114C;
}
.event-panel .title {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
}
.event-panel .time {
  font-size: 0.9rem;
  color: #E1114C;
}
.event-panel .location {
  font-size: 0.9rem;
  color: #1569C3;
}

.button .btn {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

#scrollUp {
  right: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  z-index: 33;
  font-size: 30px;
  bottom: 10px;
  text-align: center;
  border-radius: 100%;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.16);
  color: #fff;
  background-color: #E1114C;
}
#scrollUp:hover, #scrollUp:focus {
  bottom: 15px;
  color: #fff;
  background-color: #1569C3;
}

.featured-list .item > a {
  display: block;
  padding: 1rem;
  color: #fff;
  border-bottom: 1px solid maroon;
  background-color: #E1114C;
}
.featured-list .item > a:hover, .featured-list .item > a:focus {
  color: #fff;
  background-color: #484848;
}
.featured-list .item > a .fa {
  font-size: 2rem;
}

.image {
  position: relative;
  padding: 0.25rem;
  border: 1px solid #eee;
  box-shadow: 0 0 3px #ddd;
  overflow: hidden;
}
.image > img {
  width: 100%;
  transition: all 0.3s linear;
}
.image > img:hover, .image > img:focus {
  transform: scale(1.2) rotate(-5deg);
}

.activities h5 {
  color: #000;
}
.activities h5 > a {
  color: inherit;
}
.activities h5 > a:hover, .activities h5 > a:focus {
  color: #E1114C;
}
.activities > div > a {
  line-height: 2rem;
}
.activities > div .fa-angle-right {
  display: inline-block !important;
  margin-bottom: -20px;
  font-size: 1.5rem;
  line-height: 1;
}

.breadcrumbs h2 {
  color: #E1114C;
}

.counter-1 {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  font-size: 1.2rem;
  background-color: #E1114C;
}

.objectives li > div.float-left {
  width: calc(100% - 40px);
}

/*# sourceMappingURL=style.css.map */
