/*--------------------------------------------------------------
# Faq One
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# FAQ Two
--------------------------------------------------------------*/
.faq-two {
    position: relative;
    display: block;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.05) 100%);
    padding: 30px 0 20px;
    overflow: hidden;
    z-index: 1;
}

.faq-two__right {
    position: relative;
    display: block;
}

.faq-two .faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.faq-two .faq-one-accrodion .accrodion.active {
    background-color: #6065D4;
}

.faq-two .faq-one-accrodion .accrodion:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    right: 0px;
    bottom: 0;
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(-90deg, rgba(92, 176, 233, .50), rgba(61, 114, 252, .50)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: 1;
    z-index: -1;
}

.faq-two .faq-one-accrodion .accrodion.active:before {
    border: 1px solid transparent;
    background: linear-gradient(-90deg, rgba(255, 255, 255, .20), rgba(255, 255, 255, .20)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.faq-two .faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 15px 35px 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    padding-right: 25px;
}

.faq-two .faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    color: var(--techguru-white);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-two .faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: var(--techguru-white);
}

.faq-two .faq-one-accrodion .accrodion+.accrodion {
    margin-top: 25px;
}

.faq-two .faq-one-accrodion .accrodion-title h4::before {
    content: "\e916";
    font-family: 'icomoon' !important;
    font-size: 12px;
    color: var(--techguru-white);
    position: absolute;
    top: 50%;
    right: 0;
    line-height: 12px;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
}

.faq-two .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\e91d";
    color: var(--techguru-white);
}

.faq-two .faq-one-accrodion .accrodion-content {
    position: relative;
    padding-bottom: 31px;
    padding-left: 35px;
    padding-top: 19px;
    padding-right: 35px;
    border-top: 1px dashed rgba(var(--techguru-white-rgb), .40);
}

.faq-two .faq-one-accrodion .accrodion-content p {
    font-weight: 500;
    color: var(--techguru-white);
}

.faq-two .accrodion-content__text-2 {
    margin-top: 16px;
}

/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-page {
    position: relative;
    display: block;
    padding: 30px 0 20px;
    background: var(--techguru-black);
    z-index: 1;
}

.faq-page .container {
    max-width: 1100px;
}


/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/