@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* body{
    background-color: transparent;
} */

/* .menu {
    color: black;
} */

#work-sec1{
    padding: 14vh 0 ;
   
}

#work-sec2,#work-sec1{
    background-color: white;
}

#work-sec1 h1, #work-sec2 h1 {
    font-size: var(--font-heading-size);
    font-weight: 700;
    font-family: "Cormorant Garamond", serif;
    font-style: normal;
}

.work-sec1-div{
    display: flex;
    align-items: center;
    gap: 1rem;
}

#work-sec1 p, #work-sec2 p {
    font-size:var(--font-subheading-size);
    margin: 3rem 0rem;
}

#work-sec1 i{
    margin-top: .2rem;
    border: 1px solid black;
    border-radius: 50%;
    padding: 4px;
    cursor: pointer;
}

.work-sec1-images{
    display: flex;
    gap: 1rem;
    aspect-ratio: 2.4;
    height: 100%;
    
}


.box1{
    height: 35rem;
    width: 100%;
    background-color: #ffa200;
}

#work-sec2{
padding-bottom: 14vh;
}

.work-sec2-div{
    width: 70%;
}

#work-sec2 h1 {
    font-size: 3.5rem;
    font-weight: 600;
    font-family: "Cormorant Garamond", serif;
    font-style: normal;
    /* margin-top: 5rem; */
}

#work-sec2 li{
    list-style: none;
    font-size: 2rem;
}

.ques, .ques1{
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 5px;
}

#work-sec2 hr{
    background-color: black;
 margin: 3rem 0rem;
}

.toggle-content {
    max-height: 0; 
    overflow: hidden; 
    transition: max-height .5s ease; 
    font-size: 1.5rem !important;
    margin-top: 0rem !important;
    margin-bottom: 0 !important;
}

.toggle-content.open {
    max-height: 250px; /* Adjust based on the paragraph content */
    transition: max-height .5s ease;
}

.first{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ques-heading{
    position: relative;
}

.plus-icon{
    margin-right: 1rem;
    cursor: pointer;
    transition: .5s all;
    background: black;
    color: white;
    border-radius: 50%;
    padding: 0px 13px;
    height: fit-content;
}

.plus-icon:hover{
    transform: rotate(450deg);
}

.plus-icon.rotate {
    transform: rotate(495deg); 
}


@media (max-width:1024px){



    .container{
        width: 90%;
    }


    #work-sec1 {
        padding: 7vh 0;
    }

    #work-sec2 {
        padding-bottom: 7vh;
    }
   
        #work-sec1 h1, #work-sec2 h1 {
            font-size: 2rem;
            margin-top: 0rem;
        }
        .work-sec1-images {
            display: flex
        ;
            gap: 1rem;
            aspect-ratio: 1.9;
     
        }

        .work-sec1-images img{
            height: 100%;
        }

    #work-sec1 p, #work-sec2 p{
        font-size: 1.2rem;
        margin: 2rem 0rem;
    }

    .ques, .ques1 {
        padding-top: 10px;
    }

    .box1 {
        height: 25rem;
    }

    .work-sec1-images {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }

    .work-sec2-div {
        width: 100%;
    }

    #work-sec2 li {
        list-style: none;
        font-size: 1.2rem;
    }

    .toggle-content {
        font-size: 1rem !important;
    }
    
    #work-sec2 hr {
        margin: 1rem 0rem;
    }

    .plus-icon {
        margin-right: 0rem;
        padding: 3px 11px;
    }

}


@media (min-width:800px)and ( max-width:1024px) {
    #work-sec1 h1, #work-sec2 h1 {
        font-size: var(--font-heading-size);
        margin-top: 0rem;
    }
}