.ig_feed_container{
    width:100%; margin:0 auto; font-family:Arial, Helvetica, sans-serif;
}
 
.ig_post_container{
    border: 2px solid #f1f1f1; margin-bottom:25px; margin-left:3%; width:20%; height:550px; float:left;
}
 
.ig_post_container img{
    width:100%;
}
 
.ig_post_container .ig_post_details{
    padding:15px;
}
 
.ig_post_container .ig_view_link{
    margin-top:10px;
}


/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.map {
  padding-top: 100px;
  padding-bottom: 80px;
}
.map iframe {
  width: 100%;

}

.map p {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-align: left;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

@media (max-width: 768px) {

  .map p {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #FFFFFF;
  }

}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin-top: -73px;
  }
  #hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  #hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  #hero .carousel-item::before {
    content: "";
  }
  #hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 50px;
    right: 50px;
  }
  #hero .container {
    text-align: center;
  }
  #hero h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 700;
  }
  #hero p {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
  }
  #hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
  }
  #hero .carousel-inner .carousel-item,
  #hero .carousel-inner .active.carousel-item-start,
  #hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
  }
  #hero .carousel-inner .active,
  #hero .carousel-inner .carousel-item-next.carousel-item-start,
  #hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
  }
  #hero .carousel-inner .carousel-item-next,
  #hero .carousel-inner .carousel-item-prev,
  #hero .carousel-inner .active.carousel-item-start,
  #hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  #hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
  }
  #hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
  }
  #hero .carousel-indicators li.active {
    opacity: 1;
    background: #2E808A;
  }
  #hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: #2E808A;
  }
  #hero .btn-get-started:hover {
    background: #2E808A;
  }
  @media (max-width: 992px) {
    #hero {
      height: 100vh;
    }
    #hero .carousel-container {
      top: 8px;
    }
  }
  @media (max-width: 768px) {
    #hero h2 {
      font-size: 28px;
    }
  }
  @media (min-width: 1024px) {
    #hero .carousel-control-prev, #hero .carousel-control-next {
      width: 5%;
    }
  }
  @media (max-height: 500px) {
    #hero {
      height: 120vh;
    }
  }
  

  
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/



  .profile-card{
    position: relative;
    font-family: sans-serif;
    width: 280px;
    height: 280px;
    background: #2E808A;
    padding: 30px;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
    margin: auto;
    cursor: pointer;
  }



  .profile-card:hover{
    border-radius: 10px;
    height: 320px;
  }

  .profile-card .img{
    width: 100%;
    height: 100%;
    transition: .6s;
    z-index: 99;
    transform: translateY(50px);

  }
  .profile-card:hover .img{
    transform: translateY(-60px);
  }
  .img img{
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
  }
  .profile-card:hover img{
    border-radius: 10px;
  }
  .caption{
    text-align: center;
    transform: translateY(80px);
    opacity: 1;
    transition: .6s;
  }
  .profile-card:hover .caption{
    opacity: 1;
    transform: translateY(-80px);
    transition: .6s;

  }


  .caption h3{
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    color: #fff;
  }
  .caption p{
    font-size: 15px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    margin: 2px 0 9px 0;
  }
  .caption .social-links a{
    color: #333;
    margin-right: 15px;
    font-size: 21px;
    transition: .6s;
  }
  .social-links a:hover{
    color: #0c52a1;
  }


  .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: none !important;
}




  /* Team Section
--------------------------------*/


#team {
  background: #000;
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}


#team .card {
  background: #000;
  cursor: pointer;

}

#team .card-body h2 {
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  font-size: 36px;
  line-height: 65px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

#team .card:hover .card-body h2 {
 
  color: #2E808A;
  transition: all 300ms;

}


#team .card-body p {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

#team .modal-header h5 {
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  font-size: 36px;
  color: #000;

}

#team .modal-body p {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  letter-spacing: 0.01em;

}


#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

#team .profile-card{
  position: relative;
  font-family: sans-serif;
  width: 280px;
  height: 280px;
  background: #2E808A;
  padding: 30px;
  border-radius: 50%;
  box-shadow: 0 0 22px #3336;
  transition: .6s;
  margin: auto;
  cursor: pointer;
}


#team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
#team .member .member-info-content {
  margin-top: 50px;
  transition: margin 0.2s;
}
#team .member:hover .member-info {
  background: rgba(0, 62, 128, 0.7);
  opacity: 1;
  transition: 0.4s;
}
#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}
#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}
#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}
#team .member .social {
  margin-top: 15px;
}
#team .member .social a {
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.7);
}
#team .member .social a:hover {
  color: #fff;
}
#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services-title h2 {
  padding: 20px 0;
  color: #2E808A;
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
font-size: 36px;
line-height: 55px;
letter-spacing: 0.01em;
text-align: Left;
}

.services-title p {
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
font-size: 18px;
line-height: 1.6em !important;
letter-spacing: 0.01em;
text-align: justify;
}


@media (max-width: 767px) {
  .services-title h2, .services-title p {
   text-align: center !important;
  }
}



.section-bg-dark-service {
  background: url(../img/services_bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.section-bg-dark-service:before {
  content: "";
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portf .member {
  text-align: center;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  background: #000;
}



.portf .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
  filter: grayscale(100%);
}

.portf .member img:hover {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
  box-shadow: 0px 0px 30px 0px rgba(255, 255, 255, 0.5);
  transition: all 300ms;
    filter: none;


}

.portf .member h2 {
  margin-bottom: 2px;
  font-size: 36px;
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  line-height: 65px;
letter-spacing: 0.05em;
}

.portf .member:hover h2 {
  margin-bottom: 2px;
  font-size: 36px;
  color: #2E808A;
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 300ms;
  line-height: 65px;
  letter-spacing: 0.05em;

}



/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/

#venue .container-fluid {
  margin-bottom: 3px;
}
#venue .venue-gallery-container {
  padding-right: 12px;
}
#venue .venue-gallery {
padding-bottom: 10px;
overflow: hidden;

}

#venue .venue-gallery .img-fluid {
  max-width: 100%;
 height: auto;
  display: block;
  }

 

#venue .venue-gallery img {
  transition: all ease-in-out 0.4s;

}


#venue .venue-gallery:hover img {
  transform: scale(1.1);

}

#venue .venue-btn {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #2E808A;
  background: #000;
}
#venue .venue-btn:hover, .venue-btn:focus {
  background: #000;
  color: #2E808A;
  border: 2px solid #2E808A;
 
  box-shadow: 0 0 10px 0 #2E808A inset, 0 0 20px 2px #2E808A;

}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 40px 40px;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  text-align: center;
}
.contact .info i {
  font-size: 48px;
  color: #92bce0;
  margin-bottom: 15px;
}
.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
.contact .info p {
  font-size: 15px;
}
.contact .php-email-form {
  width: 100%;
  padding: 0 30px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}


label  {
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 28px;
  margin-bottom: 5px;
  line-height: 45px;
  color: #fff;
  letter-spacing: 0.01em;
}



.contact .php-email-form .form-check-label {
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  font-size: 18px;
  line-height: 0;
  text-transform: none;
  margin-bottom: 5px;
  color: #fff;
  letter-spacing: 0.01em;
  padding-left: 1.25rem;
}


.contact .php-email-form a {
  text-decoration: underline;
  margin-bottom: 5px;
  color: #2E808A;
  letter-spacing: 0.01em;
}

.contact .php-email-form a:hover {
  text-decoration: underline;
  margin-bottom: 5px;
  color: #fff;
  letter-spacing: 0.01em;
}


.contact .form-check-input {
  position: absolute;
  margin-top: 0.25rem;
  margin-left: 0 !important;
}

.contact .term-small  {
  text-align: center;
}


.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 20px;
  background: #2E808A;
  color: #fff;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 10px 0 #2E808A inset, 0 0 20px 2px #2E808A;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #2E808A;
  background: #000;
}
.contact .php-email-form button[type=submit]:hover {
  background: #000;
  color: #2E808A;
  border: 2px solid #2E808A;
  box-shadow: 0 0 10px 0 #2E808A inset, 0 0 20px 2px #2E808A;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .contact .php-email-form {
    padding: 30px 15px 15px 15px;
  }
}
@media (max-width: 768px) {
  .contact .php-email-form {
    padding: 15px 0 0 0;
    text-align: center;
  }
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 20px 0;
  width: 100% !important;
  color: #fff;
  box-shadow: 21.213px -21.213px 30px 0px rgba(158, 158, 158, 0.3);

}
#footer .copyright p{
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 12px;
  text-align: right;
}
#footer .copyright-left p {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 13px;

}

@media (max-width: 768px) {
  #footer .copyright p{
    font-family: 'Oswald', sans-serif;
  font-weight: 400;
    color: #fff;
    font-size: 16px;
    text-align: center;
  }

  #footer .copyright-left p {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
  }
  
}




#footer .social-links {
  margin: 0px;
  text-align: end;
}

#footer i {
  color: #2E808A !important;
}

#footer i:hover {
  color: #fff !important;
  transition: 0.4s;


}

#footer .social-links a {
  font-size: 24px;
  display: inline-block;
  background: #000;
  color: #fff;
  line-height: 1;
  padding: 6px 0;
  margin-right: 10px;
  border-radius: none;
  text-align: center;
  width: 26px;
  height: 26px;
  transition: 0.3s;
}

