@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --bs-primary: #9929fb;
    --bs-secondary: #ff014f;
    --bs-secondary: #111827;
    --bs-secondary: #650fa0;
    --bs-light: #f4f4f4;
    --bs-dark: #272d47;
    --bs-heading-color: #272d47;
    --bs-darker: #1a1c33;
    --bs-success: #0abb75;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: #3F4254;
    background-color: var(--bs-light);
    font-family: "Inter", "Bornomala", sans-serif;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
    height: revert-layer;
    display: inline-block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-family: "Ubuntu", "Bornomala", sans-serif;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    border-color: transparent;
    box-shadow: none;
}

.btn-check:checked+.btn:focus-visible,
.btn.active:focus-visible,
.btn.show:focus-visible,
.btn:first-child:active:focus-visible,
:not(.btn-check)+.btn:active:focus-visible {
    box-shadow: none;
}

.btn {
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 0.45rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.5px;
}

.btn-sm {
    border-radius: 3px;
    padding: 6px 12px;
    font-size: 13px;
}

.btn-xs {
    border-radius: 2px;
    padding: 5px 8px;
    font-size: 12px;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.btn {
    position: relative;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
}

.icon-reverse-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.btn-text {
    display: inline-block;
    transition: transform .6s cubic-bezier(.1, .75, .25, 1) .125s;
    -webkit-margin-start: -23px;
    margin-inline-start: -23px;
}

.btn-icon {
    display: inline-block;
    transition: opacity .4s .25s, transform .6s .25s;
    transition-timing-function: cubic-bezier(.1, .75, .25, 1);
    display: flex;
    align-items: center;
    /* padding-top: 3px; */
}

.btn-icon+.btn-icon {
    -webkit-margin-end: 0;
    -webkit-margin-start: 8px;
    margin-inline-start: 8px;
    display: inline-flex;
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition-delay: 0s;
    order: -2;
}

.btn i {
    display: inline-block;
    top: 0;
    position: relative;
    font-size: 20px;
}

.btn-icon+.btn-icon i {
    padding-left: 0;
}

.btn:hover .btn-text {
    transition-delay: .1s;
    transform: translateX(23px);
}

.btn:hover .btn-icon {
    opacity: 0;
    transition-delay: 0s;
    transform: translateX(10px);
}

.btn:hover .btn-icon+.btn-icon {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .225s;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
}

.btn-primary:hover {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: var(--bs-white);
}

.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--bs-primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-primary);
    --bs-gradient: none;
}

.btn-secondary {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.btn-check:checked+.btn.btn-secondary,
.btn.btn-secondary.active,
.btn.btn-secondary.show,
.btn.btn-secondary:first-child:active,
:not(.btn-check)+.btn.btn-secondary:active,
.btn-secondary:hover {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-light {
    background-color: var(--bs-light) !important;
}

.text-xs {
    font-size: 12px;
}

.text-sm {
    font-size: 14px;
}

.text-base {
    font-size: 16px;
}

.text-md {
    font-size: 18px;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.form-control:focus {
    color: var(--bs-gray-700);
    background-color: var(--bs-body-bg);
    border-color: #eee;
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--bs-gray-500);
    font-size: 0.85rem
}

.breadcrumb-item {
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--bs-primary);
}

.pagination li>* {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1;
    font-size: 1em;
    font-weight: 400;
    padding: .75em;
    text-align: center;
    display: block;
    min-width: 2.5em;
    border: 1px solid var(--bs-primary);
    height: 2.5em;
    color: var(--bs-primary);
    margin: 0 2px;
    border-radius: 0.5rem;
}

.pagination li>*:hover,
.pagination li.active>* {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.pagination {
    justify-content: center;
}

.pagination li.disabled {
    display: none;
}

.preloader {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-white);
    position: fixed;
    inset: 0;
    z-index: 9999;
}

#content-wrapper {
    min-height: calc(100vh - 500px);
}

.truncate-text {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--lines, 2);
    line-clamp: var(--lines, 2);
    min-height: calc(var(--line-height, 20px) * var(--lines, 2));
}

.scrollTop {
    position: fixed;
    right: 25px;
    bottom: 60px;
    width: 40px;
    height: 45px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    border-radius: 3px;
    color: var(--bs-secondary);
    cursor: pointer;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 7px 5px -4px;
}

.scrollTop:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-arrow-btn {
    background-color: rgb(255 255 255 / 30%);
    border: 1px solid transparent;
    height: 66px;
    width: 32px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 0 8px -2px rgba(0, 0, 0, .3);
    align-items: center;
    padding: 0 4px 0 0;
    left: 0;
    transform: translateY(-50%);
    margin-top: 0;
    color: var(--bs-white);
    transition: all 0.3s ease-in-out;
}

.swiper-arrow-btn:hover {
    background-color: var(--bs-white);
    color: var(--bs-primary);
}

.swiper-button-next {
    padding: 0 0 0 2px;
    right: 0;
    left: auto;
}

.swiper-button-next svg {
    transform: rotate(180deg);
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 11px;
    height: 16px;
    object-fit: contain;
    transform-origin: center;
}

.swiper-pagination-bullet-active {
    background: var(--bs-white);
}

.divider-separator {
    width: 25%;
    display: flex;
    align-items: center;
}

.divider-separator::before,
.divider-separator::after {
    content: '';
    flex-grow: 1;
    height: 2px;
    background-color: var(--bs-primary);
}

.divider__element {
    flex-shrink: 0;
    margin: 0 10px;
    color: var(--bs-primary);
    font-size: 20px;
}

.whatsapp-float {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 15px 5px 10px;
    height: 40px;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .06), 0 2px 32px 0 rgba(0, 0, 0, .16);
    color: var(--bs-white);
    background-color: #25d366;
    position: fixed;
    right: 25px;
    bottom: 120px;
    border-radius: 50px;
    font-size: 16px;
    z-index: 999;
}

.scrollToTop {
    height: 55px;
    width: 55px;
    position: fixed;
    bottom: 60px;
    right: 20px;
    background-color: var(--bs-secondary);
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    z-index: 99999;
    transition: all .5s ease;
}

.scrollToTop .arrowUp {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.scrollToTop .arrowUp i {
    font-size: 19px;
}

.scrollToTop .water {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    background-color: var(--bs-primary);
    transition: all .3s;
}

.scrollToTop .water_wave {
    width: 200%;
    position: absolute;
    bottom: 100%;
}

.scrollToTop .water_wave_back {
    right: 0;
    fill: var(--bs-primary);
    animation: wave-back 1.4s linear infinite;
}

.scrollToTop .water_wave_front {
    left: 0;
    fill: var(--bs-primary);
    margin-bottom: -1px;
    animation: wave-front .7s linear infinite;
}

@keyframes wave-front {
    to {
        transform: translateX(-50%)
    }
}

@keyframes wave-back {
    to {
        transform: translateX(50%)
    }
}

/* =============== Header CSS =============== */
.tmp-white-version {
    --color-heading: #141414;
    --color-gray: #5d6570;
    --color-body: #2a2d31;
    --color-gray-2: #f4f4f4;
    --color-border: #d9dde0;
    background: #fff;
}

.page-with-left-header {
    margin-left: 290px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 37px;
}

@media only screen and (min-width: 1200px)and (max-width:1599px) {
    .page-with-left-header {
        margin-left: 290px;
    }
}

@media only screen and (max-width: 1199px) {
    .page-with-left-header {
        margin-left: 0;
    }

    .about-section {
        padding-top: 50px;
    }
}

.header-left-sticky {
    position: fixed;
    left: 0;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
    min-height: 100vh;
    top: 0;
    width: 290px;
    z-index: 2;
    transform: translateX(0);
    border-right: 2px solid var(--color-border);
    background: var(--color-gray-2);
    transition: all .3s ease-in-out 0s;
}

.header-left-sticky {
    background: #fff;
}

.header-left-sticky .inner-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 40px 0 0;
    display: flex;
    flex-direction: column;
}

.logo-area {
    text-align: center;
    flex-shrink: 0;
}

.nav-wrapper {
    flex-grow: 1;
    overflow: auto;
    padding: 0 40px 50px;
    position: relative;
    z-index: 9;
}

.logo-area a img {
    border-radius: 100%;
    border: 2px solid var(--bs-secondary);
    padding: 3px;
}

.primary-menu {
    display: block;
    width: 100%;
    border-radius: 10px;
    margin: 0;
    padding: 30px 0 0 0;
}

.primary-menu li a {
    display: flex;
    align-items: center;
    border: none;
    font-size: 18px;
    color: var(--bs-secondary);
    border-radius: 10px;
    width: 100%;
    margin: 8px 0;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0.8rem;
}

.primary-menu li a:hover,
.primary-menu li.current a {
    color: var(--bs-primary) !important;
}

.primary-menu li a svg {
    /* height: 18px; */
    /* width: 18px; */
    margin-right: 8px;
    color: var(--bs-primary);
    top: -1px;
    position: relative;
    opacity: .6;
}

.primary-menu li a:hover svg,
.primary-menu li.current a svg {
    opacity: 1;
}

.primary-menu li a:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(.7);
    left: 0;
    background: var(--bs-primary);
    width: 100%;
    height: 100%;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all 0.2s ease;
}

.primary-menu li a:hover::after,
.primary-menu li.current a::after {
    opacity: .1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

.social-share-style-1 {
    border-top: 2px solid var(--color-border);
    padding-top: 40px;
    margin-top: 40px !important;
}

.social-share-style-1 .title {
    font-size: 16px;
    color: var(--color-body);
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-link {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.social-link a {
    width: 40px;
    height: 40px;
    color: var(--bs-primary);
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    z-index: 1;
    background: rgba(10, 10, 10, .06);
    border-radius: 100%;
    font-size: 14px
}

.social-link a:after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: var(--bs-primary);
    opacity: .06;
    transform: scale(0);
    transition: all .4s ease;
    z-index: -1
}

.social-link a:hover {
    color: #fff
}

.social-link a:hover:after {
    opacity: 1;
    transform: scale(1)
}

.footer-section {
    background-color: var(--bs-primary);
    background-color: var(--bs-secondary);
    padding: 0.5rem 0;
    position: fixed;
    z-index: 9999;
    left: 0;
    bottom: 0;
    width: 100%;
}

.separator-animated-border {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    right: 0px;
    height: 2px;
    width: 85%;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(233, 100, 100, 0.357) 50%, rgba(0, 0, 0, 0) 100%);
}

.separator-animated-border.animated-true::before {
    content: "";
    position: absolute;
    width: 8%;
    height: 100%;
    backdrop-filter: blur(20px);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0) 0%, var(--bs-secondary) 50%, rgba(0, 0, 0, 0) 100%);
    animation: 5s ease-in-out 0s infinite normal none running separateline;
}

@keyframes separateline {
    0% {
        left: 0;
    }

    100% {
        left: 110%;
    }
}

.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 0;
    z-index: 999;
    color: var(--bs-primary);
}

.mobile-header.sticky {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / .25);
    background-color: rgb(123 114 86 / 50%);
    backdrop-filter: blur(24px);
    color: var(--bs-white);
}

.mobile-logo img {
    background-color: var(--bs-white);
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--bs-secondary);
    padding: 2px;
}

.thumbnail-author {
    position: relative;
    z-index: 1;
    max-width: max-content;
    margin: auto auto 20px;
}

.loader-bg-pattern-wrapper {
    position: absolute;
    left: 50%;
    z-index: -1;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loader-bg-pattern {
    --size: 200px;
    --duration: 4s;
    --logo-color: grey;
    --background: linear-gradient(0deg, rgba(50, 50, 50, 0.2), rgba(100, 100, 100, 0.2));
    height: var(--size);
    aspect-ratio: 1;
    position: relative;
}

.loader-bg-pattern .box {
    position: absolute;
    background: rgba(223, 223, 223, .15);
    background: rgba(247, 247, 247, .3411764706);
    border-radius: 50%;
    border-top: 1px solid rgba(100, 100, 100, .1);
    box-shadow: 0 10px 10px 0 rgba(216, 216, 216, .123);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    animation: ripple-2 var(--duration) infinite ease-in-out;
}

@keyframes ripple-2 {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 10px 0 rgba(185, 185, 185, .3)
    }

    50% {
        transform: scale(1.3);
        box-shadow: 0 30px 20px 0 rgba(185, 185, 185, .3)
    }

    to {
        transform: scale(1);
        box-shadow: 0 10px 10px 0 rgba(185, 185, 185, .3)
    }
}

.loader-bg-pattern .box:first-child {
    inset: 40%;
    z-index: 99;
}

.loader-bg-pattern .box:nth-child(2) {
    inset: 30%;
    z-index: 98;
    border-color: rgba(100, 100, 100, .1);
    animation-delay: .2s;
}

.loader-bg-pattern .box:nth-child(3) {
    inset: 20%;
    z-index: 97;
    border-color: rgba(100, 100, 100, .1);
    animation-delay: .4s;
}

.loader-bg-pattern .box:nth-child(4) {
    inset: 10%;
    z-index: 96;
    border-color: rgba(100, 100, 100, .1);
    animation-delay: .6s;
}

.loader-bg-pattern .box:nth-child(5) {
    inset: 0;
    z-index: 95;
    border-color: rgba(100, 100, 100, .1);
    animation-delay: .8s;
}

/* =============== Header CSS =============== */

/* =============== Home CSS =============== */
.home-section {
    min-height: 500px;
}

.about-image {
    position: relative;
    min-height: 500px;
    z-index: 1;
    height: 100%;
}

.about-image img {
    position: absolute;
    height: 100%;
    /* width: 100%; */
    object-fit: contain;
    object-position: bottom;
}

.about-image img:first-child {
    padding-top: 50px;
}

.about-image img:last-child {
    z-index: -1;
}

.sub-title {
    color: var(--bs-secondary);
    /* color: var(--bs-primary); */
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 30px;
    display: block;
}

.title {
    font-size: 50px;
    line-height: 100%;
    color: var(--bs-primary);
}

.c-socials__item {
    display: inline-block;
    margin-right: 8px;
    line-height: 1;
    width: 30px;
    height: 30px;
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
    text-align: center;
    transition: all 0.3s;
}

.c-socials__link {
    color: #ffffff;
    font-size: 0.75rem;
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.c-socials__item:hover {
    background-color: transparent;
}

.c-socials__item:hover .c-socials__link {
    color: var(--bs-secondary);
}

/* =============== Home CSS =============== */

/* =============== Education CSS =============== */
.c-timeline__list {
    list-style: none;
    overflow: hidden;
}

.c-timeline__item {
    padding-left: 120px;
    padding-bottom: 15px;
    padding-right: 65px;
    position: relative;
}

.c-timeline__body {
    color: #747681;
}

.c-timeline__time {
    position: absolute;
    top: 4px;
    left: -90px;
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
    left: 0px;
    color: var(--bs-primary);
}

.c-timeline__dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bs-primary);
    top: 5px;
    left: -20px;
    left: 85px;
}

.c-timeline__line {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #2066a1;
    top: 5px;
    left: -20px;
    left: -35px;
    display: block;
    width: 2px;
    background: var(--bs-primary);
    height: 100%;
    top: 5px;
    left: 92px;
    margin-left: -1px;
}

/* .c-timeline__line::before {
    content: "";
    position: absolute;
    display: block;
    width: 2px;
    background: #2066a1;
    height: 9999px;
    top: 0;
    left: 50%;
    margin-left: -1px;
} */

.c-timeline__heading {
    margin-bottom: 10px;
    color: var(--bs-primary);
}

.c-section-heading {
    position: relative;
    z-index: 2;
}

.c-section-heading__icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--bs-white);
    width: 60px;
    height: 60px;
    padding: 10px;
    box-shadow: rgb(255 255 255 / 50%) 0px 0px 0px 0.1em inset;
    box-shadow: rgb(255 255 255 / 60%) 0px 0px 0px 0.1em inset;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(.75em);
    border-radius: 10px;
    background-color: #ffffff26;
    background-color: rgb(255 255 255 / 20%);
}

.c-section-heading__icon span,
.c-section-heading__icon i,
.c-section-heading__icon svg {
    height: 70px;
    width: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.c-section-heading__shape {
    position: absolute;
    top: 0;
    left: 10px;
    width: 60px;
    height: 60px;
    rotate: 20deg;
    background: linear-gradient(rgb(177, 13, 242), rgb(120, 13, 242));
    box-shadow: rgba(23, 24, 28, 0.15) 0.5em -0.5em 0.75em;
    border-radius: 10px;
    z-index: -1;
    transform-origin: 90%;
    background: linear-gradient(var(--bs-primary), var(--bs-secondary));
}

.c-section-heading__header {
    margin-left: 15px;
    display: inline-block;
    vertical-align: bottom;
    color: var(--bs-primary);
}

.svg-icon__border {
    fill: none;
    stroke: var(--bs-primary);
    width: 90px;
    height: 90px;
    stroke-dasharray: 360px, 360px;
    stroke-dashoffset: 360;
    transition: stroke-dashoffset 1s;
}

.svg-icon__item {
    fill: var(--bs-primary);
    stroke: none;
}

.active-section .svg-icon__border,
.svg-icon--is-animated .svg-icon__border {
    stroke-dashoffset: 0;
}

/* =============== Education CSS =============== */

/* =============== Contact CSS =============== */
.o-screen-contact {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 900px) {
    .o-screen-contact {
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .o-screen-contact__col-info {
        margin-bottom: 0;
        -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
    }

    .o-screen-contact__col-form {
        -ms-flex-preferred-size: 40%;
        flex-basis: 50%;
    }
}

.o-screen-contact__col-info {
    margin-bottom: 0;
    -ms-flex-preferred-size: 35%;
    flex-basis: 40%;
}

.c-screen-contact__item {
    margin-bottom: 15px;
    display: flex;
    font-weight: 600;
    color: var(--bs-secondary);
    gap: 10px;
    align-items: center;
}

.c-screen-contact__address {
    list-style: none;
    font-size: 0.875rem;
    line-height: 1.7142;
    color: #747681;
}

.c-form label {
    margin-bottom: 7px;
    display: block;
    font-size: 0.875rem;
    line-height: 1.2888;
    font-weight: 700;
}

.c-form input,
.c-form textarea {
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
    outline: none;
    padding: 9px 0px 8px 10px;
    font-size: 0.75rem;
    line-height: 1.75;
    border: 1px solid #b7b7b7;
}

.contact-map {
    display: flex;
    margin: 0 -1.5rem;
    margin-top: 50px;
}

.contact-map iframe {
    height: 550px;
    width: 100%;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #545454;
    border-radius: 8px;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
    transition: all 0.3s ease-in-out;
}

/* =============== Contact CSS =============== */


/* =============== Photo Gallery CSS =============== */
.gallery-box {
    position: relative;
}

.gallery-box img {
    z-index: 1;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.gallery-box>a:hover img {
    transform: scale(1.2);
}

.gallery-box a {
    margin: 5px;
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-box a:before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--bs-primary);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.45s linear;
    transition: all 0.45s linear;
}

.gallery-box a:hover:before {
    opacity: 0.5;
}

.gallery-box>a:after {
    content: "\f424";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900;
    color: var(--bs-white);
    opacity: 0;
    font-size: 30px;
    z-index: 2;
    -webkit-transition: all 0.45s linear;
    transition: all 0.45s linear;
}

.gallery-box:hover>a:after {
    opacity: 1;
}

/* =============== Photo Gallery CSS =============== */

/* =============== Publication CSS =============== */
.c-article__item {
    background: var(--bs-white);
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 3px 5px rgb(0 0 0 / 15%);
}

.c-article__image {
    /* filter: sepia(60%); */
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    margin: 0;
    z-index: 2;
    background-color: var(--bs-white);
}

.c-article__image::before {
    content: "";
    display: block;
    margin-top: 130%;
}

.c-article__image img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-article__body {
    padding: 30px 20px 15px 20px;
    background-color: var(--bs-white);
    border-radius: 0 0 10px 10px;
}

.c-article__cite {
    color: #5d6570;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-size: 12px;
    color: var(--bs-primary);
    font-weight: 600;
    position: relative;
}

.c-article__cite::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: var(--bs-primary);
    /* background-color: var(--bs-gray-300); */
}

.c-article__header {
    color: var(--bs-primary);
    margin-bottom: 10px;
}

.c-button--simple-text {
    color: var(--bs-primary);
    font-weight: 500;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 13px;
}

.border-gradient:after {
    --angle: 0deg;
    background: linear-gradient(#fb7185, #da8bff, #407cff);
    background: linear-gradient(var(--angle), #407cff, #da8bff, #fb7185);
    content: "";
    opacity: .5;
    z-index: -1;
    border-radius: .75rem;
    margin: -2px;
    position: absolute;
    inset: 0;
}

.border-gradient:after {
    background: linear-gradient(var(--angle), #879fd7, #c9a227, #c9a227, #da8bff, #fb7185);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    to {
        --angle: 360deg
    }
}

/* =============== Publication CSS =============== */

/* =============== Blog CSS =============== */
.blog-card {
    background-color: var(--bs-white);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #d9dde0;
}

.blog-card-img {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.blog-card-img img {}

.blog-card-img img:first-child {
    width: 100%;
    height: 100%;
    transition: .8s;
    background-size: cover;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-card-img img:last-child {
    /* position: relative; */
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease;
}

.blog-card:hover .blog-card-img img:first-child {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.blog-card:hover .blog-card-img img:last-child {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 10;
    border-radius: 5px;
    background: var(--color-gray-2);
    color: var(--bs-primary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.tag-icon {
    font-size: 14px;
}

.blog-content {
    padding: 15px;
}

.blog-title {
    color: var(--bs-primary);
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.blog-card:hover .blog-title {
    color: var(--bs-secondary);
}

.blog-title .link {
    position: relative;
    display: inline;
    background-image: linear-gradient(90deg, currentColor 0, currentColor);
    background-size: 0 2px;
    background-position: 0 100%;
    transition: background-size .25s cubic-bezier(.785, .135, .15, .86) 0s;
    padding: 0.1% 0;
    background-repeat: no-repeat;
    transition: .3s;
    line-height: 1.3;
}

.blog-card:hover .blog-title .link {
    background-size: 100% 2px;
    color: inherit;
}

.read-more-btn {
    color: #5d6570;
    font-size: 13px;
    font-weight: 400;
    line-height: 27px;
    display: inline-block;
    align-items: center;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.read-more-btn:hover {
    color: var(--bs-secondary);
}

/* =============== Blog CSS =============== */

/* =============== Mobile Menu CSS =============== */
.mobile-menu {
    z-index: 9999;
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .8);
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease-out;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-inner {
    width: 320px;
    z-index: 999;
    position: absolute;
    background-color: #f4f4f4;
    height: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    opacity: 0;
    left: -150px;
    transition: all .3s ease-out;
    padding: 15px 20px;
}

.mobile-menu.active .mobile-menu-inner {
    opacity: 1;
    left: 0;
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    border-bottom: 1px solid #d9dde0;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0 15px;
}

.close-button {
    background: rgba(10, 10, 10, .06);
    color: #141414;
}

.mobile-mainmenu .nav-link {
    color: #2a2d31;
    position: relative;
    transition: all 0.4s ease-in-out;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    font-weight: 500;
    background: rgba(0, 0, 0, 0);
}

.mobile-mainmenu li {
    display: block;
    margin: 0;
    padding: 8px 0;
}

.mobile-mainmenu li+li {
    border-top: 1px solid #d9dde0;
}

/* =============== Mobile Menu CSS =============== */