* {
    margin: 0px;
    padding: 0px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    outline: none;
    font-size: 100%;
}

:root {
    --theme-color: #a02e5c;
    --theme-color-two: #ffbf00;
    --theme-color-three: #d40032;
    --theme-color-four: #02c06d;
    --theme-color-five: #18bec2;
    --dark-color: #302c51;
    --dark-color-two: #302c51;
    --rubik: 'Rubik', sans-serif;
    --prata: 'Prata', serif;
    --anim-menu-btn-size: 30px;
    --anim-menu-btn-icon-size: 28px;
    --anim-menu-btn-icon-stroke: 2px;
    --fs-search-btn-size: 3em;
    --fs-search-border-bottom-width: 2px;
}

body {
    font-size: 15px;
    line-height: 28px;
    color: rgb(48, 44, 81);
    font-weight: 400;
    background: rgb(255, 255, 255);
    -webkit-font-smoothing: antialiased;
    font-family: var(--rubik);
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: var(--theme-color);
}

a:hover, a:focus, a:visited {
    text-decoration: none;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    position: relative;
    font-weight: normal;
    margin: 0px;
    background: none;
    line-height: 1.2em;
    font-family: var(--rubik);
}

textarea {
    overflow: hidden;
}

button {
    cursor: pointer;
    outline: none !important;
}

.text {
    font-size: 15px;
    line-height: 28px;
    color: rgb(133, 133, 133);
    font-weight: 400;
    margin: 0px;
}

::-webkit-input-placeholder {
    color: inherit;
}

.auto-container {
    position: static;
    max-width: 1300px;
    padding: 0px 20px;
    margin: 0px auto;
}

.small-container {
    position: relative;
    max-width: 1050px;
    padding: 0px 15px;
    margin: 0px auto;
}

.page-wrapper {
    position: relative;
    margin: 0px auto;
    width: 100%;
    min-width: 300px;
    z-index: 9;
}

.owl-carousel .owl-item img {
    width: auto;
}

ul, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.mx-90 {
    margin: 0px 90px;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline-offset: 0px;
    outline: none !important;
}

.btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus, .show > .btn-light.dropdown-toggle:focus, .btn-light.focus, .btn-light:focus {
    box-shadow: none;
}

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show > .btn-light.dropdown-toggle, .btn-light:hover {
    color: rgb(33, 37, 41);
    background-color: transparent;
    border-color: transparent;
}

.bootstrap-select .dropdown-menu li a.active {
    background: rgb(2, 192, 109);
    color: rgb(255, 255, 255);
}

.bootstrap-select .dropdown-menu li a.active span {
    color: rgb(255, 255, 255);
}

@media only screen and (min-width: 1200px) {
    .pl-lg-50 {
        padding-left: 50px;
    }
}

.text-primary {
    color: rgb(160, 46, 92) !important;
}

.theme-btn {
    display: inline-block;
    transition: 0.3s;
}

.btn-style-one {
    position: relative;
    line-height: 18px;
    background: none;
    color: rgb(160, 46, 92);
    font-size: 13px;
    font-weight: 500;
    border-radius: 29px;
    padding: 15px 48px;
    border: 2px solid rgb(161, 30, 47);
    text-transform: uppercase;
    overflow: hidden;
}

.btn-style-one::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.7;
    background-color: rgb(160, 46, 92);
    transition: 0.3s;
    transform: scaleY(0);
    transform-origin: left top;
}

.btn-style-one::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgb(160, 46, 92);
    transition: 0.3s;
    transform: scaleY(0);
    transform-origin: left top;
}

.btn-style-one span {
    position: relative;
    z-index: 10;
}

.btn-style-one:hover::before {
    transform: scaleY(1);
}

.btn-style-one:hover::after {
    transition-delay: 0.2s;
    transform: scaleY(1);
}

.btn-style-one:hover {
    color: rgb(255, 255, 255);
}

.btn-style-two {
    position: relative;
    line-height: 24px;
    color: rgb(255, 255, 255);
    font-size: 18px;
    border-radius: 6px;
    padding: 5px 20px;
    text-transform: capitalize;
    overflow: hidden;
    box-shadow: rgba(237, 98, 33, 0.2) 0px 20px 20px 0px;
    width: 100%;
    background: linear-gradient(135deg, rgb(130, 40, 75) 0%, rgb(167, 48, 96) 100%) !important;
}

.btn-style-two::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: 0.3s;
    background: rgb(48, 44, 81);
    transform: scaleX(0);
    transform-origin: left top;
}

.btn-style-two span {
    position: relative;
    z-index: 10;
}

.btn-style-two i {
    position: relative;
    margin-right: 10px;
    z-index: 1;
    font-size: 14px;
}

.btn-style-two:hover::before {
    transform: scaleX(1);
}

.btn-style-two:hover::after {
    transition-delay: 0.2s;
    transform: scaleY(1);
}

.btn-style-two:hover {
    color: rgb(255, 255, 255);
}




.list-style-one {
    position: relative;
}

.list-style-one li {
    position: relative;
    font-size: 16px;
    color: rgb(145, 145, 145);
    line-height: 26px;
    font-weight: 400;
    padding-left: 30px;
    margin-bottom: 15px;
}

.list-style-one li a {
    color: rgb(145, 145, 145);
    transition: 300ms;
}

.list-style-one li::before {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 14px;
    line-height: 26px;
    color: rgb(225, 230, 227);
    content: "";
    font-family: Fontawesome;
}

.list-style-one li a:hover {
    color: var(--theme-color);
    text-shadow: 0 0 1px var(--theme-color);
}

.list-style-two {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.list-style-two li {
    position: relative;
    font-size: 14px;
    line-height: 25px;
    color: rgb(119, 119, 119);
    font-weight: 400;
    padding-left: 20px;
}

.list-style-two li::before {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 14px;
    line-height: 25px;
    color: rgb(78, 224, 176);
    font-weight: 400;
    font-family: Fontawesome;
    content: "";
}

.list-style-three {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.list-style-three li {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    color: rgb(51, 51, 51);
    font-weight: 400;
    padding-left: 25px;
    margin-bottom: 10px;
}

.list-style-three li a {
    color: rgb(51, 51, 51);
}

.list-style-three li::before {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 14px;
    line-height: 24px;
    color: rgb(254, 102, 153);
    font-weight: 300;
    font-family: Fontawesome;
    content: "";
}

.theme-color {
    color: var(--theme-color);
}

.theme-color-two {
    color: var(--theme-color-two);
}

.theme-color-three {
    color: var(--theme-color-three);
}

.theme-color-four {
    color: var(--theme-color-four);
}

.theme-color-five {
    color: var(--theme-color-five);
}

.theme-bg {
    background: linear-gradient(135deg, rgb(130, 40, 75) 0%, rgb(167, 48, 96) 100%) !important;
}

.dark-bg {
    background-color: var(--dark-color);
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../images/icons/preloader.svg");
}

.preloader.style-two {
    background-image: url("../images/icons/preloader-2.svg");
}

.preloader.style-three {
    background-image: url("../images/icons/preloader-3.svg");
}

.preloader.style-four {
    background-image: url("../images/icons/preloader-4.svg");
}

.preloader.style-five {
    background-image: url("../images/icons/preloader-5.svg");
}

.loader-wrap {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

.loader-wrap .layer-one {
    position: absolute;
    left: 0%;
    top: 0px;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-two {
    position: absolute;
    left: 33.3333%;
    top: 0px;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-three {
    position: absolute;
    left: 66.6666%;
    top: 0px;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer .overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgb(34, 34, 34);
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.owl-dots-none .owl-dots {
    display: none;
}

.owl-dot-style-one .owl-dots {
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.owl-dot-style-one .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0px 5px;
}

.owl-dot-style-one .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 8px;
    height: 8px;
    border: 2px solid rgb(220, 217, 214);
    border-radius: 50%;
    transition: 0.3s;
}

.owl-dot-style-one .owl-dots .owl-dot.active span, .owl-dot-style-one .owl-dots .owl-dot:hover span {
    border-color: var(--theme-color);
}

.owl-dot-style-two .owl-dots {
    position: relative;
    text-align: center;
    line-height: 15px;
}

.owl-dot-style-two .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0px 5px;
}

.owl-dot-style-two .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid rgb(232, 232, 232);
    transition: 0.3s;
}

.owl-dot-style-two .owl-dots .owl-dot span::before {
    position: absolute;
    content: "";
    background: rgb(232, 232, 232);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: 3px;
    top: 3px;
}

.owl-dot-style-two .owl-dots .owl-dot.active span, .owl-dot-style-two .owl-dots .owl-dot:hover span {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.owl-dot-style-three .owl-dots {
    position: relative;
    text-align: center;
    line-height: 15px;
}

.owl-dot-style-three .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0px 7px;
}

.owl-dot-style-three .owl-dots .owl-dot span {
    position: relative;
    width: 12px;
    height: 12px;
    margin: 0px;
    display: inline-block;
    border: 2px solid rgb(215, 214, 212);
    transition: 500ms;
}

.owl-dot-style-three .owl-dots .owl-dot.active span {
    border-color: var(--theme-color);
    width: 36px;
}

.owl-nav-none .owl-nav {
    display: none;
}

.owl-nav-style-one .owl-nav {
    margin: 80px 0px 0px;
    padding: 0px;
    text-align: center;
}

.owl-nav-style-one .owl-nav .owl-next, .owl-nav-style-one .owl-nav .owl-prev {
    position: relative;
    border-radius: 50%;
    color: rgb(255, 255, 255);
    font-size: 14px;
    text-align: center;
    background-color: rgb(64, 58, 180);
    box-shadow: rgba(194, 191, 255, 0.65) 0px 11px 21.25px 3.75px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0px 8px;
    display: inline-block;
    transition: 300ms;
}

.owl-nav-style-one .owl-nav .owl-prev {
    left: 0px;
}

.owl-nav-style-one .owl-nav .owl-next {
    right: 0px;
}

.owl-nav-style-one .owl-nav .owl-next:hover, .owl-nav-style-one .owl-nav .owl-prev:hover {
    background-color: var(--theme-color);
    box-shadow: rgba(167, 238, 227, 0.65) 0px 11px 21.25px 3.75px;
}

.owl-nav-style-two .owl-nav {
    padding: 0px;
    text-align: center;
    bottom: 100%;
    top: inherit;
    position: absolute;
    left: inherit;
    right: 0px;
}

.owl-nav-style-two .owl-nav .owl-next, .owl-nav-style-two .owl-nav .owl-prev {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0px 5px 30px;
    display: inline-block;
    line-height: 60px;
    text-align: center;
    font-size: 24px;
    color: rgb(148, 148, 148);
    background: rgb(255, 255, 255);
    transition: 300ms;
}

.owl-nav-style-two .carousel-outer:hover .owl-nav .owl-next, .owl-nav-style-two .carousel-outer:hover .owl-nav .owl-prev {
    opacity: 1;
    visibility: visible;
}

.owl-nav-style-two .owl-nav .owl-prev {
    left: 0px;
}

.owl-nav-style-two .owl-nav .owl-next {
    right: 0px;
}

.owl-nav-style-two .owl-nav .owl-next:hover, .owl-nav-style-two .owl-nav .owl-prev:hover {
    color: var(--theme-color);
}

.owl-nav-style-three .owl-nav {
    padding: 0px;
    top: 50%;
    margin-top: -40px;
    position: absolute;
    left: 0px;
    right: 0px;
    z-index: -1;
}

.owl-nav-style-three .owl-nav .owl-next, .owl-nav-style-three .owl-nav .owl-prev {
    position: relative;
    width: 60px;
    height: 60px;
    line-height: 56px;
    background: transparent;
    text-align: center;
    font-size: 28px;
    color: rgb(220, 217, 214);
    transition: 300ms;
    border: 2px solid rgb(220, 217, 214);
    border-radius: 50%;
}

.owl-nav-style-three .carousel-outer:hover .owl-nav .owl-next, .owl-nav-style-three .carousel-outer:hover .owl-nav .owl-prev {
    opacity: 1;
    visibility: visible;
}

.owl-nav-style-three .owl-nav .owl-prev {
    left: -108px;
    float: left;
}

.owl-nav-style-three .owl-nav .owl-next {
    right: -108px;
    float: right;
}

.owl-nav-style-three .owl-nav .owl-next:hover, .owl-nav-style-three .owl-nav .owl-prev:hover {
    color: var(--theme-color);
    border-color: var(--theme-color);
}

.owl-nav-style-four .owl-nav {
    padding: 0px;
    top: 50%;
    position: absolute;
    left: 0px;
    right: 0px;
}

.owl-nav-style-four .owl-nav .owl-next, .owl-nav-style-four .owl-nav .owl-prev {
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 48px;
    text-align: center;
    font-size: 20px;
    color: rgb(178, 178, 178);
    border-radius: 50%;
    transition: 300ms;
}

.owl-nav-style-four .carousel-outer:hover .owl-nav .owl-next, .owl-nav-style-four .carousel-outer:hover .owl-nav .owl-prev {
    opacity: 1;
    visibility: visible;
}

.owl-nav-style-four .owl-nav .owl-prev {
    left: 45px;
    top: 13px;
    float: left;
}

.owl-nav-style-four .owl-nav .owl-next {
    right: 45px;
    top: 13px;
    float: right;
}

.owl-nav-style-four .owl-nav .owl-next:hover, .owl-nav-style-four .owl-nav .owl-prev:hover {
    color: var(--theme-color);
    border-color: var(--theme-color);
}

.owl-nav-style-five .owl-nav {
    margin: 40px 0px 0px;
    padding: 0px;
    text-align: center;
}

.owl-nav-style-five .owl-nav .owl-next, .owl-nav-style-five .owl-nav .owl-prev {
    position: relative;
    color: rgb(34, 34, 34);
    font-size: 14px;
    text-align: center;
    line-height: 26px;
    margin: 0px 15px;
    display: inline-block;
    transition: 300ms;
}

.owl-nav-style-five .owl-nav .owl-prev {
    left: 0px;
}

.owl-nav-style-five .owl-nav .owl-next {
    right: 0px;
}

.owl-nav-style-five .owl-nav .owl-next::before {
    position: absolute;
    content: "";
    height: 26px;
    width: 2px;
    background: rgb(156, 172, 216);
    top: 0px;
    right: 26px;
}

.owl-nav-style-five .owl-nav .owl-next:hover, .owl-nav-style-five .owl-nav .owl-prev:hover {
    color: var(--theme-color);
}

.scroll-to-top {
    width: 76px;
    height: 50px;
    position: absolute;
    bottom: 38px;
    right: 0px;
    line-height: 50px;
    font-size: 16px;
    z-index: 99;
    display: none;
    color: rgb(255, 255, 255);
    text-align: center;
    cursor: pointer;
    background: var(--theme-color);
    animation: 2s ease 0s infinite normal none running pulse;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 11px 21.25px 3.75px;
    border-bottom-left-radius: 25px;
    border-top-left-radius: 25px;
}

.scroll-to-top::after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}



.main-header {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    background: rgb(255, 255, 255);
}

.top-bar {
    position: relative;
    padding: 0px;
    z-index: 999;
}

.top-bar .wrapper-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.top-bar .left-content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

.top-bar .right-content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

.top-bar .language-switcher {
    position: relative;
}

.top-bar .language-switcher::before {
    position: absolute;
    content: "";
    background: rgb(255, 142, 89);
    height: 20px;
    width: 1px;
    top: 4px;
    right: 17px;
}

.top-bar .language-switcher .ui-selectmenu-button.ui-button {
    min-width: auto;
    border: 0px;
    padding: 11.5px 35px 11.5px 0px;
}

.top-bar .language-switcher .ui-selectmenu-text::after {
    color: rgb(255, 255, 255);
    font-size: 15px;
    right: -16px;
}

.top-bar .text {
    position: relative;
    color: rgb(255, 255, 255);
}

.top-bar .text a {
    color: rgb(255, 255, 255);
}

.contact-info {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

.contact-info li {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid rgb(255, 255, 255);
}

.contact-info li span {
    color: rgb(255, 255, 255);
    margin-right: 8px;
    position: relative;
    top: 2px;
}

.contact-info li a {
    color: rgb(255, 255, 255);
    font-size: 13px;
}

.social-icon-one {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

.social-icon-one li + li {
    margin-left: 10px;
}

.social-icon-one li a {
    position: relative;
    color: var(--dark-color);
    background: rgb(255, 255, 255);
    height: 22px;
    line-height: 23px;
    width: 22px;
    text-align: center;
    font-size: 13px;
    display: inline-block;
    border-radius: 50%;
    transition: 0.5s;
}

.social-icon-one li a:hover {
    color: var(--theme-color);
    background: rgb(255, 255, 255);
}

.social-icon-two {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

.social-icon-two li + li {
    margin-left: 10px;
    border-left: 1px solid rgb(237, 237, 237);
    padding-left: 10px;
}

.social-icon-two li a {
    position: relative;
    color: rgb(124, 126, 132);
    background: rgb(255, 255, 255);
    height: 22px;
    line-height: 23px;
    width: 22px;
    text-align: center;
    font-size: 13px;
    display: inline-block;
    border-radius: 50%;
    transition: 0.5s;
}

.social-icon-two li a:hover {
    color: var(--theme-color);
    background: rgb(255, 255, 255);
}

.social-icon-three {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

.social-icon-three li + li {
    margin-left: 10px;
}

.social-icon-three li a {
    position: relative;
    color: rgb(155, 153, 173);
    border: 1px solid rgb(66, 63, 95);
    height: 52px;
    line-height: 53px;
    width: 52px;
    text-align: center;
    font-size: 15px;
    display: inline-block;
    border-radius: 50%;
    transition: 0.5s;
}

.social-icon-three li a:hover {
    background: rgb(48, 44, 81);
    color: rgb(255, 255, 255);
    border-color: rgb(48, 44, 81);
}

.top-bar .location-area .bootstrap-select {
    width: 180px !important;
}

.top-bar .right-content .location-area .text {
    color: rgb(134, 134, 134);
}

.top-bar .right-content .location-area .active .text {
    color: rgb(255, 255, 255);
}

.top-bar .location-area button {
    position: relative;
    background: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
    border-radius: 4px 4px 0px 0px;
    color: var(--dark-color);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 10px 10px 50px;
    top: 4px;
}

.top-bar .location-area .dropdown-toggle .filter-option::after {
    position: absolute;
    content: "";
    font-size: 17px;
    font-family: FontAwesome;
    color: rgb(48, 44, 81);
    right: 15px;
    top: 6px;
}

.top-bar .location-area .dropdown-toggle .filter-option::before {
    position: absolute;
    content: "";
    font-size: 30px;
    font-family: Flaticon;
    color: rgb(2, 192, 109);
    left: 9px;
    top: -2px;
}

.top-bar .btn-light:not(:disabled):not(.disabled).active, .top-bar .btn-light:not(:disabled):not(.disabled):active, .top-bar .show > .btn-light.dropdown-toggle, .top-bar .btn-light:hover {
    background: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
    color: var(--dark-color);
    outline: none;
}

.main-header .header-upper {
    position: relative;
    z-index: 99;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px 0px;
}

.main-header .header-upper .wrapper-box {
    display: flex;
    -webkit-box-align: center;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    align-items: center;
}

.main-header .header-upper .logo-box {
    position: relative;
}

.main-header .logo {
    position: relative;
    text-align: center;
    margin-top: 2px;
}

.main-header .logo img {
    position: relative;
    display: inline-block;
    max-width: 100%;
    width: 550px;
    background: white;
    padding: 2px;
    border-radius: 6px;
}

.main-header .nav-outer {
    position: relative;
    padding: 0px;
    margin: 0px 25px 0px 0px;
}

.main-header .header-upper .nav-outer::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 38px;
    background: rgb(234, 234, 234);
    right: -12px;
    top: 42%;
    transform: translateY(-50%);
}

.nav-outer .mobile-nav-toggler {
    position: relative;
    font-size: 30px;
    line-height: 40px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    padding: 25px 30px;
    right: 0px;
    background-color: rgb(28, 31, 38);
}

.main-header .nav-outer .nav-inner {
    position: relative;
    background-color: rgb(255, 255, 255);
}

.main-header .nav-outer .nav-inner.close-menu {
    pointer-events: none;
}

.main-header .main-box {
    position: relative;
    float: left;
    left: 0px;
    top: 0px;
    transition: 300ms;
}

.main-menu {
    position: relative;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
}

.main-menu .navigation > li {
    position: relative;
    float: left;
    padding: 2px 0px;
    margin-right: 25px;
    transition: 300ms;
}

.sticky-header .main-menu .navigation > li.current::after, .sticky-header .main-menu .navigation > li.current::before {
    transform: translateY(9px);
}

.main-menu .navigation > li > a {
    position: relative;
    display: block;
    text-align: center;
    padding: 0px;
    font-size: 15px;
    font-weight: 500;
    color: rgb(45, 32, 95);
    transition: 0.3s;
}

.main-menu .navigation > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: rgb(230, 57, 70);
    transition: 0.3s;
    transform: translateX(-50%);
}

.main-menu .navigation > li:hover > a::after {
    width: 100%;
}

.main-menu .navigation > li:hover > a, .main-menu .navigation > li.current > a {
    color: rgb(220, 53, 69);
}

.main-menu .navigation > li > ul {
    position: absolute;
    left: 0px;
    top: 120%;
    width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    padding: 10px 0px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
    transition: 0.3s;
}

.main-menu .navigation > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.main-menu .navigation > li > ul > li {
    padding: 0px;
}

.main-menu .navigation > li > ul > li > a {
    padding: 8px 15px;
    border-radius: 6px;
    transition: 0.25s;
    color: rgb(4, 7, 53);
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    display: flex;
}

.main-menu .navigation > li > ul > li > a:hover {
    background: rgb(248, 249, 250);
    color: rgb(220, 53, 69);
    padding-left: 20px;
}

.main-menu .navigation > li > ul > li:not(:last-child) {
    border-bottom: 1px dashed rgb(228, 228, 228);
}

.main-menu .navigation > li > ul > li > ul > li > ul > li > a:hover::before, .main-menu .navigation > li > ul > li > a:hover::before {
    opacity: 1;
}

.main-menu .navigation > li > ul > li.dropdown > a::after {
    font-family: FontAwesome;
    content: "";
    position: absolute;
    right: 0px;
    top: 9px;
    width: 10px;
    display: block;
    line-height: 19px;
    font-size: 16px;
    color: rgb(255, 255, 255);
    font-weight: normal;
    text-align: center;
    z-index: 5;
}

.main-menu .navigation > li > ul > li > ul {
    position: absolute;
    left: 110%;
    top: 0px;
    width: 258px;
    z-index: 100;
    opacity: 1;
    padding: 20px 0px 30px;
    background: rgb(255, 255, 255);
    border-top: 1px solid rgb(255, 255, 255);
    transition: 200ms linear;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 20px;
    border-radius: 4px;
}

.main-menu .navigation > li > ul > li > ul > li > ul > li {
    position: relative;
    width: 100%;
    padding: 0px;
    list-style: disc;
    margin-left: 40px;
}

.main-menu .navigation > li > ul > li > ul > li > ul > li > a {
    border-radius: 6px;
    transition: 0.25s;
    color: rgb(4, 7, 53);
    display: block;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
}

.main-menu .navigation > li > ul > li > ul > li > ul > li > a:hover {
    padding-left: 3px;
    color: rgb(220, 53, 69);
}

.main-menu .navigation > li > ul > li > ul > li:last-child > a {
    border-bottom: 0px;
}

.main-menu .navigation > li.dropdown:hover > ul {
    transition: 300ms;
    visibility: visible;
    opacity: 1;
    top: 100%;
    margin-top: 5px;
}

.main-menu .navigation > li > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
    left: 100%;
    margin-left: 5px;
    transition: 500ms;
}

.main-menu .navigation > li > ul > li.dropdown > ul.from-right {
    left: auto;
    right: 110%;
}

.main-menu .navigation > li > ul > li.dropdown:hover > ul.from-right {
    left: auto;
    right: 100%;
}

.main-menu .navigation > li > ul > li > ul {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 260px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 10px 0px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

.main-menu .navigation > li > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.main-menu .navigation > li > ul > li > ul > li {
    padding: 0px 20px;
}

.main-menu .navigation > li > ul > li > ul > li > a {
    padding: 8px 15px;
    border-radius: 6px;
    transition: 0.25s;
    color: rgb(4, 7, 53);
    display: block;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover {
    color: rgb(230, 57, 70);
    padding-left: 20px;
}

.main-menu .navigation > li > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px dashed rgb(228, 228, 228);
}

.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 20px;
    line-height: 35px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    z-index: 5;
    display: none;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 0px 20px;
    background: rgb(255, 255, 255);
}

.mobile-menu {
    position: relative;
    right: 0px;
    bottom: 0px;
    max-width: 100%;
    z-index: 9999;
}

.mobile-menu .logo {
    text-align: left;
    padding-left: 10px;
}

.mobile-menu .menu-box {
    position: relative;
    width: 100%;
    max-height: 100%;
    background: rgb(255, 255, 255);
    padding: 20px 10px;
}

.mobile-menu .navigation {
    position: relative;
    width: 100%;
    list-style: none;
    padding: 20px 10px 0px;
}

.mobile-menu .main-menu .navigation li {
    position: relative;
    display: block;
    float: none;
    text-align: left;
    padding: 0px;
    margin-right: 0px;
}

.mobile-menu .main-menu .navigation > li.current::before {
    display: none;
}

.mobile-menu .main-menu .navigation > li.current::after {
    display: none;
}

.mobile-menu .navigation li > a::before {
    display: none;
}

.mobile-menu .main-menu .navigation > li > ul > li:hover > a {
    padding-left: 0px;
    font-weight: 400;
}

.mobile-menu .main-menu .navigation > li.dropdown:hover > ul {
    margin: 0px;
}

.mobile-menu .navigation li > ul > li:last-child {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.mobile-menu .navigation li > ul > li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0);
}

.mobile-menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 8px 50px 8px 0px;
    font-size: 14px;
    color: rgb(133, 133, 133);
    text-transform: uppercase;
    font-weight: 500;
    text-align: left;
}

.mobile-menu .navigation li > a::before {
    position: absolute;
    content: "";
    background: rgb(47, 51, 59);
    height: 6px;
    width: 6px;
    left: 30px;
    top: 23px;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 15px;
    top: 0px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    color: rgb(106, 109, 115);
    cursor: pointer;
    z-index: 5;
    display: block !important;
}

.mobile-menu .navigation li.dropdown .dropdown-btn::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 1px;
    width: 1px;
    height: 24px;
}

.mobile-menu .navigation li > ul, .mobile-menu .navigation li > ul > li > ul {
    display: none;
    position: relative;
    width: 100%;
    left: 0px;
    padding-left: 20px;
    transition: all !important;
}

.mobile-menu .main-menu .navigation > li > ul > li:hover > ul {
    left: 0px;
    margin-left: 0px;
}

.mobile-menu .main-menu .navigation > li > ul > li > ul > li > a:hover {
    font-weight: 400;
    padding-left: 0px;
}

.navbar-toggle {
    position: absolute;
    right: 10px;
    top: -33px;
    background: transparent;
    font-size: 33px;
    z-index: 9;
    color: rgb(0, 0, 0);
    font-weight: 700;
}

.mobile-menu .main-menu .navbar-collapse {
    padding: 0px;
    max-height: 300px;
    overflow-x: hidden;
}

.nav-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 99999;
    width: 100%;
    display: none;
    background: rgba(20, 20, 20, 0.7);
    overflow: hidden;
    transform: translate3d(0px, 0px, 0px);
    cursor: none;
}

.main-header .mobile-menu .search-box-outer {
    position: absolute;
    right: 85px;
    top: 13px;
    left: auto;
}

.navbar-btn-wrap {
    position: relative;
    text-align: center;
}

.anim-menu-btn {
    width: var(--anim-menu-btn-size);
    height: var(--anim-menu-btn-size);
    background: transparent;
    color: var(--dark-color);
    position: relative;
}

.anim-menu-btn::before {
    position: absolute;
    content: "MENU";
    font-size: 12px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    top: 8px;
    left: -60px;
    letter-spacing: 5px;
    display: none;
}

.anim-menu-btn__icon {
    position: relative;
    display: block;
    font-size: var(--anim-menu-btn-icon-size);
    width: 1em;
    height: var(--anim-menu-btn-icon-stroke);
    color: var(--color-contrast-high);
    background-image: linear-gradient(currentcolor, currentcolor);
    background-repeat: no-repeat;
    transform: scale(1);
}

.anim-menu-btn__icon::before, .anim-menu-btn__icon::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-image: inherit;
    border-radius: inherit;
}

.anim-menu-btn__icon--close {
    background-size: 100% 100%;
    will-change: transform, background-size;
    transition: transform 0.2s, background-size 0.2s, -webkit-transform 0.2s;
}

.anim-menu-btn:active .anim-menu-btn__icon--close {
    transform: scale(0.9);
}

.anim-menu-btn__icon--close::before, .anim-menu-btn__icon--close::after {
    will-change: inherit;
    transition: inherit;
}

.anim-menu-btn__icon--close::before {
    transform: translateY(-0.25em) rotate(0deg);
}

.anim-menu-btn__icon--close::after {
    transform: translateY(0.25em) rotate(0deg);
}

.anim-menu-btn--state-b .anim-menu-btn__icon--close {
    background-size: 0% 100%;
}

.anim-menu-btn--state-b .anim-menu-btn__icon--close::before {
    transform: translateY(0px) rotate(45deg);
}

.anim-menu-btn--state-b .anim-menu-btn__icon--close::after {
    transform: translateY(0px) rotate(-45deg);
}

.main-header .header-column {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.main-header .search-box-outer {
    position: relative;
    left: 3px;
    display: inline-block;
    padding: 6px 0px;
    vertical-align: middle;
}

.main-header .search-box-btn {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    color: rgb(34, 34, 34);
    cursor: pointer;
    display: inline-block;
    padding: 7px 0px 6px;
    background: transparent;
    border-radius: 50px 0px 0px 50px;
}

.main-header .dropdown-toggle::after {
    display: none;
}

.main-header .header-upper.dark .search-box-btn {
    color: rgb(255, 255, 255);
}

.main-header .search-box-outer .dropdown-menu {
    padding: 0px;
    width: 330px;
    background: rgb(255, 255, 255);
    right: 0px;
    border-color: transparent;
    border-radius: 3px;
    box-shadow: rgba(72, 73, 121, 0.15) 7px 5px 30px 0px;
    transition: 0.5s;
    display: block;
    opacity: 0;
    visibility: hidden;
    top: 63px !important;
    left: auto !important;
    transform: translate3d(0px, 0px, 0px) scale3d(0.8, 0.8, 0.8) !important;
}

.main-header .header-bottom .search-box-outer .dropdown-menu {
    top: 48px !important;
}

.main-header .search-box-outer .show .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: scale3d(1, 1, 1) !important;
}

.main-header .search-panel .form-container {
    padding: 30px;
}

.main-header .search-panel .form-group {
    position: relative;
    margin: 0px;
}

.main-header .search-panel input[type="text"], .main-header .search-panel input[type="search"], .main-header .search-panel input[type="password"], .main-header .search-panel select {
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 9px 50px 9px 15px;
    height: 50px;
    border: 1px solid rgb(243, 245, 254);
    border-radius: 3px;
    background: rgb(243, 245, 254);
}

.main-header .search-panel input:focus, .main-header .search-panel select:focus {
    border-color: rgb(243, 245, 254);
}

.main-header .search-panel .search-btn {
    position: absolute;
    right: 1px;
    top: 1px;
    width: 50px;
    height: 48px;
    text-align: center;
    color: rgb(17, 17, 17);
    background: rgb(243, 245, 254);
    font-size: 14px;
    border-radius: 0px 3px 3px 0px;
    cursor: pointer;
}

.sticky-header {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 0px;
    z-index: 0;
    background: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(241, 241, 241);
    transition: 300ms;
}

.sticky-header .wrapper-box {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.sticky-header .logo {
    padding: 10px 0px;
}

.fixed-header .sticky-header {
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
    background: rgb(255, 255, 255) !important;
}

.main-header .sticky-header .main-menu .navigation > li {
    margin: 0px;
    padding: 0px;
}

.main-header .sticky-header .main-menu .navigation > li > a {
    padding: 13px 10px;
    line-height: 30px;
    min-height: 0px;
    background: none;
    border: 0px;
    margin-right: 0px;
    text-transform: capitalize;
    transition: 300ms;
}

.main-header .sticky-header .main-menu .navigation > li:hover > a, .main-header .sticky-header .main-menu .navigation > li.current > a, .main-header .sticky-header .main-menu .navigation > li.current-menu-item > a {
    opacity: 1;
    color: var(--theme-color);
}

.main-header .header-upper .option-wrapper {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.main-header .header-upper .option-wrapper > div {
    margin-left: 6px;
}

.main-header .header-upper .link-btn .btn-style-one {
    position: relative;
    padding: 6px 35px;
    border-radius: 20px;
}

.main-header .cart-btn .cart-icon {
    position: relative;
    color: var(--dark-color);
    font-size: 21px;
    margin-right: 10px;
}

.main-header .cart-btn .item-count {
    position: absolute;
    right: -13px;
    top: -4px;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    color: rgb(255, 255, 255);
    background: var(--theme-color);
}

.main-header .navbar-btn-wrap button {
    font-size: 30px;
}

.make-payment {
    position: absolute;
    right: 0px;
    top: 100%;
    padding: 15px 20px;
    background: rgb(212, 0, 50);
}

.make-payment form {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-wrap: wrap;
}

.make-payment .left-content {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    background: rgb(255, 255, 255);
    border-radius: 4px;
    margin-right: 10px;
}

.make-payment button {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    background: rgb(255, 255, 255);
    color: var(--theme-color-three);
    padding: 1px 23px;
    text-transform: uppercase;
    border-radius: 4px;
}

.make-payment .ui-selectmenu-button.ui-button {
    border: 0px;
    padding: 6px 10px;
}

.make-payment .ui-selectmenu-text {
    color: rgb(30, 30, 30);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--rubik);
}

.make-payment .ui-selectmenu-text::after {
    font-size: 14px;
    top: 2px;
    right: -11px;
}

.main-header.style-two {
    position: absolute;
    background: transparent;
}

.main-header .header-upper.style-two {
    background: transparent;
}

.top-bar.style-two {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar.style-two .contact-info li {
    border-color: rgba(255, 255, 255, 0.12);
}

.top-bar.style-two .language-switcher::before {
    opacity: 0;
}

.top-bar.style-two .languages {
    padding-right: 0px;
}

.top-bar.style-two .languages::after {
    right: 0px;
}

.main-header .header-upper.style-two .nav-outer::before {
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.header-upper.style-two .main-menu .navigation > li > a {
    color: rgb(255, 255, 255);
}

.mobile-menu.style-two .main-menu .navigation > li > ul > li > ul > li > a:hover, .mobile-menu.style-two .main-menu .navigation > li > ul > li:hover > a, .mobile-menu.style-two .main-menu .navigation > li:hover > a, .mobile-menu.style-two .main-menu .navigation > li.current > a, .sticky-header.style-two .main-menu .navigation > li:hover > a, .sticky-header.style-two .main-menu .navigation > li.current > a, .header-upper.style-two .main-menu .navigation > li:hover > a, .header-upper.style-two .main-menu .navigation > li.current > a, .sticky-header.style-two .main-menu .navigation > li > ul > li:hover > a, .header-upper.style-two .main-menu .navigation > li > ul > li:hover > a, .sticky-header.style-two .main-menu .navigation > li > ul > li > ul > li > a::before, .sticky-header.style-two .main-menu .navigation > li > ul > li > a::before, .header-upper.style-two .main-menu .navigation > li > ul > li > ul > li > a::before, .header-upper.style-two .main-menu .navigation > li > ul > li > a::before, .header-upper.style-two .main-menu .navigation > li > ul > li > ul > li > a:hover, .header-upper.style-two .main-menu .navigation > li > ul > li > ul > li > a:hover {
    color: rgb(220, 53, 69);
}

.sticky-header.style-two .main-menu .navigation > li.current::before, .header-upper.style-two .main-menu .navigation > li.current::before, .sticky-header.style-two .main-menu .navigation > li.current::after, .header-upper.style-two .main-menu .navigation > li.current::after {
    background: var(--theme-color-two);
}

.main-header .header-upper.style-two .search-box-btn {
    color: rgb(242, 242, 242);
}

.main-header .header-upper.style-two .cart-btn .cart-icon {
    color: rgb(242, 242, 242);
}

.main-header .header-upper.style-two .cart-btn .item-count {
    background: var(--theme-color-two);
}

.header-upper.style-two .anim-menu-btn {
    color: rgb(242, 242, 242);
}

.top-bar.style-three {
    background: rgb(27, 27, 27);
}

.top-bar.style-three .contact-info li {
    margin-right: 0px;
    padding-right: 0px;
    border-right: 0px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar.style-three .language-switcher::before {
    opacity: 0;
}

.top-bar.style-three .languages {
    padding-right: 0px;
}

.top-bar.style-three .languages::after {
    right: 0px;
}

.top-bar.style-three .social-icon-one li a {
    background: transparent;
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.top-bar.style-three .social-icon-one li a:hover {
    color: var(--theme-color-three);
}

.top-bar .login-info {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

.top-bar .login-info li {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar .login-info li span {
    color: rgb(255, 255, 255);
    margin-right: 8px;
    position: relative;
    top: 2px;
}

.top-bar .login-info li a {
    color: rgb(255, 255, 255);
}

.main-header .header-upper.style-three {
    margin-bottom: -45px;
    background: transparent;
}

.main-header.style-three {
    background: transparent;
}

.main-header .header-upper.style-three .wrapper-box {
    position: relative;
}

.main-header .header-upper.style-three .wrapper-box::before {
    position: absolute;
    content: "";
    background: rgb(255, 255, 255);
    right: 0px;
    top: 0px;
    height: 100%;
    width: 500%;
}

.main-header .header-upper.style-three::before {
    position: absolute;
    content: "";
    background: rgb(27, 27, 27);
    right: 0px;
    top: 0px;
    height: 50%;
    width: 500%;
    border-bottom: 3px solid rgb(255, 255, 255);
}

.mobile-menu.style-three .main-menu .navigation > li > ul > li > ul > li > a:hover, .mobile-menu.style-three .main-menu .navigation > li > ul > li:hover > a, .mobile-menu.style-three .main-menu .navigation > li:hover > a, .mobile-menu.style-three .main-menu .navigation > li.current > a, .sticky-header.style-three .main-menu .navigation > li:hover > a, .sticky-header.style-three .main-menu .navigation > li.current > a, .header-upper.style-three .main-menu .navigation > li:hover > a, .header-upper.style-three .main-menu .navigation > li.current > a, .sticky-header.style-three .main-menu .navigation > li > ul > li:hover > a, .header-upper.style-three .main-menu .navigation > li > ul > li:hover > a, .sticky-header.style-three .main-menu .navigation > li > ul > li > ul > li > a::before, .sticky-header.style-three .main-menu .navigation > li > ul > li > a::before, .header-upper.style-three .main-menu .navigation > li > ul > li > ul > li > a::before, .header-upper.style-three .main-menu .navigation > li > ul > li > a::before, .header-upper.style-three .main-menu .navigation > li > ul > li > ul > li > a:hover, .header-upper.style-three .main-menu .navigation > li > ul > li > ul > li > a:hover {
    color: var(--theme-color-three);
}

.sticky-header.style-three .main-menu .navigation > li.current::before, .header-upper.style-three .main-menu .navigation > li.current::before, .sticky-header.style-three .main-menu .navigation > li.current::after, .header-upper.style-three .main-menu .navigation > li.current::after {
    background: var(--theme-color-three);
}

.main-header.header-style-four .top-bar {
    padding: 0px;
    background: rgb(40, 51, 84);
}

.main-header.header-style-four .logo {
    padding: 5px 0px;
}

.main-header.header-style-four .top-bar .logo img {
    position: relative;
    top: 19px;
}

.main-header.header-style-four .logo::before {
    position: absolute;
    content: "";
    background: rgb(255, 255, 255);
    top: 0px;
    right: -90px;
    height: 100%;
    width: 5000%;
}

.main-header.header-style-four .contact-info {
    min-width: 500px;
}

.main-header.header-style-four .contact-info li {
    border-color: rgba(255, 255, 255, 0.2);
}

.main-header.header-style-four .contact-info li:last-child {
    border-right: 0px;
}

.main-header.header-style-four .top-bar .login-info li:last-child {
    border-right: 0px;
}

.main-header.header-style-four .contact-info li span {
    color: rgb(2, 192, 109);
}

.main-header.header-style-four .main-menu .navigation > li > a {
    margin-left: 30px;
}

.main-header.header-style-four .main-menu .navigation > li.current::before {
    left: 8px;
    bottom: 45px;
    height: 1px;
}

.main-header.header-style-four .main-menu .navigation > li.current::after {
    content: "";
    font-size: 20px;
    font-family: FontAwesome;
    color: var(--theme-color-four);
    width: auto;
    height: auto;
    bottom: 32px;
    left: 38px;
    background: transparent !important;
}

.main-header.header-style-four .sticky-header .main-menu .navigation > li > a {
    margin-left: 15px;
}

.main-header.header-style-four .header-upper .nav-outer::before {
    visibility: hidden;
}

.main-header.header-style-four .search-box-btn {
    border: 1px solid rgb(243, 243, 243);
    padding: 7px 13px;
    border-radius: 5px;
}

.header-upper.style-four .theme-btn {
    padding: 10px 30px;
}

.main-header.header-style-four .header-upper .option-wrapper > div {
    margin-left: 10px;
}

.main-header.header-style-four .search-box-outer {
    padding: 0px;
}

.main-header.header-style-four .header-upper .option-wrapper .link-btn {
    position: relative;
    top: 3px;
}

.top-bar .location-area {
    position: relative;
}

.top-bar .location-area::before {
    position: absolute;
    content: "";
    background: rgb(255, 255, 255);
    left: -24px;
    top: 7px;
    width: 30px;
    height: 40px;
    clip-path: polygon(80% 0px, 100% 0px, 100% 100%, 0% 100%);
}

.social-icon-five {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-five li a {
    color: rgb(133, 133, 133);
    display: inline-block;
    border-right: 1px solid rgb(217, 217, 217);
    text-align: center;
    font-size: 14px;
    padding: 0px 12px;
    border-top: 1px solid rgb(234, 234, 234);
    transition: 0.5s;
}

.social-icon-five li:last-child a {
    border-right: 0px;
}

.social-icon-five li a:hover {
    color: var(--theme-color-four);
}

.main-header .header-upper .social-icon-five {
    margin-top: 10px;
}

.mobile-menu.style-four .main-menu .navigation > li > ul > li > ul > li > a:hover, .mobile-menu.style-four .main-menu .navigation > li > ul > li:hover > a, .mobile-menu.style-four .main-menu .navigation > li:hover > a, .mobile-menu.style-four .main-menu .navigation > li.current > a, .sticky-header.style-four .main-menu .navigation > li:hover > a, .sticky-header.style-four .main-menu .navigation > li.current > a, .header-upper.style-four .main-menu .navigation > li:hover > a, .header-upper.style-four .main-menu .navigation > li.current > a, .sticky-header.style-four .main-menu .navigation > li > ul > li:hover > a, .header-upper.style-four .main-menu .navigation > li > ul > li:hover > a, .sticky-header.style-four .main-menu .navigation > li > ul > li > ul > li > a::before, .sticky-header.style-four .main-menu .navigation > li > ul > li > a::before, .header-upper.style-four .main-menu .navigation > li > ul > li > ul > li > a::before, .header-upper.style-four .main-menu .navigation > li > ul > li > a::before, .header-upper.style-four .main-menu .navigation > li > ul > li > ul > li > a:hover, .header-upper.style-four .main-menu .navigation > li > ul > li > ul > li > a:hover {
    color: var(--theme-color-four);
}

.sticky-header.style-four .main-menu .navigation > li.current::before, .header-upper.style-four .main-menu .navigation > li.current::before, .sticky-header.style-four .main-menu .navigation > li.current::after, .header-upper.style-four .main-menu .navigation > li.current::after {
    background: var(--theme-color-four);
}

.main-header.header-style-five .main-menu .navigation > li {
    margin-right: 40px;
}

.main-header.header-style-five .main-menu .navigation > li.current::before {
    background: transparent;
    left: 50%;
    height: 4px;
    width: 4px;
    content: "";
    bottom: 22px;
    border: 2px solid var(--theme-color-five);
    margin-left: -2px;
    border-radius: 50%;
}

.main-header.header-style-five .main-menu .navigation > li.current::after {
    background: transparent;
    left: 50%;
    height: 12px;
    width: 12px;
    content: "";
    bottom: 18px;
    border: 2px solid var(--theme-color-five);
    margin-left: -6px;
    border-radius: 50%;
}

.main-header.header-style-five {
    position: absolute;
    background: transparent;
    padding-top: 25px;
}

.main-header.header-style-five .header-upper {
    background: transparent;
}

.header-upper.style-five .main-menu .navigation > li > a {
    color: rgb(255, 255, 255);
}

.main-header.header-style-five .header-upper .nav-outer::before {
    display: none;
}

.main-header.header-style-five .search-box-btn {
    color: rgb(255, 255, 255);
}

.main-header.header-style-five .cart-btn .cart-icon {
    color: rgb(255, 255, 255);
}

.main-header.header-style-five .cart-btn .item-count {
    background: var(--theme-color-five);
}

.mobile-menu.style-five .main-menu .navigation > li > ul > li > ul > li > a:hover, .mobile-menu.style-five .main-menu .navigation > li > ul > li:hover > a, .mobile-menu.style-five .main-menu .navigation > li:hover > a, .mobile-menu.style-five .main-menu .navigation > li.current > a, .sticky-header.style-five .main-menu .navigation > li:hover > a, .sticky-header.style-five .main-menu .navigation > li.current > a, .header-upper.style-five .main-menu .navigation > li:hover > a, .header-upper.style-five .main-menu .navigation > li.current > a, .sticky-header.style-five .main-menu .navigation > li > ul > li:hover > a, .header-upper.style-five .main-menu .navigation > li > ul > li:hover > a, .sticky-header.style-five .main-menu .navigation > li > ul > li > ul > li > a::before, .sticky-header.style-five .main-menu .navigation > li > ul > li > a::before, .header-upper.style-five .main-menu .navigation > li > ul > li > ul > li > a::before, .header-upper.style-five .main-menu .navigation > li > ul > li > a::before, .header-upper.style-five .main-menu .navigation > li > ul > li > ul > li > a:hover, .header-upper.style-five .main-menu .navigation > li > ul > li > ul > li > a:hover {
    color: var(--theme-color-five);
}

.sticky-header.style-four .main-menu .navigation > li.current::before, .header-upper.style-four .main-menu .navigation > li.current::before, .sticky-header.style-four .main-menu .navigation > li.current::after, .header-upper.style-four .main-menu .navigation > li.current::after {
    background: var(--theme-color-five);
}

.banner-section {
    position: relative;
}

.three-item-carousel, .banner-slider {
    position: relative;
    z-index: 9;
    height: 100% !important;
}

.banner-section .swiper-slide {
    position: relative;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    cursor: default;
}



.banner-section .content-outer {
    position: relative;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    height: 100%;
    width: 100%;
}

.banner-section .content-box {
    position: relative;
    display: flex;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0px auto;
    min-height: 510px;
}

.banner-section .content-box .inner {
    position: relative;
    opacity: 0;
    transform: translateX(100px);
}

.banner-section .content-box .inner h2 {
    font-size: 32px;
    font-weight: 800;
    color: rgb(158, 46, 91);
    margin: 4px;
}

.banner-section .content-box .inner p {
    font-size: 31px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    text-shadow: rgba(0, 0, 0, 0.92) 5px 5px 10px;
}

.banner-section .swiper-slide-active .content-box .inner {
    opacity: 1;
    transition: 500ms;
    transform: translateX(0px);
}

.banner-section .content-box h1 {
    position: relative;
    font-size: 58px;
    line-height: 70px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transition: 500ms;
    transform: translateY(-20px);
    margin-bottom: 30px;
}

.banner-section .swiper-slide-active .content-box h1 {
    opacity: 1;
    visibility: visible;
    transition-delay: 800ms;
    transform: translateY(0px);
}

.banner-section h2 {
    position: relative;
    font-size: 30px;
    line-height: 1.2em;
    color: rgb(40, 26, 91);
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0;
    visibility: hidden;
    transition: 500ms;
    transform: translateY(20px);
    display: inline-block;
}

.banner-section .swiper-slide-active h2 {
    opacity: 1;
    visibility: visible;
    transition-delay: 1200ms;
    transform: translateY(0px);
}

.banner-section h2.border-shape {
    padding-bottom: 30px;
}

.banner-section h2.border-shape::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 3px;
    bottom: 0px;
    left: 0px;
    background: var(--theme-color-five);
}

.banner-section h3 {
    position: relative;
    font-size: 22px;
    line-height: 1.2em;
    color: rgb(255, 255, 255);
    font-weight: 400;
    margin-bottom: 30px;
    padding: 0px 150px;
    opacity: 0;
    visibility: hidden;
    transition: 500ms;
    transform: translateY(20px);
    display: inline-block;
}

.banner-section .swiper-slide-active h3 {
    opacity: 1;
    visibility: visible;
    transition-delay: 1200ms;
    transform: translateY(0px);
}

.banner-section h4 {
    position: relative;
    font-size: 18px;
    line-height: 1.2em;
    color: rgb(255, 255, 255);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding: 0px 150px;
    opacity: 0;
    visibility: hidden;
    transition: 500ms;
    transform: translateY(20px);
    display: inline-block;
}

.banner-section .swiper-slide-active h4 {
    opacity: 1;
    visibility: visible;
    transition-delay: 1200ms;
    transform: translateY(0px);
}

.banner-section h4 .border-shape-left {
    position: absolute;
    left: 0px;
    top: 4px;
    width: 120px;
    height: 7px;
}

.banner-section h4 .border-shape-left::before {
    position: absolute;
    content: "";
    background: var(--theme-color);
    height: 2px;
    width: 70px;
    right: 0px;
    top: 0px;
}

.banner-section h4 .border-shape-left::after {
    position: absolute;
    content: "";
    background: var(--theme-color);
    height: 2px;
    width: 120px;
    right: 0px;
    bottom: 0px;
}

.banner-section h4 .border-shape-right {
    position: absolute;
    right: 0px;
    top: 4px;
    width: 120px;
    height: 7px;
}

.banner-section h4 .border-shape-right::before {
    position: absolute;
    content: "";
    background: var(--theme-color);
    height: 2px;
    width: 70px;
    left: 0px;
    top: 0px;
}

.banner-section h4 .border-shape-right::after {
    position: absolute;
    content: "";
    background: var(--theme-color);
    height: 2px;
    width: 120px;
    left: 0px;
    bottom: 0px;
}

.banner-section .content-box .text {
    position: relative;
    font-size: 18px;
    line-height: 1.2em;
    color: rgb(255, 255, 255);
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 0;
    visibility: hidden;
    transition: 500ms;
    transform: translateX(-50px);
}

.banner-section .swiper-slide-active .text {
    opacity: 1;
    visibility: visible;
    transition-delay: 1600ms;
    transform: translateX(0px);
}

.banner-section .link-box {
    padding-top: 40px;
    transform: scaleY(0);
    transition: 500ms 2000ms;
    transform-origin: center bottom;
}

.banner-section .swiper-slide-active .link-box {
    transform: scale(1);
}

.banner-section .link-box a {
    transition: 0.5s;
}

.banner-section .link-box a + a {
    margin-left: 20px;
}

.banner-section .link-box-two {
    transform: scaleY(0);
    transition: 500ms 1000ms;
    transform-origin: center bottom;
    margin-bottom: 40px;
}

.banner-section .swiper-slide-active .link-box-two {
    transform: scale(1);
}

.banner-section .link-box-two .default-btn {
    font-size: 13px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    background: var(--theme-color);
    padding: 5px 20px;
    border-radius: 5px;
}

.banner-section .logo {
    position: relative;
    margin-bottom: 30px;
    padding: 0px 150px;
    opacity: 0;
    visibility: hidden;
    transition: 500ms;
    transform: translateY(20px);
    display: inline-block;
}

.banner-section .swiper-slide-active .logo {
    opacity: 1;
    visibility: visible;
    transition-delay: 1200ms;
    transform: translateY(0px);
}

.banner-section.style-two .content-box {
    min-height: 580px;
}

.banner-section.style-two h4 {
    font-size: 15px;
    font-weight: 500;
    padding: 0px;
}

.banner-section.style-two .content-box h1 {
    font-family: "Zilla Slab", serif;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.banner-section.style-two .banner-slider-nav.style-one .banner-slider-control:hover {
    color: var(--theme-color-two);
}

.banner-section.style-three .content-box {
    min-height: 850px;
}

.banner-section.style-three .content-box h1 {
    font-size: 60px;
    text-transform: capitalize;
}

.banner-section.style-three .link-box {
    padding-top: 0px;
}

.banner-section.style-three .link-box a {
    margin-right: 20px;
}

.banner-section.style-three .banner-slider-nav.style-one .banner-slider-control:hover {
    color: var(--theme-color-three);
}

.banner-section.style-five .content-box h1 {
    font-size: 100px;
    line-height: 100px;
    font-weight: 900;
}

.banner-section.style-five .content-box .text {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}

.banner-section.style-five .banner-slider-nav.style-one .banner-slider-control {
    width: auto;
    background: transparent;
    display: none;
}

.banner-section.style-five .banner-slider-nav.style-one .banner-slider-control.banner-slider-button-prev {
    transform: rotate(180deg) translateX(-50px);
}

.banner-section.style-five .banner-slider-nav.style-one .banner-slider-control:hover {
    color: var(--theme-color-four);
}

.banner-section.style-five .content-box .inner {
    padding-left: 20px;
    position: relative;
    top: -50px;
}

.banner-section.style-five .content-box .inner::before {
    content: "";
    left: 0px;
    top: 15px;
    width: 3px;
    height: 100px;
    background: var(--theme-color-four);
}

.banner-section.style-five .content-box .inner::after {
    content: "";
    left: 6px;
    top: 15px;
    width: 3px;
    height: 270px;
    background: var(--theme-color-four);
}

.banner-section.style-five .banner-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgb(197, 88, 148);
}

.banner-section.style-six .content-box {
    min-height: 905px;
}

.banner-section.style-six .content-box h1 {
    font-size: 90px;
    line-height: 90px;
    font-weight: 700;
}

.banner-section.style-six .content-box .text {
    line-height: 30px;
    margin-bottom: 30px;
}

.banner-section.style-six .link-box {
    padding-top: 10px;
}

.banner-section.style-six .banner-slider-nav.style-one .banner-slider-control {
    width: auto;
    background: transparent;
}

.banner-section.style-six .banner-slider-nav.style-one .banner-slider-control.banner-slider-button-prev {
    transform: rotate(180deg) translateX(-50px);
}

.banner-section.style-six .banner-slider-nav.style-one .banner-slider-control:hover {
    color: var(--theme-color-five);
}

.banner-section.style-six .banner-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme-color-five);
}

.banner-section .slide-option {
    position: absolute;
    right: 120px;
    bottom: 10px;
    min-width: 440px;
}

.slide-progress-container {
    position: absolute;
    height: 3px;
    z-index: 3;
    bottom: 30px;
    right: 0px;
    left: 0px;
}

.slide-progress-warp {
    float: left;
    position: relative;
    height: 1px;
    background: rgba(255, 255, 255, 0.41);
    z-index: 10;
    bottom: 0px;
    width: 100%;
}

.slide-progress {
    position: absolute;
    top: 50%;
    left: 0px;
    height: 3px;
    border-radius: 6px;
    margin-top: -2px;
    width: 0%;
    max-width: 100%;
    background: var(--theme-color);
}

.banner-slider-nav.style-one {
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    bottom: 0px;
    width: 100%;
}

.banner-slider-control-wrap {
    position: absolute;
    bottom: 0px;
    top: 0px;
    right: 0px;
    z-index: 100;
    width: 100%;
}

.banner-slider-control-wrap.style-two {
    position: relative;
    width: auto;
    color: rgb(255, 255, 255);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.banner-slider-nav.style-one .banner-slider-control {
    cursor: pointer;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-align: center;
    z-index: 5;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    color: rgb(255, 255, 255);
    font-size: 32px;
    transition: 0.5s;
}

.banner-slider-nav.style-one .banner-slider-control:hover {
    color: var(--theme-color);
}

.banner-slider-nav.style-one .banner-slider-control.banner-slider-button-next {
    transform: translateX(-50px);
}

.banner-slider-nav.style-one .banner-slider-control.banner-slider-button-prev {
    transform: translateX(50px);
}

.banner-slider-control-wrap .left-side {
    position: relative;
    height: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 60px;
}

.banner-slider-nav.style-one .banner-slider-control span {
    position: relative;
    z-index: 2;
}

.banner-slider-nav.style-one .banner-slider-control i {
    transition: 200ms linear 0.3s;
    padding: 0px 0px 0px 1px;
}

.banner-slider-nav.style-one .banner-slider-control.banner-slider-button-prev i {
    padding: 0px;
}

.banner-section .banner-slider-pagination {
    position: absolute;
    right: 60px;
    top: inherit;
    margin-right: 0px;
    z-index: 9999;
    transform: translateX(-50%);
    bottom: 0px;
    left: 50%;
    max-width: none;
    text-align: center;
    width: auto !important;
}

.banner-section .banner-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    position: relative;
    opacity: 1;
    background: rgb(185, 176, 172);
    border-radius: 50%;
    margin: 0px 9px;
}

.banner-section .banner-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgb(255, 255, 255);
}

.banner-section .banner-slider-pagination.style-two {
}

.banner-section .banner-slider-pagination.style-two .swiper-pagination-bullet::after {
    content: "01";
    position: absolute;
    top: -53px;
    right: -8px;
    line-height: 20px;
    color: rgb(0, 0, 0);
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: 500;
    transform: scale(0.9);
    opacity: 0;
    transition: 0.5s;
    display: none;
}

.banner-section .banner-slider-pagination.style-two .swiper-pagination-bullet.swiper-pagination-bullet-active::after, .banner-section .banner-slider-pagination.style-two .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    opacity: 1;
}

.banner-section .banner-slider-pagination.style-two .swiper-pagination-bullet:nth-child(2)::after {
    content: "02";
}

.banner-section .banner-slider-pagination.style-two .swiper-pagination-bullet:nth-child(3)::after {
    content: "03";
}

.banner-section .banner-slider-pagination.style-two .swiper-pagination-bullet:nth-child(4)::after {
    content: "04";
}

.banner-section .banner-slider-pagination.style-two .swiper-pagination-bullet:nth-child(5)::after {
    content: "05";
}

.banner-section .banner-slider-pagination.style-two .swiper-pagination-bullet:nth-child(6)::after {
    content: "06";
}

.banner-section .banner-slider-pagination.style-two .swiper-pagination-bullet:nth-child(7)::after {
    content: "07";
}

.banner-section .banner-slider-pagination.style-two .swiper-pagination-bullet:nth-child(8)::after {
    content: "08";
}

.banner-section .banner-slider-pagination.style-two .swiper-pagination-bullet::before {
    position: absolute;
    content: "";
    background: rgb(132, 41, 76);
    width: 1px;
    height: 20px;
    right: 5px;
    bottom: 18px;
    opacity: 0;
    display: none;
}

.banner-slider-pagination.style-three {
    left: auto;
    right: 50px;
    bottom: 50%;
    transform: translate(0%, 50%);
}

.banner-section .banner-slider-pagination.style-three .swiper-pagination-bullet {
    display: block;
    margin: 18px 0px;
}

.banner-section .banner-slider-pagination.style-three .swiper-pagination-bullet.swiper-pagination-bullet-active {
    box-shadow: rgb(185, 176, 172) 0px 0px 0px 6px;
    background: var(--theme-color-two);
}

.banner-section.style-four .banner-slider-pagination .swiper-pagination-bullet {
    border-radius: 0px;
    height: 5px;
    width: 25px;
    border: 1px solid rgb(255, 255, 255);
    background: transparent;
}

.about-section {
    position: relative;
    padding: 110px 0px 80px;
}

.about-content-block {
    position: relative;
    margin-bottom: 10px;
}

.about-content-block h1 {
    position: relative;
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 50px;
    font-weight: 500;
    color: rgb(160, 46, 92);
}

.about-content-block h4 {
    font-size: 20px;
    color: rgb(85, 85, 85);
    line-height: 28px;
    margin-bottom: 0px;
}

.about-content-block .text {
    position: relative;
    margin-bottom: 25px;
}

.about-content-block .link-btn {
    position: relative;
    margin-bottom: 25px;
}

.about-image-block {
    position: relative;
    margin-bottom: 30px;
}

.about-image-block::before {
}

.about-image-block .logo-box .image {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 140px;
    height: 140px;
    text-align: center;
    line-height: 140px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
}

.about-image-block .logo-box .image::before {
    position: absolute;
    content: "";
    width: 120px;
    height: 120px;
    border: 3px dotted rgb(195, 147, 6);
    left: 10px;
    top: 10px;
    border-radius: 50%;
}

.about-image-block .logo-box img {
    position: relative;
}

.about-image-block .image-two {
}

.about-image-block .image-three {
    position: absolute;
    right: 0px;
    bottom: 22px;
}

.about-image-block img {
    border-radius: 6px;
}

.about-image-block .image-two a {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: rgb(255, 255, 255);
    line-height: 60px;
    transition: 0.5s;
}

.about-image-block .image-two a:hover {
    color: var(--theme-color);
}

.about-image-block .image-two a::before {
    position: absolute;
    content: "";
    inset: 0px;
    border-radius: 50%;
    z-index: -1;
    animation: 3s cubic-bezier(0.4, 0, 1, 1) 0s infinite normal both running myPulse;
    opacity: 0;
}

@-webkit-keyframes myPulse {
    0% {
        box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 0px 0px;
    }

    70% {
        box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 60px;
    }

    100% {
        box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 0px;
    }
}

@keyframes myPulse {
    0% {
        box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 0px 0px;
    }

    70% {
        box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 60px;
    }

    100% {
        box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 0px;
    }
}

.about-image-block .image-two a:hover::before {
    opacity: 1;
}

.sec-title {
    position: relative;
    margin-bottom: 25px;
}

.sec-title h5 {
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-color-three);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sec-title.style-two h5 {
    color: var(--theme-color-four);
}

.sec-title.style-three h5 {
    color: var(--theme-color-five);
}

.sec-title h1 {
    position: relative;
    margin-bottom: 10px;
    color: rgb(160, 46, 92);
    font-size: 36px !important;
    font-weight: 500 !important;
}

.sec-title h2 {
    position: relative;
    margin-bottom: 10px;
    color: rgb(160, 46, 92);
    font-size: 36px !important;
    font-weight: 500 !important;
}

.sec-title.light h1 {
    color: rgb(255, 255, 255);
}

.sec-title .text {
    font-weight: 300;
    font-size: 23px;
    color: rgb(85, 85, 85);
    line-height: 28px;
    margin-bottom: 20px;
}

.sec-title.light .text {
    color: rgb(255, 255, 255);
}

.sec-title .icon-box {
    position: relative;
    color: var(--theme-color-four);
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
    width: max-content;
}

.sec-title.text-center .icon-box {
    margin: 0px auto 20px;
    padding: 0px 50px;
}

.sec-title.text-center .icon-box::before {
    position: absolute;
    content: "";
    background: var(--theme-color-four);
    left: 0px;
    width: 40px;
    height: 2px;
    top: 16px;
}

.sec-title.text-center .icon-box::after {
    position: absolute;
    content: "";
    background: var(--theme-color-four);
    right: 0px;
    width: 40px;
    height: 2px;
    top: 16px;
}

.causes-section {
    position: relative;
    padding: 110px 0px 70px;
    background-color: rgb(244, 241, 238);
}

.causes-section::before {
    position: absolute;
    content: "";
    background: url("../images/resource/decor-2.png") 0px 20% no-repeat;
    height: 100%;
    width: 100%;
    top: 0px;
    right: 0px;
}

.causes-section .cause-carousel-wrapper {
    position: relative;
    margin: 0px -15px;
}

.cause-block-one {
    position: relative;
    margin: 0px 15px 40px;
}

.cause-block-one .inner-box {
    position: relative;
    background: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 6px;
    transition: 0.5s;
}

.cause-block-one .inner-box:hover {
    box-shadow: rgba(89, 83, 76, 0.1) 0px 20px 20px 0px;
}

.progress-levels .progress-box {
    position: relative;
    padding-bottom: 10px;
    padding-top: 10px;
    overflow: hidden;
}

.progress-levels .progress-box:last-child {
    margin-bottom: 0px;
}

.progress-levels .progress-box:last-child {
    margin-bottom: 0px;
}

.progress-levels .progress-box .bar {
    position: relative;
    height: 6px;
    background: rgb(244, 241, 238);
}

.progress-levels .progress-box .bar .bar-innner {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 10px;
    border-radius: 5px;
}

.progress-levels .progress-box .bar .bar-fill {
    position: absolute;
    left: -100%;
    top: 0px;
    width: 0px;
    height: 6px;
    background: var(--theme-color);
    transition: 2000ms 300ms;
}

.progress-levels .progress-box.html .bar .bar-fill {
    background: rgb(239, 98, 103);
}

.progress-levels .progress-box.wp .bar .bar-fill {
    background: rgb(255, 153, 36);
}

.progress-levels .progress-box.php .bar .bar-fill {
    background: rgb(20, 219, 186);
}

.progress-levels .progress-box.animated .bar .bar-fill {
    left: 0px;
}

.progress-levels .progress-box .percent {
    position: absolute;
    right: 0px;
    top: -30px;
    letter-spacing: 0px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-color-two);
    opacity: 0;
    transition: 2000ms 700ms;
}

.progress-levels .progress-box.animated .percent {
    opacity: 1;
}

.cause-block-one .image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.cause-block-one .image img {
    width: 100%;
    transition: 0.5s;
}

.cause-block-one .inner-box:hover .image img {
    transform: scale(1.1);
}

.cause-block-one .image {
    margin-bottom: 30px;
}

.cause-block-one .lower-content {
    position: relative;
    padding: 0px 20px 15px;
}

.cause-block-one h4 {
    font-size: 20px;
    margin-bottom: 3px;
}

.cause-block-one h4 a {
    color: var(--dark-color);
    transition: 0.5s;
}

.cause-block-one h4 a:hover {
    color: var(--theme-color);
}

.cause-block-one .category {
    font-size: 15px;
    color: rgb(166, 166, 166);
    margin-bottom: 14px;
}

.cause-block-one .category a {
    color: rgb(166, 166, 166);
    transition: 0.5s;
    display: inline-block;
    position: relative;
}

.cause-block-one .category a:hover {
    color: var(--theme-color);
}

.cause-block-one .category a::before {
    position: absolute;
    content: "";
    background: rgb(166, 166, 166);
    height: 1px;
    left: 28px;
    right: 0px;
    bottom: 3px;
    transition: 0.5s;
}

.cause-block-one .category a:hover::before {
    background: var(--theme-color);
}

.cause-block-one .category span {
    margin-right: 10px;
    font-size: 18px;
    position: relative;
    top: 3px;
}

.cause-block-one .lower-content .text {
    margin-bottom: 18px;
}

.cause-block-one .lower-content .info-box {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.cause-block-one .lower-content .info-box a {
    color: rgb(133, 133, 133);
}

.cause-block-one .lower-content .info-box a span {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--dark-color);
}

.cause-block-one .lower-content .bottom-content {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 10px;
}

.cause-block-one .lower-content .bottom-content .link-btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

.cause-block-one .lower-content .bottom-content .link-btn a {
    padding: 11px 42px;
}

.cause-block-one .lower-content .bottom-content .link-btn .btn-style-one::before {
    display: none;
}

.share-icon {
    position: relative;
}

.share-icon .share-btn {
    background: rgb(255, 255, 255);
    font-size: 14px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border: 1px solid rgb(234, 234, 234);
    text-align: center;
    cursor: pointer;
    color: rgb(166, 166, 166);
    border-radius: 50%;
    margin-bottom: 10px;
}

.share-icon ul {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    position: absolute;
    left: 55px;
    bottom: 10px;
    width: max-content;
}

.share-icon.open ul {
    opacity: 1;
    visibility: visible;
}

.share-icon ul li {
    margin-right: 2px;
}

.share-icon ul a {
    font-size: 14px;
    height: 50px;
    width: 25px;
    line-height: 48px;
    text-align: center;
    transition: 0.5s;
    display: inline-block;
    color: rgb(153, 153, 153);
}

.share-icon ul a:hover {
    color: var(--theme-color);
}

.share-icon.style-two {
    position: absolute;
    right: 0px;
    top: 9px;
}

.share-icon.style-two ul {
    inset: 0px 10px auto auto;
    background: rgb(255, 255, 255);
    padding: 0px 5px;
    z-index: 9;
}

.share-icon.style-two ul a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid rgb(234, 234, 234);
    border-radius: 50%;
    font-size: 12px;
    color: var(--dark-color);
}

.share-icon.style-two ul li {
    margin: 0px 5px;
}

.share-icon.style-two .share-btn {
    border: 0px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0px;
    text-align: right;
}

.share-icon.style-two ul a:hover {
    color: rgb(255, 255, 255);
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.causes-section.style-two {
    padding-bottom: 110px;
}

.causes-section.style-two::before {
    display: none;
}

.causes-section.style-two .owl-dot-style-one .owl-dots {
    margin-top: 0px;
}


.funfacts-section .bottom-content .text {
    margin-bottom: 40px;
}

.events-section {
    position: relative;
    padding: 80px 0px;
    background: linear-gradient(135deg, rgb(238, 242, 255) 0%, rgb(224, 242, 254) 55%, rgb(255, 255, 255) 100%);
}

.event-tab-wrapper {
    margin: 0px -15px;
}

.event-tabs {
    position: relative;
}

.event-tabs .tabs-header {
    position: relative;
    margin-bottom: 40px;
}

.event-tabs .event-tab-btns {
    position: relative;
    margin-right: 0px;
}

.event-tabs .event-tab-btns .event-tab-btn {
    position: relative;
    float: left;
    line-height: 24px;
    padding: 10px 35px;
    cursor: pointer;
    color: var(--dark);
    background: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 20px;
    transition: 0.3s;
    border-radius: 6px;
    margin-right: 20px;
}

.event-tabs .event-tab-btns .event-tab-btn::before {
    position: absolute;
    content: "";
    background: rgb(255, 255, 255);
    width: 22px;
    height: 20px;
    left: 50%;
    bottom: -20px;
    margin-left: -11px;
    clip-path: polygon(50% 51%, 0px 0px, 100% 0px);
    transition: 0.5s;
}

.event-tabs .event-tab-btns .event-tab-btn:last-child {
    margin-right: 0px;
}

.event-tabs .event-tab-btns .event-tab-btn.active-btn {
    color: rgb(255, 255, 255);
    background: linear-gradient(135deg, rgb(130, 40, 75) 0%, rgb(167, 48, 96) 100%) !important;
}

.event-tabs .event-tab-btns .event-tab-btn.active-btn::before {
    background: linear-gradient(307deg, rgb(41, 55, 134) 0px, rgb(162, 29, 46) 100%);
}

.event-tabs .owl-nav {
    position: absolute;
    right: 20.8%;
    top: 0px;
    height: 100%;
    background: rgb(255, 255, 255);
    padding: 0px 21px;
    display: none;
}

.event-tabs .event-tabs-content {
    position: relative;
    display: block;
}

.event-tabs .event-tab {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.event-tabs .event-tab.active-tab {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.event-tabs .event-block-one .inner-box {
    transform: scaleX(0);
    transition: 0.7s;
}

.event-tabs .active-tab .event-block-one .inner-box {
    transform: scaleX(1);
}

.event-block-one {
    padding: 0px 15px;
}

.event-block-one .inner-box {
    background: rgb(255, 255, 255);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
}

.event-block-one .image {
    position: relative;
    overflow: hidden;
}

.event-block-one .image::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    right: 0px;
    top: 0px;
    background: rgba(158, 29, 48, 0.65);
    transition: 0.5s;
    z-index: 1;
    transform: translateY(-100%);
}

.event-block-one .inner-box:hover .image::before {
    transform: translateY(0px);
}

.event-block-one .image img {
    width: 100%;
    height: 250px;
    object-fit: fill;
}

.event-block-one .lower-content {
    position: relative;
    padding: 0px 28px;
    transition: 0.5s;
    background: rgb(255, 255, 255);
    z-index: 9;
}

.event-block-one .inner-box:hover .lower-content {
    transform: translateY(-45px);
}

.event-block-one .lower-content .date {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: rgba(89, 83, 76, 0.08) 0px 20px 20px 0px;
    padding: 14px 20px;
    border-radius: 6px;
    transform: translateY(-50%);
    background: rgb(255, 255, 255);
    margin-bottom: -12px;
}

.event-block-one .lower-content .date h4 {
    font-size: 35px;
    color: rgb(40, 26, 91);
    margin-right: 10px;
    line-height: 28px;
}

.event-block-one .lower-content .date .text {
    font-size: 15px;
}

.event-block-one .lower-content .date span {
    font-size: 18px;
    color: rgb(168, 30, 60);
}

.event-block-one h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.event-block-one h4 a {
    color: var(--dark-color);
    font-size: 18px;
}

.event-block-one .location {
    font-size: 13px;
    color: rgb(133, 133, 133);
}

.event-block-one .location span {
    margin-right: 6px;
}

.event-block-one .link-btn {
    position: relative;
    opacity: 0;
    padding: 0px 28px;
    transition: 0.5s;
    bottom: 30px;
}

.event-block-one .link-btn a {
    color: var(--theme-color);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.event-block-one .link-btn a span {
    margin-right: 10px;
}

.event-block-one .inner-box:hover .link-btn {
    opacity: 1;
}

.events-section .owl-dot-style-one .owl-dots {
    margin-top: 0px;
}

.events-section.style-two {
    background: rgb(255, 255, 255);
}

.events-section.style-two .event-block-one .inner-box {
    box-shadow: rgba(89, 83, 76, 0.08) 0px 0px 45px 5px;
}

.events-section.style-three {
    padding-bottom: 80px;
}

.events-section.style-three .event-block-one .inner-box {
    transition: 0.5s;
}

.events-section.style-three .event-block-one .inner-box:hover {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 20px 0px;
}

.events-section.style-three .link-btn .theme-btn {
    color: var(--theme-color-five);
    border-color: var(--theme-color-five);
}

.events-section.style-three .link-btn .theme-btn:hover {
    color: rgb(255, 255, 255);
}

.events-section.style-three .link-btn .theme-btn::before {
    background: var(--theme-color-five);
}

.events-section.style-three .link-btn .theme-btn::after {
    background: var(--theme-color-five);
}

.events-section.style-three .event-block-one .image::before {
    background: rgba(36, 36, 36, 0.92);
}

.events-section.style-three .event-block-one .lower-content .date span {
    color: var(--theme-color-five);
}

.events-section.style-three .event-block-one .lower-content .date h1 {
    color: var(--theme-color-five);
}

.events-section.style-three .event-block-one .link-btn a {
    color: var(--theme-color-five);
}

.event-block-one .placement img {
    width: 100%;
    height: auto;
    object-fit: fill;
}

.event-block-one .placement .image::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    right: 0px;
    top: 0px;
    background: rgba(158, 29, 48, 0.65);
    transition: 0.5s;
    z-index: 1;
    transform: translateY(-100%);
    display: none;
}

.testimonial-section-four {
    position: relative;
    padding: 110px 0px 80px;
}

.testimonial-block-four {
    position: relative;
    padding: 0px 15px;
}

.testimonial-block-four .inner-box {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: rgba(89, 83, 76, 0.05) 0px 0px 8px 2px;
    margin-top: 60px;
    padding: 0px 10px 40px;
    transition: 0.5s;
}

.testimonial-block-four .inner-box:hover {
    box-shadow: rgba(89, 83, 76, 0.15) 0px 0px 45px 5px;
}

.testimonial-block-four .image {
    position: relative;
    transform: translateY(-50%);
    display: inline-block;
}

.testimonial-block-four .image img {
    border-radius: 50%;
}

.testimonial-block-four .image::before {
    position: absolute;
    content: "";
    inset: -10px;
    border: 2px solid var(--theme-color);
    border-radius: 50%;
    clip-path: polygon(0px 50%, 100% 50%, 100% 100%, 0% 100%);
}

.testimonial-block-four .image::after {
    position: absolute;
    content: "";
    inset: -10px;
    border: 2px solid var(--theme-color);
    border-radius: 50%;
    clip-path: polygon(0px 50%, 100% 50%, 100% 100%, 0% 100%);
    opacity: 0;
    transition: 0.5s;
}

.testimonial-block-four .inner-box:hover .image::after {
    transform: rotate(180deg);
    opacity: 1;
}

.testimonial-block-four img {
    position: relative;
}

.testimonial-block-four h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color-two);
}

.testimonial-block-four .text {
    margin-bottom: 20px;
}

.testimonial-block-four .author-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-block-four .designation {
    color: rgb(117, 117, 117);
}

.testimonial-block-four .designation a {
    color: var(--theme-color);
}



.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: rgb(255, 255, 255);
    text-align: center;
    background-color: rgb(0, 0, 0);
    border-radius: 0.25rem;
}

.bs-tooltip-auto[x-placement^="top"] .arrow::before, .bs-tooltip-top .arrow::before {
    top: 0px;
    border-width: 0.4rem 0.4rem 0px;
    border-top-color: rgb(0, 0, 0);
}

footer {
    background: rgb(255, 255, 255);
    border-top: 1px solid rgb(232, 227, 220);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 2px;
    background: linear-gradient(307deg, rgba(41, 55, 134, 0.28) 0px, rgba(162, 29, 46, 0.48) 100%);
}

.footer-top {
    padding: 56px 60px 40px;
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 1.2fr 1fr;
    gap: 48px;
    max-width: 1400px;
    margin: 0px auto;
    width: 100%;
}

.brand-col {
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.brand-emblem {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(200, 16, 46), rgb(139, 10, 30));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: rgba(200, 16, 46, 0.25) 0px 4px 16px;
}

.brand-emblem svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.brand-name {
    font-size: 25px;
    color: rgb(26, 17, 8);
    line-height: 1.25;
}

.brand-name span {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgb(200, 16, 46);
    margin-top: 3px;
}

.brand-desc {
    font-size: 13.5px;
    color: rgb(107, 98, 88);
    line-height: 1.75;
    margin-bottom: 24px;
    border-left: 2px solid rgb(240, 237, 232);
    padding-left: 14px;
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgb(247, 244, 240);
    border: 1px solid rgb(232, 227, 220);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
}

.social-btn:hover {
    background: rgb(200, 16, 46);
    border-color: rgb(200, 16, 46);
}

.social-btn:hover svg {
    fill: white;
}

.social-btn svg {
    width: 15px;
    height: 15px;
    fill: rgb(107, 98, 88);
    transition: fill 0.2s;
}

.col-heading {
    font-size: 20px;
    color: rgb(26, 17, 8);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.col-heading::after {
    content: "";
    flex: 1 1 0%;
    height: 1px;
    background: rgb(232, 227, 220);
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgb(74, 66, 56);
    line-height: 1.55;
}

.contact-list li .icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgb(250, 248, 245);
    border: 1px solid rgb(239, 233, 225);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-list li .icon svg {
    width: 13px;
    height: 13px;
    fill: rgb(200, 16, 46);
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.links-grid a {
    font-size: 13px;
    color: rgb(74, 66, 56);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    padding: 0px;
}

.links-grid a::before {
    content: "";
    width: 16px;
    height: 1px;
    background: rgb(212, 205, 197);
    transition: width 0.2s, background 0.2s;
    flex-shrink: 0;
}

.links-grid a:hover {
    color: rgb(200, 16, 46);
}

.links-grid a:hover::before {
    width: 22px;
    background: rgb(200, 16, 46);
}

.footer-bottom {
    border-top: 1px solid rgb(240, 237, 232);
    padding: 0px 60px;
    max-width: 1400px;
    margin: 0px auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 12px;
    color: rgb(156, 147, 137);
}

.footer-bottom a {
    color: rgb(200, 16, 46);
    text-decoration: none;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    font-size: 12px;
    color: rgb(156, 147, 137);
    text-decoration: none;
    transition: color 0.2s;
}

.bottom-links a:hover {
    color: rgb(200, 16, 46);
}

.about-widget-two {
    position: relative;
}

.about-widget-two .text {
    color: rgb(224, 224, 224);
    margin-bottom: 35px;
    line-height: 30px;
}



.hidden-sidebar {
    position: fixed;
    top: 0px;
    right: -100%;
    z-index: 9999;
    width: 100%;
    max-width: 440px;
    background: rgb(255, 255, 255);
    height: 100%;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 30px;
    overflow: auto;
}

.hidden-sidebar .widget-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.hidden-sidebar-close {
    position: absolute;
    top: 25px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}

.hidden-sidebar .logo {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgb(231, 231, 231);
}

.sidebar-widget-two {
    margin-bottom: 50px;
}

.about-widget-four {
    position: relative;
}

.about-widget-four h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-widget-two {
    position: relative;
}

.widget-title-three {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
}


.hidden-sidebar.style-two .news-widget-two h4 a:hover {
    color: var(--theme-color-two);
}

.hidden-sidebar.style-two .newsletter-widget-two .theme-btn {
    color: var(--theme-color-two);
    border-color: var(--theme-color-two);
}

.hidden-sidebar.style-two .newsletter-widget-two .theme-btn:hover {
    color: rgb(255, 255, 255);
}

.hidden-sidebar.style-two .newsletter-widget-two .theme-btn::after, .hidden-sidebar.style-two .newsletter-widget-two .theme-btn::before {
    background: var(--theme-color-two);
}





.call-to-action {
    position: relative;
    margin-top: 40px;
}

.call-to-action .wrapper-box {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.call-to-action .left-content, .call-to-action .right-content {
    margin-bottom: 30px;
}

.call-to-action h3 {
    font-size: 24px;
    margin-bottom: 10px;
}



.events-section-two {
    position: relative;
    padding: 110px 0px 80px;
}

.event-block-two {
    position: relative;
}

.event-block-two .inner-box {
    position: relative;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.event-block-two .inner-box .image img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.event-block-two .countdown-timer {
    position: relative;
    text-align: center;
    box-shadow: rgba(89, 83, 76, 0.08) 0px 20px 20px 0px;
    margin-top: -68px;
    background: rgb(255, 255, 255);
    margin-bottom: 30px;
    padding: 13px 0px;
    border-radius: 6px;
}

.countdown-timer li {
    position: relative;
    display: inline-block;
    float: none;
    text-align: center;
    margin: 0px;
}

.countdown-timer li:first-child {
    margin-left: 0px;
}

.countdown-timer li:last-child {
    margin-right: 0px;
}

.countdown-timer li span.days, .countdown-timer li span.hours, .countdown-timer li span.minutes, .countdown-timer li span.seconds {
    position: relative;
    display: block;
    color: var(--dark-color);
    font-size: 24px;
    min-width: 90px;
    padding: 0px 20px;
    text-align: center;
    border-radius: 0px;
}

.countdown-timer li span.timeRef {
    position: relative;
    color: rgb(133, 133, 133);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
}

.event-block-two .lower-content {
    position: relative;
    padding: 25px 40px 35px;
}

.event-block-two h3 {
    font-size: 24px;
}

.event-block-two .event-info {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.event-block-two .event-info div {
    font-size: 15px;
    margin-right: 20px;
}

.event-block-two .event-info span {
    color: var(--theme-color-two);
    margin-right: 8px;
}

.event-block-two h3 a {
    color: var(--dark-color-two);
}

.event-block-three {
    position: relative;
}

.event-block-three .inner-box {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
    margin-bottom: 30px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.event-block-three .image img {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.event-block-three .content {
    position: relative;
    padding: 35px 45px;
    min-height: 120px;
}

.event-block-three .content .toggle-btn {
    position: absolute;
    left: -14px;
    top: 50%;
    font-size: 13px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border: 1px solid rgb(234, 234, 234);
    border-radius: 6px;
    text-align: center;
    margin-top: -14px;
    background: rgb(255, 255, 255);
    transition: 0.5s;
}

.event-block-three .content .toggle-btn.active {
    background: var(--theme-color-two);
}

.event-block-three .content .toggle-btn.active span::before {
    content: "";
}

.event-block-three .content h4 {
    font-size: 20px;
}

.event-block-three .content h4 a {
    color: var(--dark-color-two);
}

.event-block-three .content .time {
    font-size: 15px;
    margin-right: 20px;
}

.event-block-three .content .time span {
    color: var(--theme-color-two);
    margin-right: 8px;
}

.event-block-three .join-btn {
    position: absolute;
    left: 100%;
    top: 0px;
    color: var(--dark-color-two);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    background: rgb(244, 241, 238);
    padding: 9px 30px;
    width: max-content;
    transform-origin: 0px 0px;
    transform: rotate(90deg);
    transition: 0.5s;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.event-block-three .join-btn:hover {
    background: var(--theme-color-two);
}

.event-block-three .content .text {
    display: none;
    position: absolute;
    top: 35px;
    left: 45px;
    width: max-content;
    background: rgb(255, 255, 255);
}

.payment-donate-section {
    position: relative;
    padding: 110px 0px;
    background-color: rgb(34, 34, 34);
    background-size: cover;
}

.payment-donate-section .chicklet-list label {
    font-size: 18px;
    background: transparent;
    color: rgb(255, 255, 255);
    border-color: rgba(236, 232, 229, 0.1);
    padding: 15px 70px;
    margin-bottom: 0px;
}

.payment-donate-section .chicklet-list :checked + label {
    background: rgb(36, 36, 36);
}

.payment-donate-section .chicklet-list {
    margin: 0px -15px;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.payment-donate-section .chicklet-list li {
    padding: 0px 15px 30px;
    margin-bottom: 0px;
}

.payment-donate-section .other-amount {
    flex-wrap: wrap;
}

.payment-donate-section form .other-amount > * {
    margin-bottom: 30px;
}

.payment-donate-section .other-amount input {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 0px 7.2px 0.8px inset;
    max-width: 370px;
    border-radius: 6px;
    font-size: 18px;
    background: transparent;
    color: rgb(255, 255, 255);
    border: 1px solid rgba(236, 232, 229, 0.1);
    padding: 15px 20px 15px 80px;
    width: 100%;
}

.payment-donate-section .form-group {
    position: relative;
    margin: 0px 30px 0px 0px;
}

.payment-donate-section .form-group::before {
    position: absolute;
    content: "$";
    background: var(--theme-color-two);
    left: 0px;
    top: 0px;
    width: 60px;
    height: 100%;
    text-align: center;
    line-height: 60px;
    color: rgb(26, 26, 26);
    font-size: 18px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.volunteer-section-two {
    position: relative;
    padding: 100px 0px 0px;
    background-size: cover;
}

.volunteer-section-two .volunteer-image {
    height: 480px;
}

.volunteer-section-two .volunteer-image img {
    border-radius: 6px;
}

.volunteer-section-two .swiper-nav-button {
    position: absolute;
    right: 30px;
    bottom: 0px;
    width: 122px;
    height: 60px;
}

.volunteer-section-two .swiper-nav-button .swiper-button-next {
    width: 60px;
    height: 60px;
    background: linear-gradient(307deg, rgb(41, 55, 134) 0px, rgb(162, 29, 46) 100%);
    color: white;
    text-align: center;
    line-height: 60px;
    top: 0px;
    right: 0px;
    margin-top: 0px;
    font-size: 26px;
    border-bottom-right-radius: 6px;
}

.volunteer-section-two .swiper-nav-button .swiper-button-prev {
    width: 60px;
    height: 60px;
    color: white;
    text-align: center;
    line-height: 60px;
    top: 0px;
    left: 0px;
    margin-top: 0px;
    font-size: 26px;
    border-top-left-radius: 6px;
    background: linear-gradient(135deg, rgb(130, 40, 75) 0%, rgb(167, 48, 96) 100%) !important;
}

.volunteer-section-two .volunteer-block {
    position: relative;
    padding-bottom: 50px;
}

.volunteer-section-two .icon-box {
    position: relative;
    font-size: 60px;
    color: var(--theme-color-two);
    margin-bottom: 30px;
    line-height: 60px;
}

.volunteer-section-two h3 {
    font-size: 27px;
    line-height: 38px;
    margin-bottom: 20px;
    color: rgb(40, 26, 91);
}

.volunteer-section-two h4 {
    font-size: 18px;
    margin-bottom: 70px;
    color: rgb(79, 77, 90);
}

.volunteer-section-two h4 span {
    font-size: 16px;
    margin-right: 15px;
    color: var(--theme-color-two);
}

.volunteer-section-two .list {
    margin-left: 40px;
    margin-bottom: 38px;
}

.volunteer-section-two .list li {
    position: relative;
    font-size: 15px;
    color: rgb(133, 133, 133);
    padding-left: 23px;
    margin-bottom: 5px;
}

.volunteer-section-two .list li::before {
    position: absolute;
    content: "";
    font-size: 13px;
    font-family: Flaticon;
    color: var(--theme-color-two);
    left: 0px;
    top: 1px;
    transition: 0.5s;
}

.volunteer-section-two .volunteer-carousel-pagination {
    bottom: 0px;
    counter-reset: count 0;
}

.volunteer-carousel-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .volunteer-carousel-pagination .swiper-pagination-bullet {
    position: relative;
    background: transparent;
    width: 40px;
    height: 35px;
    opacity: 1;
    top: 21px;
}

.volunteer-carousel-pagination .swiper-pagination-bullet::before {
    position: absolute;
    display: inline-block;
    top: 0px;
    left: 0px;
    text-align: center;
    font-size: 18px;
    color: rgb(166, 166, 166);
    font-weight: 400;
    counter-increment: count 1;
    content: "0" counter(count);
    transition: 0.2s;
}

.volunteer-carousel-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    color: var(--theme-color-two);
}

.volunteer-carousel-pagination .swiper-container-horizontal > .swiper-pagination-bullets span + span::after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 1px;
    height: 20px;
    background: rgb(204, 204, 204);
}

.swiper-counter-two {
    position: absolute;
    font-weight: 700;
    font-size: 12px;
    color: rgb(153, 153, 153);
    left: 0px;
    bottom: -14px;
    z-index: 9;
    line-height: 50px;
    display: inline-block;
}

.swiper-counter-two div {
    position: relative;
    top: 0px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    color: rgb(166, 166, 166);
}

.swiper-counter-two div#current {
    margin-right: 20px;
    font-size: 30px;
    color: var(--theme-color-two);
}

.swiper-counter-two div#total {
    right: 6px;
}

.swiper-counter-two div#total::before {
    content: "";
    position: absolute;
    left: -7px;
    width: 1px;
    height: 15px;
    top: 8px;
    font-size: 24px;
    background: rgb(204, 204, 204);
}

.blog-section-two {
    position: relative;
    padding: 110px 0px 80px;
}

.news-block-two {
    position: relative;
}

.news-block-two .inner-box {
    position: relative;
    margin-bottom: 30px;
    box-shadow: rgba(89, 83, 76, 0.08) 0px 0px 45px 5px;
    transition: 0.5s;
    border-radius: 6px;
    padding: 30px;
}

.news-block-two .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: rgba(89, 83, 76, 0.16) 0px 0px 45px 5px;
}

.news-block-two .inner-box::before {
    position: absolute;
    content: "";
    background: var(--theme-color-two);
    height: 2px;
    width: 100%;
    left: 0px;
    bottom: 0px;
    transition: 0.5s;
    transform: scaleX(0);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.news-block-two .inner-box:hover::before {
    transform: scaleX(1);
}

.news-block-two .category {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 9;
}

.news-block-two .category a {
    background: var(--dark-color);
    color: rgb(255, 255, 255);
    padding: 4px 10px;
    border-radius: 6px;
    margin-right: 6px;
}

.news-block-two .image {
    position: relative;
}

.news-block-two .image img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    width: 100%;
}

.news-block-two .post-meta-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.news-block-two .post-meta-info a {
    color: rgb(255, 255, 255);
    margin-right: 10px;
}

.news-block-two .post-meta-info a span {
    margin-right: 10px;
}

.news-block-two .youtube-video-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.news-block-two .youtube-video-box a {
    color: rgb(255, 255, 255);
    font-size: 40px;
}

.news-block-two .lower-content {
    position: relative;
    padding: 20px 0px 0px;
}

.news-block-two .date {
    margin-bottom: 8px;
    color: rgb(133, 133, 133);
}

.news-block-two .date span {
    margin-right: 8px;
    color: var(--theme-color-two);
    font-size: 15px;
}

.news-block-two h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.news-block-two h4 a {
    color: var(--dark-color-two);
    transition: 0.5s;
}

.news-block-two h4 a:hover {
    color: var(--theme-color-two);
}

.news-block-two .author-info {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.news-block-two .author-info .image {
    position: relative;
    margin-right: 10px;
}

.news-block-two .author-info .image img {
    border-radius: 50%;
}

.news-block-two .author-info .author-title {
    font-size: 13px;
    font-weight: 500;
    color: rgb(166, 166, 166);
    text-transform: uppercase;
}

.news-block-two .author-info .author-title a {
    color: rgb(166, 166, 166);
}

.news-block-two .share-icon.style-two ul a:hover {
    background: var(--theme-color-two);
    border-color: var(--theme-color-two);
}

.news-block-two.style-two h4 {
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(234, 234, 234);
}

.news-block-two.style-two .category a {
    background: rgba(0, 0, 0, 0.7);
}

.news-block-two.style-two .date span {
    color: var(--theme-color-three);
}

.news-block-two.style-two h4 a:hover {
    color: var(--theme-color-three);
}

.news-block-two.style-two .inner-box::before {
    background: var(--theme-color-three);
}

.news-block-two.style-two .share-icon.style-two ul a:hover {
    background: var(--theme-color-three);
    border-color: var(--theme-color-three);
}

.news-block-two.style-three h4 a:hover {
    color: var(--theme-color);
}

.news-block-two.style-three .date span {
    color: var(--theme-color);
}

.news-block-two.style-three .inner-box::before {
    background: var(--theme-color);
}

.news-block-two.style-three .share-icon.style-two ul a:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.via-payment-section {
    position: relative;
    padding: 108px 0px;
    text-align: center;
    background-size: cover;
}

.via-payment-section::before {
    position: absolute;
    content: "";
    background: var(--theme-color-two);
    opacity: 0.85;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.via-payment-section h5 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.via-payment-section h1 {
    font-size: 36px;
    line-height: 50px;
    font-family: "Zilla Slab", serif;
    text-transform: uppercase;
    color: rgb(47, 47, 47);
    padding-bottom: 55px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    margin-bottom: 50px;
}

.via-payment-section .owl-carousel .owl-item img {
    width: auto;
}

.about-section-two {
    position: relative;
    padding: 110px 0px 90px;
}

.about-section-two .image {
    position: relative;
    margin-bottom: 30px;
}

.about-section-two .image img {
    width: 100%;
}

.about-section-two h4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    width: max-content;
    text-align: center;
}

.about-section-two .video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: rgb(255, 255, 255);
    width: max-content;
    text-align: center;
}

.about-section-two .text {
    position: relative;
    line-height: 26px;
    margin-top: -8px;
    margin-bottom: 15px;
}

.about-section-two .link-btn {
    position: relative;
    margin-bottom: 30px;
}

.about-section-two .link-btn a {
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: var(--theme-color-three);
    text-transform: uppercase;
}

.about-section-two .link-btn a span {
    margin-right: 10px;
}

.caring-section {
    position: relative;
}

.caring-section .wrapper-box {
    position: relative;
    margin-bottom: -160px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.05) 0px -20px 20px 0px;
    padding: 55px;
    z-index: 9;
}

.caring-block + .caring-block {
    position: relative;
    border-left: 1px solid rgb(234, 234, 234);
}

.caring-block .inner-box {
    position: relative;
}

.caring-block .icon-box {
    position: relative;
    font-size: 60px;
    color: rgb(182, 182, 182);
    margin: 10px auto 30px;
    width: 120px;
    height: 120px;
    line-height: 120px;
    background: rgb(244, 241, 238);
    border-radius: 50%;
    transition: 0.5s;
    text-align: center;
}

.caring-block .icon-box span {
    position: relative;
}

.caring-block .inner-box:hover .icon-box {
    color: rgb(255, 255, 255);
    background: var(--theme-color-three);
}

.caring-block .icon-box::before {
    position: absolute;
    content: "";
    border: 10px solid rgb(255, 255, 255);
    left: 0px;
    top: 0px;
    width: 120px;
    height: 120px;
    transition: 0.5s;
    border-radius: 50%;
}

.caring-block .inner-box:hover .icon-box::before {
    border-color: var(--theme-color-three);
}

.caring-block .icon-box::after {
    position: absolute;
    content: "";
    border: 3px dotted var(--theme-color-three);
    left: 0px;
    top: 0px;
    width: 120px;
    height: 120px;
    transition: 0.5s;
    border-radius: 50%;
}

.caring-block .inner-box:hover .icon-box::after {
    border: 50px dotted var(--theme-color-three);
}

.caring-block .icon-box span {
    position: relative;
    z-index: 2;
}

.caring-block h4 {
    position: relative;
    font-size: 20px;
    text-align: center;
}

.funfacts-section-two {
    position: relative;
    padding: 260px 0px 80px;
    background: rgb(205, 10, 52);
}

.funfacts-section-two::before {
    position: absolute;
    content: "";
    background: var(--theme-color-three);
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.funfacts-section-two .sec-title h5 {
    color: rgb(255, 255, 255);
}

.counter-block-two {
    position: relative;
    margin-bottom: 30px;
    padding: 20px 15px;
}

.counter-block-two::before {
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, 0.4);
    width: 1px;
    height: 100%;
    right: 45px;
    top: 0px;
    transform: rotate(45deg);
}

.counter-block-two:last-child::before {
    display: none;
}

.counter-block-two .inner-box {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.counter-block-two .count-box {
    position: relative;
    font-size: 48px;
    font-weight: 500;
    line-height: 55px;
    color: rgb(255, 255, 255);
    min-width: 120px;
    text-align: right;
    margin-right: 20px;
}

.counter-block-two .text {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    line-height: 24px;
}

.funfacts-section-two.style-two {
    padding-top: 110px;
    background: rgb(48, 44, 81);
}

.funfacts-section-two.style-two::before {
    background: rgb(48, 44, 81);
    opacity: 0.95;
}

.funfacts-section-two.style-two .sec-title h5 {
    color: var(--theme-color);
}

.funfacts-section-two.style-two .counter-block-two .count-box {
    color: var(--theme-color);
}

.funfacts-section-two.style-three {
    padding: 110px 0px 80px;
    background: rgb(36, 36, 36);
}

.funfacts-section-two.style-three .sec-title h5 {
    color: var(--theme-color-five);
}

.funfacts-section-two.style-three::before {
    background: url("../images/resource/pattern-2.png") rgb(36, 36, 36);
}

.funfacts-section-two.style-three .counter-block-two .inner-box {
    display: block;
    text-align: center;
}

.funfacts-section-two.style-three .counter-block-two .count-box {
    text-align: center;
    margin-bottom: 20px;
    color: var(--theme-color-five);
}

.funfacts-section-two.style-three .counter-block-two h4 {
    color: rgb(255, 255, 255);
    font-size: 20px;
    margin-bottom: 20px;
}

.funfacts-section-two.style-three .counter-block-two::before {
    transform: rotate(0deg);
    right: 0px;
    opacity: 0.2;
}

.funfacts-section-two.style-three .counter-block-two {
    padding: 0px 15px;
}

.causes-section-four {
    position: relative;
    padding: 110px 0px 70px;
    background: rgb(255, 255, 255);
}

.cause-block-four {
    position: relative;
}

.cause-block-four .inner-box {
    position: relative;
    border: 1px solid rgb(234, 234, 234);
    padding-bottom: 40px;
    padding-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    transition: 0.7s;
}

.cause-block-four .inner-box:hover {
    box-shadow: rgba(89, 83, 76, 0.1) 0px 20px 20px 0px;
    border-color: rgb(255, 255, 255);
}

.cause-block-four .inner-box::before {
    position: absolute;
    content: "";
    background-image: url("../images/resource/shape-1.png");
    background-size: cover;
    background-position: center bottom;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 170px;
    transition: 0.5s;
}

.cause-block-four .inner-box:hover::before {
    background-image: url("../images/resource/shape-2.png");
}

.cause-block-four .image {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.cause-block-four .image img {
    border-radius: 50%;
}

.cause-block-four .image .overlay {
    position: absolute;
    inset: 0px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.cause-block-four .image .overlay::before {
    position: absolute;
    content: "";
    background: rgb(48, 44, 81);
    opacity: 0;
    inset: 0px;
    border-radius: 50%;
    transition: 1s;
    transform: scale(0.5);
}

.cause-block-four .image:hover .overlay::before {
    transform: scale(1);
    opacity: 0.93;
}

.cause-block-four .image .overlay .donate-box-btn {
    position: relative;
    font-size: 13px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s 0.3s;
}

.cause-block-four .image:hover .overlay .donate-box-btn {
    opacity: 1;
    visibility: visible;
}

.cause-block-four h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.cause-block-four h4 a {
    color: rgb(30, 30, 30);
    transition: 0.5s;
}

.cause-block-four h4 a:hover {
    color: var(--theme-color-three);
}

.cause-block-four .text {
    margin-bottom: 30px;
}

.cause-block-four .info-box {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-wrap: wrap;
    border: 1px solid rgb(234, 234, 234);
    margin: 0px 30px;
    padding: 20px 0px;
}

.cause-block-four .info-box a {
    font-size: 13px;
    text-transform: uppercase;
    color: rgb(30, 30, 30);
    line-height: 11px;
    position: relative;
    top: 5px;
}

.cause-block-four .info-box a span {
    color: var(--theme-color-three);
    display: block;
}

.cause-block-four .info-box > div {
    position: relative;
    width: 33%;
}

.cause-block-four .info-box > div + div::before {
    position: absolute;
    content: "";
    background: rgb(234, 234, 234);
    height: 35px;
    width: 1px;
    left: 0px;
    top: 0px;
}

.cause-block-four .count-box {
    position: relative;
    font-size: 18px;
    color: var(--theme-color-three);
    padding: 5px 0px;
}

.cause-block-four.style-two .inner-box:hover::before {
    background-image: url("../images/resource/shape-3.png");
}

.cause-block-four.style-two h4 a:hover {
    color: var(--theme-color);
}

.cause-block-four.style-two .info-box a span {
    color: var(--theme-color);
}

.cause-block-four.style-two .count-box {
    color: var(--theme-color);
}

.upcoming-events-section {
    position: relative;
    padding: 110px 0px;
    background: rgb(27, 27, 27);
}

.event-block-four {
    position: relative;
    text-align: center;
}

.event-block-four h1 {
    font-size: 72px;
    line-height: 80px;
    font-family: "Zilla Slab", serif;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

.event-block-four .text {
    margin-bottom: 30px;
}

.event-block-four .link-box a {
    margin: 0px 10px;
}

.upcoming-events-section .owl-nav-style-three .owl-nav .owl-next, .upcoming-events-section .owl-nav-style-three .owl-nav .owl-prev {
    color: rgb(133, 133, 133);
    border-color: rgba(255, 255, 255, 0.1);
}

.upcoming-events-section .owl-nav-style-three .owl-nav .owl-next:hover, .upcoming-events-section .owl-nav-style-three .owl-nav .owl-prev:hover {
    color: var(--theme-color-three);
    border-color: var(--theme-color-three);
}

.team-section-two {
    position: relative;
    padding: 110px 0px;
}

.team-block-two {
    position: relative;
}

.team-block-two .inner-box {
    position: relative;
    padding-top: 22px;
    margin-bottom: 30px;
}

.team-block-two .inner-box .image img {
    width: 100%;
}

.team-block-two .overlay {
    position: absolute;
    inset: 0px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.team-block-two .author-info {
    position: relative;
    top: 0px;
    width: 100%;
    padding: 45px 0px;
    text-align: center;
}

.team-block-two .author-info::before {
    position: absolute;
    content: "";
    background: var(--theme-color-three);
    top: 0px;
    height: 0%;
    right: 22px;
    left: 22px;
    transition: 0.5s;
    border-radius: 4px;
}

.team-block-two .inner-box:hover .author-info::before {
    height: 100%;
}

.team-block-two .author-info h4 {
    font-size: 20px;
    color: rgb(255, 255, 255);
    transition: 0.7s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    margin-bottom: 5px;
}

.team-block-two .inner-box:hover .author-info h4 {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.5s;
    transform: translateY(0px);
}

.team-block-two .author-info h4 a {
    color: rgb(255, 255, 255);
}

.team-block-two .author-info .designation {
    color: rgb(255, 255, 255);
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: 0.7s;
}

.team-block-two .inner-box:hover .author-info .designation {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.9s;
    transform: translateY(0px);
}

.team-block-two .social-icon-two {
    position: relative;
    margin-bottom: 20px;
}

.team-block-two .social-icon-two li {
    padding: 0px;
    margin: 0px 5px;
    border: 0px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.team-block-two .inner-box:hover .social-icon-two li {
    opacity: 1;
    visibility: visible;
    transform: rotate(360deg);
}

.team-block-two .social-icon-two li a {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
}

.team-block-two .social-icon-two li a:hover {
    background: var(--theme-color-three);
    color: rgb(255, 255, 255);
}

.team-block-two .inner-box:hover .social-icon-two li:nth-child(2) {
    transition-delay: 0.2s;
}

.team-block-two .inner-box:hover .social-icon-two li:nth-child(3) {
    transition-delay: 0.4s;
}

.team-block-two .inner-box:hover .social-icon-two li:nth-child(4) {
    transition-delay: 0.6s;
}

.team-section-two .owl-dot-style-one .owl-dots {
    margin-top: 5px;
}

.team-section-two .owl-dot-style-one .owl-dots .owl-dot span {
    height: 14px;
    width: 14px;
}

.team-section-two .owl-dot-style-one .owl-dots .owl-dot.active span {
    border-color: var(--theme-color-three);
}

.team-section-two.style-two {
    padding-top: 70px;
}

.team-section-two.style-two .auto-container {
    max-width: 100%;
    padding: 0px;
}

.team-section-two.style-two .team-block-two .author-info::before {
    background: var(--theme-color);
}

.team-section-two.style-two .team-block-two .social-icon-two li a:hover {
    background: var(--theme-color);
}

.team-section-two.style-two .owl-dot-style-one .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
}

.team-section-two.style-two .owl-dot-style-one .owl-dots .owl-dot.active span {
    border-color: var(--theme-color);
}

.payment-donate-section-two {
    position: relative;
    background: rgb(26, 26, 26);
}

.payment-donate-section-two .sec-bg-one {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 36%;
    background-position: left center;
    background-size: cover;
}

.payment-donate-section-two .sec-bg-two {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 35%;
    background-position: right center;
    background-size: cover;
}

.payment-donate-section-two .tab-content {
    background: var(--theme-color-three);
    padding: 110px 50px;
    margin-right: -30px;
}

.payment-donate-section-two .tab-content h1 {
    font-size: 36px;
    color: rgb(255, 255, 255);
    font-family: "Zilla Slab", serif;
    line-height: 46px;
    margin-bottom: 20px;
}

.payment-donate-section-two .tab-content .text {
    color: rgb(255, 255, 255);
    margin-bottom: 30px;
}

.payment-donate-section-two .chicklet-list label {
    font-size: 18px;
    background: transparent;
    color: rgb(255, 255, 255);
    border-color: rgba(236, 232, 229, 0.1);
    padding: 10px 33px;
    margin-bottom: 0px;
    border-radius: 0px;
}

.payment-donate-section-two .chicklet-list :checked + label {
    background: rgb(180, 0, 43);
}

.payment-donate-section-two .chicklet-list {
    margin: 0px -15px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.payment-donate-section-two .chicklet-list li {
    padding: 0px 15px 30px;
    margin-bottom: 0px;
}

.payment-donate-section-two .other-amount {
    flex-wrap: wrap;
}

.payment-donate-section-two .other-amount * {
    margin-bottom: 30px;
}

.payment-donate-section-two .other-amount input {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 0px 7.2px 0.8px inset;
    max-width: 300px;
    font-size: 18px;
    background: transparent;
    color: rgb(255, 255, 255);
    border: 1px solid rgba(236, 232, 229, 0.1);
    padding: 10px 20px 10px 40px;
    width: 100%;
    border-radius: 0px;
}

.payment-donate-section-two .form-group {
    position: relative;
    margin: 0px 30px 0px 0px;
}

.payment-donate-section-two .form-group::before {
    position: absolute;
    content: "$";
    background: transparent;
    left: 0px;
    top: 0px;
    width: 60px;
    height: 100%;
    text-align: center;
    line-height: 50px;
    color: rgb(255, 255, 255);
    font-size: 18px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.payment-donate-section-two .info-box {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.payment-donate-section-two .info-box a {
    color: rgb(255, 255, 255);
}

.payment-donate-section-two .info-box a span {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
}

.payment-donate-section-two .progress-levels {
    padding-bottom: 40px;
}

.payment-donate-section-two .progress-levels .progress-box .bar {
    background: rgb(180, 0, 43);
}

.payment-donate-section-two .progress-levels .progress-box .bar .bar-fill {
    background: rgb(255, 255, 255);
}

.payment-donate-section-two .btn-style-ten {
    padding: 13px 40px;
}

.payment-donate-section-two .btn-style-ten::after {
    background: rgb(180, 0, 43);
}

.payment-donate-section-two .nav-tabs {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    margin-left: 80px;
}

.payment-donate-section-two .nav-tabs li {
    width: 100%;
    background: transparent;
    margin: 10px 0px;
}

.payment-donate-section-two .nav-tabs li .nav-link {
    position: relative;
    color: rgb(80, 80, 80);
    font-size: 18px;
    font-weight: 500;
    padding-left: 0px;
    padding-right: 0px;
}

.payment-donate-section-two .nav-tabs .nav-link.active {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: transparent;
    color: rgb(255, 255, 255);
}

.payment-donate-section-two .nav-tabs .nav-link:hover {
    border-color: transparent;
}

.payment-donate-section-two .nav-tabs li .nav-link::after {
    position: absolute;
    content: "";
    font-family: Flaticon;
    font-size: 16px;
    color: var(--theme-color-three);
    left: -32px;
    top: 9px;
    transition: 0.5s;
    opacity: 0;
    transform: translateX(-10px);
}

.payment-donate-section-two .nav-tabs .nav-link.active::after {
    opacity: 1;
    transform: translateX(0px);
}

.payment-donate-section-two .nav-tabs li .nav-link::before {
    position: absolute;
    content: "";
    background: var(--theme-color-three);
    height: 1px;
    width: 50px;
    left: -80px;
    top: 23px;
    transition: 0.5s 0.4s;
    opacity: 0;
    transform: scale(0);
    transform-origin: 0px 0px;
}

.payment-donate-section-two .nav-tabs .nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.testimonial-section-two {
    position: relative;
    padding: 110px 0px 80px;
    background: rgb(244, 241, 238);
}

.testimonial-section-two::before {
    position: absolute;
    content: "";
    inset: 0px;
    background: url("../images/resource/map-2.png") center center no-repeat;
}

.testimonial-section-two .wrapper-box {
    position: relative;
    padding-right: 50px;
}

.testimonial-block-two .inner-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

.testimonial-block-two .author-box .image {
    margin-right: 80px;
    position: relative;
}

.testimonial-block-two .author-box .image img {
    border-radius: 50%;
}

.testimonial-block-two .author-box .image .share-icon {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: var(--theme-color-three);
    color: rgb(255, 255, 255);
    font-size: 13px;
    border-radius: 50%;
}

.testimonial-block-two .content-box {
    position: relative;
    background: rgb(255, 255, 255);
    padding: 45px 40px 45px 85px;
    border-left: 2px solid var(--theme-color-three);
}

.testimonial-block-two .content-box .icon-box {
    position: absolute;
    left: -42px;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-block-two h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-block-two .text {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
    margin-right: 50px;
}

.testimonial-block-two .author-info {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.testimonial-block-two .author-title {
    font-size: 20px;
    color: rgb(30, 30, 30);
}

.testimonial-block-two .designation {
    font-size: 15px;
}

.testimonial-block-two .designation a {
    color: var(--theme-color-three);
}

.testimonial-block-two .rating {
    position: absolute;
    right: 50px;
    bottom: 40px;
}

.testimonial-block-two .rating a {
    color: var(--theme-color-three);
    font-size: 16px;
}

.testimonial-block-two .rating a + a {
    margin-left: 2px;
}

.testimonial-section-two .owl-dot-style-one .owl-dots {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    counter-reset: count 0;
    margin: 0px;
}

.testimonial-section-two .owl-dot-style-one .owl-dots::before {
    position: absolute;
    content: "";
    background: rgb(220, 217, 214);
    width: 2px;
    top: 20px;
    left: 19px;
    bottom: 20px;
}

.testimonial-section-two .owl-dot-style-one .owl-dots .owl-dot {
    display: block;
    margin: 15px 0px;
}

.testimonial-section-two .owl-dot-style-one .owl-dots .owl-dot span {
    width: 40px;
    height: 40px;
    background: rgb(244, 241, 238);
}

.testimonial-section-two .owl-dot-style-one .owl-dots .owl-dot.active span, .testimonial-section-two .owl-dot-style-one .owl-dots .owl-dot:hover span {
    border-color: var(--theme-color-three);
}

.testimonial-section-two .owl-dot-style-one .owl-dots .owl-dot::before {
    position: absolute;
    display: inline-block;
    top: 0px;
    left: 0px;
    width: 40px;
    text-align: center;
    font-size: 18px;
    line-height: 40px;
    color: rgb(166, 166, 166);
    font-weight: 500;
    counter-increment: count 1;
    content: "" counter(count);
    z-index: 9;
}

.testimonial-section-two .owl-dot-style-one .owl-dots .owl-dot.active::before {
    color: var(--theme-color-three);
}

.gallery-section {
    position: relative;
    background: rgb(212, 0, 50);
}

.gallery-section .wrapper-box {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.gallery-section .content-column {
    position: relative;
    padding: 100px 60px 45px;
    width: 25%;
}

.gallery-section .content-column h5 {
    color: rgb(255, 255, 255);
}

.gallery-section .content-column .link-btn {
    text-align: right;
}

.gallery-section .content-column .link-btn a {
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
}

.gallery-section .content-column .link-btn a span {
    margin-right: 10px;
}

.gallery-section .portfolio-column {
    position: relative;
    width: 75%;
    overflow: hidden;
}

.gallery-block-one .inner-box {
    position: relative;
}

.gallery-block-one .image {
    position: relative;
    overflow: hidden;
}

.gallery-block-one .image img {
    width: 100%;
}

.gallery-block-one .overlay {
    position: absolute;
    inset: 0px;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    justify-content: center;
}

.gallery-block-one .overlay::before {
    position: absolute;
    content: "";
    background: rgb(0, 0, 0);
    left: 0px;
    top: 0px;
    width: 100%;
    height: 0%;
    opacity: 0.85;
    transition: 0.5s;
}

.gallery-block-one .inner-box:hover .overlay::before {
    height: 100%;
}

.gallery-block-one h4 {
    position: relative;
    font-size: 20px;
    color: rgb(255, 255, 255);
    margin-bottom: 35px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.5s 1s;
}

.gallery-block-one .inner-box:hover h4 {
    opacity: 1;
    visibility: visible;
    transform: translateY(2px);
}

.gallery-block-one h4 a {
    color: rgb(255, 255, 255);
}

.gallery-block-one .zoom-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.gallery-block-one .inner-box:hover .zoom-btn {
    opacity: 1;
    visibility: visible;
}

.gallery-block-one .zoom-btn::before {
    position: absolute;
    content: "";
    background: var(--theme-color-three);
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    transition: 0.8s 0.5s;
    transform: scale(0.5);
    border-radius: 50%;
}

.gallery-block-one .inner-box:hover .zoom-btn::before {
    transform: scale(1);
}

.gallery-block-one .zoom-btn span {
    position: relative;
}

.gallery-section .owl-nav-style-three .owl-nav {
    z-index: 0;
    height: 0px;
}

.gallery-section .owl-nav-style-three .owl-nav .owl-prev {
    left: -55px;
    background: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
    height: 110px;
    width: 110px;
    line-height: 110px;
    text-align: right;
    padding-right: 25px;
    font-size: 35px;
}

.gallery-section .owl-nav-style-three .owl-nav .owl-next {
    right: -55px;
    background: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
    height: 110px;
    width: 110px;
    line-height: 110px;
    text-align: left;
    padding-left: 25px;
    font-size: 35px;
}

.gallery-section .owl-nav-style-three .owl-nav .owl-next:hover, .gallery-section .owl-nav-style-three .owl-nav .owl-prev:hover {
    color: var(--theme-color-three);
    border-color: rgb(255, 255, 255);
}

.page-title {
    position: relative;
    background-size: cover;
    background-attachment: fixed;
}

.page-title::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(130, 40, 75, 0.22) 0%, rgba(167, 48, 96, 0.66) 100%) !important;
}

.page-title .content-box {
    position: relative;
    padding: 115px 0px;
}

.page-title h1 {
    color: rgb(255, 255, 255);
    font-size: 48px;
    text-align: center;
}

.page-title .text {
    position: relative;
    color: rgb(255, 255, 255);
    font-size: 20px;
    margin-bottom: 70px;
}

.page-title .bread-crumb {
    position: absolute;
    left: 0px;
    bottom: -25px;
    background: rgb(255, 255, 255);
    padding: 10px 18px;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 20px 0px;
    z-index: 9;
}

.page-title .bread-crumb li {
    position: relative;
    font-size: 16px;
    color: rgb(48, 44, 81);
    font-weight: 400;
    display: inline-block;
    padding-right: 20px;
    margin-right: 10px;
}

.page-title .bread-crumb li::before {
    position: absolute;
    content: "";
    right: 0px;
    top: 0px;
    width: 1px;
    height: 30px;
    background: rgb(234, 234, 234);
}

.page-title .bread-crumb li:last-child::before {
    display: none;
}

.page-title .bread-crumb li a {
    color: var(--theme-color);
    font-weight: 400;
    transition: 0.5s;
}

.page-title .bread-crumb li a:hover {
    color: var(--theme-color);
}

.page-title .bread-crumb li a.home {
    font-size: 24px;
}

.history-section {
    position: relative;
    padding: 110px 0px;
    background: rgb(255, 255, 255);
}

.history-section .description {
    position: relative;
    margin-bottom: 60px;
}

.history-section .description .top-content {
    margin-bottom: 50px;
}

.history-section .description .icon-box {
    position: relative;
    font-size: 65px;
    line-height: 65px;
    color: var(--theme-color);
    margin-bottom: 20px;
}

.history-section .description h1 {
    font-size: 36px;
    font-family: "Zilla Slab", serif;
    color: var(--dark-color);
}

.history-section .description h4 {
    font-size: 20px;
    line-height: 34px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.history-section .description h4 span {
    color: var(--theme-color);
}

.history-section .description h3 {
    font-size: 22px;
    color: var(--dark-color);
    font-family: "Zilla Slab", serif;
    margin-bottom: 15px;
}

.history-section .history-image {
    height: 390px;
    margin-bottom: 35px;
}

.history-section .history-image .image {
    position: relative;
    padding: 30px;
    text-align: center;
    transform: scale(0.7);
    transition: 1s;
}

.history-section .history-image .image::before {
    position: absolute;
    content: "";
    background: rgb(244, 241, 238);
    inset: 0px;
    border-radius: 50%;
}

.history-section .history-image .swiper-slide.swiper-slide-active .image {
    transform: scale(1);
}

.history-section .history-image img {
    position: relative;
    width: 100%;
    border-radius: 4px;
}

.history-section .history-image .year {
    position: absolute;
    left: 0px;
    bottom: 60px;
    width: 100%;
    font-size: 30px;
    color: rgb(255, 255, 255);
    font-family: "Zilla Slab", serif;
}

.history-section .history-content .text {
    text-align: center;
}

.history-section .swiper-nav-button .swiper-button-prev, .history-section .swiper-nav-button .swiper-button-next {
    width: 60px;
    height: 60px;
    background: transparent;
    text-align: center;
    line-height: 60px;
    top: 0px;
    right: 0px;
    margin-top: 0px;
    font-size: 24px;
    color: rgb(166, 166, 166);
    transition: 0.5s;
}

.history-section .swiper-nav-button .swiper-button-prev:hover, .history-section .swiper-nav-button .swiper-button-next:hover {
    color: var(--theme-color);
}

.history-section .swiper-nav-button .swiper-button-prev {
    transform: rotate(-180deg);
}

.history-section .swiper-nav-button .swiper-button-prev::before {
    position: absolute;
    content: "";
    background: rgb(216, 216, 216);
    height: 1px;
    width: 72px;
    left: -60px;
    top: 29px;
    transition: 0.5s;
}

.history-section .swiper-nav-button .swiper-button-next::before {
    position: absolute;
    content: "";
    background: rgb(216, 216, 216);
    height: 1px;
    width: 72px;
    left: -60px;
    top: 30px;
    transition: 0.5s;
}

.history-section .swiper-nav-button .swiper-button-prev:hover::before, .history-section .swiper-nav-button .swiper-button-next:hover::before {
    background: var(--theme-color);
}

.whychoose-us-section {
    position: relative;
    padding: 110px 0px 90px;
    background: rgb(244, 241, 238);
}

.whychoose-us-block {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.whychoose-us-block .icon-box {
    position: relative;
    width: 62px;
    height: 62px;
    border: 2px solid rgb(210, 210, 210);
    border-radius: 50%;
    line-height: 58px;
    text-align: center;
    font-size: 16px;
    color: var(--theme-color);
    margin-right: 35px;
    margin-bottom: 15px;
}

.whychoose-us-block h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.whychoose-us-section .link-btn {
    padding-top: 20px;
    margin-bottom: 30px;
}

.whychoose-us-section .image-block {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.whychoose-us-section .image-block .logo-box {
    position: absolute;
    top: 50px;
    right: 0px;
    width: 160px;
    height: 160px;
    text-align: center;
    line-height: 160px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    z-index: 99;
}

.whychoose-us-section .image-block .logo-box .image {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 140px;
    height: 140px;
    text-align: center;
    line-height: 140px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
}

.whychoose-us-section .image-block .logo-box .image::before {
    position: absolute;
    content: "";
    width: 120px;
    height: 120px;
    border: 3px dotted var(--theme-color);
    left: 10px;
    top: 10px;
    border-radius: 50%;
}

.whychoose-us-section .image-block .logo-box img {
    position: relative;
}

.whychoose-us-section .image-block .contact-info-two {
    position: absolute;
    top: 100px;
    left: 0px;
    padding: 40px 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
    background: rgb(255, 255, 255);
    text-align: center;
    border-radius: 4px;
}

.whychoose-us-section .image-block .contact-info-two h5 {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-color);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.whychoose-us-section .image-block .contact-info-two .icon-box {
    position: relative;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    background: rgb(244, 241, 238);
    border-radius: 50%;
    font-size: 20px;
    color: var(--theme-color);
    margin: 0px auto 13px;
}

.whychoose-us-section .image-block .contact-info-two .phone-number a {
    font-size: 20px;
    color: var(--dark-color);
}

.whychoose-us-section .image-block .video-box {
    position: absolute;
    bottom: 50px;
    right: 0px;
    border-radius: 4px;
}

.whychoose-us-section .image-block .video-box img {
    border-radius: 4px;
}

.whychoose-us-section .image-block .video-box::before {
    position: absolute;
    content: "";
    background: rgb(48, 44, 81);
    inset: 0px;
    opacity: 0.9;
    border-radius: 4px;
}

.whychoose-us-section .image-block .video-box .video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    line-height: 58px;
    text-align: center;
    font-size: 20px;
    color: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
    box-shadow: rgba(89, 83, 76, 0.3) 0px 20px 20px 0px;
    border-radius: 50%;
}

.faq-section {
    position: relative;
    padding: 110px 0px;
}

.accordion-box {
    position: relative;
    display: block;
    padding-left: 55px;
    counter-reset: count 0;
}

.accordion-box .accordion {
    position: relative;
    display: block;
    margin-bottom: 20px;
    border-left: 5px solid rgb(234, 234, 234);
    border-bottom: 5px solid rgb(234, 234, 234);
    padding: 0px 30px;
}

.accordion-box .accordion.active {
    border-color: var(--theme-color);
}

.accordion-box .accordion .accord-btn {
    position: relative;
    display: block;
    cursor: pointer;
    background: rgb(255, 255, 255);
    padding: 24px 0px;
    transition: 500ms;
}

.accordion-box .accordion .accord-btn span {
    position: absolute;
    left: -90px;
    top: 14px;
    height: 40px;
    width: 40px;
    background: transparent;
    color: rgb(191, 191, 191);
    text-align: center;
    line-height: 38px;
    font-size: 14px;
    transition: 0.5s;
}

.accordion-box .accordion .accord-btn span::before {
    position: absolute;
    display: inline-block;
    top: 0px;
    left: 0px;
    width: 58px;
    font-size: 24px;
    line-height: 48px;
    color: rgb(166, 166, 166);
    font-weight: 400;
    counter-increment: count 1;
    content: "0" counter(count) ".";
    text-align: left;
}

.accordion-box .accordion .accord-btn.active span {
    color: rgb(255, 255, 255);
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.accordion-box .accordion .accord-btn h4 {
    color: var(--dark-color);
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    transition: 500ms;
}

.accordion-box .accordion .accord-btn::after {
    font-family: Flaticon;
    position: absolute;
    top: 25px;
    right: -30px;
    color: rgb(180, 180, 180);
    content: "";
    font-size: 24px;
    line-height: 25px;
    font-weight: 300;
    transition: 500ms;
}

.accordion-box .accordion .accord-btn.active {
    transition: 500ms;
}

.accordion-box .accordion .accord-btn.active h4 {
}

.accordion-box .accordion.active .accord-btn::after {
    color: var(--theme-color);
    content: "";
}

.accordion-box .accordion .accord-content {
    position: relative;
    padding: 0px 20px 20px 0px;
    display: none;
}

.accordion-box .accordion .accord-content.collapsed {
    display: block;
}

.accordion-box .accordion .accord-content p {
    margin: 0px;
}

.team-section-three {
    position: relative;
    padding: 110px 0px 0px;
}

.team-block-three {
    position: relative;
}

.team-block-three .inner-box {
    position: relative;
    margin-bottom: 30px;
    box-shadow: rgba(89, 83, 76, 0.08) 0px 0px 45px 5px;
    background: rgb(255, 255, 255);
    border-radius: 6px;
    z-index: 9;
    transition: 0.5s;
}

.team-block-three .inner-box:hover {
    box-shadow: rgba(89, 83, 76, 0.1) 0px 20px 20px 0px;
}

.team-block-three .image {
    position: relative;
    transition: 0.5s;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    overflow: hidden;
}

.team-block-three .image img {
    width: 100%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.team-block-three .image .overlay {
    position: absolute;
    inset: 0px;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
}

.team-block-three .image .overlay::before {
    position: absolute;
    content: "";
    background: rgb(48, 44, 81);
    inset: 0px;
    transition: 0.5s;
    opacity: 0;
    transform: scale(0.7);
}

.team-block-three .image:hover .overlay::before {
    opacity: 0.96;
    transform: scale(1);
}

.team-block-three .image .overlay h4 {
    color: rgb(255, 255, 255);
    font-size: 20px;
    transition: 0.7s 0.3s;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    margin-bottom: 6px;
}

.team-block-three .image:hover .overlay h4 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.team-block-three .image .overlay .text {
    color: rgb(155, 153, 173);
    margin-bottom: 15px;
    transition: 0.5s 0.6s;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
}

.team-block-three .image:hover .overlay .text {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.team-block-three .image .overlay .link-btn {
    position: relative;
    transition: 0.9s 0.9s;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
}

.team-block-three .image .overlay .link-btn .theme-btn {
    padding: 11px 48px;
}

.team-block-three .image:hover .overlay .link-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.team-block-three .lower-content {
    position: relative;
    margin: -30px 20px 0px;
    padding: 23px 15px;
    background: rgb(255, 255, 255);
    text-align: center;
    border-radius: 6px;
    z-index: 9;
    transition: 0.5s;
}

.team-block-three .lower-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-block-three .lower-content h4 a {
    color: var(--dark-color);
    transition: 0.5s;
}

.team-block-three .lower-content h4 a:hover {
    color: var(--theme-color);
}

.posts-pagination {
    position: relative;
    text-align: center;
}

.posts-pagination ul {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.posts-pagination ul li {
    margin: 0px 9px;
}

.posts-pagination ul li a {
    position: relative;
    color: var(--dark-color);
    height: 52px;
    width: 52px;
    line-height: 48px;
    text-align: center;
    border: 2px solid rgb(234, 234, 234);
    display: inline-block;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
}

.posts-pagination ul li:first-child a {
    transform: rotate(-180deg);
}

.posts-pagination ul li a:hover {
    color: var(--theme-color);
    border-color: var(--theme-color);
}

.default-video-box {
    position: relative;
    height: 100px;
    width: 100px;
    line-height: 100px;
    text-align: center;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    font-size: 30px;
    float: right;
}

.default-video-box::before {
    position: absolute;
    content: "";
    height: 140px;
    width: 140px;
    top: -20px;
    left: -20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.default-video-box::after {
    position: absolute;
    content: "";
    height: 120px;
    width: 120px;
    top: -10px;
    left: -10px;
    border-radius: 50%;
    border: 10px solid rgb(255, 255, 255);
    opacity: 0.3;
}

.default-video-box a {
    position: relative;
    z-index: 5;
    color: var(--theme-color-two);
    width: 100px;
    height: 100px;
    display: block;
    border-radius: 50%;
    background: rgb(255, 255, 255);
}

.default-video-box a::before {
    position: absolute;
    content: "";
    background: var(--theme-color-two);
    inset: 0px;
    border-radius: 50%;
    transform: scale(0.2);
    opacity: 0;
    transition: 0.5s;
}

.default-video-box a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.default-video-box a:hover {
    color: rgb(255, 255, 255);
}

.default-video-box a span {
    position: relative;
}

.default-video-box:hover::before {
    box-shadow: rgba(255, 255, 255, 0.09) 0px 0px 0px 0px;
    animation: 3s ease 0s infinite normal none running ripple;
}

.default-video-box.style-two a {
    color: var(--theme-color);
}

.default-video-box.style-two a:hover {
    color: rgb(255, 255, 255);
}

.default-video-box.style-two a::before {
    background: var(--theme-color);
}

.case-details {
    position: relative;
    padding: 110px 0px 90px;
}

#wrapper {
    position: relative;
}

.progress {
    width: 90px;
    height: 90px;
    background: transparent;
    font-size: inherit;
    border-radius: 0px;
}

.progress .track, .progress .fill {
    fill: rgba(0, 0, 0, 0);
    stroke-width: 3;
    transform: rotate(90deg) translate(0px, -80px);
}

.progress .track {
    stroke: rgb(225, 225, 225);
}

.progress .fill {
    stroke: rgb(255, 255, 255);
    stroke-dasharray: 219.991;
    stroke-dashoffset: -219.991;
    transition: stroke-dashoffset 1s;
}

.progress .fill {
    stroke: var(--theme-color);
}

.progress .value, .progress .text {
    fill: var(--theme-color);
    text-anchor: middle;
}

.noselect {
    user-select: none;
    cursor: default;
}

.upcoming-events-section-two {
    position: relative;
    padding: 110px 0px;
    background: 0% 0% / cover rgb(27, 27, 27);
}

.upcoming-events-section-two .sec-title h5 {
    color: var(--theme-color);
}

.event-block-five {
    position: relative;
    text-align: center;
}

.event-block-five h1 {
    font-size: 72px;
    line-height: 80px;
    font-family: "Zilla Slab", serif;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

.event-block-five .text {
    margin-bottom: 30px;
}

.event-block-five .link-box a {
    margin: 0px 10px;
    color: rgb(255, 255, 255);
    border-radius: 29px;
}

.event-block-five .link-box .btn-style-thirteen {
    padding: 17px 48px;
}

.countdown-timer-two {
    text-align: center;
    margin-bottom: 55px;
}

.countdown-timer-two li {
    position: relative;
    display: inline-block;
    float: none;
    text-align: center;
    margin: 0px 10px;
}

.countdown-timer-two li:first-child {
    margin-left: 0px;
}

.countdown-timer-two li:last-child {
    margin-right: 0px;
}

.countdown-timer-two li span.days, .countdown-timer-two li span.hours, .countdown-timer-two li span.minutes, .countdown-timer-two li span.seconds {
    position: relative;
    text-align: center;
    border-radius: 50%;
    font-size: 48px;
    color: var(--theme-color);
    height: 130px;
    width: 130px;
    line-height: 130px;
    background: url("../images/resource/border-circular-shape.png") center center no-repeat;
    display: inline-block;
}

.countdown-timer-two li span.timeRef {
    position: relative;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    transform-origin: 0px 0px;
    transform: rotate(90deg);
    width: 60px;
    right: -40px;
    top: -20px;
}

.upcoming-events-section-two.style-two {
    padding: 175px 0px;
}

.google-map {
    position: relative;
}

.google-map .map-canvas {
    position: relative;
    height: 450px;
    width: 100%;
}

.market-update-area .btcwdgt {
    display: block !important;
    background-color: rgb(32, 32, 32) !important;
    color: rgb(170, 170, 170) !important;
    width: auto !important;
    min-width: 240px !important;
    max-width: 770px !important;
    margin: 0px !important;
    box-shadow: none !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    line-height: 1em !important;
    border: 1px solid rgb(42, 42, 42) !important;
}

.market-update-area .btcwdgt-chart .btcwdgt-header {
    display: none !important;
}

.market-update-area .btcwdgt-chart .btcwdgt-footer {
    display: none !important;
}

.gm-style .gm-style-iw-c {
    position: absolute;
    box-sizing: border-box;
    overflow: hidden;
    top: 0px;
    left: 0px;
    transform: translate(-50%, -100%);
    background-color: white;
    border-radius: 0px;
    width: 380px;
    min-height: 200px;
    padding: 38px 70px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px;
}

.gm-style .gm-style-iw-c::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 60px;
    background: rgb(237, 98, 33);
    content: "";
}

.gm-style .gm-style-iw-c::after {
    position: absolute;
    top: 0px;
    left: 55px;
    bottom: 0px;
    width: 130px;
    content: "contact details";
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(-90deg);
}

.gm-style-iw-d h4 {
    position: relative;
    display: inline-block;
    border-bottom: 2px solid rgb(199, 42, 48);
    color: rgb(27, 27, 27);
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0px 0px 22px;
}

.gm-style-iw-d p {
    color: rgb(133, 133, 133);
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    margin: 0px;
}

.map-data {
    padding-left: 30px;
}

.map-data h6 {
    font-size: 20px;
    margin-bottom: 19px;
    border-bottom: 2px solid rgb(199, 42, 48);
    display: inline-block;
    color: rgb(48, 44, 81);
}

.gmnoprint {
    display: none;
}

.sidebar-page-container {
    position: relative;
}

.sidebar-page-container .post-wrapper {
    padding: 110px 0px 80px;
    margin-right: 30px;
}

.news-block-three {
    position: relative;
}

.news-block-three .inner-box {
    position: relative;
    margin-bottom: 60px;
    box-shadow: rgba(89, 83, 76, 0.08) 0px 0px 45px 5px;
    transition: 0.5s;
    border-radius: 6px;
    padding: 30px;
}

.news-block-three .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: rgba(89, 83, 76, 0.16) 0px 0px 45px 5px;
}

.news-block-three .inner-box::before {
    position: absolute;
    content: "";
    background: var(--theme-color);
    height: 2px;
    width: 100%;
    left: 0px;
    bottom: 0px;
    transition: 0.5s;
    transform: scaleX(0);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.news-block-three .inner-box:hover::before {
    transform: scaleX(1);
}

.news-block-three .category {
    position: relative;
    color: rgb(166, 166, 166);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
}

.news-block-three .category a {
    background: var(--dark-color);
    color: rgb(255, 255, 255);
    padding: 4px 10px;
    border-radius: 6px;
    margin-right: 6px;
}

.news-block-three .category span {
    color: var(--theme-color);
    margin-right: 8px;
}

.news-block-three .image {
    position: relative;
}

.news-block-three .image img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    width: 100%;
}

.news-block-three .post-meta-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.news-block-three .post-meta-info a {
    color: rgb(255, 255, 255);
    margin-right: 10px;
}

.news-block-three .post-meta-info a span {
    margin-right: 10px;
}

.news-block-three .lower-content {
    position: relative;
    padding: 30px 0px 0px;
}

.news-block-three .date {
    color: rgb(166, 166, 166);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
}

.news-block-three .date span {
    margin-right: 8px;
    color: var(--theme-color);
    font-size: 15px;
}

.news-block-three h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.news-block-three h2 a {
    color: var(--dark-color-two);
    transition: 0.5s;
}

.news-block-three h2 a:hover {
    color: var(--theme-color);
}

.news-block-three .post-info {
    position: relative;
    box-shadow: rgba(89, 83, 76, 0.08) 0px 0px 45px 5px;
    padding: 20px 30px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.news-block-three .post-info > div + div {
    margin-left: 15px;
    border-left: 1px solid rgb(234, 234, 234);
    padding-left: 15px;
}

.news-block-three .post-info .author {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.news-block-three .post-info .image {
    position: relative;
    margin-right: 10px;
}

.news-block-three .post-info .image img {
    border-radius: 50%;
}

.news-block-three .post-info .author-title {
    font-size: 13px;
    font-weight: 500;
    color: rgb(166, 166, 166);
    text-transform: uppercase;
}

.news-block-three .post-info .author-title a {
    color: rgb(166, 166, 166);
}

.news-block-three .text {
    margin-bottom: 30px;
}

.news-block-three .share-info {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.news-block-three .share-icon.style-two {
    top: 18px;
}

.news-block-three .share-info .text {
    position: absolute;
    right: 22px;
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

.sidebar-page-container .sidebar {
    position: relative;
    height: 100%;
    padding-top: 120px;
    padding-bottom: 90px;
    padding-left: 30px;
}

.sidebar-page-container .sidebar::before {
    position: absolute;
    content: "";
    background: rgb(244, 241, 238);
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 500%;
}

.sidebar-widget {
    position: relative;
    margin-bottom: 20px;
}

.sidebar-title {
    position: relative;
    margin-bottom: 30px;
}

.sidebar-title h4 {
    position: relative;
    font-size: 22px;
    font-weight: 400;
    display: inline-block;
    text-transform: capitalize;
}

.sidebar-title-two {
    position: relative;
    margin-bottom: 10px;
    padding: 21px 30px;
    background-color: rgb(241, 55, 41);
}

.sidebar-title-two h4 {
    position: relative;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 600;
}

.service-category-widget {
    position: relative;
}

.service-category-widget li {
    position: relative;
    margin-bottom: 10px;
}

.service-category-widget li:last-child {
    margin-bottom: 0px;
}

.service-category-widget li a {
    position: relative;
    color: rgb(126, 133, 151);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 13px 33px;
    display: block;
    transition: 300ms;
    border: 1px solid rgb(233, 230, 230);
}

.service-category-widget li a:hover {
    box-shadow: rgba(1, 1, 1, 0.08) 0px 21px 21px 0px;
    color: rgb(34, 34, 34);
}

.service-category-widget li.active a {
    border-top: 2px solid rgb(241, 55, 41);
    box-shadow: rgba(1, 1, 1, 0.08) 0px 21px 21px 0px;
    color: rgb(34, 34, 34);
}

.sidebar .search-box .form-group {
    position: relative;
    margin: 0px;
}

.sidebar .search-box {
}

.sidebar .search-box .form-group input[type="text"], .sidebar .search-box .form-group input[type="search"] {
    position: relative;
    line-height: 33px;
    padding: 10px 30px;
    background: rgb(255, 255, 255);
    display: block;
    font-size: 14px;
    border-radius: 6px;
    width: 100%;
    height: 60px;
    font-weight: 400;
    border: 1px solid rgb(255, 255, 255);
    transition: 500ms;
    box-shadow: rgba(89, 83, 76, 0.1) 0px 20px 20px 0px;
}

.sidebar .search-box button {
    position: absolute;
    right: 15px;
    top: 15px;
    background: transparent;
    font-size: 18px;
    color: rgb(158, 158, 158);
}

.post-widget-two {
    position: relative;
}

.post-widget-two .post {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid rgb(231, 231, 231);
    margin-bottom: 30px;
}

.post-widget-two .post:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.post-widget-two .thumb {
    position: relative;
    overflow: hidden;
    margin-right: 20px;
}

.post-widget-two img {
    width: 100%;
    transition: 8s cubic-bezier(0, 0, 0.2, 1) 0.2s;
    display: block;
    transform: scale(1.05);
}

.post-widget-two .thumb:hover img {
    transform: scale(1.4);
}

.post-widget-two .overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    padding: 40px 45px;
}

.post-widget-two .overlay::before {
    position: absolute;
    content: "";
    background: rgb(34, 34, 34);
    inset: 0px;
    transform: scale(0, 1);
    transition: 0.5s linear;
}

.post-widget-two .thumb:hover .overlay::before {
    transform: scale(1, 1);
    opacity: 0.75;
}

.post-widget-two .date {
    position: relative;
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 50px;
}

.post-widget-two .date::before {
    position: absolute;
    content: "";
    background: var(--theme-color);
    height: 1px;
    width: 40px;
    top: 12px;
    left: 0px;
}

.post-widget-two h4 {
    font-size: 18px;
    font-weight: 500;
    color: rgb(28, 31, 38);
}

.post-widget-two h4 a {
    color: rgb(28, 31, 38);
    transition: 0.5s;
}

.post-widget-two h4 a:hover {
    color: var(--theme-color);
}

.blog-category-widget {
    position: relative;
}

.blog-category-widget ul {
    position: relative;
}

.blog-category-widget ul li {
    position: relative;
    margin-bottom: 10px;
}

.blog-category-widget ul li:last-child {
    margin-bottom: 0px;
}

.blog-category-widget ul li a {
    font-size: 16px;
    font-weight: 700;
    color: rgb(136, 136, 136);
    transition: 0.5s;
}

.blog-category-widget ul li a::before {
    position: absolute;
    content: "";
    height: 12px;
    width: 4px;
    background: rgb(212, 212, 212);
    left: 0px;
    top: 6px;
    transition: 0.5s;
    display: none;
}

.blog-category-widget ul li a:hover::before {
    opacity: 1;
}

.blog-category-widget ul li a:hover::before {
    background: rgb(241, 55, 41);
}

.blog-category-widget ul li a:hover {
    color: var(--theme-color);
}

.blog-category-widget ul li span {
    position: relative;
    right: -2px;
    top: -8px;
    font-size: 14px;
    color: var(--theme-color);
    opacity: 0;
}

.instagram-widget-two .instagram-wrapper {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 0px -5px;
    flex-wrap: wrap;
    background: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 6px;
}

.instagram-widget-two .instagram-wrapper .image {
    position: relative;
    overflow: hidden;
    padding: 0px 5px 10px;
    border-radius: 6px;
    width: 33.333%;
}

.instagram-widget-two .instagram-wrapper .image .overlay-link {
    position: absolute;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 100%;
    background: var(--dark-color);
    transition: 0.5s;
    opacity: 0.95;
}

.instagram-widget-two .instagram-wrapper .image .overlay-link ul {
    display: flex;
    flex-wrap: wrap;
}

.instagram-widget-two .instagram-wrapper .image:hover .overlay-link {
    top: 0px;
}

.instagram-widget-two .instagram-wrapper .image .overlay-link li {
    color: rgb(255, 255, 255);
    margin: 0px 5px;
    font-size: 14px;
    transition: 0.5s;
}

.instagram-widget-two .instagram-wrapper .image .overlay-link li span {
    font-size: 12px;
    margin-right: 5px;
}

.instagram-widget-two .theme-btn {
    position: relative;
    background: rgb(255, 255, 255);
    display: inline-block;
    font-size: 16px;
    color: rgb(28, 31, 38);
    padding: 5px 5px 0px;
}

.instagram-widget-two .theme-btn span {
    margin-right: 8px;
    color: var(--theme-color);
}

.instagram-widget-two .instagram-wrapper .image .overlay-link {
    position: absolute;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 100%;
    background: var(--dark-color);
    transition: 0.5s;
}

.instagram-widget-two .instagram-wrapper .image:hover .overlay-link {
    top: 0px;
}

.instagram-widget-two .instagram-wrapper .image .overlay-link li {
    color: rgb(255, 255, 255);
    font-size: 14px;
    transition: 0.5s;
}

.instagram-widget-two .instagram-wrapper .image .overlay-link li span {
    font-size: 12px;
    margin-right: 5px;
}


.social-icon-six {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

.social-icon-six li + li {
    margin-left: 20px;
}

.social-icon-six li a {
    position: relative;
    height: 38px;
    width: 38px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    background: rgb(255, 255, 255);
    color: rgb(132, 132, 132);
    border-radius: 50%;
    transition: 0.5s;
}

.social-icon-six li a:hover {
    color: var(--theme-color-four);
}

.team-block-five .social-icon-six {
    position: relative;
}

.team-block-five .social-icon-six a {
    opacity: 0;
}

.team-block-five .social-icon-six li:nth-child(2n+1) a {
    transform: translateY(-10px);
}

.team-block-five .social-icon-six li:nth-child(2n) a {
    transform: translateY(10px);
}

.team-block-five .inner-box:hover .social-icon-six a {
    opacity: 1;
    transform: translateY(0px);
}

.team-block-five .overlay-content {
    position: absolute;
    left: 0px;
    bottom: 0px;
    padding: 25px 30px;
    width: 100%;
    transition: 0.8s;
    background: var(--theme-color-four);
    opacity: 0;
    pointer-events: none;
    z-index: 9;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.team-block-five .inner-box:hover .overlay-content {
    opacity: 1;
    pointer-events: auto;
}

.team-block-five .overlay-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgb(234, 234, 234);
    padding-bottom: 10px;
}

.team-block-five .overlay-content h4 a {
    color: rgb(255, 255, 255);
    transition: 0.5s;
}

.team-block-five .overlay-content .designation {
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
}

.team-section-five .owl-dot-style-one .owl-dots .owl-dot.active span, .team-section-five .owl-dot-style-one .owl-dots .owl-dot:hover span {
    border-color: var(--theme-color-four);
}

.testimonial-section-three {
    position: relative;
    padding: 110px 0px;
    background: rgb(244, 241, 238);
}

.testimonial-section-three .wrapper-box {
    margin: 0px -15px;
}

.testimonial-block-three {
    position: relative;
    padding: 0px 15px;
}

.testimonial-block-three .inner-box {
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 6px;
}

.testimonial-block-three .top-content {
    position: relative;
    background: rgb(255, 255, 255);
    padding: 51px 30px 30px;
    border-radius: 6px;
    margin-bottom: 55px;
}

.testimonial-block-three .top-content::before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -70px;
    width: 70px;
    height: 70px;
    border-width: 34px;
    border-style: solid;
    border-color: rgb(255, 255, 255) transparent transparent;
    border-image: initial;
    transform: translateX(-50%);
}

.testimonial-block-three .quote {
    position: absolute;
    left: -36px;
    top: -50px;
    width: 100px;
    height: 100px;
    padding-left: 30px;
    background: var(--theme-color-four);
    color: rgb(255, 255, 255);
    font-size: 25px;
    line-height: 148px;
    border-radius: 50%;
}

.testimonial-block-three h4 {
    position: relative;
    margin-bottom: 15px;
    font-size: 20px;
}

.testimonial-block-three .author-title {
    font-size: 18px;
    color: rgb(40, 51, 84);
    margin-bottom: 3px;
}

.testimonial-block-three .designation {
    position: relative;
    font-size: 15px;
    color: rgb(117, 117, 117);
}

.testimonial-block-three .designation a {
    color: var(--theme-color-four);
}

.testimonial-section-three .owl-nav-style-two .owl-nav {
    transform: translateY(-20px);
}

.testimonial-section-three .owl-nav-style-two .owl-nav .owl-next, .testimonial-section-three .owl-nav-style-two .owl-nav .owl-prev {
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgb(220, 217, 214);
    line-height: 56px;
    font-size: 28px;
}

.testimonial-section-three .owl-nav-style-two .owl-nav .owl-next:hover, .testimonial-section-three .owl-nav-style-two .owl-nav .owl-prev:hover {
    color: var(--theme-color-four);
    border-color: var(--theme-color-four);
}

.testimonial-section-five {
    position: relative;
    padding: 110px 0px;
}

.testimonial-section-five .owl-dots .owl-dot.active span, .testimonial-section-five .owl-dots .owl-dot:hover span {
    border-color: var(--theme-color-five);
}

.testimonial-section-five .wrapper-box {
    margin: 0px -15px;
}

.testimonial-block-five {
    position: relative;
    padding: 0px 15px;
}

.testimonial-block-five .inner-box {
    position: relative;
    text-align: center;
    border-radius: 6px;
    padding: 40px 0px 0px;
}

.testimonial-block-five .top-content {
    position: relative;
    background: rgb(255, 255, 255);
    padding: 0px 30px 30px;
    border-radius: 6px;
    margin-bottom: 55px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 20px;
}

.testimonial-block-five .top-content::before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -70px;
    width: 70px;
    height: 70px;
    border-width: 34px;
    border-style: solid;
    border-color: rgb(255, 255, 255) transparent transparent;
    border-image: initial;
    transform: translateX(-50%);
}

.testimonial-block-five .image {
    position: relative;
    transform: translateY(-38px);
    display: inline-block;
    margin-bottom: -25px;
}

.testimonial-block-five .image img {
    border-radius: 50%;
}

.testimonial-block-five h4 {
    position: relative;
    margin-bottom: 15px;
    font-size: 20px;
    color: rgb(36, 36, 36);
}

.testimonial-block-five .author-title {
    font-size: 18px;
    color: rgb(36, 36, 36);
    margin-bottom: 3px;
}

.testimonial-block-five .designation {
    position: relative;
    font-size: 15px;
    color: rgb(117, 117, 117);
}

.testimonial-block-five .designation a {
    color: var(--theme-color-five);
}

.testimonial-section-five .owl-nav-style-two .owl-nav {
    transform: translateY(-20px);
}

.testimonial-section-five .owl-nav-style-two .owl-nav .owl-next, .testimonial-section-five .owl-nav-style-two .owl-nav .owl-prev {
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgb(220, 217, 214);
    line-height: 56px;
    font-size: 28px;
}

.testimonial-section-five .owl-nav-style-two .owl-nav .owl-next:hover, .testimonial-section-five .owl-nav-style-two .owl-nav .owl-prev:hover {
    color: var(--theme-color-four);
    border-color: var(--theme-color-four);
}


.footer-menu {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-menu li + li {
    margin-left: 25px;
    position: relative;
}

.footer-menu li a {
    color: rgb(175, 175, 175);
    transition: 0.5s;
}

.footer-menu li + li::before {
    position: absolute;
    content: "";
    background: rgb(175, 175, 175);
    width: 1px;
    height: 12px;
    left: -13px;
    bottom: 10px;
}

.footer-menu li a:hover {
    color: var(--theme-color-five);
}

.cause-info {
    position: relative;
    margin-bottom: -120px;
    z-index: 9;
}

.cause-info .wrapper-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    box-shadow: rgba(89, 83, 76, 0.1) 0px 20px 20px 0px;
    background: rgb(255, 255, 255);
    transform: translateY(-50%);
    border-radius: 6px;
    max-width: 970px;
    margin: 0px auto;
    padding: 25px 0px;
}

.cause-info .wrapper-box > div {
    min-width: 145px;
    text-align: center;
    border-right: 1px solid rgb(234, 234, 234);
}

.cause-info .wrapper-box > div:last-child {
    border-right: 0px;
}

.cause-info .wrapper-box > div span {
    color: var(--theme-color);
    text-transform: uppercase;
}

.cause-info .progress-block {
    margin: 0px;
}

.cause-info .progress-block .inner-box {
    max-width: 70px;
    margin: 0px auto;
}

.cause-info .progress-block .graph-outer .count-box {
    color: var(--theme-color);
    font-weight: 400;
}

.cause-info .progress-block .graph-outer .count-text {
    color: var(--theme-color);
    font-weight: 400;
}

.cause-details .content-column {
    position: relative;
    padding-top: 170px;
}

.sidebar-page-container.cause-details .sidebar {
    padding-top: 170px;
}

.cause-details .content-column h4 {
    font-size: 20px;
    margin-bottom: 30px;
}

.cause-details ul.list {
    position: relative;
    margin-bottom: 30px;
}

.cause-details ul.list li {
    font-size: 15px;
    color: rgb(133, 133, 133);
    margin-bottom: 6px;
}

.cause-details ul.list li span {
    color: var(--theme-color);
    margin-right: 15px;
    font-size: 14px;
}

.feature-block-three {
    position: relative;
}

.feature-block-three .inner-box {
    position: relative;
    padding-left: 125px;
    margin-bottom: 45px;
}

.feature-block-three .icon-box {
    position: absolute;
    left: 0px;
    top: 10px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: rgb(244, 241, 238);
    text-align: center;
    color: rgb(168, 168, 168);
    font-size: 50px;
    border-radius: 50%;
    transition: 0.5s;
}

.feature-block-three .icon-box:hover {
    background: var(--theme-color);
    color: rgb(255, 255, 255);
}

.feature-block-three h5 {
    margin-bottom: 20px;
}

.feature-block-three .inner-box h4 {
    margin-bottom: 18px;
}

.feature-block-three .inner-box .text {
    line-height: 26px;
    margin-bottom: 10px;
}

.feature-block-three .inner-box a {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    transition: 0.5s;
    position: relative;
}

.feature-block-three .inner-box a:hover {
    padding-left: 20px;
    color: var(--theme-color);
}

.feature-block-three .inner-box a i {
    position: absolute;
    left: 0px;
    top: -6px;
    opacity: 0;
    transition: 0.5s;
}

.feature-block-three .inner-box a:hover i {
    opacity: 1;
}

.cause-details .video-box {
    position: relative;
    width: max-content;
    margin-bottom: 30px;
}

.cause-details .video-box a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 90px;
    width: 90px;
    background: rgb(255, 255, 255);
    text-align: center;
    line-height: 90px;
    font-size: 40px;
    border-radius: 50px;
    transition: 0.5s;
}

.cause-details .video-box a:hover {
    color: rgb(255, 255, 255);
    background: var(--theme-color);
}

.cause-details .recent-donars .wrapper-box {
    position: relative;
    height: 480px;
    width: 100%;
    margin-bottom: 22px;
}

.cause-details .recent-donars .wrapper-box::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    display: block;
    background: url("../images/resource/map-4.png") center center no-repeat;
    transform: translate(-50%, -50%);
}

.cause-details .recent-donars .donor-thumb {
    position: absolute;
    left: 6%;
    top: 16%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--theme-color-two);
    cursor: pointer;
}

.cause-details .recent-donars .donor-thumb img {
    border-radius: 50%;
}

.cause-details .recent-donars .donor-thumb:nth-child(2) {
    left: 26%;
    top: 33%;
}

.cause-details .recent-donars .donor-thumb:nth-child(3) {
    left: 40%;
    top: 18%;
}

.cause-details .recent-donars .donor-thumb:nth-child(4) {
    left: auto;
    top: 18%;
    right: 20%;
}

.cause-details .recent-donars .donor-thumb:nth-child(5) {
    left: 27%;
    top: auto;
    bottom: 17%;
}

.cause-details .recent-donars .donor-thumb:nth-child(6) {
    left: auto;
    right: 39%;
    top: 32%;
}

.cause-details .recent-donars .donor-thumb:nth-child(7) {
    left: auto;
    right: 20%;
    top: 48%;
}

.cause-details .recent-donars .donor-thumb:nth-child(8) {
    inset: auto 9% 17% auto;
}

.cause-details .recent-donars .donor-thumb .content {
    opacity: 0;
    position: relative;
    min-width: 150px;
    bottom: 135px;
    left: 0px;
    transition: 1s;
    transform: translateY(-30px);
    background: var(--theme-color);
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 6px;
    z-index: 9;
    pointer-events: none;
}

.cause-details .recent-donars .donor-thumb:hover .content {
    opacity: 1;
    transform: translateY(0px);
}

.cause-details .recent-donars .donor-thumb .content::before {
    position: absolute;
    content: "";
    left: 20px;
    height: 18px;
    width: 18px;
    bottom: -16px;
    background: var(--theme-color);
    clip-path: polygon(50% 50%, 0px 0px, 100% 0px);
}

.cause-details .recent-donars .donor-thumb .text {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    color: rgb(255, 255, 255);
}

.cause-details .recent-donars .link-btn a {
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
}

.cause-details .recent-donars .link-btn a span {
    margin-right: 10px;
    color: var(--theme-color-two);
}

.cause-details .share-post {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgb(234, 234, 234);
    margin-top: 50px;
    margin-bottom: 80px;
}

.cause-details .share-post .text {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--dark-color);
    margin-right: 20px;
}

.cause-details .share-post .text i {
    margin-right: 8px;
}

.social-icon-seven {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

.social-icon-seven li + li {
    margin-left: 10px;
}

.social-icon-seven li a {
    font-size: 15px;
    padding: 4px 15px;
    background: rgb(34, 34, 34);
    color: rgb(255, 255, 255);
    display: inline-block;
    border-radius: 6px;
}

.social-icon-seven li a span {
    margin-right: 7px;
}

.social-icon-seven li a.facebook {
    background: rgb(57, 85, 153);
}

.social-icon-seven li a.twitter {
    background: rgb(28, 157, 235);
}

.social-icon-seven li a.pinterest {
    background: rgb(197, 31, 38);
}

.cause-details .donate-form-area .donate-form-wrapper {
    box-shadow: rgba(89, 83, 76, 0.15) 0px 0px 30px 0px;
    margin-bottom: 100px;
}

.event-time-place {
    position: relative;
    transform: translateY(-50%);
}

.event-time-place .content {
    position: relative;
    background: rgb(255, 255, 255);
    padding: 42px 30px;
    text-align: center;
    border-radius: 6px;
    box-shadow: rgba(89, 83, 76, 0.1) 0px 20px 20px 0px;
}

.event-time-place .content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-family: "Zilla Slab", serif;
    position: relative;
}

.event-time-place .content h2::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 50px;
    left: 50%;
    bottom: 0px;
    background: var(--theme-color);
    transform: translateX(-50%);
}

.about-event {
    position: relative;
    padding-bottom: 80px;
}

.about-event .tab-btn-style-one {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border: 0px;
    z-index: 9;
}

.about-event .tab-btn-style-one .nav-link {
    border: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(89, 83, 76, 0.15) 0px 0px 20px 0px;
    padding: 14.5px 30px;
    font-size: 18px;
    color: var(--dark-color);
    border-radius: 5px;
}

.about-event .tab-btn-style-one .nav-item {
    margin: 0px 23px 20px;
}

.about-event .tab-btn-style-one .nav-link h4 {
    font-size: 18px;
}

.about-event .tab-btn-style-one .nav-link.active {
    background: var(--theme-color);
    color: rgb(255, 255, 255);
}

.about-event .border-shape {
    position: relative;
    display: inline-block;
    max-width: 770px;
    margin: 0px auto;
    height: 1px;
    width: 100%;
    background: rgb(234, 234, 234);
    transform: translateY(-65px);
}

.about-event .border-shape::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border: 2px solid rgb(194, 194, 194);
    border-radius: 50%;
    top: 0px;
    left: 0px;
    transform: translateY(-50%);
}

.about-event .border-shape::after {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border: 2px solid rgb(194, 194, 194);
    border-radius: 50%;
    top: 0px;
    right: 0px;
    transform: translateY(-50%);
}

.about-event .content {
    position: relative;
}

.about-event .content h2 {
    font-size: 30px;
    font-family: "Zilla Slab", serif;
    margin-bottom: 30px;
}

.about-event .content .info-box {
    position: relative;
    margin-bottom: 20px;
}

.about-event .content .info-box h5 {
    font-size: 13px;
    font-weight: 500;
    color: rgb(166, 166, 166);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.about-event .content .info-box a {
    font-size: 18px;
    color: var(--dark-color);
}

.team-section-four {
    position: relative;
    padding: 0px 0px 90px;
}

.team-block-four {
    position: relative;
    padding: 0px 15px 30px;
}

.team-block-four .inner-box {
    position: relative;
}

.team-block-four .lower-content {
    background: rgb(255, 255, 255);
    box-shadow: rgba(89, 83, 76, 0.15) 0px 0px 20px 0px;
    padding: 80px 20px 20px;
    text-align: center;
    border-radius: 6px;
    margin-top: -60px;
    transition: 0.5s;
}

.team-block-four .inner-box .image img {
    border-radius: 50%;
    margin: 0px auto;
}

.team-block-four .inner-box h4 {
    font-size: 18px;
    transition: 0.5s;
}

.team-block-four .inner-box h4 a {
    color: var(--dark-color);
    transition: 0.5s;
}

.team-block-four .inner-box .designation {
    color: var(--theme-color);
    border-bottom: 1px solid rgb(234, 234, 234);
    padding-bottom: 8px;
    max-width: 190px;
    margin: 0px auto 15px;
    transition: 0.5s;
}

.team-block-four .inner-box .social-icon-two {
    -webkit-box-pack: center;
    justify-content: center;
}

.team-block-four .inner-box .social-icon-two li {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.team-block-four .inner-box .social-icon-two li a {
    color: var(--dark-color);
}

.team-block-four .inner-box:hover .lower-content {
    background: var(--theme-color);
}

.team-block-four .inner-box:hover h4 a {
    color: rgb(255, 255, 255);
}

.team-block-four .inner-box:hover .designation {
    color: rgb(255, 255, 255);
}

.team-block-four .inner-box:hover .social-icon-two li a {
    color: rgb(255, 255, 255);
    background: var(--theme-color);
}

.border-bottom {
    border-bottom: 1px solid rgb(234, 234, 234);
    width: 100%;
    height: 1px;
    display: block;
}

.team-section-four .sec-title h1 {
    background: rgb(255, 255, 255);
    display: inline-block;
    padding-right: 60px;
    z-index: 5;
}

.team-section-four .border-bottom {
    transform: translateY(-32px);
}

.team-section-four .owl-nav {
    background: rgb(255, 255, 255);
    transform: translateY(-24px);
    margin: 0px -14px;
    padding-left: 30px;
}

.team-section-four .owl-nav > div {
    width: 20px;
}

.team-section-four .owl-nav-style-two .owl-nav > div {
    width: 29px;
}

.participate-form {
    padding-bottom: 110px;
}

.participate-form label {
    color: rgb(166, 166, 166);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.participate-form .contact-form input[type="text"], .participate-form .contact-form input[type="email"], .participate-form .contact-form input[type="password"], .participate-form .contact-form select, .participate-form .contact-form textarea {
    height: 65px;
}

.participate-form .ui-selectmenu-button.ui-button {
    padding: 23.5px 18px;
}

.participate-form .contact-form textarea {
    height: 160px;
}

.participate-form .contact-form .form-group {
    position: relative;
}

.participate-form .contact-form .submit-btn {
    position: absolute;
    top: 45px;
    right: 0px;
}

.participate-form .contact-form .submit-btn span {
    display: block;
    font-size: 40px;
    margin-bottom: 10px;
}

.participate-form .contact-form button {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 46px 30px;
    background: rgb(244, 241, 238);
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.single-blog-post {
    position: relative;
    margin-top: 10px;
}

.single-blog-post .inner-box {
    position: relative;
    transition: 0.5s;
    border-radius: 6px;
}

.single-blog-post .views, .single-blog-post .category {
    position: relative;
    color: rgb(166, 166, 166);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
}

.single-blog-post .views a, .single-blog-post .category a {
    background: var(--dark-color);
    color: rgb(255, 255, 255);
    padding: 4px 10px;
    border-radius: 6px;
    margin-right: 6px;
}

.single-blog-post .category span {
    color: var(--theme-color);
    margin-right: 8px;
    font-size: 15px;
}

.single-blog-post .views span {
    color: var(--theme-color);
    margin-right: 8px;
    font-size: 16px;
}

.single-blog-post .top-content .image {
    position: relative;
    margin-bottom: 30px;
}

.single-blog-post .top-content .image img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    width: 100%;
}

.single-blog-post .post-meta-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.single-blog-post .post-meta-info a {
    color: rgb(255, 255, 255);
    margin-right: 10px;
}

.single-blog-post .post-meta-info a span {
    margin-right: 10px;
}

.single-blog-post .lower-content {
    position: relative;
    padding: 30px 0px 0px;
}

.single-blog-post .top-content .date {
    color: rgb(166, 166, 166);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
}

.single-blog-post .top-content .date span {
    margin-right: 8px;
    color: var(--theme-color);
    font-size: 15px;
}

.single-blog-post .top-content h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.single-blog-post .top-content h2 a {
    color: var(--dark-color-two);
    transition: 0.5s;
}

.single-blog-post .top-content h2 a:hover {
    color: var(--theme-color);
}

.single-blog-post .post-info {
    position: relative;
    box-shadow: rgba(89, 83, 76, 0.08) 0px 0px 45px 5px;
    padding: 20px 30px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.single-blog-post .post-info > div + div {
    margin-left: 15px;
    border-left: 1px solid rgb(234, 234, 234);
    padding-left: 15px;
}

.single-blog-post .post-info .author {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.single-blog-post .post-info .author-thumb {
    position: relative;
    margin-right: 10px;
}

.single-blog-post .post-info .author-thumb img {
    border-radius: 50%;
}

.single-blog-post .post-info .author-title {
    font-size: 13px;
    font-weight: 500;
    color: rgb(166, 166, 166);
    text-transform: uppercase;
}

.single-blog-post .post-info .author-title a {
    color: rgb(166, 166, 166);
}

.single-blog-post .top-content .text {
    margin-bottom: 30px;
}

.single-blog-post .share-info {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.single-blog-post .share-icon.style-two ul a:hover {
    background: var(--theme-color-two);
    border-color: var(--theme-color-two);
}

.single-blog-post .share-icon.style-two {
    top: 18px;
}

.single-blog-post .share-info .text {
    position: absolute;
    right: 22px;
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

.single-blog-post blockquote {
    position: relative;
    padding: 15px 0px 15px 100px;
}

.single-blog-post blockquote .text {
    color: var(--dark-color);
    font-size: 20px;
    font-family: "Zilla Slab", serif;
}

.single-blog-post .quote-icon {
    position: absolute;
    left: 0px;
    top: 20px;
}

.single-blog-post ul.list {
    position: relative;
    margin-bottom: 50px;
}

.single-blog-post ul.list li {
    font-size: 15px;
    color: rgb(133, 133, 133);
    margin-bottom: 6px;
}

.single-blog-post ul.list li strong {
    font-weight: 500;
}

.single-blog-post ul.list li span {
    color: var(--theme-color);
    margin-right: 15px;
    font-size: 13px;
}

.single-blog-post .top-content h3 {
    font-size: 24px;
    font-family: "Zilla Slab", serif;
    margin-bottom: 30px;
}

.single-blog-post .post-tag {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 60px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgb(234, 234, 234);
}

.single-blog-post .post-tag .social-icon-three {
    margin-top: 30px;
}

.single-blog-post .post-tag .social-icon-three li a {
    border-color: rgb(234, 234, 234);
    color: rgb(133, 133, 133);
}

.single-blog-post .post-tag .social-icon-three li a:hover {
    color: rgb(255, 255, 255);
}

.single-blog-post .post-tag .hint {
    margin-bottom: 5px;
}

.single-blog-post .post-tag .tag {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.single-blog-post .post-tag .tag a {
    font-size: 15px;
    color: rgb(133, 133, 133);
    display: inline-block;
    padding: 3px 20px;
    border: 1px solid rgb(234, 234, 234);
    border-radius: 5px;
}

.single-blog-post .post-tag .tag li + li {
    margin-left: 10px;
}

.single-blog-post .author-box {
    position: relative;
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(234, 234, 234);
    margin-bottom: 50px;
}

.single-blog-post .author-box .wrapper-area {
    position: relative;
    padding-left: 205px;
    padding-top: 20px;
    min-height: 170px;
}

.single-blog-post .author-box .img-box {
    position: absolute;
    left: 0px;
    top: 0px;
}

.single-blog-post .author-box h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.single-blog-post .author-box .text {
    margin-bottom: 15px;
}

.single-blog-post .author-box .social-icon-three li a {
    border-color: transparent;
    width: auto;
    height: auto;
    line-height: 20px;
    padding-right: 11px;
    font-size: 16px;
    color: var(--dark-color);
}

.single-blog-post .author-box .social-icon-three li a:hover {
    color: var(--theme-color);
    background: transparent;
}

.blog-post-pagination .wrapper-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.blog-post-pagination {
    position: relative;
    margin-bottom: 80px;
}

.blog-post-pagination a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgb(133, 133, 133);
    margin-bottom: 5px;
    display: inline-block;
}

.blog-post-pagination h4 {
    font-size: 20px;
}

.blog-post-pagination .next-post {
    text-align: right;
}

.blog-post-pagination .page-view {
    font-size: 50px;
    color: var(--theme-color);
}

.blog-post-pagination .comments-area {
    margin-bottom: 90px;
}

.single-blog-post .group-title {
    position: relative;
    margin-bottom: 40px;
}

.single-blog-post .group-title h2 {
    position: relative;
    font-size: 30px;
    font-family: "Zilla Slab", serif;
}

.comments-area .comment-box {
    position: relative;
    margin-bottom: 40px;
    transition: 300ms;
}

.comments-area .comment-box:last-child .comment {
    padding-bottom: 0px;
    border-bottom: 0px;
}

.comments-area .comment-box:hover {
    border-color: rgb(235, 83, 16);
}

.comments-area .comment-box.reply-comment {
    margin-left: 50px;
}

.comments-area .comment {
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid rgb(233, 230, 230);
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}

.comments-area .comment .comment-inner {
    position: relative;
    width: 80%;
}

.comments-area .comment .comment-inner .text {
    position: relative;
    line-height: 1.5em;
    margin-bottom: 15px;
}

.comments-area .comment-box .author-thumb {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    margin-right: 30px;
}

.comments-area .comment-box .author-thumb img {
    width: 80px;
    display: block;
}

.comments-area .comment-info {
    position: relative;
    color: var(--dark-color);
    line-height: 24px;
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.comments-area .comment-info a {
    position: relative;
    color: rgb(30, 30, 41);
}

.comments-area .date {
    font-size: 15px;
    color: rgb(133, 133, 133);
    margin-bottom: 20px;
    margin-left: 15px;
}

.comments-area .comment-box .reply-comment {
    position: relative;
    color: var(--dark-color);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}

.comments-area .comment-box .reply-comment:hover {
    color: rgb(241, 55, 41);
    padding-left: 20px;
}

.comments-area .comment-box .reply-comment span {
    position: absolute;
    left: 0px;
    top: -5px;
    opacity: 0;
    transition: 0.5s;
    font-size: 13px;
}

.comments-area .comment-box .reply-comment:hover span {
    opacity: 1;
}

.comment-form {
    position: relative;
    margin-bottom: 30px;
}

.comment-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.comment-form .form-group:last-child {
    margin-bottom: 0px;
}

.comment-form .form-group input[type="text"], .comment-form .form-group input[type="password"], .comment-form .form-group input[type="tel"], .comment-form .form-group input[type="email"], .comment-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    line-height: 28px;
    padding: 15px 20px;
    height: 55px;
    color: rgb(124, 123, 123);
    font-size: 16px;
    font-weight: 400;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(238, 242, 237);
    transition: 300ms;
}

.comment-form .form-group input[type="text"]:focus, .comment-form .form-group input[type="password"]:focus, .comment-form .form-group input[type="tel"]:focus, .comment-form .form-group input[type="email"]:focus, .comment-form .form-group select:focus, .comment-form .form-group textarea:focus {
    border-color: rgb(241, 55, 41);
}

.comment-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 26px;
    padding: 10px 20px;
    color: rgb(124, 123, 123);
    font-size: 16px;
    font-weight: 400;
    background: rgb(255, 255, 255);
    resize: none;
    height: 125px;
    border: 1px solid rgb(238, 242, 237);
    transition: 300ms;
}

.comment-form button {
    position: relative;
    display: block;
    margin-top: 10px;
}

.contact-info-three {
    position: relative;
    padding: 60px 50px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 48px 2px;
}

.contact-info-three .single-info {
    position: relative;
}

.contact-info-three .single-info + .single-info {
    border-top: 1px solid rgb(234, 234, 234);
    padding-top: 35px;
    margin-top: 35px;
}

.contact-info-three h4 {
    position: relative;
    margin-bottom: 20px;
}

.contact-info-three h4::before {
    position: absolute;
    content: "";
    background: var(--theme-color);
    height: 15px;
    width: 3px;
    top: 8px;
    left: -50px;
}

.contact-info-three .text {
    margin-bottom: 15px;
}

.contact-info-three .link-btn {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: var(--theme-color);
    text-transform: uppercase;
}

.contact-info-three .wrapper-box {
    position: relative;
    margin-bottom: 20px;
}

.contact-info-three .wrapper-box a {
    font-size: 15px;
    color: rgb(133, 133, 133);
}

.contact-form-section .contact-form input[type="text"], .contact-form-section .contact-form input[type="email"], .contact-form-section .contact-form input[type="password"], .contact-form-section .contact-form select, .contact-form-section .contact-form textarea {
    height: 65px;
}

.contact-form-section .ui-selectmenu-button.ui-button {
    padding: 23.5px 18px;
}

.contact-form-section .contact-form textarea {
    height: 140px;
}

.contact-form-section .flex-box {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

.contact-form-section .hint {
    margin: 20px 0px 20px 20px;
}

.featured-people {
    padding: 10px;
    background: rgb(255, 255, 255);
}

.featured-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 0px;
}

.featured-main {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0px;
    opacity: 0;
    z-index: 0;
}

.slide::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 55%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    animation: 0.6s ease 0s 1 normal forwards running slideInRight;
}

.slide.exit {
    animation: 0.5s ease 0s 1 normal forwards running slideOutLeft;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: rgb(255, 255, 255);
    max-width: 500px;
    z-index: 2;
}

.overlay h2 {
    font-size: 35px;
    font-weight: 800;
    margin: 15px 0px 10px;
    color: rgb(255, 255, 255);
}

.overlay p {
    font-size: 16px;
    opacity: 0.9;
}

.category {
    color: rgb(255, 255, 255);
    background: linear-gradient(307deg, rgb(41, 55, 134) 0px, rgb(162, 29, 46) 100%);
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    top: 0px;
    left: 0px;
}

.featured-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    position: sticky;
    top: 40px;
    height: fit-content;
}

.thumb {
    position: relative;
    height: 125px;
    background-size: cover;
    background-position: center center;
    cursor: pointer;
    transition: 0.3s;
    overflow: hidden;
}

.thumb::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    z-index: 1;
}

.thumb.active {
    box-shadow: rgb(255, 197, 23) 0px 0px 0px 8px inset, rgb(0, 0, 0) 0px 0px 15px inset;
    position: relative;
    z-index: 5;
}

.thumb.active::after {
    background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
    .featured-wrapper {
        grid-template-columns: 1fr;
    }

    .featured-main {
        height: 380px;
    }

    .overlay {
        left: 20px;
        bottom: 20px;
        max-width: 90%;
    }

    .overlay h2 {
        font-size: 26px;
    }

    .overlay p {
        font-size: 14px;
    }

    .featured-thumbs {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 20px;
        position: relative;
        top: auto;
    }

    .thumb {
        height: 80px;
    }
}

@media (max-width: 500px) {
    .featured-main {
        height: 300px;
    }

    .overlay h2 {
        font-size: 20px;
    }

    .featured-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(40px) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
}

@keyframes slideOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateX(-40px) scale(0.95);
    }
}

.faculty-description {
    max-height: 90px;
    overflow: hidden;
    transition: max-height 0.4s;
}

.faculty-description.expanded {
    max-height: 2000px;
}

.read-more-btn {
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    color: rgb(0, 123, 255);
    cursor: pointer;
    font-weight: 600;
    padding: 0px;
    margin-top: 10px;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.full-text {
    display: none;
}

.campus-card {
    background: linear-gradient(135deg, rgb(238, 242, 255), rgb(253, 244, 255));
    border-radius: 28px;
    padding: 36px 32px;
    box-shadow: rgba(15, 23, 42, 0.12) 0px 18px 40px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.campus-card h3 {
    margin: 0px 0px 14px;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(90deg, rgb(31, 75, 167), rgb(109, 40, 217)) text;
    color: transparent;
}

.campus-card p {
    color: rgb(71, 85, 105);
    font-size: 16px;
    line-height: 1.6;
}

.campus-card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(15, 23, 42, 0.22) 0px 28px 60px;
}

@media (max-width: 900px) {
    #campus-life div[style*="grid-template-columns"] {
        grid-template-columns: 1fr;
    }
}

.filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pill {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgb(199, 210, 254);
    background: rgb(255, 255, 255);
    font-weight: 700;
    cursor: pointer;
}

.pill.active {
    background: linear-gradient(135deg, rgb(31, 75, 167), rgb(109, 40, 217));
    color: rgb(255, 255, 255);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.lightbox {
    position: fixed;
    inset: 0px;
    background: rgba(15, 23, 42, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.lightbox.show {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 16px;
}

.lightbox .close {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 40px;
    color: rgb(255, 255, 255);
    cursor: pointer;
}

.img-card img {
    cursor: zoom-in;
}

figure {
    position: relative;
}

figcaption {
    position: absolute;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    padding: 6px;
    bottom: 4px;
    color: white;
    width: 100%;
    text-align: center;
}

.academics {
    padding: 60px 8%;
}

.section-title {
    font-size: 33px;
    margin-bottom: 10px;
    color: rgb(160, 46, 92);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(15px);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
}

.card .logo {
    width: 100px;
    margin: auto;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

.tags {
    margin-bottom: 20px;
}

.tags span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    margin: 5px 5px 0px 0px;
    border-radius: 20px;
    font-size: 12px;
}

.card button {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 10px 52px;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    margin: auto;
    background: linear-gradient(135deg, rgb(130, 40, 75) 0%, rgb(167, 48, 96) 100%) !important;
}

.card button:hover {
    opacity: 0.8;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 8%;
    flex-wrap: wrap;
}

.hero-left {
    max-width: 620px;
}

.sub {
    font-size: 14px;
    color: rgb(160, 46, 92);
    font-weight: 600;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 42px;
    margin: 15px 0px;
    color: rgb(85, 85, 85);
}

.desc {
    color: rgb(85, 85, 85);
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
}

.hero-buttons input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgb(221, 221, 221);
    outline: none;
    width: 220px;
}

.hero-buttons button {
    background: rgb(108, 99, 255);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 12px 18px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

.hero-right {
    position: relative;
}

.hero-right img {
    width: 350px;
    position: relative;
    z-index: 2;
}

.shape {
    position: absolute;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 8%;
}

.stat-box {
    background: white;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 20px;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 35px;
}

.stat-box h2 {
    font-size: 35px;
    color: rgb(160, 46, 92);
    margin: 0px;
}

.stat-box p {
    margin-top: 8px;
    color: rgb(85, 85, 85);
    font-size: 15px;
    line-height: 1.4;
}

.float-buttons {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px;
    text-decoration: none;
    background: white;
}

.callnow-btn {
    background: rgb(255, 255, 255);
}

.callnow-btn img {
    width: 26px;
}

.whatsapp-btn {
    background: rgb(37, 211, 102);
}

.whatsapp-btn img {
    width: 28px;
}

.home-banner {
    background: rgb(248, 248, 248);
}

.row {
    display: flex;
    align-items: center;
}

.col {
    width: 50%;
}

.content {
    max-width: 100%;
}

.banner-text-slider h2 {
    font-size: 40px;
    color: rgb(40, 26, 91);
    line-height: 1.2;
    opacity: 0;
    font-weight: 600;
    transform: translateY(40px);
    font-family: "Zilla Slab";
}

.banner-text-slider p {
    margin: 20px 0px;
    opacity: 0;
    transform: translateY(40px);
}

.btns a {
    border: 1px solid rgb(255, 255, 255);
    padding: 5px 15px;
    font-size: 13px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btns a {
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.btns a:hover {
    color: rgb(255, 255, 255);
    background: linear-gradient(135deg, rgb(130, 40, 75) 0%, rgb(167, 48, 96) 100%) !important;
}

.btns a::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btns a:hover::before {
    left: 100%;
}

.btns a:hover {
    background: rgb(162, 29, 46);
    color: rgb(255, 255, 255);
}

.btns .one {
    color: rgb(255, 255, 255);
    background: linear-gradient(135deg, rgb(130, 40, 75) 0%, rgb(167, 48, 96) 100%) !important;
}

.banner_img {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.curve {
    position: absolute;
    left: -100px;
    width: 200px;
    height: 100%;
    fill: rgb(248, 248, 248);
    z-index: 2;
}

.box-banner {
    width: 90%;
    height: 500px;
    overflow: hidden;
}

.banner-img-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_img {
    display: flex;
    justify-content: flex-end;
}

.box-banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.banner-img-slider, .banner-img-slider .item, .banner-img-slider img {
    width: 100%;
    height: 100%;
}

.banner-img-slider img {
    object-fit: cover;
}

.home-banner {
    background: rgb(255, 255, 255);
}

.owl-item.active h2 {
    animation: 1s ease 0s 1 normal forwards running fadeUp;
}

.owl-item.active p {
    animation: 1s ease 0.3s 1 normal forwards running fadeUp;
}

.owl-item.active .btns {
    animation: 1s ease 0.6s 1 normal forwards running fadeUp;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col {
        width: 100%;
    }

    .box-banner {
        height: 300px;
    }

    .curve {
        display: none;
    }
}

.cube-bg {
    background-color: rgb(255, 255, 255);
    background-image: url("../images/icons/cubes.png");
    background-repeat: repeat;
}

.navigation li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation li a i {
    font-size: 10px;
    margin-left: 2px;
    position: relative;
    top: -2px;
}

.tyg-glowing a {
    color: rgb(255, 255, 255) !important;
}

.tyg-glowing {
    background-color: rgb(0, 74, 127);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: inline-block;
    font-family: Arial;
    text-decoration: none;
    animation: 1500ms ease 0s infinite normal none running glowing;
    padding: 0px 10px;
}

@-webkit-keyframes glowing {
    0% {
        background-color: rgb(178, 0, 0);
    }

    50% {
        background-color: rgb(234, 181, 4);
    }

    100% {
        background-color: rgb(178, 0, 0);
    }
}

@keyframes glowing {
    0% {
        background-color: rgb(130, 40, 75);
    }

    50% {
        background-color: rgb(237, 49, 55);
    }

    100% {
        background-color: rgb(130, 40, 75);
    }
}

.adm-section-header {
    text-align: center !important;
    margin-bottom: 32px !important;
    position: relative !important;
}

.adm-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, rgb(130, 40, 75), rgb(167, 48, 96)) !important;
    color: rgb(255, 255, 255) !important;
    font-family: Poppins, sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 6px 20px !important;
    border-radius: 40px !important;
    margin-bottom: 14px !important;
    box-shadow: rgba(130, 40, 75, 0.25) 0px 4px 16px !important;
}

.adm-badge .adm-dot {
    display: inline-block !important;
    width: 8px !important;
    height: 8px !important;
    background: rgb(242, 184, 2) !important;
    border-radius: 50% !important;
    animation: 1.6s ease-in-out 0s infinite normal none running adm-pulse !important;
}

@keyframes adm-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.6;
    }
}

.adm-section-header h2 {
    font-family: Poppins, sans-serif !important;
    font-size: 38px !important;
    font-weight: 600 !important;
    color: rgb(160, 46, 92) !important;
    margin: 0px 0px 10px !important;
    line-height: 1.25 !important;
    text-align: center !important;
    width: 100% !important;
    position: static !important;
}

.adm-section-header h2 span {
    color: rgb(130, 40, 75) !important;
}

.adm-section-header .adm-subtitle {
    font-size: 15px !important;
    font-family: Roboto, sans-serif !important;
    font-weight: 400 !important;
    margin: 0px !important;
    line-height: 1.6 !important;
    text-align: center !important;
}

.adm-counter-strip {
    display: flex !important;
    gap: 16px !important;
    justify-content: center !important;
    margin-bottom: 28px !important;
    flex-wrap: wrap !important;
}

.adm-counter-chip {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: rgb(255, 255, 255) !important;
    border-radius: 40px !important;
    padding: 8px 18px !important;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 10px !important;
    border: 1px solid rgba(130, 40, 75, 0.14) !important;
}

.adm-counter-chip .adm-chip-num {
    font-family: Poppins, sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: rgb(130, 40, 75) !important;
    line-height: 1 !important;
}

.adm-counter-chip .adm-chip-label {
    font-size: 11.5px !important;
    font-weight: 500 !important;
    color: rgb(85, 85, 85) !important;
    font-family: Roboto, sans-serif !important;
    line-height: 1.35 !important;
}

.adm-tab-wrapper {
    display: flex !important;
    justify-content: center !important;
    background: rgb(255, 255, 255) !important;
    border-radius: 14px !important;
    padding: 5px !important;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 20px !important;
    max-width: 720px !important;
    margin: 0px auto 28px !important;
}

.adm-tab-btn {
    flex: 1 1 0% !important;
    background: rgb(248, 243, 245) !important;
    border-width: medium !important;
    border-style: none !important;
    border-color: currentcolor !important;
    border-image: initial !important;
    padding: 18px 15px !important;
    font-family: Poppins, sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: 0.3s !important;
    white-space: nowrap !important;
    line-height: 1.4 !important;
}

.adm-tab-btn.active {
    background: linear-gradient(135deg, rgb(130, 40, 75) 0%, rgb(167, 48, 96) 100%) !important;
    color: rgb(255, 255, 255) !important;
    box-shadow: rgba(130, 40, 75, 0.3) 0px 6px 18px !important;
}

.adm-tab-btn:not(.active):hover {
    color: rgb(130, 40, 75) !important;
    background: rgb(240, 228, 233) !important;
}

.adm-tab-panel {
    display: none !important;
}

.adm-tab-panel.active {
    display: block !important;
    animation: 0.35s ease 0s 1 normal none running adm-fadeSlide !important;
}

@keyframes adm-fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.adm-programmes-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 14px !important;
}

.adm-prog-card {
    background: none rgb(255, 255, 255) !important;
    padding: 18px 20px 48px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 12px !important;
    border: 1.5px solid rgb(240, 228, 233) !important;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    cursor: pointer !important;
    flex: 0 0 calc(25% - 11px) !important;
    min-width: 250px !important;
}

.adm-card-link {
    position: absolute !important;
    top: 0px !important;
    left: 0px !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 5 !important;
    text-decoration: none !important;
    opacity: 0 !important;
}

.adm-prog-card::before {
    content: "" !important;
    position: absolute !important;
    left: 0px !important;
    top: 0px !important;
    height: 100% !important;
    width: 6px !important;
    background: linear-gradient(rgb(130, 40, 75), rgb(255, 255, 255)) !important;
    border-radius: 4px 0px 0px 4px !important;
    transition: width 0.3s !important;
}

.adm-prog-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: rgba(130, 40, 75, 0.12) 0px 12px 32px !important;
    border-color: rgba(130, 40, 75, 0.22) !important;
    opacity: 1 !important;
}

.adm-prog-card:hover::before {
    width: 6px !important;
}

.adm-prog-icon {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    border-radius: 13px !important;
    background: linear-gradient(135deg, rgba(130, 40, 75, 0.1), rgba(130, 40, 75, 0.05)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: background 0.3s !important;
}

.adm-prog-card:hover .adm-prog-icon {
    background: linear-gradient(135deg, rgb(130, 40, 75), rgb(167, 48, 96)) !important;
}

.adm-prog-card:hover .adm-prog-icon svg path, .adm-prog-card:hover .adm-prog-icon svg circle, .adm-prog-card:hover .adm-prog-icon svg polyline, .adm-prog-card:hover .adm-prog-icon svg rect {
    stroke: rgb(255, 255, 255) !important;
}

.adm-prog-body {
    flex: 1 1 0% !important;
    min-width: 0px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    text-align: left !important;
}

.adm-prog-name {
    font-family: Poppins, sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: rgb(26, 26, 46) !important;
    margin: 0px !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    display: block !important;
    transition: color 0.2s !important;
    position: relative !important;
    z-index: 2 !important;
}

.adm-prog-card:hover .adm-prog-name {
    color: rgb(130, 40, 75) !important;
}

.adm-prog-specs {
    list-style: none !important;
    padding: 0px !important;
    margin: 0px !important;
}

.adm-prog-specs li {
    font-size: 13px !important;
    color: rgb(0, 0, 0) !important;
    font-family: Roboto, sans-serif !important;
    line-height: 1.6 !important;
    padding-left: 13px !important;
    position: relative !important;
    font-weight: 400 !important;
}

.adm-prog-specs li::before {
    content: "" !important;
    position: absolute !important;
    left: 0px !important;
    top: 7px !important;
    width: 5px !important;
    height: 5px !important;
    background: rgb(242, 184, 2) !important;
    border-radius: 50% !important;
}

.adm-prog-footer {
    position: absolute !important;
    bottom: 0px !important;
    left: 0px !important;
    right: 0px !important;
    width: 100% !important;
    height: 38px !important;
    background: rgb(255, 241, 245) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0px !important;
    padding: 0px !important;
    border-top: 1px solid rgba(130, 40, 75, 0.06) !important;
    z-index: 6 !important;
}

.adm-prog-phone {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: rgb(130, 40, 75) !important;
    font-family: Roboto, sans-serif !important;
    text-decoration: none !important;
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    border-radius: 0px !important;
    transition: 0.25s !important;
    white-space: nowrap !important;
    letter-spacing: 0.3px !important;
    position: relative !important;
    z-index: 10 !important;
}

.adm-prog-phone:hover {
    background: rgb(130, 40, 75) !important;
    color: rgb(255, 255, 255) !important;
    opacity: 1 !important;
}

.adm-prog-phone svg {
    width: 12px !important;
    height: 12px !important;
    flex-shrink: 0 !important;
}

.adm-prog-badge {
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    color: rgb(196, 122, 0) !important;
    background: rgba(242, 184, 2, 0.13) !important;
    padding: 3px 9px !important;
    border-radius: 20px !important;
    text-transform: uppercase !important;
    border: 1px solid rgba(242, 184, 2, 0.35) !important;
    white-space: nowrap !important;
    font-family: Poppins, sans-serif !important;
}

.adm-cta-row {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-top: 36px !important;
    flex-wrap: wrap !important;
}

.adm-cta-tagline {
    font-family: Poppins, sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: rgb(26, 26, 46) !important;
    margin: 0px !important;
    font-style: italic !important;
    text-align: center !important;
}

.adm-cta-tagline span {
    color: rgb(130, 40, 75) !important;
}

.adm-apply-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, rgb(242, 184, 2) 0%, rgb(217, 155, 0) 100%) !important;
    color: rgb(26, 26, 46) !important;
    font-family: Poppins, sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    box-shadow: rgba(242, 184, 2, 0.35) 0px 6px 20px !important;
    transition: 0.3s !important;
    letter-spacing: 0.3px !important;
    cursor: pointer !important;
    border-width: medium !important;
    border-style: none !important;
    border-color: currentcolor !important;
    border-image: initial !important;
    z-index: 2 !important;
}

.adm-apply-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: rgba(242, 184, 2, 0.45) 0px 12px 28px !important;
    opacity: 1 !important;
    color: rgb(26, 26, 46) !important;
}

.adm-apply-btn svg {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.adm-apply-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .adm-prog-card {
        flex: 0 0 calc(50% - 7px) !important;
    }
}

@media (max-width: 640px) {
    .adm-open-section {
        padding: 30px 0px 35px !important;
    }

    .adm-programmes-grid {
        padding: 0px 10px !important;
    }

    .adm-prog-card {
        width: 100% !important;
        flex: 1 1 100% !important;
    }

    .adm-section-header h2 {
        font-size: 22px !important;
    }

    .adm-tab-wrapper {
        max-width: 100% !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        padding: 6px !important;
        border-radius: 12px !important;
    }

    .adm-tab-btn {
        font-size: 11.5px !important;
        padding: 12px 6px !important;
        flex: 1 1 calc(50% - 8px) !important;
        text-align: center !important;
        border-radius: 8px !important;
    }

    .adm-tab-btn:nth-child(3) {
        flex: 1 1 100% !important;
    }

    .adm-cta-row {
        flex-direction: column !important;
        gap: 14px !important;
    }

    .adm-cta-tagline {
        font-size: 15px !important;
    }

    .adm-counter-strip {
        gap: 10px !important;
    }

    .adm-counter-chip {
        padding: 6px 12px !important;
    }

    .adm-prog-card {
        padding: 14px 14px 44px !important;
    }
}

.founder-modern-section {
    padding: 80px 0px;
    background: rgb(249, 250, 252);
}

.founder-card {
    background: rgb(255, 255, 255);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 40px;
    transition: 0.3s;
}

.founder-card:hover {
    transform: translateY(-5px);
}

.founder-img-wrap {
    width: 300px;
    height: 350px;
    margin: 0px auto 5px;
    border-radius: 2%;
    overflow: hidden;
    border: 2px solid rgb(225, 225, 225);
}

.founder-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-role {
    color: rgb(130, 40, 75);
    font-weight: 600;
    margin-bottom: 5px;
}

.founder-org {
    font-size: 14px;
    color: rgb(102, 102, 102);
}

.founder-mini-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.founder-mini-stats div {
    background: rgb(244, 246, 249);
    padding: 10px;
    border-radius: 10px;
    flex: 1 1 0%;
    margin: 0px 5px;
}

.founder-mini-stats h5 {
    margin: 0px;
    font-size: 16px;
    color: rgb(130, 40, 75);
}

.founder-mini-stats span {
    font-size: 11px;
    color: rgb(119, 119, 119);
}

.founder-content-modern {
    background: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 10px 40px;
}

.content-block {
    margin-bottom: 25px;
}

.content-block h3 {
    color: rgb(130, 40, 75);
    margin-bottom: 10px;
}

.founder-quote {
    background: linear-gradient(135deg, rgb(130, 40, 75), rgb(166, 61, 108));
    color: rgb(255, 255, 255);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
}

.founder-quote p {
    font-size: 16px;
    font-style: italic;
}

.founder-quote span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.founder-quote small {
    opacity: 0.8;
}

.chairman-section {
    padding: 80px 0px;
    background: rgb(245, 247, 251);
}

.sticky-chairman {
    position: sticky;
    top: 100px;
}

@media (max-width: 991px) {
    .sticky-chairman {
        position: relative;
        top: 0px;
    }
}

.chairman-card {
    background: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 40px;
}

.chairman-img img {
    width: 100%;
    border-radius: 15px;
}

.chairman-content {
    background: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 40px;
}

.chairman-content h3 {
    font-size: 28px;
    color: rgb(44, 92, 197);
    margin-bottom: 5px;
}

.chairman-role {
    color: rgb(255, 122, 0);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.chairman-details {
    list-style: none;
    padding: 0px;
}

.chairman-details li {
    margin-bottom: 8px;
    color: rgb(68, 68, 68);
}

.highlight-card {
    padding: 20px;
    border-radius: 15px;
    background: rgb(238, 242, 255);
    text-align: center;
    transition: 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card.blue {
    background: rgb(234, 241, 255);
}

.highlight-card.orange {
    background: rgb(255, 243, 232);
}

.highlight-card .icon {
    font-size: 26px;
    margin-bottom: 10px;
}

.highlight-card h5 {
    margin-bottom: 5px;
    font-size: 16px;
    color: rgb(44, 92, 197);
}

.highlight-card.orange h5 {
    color: rgb(255, 122, 0);
}

.highlight-card p {
    font-size: 13px;
    color: rgb(102, 102, 102);
}

section {
    scroll-margin-top: 100px;
}

.menu-width {
    width: 390px !important;
}

.mission-card, .vision-card {
    transition: 0.3s;
    border-radius: 10px;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 30px;
}

.mission-card {
    border-top: 4px solid rgb(0, 123, 255);
}

.vision-card {
    border-top: 4px solid rgb(40, 167, 69);
}

.timeline-modern {
    position: relative;
    padding: 40px 0px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    width: 4px;
    height: 91%;
    background: rgb(160, 46, 92);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 4px 35px;
}

.timeline-item.left {
    left: 0px;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-card {
    background: rgb(255, 255, 255);
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 25px;
    position: relative;
    transition: 0.3s;
}

.timeline-card:hover {
    transform: translateY(-5px);
}

.timeline-card .year {
    display: inline-block;
    font-weight: 500;
    color: rgb(160, 46, 92);
    margin-bottom: 8px;
    font-size: 24px;
}

.timeline-card p {
    margin: 0px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 50px;
    width: 16px;
    height: 16px;
    background: rgb(160, 46, 92);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item.left::before {
    right: -8px;
}

.timeline-item.right::before {
    left: -8px;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 8px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 30px;
        padding-right: 15px;
        text-align: left;
    }

    .timeline-item.right {
        left: 0px;
    }

    .timeline-item.left::before, .timeline-item.right::before {
        left: 0px;
    }
}

.aff-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgb(249, 249, 249);
    padding: 10px 15px;
    border-radius: 12px;
    transition: 0.3s;
    height: 100px;
    margin-bottom: 20px;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.aff-card:hover {
    transform: translateY(-4px);
}

.aff-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(233, 236, 239);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aff-icon img {
    width: 26px;
}

.aff-icon.green {
    background: rgb(209, 245, 224);
}

.aff-icon.pink {
    background: rgb(255, 214, 220);
}

.aff-icon.blue {
    background: rgb(214, 236, 255);
}

.aff-icon.yellow {
    background: rgb(255, 243, 205);
}

.aff-icon.gray {
    background: rgb(226, 227, 229);
}

.aff-icon.orange {
    background: rgb(255, 229, 180);
}

.aff-card h6 {
    margin: 0px;
    font-weight: 600;
    font-size: 16px;
}

.aff-card p {
    margin: 2px 0px 0px;
    font-size: 14px;
    color: rgb(108, 117, 125);
}

.support-image img {
    width: 100%;
    border-radius: 5px;
}

.sports-section {
    padding: 80px 0px;
    background: rgb(248, 249, 251);
}

.section-subtitle {
    max-width: 750px;
    margin: 0px auto;
    color: rgb(102, 102, 102);
    font-size: 16px;
}

.sports-block {
    margin-bottom: 60px;
}

.sports-card {
    background: rgb(255, 255, 255);
    transition: 0.3s;
}

.sports-card:hover {
    transform: translateY(-5px);
}

.sports-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: rgb(130, 40, 75);
}

.sport-item {
    margin-bottom: 15px;
}

.sport-item h5 {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 500;
    color: rgb(48, 44, 81);
}

.sport-item p {
    margin: 0px;
    color: rgb(102, 102, 102);
    font-size: 14px;
}

.sports-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px;
}

.premium-contact {
    padding: 80px 0px;
    background: linear-gradient(135deg, rgb(248, 249, 251), rgb(238, 242, 247));
}

.contact-card {
    background: rgb(255, 255, 255);
    padding: 15px;
    border-radius: 15px;
    transition: 0.3s;
    margin-bottom: 10px;
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid rgb(221, 221, 221);
}

textarea.form-control {
    height: 80px;
}

.info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.info-item span {
    font-size: 20px;
}

.route-card h5 {
    margin-bottom: 10px;
    color: rgb(130, 40, 75);
}

.highlight-text {
    color: rgb(73, 80, 87);
    font-size: 18px;
}

.landmark-card {
    background: rgb(130, 40, 75);
    color: rgb(255, 255, 255);
}

:root {
    --brand: rgb(130, 40, 75);
    --brand-end: rgb(167, 48, 96);
    --brand-light: #f9eef3;
    --brand-text: #7a1f43;
    --text-dark: #1a1220;
    --text-muted: #6b6070;
    --border-col: rgba(130,40,75,0.13);
    --surface: #ffffff;
    --page-bg: #faf8f9;
}

.theme-bg {
    background: linear-gradient(135deg, rgb(130, 40, 75) 0%, rgb(167, 48, 96) 100%) !important;
}

.bp-page {
    color: var(--text-dark);
}

.sec-title .overline {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.sec-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-end));
    border-radius: 2px;
    margin: 0.9rem auto 0px;
}

.bp-hero {
    padding: 70px 0px 80px;
    position: relative;
    overflow: hidden;
}

.bp-hero::before, .bp-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bp-hero::before {
    width: 340px;
    height: 340px;
    top: -80px;
    right: -60px;
    background: rgba(255, 255, 255, 0.06);
}

.bp-hero::after {
    width: 200px;
    height: 200px;
    bottom: -70px;
    left: 35%;
    background: rgba(255, 255, 255, 0.04);
}

.bp-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgb(255, 255, 255);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1.1rem;
}

.bp-hero h1 {
    font-family: var(--head-font);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: rgb(255, 255, 255);
    line-height: 1.18;
    margin-bottom: 1rem;
}

.bp-hero h1 em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
}

.bp-hero-lead {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.bp-hero-lead strong {
    color: rgb(255, 255, 255);
    font-weight: 500;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    padding: 14px 20px;
    text-align: center;
}

.hero-stat-num {
    font-family: var(--head-font);
    font-size: 1.6rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    letter-spacing: 0.4px;
}

.intro-highlight {
    background: var(--surface);
    border: 1px solid var(--border-col);
    border-radius: 14px;
    padding: 32px 30px;
    position: relative;
    overflow: hidden;
}

.intro-highlight::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-end));
}

.intro-highlight p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin: 0px;
}

.intro-highlight p + p {
    margin-top: 1rem;
}

.intro-highlight strong {
    color: var(--text-dark);
    font-weight: 500;
}

.elig-card {
    background: var(--surface);
    border: 1px solid var(--border-col);
    border-radius: 14px;
    padding: 26px 22px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.elig-card::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand), var(--brand-end));
    border-radius: 4px 0px 0px 4px;
}

.elig-card:hover {
    border-color: rgba(130, 40, 75, 0.35);
    transform: translateY(-3px);
}

.elig-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.elig-icon svg {
    width: 20px;
    height: 20px;
}

.elig-card h5 {
    font-family: var(--head-font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.elig-card p, .elig-card ul {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0px;
    padding-left: 0px;
    list-style: none;
}

.elig-card ul li {
    padding: 4px 0px 4px 16px;
    position: relative;
}

.elig-card ul li::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

.affil-wrap {
    background: var(--surface);
    border: 1px solid var(--border-col);
    border-radius: 14px;
    overflow: hidden;
}

.affil-header {
    padding: 22px 26px 16px;
    border-bottom: 1px solid var(--border-col);
    text-align: center;
}

.affil-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0px;
    line-height: 1.7;
}

.affil-links {
    padding: 18px 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-around;
}

.affil-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--brand-light);
    border: 1px solid var(--border-col);
    color: var(--brand-text);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.affil-link:hover {
    background: linear-gradient(135deg, var(--brand), var(--brand-end));
    color: rgb(255, 255, 255);
    border-color: transparent;
    text-decoration: none;
}

.affil-link svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.placement-card {
    background: var(--surface);
    border: 1px solid var(--border-col);
    border-radius: 14px;
    padding: 24px 22px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.placement-card::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand), var(--brand-end));
    border-radius: 4px 0px 0px 4px;
}

.placement-card:hover {
    border-color: rgba(130, 40, 75, 0.35);
    transform: translateY(-3px);
}

.placement-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.placement-icon svg {
    width: 20px;
    height: 20px;
}

.placement-card h5 {
    font-family: var(--head-font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.placement-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0px;
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.company-tag {
    font-size: 0.72rem;
    font-weight: 500;
    background: var(--brand-light);
    color: var(--brand-text);
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid var(--border-col);
}

.fees-banner {
    border-radius: 14px;
    padding: 38px 36px;
}

.fees-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 6px;
}

.fees-amount {
    font-family: var(--head-font);
    font-size: 2.4rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    line-height: 1;
}

.fees-per {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 5px;
}

.fees-cta {
    display: inline-block;
    background: rgb(255, 255, 255);
    color: var(--brand);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 13px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.fees-cta:hover {
    opacity: 0.9;
    color: var(--brand);
    text-decoration: none;
}

.obj-card {
    background: var(--surface);
    border: 1px solid var(--border-col);
    border-radius: 14px;
    padding: 6px 20px;
    display: flex;
    gap: 14px;
    align-items: center;
    height: 75px;
}

.obj-num {
    font-family: var(--head-font);
    font-size: 26px;
    font-weight: 700;
    color: var(--brand-light);
    -webkit-text-stroke: 1.5px var(--brand);
    line-height: 1;
    flex-shrink: 0;
    min-width: 34px;
}

.obj-text {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    padding-top: 5px;
}

.why-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.why-icon svg {
    width: 20px;
    height: 20px;
}

.management-research-section {
    background: rgb(245, 247, 252);
    font-family: Poppins, sans-serif;
}

.section-subtitle {
    max-width: 780px;
    margin: auto;
    color: rgb(108, 117, 125);
    line-height: 1.8;
}

.stats-card {
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 18px;
    height: 100%;
}

.stats-number {
    font-size: 34px;
    font-weight: 700;
    color: rgb(160, 46, 92);
}

.stats-label {
    color: rgb(85, 85, 85);
    font-size: 14px;
}

.research-heading h3 {
    font-weight: 700;
    color: rgb(160, 46, 92);
}

.faculty-card {
    background: rgb(255, 255, 255);
    border-radius: 18px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 18px;
}

.faculty-avatar {
    width: 200px;
    height: 260px;
    border-radius: 5%;
    border: 2px solid rgb(160, 46, 92);
    margin: auto;
    object-fit: cover;
}

.faculty-name {
    color: rgb(160, 46, 92);
    font-weight: 700;
}

.faculty-designation {
    color: rgb(102, 102, 102);
    margin-bottom: 10px;
}

.faculty-info {
    font-size: 14px;
    margin-bottom: 8px;
}

.research-tags span {
    display: inline-block;
    background: rgb(238, 244, 255);
    color: rgb(30, 94, 215);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.research-stats {
    display: flex;
    gap: 40px;
}

.research-stats strong {
    display: block;
    color: rgb(30, 94, 215);
    font-size: 22px;
}

.research-stats span {
    font-size: 13px;
    color: rgb(102, 102, 102);
}

.project-title {
    font-weight: 700;
    margin-bottom: 18px;
    color: rgb(30, 94, 215);
    text-align: center;
}

.project-box {
    background: rgb(255, 255, 255);
    border-width: 1px 1px 1px 4px;
    border-style: solid;
    border-color: rgb(215, 228, 255) rgb(215, 228, 255) rgb(215, 228, 255) rgb(160, 46, 92);
    border-image: initial;
    border-radius: 12px;
    padding: 18px;
    height: 100%;
    margin-bottom: 10px;
}

.project-box h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-box span {
    font-size: 12px;
    color: rgb(40, 167, 69);
    font-weight: 600;
}

.patent-card {
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 14px;
    background: linear-gradient(135deg, rgba(130, 40, 75, 0.1), rgba(130, 40, 75, 0.05)) !important;
}

.patent-status {
    display: inline-block;
    background: rgb(255, 255, 255);
    color: rgb(165, 107, 0);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.patent-status.green {
    background: rgb(255, 255, 255);
    color: rgb(21, 128, 61);
}

.patent-card h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 14px;
}

.patent-card p {
    color: rgb(85, 85, 85);
    line-height: 1.7;
}

.area-card {
    background: rgb(255, 255, 255);
    border-radius: 16px;
    padding: 24px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 14px;
    height: 100%;
    margin-bottom: 10px;
}

.area-card h5 {
    color: rgb(160, 46, 92);
    font-weight: 700;
    margin: 0px;
}

.area-card span {
    color: rgb(255, 122, 0);
    font-size: 13px;
    font-weight: 600;
}

.area-card p {
    margin: 0px;
    color: rgb(102, 102, 102);
    line-height: 1.7;
}

.research-cta {
    color: rgb(255, 255, 255);
    padding: 60px 30px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgb(130, 40, 75) 0%, rgb(167, 48, 96) 100%) !important;
}

.research-cta h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.research-cta p {
    max-width: 800px;
    margin: auto auto 25px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .faculty-card {
        padding: 25px;
    }

    .research-stats {
        gap: 20px;
    }
}

.placement-page {
    background: rgb(245, 247, 252);
}

.placement-hero {
    padding: 40px 20px;
}

.placement-badge {
    display: inline-block;
    background: rgb(233, 241, 255);
    color: rgb(30, 94, 215);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 18px;
}

.placement-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: rgb(30, 94, 215);
    margin-bottom: 20px;
}

.placement-hero p {
    max-width: 800px;
    margin: auto;
    color: rgb(102, 102, 102);
    line-height: 1.9;
}

.placement-stat-card {
    background: rgb(255, 255, 255);
    border-radius: 18px;
    padding: 30px 20px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 18px;
}

.placement-stat-card h2 {
    color: rgb(160, 46, 92);
    font-size: 38px;
    font-weight: 700;
}

.recruiter-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.recruiter-wrap span {
    background: rgb(255, 255, 255);
    padding: 12px 22px;
}

.recruiter-card {
    background: rgb(255, 255, 255);
    border-radius: 22px;
    padding: 10px 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: 0.35s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 30px, rgba(0, 0, 0, 0.03) 0px 2px 8px;
}

.recruiter-card::before {
    position: absolute;
    inset: 0px;
    opacity: 0;
    transition: 0.35s;
}

.recruiter-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 45px, rgba(30, 94, 215, 0.08) 0px 8px 20px;
    border-color: rgba(30, 94, 215, 0.12);
}

.recruiter-card:hover::before {
    opacity: 1;
}

.recruiter-card img {
    width: 100%;
    object-fit: contain;
    transition: 0.35s;
    opacity: 0.85;
    position: relative;
    z-index: 2;
}

.recruiter-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
    opacity: 1;
}

.recruiter-logo-wrap .col-lg-2, .recruiter-logo-wrap .col-md-3, .recruiter-logo-wrap .col-6 {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .recruiter-card {
        padding: 28px 15px;
        border-radius: 18px;
    }

    .recruiter-card img {
        max-width: 100px;
        height: 60px;
    }
}

.placement-cell-section {
}

.placement-cell-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(30, 94, 215, 0.05);
    border-radius: 50%;
}

.placement-cell-section::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 280px;
    height: 280px;
    background: rgba(74, 125, 242, 0.05);
    border-radius: 50%;
}

.placement-cell-card {
    background: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 15px 45px, rgba(0, 0, 0, 0.04) 0px 5px 18px;
    transition: 0.35s;
    height: 100%;
}

.placement-cell-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 22px 55px, rgba(30, 94, 215, 0.08) 0px 8px 22px;
}

.placement-icon {
}

.placement-icon i {
    color: rgb(255, 255, 255);
    font-size: 30px;
}

.placement-cell-card h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
    color: rgb(160, 46, 92);
}

.placement-cell-card p {
    color: rgb(102, 102, 102);
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 16px;
}

.placement-list {
    padding: 0px;
    margin: 30px 0px 0px;
    list-style: none;
}

.placement-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 0px;
    color: rgb(108, 117, 125);
    font-weight: 500;
    line-height: 1.7;
}

.placement-list li i {
    color: rgb(30, 94, 215);
    font-size: 20px;
    margin-top: 3px;
}

.tpo-card {
    background: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 20px 15px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 15px 45px, rgba(0, 0, 0, 0.04) 0px 5px 18px;
    transition: 0.35s;
}

.tpo-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 22px 55px, rgba(30, 94, 215, 0.08) 0px 8px 22px;
}

.tpo-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 220px;
    height: 220px;
    background: rgba(30, 94, 215, 0.06);
    border-radius: 50%;
}

.tpo-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(30, 94, 215), rgb(74, 125, 242));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: rgba(30, 94, 215, 0.25) 0px 18px 35px;
}

.tpo-avatar i {
    color: rgb(255, 255, 255);
    font-size: 48px;
}

.tpo-label {
    display: inline-block;
    background: rgb(238, 244, 255);
    color: rgb(30, 94, 215);
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}

.tpo-card h3 {
    font-size: 26px;
    font-weight: 500;
    color: rgb(160, 46, 92);
}

.designation {
    color: rgb(102, 102, 102);
    font-size: 17px;
    margin-bottom: 8px;
}

.tpo-contact a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0px 27px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgb(30, 94, 215), rgb(74, 125, 242));
    color: rgb(255, 255, 255);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: rgba(30, 94, 215, 0.22) 0px 12px 25px;
}

.tpo-contact a:hover {
    transform: translateY(-3px);
    color: rgb(255, 255, 255);
    box-shadow: rgba(30, 94, 215, 0.28) 0px 18px 35px;
}

.tpo-contact i {
    font-size: 15px;
}

@media (max-width: 991px) {
    .placement-cell-card, .tpo-card {
        padding: 35px 25px;
    }
}

@media (max-width: 767px) {
    .placement-cell-card h3, .tpo-card h3 {
        font-size: 26px;
    }

    .placement-cell-card p, .placement-list li {
        font-size: 15px;
    }

    .tpo-avatar {
        width: 95px;
        height: 95px;
    }

    .tpo-avatar i {
        font-size: 38px;
    }

    .tpo-contact a {
        width: 100%;
        justify-content: center;
    }

    .main-header .logo img {
        width: 200px;
    }

    .banner-section .content-box {
        min-height: 200px;
    }

    .banner-section.style-five .content-box .inner {
        display: none;
    }
}

.training-visit-section {
    background: rgb(248, 250, 255);
    position: relative;
    overflow: hidden;
}



.training-intro {
    max-width: 950px;
    margin: auto;
}

.training-intro p {
    color: rgb(102, 102, 102);
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 16px;
}

.training-card {
    background: rgb(255, 255, 255);
    border-radius: 28px;
    padding: 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.35s;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 15px 40px, rgba(0, 0, 0, 0.03) 0px 5px 18px;
}

.training-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 25px 55px, rgba(30, 94, 215, 0.08) 0px 10px 22px;
}

.training-card::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, rgb(130, 40, 75) 0%, rgb(167, 48, 96) 100%) !important;
}

.training-icon {
    width: 85px;
    height: 85px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgb(30, 94, 215), rgb(74, 125, 242));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: rgba(30, 94, 215, 0.25) 0px 15px 30px;
}

.training-icon i {
    color: rgb(255, 255, 255);
    font-size: 34px;
}

.training-badge {
    display: inline-block;
    background: rgb(238, 244, 255);
    color: rgb(30, 94, 215);
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.training-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: rgb(160, 46, 92);
    margin-bottom: 18px;
}

.training-card p {
    color: rgb(102, 102, 102);
    line-height: 1.9;
    margin-bottom: 28px;
}

.training-list {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.training-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 10px;
    color: rgb(34, 34, 34);
    font-weight: 500;
}

.training-list li i {
    color: rgb(30, 94, 215);
    margin-top: 4px;
    font-size: 18px;
}

.highlight-box {
    background: rgb(255, 255, 255);
    border-radius: 24px;
    padding: 35px 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 30px, rgba(0, 0, 0, 0.03) 0px 4px 12px;
    transition: 0.3s;
}

.highlight-box:hover {
    transform: translateY(-6px);
}

.highlight-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: rgb(30, 94, 215);
    margin-bottom: 12px;
}

.highlight-box p {
    color: rgb(102, 102, 102);
    margin: 0px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .training-card {
        padding: 35px 28px;
    }
}

@media (max-width: 767px) {
    .training-card h3 {
        font-size: 26px;
    }

    .training-card p, .training-list li, .training-intro p {
        font-size: 15px;
    }

    .training-icon {
        width: 70px;
        height: 70px;
    }

    .training-icon i {
        font-size: 28px;
    }

    .highlight-box h2 {
        font-size: 34px;
    }
}

/* ===================================
   ACADEMIC EXCELLENCE SECTION
=================================== */

.academic-excellence-section{
    margin-top:80px;
}

.excellence-card{
    background:#fff;
    border-radius:24px;
    padding:40px 25px;
    position:relative;
    overflow:hidden;
    transition:all .35s ease;
    box-shadow:
        0 12px 35px rgba(0,0,0,0.05),
        0 4px 12px rgba(0,0,0,0.03);
}

.excellence-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background: linear-gradient(135deg, rgb(130, 40, 75) 0%, rgb(167, 48, 96) 100%) !important;
}

.excellence-card:hover{
    transform:translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.10),
        0 8px 20px rgba(30,94,215,0.08);
}

.excellence-card h2{
    font-size: 36px;
    font-weight:700;
    color: rgb(160, 46, 92);
    margin-bottom:12px;
    line-height:1;
}

.excellence-card p{
    margin:0;
    font-size: 16px;
    font-weight: 00;
    color:#555;
}

/* MOBILE */
@media(max-width:767px){

    .excellence-card{
        padding:32px 20px;
    }

    .excellence-card h2{
        font-size:38px;
    }

    .excellence-card p{
        font-size:15px;
    }

}

/* Popup CSS  */

.widget-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.widget-content {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.close-widget {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}
