/* ----------------------------------Common-animation--- */

.button_animate:hover img {
    animation: button_animate 1.1s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
}

@keyframes button_animate {
    0% {
        transform: translateX(0%);
    }

    10% {
        transform: translateX(10%);
    }

    20% {
        transform: translateX(20%);
    }

    30% {
        transform: translateX(30%);
    }

    40% {
        transform: translateX(40%);
    }

    50% {
        transform: translateX(50%);
    }
}







.home_1 {
    position: relative;
    padding: 5rem 0;
}

.home_1 .text {
    position: relative;
    height: 100%;
    display: flex;
}

.home_1 h1 {
    color: #000;
    font-size: 6.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.home_1 h1::selection{
    background-color: #000;
    color: #BB5327;
}
.home_1 .video_area {
    position: relative;
    display: flex;
    width: 340px;
    height: 120px;
    justify-content: center;
    align-items: center;
}

.home_1 .video_area video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center
}

.home_1 .video_area .video_text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    mix-blend-mode: screen;
}

@media(max-width:1210px) {
    .home_1 h1 {
        /* font-size: 6.1rem; */
    }
}

@media(max-width:998px) {
    .home_1 h1 {
        font-size: 5.1rem;
    }

}

@media(max-width:768px) {
    .home_1 h1 {
        font-size: 3.1rem;
    }

    .home_1 .text {
        flex-direction: column;
        justify-content: center;
    }

    .home_1 .video_area {
        height: 60px;
        width: 50%;
    }
}

.home_1 .home_head p {
    color: #BB5327;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.home_1 .home_desceription {
    color: #615D5D;
    text-align: right;
    font-size: 1.4rem;
    font-weight: 700;
    width: 80%;
    line-height: 34px;
}

@media (max-width:998px) {
    .home_1 .home_desceription {
        text-align: left;
        width: 100%;
    }
}



/* ------------------------------------Home_2----------------- */
.home_2 {
    padding: 2rem 4rem;
    background-color: #1A0E09;
    color: #ffffff;
}

.home_2 .home_2_top {
    position: relative;
}

.home_2 .home_2_top h1 {
    color: #FFF;
    font-size: 5.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.56px;
}

.home_2 .home_2_top .col-md-3 {
    padding: 0;
}

.home_2 .home_2_top .video_container {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem 0;
}

.home_2 .home_2_top .video_box {
    width: 305px;
    height: 173px;
}

.home_2 .home_2_top .video_box video {
    width: 100%;
    height: 100%;
}

.home_2 .home_2_top .text_1 p {
    color: #DCDCDC;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.home_2 .home_2_top .text_2 p {
    color: #DCDCDC;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.home_2 .home_2_top .link_1 a {
    color: #FFF;
    font-size: 1.5rem;
    text-decoration: none;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.home_2 .home_2_top .link_1 a img {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    margin-left: 0.5rem;
}





.home_2 .home_2_top .video_area {
    position: relative;
    display: flex;
    width: 200px;
    height: 80px;
    justify-content: center;
    align-items: center;

}

.home_2 .home_2_top .video_area video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center
}

.home_2 .home_2_top .video_area .video_text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #1A0E09;
    color: #fff;
    mix-blend-mode: darken;
    display: flex;
    align-items: center;
    justify-content: start;
}

.home_2 .home_2_top .video_area .video_text H1 {
    background-color: transparent;
    color: #fff;
    font-size: 6rem;
    margin: 0;
}

@media(max-width:998px) {
    .home_2 .home_2_top .video_box {
        max-width: 350px;
        height: 173px;
    }

    .home_2 .home_2_top h1 {
        font-size: 3rem;
    }

    .home_2 .home_2_top .link_1 a {
        font-size: 1.1rem;
    }
}

@media(max-width:768px) {
    .home_2 .home_2_top .video_area {
        width: 110px;
        height: 50px;
    }

    .home_2 .home_2_top .video_area .video_text H1 {
        font-size: 3rem;
    }

    .home_2 .home_2_top h1 {
        font-size: 2rem;
    }
}




.home_2 .home_2_bottom {
    position: relative;
    padding: 3rem 0;
}

.home_2 .home_2_bottom h1 {
    font-size: 4rem;
    font-weight: 800;
}

.home_2 .home_2_bottom .col-md-6 {
    padding: 1rem 1rem;
}

.home_2 .home_2_bottom p {
    font-size: 1.1rem;
    line-height: 28px;
    font-weight: 500;
}

.home_2 .home_2_bottom .video_area {
    position: relative;
    display: flex;
    width: 300px;
    height: 80px;
    justify-content: center;
    align-items: center;
}

.home_2 .home_2_bottom .video_area video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center
}

.home_2 .home_2_bottom .video_area .video_text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #1A0E09;
    color: #fff;
    mix-blend-mode: darken;
    display: flex;
    align-items: center;
    justify-content: start;
}

.home_2 .home_2_bottom .video_area .video_text H1 {
    background-color: transparent;
    color: #fff;
    font-size: 4.5rem;
}


@media(max-width:998px) {
    .home_2 .home_2_bottom h1 {
        font-size: 2.8rem;
    }
}

@media(max-width:768px) {
    .home_2 {
        padding: 2rem 0.2rem;
    }

    .home_2 .home_2_bottom .video_area {
        width: 170px;
        height: 30px;
    }

    .home_2 .home_2_bottom .video_area .video_text H1 {
        font-size: 2.5rem;
    }

    .home_2 .home_2_bottom h1 {
        font-size: 2rem;
    }
}

/* ------------------------upcoming_Modal-------------------- */

#upcoming_modal  {
    background-color: #BB5327;
}
#upcoming_modal .modal-content {
    border-radius: 0;
}
#upcoming_modal .heading h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 50px;
    color: #BB5327;
    text-align: center;
}

#upcoming_modal .heading p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

#upcoming_modal .form {
    padding: 1rem 1rem;
}

#upcoming_modal .form .col-md-6 {
    margin-bottom: 1rem;
}

#upcoming_modal .form .input_area {
    border: 1px solid #000;
    padding: 0.7rem 1rem;
    width: 100%;
}

#upcoming_modal .form .btn_area {
    padding-bottom: 1rem;
    text-align: center;
}

#upcoming_modal .form .btn_area button {
    background-color: #BB5327;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    border: 1px solid transparent;
    padding: 1rem 3rem;
}

#upcoming_modal .end_text {
    text-align: center;
    width: 70%;
    margin: auto;
}

#upcoming_modal .end_text p {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 18px;

}

@media(max-width:998px) {
    #upcoming_modal .modal-content {
        width: 95%;
    }
}

@media(max-width:768px) {
    #upcoming_modal .modal-content {
        margin: 0 auto !important;
        width: 95% !important;
    }
}

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

.upcoming_batch .heading {
    padding: 1rem 0;
}

.upcoming_batch .heading h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 50px;
    color: #BB5327;
}

.upcoming_batch .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.upcoming_batch .col-md-4:first-child {
    display: flex;
    align-items: center;
    justify-content: start;
}

.upcoming_batch .col-md-4:last-child {
    display: flex;
    align-items: center;
    justify-content: end;
}

.upcoming_batch .box {
    padding: 1.5rem;
    background-color: #000;
    color: #ffffff;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 4/5;
}

.upcoming_batch .sold1 {
    padding: 1.5rem;
    background: #B838278C;
    color: #ffffff;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 4/5;
}

.upcoming_batch .box .text h2 {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 30px;
}

.upcoming_batch .box .text h3 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 0;
}

.upcoming_batch .box .text h4 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 24px;
}
/* ----------------------For-batch-full-box--------------- */
.upcoming_batch .sold1 .text h2 {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 30px;
}

.upcoming_batch .sold1 .text h3 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 0;
}

.upcoming_batch .sold1 .text h4 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 24px;
}

.upcoming_batch .sold1 .btn_area {
    text-align: center;
    width: 100%;
}

.upcoming_batch .sold1 .btn_area button {
    padding: 0.8rem 1rem;
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    width: 100%;
    cursor: not-allowed;
}

.upcoming_batch .box .btn_area {
    text-align: center;
    width: 100%;
}

.upcoming_batch .box .btn_area button {
    padding: 0.8rem 1rem;
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    width: 100%;
}

@media(max-width:998px) {
    .upcoming_batch {
        padding: 2rem 0.2rem;
    }

    .upcoming_batch .box {
        padding: 1rem;
    }

    .upcoming_batch .sold1 {
        padding: 1rem;
    }

    .upcoming_batch .box .text h2 {
        font-size: 1rem;
        font-weight: 500;
        line-height: 30px;
        margin-bottom: 0;
    }

    .upcoming_batch .box .text h3 {
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 30px;
        margin-bottom: 0;
    }

    .upcoming_batch .box .text h4 {
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 30px;
        margin-bottom: 0;
    }

    .upcoming_batch .box .btn_area button {
        padding: 0.3rem;
        font-size: 0.9rem;
    }

    .upcoming_batch .sold1 .text h2 {
        font-size: 1rem;
        font-weight: 500;
        line-height: 30px;
        margin-bottom: 0;
    }

    .upcoming_batch .sold1 .text h3 {
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 30px;
        margin-bottom: 0;
    }

    .upcoming_batch .sold1 .text h4 {
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 30px;
        margin-bottom: 0;
    }

    .upcoming_batch .sold1 .btn_area button {
        padding: 0.3rem;
        font-size: 0.9rem;
    }
}

@media(max-width:768px) {
    .upcoming_batch {
        padding: 2rem 3rem;
    }

    .upcoming_batch .heading h1 {
        font-size: 2.3rem;
        font-weight: 700;
        line-height: 50px;
    }

    .upcoming_batch {
        padding: 2rem 0.2rem;
    }

    .upcoming_batch .col-md-4:first-child {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .upcoming_batch .col-md-4:last-child {
        display: flex;
        align-items: center;
        justify-content: center;
    }

}

/* ------------------------------program_options-------------- */
.program_options {
    padding: 6rem 4rem;
}

.program_options .heading {
    padding: 2rem 0;
}

.program_options .heading h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 50px;
    color: #BB5327;
}

.program_options a {
    text-decoration: none;
    color: #000;
    width: 100%;
    aspect-ratio: 7/9;
    transition: 0.3s all ease-in;
}
.program_options  a:hover{
    box-shadow:  0px 1px 6px 4px #c0c0c0;
    transform: scale(1.01);
 }
.program_options .btn_area {
    text-align: center;
    padding: 1rem 0;
}

.program_options .btn_area button {
    text-align: center;
    background-color: #BB5327;
    color: #ffffff;
    padding: 1rem 2rem;
    font-weight: 600;
    border: 1px solid transparent;

}

.program_options a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    border: 2px solid #AAA0A0;
}

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

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

.program_options a .text {
    padding: 1rem;
}

.program_options .box .text {
    padding: 1rem;
}

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

.program_options a .text p {
    font-size: 1.3vw;
    font-weight: 500;
    line-height: 2vw;
}

@media(max-width:998px) {
    .program_options {
        padding: 4rem 1rem;
    }
    .program_options a .text h4 {
        font-size: 1.3rem;
    }
    .program_options a .text {
        padding: 0.9rem;
    }
}

@media(max-width:768px) {
    .program_options {
        padding: 4rem 0.2rem;
    }
    .program_options a .img {
        width: 100%;
        height: auto;
    }
    
    .program_options a{
       aspect-ratio: 0;

    }

    .program_options .heading h1 {
        font-size: 1.8rem;
    }

    .program_options a .text h4 {
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 30px;
    }

    .program_options a .text p {
        font-size: 1rem;
        font-weight: 500;
        line-height: 28px;
    }
}

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

.home_testimonial .heading {
    padding: 2rem 0;
}

.home_testimonial .heading h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 40px;
    color: #BB5327;
}

.home_testimonial .text {
    padding: 1rem;
}

.home_testimonial .text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 50px;
    color: #1A0E09;
}

.home_testimonial .text p {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 30px;
    color: #615D5D;
}

.home_testimonial .img {
    width: 100%;
    max-height: 300px;
    padding: 1rem;
}

.home_testimonial .img img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

.home_testimonial .col-md-12 {
    padding: 2rem 0;
    text-align: center;
}

.home_testimonial .col-md-12 p {
    font-size: 1.2rem;
    font-weight: 600;
    width: 80%;
    margin-left: 10%;
    line-height: 30px;
    color: #5C2109;

}

.testimonial_home {
    background: url('../images/testimonial_frame.png');
    background-size: contain;
    background-repeat: no-repeat;
    height: 90%;
}

.testimonial_home .box {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 80%;
    margin: auto;
}

.testimonial_home .box .img {
    width: 150px;
    aspect-ratio: 1/1;
}

.testimonial_home .box .img img {
    width: 100%;
    height: 100%;
}

.testimonial_home .box h1 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 40px;
    color: #BB5327;
}

.testimonial_home .box p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 24px;
    color: #000;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial_home .box p img {
    margin-right: 1rem;
    width: 20px;
    aspect-ratio: 1/1;
}

.testimonial_home .box .description {
    text-align: center;
}

.testimonial_home .box .description p {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 24px;
    color: #BB5327;
    width: 90%;
    margin: auto;
}

.testimonial_slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translate(6%, -50%);
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.testimonial_slider .owl-nav button:hover {
    background-color: transparent !important;
}

.testimonial_slider .owl-nav button img {
    width: 80px;
    aspect-ratio: 1/1;
}

.testimonial_slider .owl-dots {
    margin-top: 2rem;
}

.testimonial_slider .owl-dots .owl-dot span {
    background-color: transparent !important;
    border: 1px solid #BB5327;
}

.testimonial_slider .owl-dots .owl-dot.active span {
    background-color: #BB5327 !important;
    border: 1px solid #BB5327;
}

@media(max-width:998px) {
    .testimonial_home .box .img {
        width: 100px;
        aspect-ratio: 1/1;
    }

    .testimonial_home {
        height: 28%;
    }

    .testimonial_slider .owl-nav button img {
        width: 40px;
        aspect-ratio: 1/1;
    }

    .testimonial_home .box h1 {
        font-size: 1.2rem;
        font-weight: 600;
        line-height: 32px;
        color: #BB5327;
    }

    .testimonial_home .box p {
        font-size: 1rem;
        font-weight: 500;
        line-height: 22px;
        color: #000;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial_home .box .description p {
        font-size: 1rem;
        font-weight: 600;
        line-height: 24px;
        color: #BB5327;
        word-wrap: break-word;
        width: 90%;
        margin: auto;
    }
}

@media(max-width:768px) {
    .home_testimonial {
        padding: 2rem 0.2rem;
    }

    .testimonial_home .box .img {
        width: 80px;
        aspect-ratio: 1/1;
    }

    .testimonial_home .box h1 {
        font-size: 1.1rem;
        font-weight: 600;
        line-height: 28px;
        color: #BB5327;
    }

    .testimonial_home .box p {
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 20px;
        color: #000;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial_home .box .description p {
        font-size: 0.8rem;
        font-weight: 600;
        line-height: 20px;
        color: #BB5327;
        width: 90%;
        margin: auto;
    }
}

@media(max-width:568px) {
    .testimonial_home {
        background: none;
        height: auto;
    }

    .home_testimonial .heading h1 {
        font-size: 3rem;
    }

    .testimonial_slider .owl-nav {
        width: 114%;
    }

    .testimonial_slider .owl-nav {
        position: absolute;
        top: 50%;
        transform: translate(0%, -50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .home_testimonial .text h1 {
        font-size: 1.8rem;
        line-height: 50px;
        margin: 0;
    }

    .home_testimonial .text p {
        font-size: 1rem;
    }
}

/* ---------------------social_links------------------- */
.social_links {
    padding: 2rem 4rem;
    background: #BB532733;
}

.social_links .links {
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 4rem;
}

.social_links .links p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #5C2109;
    margin: 0;
}

.social_links .links a {
    margin-left: 1rem;
}

.social_links .links a img {
    width: 20px;
    aspect-ratio: 1/1;
}

@media(max-width:768px) {
    .social_links {
        padding: 2rem 0.5rem;
    }

    .social_links .links {
        padding-left: 0.3rem;
    }

    .social_links .links p {
        font-size: 0.9rem;
        font-weight: 500;
        color: #5C2109;
        margin: 0;
    }

    .social_links .links a {
        margin-left: 0.6rem;
    }
}

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

.home_3 .container {
    padding: 0 2rem;
}

.home_3 .heading {
    position: relative;
}

.home_3 .heading h1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 50px;
    color: #BB5327;
}

.home_3 .text {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 70%;

}

.home_3 .text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 60px;
    text-align: left;
    color: #000;
}

.home_3 .text p {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 30px;
    color: #615D5D;
    text-align: left;
}

.home_3 .text a {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 40px;
    color: #000;
    text-align: left;
}

.home_3 .text a img {
    width: 25px;
    height: 25px;
    margin-left: 0.2rem;
}

.home_3 .video_box {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.home_3 .video_box video {
    width: 100%;
    height: 100%;
}

@media (max-width:768px) {
    .home_3 {
        padding: 2rem 0;
    }
}

/* ---------------------home_4---------------- */
.home_4 {
    padding: 4rem 4rem;
    background-color: #1A0E09;
    color: #FFF;
}

.home_4 .container {
    padding: 0rem 2rem;
}

.home_4 .heading h1 {
    font-size: 4rem;
    font-weight: 700;
    padding: 1rem 0;
    line-height: 50px;
}

.home_4 .text {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
}

.home_4 .text p {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 26px;
}

.home_4 .text p:last-child {
    margin-bottom: 4rem;
}

.home_4 .text a {
    text-decoration: none;
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 24px;
}

.home_4 .text a img {
    width: 25px;
    height: 25px;
    margin-left: 0.2rem;
}

.home_4 .img_area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1rem;
}

.home_4 .img_area .img:nth-child(1) {
    width: 100%;
    max-width: 270px;
    height: 100%;
}

.home_4 .img_area .img:nth-child(2) {
    width: 100%;
    top: -60px;
    right: -60px;
    position: absolute;
    max-width: 270px;
    height: 100%;
}

.home_4 .img_area .img img {
    width: 100%;
    height: 100%;
}

@media(max-width:998px) {
    .home_4 .padding-top {
        padding-top: 5rem;
    }
}

@media(max-width:768px) {
    .home_4 {
        padding: 2rem 1rem;
    }

    .home_4 .heading h1 {
        font-size: 2rem;
    }



    .home_4 .img_area .img:nth-child(1) {
        width: 100%;
        height: 100%;
    }

    .home_4 .img_area .img:nth-child(2) {
        height: 100%;
        width: 100%;
        max-width: 245px;
        right: -30px;
    }
}