﻿    /*------------------------------------------Accordian-----------------------------*/
     
.input1 {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.accordion-wrapper1 {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
    margin:0 auto;
}
.accordion1 {
    width: 100%;
    color: white;
    overflow: hidden;
    margin-bottom: 8px;
   }
.accordion1:last-child{
    margin-bottom: 0;
}
.accordion-label1 {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    background: linear-gradient(to right, #ff4a17, #444444);
    
}
    .accordion-label1:hover {
        background: #ff4a17;
    }
.accordion-label1::after {
    content: "\276F";
    width: 16px;
    height: 16px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.accordion-content1 {
    max-height: 0;
    padding: 0 16px;
    color: #000;
    background: white;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.accordion-content1 p{
    margin: 0;
    color: rgba(4,57,94,.7);
    font-size: 18px;
}
.input1:checked + .accordion-label1 {
    background: linear-gradient(to right, #ff4a17, #444444);
}
.input1:checked + .accordion-label1::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.input1:checked ~ .accordion-content1 {
    max-height: 120vh;
    padding: 16px;
}


