.btn a,
.btn-link {
    text-decoration: none;
}
.btn:hover,
.btn:hover a {
    color: var(--primary) !important;
}
#check:checked ~ .chat-btn .comment,
.back-to-top,
.chat-btn .close {
    display: none;
}
.chat-form input,
.header,
button,
textarea {
    margin-bottom: 10px;
}
:root {
    --primary: #1a1d7d;
    --secondary: #d0f5ff;
    --secondary-color: #9a9a9aa1;
    --light: #f3faff;
    --white: #fff;
    --dark: #181d38;
}
.category .content h5 a,
a {
    text-decoration: none;
    color: var(--dark);
}
.btn {
    background-color: var(--primary);
    border: none;
}
.btn-link {
    list-style: none;
    color: var(--light);
}
.btn a,
.chat-btn {
    color: var(--white);
}
.btn:hover {
    background: 0 0;
    border: 1px solid var(--primary);
}
.btn-light {
    background-color: var(--light);
}
.btn-light:hover {
    background: 0 0;
    color: var(--light) !important;
    border: 1px solid var(--light);
}
.fw-medium {
    font-weight: 600 !important;
}
.fw-semi-bold {
    font-weight: 700 !important;
}
.back-to-top {
    position: fixed;
    left: 45px;
    bottom: 45px;
    z-index: 99;
}
.about-home {
    min-height: 400px;
}
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s ease-out, visibility 0s linear 0.1s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity 0.1s ease-out, visibility linear;
    visibility: visible;
    opacity: 1;
}
body {
    background-color: #eee;
}
.chat-btn {
    position: fixed;
    right: 14px;
    bottom: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: var(--primary);
    font-size: 22px;
    border: none;
}
.chat-btn i {
    transition: 0.9s;
    font-size: 22px;
    color: var(--white) !important;
}
#check:checked ~ .chat-btn i {
    display: block;
    pointer-events: auto;
}
.wrapper {
    position: fixed;
    z-index: 900;
    right: 20px;
    bottom: 100px;
    width: 500px;
    background-color: var(--white);
    border-radius: 5px;
    opacity: 0;
    transition: 0.4s;
}
.typing-area {
    padding: 10px;
}
.typing-area :where(.typing-form, .action-buttons) {
    display: flex;
    gap: 0.75rem;
}
.typing-form .input-wrapper {
    width: 100%;
    height: 40px;
    display: flex;
    position: relative;
}
.typing-form .typing-input {
    height: 100%;
    width: 100%;
    border: none;
    outline: 0;
    resize: none;
    font-size: 1rem;
    color: var(--text-color);
    padding: 1.1rem 4rem 1.1rem 1.5rem;
    border-radius: 100px;
    background-color: var(--secondary-color);
}
.message-content {
    display: flex;
}
.message-content > .text {
    margin-left: 10px;
}
.typing-form #send-message-button {
    position: absolute;
    right: 5px;
    top: 5px;
    outline: 0;
    border: none;
    transform: scale(0);
    background: 0 0;
    transition: transform 0.2s;
}
.typing-form .typing-input:valid ~ #send-message-button {
    transform: scale(1);
}
.typing-area .disclaimer {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 1rem;
    color: var(--placeholder-color);
}
.btn.btn-primary,
.btn.btn-secondary,
.header {
    color: var(--white);
}
#check:checked ~ .wrapper {
    opacity: 1;
}
.header {
    padding: 13px;
    border-radius: 5px 5px 0 0;
    background: var(--primary);
    font-weight: 700;
}
.chat-form {
    padding: 15px;
}
.chat-list {
    padding: 10px;
    max-height: 30vh !important;
    overflow: auto;
}
.chat-form textarea {
    resize: none;
}
.loader,
.loader div,
.loader div:after {
    box-sizing: border-box;
}
.loader {
    color: currentColor;
    display: inline-block;
    position: relative;
    left: 50%;
    width: 10px;
    height: 10px;
}
.loader div {
    transform-origin: 13px 13px;
    animation: 1.2s linear infinite loader;
}
.loader div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 1px;
    left: 12px;
    width: 2px;
    height: 4px;
    border-radius: 20%;
    background: currentColor;
}
.loader div:first-child {
    transform: rotate(0);
    animation-delay: -1.1s;
}
.loader div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}
.loader div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}
.loader div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}
.loader div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}
.loader div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}
.loader div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}
.loader div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}
.loader div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}
.loader div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}
.loader div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}
.loader div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}
@keyframes loader {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.btn:focus,
.form-control:focus {
    box-shadow: none;
}
#check {
    display: none !important;
}
.page-header {
    position: relative;
    min-height: 50vh;
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)) center center/cover no-repeat, url(../img/carousel-1.jpg) center center/cover no-repeat;
}
.team-header {
    min-height: 80vh;
}
.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 3, 201, 0.304);
    z-index: 1;
}
.page-header .container {
    position: relative;
    z-index: 2;
}
.btn {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    transition: 0.1s;
}
.btn-square {
    width: 38px;
    height: 38px;
}
.btn-sm-square {
    width: 32px;
    height: 32px;
}
.btn-lg-square {
    width: 48px;
    height: 48px;
}
.btn-lg-square,
.btn-sm-square,
.btn-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    border-radius: 0;
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    outline: 0;
    color: var(--dark);
    font-weight: 500;
}
.footer .btn.btn-social:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-toggler-icon,
.service-item i {
    color: var(--primary);
}
@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
    .navbar-light .navbar-nav {
        border-top: 1px solid #eee;
    }
}
.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}
.navbar-light.sticky-top {
    top: -100px;
    transition: 0.1s;
}
.navbar-toggler {
    border: 2px solid var(--primary);
}
.header-carousel .owl-carousel-item {
    position: relative;
    height: 100vh;
}
.header-carousel p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 30px;
}
@media (max-width: 1300px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 80vh;
    }
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
@media (max-width: 768px) {
    .header :is(.title, .subtitle) {
        font-size: 2rem;
        line-height: 2.6rem;
    }
    .header .subtitle {
        font-size: 1.7rem;
    }
    .wrapper {
        width: 90%;
    }
    .chat-box > .header > .subtitle {
        font-size: 20px !important;
    }
    .typing-form #send-message-button {
        right: 10px !important;
        top: 10px !important;
    }
    .typing-area :where(.typing-form, .action-buttons) {
        gap: 0.4rem;
    }
    .typing-form .input-wrapper {
        height: 50px;
    }
    .typing-form .typing-input {
        padding: 1.1rem 3.5rem 1.1rem 1.2rem;
    }
    .typing-area .icon {
        height: 50px;
        width: 50px;
    }
    .typing-area .disclaimer {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }
    .brand {
        display: none !important;
    }
    .about-home {
        min-height: 200px;
    }
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
@media (max-width: 430px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        height: 500px;
    }
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .header-carousel h1 {
        font-size: 30px;
        line-height: 30px;
    }
    .header-carousel p {
        margin-top: 20px;
        font-size: 15px;
        line-height: 20px;
    }
}
.section-title::after,
.section-title::before {
    position: absolute;
    content: "";
    height: 2px;
    z-index: -1;
}
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}
.header-carousel .owl-nav .owl-next,
.header-carousel .owl-nav .owl-prev {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: 0 0;
    border: 1px solid var(--white);
    font-size: 22px;
    transition: 0.1s;
}
.header-carousel .owl-nav .owl-next:hover,
.header-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}
.page-header-inner {
    background: rgba(15, 23, 43, 0.7);
}
.breadcrumb-item + .breadcrumb-item::before,
.footer .copyright a {
    color: var(--light);
}
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}
.container-xxl {
    font-size: 18px !important;
}
.section-title::before {
    width: calc(100% + 80px);
    top: 4px;
    left: -40px;
    background: var(--primary);
}
.section-title::after {
    width: calc(100% + 120px);
    bottom: 5px;
    left: -60px;
    background: var(--primary);
}
.testimonial-carousel::after,
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    width: 0;
    z-index: 1;
}
.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}
.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}
.category img,
.course-item img,
.service-item,
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: 0.1s;
}
.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}
.category .content:hover h5 a,
.service-item:hover *,
.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--white) !important;
}
.course-item img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
}
.category .content {
    cursor: pointer;
    transition: 0.1s;
}
.category .content:hover {
    background-color: var(--primary);
    color: var(--white);
}
.category img {
    width: 50px;
    height: 50px;
}
.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
    margin-top: -10px;
}
.d-flex ion-icon {
    font-size: 2rem;
    width: 1.5rem;
    height: 1.5rem;
}
.team-item {
    background-color: var(--white);
    border-radius: 15px;
    padding: 15px;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.team-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: scale(1.03);
}
.team-item img {
    transition: transform 0.1s, box-shadow 0.1s;
    border-radius: 50%;
    width: 220px;
    height: 220px;
    border: 5px solid var(--white);
    margin: 0 auto;
    display: block;
}
.testimonial-carousel::before {
    left: 0;
    background: linear-gradient(to right, #fff 0, rgba(255, 255, 255, 0) 100%);
}
.testimonial-carousel::after {
    right: 0;
    background: linear-gradient(to left, #fff 0, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 768px) {
    .testimonial-carousel::after,
    .testimonial-carousel::before {
        width: 200px;
    }
}
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: 0.1s;
    }
    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0);
        visibility: visible;
        transition: 0.1s;
        opacity: 1;
    }
    .testimonial-carousel::after,
    .testimonial-carousel::before {
        width: 300px;
    }
}
.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #ccc;
    transition: 0.1s;
}
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 400;
    border: 1px solid var(--white);
    border-radius: 35px;
    transition: 0.1s;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--white);
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    transition: 0.1s;
}
.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}
.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}
.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
