/*!
*--------------
* Template Name: EventPlanner - v1.0
* Template URL: dycodes.github.com/EventPlanner
* Author: Yusuf Daudu - dyCodes
* Author URL: github.com/dycodes
* License: https://dycodes.github.com/EventPlanner/license
*---------------------------------
*/
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
}

body {
  color: #222;
}

a {
  text-decoration: none;
}

img {
  width: 80%;
}

p {
  color: #444;
}

/*!----- HEADER -------*/
header #topbar {
  height: 40px;
  color: #fff;
  padding: 0;
  font-size: 14px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: #d2b907;
}

header #topbar .contact-info i {
  font-style: normal;
}

header #topbar .contact-info i a,
header #topbar .contact-info i span {
  color: #fff;
  padding-left: 5px;
}

header #topbar .social-links a {
  color: #fff;
  line-height: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: 20px;
}

header .navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

header .navbar .logo {
  max-width: 113px;
}

header .navbar .navbar-toggler {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  font-size: 35px;
  color: #fff;
}

header .navbar .navbar-collapse a.nav_link {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 5px;
  margin-left: 20px;
  letter-spacing: 0.2px;
}

header .navbar .navbar-collapse a.nav_link.active, header .navbar .navbar-collapse a.nav_link:hover {
  color: #f80d05 !important;
}

header.onScroll .navbar {
  background: #111;
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/*!----- FOOTER -------*/
footer {
  color: #bbb;
  padding: 10px;
  background: #222;
  text-align: center;
}

footer .container .col-md-6 {
  margin: 10px auto;
}

footer .container .col-md-6 .bi {
  font-size: 18px;
}

#whatsapp_button {
  position: fixed;
  right: 1%;
  bottom: 50px;
  z-index: 10;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
}

#whatsapp_button a {
  display: block;
  height: 55px;
  width: 55px;
  padding: 5px;
  border-radius: 50%;
  background: #25d366;
  -webkit-box-shadow: 0 0 18px -5px #25d366;
          box-shadow: 0 0 18px -5px #25d366;
}

#whatsapp_button a .bi-whatsapp {
  color: #fff;
  font-size: 30px;
}

#whatsapp_button._show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*!----- RESPONSIVE STYLES -------*/
@media (max-width: 991px) {
  header .navbar .navbar-collapse ul {
    background: #fff;
  }
  header .navbar .navbar-collapse ul a.nav_link {
    color: #222;
    display: block;
    padding: 12px;
    font-size: 16px;
    margin: 0;
    border-bottom: 1px solid #ddd;
  }
  header .navbar .navbar-collapse ul a.nav_link:hover {
    background: #f5f5f5;
  }
}

/*!----- MAIN -------*/
main > section {
  padding: 80px 0;
}

main > section .section_title {
  text-align: center;
  padding-bottom: 10px;
}

main > section .section_title h2 {
  text-transform: uppercase;
}

main > section .section_title p {
  text-transform: capitalize;
}

/*!----- HERO SECTION -------*/
#hero {
  height: 100vh;
  position: relative;
  min-height: 480px;
  max-height: 740px;
  padding: 0;
  background: #222;
}

#hero .hero_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#hero .content {
  color: #fff;
  height: 100%;
  width: 100%;
  padding-top: 90px;
  position: absolute;
  top: 0;
  left: 0;
  display: -ms-grid;
  display: grid;
  place-content: center;
  background: rgba(17, 17, 17, 0.7);
}

#hero .content h1,
#hero .content h2 {
  text-shadow: 0 0 3px #222;
}

#hero .content h2 {
  margin: 15px 0 30px;
  font-size: 20px;
  font-weight: 300;
  color: #eee;
  max-width: 730px;
}

#hero .content a {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 40px;
  letter-spacing: 1px;
  border-radius: 3px;
}

/*!----- SERVICES SECTION -------*/
#services .card {
  overflow: hidden;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

#services .card img {
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.8s 0.1s;
  transition: 0.8s 0.1s;
}

#services .card img:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

#services .card .card-body {
  z-index: 1;
  padding: 20px;
  background: #fff;
}

#services .card .card-body .card-title {
  font-size: 1.35rem;
  color: #333;
}

#services .card .card-body .card-text {
  font-size: 15px;
  margin-top: 14px;
}

/*!----- ABOUT SECTION -------*/
#about {
  padding: 110px 10px;
  position: relative;
  background: url("../img/event-location.jpg") center center;
  background-size: cover;
}

#about:before {
  content: '';
  background: rgba(17, 17, 17, 0.95);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#about .about_img {
  position: relative;
  -webkit-transition: 0.6s 0.1s;
  transition: 0.6s 0.1s;
}

#about .about_img img {
  border: 1px solid #444;
}

#about .about_img:before {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: '';
  border-left: 3px solid #e7d34a;
  border-top: 3px solid #e7d34a;
  -webkit-transition: 0.5s 0.1s;
  transition: 0.5s 0.1s;
}

#about .about_img:after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: '';
  border-right: 3px solid #e7d34a;
  border-bottom: 3px solid #e7d34a;
  -webkit-transition: 0.5s 0.1s;
  transition: 0.5s 0.1s;
}

#about .about_img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#about .about_img:hover::before {
  left: 10px;
  top: 10px;
}

#about .about_img:hover::after {
  right: 10px;
  bottom: 10px;
}

#about .section_title {
  color: #ddd;
  font-size: 18px;
  text-align: left;
  font-weight: 600;
  padding-bottom: 5px;
}

#about .section_title:after {
  display: block;
  content: '';
  width: 45px;
  height: 2px;
  margin-top: 6px;
  margin-bottom: 10px;
  background-color: #e7d34a;
}

#about .content {
  z-index: 1;
}

#about .content p {
  color: #ddd;
}

/*!----- GALLERY SECTION -------*/
#gallery .gallery_item {
  height: 170px;
  overflow: hidden;
  margin-top: 10px;
  border: 1px solid #ddd;
}

#gallery .gallery_item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#glightbox-body .gslide-media img {
  padding-top: 15px;
}

#glightbox-body .gslide-description {
  text-align: center;
  background: transparent;
}

#glightbox-body .gslide-description .gslide-desc {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 5px 20px;
  background: #222;
}

/*!----- CONTACT SECTION -------*/
#contact {
  padding-top: 0;
}

#contact .section_title {
  padding: 60px 10px 90px;
  position: relative;
  background: url("../img/gallery/event-location.jpg") center center;
  background-size: cover;
}

#contact .section_title:before {
  content: '';
  background: rgba(17, 17, 17, 0.95);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#contact .section_title h2,
#contact .section_title p,i {
  color: #fff;
  z-index: 1;
  position: relative;
}
#social-icon:hover{
  color: rgb(221, 131, 131) !important;
}

#contact .section_title p {
  color: #ddd;
}

#contact .container {
  color: #fff;
  position: relative;
  z-index: 1;
}

#contact .row.info {
  color: #222;
  position: relative;
  top: -60px;
}

#contact .row.info .info_box {
  padding: 25px 10px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #eaeaea;
  background: #fff;
  -webkit-box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.1);
}

#contact .row.info .info_box i.bi {
  display: -ms-inline-grid;
  display: inline-grid;
  color: #000;
  padding: 12px;
  font-size: 25px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #ddd;
}

#contact .row.contactBox {
  margin: 0;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
}

#contact .row.contactBox .map {
  padding: 0 !important;
  background: #aaa;
  border: 1px solid #eee;
  min-height: 400px;
}

#contact .row.contactBox .map > div {
  height: 100%;
}

#contact .row.contactBox .map > div iframe {
  height: 100%;
}

#contact .row.contactBox .map > div > a {
  display: none;
}

#contact .row.contactBox .form {
  padding: 40px 20px;
}

#contact .row.contactBox .form form > div {
  margin-bottom: 20px;
}

#contact .row.contactBox .form form > div > .mt-md-0 {
  margin-top: 20px;
}

#contact .row.contactBox .form .form-control,
#contact .row.contactBox .form .form-select {
  color: #444;
  border-radius: 2px;
  padding: 12px 15px;
  font-size: 13px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #b8b8b8;
}

#contact .row.contactBox .form button {
  padding: 8px 40px;
  border-radius: 2px;
}

@media (min-width: 768px) {
  #gallery .gallery_item {
    height: 280px;
  }
}
