/* Import Fonts */

@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Raleway:700,800");
/* Import All CSS */

@import url(css/bootstrap.min.css);
@import url(css/classy-nav.css);
@import url(css/owl.carousel.min.css);
@import url(css/animate.css);
@import url(css/magnific-popup.css);
@import url(css/font-awesome.min.css);
@import url(css/lightbox.css);
@import url(css/simplePagination.css);
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  color: #1f1f2c;
  line-height: 1.3;
  font-weight: 700;
}

p {
  color: #636363;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
}

a, a:hover, a:focus {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  text-decoration: none;
  outline: 0 solid transparent;
  color: #1f1f2c;
  font-weight: 500;
  font-size: 14px;
}

ul, ol {
  margin: 0;
}

ul li, ol li {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
}

/* Spacing */

.mt-15 {
  margin-top: 15px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

/* Height */

.height-400 {
  height: 400px;
}

.height-500 {
  height: 500px;
}

.height-600 {
  height: 600px;
}

.height-700 {
  height: 700px;
}

.height-800 {
  height: 800px;
}

/* Section Padding */

.section-padding-100 {
  padding-top: 50px;
  padding-bottom: 100px;
}

.section-padding-100-0 {
  padding-top: 100px;
  padding-bottom: 0;
}

.section-padding-0-100 {
  padding-top: 0;
  padding-bottom: 100px;
}

.section-padding-100-70 {
  padding-top: 100px;
  padding-bottom: 70px;
}

/* Section Heading */

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  text-align: center;
  max-width: 730px;
  margin: 0 auto 50px;
}

.section-heading h2 {
  font-size: 36px;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-heading h2 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .section-heading h2 {
    font-size: 24px;
  }
}

.section-heading p {
  font-size: 16px;
  color: #636363;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .section-heading p {
    font-size: 14px;
  }
}

.section-heading.white h2, .section-heading.white p {
  color: #ffffff;
}

/* Preloader */

.preloader {
  background-color: #f3f3f3;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  overflow: hidden;
}

.preloader .line-preloader {
  position: absolute;
  left: 0;
  top: 50%;
  overflow: hidden;
  width: 0;
  height: 6px;
  z-index: 10;
  border-radius: 0;
  background-color: #f3f3f3;
  margin-top: -3px;
  -webkit-animation: line 20000ms infinite linear;
  animation: line 20000ms infinite linear;
}

@-webkit-keyframes line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* Miscellaneous */

.bg-img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-dark {
  background-color: #000000 !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.font-bold {
  font-weight: 700;
}

.font-light {
  font-weight: 300;
}

.bg-overlay {
  position: relative;
  z-index: 2;
  background-position: center;
  background-size: cover;
}

.bg-overlay::after {
  background-color: rgba(15, 6, 6, 0.7);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.bg-gray {
  background-color: #f3f3f3;
}

.bg-fixed {
  background-attachment: fixed !important;
}

/* ScrollUp */

#scrollUp {
  background-color: limegreen;
  border-radius: 0;
  bottom: 50px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-size: 24px;
  height: 40px;
  line-height: 40px;
  right: 50px;
  text-align: center;
  width: 40px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

#scrollUp:hover {
  background-color: #808080;
}

/* Crose Button */

.crose-btn {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 150px;
  height: 46px;
  color: #ffffff;
  background-color: limegreen;
  border-radius: 3px;
  padding: 0 30px;
  font-size: 14px;
  line-height: 46px;
  text-transform: uppercase;
  font-weight: 700;
}

.crose-btn.active, .crose-btn:hover, .crose-btn:focus {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  background-color: #808080;
}

.crose-btn.btn-2 {
  background-color: limegreen;
  color: #ffffff;
}

.crose-btn.btn-2.active, .crose-btn.btn-2:hover, .crose-btn.btn-2:focus {
  color: #ffffff;
  background-color: #808080;
}

/* Header Area */

.header-area {
  position: relative;
  width: 100%;
  z-index: 100;
}

.header-area .top-header {
  position: relative;
  z-index: 1;
  background-color: #f3f3f3;
  width: 100%;
}

.header-area .top-header .top-header-content {
  position: relative;
  z-index: 1;
  height: 50px;
}

.header-area .top-header .top-header-content .open, .header-area .top-header .top-header-content .email-address, .header-area .top-header .top-header-content .phone {
  font-size: 14px;
  color: #959595;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .top-header .top-header-content .open, .header-area .top-header .top-header-content .email-address, .header-area .top-header .top-header-content .phone {
    font-size: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .header-area .top-header .top-header-content .open span, .header-area .top-header .top-header-content .email-address span, .header-area .top-header .top-header-content .phone span {
    display: none;
  }
}

.header-area .top-header .top-header-content .open i, .header-area .top-header .top-header-content .email-address i, .header-area .top-header .top-header-content .phone i {
  color: limegreen;
  margin-right: 5px;
}

.header-area .top-header .top-header-content .open:hover, .header-area .top-header .top-header-content .email-address:hover, .header-area .top-header .top-header-content .phone:hover {
  color: limegreen;
}

.header-area .top-header .top-header-content .email-address {
  margin-right: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .top-header .top-header-content .email-address {
    margin-right: 15px;
  }
}

.header-area .top-header .top-header-content .top-social-info {
  position: relative;
  z-index: 1;
  /* border-left: 2px solid #959595; */
  /* margin-left: 30px; */
  padding-left: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .top-header .top-header-content .top-social-info {
    margin-left: 10px;
    padding-left: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .header-area .top-header .top-header-content .top-social-info {
    margin-left: 10px;
    padding-left: 5px;
  }
}

.header-area .top-header .top-header-content .top-social-info a {
  display: inline-block;
  padding: 0 10px;
  font-size: 14px;
  color: #959595;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .top-header .top-header-content .top-social-info a {
    font-size: 13px;
    padding: 0 5px;
  }
}

.header-area .top-header .top-header-content .top-social-info a:hover {
  color: limegreen;
}

.header-area .crose-main-menu {
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
}

.header-area .crose-main-menu .classy-navbar {
  height: 90px;
  padding: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area .crose-main-menu .classy-navbar .nav-brand {
    max-width: 120px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .crose-main-menu .classy-navbar .nav-brand {
    max-width: 120px;
  }
}

@media only screen and (max-width: 767px) {
  .header-area .crose-main-menu .classy-navbar .nav-brand {
    max-width: 120px;
  }
}

.header-area .classynav ul li a {
  font-weight: 700;
  text-transform: uppercase;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area .classynav ul li a {
    font-size: 13px;
    padding: 0 7px;
  }
}

.header-area .classynav ul li a:hover, .header-area .classynav ul li a:focus {
  color: limegreen;
}

.header-area .classynav ul li ul li a {
  padding: 0 20px;
  letter-spacing: 0;
  font-size: 13px;
}

.header-area .is-sticky .crose-main-menu {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 5px 50px 15px rgba(0, 0, 0, 0.2);
}

.header-area .header-btn {
  color: #ffffff;
  font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .header-btn {
    margin: 0 15px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .header-area .header-btn {
    margin: 0 15px 30px;
  }
}

.header-area .header-btn:hover {
  color: #ffffff;
  font-weight: 700;
}

.header-area #header-search {
  position: relative;
  z-index: 1;
  padding: 0 40px 0 28px;
  cursor: pointer;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area #header-search {
    padding: 15px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .header-area #header-search {
    padding: 15px 30px;
  }
}

.header-area #header-search:hover, .header-area #header-search:focus {
  color: limegreen;
}

.header-area .search-form-area {
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
  position: fixed;
  background-color: #1f1f2c;
  height: 50px;
  width: 100%;
  top: 0;
  left: 100%;
  z-index: 500;
  box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.15);
}

.header-area .search-form-area .searchForm {
  position: relative;
  z-index: 1;
}

.header-area .search-form-area .searchForm .close-icon {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  position: absolute;
  right: 0;
  color: rgba(255, 255, 255, 0.6);
  top: 0;
  z-index: 100;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  text-align: right;
}

.header-area .search-form-area .searchForm .close-icon:hover {
  color: white;
}

.header-area .search-form-area form {
  width: 100%;
}

.header-area .search-form-area form input {
  height: 50px;
  border: none;
  width: 100%;
  background-color: transparent;
  color: #ffffff;
}

.header-area .search-form-area.search-on {
  left: 0;
}

/* Hero Slides Area */

.hero-area, .hero-post-slides {
  position: relative;
  z-index: 1;
}

.single-hero-slide {
  width: 100%;
  height: 600px;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero-slide {
    height: 600px;
  }
}

@media only screen and (max-width: 767px) {
  .single-hero-slide {
    height: 450px;
  }
}

.single-hero-slide .hero-slides-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.single-hero-slide .hero-slides-content h2 {
  font-size: "Raleway", sans-serif;
  letter-spacing: 1px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  color: #ffffff;
  font-weight: 400px;
  font-size: 60px;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero-slide .hero-slides-content h2 {
    font-size: 48px;
  }
}

@media only screen and (max-width: 767px) {
  .single-hero-slide .hero-slides-content h2 {
    font-size: 30px;
  }
}

.single-hero-slide .hero-slides-content p {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .single-hero-slide .hero-slides-content p {
    font-size: 14px;
  }
}

.about {
  /* text-transform: lowercase; */
  width: 100%;
  height: 200px;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

/* Welcome Area */

.welcome-us-area {
  position: relative;
  z-index: 1;
}

.welcome-us-area .welcome-thumbnail {
  border-radius: 5px;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .welcome-us-area .welcome-thumbnail {
    margin-top: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .welcome-us-area .welcome-thumbnail {
    margin-top: 100px;
  }
}

.welcome-us-area .welcome-thumbnail img {
  border-radius: 5px;
}

.welcome-us-content {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.welcome-us-content img {
  border-radius: 5px;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  width: 500px;
  height: 300px
}

.welcome-us-content img img {
  border-radius: 5px;
}

.welcome-us-content .welcome-text h4 {
  font-weight: 600;
  margin-bottom: 15px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.welcome-us-content .welcome-text a {
  font-weight: 700;
  color: #959595;
}

.welcome-us-content .welcome-text a i {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.welcome-us-content .welcome-text a:hover {
  color: limegreen;
}

.welcome-us-content .welcome-text a:focus {
  color: limegreen;
}

.welcome-us-content .welcome-text a:hover i, .welcome-us-content .welcome-text a:focus i {
  padding-left: 5px;
}

/* Partner Area */

.partner-area {
  position: relative;
  z-index: 1;
  background-attachment: fixed;
}

.partner-area .partner-content h6 {
  font-weight: 600;
  color: limegreen;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  margin-bottom: 30px;
}

.partner-area .partner-content h2 {
  color: #ffffff;
  font-weight: 600;
  font-size: 42px;
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .partner-area .partner-content h2 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .partner-area .partner-content h2 {
    font-size: 24px;
  }
}

/* Health Tips Area */

.health-tips-area {
  position: relative;
  z-index: 1;
}

.health-tips-area .health-tips-thumbnail {
  border-radius: 5px;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .health-tips-area .health-tips-thumbnail {
    margin-top: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .health-tips-area .health-tips-thumbnail {
    margin-top: 100px;
  }
}

.health-tips-area .health-tips-thumbnail img {
  border-radius: 5px;
}

.health-tips-content {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.health-tips-content img {
  border-radius: 5px;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  width: 500px;
  height: 300px
}

.health-tips-content img img {
  border-radius: 5px;
}

.health-tips-content .health-tips-text h4 {
  font-weight: 600;
  margin-bottom: 15px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.health-tips-content .health-tips-text a {
  font-weight: 700;
  color: #959595;
}

.health-tips-content .health-tips-text a i {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.health-tips-content .health-tips-text a:hover {
  color: limegreen;
}

.health-tips-content .health-tips-text a:focus {
  color: limegreen;
}

.health-tips-content .health-tips-text a:hover i, .health-tips-content .health-tips-text a:focus i {
  padding-left: 5px;
}

/* Upcoming Events Area */

.upcoming-events-heading {
  position: relative;
  z-index: 1;
  padding: 70px 0 20px 0;
}

.upcoming-events-heading .section-heading {
  max-width: 100%;
}

.upcoming-events-slides-area {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.upcoming-events-slides-area .col-12 {
  padding: 0;
}

.upcoming-slides {
  position: relative;
  z-index: 2;
}

.upcoming-slides .owl-nav {
  position: absolute;
  top: -155px;
  right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 50;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .upcoming-slides .owl-nav {
    top: -80px;
  }
}

.upcoming-slides .owl-nav .owl-prev, .upcoming-slides .owl-nav .owl-next {
  font-size: 50px;
  color: #7c7171;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.upcoming-slides .owl-nav .owl-prev:hover, .upcoming-slides .owl-nav .owl-next:hover {
  color: #ffffff;
}

.upcoming-slides .owl-nav .owl-prev {
  margin-right: 30px;
}

.single-upcoming-events-area {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.single-upcoming-events-area .upcoming-events-thumbnail {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
  max-width: 300px;
  width: 300px;
  border-radius: 5px;
  padding-left: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-upcoming-events-area .upcoming-events-thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .single-upcoming-events-area .upcoming-events-thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 50px;
  }
}

.single-upcoming-events-area .upcoming-events-thumbnail img {
  border-radius: 5px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  width: 100%;
  /*width: 500px;*/
  height: 200px
}

.single-upcoming-events-area .upcoming-events-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 300px);
  flex: 0 0 calc(100% - 300px);
  max-width: calc(100% - 300px);
  width: calc(100% - 300px);
  padding-left: 50px;
  padding-right: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-upcoming-events-area .upcoming-events-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .single-upcoming-events-area .upcoming-events-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding-left: 15px;
  }
}

.single-upcoming-events-area .upcoming-events-content .events-text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  max-width: 70%;
  width: 70%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-upcoming-events-area .upcoming-events-content .events-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
    width: 60%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-upcoming-events-area .upcoming-events-content .events-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
    width: 60%;
  }
}

@media only screen and (max-width: 767px) {
  .single-upcoming-events-area .upcoming-events-content .events-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}

.single-upcoming-events-area .upcoming-events-content .events-text h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.single-upcoming-events-area .upcoming-events-content .events-text a {
  font-weight: 700;
  color: #959595;
}

.single-upcoming-events-area .upcoming-events-content .events-text a i {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.single-upcoming-events-area .upcoming-events-content .events-text a:hover, .single-upcoming-events-area .upcoming-events-content .events-text a:focus {
  color: limegreen;
}

.single-upcoming-events-area .upcoming-events-content .events-text a:hover i, .single-upcoming-events-area .upcoming-events-content .events-text a:focus i {
  padding-left: 5px;
}

.single-upcoming-events-area .upcoming-events-content .events-text .events-meta {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

.single-upcoming-events-area .upcoming-events-content .events-text .events-meta a {
  display: inline-block;
  font-size: 14px;
  color: #959595;
  font-style: italic;
  margin-right: 15px;
  font-weight: 400;
}

.single-upcoming-events-area .upcoming-events-content .events-text .events-meta a i {
  color: limegreen;
  padding-right: 5px;
}

.single-upcoming-events-area .upcoming-events-content .events-text .events-meta a:hover, .single-upcoming-events-area .upcoming-events-content .events-text .events-meta a:focus {
  color: limegreen;
}

.single-upcoming-events-area .upcoming-events-content .events-text .events-meta a:hover i, .single-upcoming-events-area .upcoming-events-content .events-text .events-meta a:focus i {
  padding-left: 0;
}

.single-upcoming-events-area .upcoming-events-content .find-out-more-btn {
  padding-left: 50px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 30%;
  width: 30%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-upcoming-events-area .upcoming-events-content .find-out-more-btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
    width: 40%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-upcoming-events-area .upcoming-events-content .find-out-more-btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
    width: 40%;
  }
}

@media only screen and (max-width: 767px) {
  .single-upcoming-events-area .upcoming-events-content .find-out-more-btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}

.single-upcoming-events-area .upcoming-events-content .find-out-more-btn a {
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-upcoming-events-area .upcoming-events-content .find-out-more-btn {
    padding-left: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .single-upcoming-events-area .upcoming-events-content .find-out-more-btn {
    margin-top: 30px;
    padding-left: 0;
  }
}

/* About Area */

.about-area {
  position: relative;
  z-index: 1;
  margin-bottom: -106px;
}

@media only screen and (max-width: 767px) {
  .about-area {
    margin-bottom: 150px;
  }
}

.about-content .about-text {
  position: relative;
  z-index: 1;
  width: 80%;
  left: 10%;
  right: 10%;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.15);
  padding: 5% 8%;
  top: -206px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content .about-text {
    width: 90%;
    left: 5%;
    right: 5%;
  }
}

@media only screen and (max-width: 767px) {
  .about-content .about-text {
    width: 100%;
    left: 0%;
    right: 0%;
    top: 50px;
    padding: 30px 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-content .about-text {
    padding: 50px 30px;
  }
}

.about-content .about-text h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content .about-text h2 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .about-content .about-text h2 {
    font-size: 24px;
  }
}

.about-content .about-text p {
  font-size: 16px;
  text-align: left;
}

.about-content .about-text .about-meta-data p {
  margin-right: 30px;
  font-size: 14px;
  text-align: center;
}

.about-content .about-text .about-meta-data p i {
  color: limegreen;
}

.about-content .about-text .about-cata {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

.about-content .about-text .about-cata a {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: 0 10px;
  border: 2px solid #ebebeb;
  color: #959595;
  border-radius: 50%;
  line-height: 28px;
  text-align: center;
}

.about-content .about-text .about-cata a:hover {
  color: #ffffff;
  background-color: limegreen;
  border-color: limegreen;
}

.about-content .about-text .read-more-share .read-more-btn a {
  font-weight: 700;
  color: #959595;
}

.about-content .about-text .read-more-share .read-more-btn a i {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.about-content .about-text .read-more-share .read-more-btn a:hover, .about-content .about-text .read-more-share .read-more-btn a:focus {
  color: limegreen;
}

.about-content .about-text .read-more-share .read-more-btn a:hover i, .about-content .about-text .read-more-share .read-more-btn a:focus i {
  padding-left: 5px;
}

@media only screen and (max-width: 767px) {
  .about-content .about-text .read-more-share .share {
    margin-top: 30px;
  }
}

.about-content .about-text .read-more-share .share span, .about-content .about-text .read-more-share .share a {
  color: #959595;
  padding: 0 10px;
  font-size: 14px;
}

.about-content .about-text .read-more-share .share span:hover, .about-content .about-text .read-more-share .share span:focus, .about-content .about-text .read-more-share .share a:hover, .about-content .about-text .read-more-share .share a:focus {
  color: limegreen;
}

@media only screen and (max-width: 767px) {
  .about-content .about-text .read-more-share .share span, .about-content .about-text .read-more-share .share a {
    padding: 0 5px;
  }
}

/* Gallery Area */

.gallery-area {
  display: flex;
  flex-wrap: wrap;
}

.gallery-header h2, p {
  color: #4d4d4d;
}

.gallery-header p {
  font-size: 17px;
}

.gallery-area .row {
  margin-bottom: 50px;
}

.gallery-area .column {
  flex: 25%;
  max-width: 25%;
}

.gallery-area .column img {
  vertical-align: middle;
  width: 90%;
  transition-duration: 800ms;
  padding: 5px;
  border-radius: 10px;
}

.gallery-area .column img:hover {
  filter: blur(2px);
  cursor: pointer;
  transform: scale(1.1);
  transform: rotate(2deg);
}

@media (max-width: 800px) {
  .gallery-area .column {
    flex: 50%;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .gallery-area .column {
    flex: 100%;
    max-width: 100%;
  }
}

/* Blog Area */

.single-blog-post {
  position: relative;
  z-index: 1;
}

.single-blog-post .post-thumbnail {
  position: relative;
  z-index: 1;
  border-radius: 3px;
}

.single-blog-post .post-thumbnail img {
  border-radius: 3px;
}

.single-blog-post .post-content {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

.single-blog-post .post-content .post-title h4 {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  font-weight: 600;
  margin-bottom: 15px;
}

.single-blog-post .post-content .post-title h4:hover {
  color: limegreen;
}

.single-blog-post .post-content .post-meta {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.single-blog-post .post-content .post-meta a {
  color: #959595;
  font-size: 14px;
}

.single-blog-post .post-content .post-meta a:first-child {
  border-right: 1px solid #d2d2d2;
  margin-right: 15px;
  padding-right: 15px;
}

.single-blog-post .post-content .post-meta a i {
  color: limegreen;
}

.single-blog-post .post-content .post-meta a:hover, .single-blog-post .post-content .post-meta a:focus {
  color: limegreen;
}

.single-blog-post .post-content .post-excerpt {
  font-size: 14px;
  color: #636363;
  margin-bottom: 0;
}

.single-blog-post .post-content .post-excerpt a {
  font-weight: 700;
  color: #959595;
}

.single-blog-post .post-content .post-excerpt a i {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.single-blog-post .post-content .post-excerpt a:hover {
  color: limegreen;
}

.single-blog-post .post-content .post-excerpt a:focus {
  color: limegreen;
}

.single-blog-post .post-content .post-excerpt a:hover i, .single-blog-post .post-content .post-excerpt a:focus i {
  padding-left: 5px;
}

.single-post-details-area {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.single-post-details-area img {
  width: 100%;
}

.single-post-details-area .post-content .post-title {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 36px;
  font-weight: 600;
}

.single-post-details-area .post-content .single-events-meta {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

.single-post-details-area .post-content .single-events-meta a {
  display: inline-block;
  font-size: 14px;
  color: #959595;
  font-style: italic;
  margin-right: 15px;
  font-weight: 400;
}

.single-post-details-area .post-content .single-events-meta a i {
  color: limegreen;
  padding-right: 5px;
}

.single-post-details-area .post-content .single-events-meta a:hover, .single-post-details-area .post-content .single-events-meta a:focus {
  color: limegreen;
}

.single-post-details-area .post-content .single-events-meta a:hover i, .single-post-details-area .post-content .single-events-meta a:focus i {
  padding-left: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-post-details-area .post-content .post-title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .single-post-details-area .post-content .post-title {
    font-size: 24px;
  }
}

.single-post-details-area .post-content .post-meta {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.single-post-details-area .post-content .post-meta a {
  display: inline-block;
  font-size: 14px;
  color: #1f1f2c;
  margin-right: 15px;
}

.single-post-details-area .post-content .post-meta a:first-child {
  font-style: italic;
}

.single-post-details-area .post-content .post-meta a span, .single-post-details-area .post-content .post-meta a i {
  color: #959595;
  margin-left: 3px;
}

.single-post-details-area .post-content .post-meta a:hover {
  color: limegreen;
}

.single-post-details-area .post-content p {
  font-size: 16px;
  color: #636363;
}

.single-post-details-area .post-content blockquote {
  position: relative;
  z-index: 1;
  padding: 0 30px;
  border-left: 2px solid limegreen;
  margin: 25px 0;
}

.single-post-details-area .post-content blockquote .blockquote-text h6 {
  font-weight: 600;
  line-height: 1.9;
}

.single-post-details-area .post-content blockquote .blockquote-text h6 span {
  color: #959595;
}

.single-post-details-area .post-content blockquote .blockquote-text h6:first-child {
  font-style: italic;
  margin-bottom: 15px;
}

.single-post-details-area .post-content blockquote .blockquote-text h6:last-child {
  line-height: 1.2;
  margin-bottom: 0;
}

/* Contact Area */

.contact-content-area {
  position: relative;
  z-index: 50;
  padding: 30px;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.15);
  top: -100px;
  background-color: #ffffff;
}

.contact-content-area .contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .contact-content-area .contact-content {
    margin-bottom: 50px;
  }
}

.contact-content-area .contact-content h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-content-area .contact-content h4 {
    font-size: 18px;
  }
}

.contact-content-area .contact-content p {
  color: limegreen;
  font-size: 14px;
  margin-bottom: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-content-area .contact-content p {
    font-size: 12px;
  }
}

.contact-content-area .contact-content p:last-child {
  margin-bottom: 0;
}

.contact-content-area .contact-content::after {
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #d2d2d5;
  content: '';
  right: -15px;
  top: 0;
  z-index: 10;
}

@media only screen and (max-width: 767px) {
  .contact-content-area .contact-content::after {
    display: none;
  }
}

.contact-content-area .col-12:last-child .contact-content::after {
  display: none;
}

.contact-content-area .col-12:last-child .contact-content:last-child {
  margin-bottom: 0;
}

.contact-form-area label {
  font-size: 16px;
  color: #636363;
}

.contact-form-area .form-control {
  position: relative;
  z-index: 2;
  height: 50px;
  width: 100%;
  background-color: #ffffff;
  font-size: 12px;
  margin-bottom: 30px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  padding: 15px 30px;
  color: #bbbbbb;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.contact-form-area .form-control:focus {
  box-shadow: none;
  border-color: limegreen;
}

.contact-form-area textarea.form-control {
  height: 150px;
}

/* Map Area */

.map-area {
  position: relative;
  z-index: 2;
}

.map-area iframe {
  width: 100%;
  height: 530px;
  border: none;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .map-area iframe {
    height: 300px;
  }
}

/* Breadcumb Area */

.breadcrumb-area {
  position: relative;
  z-index: 10;
  width: 100%;
}

.breadcrumb-area .breadcrumb {
  margin: 0;
  padding: 0;
  padding-top: 30px;
  background-color: transparent;
}

.breadcrumb-area .breadcrumb .breadcrumb-item {
  font-size: 15px;
  color: #959595;
  font-weight: 600;
}

.breadcrumb-area .breadcrumb .breadcrumb-item a {
  font-size: 15px;
  color: #1f1f2c;
  font-weight: 600;
}

.breadcrumb-area .breadcrumb .breadcrumb-item a:hover, .breadcrumb-area .breadcrumb .breadcrumb-item a:focus {
  color: limegreen;
}

.breadcrumb-area .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #1f1f2c;
  font-family: 'FontAwesome';
  content: "\f105";
}

/*Sidebar Area */

.single-widget-area {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.single-widget-area .widget-title h6 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.single-widget-area .widget-content img {
  margin-top: 20px;
  margin-bottom: 15px;
}

.single-widget-area .widget-content p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

.single-widget-area .single-latest-post {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  border-bottom: 1px solid #ebebeb;
}

.single-widget-area .single-latest-post:last-child {
  margin-bottom: 0;
}

.single-widget-area .single-latest-post .post-title h6 {
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.single-widget-area .single-latest-post .post-title h6:hover, .single-widget-area .single-latest-post .post-title h6:focus {
  color: limegreen;
}

.single-widget-area .single-latest-post p {
  color: #959595;
  font-style: italic;
}

.single-widget-area .single-latest-post .about-meta-data {
  padding-bottom: 15px;
}

.single-widget-area .single-latest-post .about-meta-data p {
  margin-bottom: 5px;
  color: #959595;
  font-style: normal;
}

.single-widget-area .single-latest-post .about-meta-data p:last-child {
  margin-bottom: 0;
}

.single-widget-area .single-latest-post .about-meta-data p i {
  width: 15px;
  color: limegreen;
}

.single-widget-area .single-latest-post .about-meta-data p span {
  font-style: italic;
  color: #636363;
}

.single-widget-area .popular-tags li a {
  display: inline-block;
  margin: 4px;
  border: 1px solid #ebebeb;
  padding: 10px 15px;
  line-height: 1;
  text-transform: uppercase;
  font-size: 13px;
  color: #1f1f2c;
  border-radius: 2px;
}

.single-widget-area .popular-tags li a:hover, .single-widget-area .popular-tags li a:focus {
  color: #ffffff;
  border-color: limegreen;
  background-color: limegreen;
}

.single-widget-area .crose-catagories {
  position: relative;
  z-index: 1;
}

.single-widget-area .crose-catagories li a {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1;
  color: #636363;
}

.single-widget-area .crose-catagories li a:hover {
  color: limegreen;
}

.single-widget-area .crose-catagories li a i {
  margin-right: 5px;
}

.single-widget-area .crose-catagories li:last-child a {
  margin-bottom: 0;
}

.single-widget-area .crose-archives {
  position: relative;
  z-index: 1;
}

.single-widget-area .crose-archives li a {
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #636363;
  margin-bottom: 20px;
}

.single-widget-area .crose-archives li a:hover {
  color: limegreen;
}

.single-widget-area .crose-archives li:last-child a {
  margin-bottom: 0;
}

.single-widget-area .search-form {
  position: relative;
  z-index: 2;
}

.single-widget-area .search-form input {
  background-color: #ffffff;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  font-size: 14px;
  border: 1px solid #ebebeb;
  color: #959595;
  border-radius: 2px;
}

.single-widget-area .search-form input:focus {
  box-shadow: none;
}

.single-widget-area .search-form button {
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  z-index: 10;
  border: none;
  cursor: pointer;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.single-widget-area .search-form button:hover {
  color: limegreen;
}

/* Post Tags & Share Area */

.post-tags-share {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  border-top: 1px solid #ebebeb;
  padding-top: 15px;
}

.post-tags-share .popular-tags li a {
  display: inline-block;
  margin: 4px;
  line-height: 1;
  text-transform: capitalize;
  font-size: 14px;
  color: #959595;
  font-style: italic;
}

.post-tags-share .popular-tags li a:hover, .post-tags-share .popular-tags li a:focus {
  color: limegreen;
}

.post-tags-share .post-share span {
  font-size: 14px;
}

.post-tags-share .post-share a {
  font-size: 14px;
  display: inline-block;
  padding: 0 10px;
}

.post-tags-share .post-share a:hover, .post-tags-share .post-share a:focus {
  color: limegreen;
}

@media only screen and (max-width: 767px) {
  .post-tags-share .post-share a {
    padding: 0 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post-sidebar-area {
    margin-top: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .post-sidebar-area {
    margin-top: 100px;
  }
}

/* Subscribe Area */

.subscribe-area {
  position: relative;
  z-index: 1;
  padding: 40px 0;
  background-color: #371515;
}

.subscribe-area .subscribe-text h3 {
  font-weight: 600;
  font-size: 30px;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .subscribe-area .subscribe-text h3 {
    font-size: 24px;
  }
}

.subscribe-area .subscribe-text h6 {
  font-weight: 400;
  margin-bottom: 0;
  color: #ffffff;
}

.subscribe-area .subscribe-form {
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .subscribe-area .subscribe-form {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .subscribe-area .subscribe-form {
    margin-top: 30px;
  }
}

.subscribe-area .subscribe-form input {
  width: 470px;
  height: 55px;
  background-color: #ffffff;
  border: none;
  border-radius: 2px;
  padding: 0 30px;
  color: #636363;
  font-size: 14px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .subscribe-area .subscribe-form input {
    width: 450px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .subscribe-area .subscribe-form input {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .subscribe-area .subscribe-form input {
    width: 100%;
  }
}

.subscribe-area .subscribe-form button {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 10;
}

/* pagination Area */

.pagination-area {
  position: relative;
  z-index: 1;
}

.pagination-area .pagination {
  position: relative;
  z-index: 1;
}

.pagination-area .pagination .page-item .page-link {
  width: 40px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  text-align: center;
  color: #636363;
  padding: 0;
  margin: 0 5px;
  font-size: 16px;
}

.pagination-area .pagination .page-item .page-link:hover, .pagination-area .pagination .page-item .page-link:focus {
  color: #ffffff;
  border-color: limegreen;
  background-color: limegreen;
}

.pagination-area .pagination .page-item.active .page-link {
  color: #ffffff;
  border-color: limegreen;
  background-color: limegreen;
}

/* Footer Area */

.footer-area {
  position: relative;
  z-index: 1;
}

.footer-area .main-footer-area {
  position: relative;
  z-index: 1;
  padding-top: 70px;
  background-color: #1D0B0B;
}

.footer-area .main-footer-area .single-footer-widget {
  position: relative;
  z-index: 1;
}

.footer-area .main-footer-area .single-footer-widget .footer-logo {
  display: block;
  margin-bottom: 40px;
}

.footer-area .main-footer-area .single-footer-widget p {
  color: #c2c2c2;
  margin-bottom: 0;
}

.footer-area .main-footer-area .single-footer-widget .widget-title {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
}

.footer-area .main-footer-area .single-footer-widget .footer-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-area .main-footer-area .single-footer-widget .footer-menu ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
}

.footer-area .main-footer-area .single-footer-widget .footer-menu ul li a {
  font-size: 14px;
  color: #959595;
  font-weight: 600;
  padding: 7px 0;
  display: block;
}

.footer-area .main-footer-area .single-footer-widget .footer-menu ul li a:hover {
  color: limegreen;
}

.footer-area .main-footer-area .single-footer-widget .single-latest-news {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.footer-area .main-footer-area .single-footer-widget .single-latest-news:last-child {
  margin-bottom: 0;
}

.footer-area .main-footer-area .single-footer-widget .single-latest-news a {
  display: block;
  color: #c2c2c2;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.footer-area .main-footer-area .single-footer-widget .single-latest-news a:hover, .footer-area .main-footer-area .single-footer-widget .single-latest-news a:focus {
  color: limegreen;
}

.footer-area .main-footer-area .single-footer-widget .single-latest-news p {
  color: #636363;
  font-style: italic;
  margin-bottom: 0;
}

.footer-area .main-footer-area .single-footer-widget .single-latest-news p i {
  color: limegreen;
}

.footer-area .main-footer-area .single-footer-widget .contact-information p, .footer-area .main-footer-area .single-footer-widget .contact-information a {
  color: #c2c2c2;
  font-size: 14px;
  line-height: 1.2;
  display: block;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-area .main-footer-area .single-footer-widget .contact-information p i, .footer-area .main-footer-area .single-footer-widget .contact-information a i {
  color: limegreen;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25px;
  flex: 0 0 25px;
  max-width: 25px;
  width: 25px;
}

.footer-area .main-footer-area .single-footer-widget .contact-information a:hover {
  color: limegreen;
}

.footer-area .copywrite-area {
  position: relative;
  z-index: 1;
  background-color: #120606;
  height: 50px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .footer-area .copywrite-area {
    height: auto;
    padding: 15px 0;
  }
}

.footer-area .copywrite-area .copywrite-text {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .footer-area .copywrite-area .copywrite-text {
    text-align: center;
  }
}

.footer-area .copywrite-area .copywrite-text p {
  color: #c2c2c2;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .footer-area .copywrite-area .copywrite-text p {
    font-size: 13px;
  }
}

.footer-area .copywrite-area .copywrite-text p a {
  color: #c2c2c2;
}

.footer-area .copywrite-area .copywrite-text p a:hover, .footer-area .copywrite-area .copywrite-text p a:focus {
  color: limegreen;
}

.footer-area .copywrite-area .footer-social-icon {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .footer-area .copywrite-area .footer-social-icon {
    text-align: center;
    margin-top: 15px;
  }
}

.footer-area .copywrite-area .footer-social-icon a {
  display: inline-block;
  margin-left: 30px;
  color: #959595;
  font-size: 14px;
}

.footer-area .copywrite-area .footer-social-icon a:hover, .footer-area .copywrite-area .footer-social-icon a:focus {
  color: limegreen;
}

.dropbtn {
  background-color: #fff;
  color: #222;
  padding: 16px 16px 16px 10px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  color: limegreen;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: relative;
  background-color: #f1f1f1;
  min-width: 300px;
  padding: 16px 16px 20px 10px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  top: 0;
}

.dropdown-content a {
  color: #222;
  padding: 5px 16px;
  text-decoration: none;
  display: block;
  font-weight: bold;
}

.dropdown a:hover {background-color: #ddd; color: limegreen}

.show {display: block;}

.alert {
    padding: 5px;
    background-color: #f44336;
    color: white;
    opacity: 1;
    transition: opacity 0.6s;
    margin-bottom: 5px;
}

.alert.success {background-color: #4CAF50;}
.alert.info {background-color: #2196F3;}
.alert.warning {background-color: #ff9800;}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}