/* HERO SECTION */
.term-hero {
    width: 100%;
    padding: 60px 80px;
    background-image: url('../assests/image/term-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: #000;
}

.term-hero .term-hero__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.term-hero .term-hero__left {
    max-width: 50%;
}
@media (max-width: 992px) {
   .term-hero .term-hero__left {
    max-width: 100%;
} 
}

.term-hero .term-hero__left h1 {
    font-size: 50px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.term-hero .term-hero__left h1 span {
    color: #447cbe;
}

.term-hero .term-hero__left p {
    color: #171717;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.term-hero .btn {
    display: inline-block;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: 0.3s;
    background: linear-gradient(90deg, #DC2626 0%, #761414 100%);
}

;

.term-hero .term-hero__right img {
    max-width: 350px;
    width: 100%;
}

/* CONTENT SECTION */
.term-section {
    background: #0a0f1c;
    padding: 60px 80px;
    color: #fff;
    position: relative;
}

.term-section .term-section__container {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: auto;
}

.term-section .term-box {
    margin-bottom: 30px;
}

.term-section .term-box h3 {
    color: #447cbe;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 700;
}

.term-section .term-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #DBD9D9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .term-hero {
        padding: 40px 30px;
    }

    .term-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .term-hero .term-hero__content {
        flex-direction: column;
        text-align: center;
    }

    .term-hero {
        background: #f4f7fb;
    }

    .term-hero .term-hero__right img {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .term-hero .term-hero__left h1 {
        font-size: 28px;
    }

    .term-hero .term-hero__left p {
        font-size: 13px;
    }

    .term-section .term-box p {
        font-size: 13px;
    }
}

.avail-places h2 {
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .avail-places h2 {
    font-weight: 700;
    font-size: 30px;
}
}
.avail-places h2 span {
    color: #447cbe;
}


.places-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .places-items {
    
flex-wrap:wrap;
    
justify-content: center;
}
}

.places-items .item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.places-items .details-content p {
    display: flex;
    align-items: center;
    margin-top: 7px;
    gap: 5px;
    font-size: 14px;
}

.places-items .details-content h4 {
    color: #A1CCFF;
    font-size: 22px;
    font-weight: 600;
}
.border-seprator {
    height: 70px;
    width: 2px;
    background-color: #fff;
} 
.outer-list li {
    padding-left: 20px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    color: #DBD9D9;
    margin-bottom: 14px;
}
.outer-list li::before {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #fff;
    content: "";
    border-radius: 50%;
    left: 0;
    top: 9px;
}
.inner-list {
    margin-top: 20px;
    position: relative;

}

.inner-list li::before {
      position: absolute;
      width: 6px;
      height: 6px;
      background-color: #fff;
      content: "";
      border-radius: 50%;
      left: 0;
      top: 10px;
}
.avail-places {
    margin-top: 50px;
}