 @import url('https://fomts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins' sans-serif;
}
main{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f5f8ff;
}

.containerr{
    margin: 0 40px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.containerr .tab{
    position: relative;
    background: #fff;
    padding: 0 20px 20px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    overflow: hidden;
}
.containerr .tab input{
    appearance: none;
}
.containerr .tab label{
    display: flex ;
    align-items: center;
    cursor: pointer;
}
.containerr .tab label::after{
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 2em;
    color: rgba(0, 0, 0, 0.1);
    transition: transform 1s;
}
.containerr .tab:hover label::after{
    color: #333;
}
.containerr .tab input:checked ~ label::after{
    transform: rotate(135deg);
    color: #fff;
}
.containerr .tab label h2{
    width: 40px;
    height: 40px;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.25em;
    border-radius: 5px;
    margin-right: 10px;
}
.containerr .tab input:checked ~ label h2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.2);
    font-size: 8em;
    justify-content: flex-end;
    padding: 20px;
}
.containerr .tab:nth-child(2) label h2{
    background: linear-gradient(135deg,#6bdde6,#73f0e9);
}
.containerr .tab:nth-child(3) label h2{
    background: linear-gradient(135deg,#abe450,#a0fd7b);
}
.containerr .tab:nth-child(4) label h2{
    background: linear-gradient(135deg,#8950e4,#c960f3);
}
.containerr .tab:nth-child(5) label h2{
    background: linear-gradient(135deg,#f4460c,#f4330c);
}
.containerr .tab:nth-child(6) label h2{
    background: linear-gradient(135deg,#f40c33,#f40c46);
}
.containerr .tab:nth-child(7) label h2{
    background: linear-gradient(135deg,#70f570,#49c628);
}
.containerr .tab:nth-child(8) label h2{
    background: linear-gradient(135deg,#1eb5a4,#1eadb5);
}
.containerr .tab:nth-child(9) label h2{
    background: linear-gradient(135deg,#7b7b7b,#838383;)
}
.containerr .tab:nth-child(10) label h2{
    background: linear-gradient(135deg,#f4460c,#f4330c);
}
.containerr .tab:nth-child(11) label h2{
    background: linear-gradient(135deg,#f40c33,#f40c46);
}
.containerr .tab:nth-child(12) label h2{
    background: linear-gradient(135deg,#70f570,#49c628);
}
.containerr .tab:nth-child(13) label h2{
    background: linear-gradient(135deg,#1eb5a4,#1eadb5);
}
.containerr .tab:nth-child(14) label h2{
    background: linear-gradient(135deg,#7b7b7b,#838383;)
}
.containerr .tab:nth-child(15) label h2{
    background: linear-gradient(135deg,#f4460c,#f4330c);
}
.containerr .tab:nth-child(16) label h2{
    background: linear-gradient(135deg,#f40cf4,#f40c80);
}
.containerr .tab:nth-child(17) label h2{
    background: linear-gradient(135deg,#58ee58,#4df11f);
}
.containerr .tab:nth-child(18) label h2{
    background: linear-gradient(135deg,#16fafa,#4d9ff0);
}
.containerr .tab:nth-child(19) label h2{
    background: linear-gradient(135deg,#f77e55,#f55924);
}
.containerr .tab:nth-child(20) label h2{
    background: linear-gradient(135deg,#f40c0c,#f41f0c);
}
.containerr .tab:nth-child(21) label h2{
    background: linear-gradient(135deg,#391003,#4c1603);
}
.containerr .tab label h3{
    position: relative;
    font-weight: 500;
    color: #333;
    z-index: 10;
}
.containerr .tab input:checked ~ label h3{
background: #fff;
padding: 2px 10px;
color: #333;
border-radius: 2px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.containerr .tab .content{
    max-height: 0;
    transition: 1s;
    overflow: hidden;
}
.containerr .tab input:checked ~ .content{
    max-height: 100vh;
}
.containerr .tab .content p{
    position: relative;
    padding: 10px 0;
    color: #333;
    z-index: 10;
    font-size: medium;
}
.containerr .tab input:checked ~ .content p{
    color: #fff;
}
.containerr .tab .content li{
    position: relative;
    padding: 10px 0;
    color: #333;
    z-index: 10;
    font-size: medium;
}
.containerr .tab input:checked ~ .content li{
    color: #fff;
}

@media screen and (max-width:1140px) {
    .button-bx{
        width: 100px;
        height: 25px;
        margin: 20px auto;
      }
      .toggle-btn{
        padding: 5px 10px;
      }
      #btn1{
        width: 80px;
        left: 10%;
        height: 50%;
      }
      #btn2{
        width: 80px;
        left: 10%;
        height: 50%;
      }
}
@media screen and (max-width:768px) {
    .toggle-btn{
        padding: 3px 5px;
      }
      #btn1{
        left: 40%;
        width: 65px;
        height: 50%;
      }
      #btn2{
        left: 40%;
        width: 65px;
        height: 50%;
      }
}
@media screen and (max-width:480px) {
    .toggle-btn{
        padding: 3px 5px;
      }
      #btn1{
        left: 40%;
        width: 100%;
        height: 35%;
        font-size: x-small;
      }
      #btn2{
        left: 40%;
        width: 100%;
        height: 35%;
        font-size: x-small;
      }
      #fix{
        right: 10px;
        margin-right: 1%;
      }
      .rapper .icon{
        position: relative;
        background: #fff;
        border-radius: 50%;
        padding: 2px !important;
        width: 20px !important;
        height: 20px !important;
        font-size: 10px !important;
      }
      .carousel-main .owl-item img, .carousel-main .owl-item video {
        max-width: 100%;
          width:auto;
      }
}
