
body {
  font-family: "Open Sans", sans-serif;
  color: #4d4643;
}

a {
  color: #ffae00;
  text-decoration: none;
}

a:hover {
  color: #ffae00;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}




.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffae00;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffae00;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*----
# Header
----*/

#header {
  background: url("/assets/img/top2.png") top center repeat-x;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header h1 {
  float: left;
  height: 60px;
  width: 211.104px;
  margin: auto;
}



#header .logo img {
  height: 60px;
  width: 211.104px;
  margin-left: -10px;
}


/**
* Desktop Navigation 
*/

.navbar {
  padding: 0;
  height: 101px;
  overflow: hidden;
  padding-right: 150px;
}

@media (max-width: 991px) {
  .navbar {
    padding-right: 0;
  }
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-content: center;
}

.navbar li {
  position: relative;
  padding-right: 10px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #444444;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}


.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffae00;
}


/**--------
* Mobile Navigation 
---------*/
.mobile-nav-toggle {
  color: #111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
  height: 385px;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  margin: 5px;
  font-size: 15px;
  color: #111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffae00;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}


/*-----
#middle
----*/

#middle-obj{
  background: rgba(0, 0, 0, 0.8) url("/assets/img/middle2.png") repeat-x;
  height: 65px;
  min-height: 40px;
  padding: 0;
  height: 64px;
  overflow: hidden;
}

@media (max-width: 991px) {
  #middle-obj{
    background: rgba(0, 0, 0, 0.8);
  }
  #middle-obj img{
    visibility: hidden;
  }
}


.middle {
  padding: 0;
  height: 64px;
  overflow: hidden;
  display:flex;
  margin: auto;
  width: 990px;
}


.middle ul {
  padding: 0;
  display: flex;
  list-style: none;
  margin: auto;
}

.middle li {
  padding: 0 90px 0 0;
}



/*--
# Hero 
--*/
#hero {
  height: 400px;
  overflow: hidden;
  margin: 0 0 -55px 0;
  background: repeating-linear-gradient(
  -35deg,
  #353333,
  #575656 3px,
  #252323 3px,
  #807b79 3px,
  #8a8584 3px,
  #baa9a3 3px
);
}

.carousel {
  background: rgba(0, 0, 0, 0.8);

}

#heroCarousel {
  margin: auto;

}

#hero .carousel-inner {
  border: 5px solid rgb(246, 241, 241); 
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 304px;
  max-width: 990px;
}

#hero .carousel-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  bottom: 34px;
  top: 70px;
  left: 55px;
  right: 55px;
}

#hero .carousel-content {
  background: rgba(4, 4, 4, 0.7);
  align-content: center;
  padding: 5px;
  color: #fff;
  border-bottom: 5px solid #ffae00;
}

#hero .carousel-content h2 {
  color: #fff;
  padding-top: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}


#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
  max-width: 100%;
}

#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-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: #ffae00;
}

@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 60%;
  }

}

@media (max-width: 992px) {
  #hero .carousel-container {
    top: 58px;
  }

}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

@media (max-width: 992px) {
  #hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
    width: calc(100% - 5px);
  }

  #hero {
    width: 100%;
  }

  #hero .carousel-inner {
    width: 100%;
  }

  #hero .carousel-item {
    width: 100%;
    }

    #hero .carousel-container {
      bottom: 34px;
      top: 70px;
      left: 0;
      right: 0;
    }
}

#middle-photo {
  background: url("/assets/img/middle.png") repeat-x;
  margin-top: -150px;
}



/*--
# Offer
--*/
#offer {
  width: 100%;
  padding-top: 50px;
  background-color: #eaeaea;
  padding-bottom: 80px;
}

.offer .title-box {
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 20px;
}

.offer .title-box h4 {
  font-size: 16px;
  padding-bottom: 10px;
}

.offer .quick-info p {
  text-align: center !important; 
  color: #111;
}

.offer .container h6 {
  color:#ffae00;
  font-size: 14px;
  margin-top: 35px;
  margin-bottom: 15px;
}

.offer .container p {
  font-size: 12px;
  font-weight: 500;
  text-align: justify;
  color: #111;
}


.offer .boxes {
  margin: auto;
  justify-content: center;
}

.offer .box-info {
  border: 2px solid rgb(255, 255, 255);
  border-bottom: 3px solid #ffae00;
  background: url("/assets/img/title.png") no-repeat;
  background-color: #ffffff;
  width: 485px;
  padding: 25px;
  margin-top: 30px;
}

.offer .boxes > .box-info:first-child {
  margin-right: 20px;
}

@media (max-width: 1180px) {
  .offer .boxes > .box-info:first-child {
    margin-right: 0;
  }
} 

.offer .btn-learn-more {
  background-color: #eaeaea;
  float: right;
  color:#8b8b8b;
  padding-left: 4px;
  font-size: 9px;
  height: 16px;
  line-height: 16px;
}

.offer .btn-learn-more:hover {
  background-color: #ffae00;
  color: rgb(255, 255, 255);
}

.offer .map iframe {
  padding-top: 20px;
}

.offer .border-box {
  border-right: 2px solid #8b8b8b;
  margin-right: 15px;
}

@media (max-width: 768px) {
  .offer .map iframe {
    height: 200px;
    width: 300px;
  }
}


/*--
#  General
--*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7f7f7;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #1bbd36;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--
# Offer-page
--*/

#offer-page {
  width: 100%;
  padding-top: 50px;
  background-color: #eaeaea;
  padding-bottom: 80px;
}

.offer-page .title-box {
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 20px;
}

.offer-page .title-box h4 {
  font-size: 16px;
  padding-bottom: 10px;
}

.offer-page .quick-info p {
  text-align: center !important; 
  color: rgb(0, 0, 0);
}

.offer-page .page-box-info li {
  font-size: 12px;
  color: rgb(0, 0, 0);
}

.offer-page .container h6 {
  color:#ffae00;
  font-size: 14px;
  margin-top: 35px;
  margin-bottom: 15px;
}

.offer-page .container p {
  font-size: 12px;
  font-weight: 500;
  text-align: justify;
  color: #111;
}


.offer-page .boxes {
  margin: auto;
  justify-content: center;
}

.offer-page .page-box-info {
  border: 2px solid rgb(255, 255, 255);
  border-bottom: 3px solid #ffae00;
  background: url("/assets/img/title.png") no-repeat;
  background-color: #ffffff;
  width: 720px;
  padding: 25px;

  margin-top: 30px;
}
.offer-page .fast-contact {
  border: 2px solid rgb(255, 255, 255);
  border-bottom: 3px solid #ffae00;
  background: url("/assets/img/title.png") no-repeat;
  background-color: #ffffff;
  width: 250px;
  padding: 25px;
  height: 300px;
  margin-top: 30px;
}

.offer-page .boxes > .page-box-info {
  margin-right: 20px;
}

@media (max-width: 991px) {
  .offer-page .boxes > .page-box-info {
    margin-right: 0;
  }
} 

@media (max-width: 991px) {
  .offer-page .fast-contact.col-lg-1 {
    width:100%;
  }
} 


.offer-page .btn-learn-more {
  background-color: #eaeaea;
  float: right;
  color:#8b8b8b;
  padding-left: 4px;
  font-size: 9px;
  height: 16px;
  line-height: 16px;
}

.offer-page .btn-learn-more:hover {
  background-color: #ffae00;
  color: rgb(255, 255, 255);
}


.offer-page .border-box {
  border-right: 2px solid #8b8b8b;
  margin-right: 15px;
}

.offer-page .invitation-to-gallery h6 {
  text-align: center;
}

.offer-page .invitation-to-gallery p {
  text-align: center;
}

.offer-page .invitation-to-gallery a {
  color: #444444;
}

.offer-page .invitation-to-gallery a:hover {
  color: #ffae00;
}

/*--
# Gallery-page
--*/
#gallery-page {
  width: 100%;
  padding-top: 50px;
  background-color: #eaeaea;
  padding-bottom: 80px;
}

.gallery-page .title-box {
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 20px;
}

.gallery-page .title-box h4 {
  font-size: 16px;
  padding-bottom: 10px;
}


.gallery-page .container h6 {
  color:#ffae00;
  font-size: 14px;
  margin-top: 35px;
  margin-bottom: 15px;
}

.gallery-page .container p {
  font-size: 12px;
  font-weight: 500;
  text-align: justify;
  color: rgb(0, 0, 0);
}


.gallery-page .boxes {
  margin: auto;
  justify-content: center;
}

.gallery-page .page-box-gallery {
  border: 2px solid rgb(255, 255, 255);
  border-bottom: 3px solid #ffae00;
  background: url("/assets/img/title.png") no-repeat;
  background-color: #ffffff;
  width: 720px;
  padding: 25px;

  margin-top: 30px;
}
.gallery-page .fast-contact {
  border: 2px solid rgb(255, 255, 255);
  border-bottom: 3px solid #ffae00;
  background: url("/assets/img/title.png") no-repeat;
  background-color: #ffffff;
  width: 250px;
  padding: 25px;
  height: 300px;
  margin-top: 30px;
}



.gallery-page .boxes > .page-box-gallery {
  margin-right: 20px;
}


@media (max-width: 991px) {
  .gallery-page .boxes > .page-box-gallery {
    margin-right: 0;
  }
} 

@media (max-width: 991px) {
  .gallery-page .fast-contact.col-lg-1 {
    width:100%;
  }
} 

.gallery-page .btn-learn-more {
  background-color: #eaeaea;
  float: right;
  color:#8b8b8b;
  padding-left: 4px;
  font-size: 9px;
  height: 16px;
  line-height: 16px;
}

.gallery-page .btn-learn-more:hover {
  background-color: #ffae00;
  color: rgb(255, 255, 255);
}

.gallery-page .border-box {
  border-right: 2px solid #8b8b8b;
  margin-right: 15px;
}

.gallery-page .gallery-box img {
  margin: 5px;
  padding: 4px;
  border: 1px solid #b8b6b6;
}
/*--
# dotation-page
--*/

#dotation-page {
  width: 100%;
  padding-top: 50px;
  background-color: #eaeaea;
  padding-bottom: 80px;
}

.dotation-page .title-box {
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 20px;
}

.dotation-page .title-box h4 {
  font-size: 16px;
  padding-bottom: 10px;
}


.dotation-page .container h6 {
  color:#ffae00;
  font-size: 14px;
  margin-top: 35px;
  margin-bottom: 15px;
}

.dotation-page .container p {
  font-size: 12px;
  font-weight: 500;
  text-align: justify;
  color: rgb(0, 0, 0);
}

.dotation-page .inquiry h2 {
  text-align: center;
  color:rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 600;
}

.dotation-page .inquiry {
  border-bottom: 1 px solid #444444;
  align-content: center;
  text-align: center;
}

.dotation-page .inquiry p {
  text-align: center;
  color:rgb(0, 0, 0);
  font-size: 12px;
  font-weight: 400;
}

.dotation-page .inquiry a {
  font-weight: 500;
  color:#444444;
  margin: auto;
}

.dotation-page .inquiry a:hover {
  color:#ffae00;
}

.dotation-page .information h6 {
  text-align: center;
  color:rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 600;
  border-top: 1px solid #8b8b8b;
  padding-top: 20px;
}

.dotation-page .funds h6 {
  text-align: center;
  color:rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 600;
}

.dotation-page .boxes {
  margin: auto;
  justify-content: center;
}

.dotation-page .page-box-dotation {
  border: 2px solid rgb(255, 255, 255);
  border-bottom: 3px solid #ffae00;
  background: url("/assets/img/title.png") no-repeat;
  background-color: #ffffff;
  width: 720px;
  padding: 25px;

  margin-top: 30px;
}
.dotation-page .fast-contact {
  border: 2px solid rgb(255, 255, 255);
  border-bottom: 3px solid #ffae00;
  background: url("/assets/img/title.png") no-repeat;
  background-color: #ffffff;
  width: 250px;
  padding: 25px;
  height: 300px;
  margin-top: 30px;
}

.dotation-page .boxes > .page-box-dotation {
  margin-right: 20px;
}


@media (max-width: 991px) {
  .dotation-page .boxes > .page-box-dotation {
    margin-right: 0;
  }
} 

@media (max-width: 991px) {
  .dotation-page .fast-contact.col-lg-1 {
    width:100%;
  }
} 

.dotation-page .btn-learn-more {
  background-color: #eaeaea;
  float: right;
  color:#8b8b8b;
  padding-left: 4px;
  font-size: 9px;
  height: 16px;
  line-height: 16px;
}

.dotation-page .btn-learn-more:hover {
  background-color: #ffae00;
  color: rgb(255, 255, 255);
}

.dotation-page .border-box {
  border-right: 2px solid #8b8b8b;
  margin-right: 15px;
}

.dotation-page .invitation h6 {
  text-align: center;
}

.dotation-page .invitation {
  float:right;
}
/*--
# About-page
--*/

#about-page {
  width: 100%;
  padding-top: 50px;
  background-color: #eaeaea;
  padding-bottom: 80px;
}

.about-page .title-box {
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 20px;
}

.about-page .title-box h4 {
  font-size: 16px;
  padding-bottom: 10px;
}


.about-page .container h6 {
  color:#ffae00;
  font-size: 14px;
  margin-top: 35px;
  margin-bottom: 15px;
}

.about-page .container p {
  font-size: 12px;
  font-weight: 500;
  text-align: justify;
  color: rgb(0, 0, 0);
}


.about-page .boxes {
  margin: auto;
  justify-content: center;
}

.about-page .about-box-info {
  border: 2px solid rgb(255, 255, 255);
  border-bottom: 3px solid #ffae00;
  background: url("/assets/img/title.png") no-repeat;
  background-color: #ffffff;
  width: 720px;
  padding: 25px;

  margin-top: 30px;
}
.about-page .fast-contact {
  border: 2px solid rgb(255, 255, 255);
  border-bottom: 3px solid #ffae00;
  background: url("/assets/img/title.png") no-repeat;
  background-color: #ffffff;
  width: 250px;
  padding: 25px;
  height: 300px;
  margin-top: 30px;
}

.about-page .boxes > .about-box-info {
  margin-right: 20px;
}

@media (max-width: 991px) {
  .about-page .boxes > .about-box-info {
    margin-right: 0;
  }
} 

@media (max-width: 991px) {
  .about-page .fast-contact.col-lg-1 {
    width:100%;
  }
} 
.about-page .btn-learn-more {
  background-color: #eaeaea;
  float: right;
  color:#8b8b8b;
  padding-left: 4px;
  font-size: 9px;
  height: 16px;
  line-height: 16px;
}

.about-page .btn-learn-more:hover {
  background-color: #ffae00;
  color: rgb(255, 255, 255);
}

.about-page .border-box {
  border-right: 2px solid #8b8b8b;
  margin-right: 15px;
}

.about-page .invitation h6 {
  text-align: center;
}

.about-page .invitation {
  float:right;
}

.about-page .photo {
  display: block;
  text-align: center;
}

.about-page .photo img {
  margin-left: auto;
  margin-right: auto;
}

/*--
# Contact
--*/

#contact-page {
  width: 100%;
  padding-top: 50px;
  background-color: #eaeaea;
  padding-bottom: 80px;
}

.contact-page .title-box {
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 20px;
}

.contact-page .title-box h4 {
  font-size: 16px;
  padding-bottom: 10px;
}


.contact-page .container h6 {
  color:#ffae00;
  font-size: 14px;
  margin-top: 35px;
  margin-bottom: 15px;
}

.contact-page .container p {
  font-size: 12px;
  font-weight: 500;
  text-align: justify;
  color: #111;
}

.contact-page .boxes {
  margin: auto;
  justify-content: center;
}

.contact-page .contact-box-info {
  border: 2px solid rgb(255, 255, 255);
  border-bottom: 3px solid #ffae00;
  background: url("/assets/img/title.png") no-repeat;
  background-color: #ffffff;
  width: 990px;
  padding: 25px;
  margin-top: 30px;
}

.contact-page .contact-boxes {
  display: flex;
}

.contact-page .inviting h6 {
  text-align: left;
}

@media (max-width: 768px) {
  .contact-page .contact-boxes {
    display: inline-block;
  }
}

.contact-page .contact-map iframe {
  height: 350px;
  width: 500px;
}

@media (max-width: 992px) {
  .contact-page .contact-map iframe {
    height: 200px;
    width: 300px;
  }
}

/*--
# Footer
--*/
#footer {
  color: #fff;
  font-size: 12px;
  background: url("/assets/img/footer.png");
}

#footer .footer-top {
  padding: 15px 0 15px 0;
  background: #f5f5f5;
  height: 50px;
}



#footer .footer-top a:hover {
  color: #ffae00;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  align-content: center;
  padding-left: 130px;
}

#footer .footer-top ul {
  list-style-type: none;
  padding: 0;
  overflow: hidden;
}

#footer .footer-top li {
  float: left;
  border-right: 1px solid #ffae00;
  height: 25px;
  width: 150px;
  padding-right: 30px;
  padding-left: 30px;
}

#footer .footer-top li a {
  display: block;
  color: rgba(23, 22, 22, 0.7);
  text-align: center;
  margin-bottom: 20px;
}

#footer .footer-links ul>li:last-child {
  border-right: none;
}

#footer .footer-top>.copyright:last-child{
  height: auto;
}

#footer .copyright {
  color:rgb(119, 116, 116);
  float: right;
}

@media (max-width: 1180px) {
  #footer .footer-top .footer-links {
    margin-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 1180px) {
  #footer .footer-top {
    height: 100px;
  }
}