:root{
    --primary-color: #0693e3;
    --red-color: #cf2e2e;
    --white-color: #fff;
    --black-color: #333;
    --light-color: #abb8c3;
    --dark-color: #3d3d3d;
}

#hero-bg{
    position: relative;
    height: 500px;
    background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./../images/slider-1.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    color: var(--white-color);
}

/* #hero-bg .img img{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
} */

#hero-bg .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    text-align: center;
    width: 80%;
}

.btn-theme-primary{
    background: var(--primary-color);
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 600;
}

.btn-theme-primary:hover{
    background: var(--red-color);
    color: var(--white-color);
}

#cta{
    background: var(--light-color);
}

.icon-box{
    background: var(--white-color);
    padding: 15px;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    border: 3px solid var(--red-color);
    border-radius: 10px;
    text-align: center;
    margin: 10px 0;
}

.service-box{
    background: var(--light-color);
    box-shadow: 0 10px 10px rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
}

.service-box .body{
    padding: 10px;
    text-align: center;
}

#mission{
    background: url('./../images/18.jpg.bv.webp');
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

#mission .mission-box{
    background: var(--black-color);
    position: absolute;
    top: 0;
    right: 20px;
    width: 300px;
    padding: 20px;
    color: var(--white-color);
}

#rules ul li{
    margin: 15px 0;
}

#documents{
    background: var(--light-color);
    padding: 50px 0;
}

#footer{
    background: var(--dark-color);
    color: #fff;
}

#copyright{
    background: var(--black-color);
    color: var(--white-color);
    text-align: center;
}

#title{
    background: var(--primary-color);
}

.packages-section {
  background: var(--white-color);
}

.packages-section .section-subtitle {
  color: #666;
  margin-top: 5px;
}

.package-card {
  background: var(--white-color);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .09);
  border-top: 6px solid var(--primary-color);
  transition: .4s;
  position: relative;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}

.package-card.popular {
  border-top-color: var(--secondary-color);
}

.package-card .tag {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--red-color);
  color: var(--white-color);
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 50px;
}

.package-card .title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black-color);
  text-align: center;
}

.package-card ul{
    list-style: none;
}