/*** ================== Style CSS =================== ***/

/* === PRELOADER === */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-logo {
  width: 100px;
  height: auto;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #e0e0e0;
  border-top: 6px solid #0ca554; /* verde */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Corrige comportamento do link "Cursos e Formações" no mobile */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        text-align: center;
        white-space: nowrap;
        /* Impede quebra de linha */
        font-size: 16px;
        /* Reduz um pouco o tamanho no mobile */
    }

    /* Se o texto for muito grande, diminui mais um pouco */
    .navbar-nav .nav-item:nth-child(2) .nav-link {
        font-size: 15px;
    }
}


/* Estilo para links ativos */
.department-details__services-list li.active a {
    background: #0ca554 !important;
    color: white !important;
}

.department-details__services-list li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}



/* Transição suave para o conteúdo */
#course-content {
    transition: opacity 0.3s ease;
}




.curso-conteudo {
    transition: all 0.3s ease;
}








/* Feature Banner */
.feature-banner {
    position: relative;
    border-radius: 10px;
    z-index: 1;
    padding: 0px 35px;
    padding-top: 210px;
    padding-bottom: 60px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.feature-banner::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    border-radius: 10px;
    mix-blend-mode: multiply;
    background-color: var(--primary-color);
}

.feature-banner::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(196, 196, 196, 0) 8.49%, #00AA55 85.47%);
}

.feature-banner .quote {
    position: absolute;
    top: 140px;
    left: 30px;
    font-size: 45px;
    color: var(--white-color);
    transform: rotate(180deg);
}

.feature-banner .shape-quote {
    position: absolute;
    top: 70px;
    right: 25px;
    font-size: 150px;
    color: rgb(255 255 255 / 10%);
}

.feature-banner h3 {
    color: var(--white-color);
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 5px;
}

.feature-banner .signature {
    z-index: 9;
    margin-bottom: 22px;
}

.feature-banner .author-name {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: var(--white-color);
}

.feature-banner span {
    color: var(--white-color);
}

/* End Feature Banner */

/* Feature Block One */
.feature-block-one {
    position: relative;
    border-radius: 5px;
    padding: 0px 30px;
    padding-top: 130px;
    padding-bottom: 90px;
    cursor: pointer;
    background-position: left bottom;
    background-repeat: repeat-x;
    background-color: var(--white-color);
    border: 1px solid var(--grey-color-one);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.feature-block-one:hover {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.feature-block-one .icon-box {
    font-size: 50px;
    width: 100px;
    height: 100px;
    line-height: 110px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 25px;
    color: var(--white-color);
    background-color: var(--title-color);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.feature-block-one:hover .icon-box {
    background-color: var(--primary-color);
}

.feature-block-one span {
    color: var(--sub-title-color);
    display: block;
    margin-bottom: 15px;
}

.feature-block-one h3 {
    margin-bottom: 5px;
}

.feature-block-one h3 a {
    color: var(--title-color);
}

.feature-block-one h3 a:hover {
    color: var(--primary-color);
}

.feature-block-one p {
    color: var(--paragraph-color);
}

.feature-block-one .link-btn {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 52px;
    height: 52px;
    border-radius: 5px;
    background-color: var(--sub-title-color);
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.feature-block-one:hover .link-btn {
    background-color: var(--title-color);
}

.feature-block-one .link-btn a {
    position: absolute;
    right: 3px;
    bottom: 3px;
    width: 24px;
    height: 24px;
    font-size: 14px;
    text-align: center;
    line-height: 24px;
    display: inline-block;
    color: var(--white-color);
}

/* End Feature Block One */

/* Service Inner One */
.services-section-one {
    position: relative;
    margin-top: 212px;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.services-section-one:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: '';
    background: rgba(34, 34, 34, 0.8);
    mix-blend-mode: multiply;
}

.service-inner-one {
    position: relative;
}

.service-inner-one .service-image {
    margin-top: -212px;
}

.service-inner-one .service-image img {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

.service-inner-one .conntent-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 90px 70px;
    color: var(--white-color);
    background-color: var(--primary-color);
}

.service-inner-one .conntent-box h3 a {
    color: var(--white-color);
    display: inline-block;
    margin-bottom: 8px;
}

.service-inner-one .conntent-box .link-btn a {
    position: relative;
    color: var(--white-color);
    display: inline-block;
}

.service-inner-one .conntent-box .link-btn a:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background-color: var(--white-color);
}

/* End Service Inner One */

/* Service Block One */
.services-section-two {
    background-color: #F4FAFE;
}

.serrvice-area {
    padding: 43px 0px;
}

.service-block-one {
    position: relative;
    display: inline-flex;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    padding: 42px 30px 42px 30px;
    background-color: var(--white-color);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.service-block-one:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    transform: scaleY(0.0);
    transform-origin: top;
    transition: .5s;
    z-index: -1;
    background-color: var(--primary-color);
}

.service-block-one:hover:before {
    transform: scaleX(1.0);
}

.service-block-one .icon-box {
    width: 70px;
    height: 70px;
    font-size: 35px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    margin-right: 20px;
    color: var(--white-color);
    background-color: var(--primary-color);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.service-block-one:hover .icon-box {
    color: var(--primary-color);
    background-color: var(--white-color);
}

.service-block-one .content-box {
    width: 82%;
}

.service-block-one h5 a {
    display: inline-block;
    color: var(--title-color);
    margin-bottom: 5px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.service-block-one:hover h5 a {
    color: var(--white-color);
}

.service-block-one p {
    color: var(--paragraph-color);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.service-block-one:hover p {
    color: var(--white-color);
}

/* End Service Block One */

/* Service Tab Block*/
.tab-buttons .tab-btn {
    position: relative;
    cursor: pointer;
    font-size: 18px;
    line-height: 30px;
    width: 100%;
    font-weight: 500;
    padding: 20px 40px;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    align-items: center;
    display: inline-flex;
    z-index: 1;
    color: var(--title-color);
    text-transform: uppercase;
    font-family: var(--poppins);
    background: var(--white-color);
    border: 1px solid var(--grey-color-one);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.tab-buttons .tab-btn:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    content: '';
    z-index: -1;
    transition: .8s;
    background-color: var(--primary-color);
}

.tab-buttons .tab-btn:hover,
.tab-buttons .tab-btn.active-btn {
    color: var(--white-color);
}

.tab-buttons .tab-btn:hover:before,
.tab-buttons .tab-btn.active-btn:before {
    width: 100%;
}

.tab-buttons .tab-btn i {
    font-size: 35px;
    margin-right: 30px;
    color: var(--primary-color);
    transition: .8s;
}

.tab-buttons .tab-btn:hover i,
.tab-buttons .tab-btn.active-btn i {
    color: var(--white-color);
}

.tabs-content .tab {
    display: none;
    background-color: var(--white-color);
    transform: scale(0.7, 0.7) translateY(0px);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.tabs-content .tab.active-tab {
    display: block;
    transform: scale(1) translateY(0px);
}

.tabs-content .tab-box {
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
}

.tabs-content .tab-box .tab-image {
    width: 50%;
}

.tabs-content .tab-box .tab-content {
    width: 50%;
    padding-right: 50px;
}

.tabs-content .tab-box .tab-content h3 {
    position: relative;
    margin-bottom: 20px;
    color: var(--title-color);
}

.tabs-content .tab-box .tab-content h3:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
    content: '';
    background-color: var(--primary-color);
}

.tabs-content .tab-box .tab-content p {
    color: var(--paragraph-color);
}

.tabs-content .tab-box .tab-content .bold-text {
    font-weight: 600;
    margin-bottom: 10px;
}

.tabs-content .tab-box .tab-content .link-btn {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 52px;
    height: 52px;
    border-radius: 5px;
    background-color: var(--title-color);
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.tabs-content .tab-box .tab-content .link-btn:hover {
    background-color: var(--primary-color);
}

.tabs-content .tab-box .tab-content .link-btn a {
    position: absolute;
    right: 3px;
    bottom: 3px;
    width: 24px;
    height: 24px;
    font-size: 14px;
    text-align: center;
    line-height: 24px;
    display: inline-block;
    color: var(--white-color);
}

.tabs-content .tab-box .tab-content .link-btn:hover a {
    color: var(--white-color);
}

/* End Service Tab Block*/

/* Event Section*/
.event-section {
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.event-section .event-left {
    position: relative;
    padding-top: 150px;
    padding-right: 30px;
    width: calc(50% + 135px);
}

.event-section .event-right {
    position: relative;
    padding: 150px 90px;
    width: calc(50% - 135px);
    background-color: var(--grey-color-one);
}

.event-inner-left {
    max-width: 815px;
    width: 100%;
    float: right;
}

.event-inner-right {
    max-width: 815px;
    width: 100%;
    float: left;
}

.event-block-info h6 {
    margin-bottom: 20px;
    color: var(--title-color);
}

.event-block-info h6 i {
    margin-right: 15px;
    color: var(--paragraph-color);
}

.event-block-info p {
    line-height: 30px;
    color: var(--paragraph-color);
}

.countdown-box .countdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.countdown-box .counter-column {
    position: relative;
    text-align: center;
    display: block;
    max-width: 189px;
    width: 100%;
    height: 227px;
    border-radius: 10px 10px 0px 0px;
    border: 1px solid var(--grey-color-one);
}

.countdown-box .counter-column .count {
    width: 189px;
    height: 162px;
    line-height: 162px;
    display: block;
    font-size: 54px;
    font-weight: 700;
    color: var(--title-color);
    font-family: var(--manjari);
}

.countdown-box .counter-column span {
    font-size: 16px;
    line-height: 30px;
    display: block;
    padding: 18px 0px;
    width: 100%;
    color: var(--title-color);
    font-family: var(--poppins);
    background-color: var(--grey-color-one);
}

/* Event Block One */
.event-block-one {
    position: relative;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    background-color: var(--white-color);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.event-block-one:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    transform: scaleY(0.0);
    transform-origin: top;
    transition: .5s;
    background-color: var(--primary-color);
}

.event-block-one:hover:before {
    transform: scale(1.0);
}

.event-block-one .image {
    max-width: 145px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.event-block-one .event-content {
    padding: 22px 30px;
    width: 75%;
}

.event-block-one .event-content .date {
    display: inline-block;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    color: var(--paragraph-color);
    background-color: var(--grey-color-one);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.event-block-one .event-content .date span {
    font-weight: 400;
}

.event-block-one:hover .event-content .date {
    color: var(--white-color);
    background-color: var(--title-color);
}

.event-block-one .event-content h5 a {
    display: inline-block;
    color: var(--title-color);
}

.event-block-one:hover .event-content h5 a {
    color: var(--white-color);
}

.event-block-one .event-content p {
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.event-block-one:hover .event-content p {
    color: var(--white-color);
}

/* End Event Section*/

/* Faq Section*/
.faq-left p {
    line-height: 30px;
    margin-bottom: 30px;
}

.faq-image img {
    position: relative;
    width: 100%;
    border-radius: 10px;
}

.faq-left .row {
    position: relative;
}

.faq-left .icon-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-left .icon-box i {
    position: absolute;
    width: 160px;
    height: 160px;
    z-index: 1;
    font-size: 50px;
    line-height: 160px;
    text-align: center;
    border-radius: 50%;
    color: var(--primary-color);
    background: #FFFFFF;
}

.accordion-box .accordion {
    margin-bottom: 25px;
    display: block;
    background-color: var(--white-color);
}

.accordion-box .accordion .acc-btn {
    position: relative;
    cursor: pointer;
    font-size: 25px;
    line-height: 36px;
    font-weight: 700;
    padding: 25px 50px 15px;
    border-radius: 10px;
    display: inline-block;
    width: 100%;
    color: var(--title-color);
    font-family: var(--manjari);
    background-color: var(--grey-color-one);
}

.accordion-box .accordion .acc-btn.active {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.accordion-box .accordion .acc-btn:after {
    position: absolute;
    top: 22px;
    right: 27px;
    width: 40px;
    height: 40px;
    content: '+';
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    color: var(--title-color);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.accordion-box .accordion .acc-btn:before {
    position: absolute;
    top: 22px;
    right: 27px;
    width: 40px;
    height: 40px;
    content: '-';
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    display: none;
    color: var(--title-color);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.accordion-box .accordion .acc-btn.active:after {
    color: var(--white-color);
    display: none;
}

.accordion-box .accordion .acc-btn.active:before {
    color: var(--white-color);
    display: block;
}

.accordion-box .accordion .acc-content {
    display: none;
}

.accordion-box .accordion .acc-content.current {
    display: block;
}

.accordion-box .accordion .acc-content p {
    font-size: 16px;
    line-height: 29px;
    padding: 40px 40px 30px
}

/* End Faq Section*/

/* Team Section*/
.team-section {
    position: relative;
    padding: 150px 0px 120px;
    background-color: #F4FAFE;
}

.team-block-one {
    border-radius: 10px;
    overflow: hidden;
}

.team-block-one .team-image {
    position: relative;
    overflow: hidden;
}

.team-block-one .team-image .social-icon {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 54px;
    padding: 10px;
    transform: scaleY(0);
    transform-origin: top;
    background: var(--primary-color);
    border-radius: 0px 10px 50px 50px;
    transition: .5s;
}

.team-block-one:hover .team-image .social-icon {
    transform: scale(1);
}

.team-block-one .team-image .social-icon li {
    text-align: center;
    display: block;
}

.team-block-one .team-image .social-icon li a {
    display: inline-block;
    text-align: center;
    padding: 5px;
    color: var(--white-color);
}

.team-block-one .team-image .share-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 54px;
    height: 110px;
    display: block;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    transform: scale(1);
    transform-origin: top;
    border-radius: 0px 10px 50px 50px;
    background-color: var(--primary-color);
    transition: 1s;
}

.team-block-one:hover .team-image .share-box {
    transform: scaleY(0);
}

.team-block-one .team-image .share-box i {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 44px;
    height: 44px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    color: var(--paragraph-color);
    background-color: var(--white-color);
}

.team-block-one .team-image .share-box .title-text {
    transform: rotate(-90deg);
    transform-origin: bottom right;
    padding-left: 25px;
    line-height: 35px;
    color: var(--white-color);
}

.team-block-one .team-image .chat-box {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 54px;
    height: 54px;
    content: '';
    font-size: 24px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(120%);
    color: var(--primary-color);
    background-color: var(--white-color);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.team-block-one:hover .team-image .chat-box a {
    color: var(--primary-color);
}

.team-block-one:hover .team-image .chat-box {
    transform: translateY(0);
}

.team-block-one .team-image img {
    width: 100%;
    border-radius: 12px 12px 0px 0px;
}

.team-block-one .team-info {
    position: relative;
    padding: 28px 50px;
    background-color: var(--white-color);
    z-index: 1;
    transition: .5s;
}

.team-block-one .team-info:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    content: '';
    z-index: -1;
    background-color: var(--primary-color);
    transition: .5s;
}

.team-block-one:hover .team-info:before {
    height: 100%;
}

.team-block-one .team-info h5 a {
    font-weight: 700;
    color: var(--title-color);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.team-block-one:hover .team-info h5 a {
    color: var(--white-color);
}

.team-block-one .team-info span {
    font-weight: 700;
    font-family: var(--manjari);
    color: var(--paragraph-color);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.team-block-one:hover .team-info span {
    color: var(--white-color);
}

/* End Team Section*/

/* Testimonials Section*/
.testimonials-section {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.testimonials-section:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    background-color: rgba(34, 34, 34, 0.8);
    mix-blend-mode: multiply;
}

.testimonials-section .twitter-logo {
    position: absolute;
    bottom: calc(0% - 100px);
    left: calc(50% - 100px);
    width: 200px;
    height: 200px;
    font-size: 90px;
    line-height: 200px;
    text-align: center;
    border-radius: 50%;
    color: var(--white-color);
    background-color: var(--primary-color);
}

.testimonial-block {
    max-width: 1180px;
    margin: 0 auto;
}

.testimonial-block h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white-color);
}

.testimonial-block a {
    font-size: 36px;
    line-height: 56px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--manjari);
}

.testimonials-section .owl-dots {
    display: block;
    text-align: center;
    margin-top: 35px;
}

.testimonials-section .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 5px;
    background-color: transparent;
}

.testimonials-section .owl-dots .owl-dot span {
    position: relative;
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 50%;
    margin: 0;
    background: var(--grey-color-one);
}

.testimonials-section .owl-dots .owl-dot.active {
    background-color: var(--grey-color-one);
}

.testimonials-section .owl-dots .owl-dot.active span {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
}

/** Clients Section **/
.clients-section {
    position: relative;
    display: block;
    padding: 50px 0px 100px;
}

.clients-section .clients-outer {
    position: relative;
}

.clients-section .image-box {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 0;
}

.clients-section .image-box img {
    display: block;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    opacity: 0.5;
    -webkit-filter: grayscale(1005);
    filter: grayscale(1005);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.clients-section .slide-item:hover .image-box img {
    opacity: 1;
    -webkit-filter: grayscale(50%);
    filter: grayscale(50%);
}

.clients-section .owl-nav.disabled {
    display: none;
}

/** End Clients Section **/

/** Cta Section **/
.cta-inner {
    display: flex;
    padding: 55px 90px;
    align-items: center;
    justify-content: space-between;
    color: white;

}

/** End Cta Section **/

/** About Style One **/
.about-left-side .title-area {
    position: relative;
    padding: 29px 58px;
    border-radius: 5px;
    background-color: var(--primary-color);
}

.about-left-side .title-area h3 {
    color: var(--white-color);
}

.about-left-side .title-area .shape {
    position: absolute;
    bottom: 18px;
    right: 18px;
    opacity: .15;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.contact-info-item .icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    border: 1px solid transparent;
}

.contact-info-item:nth-child(1) .icon {
    background-color: transparent;
    color: var(--primary-color);
    border-color: rgba(142, 142, 142, 0.2);
}

.contact-info-item:nth-child(2) .icon {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.contact-info-item:nth-child(3) .icon {
    color: var(--white-color);
    background-color: var(--title-color);
}

.contact-info-item h5 {
    color: var(--title-color);
}

.contact-info-item a {
    font-weight: 500;
    color: var(--paragraph-color);
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

.about-right-area .title {
    position: relative;
}

.about-right-area .signature {
    position: absolute;
    left: 415px;
    bottom: 0px;
}

.about-right-area h1 {
    font-size: 72px;
    line-height: 90px;
    font-weight: 700;
    color: var(--title-color);
}

.about-right-area .about-content {
    margin-right: -35px;
}

.about-right-area .about-content p {
    line-height: 29px;
    font-weight: 400;
    color: var(--paragraph-color);
}

.about-right-area .about-content p:last-child {
    margin-top: 30px;
}

.about-right-area .service-area {
    margin-left: 50px;
}

.service-area li {
    margin-bottom: 25px;
}

.service-area li:last-child {
    margin-bottom: 0px;
}

.service-area li a {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    display: inline-block;
    font-family: var(--manjari);
    color: var(--title-color);
}

.service-area li a:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background-color: var(--title-color);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.service-area li a:hover {
    color: var(--primary-color);
}

.service-area li a:hover:before {
    background-color: var(--primary-color);
}

/** End About Style One **/

/** Serrvice Section Three **/
.services-section-three {
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.services-section-three:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: '';
    background: rgba(34, 34, 34, 0.8);
    mix-blend-mode: multiply;
}

.services-section-three .serrvice-area {
    padding: 94px 0px;
}

.service-left-area {
    padding-top: 160px;
}

.service-left-area h1 {
    margin-bottom: 25px;
    color: var(--white-color);
}

.service-left-area p {
    line-height: 29px;
    font-weight: 400;
    color: var(--white-color);
}

.service-left-area .link-btn a {
    position: relative;
    margin-top: 40px;
    color: var(--white-color);
    display: inline-block;
}

.service-left-area .link-btn a:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background-color: var(--white-color);
}

/** End Serrvice Section Three **/

/** Online Serrvice **/
.online-service-left {
    position: relative;
    z-index: 1;
}

.online-service-left .shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 453px;
    height: 631px;
    z-index: -1;
}

.online-service-left .image {
    padding-left: 55px;
    padding-bottom: 55px;
}

.online-serrvice-right .section-title h1 {
    margin-bottom: 0;
}

.online-service-block {
    position: relative;
    display: flex;
    align-items: center;
    padding: 50px 35px;
    border-radius: 10px;
    cursor: pointer;
    background-position: center left;
    background-repeat: no-repeat;
    border: 1px solid rgba(241, 241, 241, 1);
}

.online-service-block .icon-box {
    width: 30%;
    max-width: 80px;
    margin-right: 32px;
}

.online-service-block .icon-box a {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 100px;
    font-size: 40px;
    text-align: center;
    line-height: 110px;
    border-radius: 5px;
    z-index: 1;
    color: var(--primary-color);
    background-color: var(--white-color);
    border: 1px solid rgba(241, 241, 241, 1);
}

.online-service-block:hover .icon-box a {
    color: var(--white-color);
}

.online-service-block .icon-box a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    transform: scale(0);
    transition: .5s;
    border-radius: 5px;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.online-service-block:hover .icon-box a:before {
    transform: scale(1.0);
}

.online-service-block .service-content {
    width: 70%;
}

.online-service-block .service-content h5 a {
    display: inline-block;
    color: var(--title-color);
}

.online-service-block .service-content h5 a:hover {
    color: var(--primary-color);
}

.online-service-block .service-content p {
    display: inline-block;
    font-size: 14px;
    line-height: 26px;
    color: var(--paragraph-color);
}

.online-service-block .link-btn a {
    position: absolute;
    display: inline-block;
    font-size: 24px;
    right: 12px;
    bottom: 12px;
    cursor: pointer;
    color: var(--title-color);
}

.online-service-block .link-btn a:hover {
    color: var(--primary-color);
}

.online-service-block .link-btn a i {
    font-size: 14px;
}

/** End Online Serrvice **/

/** Event Section Two **/
.event-section-two {
    background-color: #F4FAFE;
}

.recent-event .event-block {
    position: relative;
}

.recent-event .event-block .image img {
    width: 100%;
    border-radius: 10px;
}

.recent-event .slider-pager .thumb-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px -5px;
    margin-top: 10px;
}

.recent-event .slider-pager .thumb-box li {
    max-width: 225px;
    height: 145px;
    width: 100%;
    margin: 0px 5px;
    border-radius: 10px;
    overflow: hidden;
}

.recent-event .slider-pager .thumb-box li img {
    height: 100%;
    max-width: none;
}

.event-block-two {
    position: absolute;
    left: 0;
    bottom: 0;
    cursor: pointer;
    padding: 30px 35px 25px;
    max-width: 490px;
    width: 100%;
    background-color: rgb(255 255 255 / 90%);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.event-block-two .date {
    display: inline-block;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    color: var(--white-color);
    background-color: var(--primary-color);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.event-block-two .date span {
    font-weight: 400;
}

.event-block-two:hover .date {
    color: var(--white-color);
    background-color: var(--title-color);
}

.event-block-two h5 a {
    display: inline-block;
    color: var(--title-color);
}

.event-block-two h5 a:hover {
    color: var(--primary-color);
}

.event-block-two p {
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.next-event {
    position: relative;
    margin-left: 50px;
}

.swiper-slide-container {
    position: relative;
    height: 588px;
    width: 100%;
    overflow: hidden;
}

.slide-nav {
    position: absolute;
    right: 0;
    top: 20px;
    display: flex;
    align-items: center;
}

.swiper_prev_btn,
.swiper_next_btn {
    width: 70px;
    height: 70px;
    z-index: 10;
    cursor: pointer;
    text-align: center;
    line-height: 80px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--title-color);
}

.swiper_prev_btn {
    margin-right: 10px;
    transform: rotate(180deg);
}

.swiper_prev_btn:hover,
.swiper_next_btn:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/** Event Section Two **/

/** Activities Section **/
.activities-sectoion {
    position: relative;
    padding-top: 150px;
    padding-bottom: 85px;
    background-repeat: no-repeat;
    background-position: center top;
}

.activities-sectoion .section-title h1 {
    font-weight: 400;
}

.activities-sectoion .section-title p {
    font-weight: 700;
}

.activities-sectoion .owl-stage-outer .owl-item.center {
    transform: translateY(-141px);
    transition: all 500ms ease;
}

.activities-sectoion .owl-stage-outer {
    padding-top: 141px;
}

.activities-block-one .image {
    margin-bottom: 32px;
    border-radius: 10px;
    overflow: hidden;
}

.activities-block-one .image img {
    width: 100%;
}

.activities-block-one h5 a {
    font-weight: 400;
    margin-bottom: 5px;
    display: inline-block;
    color: var(--title-color);
}

.activities-block-one h5 a:hover {
    color: var(--primary-color);
}

.activities-block-one p {
    font-weight: 400;
    line-height: 29px;
    color: var(--paragraph-color);
}

.activities-sectoion .owl-dots {
    display: none;
}

.activities-sectoion .owl-nav {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 17px;
}

.activities-sectoion .owl-nav .owl-next,
.activities-sectoion .owl-nav .owl-prev {
    width: 70px;
    height: 70px;
    font-size: 30px;
    color: var(--title-color);
    background: var(--white-color);
    border: 1px solid var(--title-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 500ms ease;
}

.activities-sectoion .owl-nav .owl-prev {
    margin-right: 10px;
    transform: rotate(180deg);
}

.activities-sectoion .owl-nav .owl-next:hover,
.activities-sectoion .owl-nav .owl-prev:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/** Activities Section **/

/** Team Block Style Two **/
.team-block-one.style-two .team-info {
    padding: 30px;
}

.team-block-one.style-two .team-info h3 a {
    color: var(--title-color);
}

.team-block-one.style-two:hover .team-info h3 a {
    color: var(--white-color);
}

.team-block-one.style-two .team-info span {
    margin-bottom: 12px;
    display: block;
}

.team-block-one.style-two .team-info p {
    padding-bottom: 22px;
    line-height: 29px;
    color: var(--paragraph-color);
    transition: all 500ms ease;
}

.team-block-one.style-two:hover .team-info p {
    color: var(--white-color);
}

/** End Team Block Style Two **/

/** Team Block Style Three **/
.team-block-one.style-three {
    cursor: pointer;
}

.team-block-one.style-three .team-image {
    position: relative;
}

.team-block-one.style-three .team-image img {
    border-radius: 12px;
}

.team-block-one.style-three .team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 250px;
    width: 100%;
    padding: 15px 22px 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0px 0px 0px 10px;
}

.team-block-one.style-three .team-info h5 {
    color: var(--title-color);
}

.team-block-one.style-three .team-info span {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: var(--sub-title-color);
    font-family: var(--manjari);
}

.team-block-one.style-three:hover .team-info span {
    color: var(--white-color);
}

/** End Team Block Style Three **/

/** Testimonial Block Two **/
.testimonials-section.style-two {
    padding-top: 120px;
}

.testimonials-section.style-two .owl-dots {
    position: absolute;
    display: block;
    text-align: center;
    bottom: 140px;
    margin-top: 0;
    left: calc(50% - 45px);
}

.testimonials-section.style-two .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonials-section.style-two .owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
}

.testimonials-section.style-two .owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-block-two {
    position: relative;
    max-width: 1180px;
    width: 100%;
    padding-bottom: 200px;
    margin: 0 auto;
}

.testimonial-block-two .quote {
    font-weight: 700;
    font-size: 200px;
    line-height: 300px;
    text-align: center;
    margin-bottom: -205px;
    font-family: var(--manjari);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white-color);
    color: transparent;
}

.testimonial-block-two h3 {
    color: var(--white-color);
    margin-bottom: 20px;
}

.testimonial-block-two h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 5px;
    color: var(--white-color);
    font-family: var(--manjari);
}

.testimonial-block-two span {
    font-weight: 400;
    font-size: 12px;
    line-height: 26px;
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
    color: var(--white-color);
    font-family: var(--poppins);
}

.testimonial-block-two .rating-star li {
    display: inline-block;
    font-size: 16px;
    color: var(--primary-color);
}

.testimonial-block-two .author-image {
    position: absolute;
    bottom: calc(0% - 100px);
    left: calc(50% - 100px);
    width: 200px;
    height: 200px;
    line-height: 200px;
    text-align: center;
    border-radius: 50%;
    z-index: 99;
}

/** End Testimonial Block Two **/

/** Contact Info **/
.contact-info.home-three {
    position: relative;
    padding-top: 81px;
    padding-bottom: 45px;
    background-color: var(--primary-color);
}

.contact-info-item.style-two {
    cursor: pointer;
}

.contact-info-item.style-two .icon {
    color: var(--white-color);
    border-color: var(--white-color);
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
}

.contact-info-item.style-two:hover .icon {
    background-color: var(--title-color);
    border-color: var(--title-color);
}

.contact-info-item.style-two h5 {
    color: var(--white-color);
}

.contact-info-item.style-two p a {
    color: var(--white-color);
}

/** End Contact Info **/

/** Services Section Four **/
.services-section-four {
    position: relative;
    z-index: 1;
    padding-top: 150px;
}

.services-section-four .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.services-section-four .title {
    font-size: 72px;
    line-height: 90px;
    text-align: center;
    color: var(--title-color);
    margin-bottom: 35px;
}

.services-section-four .signature {
    display: block;
    text-align: center;
}

.services-section-four .feature-block-one {
    transform: translateY(50px);
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
}

.services-section-four .feature-block-one:hover {
    transform: translateY(0px);
}

/** End Services Section Four **/

/** Services Section Four **/
.about-right-content h3 {
    margin-top: 70px;
    margin-bottom: 20px;
}

.about-right-content h5 {
    margin-bottom: 10px;
}

.about-right-content p {
    margin-bottom: 30px;
}

/** End Services Section Four **/

/** Case Studies Section **/
.case-studies-section {
    position: relative;
    background-color: #F4FAFE;
}

.case-studies-section .title-area {
    display: flex;
    align-items: center;
}

.case-studies-section .title-area .title-left {
    width: 60%;
}

.case-studies-section .title-area .title-right {
    width: 40%;
}

.case-studies-section .sub-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 29px;
    display: block;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--sub-title-color);
}

.case-studies-slide-area {
    margin-left: -480px;
}

.case-studies-block {
    position: relative;
}

.case-studies-block .case-image {
    padding: 25px;
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 10px;
    background-color: var(--white-color);
}

.case-studies-block .case-image img {
    border-radius: 10px;
    width: 100%;
}

.case-studies-block .case-content {
    position: relative;
    padding: 30px;
    border-radius: 0px 0px 10px 10px;
    background-color: var(--white-color);
}

.case-studies-block .case-content h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.case-studies-block .case-content h5 a {
    color: var(--title-color);
    display: inline-block;
}

.case-studies-block .case-content h5 a:hover {
    color: var(--primary-color);
}

/** End Case Studies Section **/

.faq-section.style-two {
    padding-top: 150px;
}

/** Contact Our Expart **/
.accordion-box.style-two {
    max-width: 695px;
    width: 100%;
    float: right;
}

.contact-our-exart {
    position: relative;
    padding: 68px;
    z-index: 1;
    color: var(--white-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.contact-our-exart:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    background-color: rgb(34 34 34 / 80%);
}

.contact-our-exart span {
    position: relative;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.contact-our-exart span:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 1px;
    content: '';
    background-color: var(--white-color);
}

.contact-our-exart h3 {
    margin-bottom: 20px;
}

.contact-our-exart form {
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
}

.contact-our-exart .form-group {
    margin-bottom: 20px;
}

.contact-our-exart form input,
.contact-our-exart form textarea {
    color: #B9B8B8;
    height: 50px;
    background-color: var(--white-color);
}

.contact-our-exart form button {
    padding: 15px 60px;
}

/** End Contact Our Expart **/

/** Client Section Style Two **/
.clients-section.style-two {
    padding: 150px 0px;
}

/** End Client Section Style Two **/

/** Explore Online Services **/
.explore-online-services {
    padding-top: 150px;
}

.online-service-content span {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sub-title-color);
}

.online-service-content .text p {
    line-height: 29px;
    color: var(--paragraph-color);
}

.online-menu-list li {
    margin-bottom: 18px;
    list-style-type: disc;
    list-style-position: inside;
}

.online-menu-list li:last-child {
    margin-bottom: 0px;
}

.online-menu-list li a {
    position: relative;
    font-size: 18px;
    line-height: 30px;
    display: inline-block;
    color: var(--title-color);
    transition: .5s;
}

.online-menu-list li a:hover {
    color: var(--primary-color);
}

/** End Explore Online Services **/

/** Services Section Five **/
.services-section-five {
    padding: 150px 0px 120px;
}

/** End Services Section Five **/

/** Faq Section Style Three **/
.faq-section.style-three {
    position: relative;
    padding-bottom: 120px;
}

.faq-section.style-three .image-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.09;
    background-position: bottom;
    background-repeat: no-repeat;
    background-repeat: repeat-x;
    animation: slide-1 100s linear infinite;
    -webkit-animation: slide-1 100s linear infinite;
}

/** End Faq Section Style Three **/

/** Fun Fact Section **/
.fun-fact-section {
    padding-top: 150px;
}

.counter-block-one .inner-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-block-one .inner-box i {
    font-size: 90px;
    line-height: 120px;
    color: var(--primary-color);
}

.counter-block-one .count-box span {
    font-style: normal;
    font-weight: 700;
    font-size: 72px;
    line-height: 50px;
    color: var(--title-color);
    font-family: var(--manjari);
    text-transform: uppercase;
}

.counter-block-one .count-box h6 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: var(--title-color);
    font-family: var(--manjari);
}

/** End Fun Fact Section **/

/** About Section Four **/
.about-section-four {
    padding: 150px 0px 120px;
}

.about-content-four {
    margin-top: 30px;
}

.about-content-four h3 {
    margin-bottom: 20px;
}

.about-content-four h5 {
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--manjari);
}

.about-content-four p {
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 30px;
    color: var(--paragraph-color);
}

.about-section-four .image img {
    width: 100%;
}

/** End About Section Four **/

/** Quote Section **/
.quote-section .row {
    display: flex;
}

.quote-left-side {
    position: relative;
    z-index: 1;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.quote-left-side:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    background-color: rgba(34, 34, 34, 0.9);
}

.quote-left-inner {
    max-width: 710px;
    float: right;
    padding: 95px 62px;
    padding-left: 0px;
}

.quote-left-image {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 31px;
    margin-bottom: 40px;
}

.quote-left-image span {
    display: block;
    margin-bottom: 15px;
    color: var(--white-color);
}

.quote-left-inner h3 {
    font-family: 'Manjari';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 56px;
    color: #FFFFFF;
}

.quote-right-side {
    position: relative;
    z-index: 1;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.quote-right-side:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    background-color: rgba(0, 170, 85, 0.8);
}

.quote-right-inner {
    padding: 110px;
    align-items: center;
}

.quote-right-inner .icon-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    margin-bottom: 45px;
}

.quote-right-inner .icon-box .icon {
    width: 160px;
    height: 160px;
    line-height: 160px;
    border-radius: 50%;
    text-align: center;
    font-size: 50px;
    color: var(--primary-color);
    background-color: var(--white-color);
}

.quote-right-inner .icon-box {
    color: var(--white-color);
}

.quote-right-inner h1 {
    color: var(--white-color);
}

/** End Quote Section **/

/** Cta Section Style Two **/
.cta-inner.style-two {
    position: relative;
    margin-bottom: -120px;
    z-index: 99;
    border-radius: 10px 10px 0px 0px;
    background-color: var(--primary-color);
}

.cta-inner.style-two h3 {
    color: var(--white-color);
}

/** End Cta Section Style Two **/

/** Complain Section **/
.complain-section {
    position: relative;
    padding: 100px 0px;
    z-index: 1;
}

.complain-section:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 525px;
    z-index: -1;
    background-color: rgba(34, 34, 34, 0.9);
}

.complain-section .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 525px;
    z-index: -2;
}

.complain-section .section-title span {
    color: var(--white-color);
}

.complain-section .section-title h1 {
    color: var(--white-color);
    margin-bottom: 10px;
}

.complain-section .section-title p {
    color: var(--white-color);
}

.complain-block-one {
    z-index: 11;
}

.complain-block-one .image {
    position: relative;
    z-index: -1;
    overflow: hidden;
    border-radius: 10px;
}

.complain-block-one .image:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 1;
    background: linear-gradient(360deg, #000000 2.62%, rgba(217, 217, 217, 0) 100%);
    border-radius: 10px;
}

.complain-block-one .show-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    transform: scale(1);
    transition: .5s;
}

.complain-block-one:hover .show-content {
    transform: scaleY(0);
}

.complain-block-one .show-content h5 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--white-color);
}

.complain-block-one .hidden-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 100%;
    transform: scaleY(0);
    transition: .5s;
}

.complain-block-one:hover .hidden-content {
    transform: scaleY(1);
}

.complain-block-one .hidden-content h5 a {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    display: inline-block;
    color: var(--white-color);
}

.complain-block-one .hidden-content h5 a:hover {
    color: var(--primary-color);
}

.complain-block-one .hidden-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: var(--white-color);
}

.complain-section .nav-style-one .owl-nav .owl-next,
.complain-section .nav-style-one .owl-nav .owl-prev {
    color: var(--primary-color);
    background-color: var(--white-color);
    border: none;
    box-shadow: rgb(0 0 0 / 5%) 0px 4px 20px;
}

.complain-section .nav-style-one .owl-nav .owl-next:hover,
.complain-section .nav-style-one .owl-nav .owl-prev:hover {
    color: var(--white-color);
}

.complain-section .nav-style-one .owl-nav .owl-prev {
    left: -35px;
}

.complain-section .nav-style-one .owl-nav .owl-next {
    right: -35px;
}

/** End Complain Section **/

/** Testimonial Block Three **/
.testimonials-style-three {
    padding-top: 150px;
}

.testimonial-block-three .testimonial-inner {
    display: flex;
}

.testimonial-block-three .author-info {
    margin-right: 110px;
    max-width: 200px;
    width: 100%;
}

.testimonial-block-three .author-info h4 {
    font-size: 24px;
    line-height: 34px;
    color: var(--title-color);
}

.testimonial-block-three .author-info span {
    font-size: 14px;
    line-height: 26px;
    display: block;
    color: var(--title-color);
    margin-bottom: 5px;
}

.testimonial-block-three .rating-star li {
    display: inline-block;
    font-size: 15px;
    color: var(--primary-color);
}

.testimonial-block-three .author-speech {
    position: relative;
    padding: 50px 56px;
}

.testimonial-block-three .author-speech .quote {
    position: absolute;
    left: 0;
    top: 25px;
    font-size: 75px;
    color: #F1F1F1;
    transform: rotate(180deg);
}

.testimonial-block-three .author-speech h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 56px;
    color: var(--title-color);
    font-family: var(--manjari);
}

.owl-dots-one .owl-dots .owl-dot button {
    margin: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    transition: .5s;
    display: inline-block;
    color: var(--title-color);
    font-family: var(--manjari);
}

.owl-dots-one .owl-dots .owl-dot:hover button,
.owl-dots-one .owl-dots .owl-dot.active button {
    color: var(--primary-color);
}

/** End Testimonial Block Three **/

/** Service Style Six **/
.service-block-six {
    position: relative;
    cursor: pointer;
    z-index: 1;
}

.service-block-six:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    background: linear-gradient(0deg, #000000 7.25%, rgba(217, 217, 217, 0) 100%);
}

.service-block-six .border-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    content: '';
    z-index: 11;
    background: rgba(255, 255, 255, 0.1);
}

.service-block-six .border-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    content: '';
    z-index: 11;
    background: rgba(255, 255, 255, 0.1);
}

.service-block-six .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -11;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-block-six .defult-content {
    position: relative;
    z-index: 1;
    transition: .5s;
    padding: 140px 70px 70px;
}

.service-block-six .defult-content .pattern-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scaleY(1);
    transition: .5s;
    transform-origin: bottom;
    background-position: bottom left;
    background-repeat: repeat-x;
    background-size: cover;
    animation: slide-2 100s linear infinite;
    -webkit-animation: slide-2 100s linear infinite;
}

.service-block-six .service-inner:hover .pattern-layer {
    transform: scaleY(0);
}

.service-block-six .defult-content:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    transition: .5s;
    transform: scaleY(1);
    transform-origin: bottom;
    background-color: var(--title-color);
}

.service-block-six .service-inner:hover .defult-content:before {
    transform: scaleY(0);
}

.service-block-six .icon-box {
    position: relative;
    font-size: 50px;
    width: 100px;
    height: 100px;
    line-height: 110px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 25px;
    display: block;
    overflow: hidden;
    color: var(--white-color);
    background-color: rgb(142 142 142 / 20%);
}

.service-block-six .icon-box:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    transform: scaleY(0);
    transform-origin: top;
    transition: .5s;
}

.service-block-six .service-inner:hover .icon-box:before {
    transform: scaleY(1);
    background-color: var(--primary-color);
}

.service-block-six .service-inner .tag {
    position: absolute;
    right: 70px;
    top: 50px;
    font-size: 72px;
    line-height: 90px;
    transform: scaleX(1);
    transition: .5s;
    transform-origin: right;
    font-family: var(--manjari);
    color: rgb(255 255 255 / 10%);
}

.service-block-six .service-inner:hover .tag {
    transform: scaleX(0);
}

.service-block-six span {
    margin-bottom: 10px;
    display: block;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--poppins);
    color: var(--white-color);
}

.service-block-six h3 a {
    font-weight: 700;
    font-family: var(--manjari);
    color: var(--white-color);
}

.service-block-six h3 a:hover {
    color: var(--primary-color);
}

.service-block-six p {
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    color: var(--white-color);
}

.service-block-six .service-inner .defult-image {
    transform-origin: top;
    transform: scaleY(1);
    transition: .5s;
}

.service-block-six .service-inner .defult-image img {
    width: 100%;
}

.service-block-six .service-inner:hover .defult-image {
    transform: scaleY(0);
}

/** End Service Style Six **/

/** Team Section Home Five **/
.team-section .title-area {
    display: flex;
    align-items: center;
}

.team-section .title-area .title-left {
    width: 60%;
}

.team-section .title-area .title-right {
    width: 40%;
}

.team-section .sub-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 29px;
    display: block;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--sub-title-color);
}

/** End Team Section Home Five **/

/** FunFact Section Style Two **/
.fun-fact-section.style-two {
    padding: 150px 0;
}

/** End FunFact Section Style Two **/

/** History Section **/
.history-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-bottom: 120px;
}

.history-section .bg-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: repeat-x;
    animation: slide-1 100s linear infinite;
    -webkit-animation: slide-1 100s linear infinite;
}

.history-image {
    display: block;
    text-align: center;
    padding-top: 60px;
    background-color: var(--white-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px 10px 0px 0px;
}

.est-date {
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 90px;
    text-align: center;
    padding-top: 20px;
    color: var(--sub-title-color);
    font-family: var(--manjari);
}

.online-service-image img {
    width: 100%;
}

.protfolio-block-one .inner-box img {
    width: 100%;
}

.history-banner-image img {
    width: 100%;
}

.history-block-one {
    position: relative;
    padding: 42px;
    background-color: var(--white-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.history-block-one h3 {
    font-style: normal;
    font-weight: 700;
    color: var(--title-color);
}

.history-block-one h4 {
    font-style: normal;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--title-color);
}

.history-block-one p {
    font-size: 16px;
    line-height: 29px;
    color: var(--paragraph-color)
}

.explore-online-services.sec-padding-150 {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/** End History Section **/

/** Protfolio Section **/
.protfolio-section .title-area {
    display: flex;
    align-items: center;
}

.protfolio-section .title-area .title-left {
    width: 60%;
}

.protfolio-section .title-area .title-right {
    width: 40%;
}

.protfolio-section .sub-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 29px;
    display: block;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--sub-title-color);
}

.filter-tabs {
    margin-bottom: 60px;
}

.filter-tabs .filter {
    display: inline-block;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    cursor: pointer;
    color: var(--title-color);
    font-family: var(--manjari);
    margin-right: 50px;
}

.filter-tabs .filter:last-child {
    margin-right: 0;
}

.filter-tabs .filter.active,
.filter-tabs .filter:hover {
    color: var(--primary-color);
}

.protfolio-block-one {
    margin-bottom: 30px;
}

.protfolio-block-one .inner-box {
    position: relative;
}

.protfolio-block-one .link-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
}

.protfolio-block-one .link-btn a {
    width: 65px;
    height: 65px;
    font-size: 32px;
    text-align: center;
    border-radius: 50%;
    line-height: 65px;
    display: inline-block;
    color: var(--white-color);
    border: 4px solid var(--white-color);
}

.protfolio-block-one .overlay-box {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    left: 0;
    bottom: 0;
    transform: scaleY(0);
    flex-direction: column;
    justify-content: end;
    align-items: flex-start;
    transform-origin: bottom;
    padding: 30px 20px 20px 30px;
    transition: .5s;
    background-color: rgba(0, 0, 0, 0.6);
}

.protfolio-block-one .inner-box:hover .overlay-box {
    transform: scaleY(1);
}

.protfolio-block-one .overlay-box span {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 26px;
    font-family: var(--poppins);
    color: var(--white-color);
    display: block;
    margin-bottom: 4px;
}

.protfolio-block-one .overlay-box h5 a {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    display: inline-block;
    color: var(--white-color);
    font-family: var(--manjari);
}

.protfolio-block-one .overlay-box h5 a:hover {
    color: var(--primary-color);
}

/** End Protfolio Section **/

/** Services Details Section **/
.service-menu-list {
    padding: 25px;
    background: var(--white-color);
    box-shadow: -11px 0px 20px rgba(0, 0, 0, 0.05);
}

.service-menu-list li a {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    line-height: 30px;
    width: 100%;
    font-weight: 700;
    padding: 34px 20px;
    margin-bottom: 25px;
    align-items: center;
    display: block;
    z-index: 1;
    overflow: hidden;
    border-radius: 5px;
    padding-left: 100px;
    color: var(--title-color);
    font-family: var(--manjari);
    background: var(--white-color);
    border: 1px solid var(--grey-color-one);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.service-menu-list li:last-child a {
    margin-bottom: 0;
}

.service-menu-list li a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    content: '';
    z-index: -1;
    transition: .8s;
    background-color: var(--primary-color);
}

.service-menu-list li a:hover,
.service-menu-list li.active-btn a {
    color: var(--white-color);
}

.service-menu-list li:hover a:before,
.service-menu-list li.active-btn a:before {
    width: 100%;
}

.service-menu-list li a i {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 50%;
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.05);
    transition: .8s;
}

.service-menu-list li:hover a i,
.service-menu-list li.active-btn a i {
    color: var(--white-color);
}

.service-sidebar-contact {
    position: relative;
    padding: 70px 30px;
    background-repeat: no-repeat;
    background-position: left top;
}

.service-right {
    margin-left: 30px;
}

.service-details-content {
    margin-bottom: 60px;
}

.service-details-content .section-title h1 {
    margin-bottom: 5px;
}

.service-details-content .section-title .title-shape {
    margin-bottom: 35px;
}

.service-details-image img {
    border-radius: 5px;
}

.service-item h5 {
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    line-height: 29px;
    color: var(--paragraph-color);
}

.service-list-area h3 {
    margin-bottom: 25px;
}

.download-resource-area {
    position: relative;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.download-resource-area h5 {
    font-weight: 700;
    margin-bottom: 30px;
}

.download-row {
    display: inline-flex;
    align-items: center;
    gap: 40px;
}

.download-single-item .pdf-logo {
    margin-bottom: 15px;
}

.download-single-item a {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    display: inline-block;
    text-decoration-line: underline;
    color: var(--paragraph-color);
    font-family: var(--poppins);
}

/** End Services Details Section **/

/** Error Page **/
.erorr-page {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    padding: 190px 0px;
}

.erorr-page .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.erorr-page:before {
    position: absolute;
    content: '';
    background: #000;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    opacity: 0.8;
}

.erorr-page .error-text {
    font-style: normal;
    font-weight: 700;
    font-size: 300px;
    line-height: 352px;
    text-align: center;
    margin-bottom: -100px;
    color: var(--white-color);
    font-family: var(--manjari);
}

.erorr-page .error-text span {
    color: var(--primary-color);
}

.erorr-page h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.erorr-page h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 75px;
    text-align: center;
    color: var(--white-color);
    margin-bottom: 12px;
}

.erorr-page h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--white-color);
}

/** End Error Page **/

/** Error Page **/
.coming-soon-page {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    padding: 333px 0px;
}

.coming-soon-page .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.coming-soon-page:before {
    position: absolute;
    content: '';
    background: #000;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    opacity: 0.8;
}

.coming-soon-page .content-box {
    max-width: 1020px;
    margin: 0 auto;
}

.coming-soon-page .content-box .logo {
    margin-bottom: 40px;
}

.coming-soon-page .content-box p {
    font-weight: 500;
    font-size: 18px;
    line-height: 29px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--white-color);
}

.coming-soon-page .content-box h1 {
    font-weight: 700;
    font-size: 72px;
    line-height: 90px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--white-color);
}

.countdown-box-two .countdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 75px;
}

.countdown-box-two .counter-column {
    position: relative;
    max-width: 207px;
    width: 100%;
    height: 207px;
    border-radius: 5px;
    border: 2px solid var(--primary-color);
}

.countdown-box-two .counter-column .count {
    display: block;
    font-size: 72px;
    font-weight: 700;
    line-height: 72px;
    width: 100%;
    padding-top: 55px;
    color: var(--white-color);
    font-family: var(--manjari);
}

.countdown-box-two .counter-column span {
    font-size: 30px;
    line-height: 30px;
    display: block;
    width: 100%;
    color: var(--white-color);
    font-family: var(--manjari);
    background-color: transparent;
}

.coming-soon-page .content-box h3 {
    color: var(--white-color);
    margin-bottom: 17px;
}

.coming-soon-page .content-box form {
    position: relative;
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
}

.coming-soon-page .content-box input {
    padding: 12px 30px;
    width: 100%;
    height: 50px;
    color: rgba(185, 184, 184, 1);
    background-color: var(--white-color);
}

.coming-soon-page .content-box button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px 30px;
    height: 50px;
    border-radius: 0;
}

/** End Error Page **/

/** Team Details **/
.team-details-left {
    margin-right: 5px;
}

.team-details-left img {
    border-radius: 10px;
}

.team-details-left h3 {
    margin-bottom: 15px;
}

.team-details-left p {
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--paragraph-color);
}

.team-details-page .accordion .acc-content p {
    color: var(--paragraph-color);
}

.team-details-right {
    margin-bottom: 40px;
}

.team-details-right h3 {
    font-weight: 700;
}

.team-details-right span {
    display: block;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-details-right .connect-media {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.team-details-right strong {
    font-size: 16px;
    line-height: 29px;
    color: #000000;
    font-family: var(--poppins);
}

.team-details-right .social-icon li {
    display: inline-block;
    margin-right: 15px;
}

.team-details-right .social-icon li:last-child {
    margin-right: 0;
}

.team-details-right .social-icon li a {
    color: #00ACEE;
    display: inline-block;
    font-size: 15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    transition: .5s;
}

.team-details-right .social-icon li a:hover {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: rgba(0, 0, 0, 0.1);
}

.team-details-right p {
    font-size: 16px;
    line-height: 29px;
    color: var(--paragraph-color);
}

.team-content-one {
    margin-bottom: 30px;
}

.team-content-one h3 {
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--title-color);
}

.team-content-one .menu-list {
    margin-bottom: 20px;
}

.team-content-one li {
    margin-bottom: 25px;
    list-style-type: disc;
    list-style-position: inside;
}

.team-content-one li:last-child {
    margin-bottom: 0px;
}

.team-content-one li a {
    position: relative;
    font-size: 18px;
    line-height: 30px;
    display: inline-block;
    color: var(--title-color);
    transition: .5s;
}

.team-content-one li a:hover {
    color: var(--primary-color);
}

.team-content-one p {
    font-size: 16px;
    line-height: 29px;
    color: var(--paragraph-color);
}

.team-content-two h3 {
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--title-color);
}

.team-content-two p {
    font-size: 16px;
    line-height: 29px;
    color: var(--paragraph-color);
}

/** End Team Details **/


/** Event Page **/
.sidebar-widget {
    position: relative;
    padding: 40px 30px;
    background: var(--white-color);
    box-shadow: -11px 0px 20px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.sidebar-widget-title h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 56px;
    margin-bottom: 15px;
    color: var(--title-color);
    font-family: var(--manjari);
}

.search-widget .form-group {
    margin-bottom: 0px;
}

.search-widget .search-form input {
    height: 60px;
    color: rgba(0, 0, 0, 0.3);
    background: #F7F7F7;
    border: 1px solid #D7D7D7;
}

.search-widget .search-form input:focus,
.search-widget .search-form input:hover {
    border-color: var(--primary-color);
}

.search-widget .search-form button {
    position: absolute;
    right: 25px;
    top: 17px;
    font-size: 25px;
    transition: .5s;
    color: var(--primary-color);
}

.search-widget .search-form button:hover {
    color: var(--title-color);
}

.category-list li a {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 15px 0px;
    padding-left: 25px;
    font-weight: 600;
    color: var(--title-color);
    text-transform: capitalize;
}

.category-list li a:hover {
    color: var(--primary-color);
}

.category-list li a i {
    position: absolute;
    font-size: 16px;
    left: 0px;
    top: 17px;
    color: var(--tertiary-color);
}

.post-inner .post {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.post-inner .post .post-thumb img {
    border-radius: 2px;
}

.post-inner .post h5 a {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--title-color);
    font-family: var(--manjari);
}

.post-inner .post h5 a:hover {
    color: var(--primary-color);
}

.post-inner .post .blog-info li {
    position: relative;
    display: inline-block;
    padding-right: 10px;
    margin-right: 10px;
    font-size: 12px;
    line-height: 26px;
    color: var(--paragraph-color);
}

.post-inner .post .blog-info li:before {
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: 15px;
    content: '';
    background-color: var(--paragraph-color);
}

.post-inner .post .blog-info li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.post-inner .post .blog-info li:last-child:before {
    display: none;
}

.post-inner .post .blog-info li a {
    display: inline-block;
    color: var(--paragraph-color);
}

.post-inner .post .blog-info li a:hover {
    color: var(--primary-color);
}

.gallery-block-one {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 126px;
    margin-bottom: 5px;
}

.gallery-block-one .overlay-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scaleX(0);
    transition: .5s;
    cursor: pointer;
    transform-origin: left;
    background: linear-gradient(0deg, rgba(14, 14, 14, 0.6), rgba(14, 14, 14, 0.6));
}

.gallery-block-one .overlay-box a {
    font-size: 34px;
    color: var(--white-color);
}

.gallery-block-one:hover .overlay-box {
    transform: scaleX(1);
}

.event-filter .filter-box {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    padding: 15px;
    margin-bottom: 80px;
    background: var(--white-color);
    box-shadow: -11px 0px 20px rgba(0, 0, 0, 0.05)
}

.event-filter .form-group {
    max-width: 300px;
    width: 100%;
    margin-bottom: 0;
}

.event-filter .form-group button {
    float: right;
}

.event-filter .select-box {
    height: 55px;
    color: var(--sub-title-color);
}

.event-filter .nice-select {
    cursor: pointer;
    font-size: 16px;
    font-weight: normal;
    border: none;
    height: 60px;
    padding: 10px 50px;
    color: var(--sub-title-color);
    background-color: var(--white-color);
}

.event-filter .nice-select:after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--sub-title-color);
    border-right: 2px solid var(--sub-title-color);
    right: 20px;
}

.event-filter .option {
    width: 100%;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    padding: 15px 25px;
    display: block;
    height: 60px;
    font-family: var(--manjari);
    color: var(--sub-title-color);
    background-color: var(--white-color);
}

.event-filter .nice-select.wide .list {
    color: var(--white-color);
    border-radius: 5px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.event-filter .event-block-one {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-filter .event-block-one .image {
    width: 18%;
}

.event-filter .event-block-one .event-content {
    width: 82%;
}

/** End Event Page **/

/** Event Details Page **/
.event-details-left-sidebar {
    margin-bottom: 35px;
}

.event-details-left-sidebar img {
    border-radius: 5px;
    margin-bottom: 60px;
}

.event-details-left-sidebar p {
    font-size: 16px;
    line-height: 29px;
    color: var(--paragraph-color);
}

.event-titme-schedule {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 785px;
    margin-bottom: 27px;
    justify-content: space-between;
    background: var(--white-color);
    box-shadow: -11px 0px 20px rgba(0, 0, 0, 0.05);
}

.event-titme-schedule li {
    padding: 28px 65px;
    font-size: 18px;
    font-weight: 500;
    line-height: 29px;
    cursor: pointer;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    color: var(--sub-title-color);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.event-titme-schedule li:last-child {
    border: none;
}

.event-titme-schedule li.comming-soon,
.event-titme-schedule li:hover {
    color: var(--primary-color);
}

.event-titme-schedule li i {
    margin-top: 5px;
}

.speaker-informmation-box {
    position: relative;
    padding: 30px;
    background-color: #FCFCFC;
    border-radius: 10px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 57px;
    margin-bottom: 55px;
    justify-content: space-between;
}

.speaker-informmation-box .seaker-image {
    width: 45%;
}

.speaker-informmation-box .seaker-image img {
    border-radius: 10px;
}

.speaker-informmation-box .speaker-content {
    width: 55%;
    margin-right: 30px;
}

.speaker-informmation-box .speaker-content .logo {
    margin-bottom: 35px;
}

.speaker-informmation-box .speaker-content h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.speaker-informmation-box .speaker-content h3 a {
    color: var(--title-color);
}

.speaker-informmation-box .speaker-content h3 a:hover {
    color: var(--primary-color);
}

.speaker-informmation-box .speaker-content p {
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    color: var(--paragraph-color);
}

.our-special-gest {
    max-width: 830px;
    width: 100%;
}

.our-special-gest h3 {
    margin-bottom: 20px;
}

.our-special-gest .gest-block {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 43px;
    padding: 15px;
    padding-right: 65px;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 87.5px;
    shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
}

.our-special-gest .gest-block img {
    border-radius: 50%;
}

.our-special-gest .gest-block h5 a {
    color: var(--title-color);
}

.our-special-gest .gest-block span {
    color: var(--sub-title-color);
}

.our-special-gest .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.our-special-gest .owl-dots .owl-dot {
    position: relative;
    margin: 6px;
}

.our-special-gest .owl-dots .owl-dot:before {
    position: absolute;
    width: 11px;
    height: 11px;
    top: -3px;
    left: -3px;
    content: '';
    transition: .5s;
    border-radius: 50%;
    border: 1px solid transparent;
}

.our-special-gest .owl-dots .owl-dot.active:before {
    border-color: var(--primary-color);
}

.our-special-gest .owl-dots .owl-dot span {
    width: 5px;
    height: 5px;
    margin: 0;
    background-color: var(--paragraph-color);
    border-radius: 50%;
}

.our-special-gest .owl-dots .owl-dot.active span {
    background-color: var(--primary-color);
}

.event-details-right-sidebar {
    background: var(--white-color);
    box-shadow: -11px 0px 20px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.sidebar-widget.contact-details {
    padding: 40px;
}

.contact-info-list li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
    color: var(--paragraph-color);
    font-family: var(--poppins);
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-list li a {
    display: inline-block;
    color: var(--paragraph-color);
}

.contact-info-list li a:hover {
    color: var(--primary-color);
}

.free-booking .form-group {
    margin-bottom: 20px;
}

.free-booking input,
.free-booking textarea {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    height: 60px;
    padding: 15px 25px;
    font-family: var(--manjari);
    color: rgba(0, 0, 0, 0.3);
    background: #F7F7F7;
    border-radius: 5px;
}

.free-booking textarea {
    height: 187px;
}

/** Contact Form**/
.contact-section {
    padding-bottom: 120px;
}

.contact-section span {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 29px;
    display: block;
    margin-bottom: 17px;
    letter-spacing: 0.1em;
    font-family: var(--poppins);
    text-transform: uppercase;
    color: var(--sub-title-color);
}

.contact-section h1 {
    font-weight: 700;
    margin-bottom: 17px;
    color: var(--title-color);
}

.contact-section p {
    line-height: 29px;
    color: var(--paragraph-color);
}

.contact-info-block {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.contact-info-block .icon {
    width: 100px;
    height: 100px;
    font-size: 40px;
    text-align: center;
    line-height: 110px;
    border-radius: 50%;
    margin-right: 20px;
    background: #FFFFFF;
    color: var(--primary-color);
    box-shadow: -4px 4px 10px rgba(109, 109, 109, 0.1);
}

.contact-info-block .info-box h4 {
    font-size: 24px;
    line-height: 42px;
    color: #585858;
}

.contact-info-block .info-box a {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--poppins);
    color: var(--paragraph-color);
}

.contact-info-block .info-box a:hover {
    color: var(--primary-color);
}

.contact-form-area {
    margin-top: 45px;
}

.contact-form-area .form-group {
    margin-bottom: 20px;
}

.contact-form-area input,
.contact-form-area textarea {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    height: 65px;
    padding: 15px 25px;
    font-family: var(--manjari);
    color: rgba(3, 43, 102, 0.3);
    background: #F7F7F7;
    border-radius: 5px;
}

.contact-form-area textarea {
    height: 235px;
}

.contact-form-area .checkbox-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-bottom: 30px;
}

.contact-form-area input[type="checkbox"] {
    width: 15px;
    height: 15px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 26px;
    font-family: var(--poppins);
    color: var(--paragraph-color);
}

.contact-form-area label {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 26px;
    font-family: var(--poppins);
    color: var(--paragraph-color);
}






/* formacaoes */









/* Estilos para a seção de detalhes */




.department-details__title-two {
    font-size: 24px;
    color: #333;
    margin: 40px 0 20px;
}

.department-details__right {
    position: sticky;
    top: 30px;
    gap: 10px;
}

.department-details__services-box {
    background: #f8f9fa;

    overflow: hidden;
    margin-bottom: 30px;
}

.department-details__services-list li {

    border-bottom: 1px solid #e9ecef;
}

.department-details__services-list li:last-child {
    border-bottom: none;
}

.department-details__services-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;

}

.department-details__services-list li a:hover,
.department-details__services-list li a.active {

    color: #00AA55;
    border-radius: none;
    border: 1px solid #ffffff;
    transition-delay: 100ms;
    background-color: #F3F3F3;

}

.department-details__services-list li a span {
    transition: transform 0.3s ease;
}

.department-details__services-list li a:hover span,
.department-details__services-list li a.active span {
    transform: translateX(5px);
}




.department-details__services-list li a {
    position: relative;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(120px);
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
}

/* Para ativar a animação quando a página carregar */
.department-details__services-list li a.loaded {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Estilo adicional para os ícones */
.department-details__services-list li a span {
    float: right;
    transition: transform 0.3s ease;
}

.department-details__services-list li a:hover span,
.department-details__services-list li a.active span {
    transform: translateX(5px);
}




/* Animações para transição de conteúdo */
.course-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.course-content.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.course-content.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 991px) {
    .department-details__left {
        padding-right: 0;
        margin-bottom: 50px;
    }
}