.home-sebject{
    position: relative;
} 
.subject-page .home-sebject {
    padding: 0 !important;
}

.subject-page .home-sebject .scroll-animation-all-wrapper {
    display: none !important;
}

.subject-list-all {
    display  : flex;
    flex-wrap: wrap;
    gap      : 5px;
}

/* .subject-list-all a {
    color          : black;
    border         : 1px solid;
    padding        : 5px 8px;
    display        : inline-block;
    text-decoration: none;
    background     : white;
    border-radius  : 4px;
    font-size      : 13px;
} */

.subject-list-all a {
    color: #FFFEFE;
    background: #222132;
    border:1px solid #222132;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.35rem;
}

.subject-list-all a:hover {
    background: var(--primary);
    border-color: #222132;
}

.subject-list-all .B:first-of-type {
    background-color: #F95C19;
    color           : white;
}

.subject-list-all>.B:first-child {
    background-color: #F95C19;
    color           : white;
}

.home-sebject {
    overflow: hidden;
}

.scroll-animation {
    margin: 15px 0;
}

.rbt-categori-list {
    display        : flex;
    gap            : 20px;
    align-items    : center;
    justify-content: flex-end;
}

.scroll-animation {
    display : flex;
    width   : -webkit-calc((420px * 16) + (30px * 16));
    width   : -moz-calc((420px * 16) + (30px * 16));
    width   : 7200px;
    position: relative;
}

.scroll-animation.scroll-right-left {
    -webkit-animation          : scroll 80s linear infinite;
    -moz-animation             : scroll 80s linear infinite;
    animation                  : scroll 80s linear infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode   : forwards;
    animation-fill-mode        : forwards;
}

.scroll-animation.scroll-left-right {
    -webkit-animation          : scrollLeft 80s linear infinite;
    -moz-animation             : scrollLeft 80s linear infinite;
    animation                  : scrollLeft 80s linear infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode   : forwards;
    animation-fill-mode        : forwards;
}

.scroll-animation .single-column-20 {
    width  : 500px;
    padding: 0 15px;
}

.scroll-animation.scroll-right-left:hover,
.scroll-animation.scroll-left-right:hover {
    animation-play-state: paused;
}


.rbt-categori-list a {
    border            : 0 none;
    padding           : 0px 35px;
    text-transform    : capitalize;
    /* background        : rgba(249, 92, 25, .25); */
    background        : linear-gradient(287.78deg,#ff4545 3.17%,#f66054 100%)!important;
    /* color             : #F95C19; */
    color             : #fff;
    box-shadow        : 0px 6px 34px rgba(215, 216, 222, 0.41);
    height            : 50px;
    line-height       : 50px;
    border-radius     : 500px;
    font-size         : 18px;
    letter-spacing    : -0.6px;
    transition        : 0.4s;
    display           : inline-block;
    /* min-width      : 100px; */
    white-space       : nowrap;
    text-align        : center;
    text-decoration   : none;
    /* font-family       : 'Baloo Chettan', cursive; */
}

.rbt-categori-list a:hover {
    background: #F95C19;
    color     : white;
    transform : scale(1.1);
}

.scroll-animation-all-wrapper::before {
    top : 0;
    left: 0;
}

.scroll-animation-all-wrapper::before,
.scroll-animation-all-wrapper::after {
    position  : absolute;
    height    : 100%;
    width     : 300px;
    background: linear-gradient(90deg, #fff6e4 100px, rgba(255, 255, 255, 0));
    /* background: linear-gradient(287.78deg,#ff945b 100px,rgb(228, 95, 156,0) ); */
    z-index   : 2;
    content   : "";
}

.scroll-animation-all-wrapper::before,
.scroll-animation-all-wrapper::after {
    position  : absolute;
    height    : 100%;
    width     : 300px;
    background: linear-gradient(90deg, #fff6e4 100px, rgba(255, 255, 255, 0));
    /* background: linear-gradient(287.78deg,#ff945b 100px,rgb(228, 95, 156,0) ); */
    z-index   : 2;
    content   : "";
}

.scroll-animation-all-wrapper::after {
    top              : 0;
    right            : 0;
    -webkit-transform: rotate(180deg);
    -moz-transform   : rotate(180deg);
    transform        : rotate(180deg);
}


@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform        : translateX(0);
    }

    to {
        -webkit-transform: translateX(-webkit-calc(-250px * 7));
        transform        : translateX(calc(-250px * 7));
    }
}

@-moz-keyframes scroll {
    0% {
        -moz-transform: translateX(0);
        transform     : translateX(0);
    }

    to {
        -moz-transform: translateX(-moz-calc(-250px * 7));
        transform     : translateX(calc(-250px * 7));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform   : translateX(0);
        transform        : translateX(0);
    }

    to {
        -webkit-transform: translateX(-webkit-calc(-250px * 7));
        -moz-transform   : translateX(-moz-calc(-250px * 7));
        transform        : translateX(calc(-250px * 7));
    }
}

@-webkit-keyframes scrollLeft {
    0% {
        -webkit-transform: translateX(-webkit-calc(-250px * 7));
        transform        : translateX(calc(-250px * 7));
    }

    to {
        -webkit-transform: translateX(0);
        transform        : translateX(0);
    }
}

@-moz-keyframes scrollLeft {
    0% {
        -moz-transform: translateX(-moz-calc(-250px * 7));
        transform     : translateX(calc(-250px * 7));
    }

    to {
        -moz-transform: translateX(0);
        transform     : translateX(0);
    }
}

@keyframes scrollLeft {
    0% {
        -webkit-transform: translateX(-webkit-calc(-250px * 7));
        -moz-transform   : translateX(-moz-calc(-250px * 7));
        transform        : translateX(calc(-250px * 7));
    }

    to {
        -webkit-transform: translateX(0);
        -moz-transform   : translateX(0);
        transform        : translateX(0);
    }
}

@media (max-width:991px) {

    .scroll-animation-all-wrapper::before,
    .scroll-animation-all-wrapper::after {
        display: none;
    }

}

.search-subject {
    margin-bottom: 20px;
    text-align   : center;
    background   : #fffcf5;
    display      : inline-flex;
    align-items  : center;
    border-radius: 5px;
    overflow     : hidden;
    border       : 1px solid #C5C5D2 !important;
}

.search-subject span {
    background-color: #F95C19;
    padding         : 0px 10px;
    display         : inline-flex;
    height          : 40px;
    align-items     : center;
}

.search-subject i {
    font-size: 16px;
    color    : white;
}

.search-subject #searchSubject {
    display    : block;
    max-width  : 320px;
    padding    : 0 0.75rem;
    font-size  : 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    color      : #2F2E41;
    background : none !important;
    border     : none;
}

.search-subject #searchSubject:focus {
    outline: none;
}


/* services-btn-area start*/

.ser-btn a {
    padding: 15px 43px;
    background: #fe4c1c;
    font-weight: 800;
    font-size: 16px;
    line-height: 22px;
    border-radius: 50px;
    display: inline-block;
    overflow: hidden;
    animation:myfirst 3s infinite;
    color: #fff;
}


@keyframes myfirst /* Firefox */ {
    0% {background:#fe4c1c;}
    100% {background:#3B3663;}
    
}
/* services-btn-area end*/






 /* /------------------------------------ */

 .btn-outer {
    margin: 50px;
  }
  
  .btn-fill {
    border: none;
    border-radius: 3px;
    padding: 15px 43px;
    display: block;
    background: #fe4c1c;
    position: relative; 
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;

    
  }
  
  .btn-fill:before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
    /* background: linear-gradient(to right, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 50%); */
    background: linear-gradient(to right, rgb(59, 54, 99,0.9) 50%, rgb(59, 54, 99,0) 50%);
    background-size: 200% 100%;
    transition: all .5s ease-out;
    -webkit-animation: biglight 4s ease-in-out infinite;
    animation: biglight 4s ease-in-out infinite;
  }
  
  @-webkit-keyframes biglight {
    from {
      background-position: right bottom;
    }
  
  }
  
  .btn-text {
    text-align: center;
    font-size: 15px;
    line-height: 26px; 
    color: white;
    transition: all .6s ease-out;
    display: block;
    position: relative;
  }

  .btn-text:hover {
    color: white;
  }


   /* mutiform-area start */
  
  .multiform__item {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 15px;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.multiform__list a {
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 5px;
    position: relative;
    /* animation: shaking 0.8s infinite; */
   
}
.or__text {
    background: black;
    color: white;
    padding: 5px 6px;
    border-radius: 4px;
    position: relative;
    font-size: 12px;
    font-weight: bold;
}
 .or__text::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 16px;
    width: 65px;
    height: 1px;
    background: black;
}
.or__text span {
    position: relative;
}
@keyframes shaking {
    0% {transform: rotate(0deg);}
    20% {transform: rotate(-4deg);}
    50% {transform: rotate(0deg);}
    70% {transform: rotate(4deg);}
    100% {transform: rotate(0deg);}
 }

/* mutiform-area end */


/* lp-services-area- start */
.lp-ser-area {
    padding: 0px 0px 20px 0px;
}

#secondDiv {
    padding: 20px 0px;
}
.seclected-txt {
    color: #F95C19;
}

.Scheduled-txt-bx {
    padding: 20px 0px;
}

.Scheduled-txt-bx h4 {
    margin-bottom: 10px;
}

.get-heading {
    color: black;
    font-size: 40px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.social-media-page #secondDiv h2 {
    color: black;
    font-weight: normal;
}

.social-media-page #selectedExam {
    background: #fe4c1c;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: bold;
}

.get-quote-btn {
    background: #f0f0f8;
    padding: 40px 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 90%;
    margin: 10px auto;
}

@media (max-width: 991px) {
    .multiform__item {
        flex-direction: column;
    }
    .multiform__item .multiform__list, .multiform__item .multiform__list a {
        width: 100%;
    }

    .multiform__item {
        gap: 8px;
    }
    .or__text{
        display: none;
    }

    .multiform__list a {
        padding: 10px 25px;
        font-size: 15px;
        font-weight: 400;
        border-radius: 5px;  
    }
    .get-heading {
        font-size: 24px;
        margin-bottom: 0;
    }
}

/* customer-ifno-area End */



.socialTextForm,
.socialEmailForm {
    background: #f0f0f8;
    padding: 40px 20px 0 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    display: none;
}

#socialWrapForm h3 {
    color: black;
}

#socialWrapForm .iti {
    width: 100%;
}

#socialWrapForm .social-input-field {
    padding: 10px 12px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 10px;
}

#socialWrapForm button {
    width: 100%;
    margin-bottom: 20px;
}

#socialTextForm button {
    margin: 10px 0;
}

#socialWrapForm .back__btn {
    cursor: pointer;
    position: absolute;
    top: 12px;
    left: 12px;
}

#socialWrapForm .back__btn img {
    height: 32px;
}

#socialWrapForm .multiform__icon {
    text-align: center;
    margin-bottom: 20px;
}

#socialWrapForm .multiform__icon {
    text-align: center;
    margin-bottom: 20px;
}

#socialWrapForm .multiform__icon img {
    height: 62px;
}

.social-media-page #textme2 .iti {
    width: 100%;
    margin-bottom: 20px;
}

.social-media-page #textme2 .flag {
    display: none;
}

#socialWrapForm .social-input-field.has-error {
    border-color: red;
    background: #ff00001a;
}

#socialWrapForm .error {
    display: none !important;
}

.lp-sm-form {
    background: white;
    max-width: 400px;
    margin:25px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.lp-sm-form h2 {
    text-align: center;
    color: black;
}

.lp-sm-form p {
    text-align: center;
}

#smHeaderForm .iti {
    width: 100%;
}

#smHeaderForm button {
    margin: 10px 0;
    width: 100%;
    border-radius: 6px;
}

#smHeaderForm .social-input-field.has-error,
#smPopupForm .social-input-field.has-error {
    border-color: red;
    background: #ff00001a;
}

#smHeaderForm .error,
#smPopupForm .error {
    display: none !important;
}

#smHeaderForm .social-input-field,
#smPopupForm .social-input-field {
    border-radius: 6px;
    width: 100%;
    padding: 11px 0 11px 0;
    padding-left: 100px !important;
    background: #ccc;
    border: 1px solid #bbb;
    color: black;
    font-size: 18px;
    text-align: center;
    text-indent: -50px;
  }

  #smHeaderForm .social-input-field:focus-visible,
  #smPopupForm .social-input-field:focus-visible {
    outline: none;
  }
  
  #smHeaderForm .social-input-field::placeholder,
  #smPopupForm .social-input-field::placeholder {
    color: black;
  }
  
  #smHeaderForm .iti__selected-flag,
  #smPopupForm .iti__selected-flag {
    background: white !important;
    padding: 0 12px 0 12px !important;
    border-radius: 6px;
  }

  @media (max-width:640px) {
    .hero_aria .hero_content h1 {
        font-size: 26px;
        line-height: 30px;
    }
    .hero_aria .hero_content .button_aria {
        display: block;
        margin-top: 0;
    }
    .hero_aria  {
        padding-bottom: 0;
    }
  }

.social-media-page #textme2 .error {
    position: absolute;
    right: 0;
    margin: -5px 0 0 0;
}

#smPopupForm .iti {
    width: 100%;
}

#smPopupForm button {
    width: 100%;
    margin-top: 10px;
    border-radius: 6px;
    color: black;
}

.slider_aria .slider_item .aurthor_info h3 {
    color: #3b3664;
    font-weight: 700;
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 0
}

.lp-sm-guarantees {
    background: white !important;
}

.lp-sm-guarantees .content p {
    color: black;
}

#slider_aria button {
    background: black;
}


.reviews-component {
    background: #433e6c;
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 20px;
    margin-top: 30px;
}

.reviews-component h3 {
    margin: 0;
    font-size: 20px;
}

.reviews-component a img {
    height: 36px;
}

@media (max-width:620px) {

    .reviews-component {
        gap: 10px;
    }

    .reviews-component h3 {
        width: 100%;
        text-align: center;
    }
}

.social-media {
    margin-top: 0 !important;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.social-media li {
    list-style: none;
}

.social-media li a {
    font-size: 24px !important;
}