*{
    margin: 0;
    padding: 0;
}
/* Start of FAQ Page Styling */
.faq-grid-container{
    width: 100%;
    height: auto;
    background: #101010;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    padding-bottom: 80px;
}
.phones-flex-cont{
    display: flex;
    align-items: center;
    justify-content: center;
}
.phones-render-faq{
    width: 50%;
    filter: drop-shadow(4px 4px 4px rgba(255, 255, 255, 0.1));
}
.faq-page-header{
    padding-top: 50px;
    margin-left: 5%;
    color: white;
    font-family: 'PhysisBold';
    font-size: 250%;
}
.faq-questions-cont{
    width: 90%;
    margin-left: 10%;
    height: 60%;
    margin-top: 30px;
}
.accordion {
    background-color: transparent;
    color: white;
    cursor: pointer;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border-bottom: 1px solid white;
    font-family: 'PhysisReg';
    font-size: 125%;
}
.active, .accordion:hover {
    background-color: #1d1d1d;
}
.panel {
    padding: 0px;
    background-color: transparent;
    display: none;
    overflow: hidden;
    color: white;
    font-family: 'PhysisReg';
    padding-top: 20px;
    padding-bottom: 20px;
}
.accordion:after {
    content: ''; /* Empty content */
    background-image: url('images/plus.svg'); /* URL to your plus sign image */
    width: 20px; /* Adjust width and height based on your image size */
    height: 20px;
    display: inline-block;
    background-size: cover;
    float: right;
    margin-left: 5px;
}
  
.active:after {
    content: ''; /* Empty content */
    background-image: url('images/plus.svg'); /* URL to your plus sign image */
    transform: scaleY(-1); /* Flip vertically */
}
/* End of FAQ Page Styling */
/**/
@keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translate(-100%);
    }
}
.infinite-carousel-reviews{
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
    background: #000000;
}
.logos-slide{
    display: inline-block;
    animation: 50s slide infinite;
}
.logos-slide img{
    height: 100px;
    margin: 0 40px;
}
.infinite-carousel-reviews:hover .logos-slide{
    animation-play-state: paused;
}
.footer-cont{
    margin-top: 0px !important;
}
@media screen and (min-width: 0px) and (max-width: 500px)
{
    .faq-page-header{
        font-size: 150%;
    }
    .faq-grid-container{
        grid-template-columns: 100% 0;
        gap: 0;
    }
    .phones-flex-cont{
        display: none;
    }
    .faq-questions-cont{
        width: 90%;
        margin-left: 5%;
    }
    .logos-slide img{
        height: 60px;
        margin: 0 5px;
    }
}

@media screen and (min-width: 501px) and (max-width: 900px)
{
    /* Not necessary as of now */
}
@font-face {
    font-family: 'PhysisBold';
    src: url('fonts/RNSPhysis-Bold.otf');
    font-weight: normal;
}
@font-face {
    font-family: 'PhysisReg';
    src: url('fonts/RNSPhysis-Medium.otf');
    font-weight: normal;
}
@font-face {
    font-family: 'PhysisThin';
    src: url('fonts/RNSPhysis-Thin.otf');
    font-weight: normal;
}

@media screen and (min-width: 3000px)
{
    .logos-slide img{
        height: 8vh;
    }
    .faq-page-header,
    .faq-questions-cont{
        max-width: 2000px;
    }
    .phones-render-faq{
        max-height: 900px;
        max-width: auto;
        width: auto;
    }
}