/********** Template CSS **********/
:root {
    --primary: #FFE468;
    --secondary: #8CC641;
    --light: #F2F2F2;
    --dark: #272630;
}

.btn {
    font-weight: 700;
    transition: .5s;
}

.btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px #555555;
    -moz-box-shadow: 0 8px 6px -6px #555555;
    box-shadow: 0 8px 6px -6px #555555;
}

.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 30px;
    padding: 35px 0;
    font-size: 18px;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

.bg-hero {
    background: url(../img/.jpg) top right no-repeat;
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-hero {
        background-size: cover;
    }
}

.about-start,
.about-end {
    background: url(../img/about-bg.jpg) center center no-repeat;
    background-size: contain;
}

@media (min-width: 992px) {
    .about-start {
        position: relative;
        margin-right: -90px;
        z-index: 1;
    }

    .about-end {
        position: relative;
        margin-left: -90px;
        z-index: 1;
    }
}

.service-item,
.contact-item {
    background: url(../img/service.jpg) top center no-repeat;
    background-size: cover;
    transition: .5s;
}

.service-item:hover,
.contact-item:hover {
    background: url(../img/service.jpg) bottom center no-repeat;
    background-size: cover;
}

.service-item .service-icon,
.contact-item .contact-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    color: var(--secondary);
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.service-item .service-icon div,
.contact-item .contact-icon div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transition: .5s;
}

.service-item .service-icon i,
.contact-item .contact-icon i {
    transform: rotate(45deg);
    transition: .5s;
}

.service-item:hover .service-icon div,
.contact-item:hover .contact-icon div {
    background: var(--secondary);
}

.service-item:hover .service-icon i,
.contact-item:hover .contact-icon i {
    color: var(--primary);
}

.service-item a.btn {
    position: relative;
    bottom: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: 0;
    opacity: 1;
}

.bg-quote {
    background: url(../img/quote.jpg) top right no-repeat;
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-quote {
        background-size: cover;
    }
}

.team-item {
    position: relative;
    margin-bottom: 45px;
}

.team-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url(../img/team.jpg) bottom center no-repeat;
    background-size: cover;
    height: 90px;
    padding: 0 30px;
    right: 45px;
    left: 45px;
    bottom: -45px;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    height: 100%;
    bottom: 0;
}

.team-social {
    position: absolute;
    transition: .1s;
    transition-delay: .0s;
    opacity: 0;
}

.team-item:hover .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.bg-testimonial {
    background: url(../img/testimonial.jpg) top left no-repeat;
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-testimonial {
        background-size: cover;
    }
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--secondary);
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .owl-item img {
    width: 60px;
    height: 60px;
}

.bg-call-to-action {
    background: url(../img/call-to-action.jpg) top right no-repeat;
    background-size: contain;
}

.bg-footer {
    background: url(../img/footer.jpg) center center no-repeat;
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-call-to-action,
    .bg-footer {
        background-size: cover;
    }
}


.section-two {
  margin-top: 60px;
  background-color: #272630;
  padding: 30px 20px;
  border-top: 5px solid #FFE468;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 228, 104, 0.2);
}

.section-two h2{
 color: #8CC641;
 margin-bottom: 20px;
  border-bottom: 2px solid #FFE468;

}

.section-two h3{
  color: #f4e18d;
}

.section-two ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.section-two ul li {
  position: relative;
  margin-bottom: 12px;
  color: #808e4d;
  font-weight: 600;
}

.section-two ul li::before {
  content: "✓";
  margin-right: 8px;
  left: 0;
  top: 0;
  color: #FFE468;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}


.section-two p{
    color: antiquewhite;
}

.card {
  background-color: #1f1e1e;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(255, 228, 104, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(255, 228, 104, 0.4);
}

.card-body {
  padding: 20px;
  text-align: center;
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFE468;
  margin-bottom: 10px;
}

.card-text {
  color: #d3d3d3;
  font-size: 0.95rem;
}


.card::before {
  content: "";
  display: block;
  height: 5px;
  width: 40px;
  margin: 0 auto 15px;
  background-color: #FFE468;
  border-radius: 5px;
}



.section-custom {
  background-color: #272630;
  padding: 50px 20px;
  border-left: 5px solid #FFE468;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 228, 104, 0.15);
}

.section-custom h2 {
  color: #FFE468;
  margin-bottom: 20px;
  text-align: center;
}

.section-custom h3 {
  color: #8CC641;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
  background: rgba(168, 255, 96, 0.1);
  border-left: 4px solid #8CC641;
  border-radius: 6px;
  padding: 10px 15px 10px 25px;
  transition: background 0.3s, transform 0.3s;
}

.section-custom h3::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #FFE468;
  border-radius: 50%;
  box-shadow: 0 0 8px #FFE468;
}

.section-custom h3:hover {
  background: rgba(168, 255, 96, 0.2);
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(168, 255, 96, 0.3);
}

.section-custom ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.section-custom ul li {
  position: relative;
 
  margin-bottom: 12px;
  color: #dcdcdc;
}

.section-custom ul li::before {
  content: "✓"; 
  font-family: "Bootstrap Icons";
  margin-right: 8px;
  left: 0;
  top: 0;
  color: #8CC641;
  font-size: 1rem;
}



.featuree {
  background: url("/img/apuesta.jpg");
  background-position: center 94px;
  display: block;
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px 10px;
 
}

.featuree::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(46, 48, 38, 0.753);
  z-index: 0;
}

.featuree h2 {
  margin-bottom: 30px;
  color: #FFE468;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
}

.featuree h3 {
  margin-bottom: 30px;
  color: #8CC641;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding-left: 15px;
  border-left: 4px solid #FFE468;
  background: rgba(255, 228, 104, 0.05);
  border-radius: 4px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.featuree p {
  color: #f4f4f4;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.featuree ul {
  padding-left: 0;
  position: relative;
  z-index: 1;
}

.featuree ul li {
  color: #FFE468;
  margin-bottom: 15px;
  list-style-type: none;
  padding-left: 30px;
  position: relative;
}

.featuree ul li::before {
  content: "✓"; 
  font-family: "Bootstrap Icons";
  position: absolute;
  left: 0;
  top: 0;
  color: #8CC641;
}

@media (max-width: 768px) {
  .featuree {
    padding: 30px 0px;
  }
}


  @media (max-width: 768px) {
    .twitter-container {
      display: flex;
      justify-content: center;
    }
  }


.footer-links a {
  color: #333333 !important;
  text-decoration: none;
}

.footer-links a:hover {
  color: #333333 !important;
  text-decoration: underline;
}


.page-error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 85vh;
  text-align: center;
}

.error-heading {
  margin-bottom: 1rem;
}

.error-text {
  margin-bottom: 2rem;
}

.error-link {
  padding: 0.75rem 1.5rem;
  background-color: #8CC641;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.error-link:hover {
  background-color: #b198ec;
  color: #fff;
}


.video-container {

position: relative;

padding-bottom: 56.25%;  

padding-top: 30px;

height: 0;

overflow: hidden;

border-radius: 20px;

}

.video-container iframe,

.video-container object,

.video-container embed {

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

}


@media (max-width: 768px) {
  h1{
    font-size: 28px!important;
  }
  h2{
    font-size: 26px!important;
  }
  h3{
    font-size: 24px!important;
  }
}