/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

/*** Topbar End ***/


/*** Navbar Start ***/
/* Navbar White Theme */
.navbar {
    background: #ffffff !important;
}

/* Navigation link default color */
.navbar .navbar-nav .nav-link {
    color: #000000 !important;
}

/* Hover & Active state */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
    /* or any brand color */
}

/* Phone icon & text color */
.navbar i,
.navbar span,
.navbar .text-secondary,
.navbar .text-white,
.navbar .text-white-50 {
    color: #000 !important;
}

/* Border color change */
.navbar .border-end {
    border-color: #ddd !important;
}

/* Hamburger toggle color */
.navbar-toggler {
    border-color: #000 !important;
}

.navbar-toggler-icon {
    filter: invert(1);
    /* makes the icon black */
}


.navbar .dropdown-menu {
    background: #ffffff !important;
    border: 1px solid #ddd;
}

.navbar .dropdown-menu .dropdown-item {
    color: #000 !important;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: #fff !important;
}

.nav-link-lg {
    font-size: 1.2rem !important;
    /* Adjust size as needed */
    font-weight: 500;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 25px;
    height: 5px;
    background: var(--bs-primary);
    margin: 8px;
    border-radius: 50%;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

/*** Responsive Design Start ***/

/* Standard Desktop: 1366px - 1599px */
@media (max-width: 1599px) {

    /* Buttons */
    .btn-square {
        width: 34px;
        height: 34px;
    }

    .btn-sm-square {
        width: 29px;
        height: 29px;
    }

    .btn-md-square {
        width: 41px;
        height: 41px;
    }

    .btn-lg-square {
        width: 52px;
        height: 52px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        right: 25px;
        bottom: 25px;
    }

    /* Topbar */
    #note {
        width: 450px;
    }

    /* Navbar */
    .nav-link-lg {
        font-size: 1.1rem !important;
    }

    /* Carousel */
    #carouselId .carousel-indicators li {
        width: 22px;
        height: 0px;
        margin: 7px;
        border-radius: 50%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 81px;
        height: 54px;
    }

    .carousel-item p {
        max-width: 630px;
    }

    /* Page Header */
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 16px;
    }

    /* Project */
    .project-img::before,
    .project-img::after {
        width: 135px;
        height: 135px;
    }

    /* Team */
    .team-item {
        border-top: 27px solid var(--bs-secondary) !important;
    }

    .team-content::before {
        height: 180px;
        top: -91px;
        padding: 54px;
    }

    .team-img-icon {
        margin-top: -180px;
        padding: 27px;
    }

    .team-img {
        border: 14px solid var(--bs-white);
    }

    .team-img img {
        border: 9px solid var(--bs-secondary);
    }

    .team-carousel .owl-nav {
        top: -90px;
        right: 45px;
    }

    .team-carousel .owl-nav .owl-prev,
    .team-carousel .owl-nav .owl-next {
        width: 50px;
        height: 50px;
        border-radius: 50px;
        margin-left: 14px;
    }

    /* Testimonial */
    .testimonial-carousel .owl-dot {
        width: 14px;
        height: 14px;
        border-radius: 14px;
    }

    .testimonial-carousel .owl-dot.active {
        width: 27px;
    }

    /* Blog */
    .blog-btn .blog-btn-icon {
        height: 45px;
    }
}

/* Laptop: 1024px - 1365px */
@media (max-width: 1365px) {

    /* Buttons */
    .btn-square {
        width: 29px;
        height: 29px;
    }

    .btn-sm-square {
        width: 24px;
        height: 24px;
    }

    .btn-md-square {
        width: 35px;
        height: 35px;
    }

    .btn-lg-square {
        width: 44px;
        height: 44px;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        right: 20px;
        bottom: 20px;
    }

    /* Topbar */
    #note {
        width: 375px;
    }

    /* Navbar */
    .nav-link-lg {
        font-size: 1rem !important;
    }

    /* Carousel */
    .carousel-item {
        min-height: 550px;
    }

    .carousel-item img {
        min-height: 550px;
        object-fit: cover;
    }

    /* Carousel button spacing */
    .carousel-content a {
        margin: 0.25rem !important;
    }

    #carouselId .carousel-indicators li {
        width: 18px;
        height: 1px;
        margin: 6px;
        border-radius: 50%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 68px;
        height: 45px;
    }

    .carousel-item p {
        max-width: 525px;
        margin: 0 auto 26px auto;
    }

    .carousel-item h1 {
        font-size: 45px !important;
    }

    .carousel-item p {
        font-size: 15px !important;
    }

    /* Page Header */
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 14px;
    }

    /* Services */
    .services .services-item {
        box-shadow: 0 0 45px rgba(0, 0, 0, .2);
        border-radius: 8px;
        padding: 8px 0;
    }

    /* Project */
    .project-img {
        padding: 12px;
    }

    .project-img::before,
    .project-img::after {
        width: 113px;
        height: 113px;
        border-radius: 8px;
    }

    .project-content a {
        padding: 12px 15px;
        border-radius: 8px;
    }

    /* Team */
    .team-item {
        border-top: 23px solid var(--bs-secondary) !important;
    }

    .team-content::before {
        height: 150px;
        top: -76px;
        padding: 45px;
    }

    .team-img-icon {
        margin-top: -150px;
        padding: 23px;
    }

    .team-img {
        border: 11px solid var(--bs-white);
    }

    .team-img img {
        border: 8px solid var(--bs-secondary);
    }

    .team-carousel .owl-nav {
        top: -75px;
        right: 38px;
    }

    .team-carousel .owl-nav .owl-prev,
    .team-carousel .owl-nav .owl-next {
        width: 42px;
        height: 42px;
        border-radius: 42px;
        margin-left: 11px;
    }

    /* Testimonial */
    .testimonial-carousel .owl-dot {
        width: 11px;
        height: 11px;
        border-radius: 11px;
    }

    .testimonial-carousel .owl-dot.active {
        width: 23px;
    }

    /* Blog */
    .blog-btn .blog-btn-icon {
        height: 38px;
    }
}

/* Tablet Landscape: 992px - 1023px */
@media (max-width: 1023px) {

    /* Buttons */
    .btn-square {
        width: 27px;
        height: 27px;
    }

    .btn-sm-square {
        width: 22px;
        height: 22px;
    }

    .btn-md-square {
        width: 32px;
        height: 32px;
    }

    .btn-lg-square {
        width: 41px;
        height: 41px;
    }

    .back-to-top {
        width: 35px;
        height: 35px;
        right: 18px;
        bottom: 18px;
    }

    /* Topbar */
    #note {
        width: 350px;
    }

    /* Navbar */
    .nav-link-lg {
        font-size: 0.95rem !important;
    }

    /* Carousel */
    .carousel-item {
        min-height: 500px;
    }

    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    #carouselId .carousel-indicators li {
        width: 17px;
        height: 0px;
        margin: 6px;
        border-radius: 50%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 63px;
        height: 42px;
    }

    .carousel-item p {
        max-width: 490px;
        margin: 0 auto 25px auto;
    }

    .carousel-item h1 {
        font-size: 42px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }

    /* Page Header */
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 13px;
    }

    /* Services */
    .services .services-item {
        box-shadow: 0 0 42px rgba(0, 0, 0, .2);
        border-radius: 7px;
        padding: 7px 0;
    }

    /* Project */
    .project-img {
        padding: 11px;
    }

    .project-img::before,
    .project-img::after {
        width: 105px;
        height: 105px;
        border-radius: 7px;
    }

    .project-content a {
        padding: 11px 14px;
        border-radius: 7px;
    }

    /* Team */
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/* Tablet Portrait: 768px - 991px */
@media (max-width: 991px) {

    /* Buttons */
    .btn-square {
        width: 23px;
        height: 23px;
    }

    .btn-sm-square {
        width: 19px;
        height: 19px;
    }

    .btn-md-square {
        width: 28px;
        height: 28px;
    }

    .btn-lg-square {
        width: 35px;
        height: 35px;
    }

    .back-to-top {
        width: 30px;
        height: 30px;
        right: 15px;
        bottom: 15px;
    }

    /* Topbar */
    #note {
        width: 300px;
    }

    /* Navbar */
    .nav-link-lg {
        font-size: 0.9rem !important;
    }

    /* Carousel */
    .carousel-item {
        min-height: 450px;
    }

    .carousel-item img {
        min-height: 450px;
        object-fit: cover;
    }

    #carouselId .carousel-indicators li {
        width: 17px;
        height: 0px;
        margin: 5px;
        border-radius: 50%;
    }

    /* Carousel button wrapper */
    .carousel-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 54px;
        height: 36px;
    }

    .carousel-item p {
        max-width: 420px;
        margin: 0 auto 21px auto;
    }

    .carousel-item h1 {
        font-size: 36px !important;
    }

    .carousel-item p {
        font-size: 13px !important;
    }

    /* Page Header */
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 12px;
    }

    /* Services */
    .services .services-item {
        box-shadow: 0 0 36px rgba(0, 0, 0, .2);
        border-radius: 6px;
        padding: 6px 0;
    }

    /* Project */
    .project-img {
        padding: 9px;
    }

    .project-img::before,
    .project-img::after {
        width: 90px;
        height: 90px;
        border-radius: 6px;
    }

    .project-content a {
        padding: 9px 12px;
        border-radius: 6px;
    }

    /* Team */
    .team-item {
        border-top: 18px solid var(--bs-secondary) !important;
    }

    .team-content::before {
        height: 120px;
        top: -61px;
        padding: 36px;
    }

    .team-img-icon {
        margin-top: -120px;
        padding: 18px;
    }

    .team-img {
        border: 9px solid var(--bs-white);
    }

    .team-img img {
        border: 6px solid var(--bs-secondary);
    }

    .team-carousel .owl-nav .owl-prev,
    .team-carousel .owl-nav .owl-next {
        width: 34px;
        height: 34px;
        border-radius: 34px;
        margin-left: 9px;
    }

    /* Testimonial */
    .testimonial-carousel .owl-dot {
        width: 9px;
        height: 9px;
        border-radius: 9px;
    }

    .testimonial-carousel .owl-dot.active {
        width: 18px;
    }

    /* Blog */
    .blog-btn .blog-btn-icon {
        height: 30px;
    }
}

/* Large Mobile Phones: 481px - 767px */
@media (max-width: 767px) {

    /* Buttons */
    .btn-square {
        width: 19px;
        height: 19px;
    }

    .btn-sm-square {
        width: 16px;
        height: 16px;
    }

    .btn-md-square {
        width: 23px;
        height: 23px;
    }

    .btn-lg-square {
        width: 29px;
        height: 29px;
    }

    .back-to-top {
        width: 25px;
        height: 25px;
        right: 12px;
        bottom: 12px;
    }

    /* Topbar */
    #note {
        width: 250px;
    }

    /* Navbar */
    .nav-link-lg {
        font-size: 0.85rem !important;
    }

    /* Carousel */
    .carousel-item {
        min-height: 400px;
    }

    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    #carouselId .carousel-indicators li {
        width: 16px;
        height: 0px;
        margin: 4px;
        border-radius: 50%;
    }

    /* Carousel button spacing for mobile */
    .carousel-content a {
        display: inline-block;
        margin: 0.4rem 0.3rem !important;
    }

    .carousel-content a button {
        font-size: 0.85rem !important;
        padding: 0.5rem 1.5rem !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 30px;
    }

    .carousel-item p {
        max-width: 350px;
        margin: 0 auto 18px auto;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 12px !important;
    }

    /* Page Header */
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 11px;
    }

    /* Services */
    .services .services-item {
        box-shadow: 0 0 30px rgba(0, 0, 0, .2);
        border-radius: 5px;
        padding: 5px 0;
    }

    /* Project */
    .project-img {
        padding: 8px;
    }

    .project-img::before,
    .project-img::after {
        width: 75px;
        height: 75px;
        border-radius: 5px;
    }

    .project-content a {
        padding: 8px 10px;
        border-radius: 5px;
    }

    /* Team */
    .team-item {
        border-top: 15px solid var(--bs-secondary) !important;
    }

    .team-content::before {
        height: 100px;
        top: -51px;
        padding: 30px;
    }

    .team-img-icon {
        margin-top: -100px;
        padding: 15px;
    }

    .team-img {
        border: 8px solid var(--bs-white);
    }

    .team-img img {
        border: 5px solid var(--bs-secondary);
    }

    .team-carousel .owl-nav .owl-prev,
    .team-carousel .owl-nav .owl-next {
        width: 28px;
        height: 28px;
        border-radius: 28px;
        margin-left: 8px;
    }

    /* Testimonial */
    .testimonial-carousel .owl-dot {
        width: 8px;
        height: 8px;
        border-radius: 8px;
    }

    .testimonial-carousel .owl-dot.active {
        width: 15px;
    }

    /* Blog */
    .blog-btn .blog-btn-icon {
        height: 25px;
    }
}

/* Small Mobile Phones: 0 - 480px */
@media (max-width: 480px) {

    /* Buttons */
    .btn-square {
        width: 15px;
        height: 15px;
    }

    .btn-sm-square {
        width: 13px;
        height: 13px;
    }

    .btn-md-square {
        width: 18px;
        height: 18px;
    }

    .btn-lg-square {
        width: 23px;
        height: 23px;
    }

    .back-to-top {
        width: 20px;
        height: 20px;
        right: 10px;
        bottom: 10px;
    }

    /* Topbar */
    #note {
        width: 200px;
    }

    /* Navbar */
    .nav-link-lg {
        font-size: 0.8rem !important;
    }

    /* Carousel */
    .carousel-item {
        min-height: 350px;
    }

    .carousel-item img {
        min-height: 350px;
        object-fit: cover;
    }

    #carouselId .carousel-indicators li {
        width: 15px;
        height: 0px;
        margin: 3px;
        border-radius: 50%;
    }

    /* Carousel button spacing for small mobile */
    .carousel-content a {
        display: block;
        margin: 0.3rem auto !important;
        width: fit-content;
    }

    .carousel-content a button {
        font-size: 0.75rem !important;
        padding: 0.4rem 1.2rem !important;
        width: 100%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 36px;
        height: 24px;
    }

    .carousel-item p {
        max-width: 280px;
        margin: 0 auto 14px auto;
    }

    .carousel-item h1 {
        font-size: 22px !important;
    }

    .carousel-item p {
        font-size: 10px !important;
    }

    /* Page Header */
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 10px;
    }

    /* Services */
    .services .services-item {
        box-shadow: 0 0 24px rgba(0, 0, 0, .2);
        border-radius: 4px;
        padding: 4px 0;
    }

    /* Project */
    .project-img {
        padding: 6px;
    }

    .project-img::before,
    .project-img::after {
        width: 60px;
        height: 60px;
        border-radius: 4px;
    }

    .project-content a {
        padding: 6px 8px;
        border-radius: 4px;
    }

    /* Team */
    .team-item {
        border-top: 12px solid var(--bs-secondary) !important;
    }

    .team-content::before {
        height: 80px;
        top: -41px;
        padding: 24px;
    }

    .team-img-icon {
        margin-top: -80px;
        padding: 12px;
    }

    .team-img {
        border: 6px solid var(--bs-white);
    }

    .team-img img {
        border: 4px solid var(--bs-secondary);
    }

    .team-carousel .owl-nav .owl-prev,
    .team-carousel .owl-nav .owl-next {
        width: 22px;
        height: 22px;
        border-radius: 22px;
        margin-left: 6px;
    }

    /* Testimonial */
    .testimonial-carousel .owl-dot {
        width: 6px;
        height: 6px;
        border-radius: 6px;
    }

    .testimonial-carousel .owl-dot.active {
        width: 12px;
    }

    /* Blog */
    .blog-btn .blog-btn-icon {
        height: 20px;
    }
}

/*** Responsive Design End ***/

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    background-position: center;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

.services-item:hover .service-icon {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

.services-item:hover .service-icon-fallback {
    color: #28a745 !important;
}

/*** Services End ***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    /* width: 80%; */
    padding: 15px 20px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;

}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}

.blog-icon-1 {
    position: relative;
    top: -4px;
}

.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    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;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #26d48c;
}

.contact-form {
    background: #26d48c;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/