@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap');


/* Accordion-section */

.accordion-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}


.accordion-custom {
    width: 500px;
    max-width: 100%;
}

.accordion-item-custom {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header-custom {
    background: none;
    font-weight: bold;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    position: relative;    
}

.accordion-header-custom::after {
    content: '>';
    font-size: 28px;    
    transform: rotate(90deg);
    transition: transform 0.3s;
}

.accordion-header-custom span .icon{
    margin-right: 15px;
}

.accordion-header-custom-1::after {
    color: #000 !important;
}

.accordion-item-custom.active .accordion-header-custom::after {
    transform: rotate(270deg);
}

.accordion-content-custom {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.accordion-item-custom.active .accordion-content-custom {
    padding: 15px 20px 20px;
    max-height: 500px;
}


.accordion-item-custom.active{
    background-color: #F4F8FF;
    border: 1px solid #B8CBF8;
}

/* box */

.custom-orange li::marker {
    color: #fc4f02;
}

.highlight
{
    color: #fc4f02;
    font-weight: bold;
}

.scrollBlock2 {
    position: absolute;
    top: 290px;
    left: 65px;
}

.connectBtn {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 14px;
    font-size: 16px;
    min-width: 190px;
    border-radius: 5px;
    width: fit-content;
    color: #000;
    margin: 20px 0;
    text-decoration: none;
    text-align: left;
}

.line {
    height: 1px;
    opacity: 0.6;
    width: 60px;
    position: relative;
    left: 162px;
    bottom: 42px;
}

.connectBtn:hover {
    background-color: #fc4f02;
    transition: 0.4s;
    color: #fff;
    border: 1px solid #fc4f02;
}

.main-box {
    display: flex;
    gap: 40px;
    width: 100%;
}



.boxhover1 {
    height: 155px;
}


.boxhover2 {
    height: 200px;
}

.boxhover2:hover,
.boxhover3:hover,
.boxhover1:hover {
    border: 2px solid #FC4F02;
}



.boxhover3, .boxhover1, .boxhover2 {
    border-radius: 5px;
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 10%);
    display: flex;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.1);
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px;
    border: 2px solid #ffffff00;
    transition: border-color 0.5s ease;
    cursor: pointer;
    width: 100%;

}


.boxhover1 h2 {
    float: left;
    font-size: 95px !important;
    font-weight: bold;
    color: #FC4F02;
    margin-right: 20px;
}

.box-content {
    font-size: 22px !important;
    font-family: 'PTSans-Bold' !important;
    padding-bottom: 8px;
}




.boxhover2 ul li::marker,
.boxhover3 ul li::marker,
.boxhover1 ul li::marker {
    color: #fc4f02;
    font-size: 20px;
}

.left {
    text-align: left;
}


.img-responsive {
    max-width: 100%;
    height: auto;
}

@media(max-width: 1024px) {
   

    .scrollBlock2 {
        position: absolute;
        top: 240px;
        left: 10px;
    }

    .boxhover1, .boxhover2, .boxhover3 {
        height: auto;        
    }

   
}


/* responsive css */
@media (min-width: 0px) and (max-width: 768px) {   

    .boxhover1, .boxhover2, .boxhover3 {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }  


   

    .main-box {
        flex-direction: column;
        gap: 0;
    }

    .main-box-content {
        width: 100%;
    }   

    
    .accordion-custom {
        width: auto;
        max-width: auto;
    }

    .swip {
        display: flex;
        flex-direction: column;
    }

    .items1 {
        order: 2
    }

    .items2 {
        order: 1
    }

    .p-res {
        padding: 0.5rem !important;
    }

    .accordion-header-custom::after {
        margin-left: 10px;
    }

   
}

