.program_option_1 {
    padding: 2rem 4rem;
}

.program_option_1 .text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 50px;
}

.program_option_1 .text p:nth-child(2) {
    font-size: 1rem;
    font-weight: 400;
    line-height: 30px;
    color: #615D5D;
}

.program_option_1 .text p:nth-child(3) {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 30px;
    color: #615D5D;
}

.program_option_1 .img {
    width: 100%;
    max-width: 300px;
    position: relative;
}

.program_option_1 .img .dot1 {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #BB5327;
}

.program_option_1 .img .dot2 {
    position: absolute;
    display: block;
    right: 0rem;
    top: 0;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    background-color: #BB5327;
}

.program_option_1 .img .dot3 {
    position: absolute;
    display: block;
    bottom: 0rem;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: #BB5327;
}

.program_option_1 .img .dot4 {
    position: absolute;
    right: -3rem;
    bottom: 0rem;
    display: block;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    background-color: #5C2109;
}

.program_option_1 .img img {
    width: 95%;
    /* height: 90%; */
    aspect-ratio: 2/25C2109;
}

@media(max-width:768px) {
    .program_option_1 {
        padding: 2rem 0;
    }
    .program_option_1 .img .dot4 {
        position: absolute;
        right: 0rem;
        bottom: 0rem;
        display: block;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        background-color: #5C2109;
    }
}



/* -----------------program_option_2------------- */
.program_option_2 {
    padding: 2rem 4rem;
}

.program_option_2 .heading h1 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 40px;
}
.program_option_2 a{
    text-decoration: none;
    color: #000;
}
.program_option_2 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  width: 100%;
  aspect-ratio: 7/8;
    border: 2px solid #AAA0A0;
    transition: 0.3s all ease-out;
}
.program_option_2  a:hover{
   box-shadow:  0px 1px 6px 4px #c0c0c0;
   transform: scale(1.01);
}
.program_option_2 a .text {
    padding: 1rem;
}

.program_option_2 a .text h4 {
    font-size: 1.6vw;
    font-weight: 600;
    line-height: 30px;
}

.program_option_2 a .text p {
    font-size: 1.2vw;
    font-weight: 500;
    line-height: 28px;
}

.program_option_2 a .img {
    width: 100%;
    height: 150px;
}

.program_option_2 a .img img {
    width: 100%;
    height: 100%;
}

.program_option_2 .end_text{
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.program_option_2 .end_text p{
    font-size: 1.2rem;
    color: #BB5327;
    font-weight: 600;
    text-align: center;
    line-height: 28px;
}

.program_option_2 .end_text .img{
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.program_option_2 .end_text .img img{
    width: 100%;
}

@media(max-width:998px){
    .program_option_2 a .text h4 {
        font-size: 1rem;
        font-weight: 600;
        line-height: 22px;
    }
    
    .program_option_2 a .text p {
        font-size: 0.8rem;
        font-weight: 500;
        line-height: 18px;
    }
    .program_option_2 a{
        aspect-ratio: 4/7;
    }
}
@media(max-width:768px){
    .program_option_2{
        padding: 2rem 1rem;
    }
    .program_option_2 a .text h4 {
        font-size: 1.4rem;
    }
    
    .program_option_2 a .text p {
        font-size: 1.1rem;
        line-height: 28px;
    }
    .program_option_2 a{
        aspect-ratio: 4/2;
    }
    .program_option_2 a .img {
        height: 100%;
    }

}