/********** Template CSS **********/
:root {
    --primary: #2E3191;
    --secondary: #00A551;
    --light: #F6F7FC;
    --th-light: #eaeeff;
    --dark: #15233C;
    --orange: #ffcd21;
}

body {
    color: #4e4e52;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.bg-custom {
    background-color: #9598ff;
}

.bg-orange {
    background-color: var(--orange);
}

.th-bg-light {
    background-color: var(--th-light);
}

.display-6 {
    font-weight: 500;
}

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

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


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

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

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

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

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

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

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

.text-just {
    text-align: justify;
}

/* Pulsating Play Button
------------------------------*/


.pulsating-play-btn {
    width: 74px;
    height: 74px;
    background: radial-gradient(var(--primary) 50%, color-mix(in srgb, var(--primary), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 97px;
    height: 94px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 3px solid color-mix(in srgb, var(--light), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--primary);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

.pulsating-play-btn {
    position: absolute;
    left: calc(50% - 37px);
    top: calc(50% - 37px);
}


.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}

/* video-item */
.video-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-thumbnail {
    position: relative;
    z-index: 1;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-title {
    padding: 15px 10px;
    margin-bottom: 0;
}

/* gallery__item */
.gallery__item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .3);
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery__item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.main-menu {
    background-color: var(--primary);
}

.main-menu.navbar .navbar-nav .nav-link {
    color: var(--light);
}

.main-menu.navbar .nav-item .dropdown-item {
    font-size: 15px;
    color: var(--light);
}

.main-menu.navbar .nav-item .dropdown-menu {
    font-size: 15px;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: var(--dark);
    font-size: 16px;
    font-weight: 400;
    outline: none;
}

.navbar.custom-manu .navbar-nav .nav-link {
    color: var(--light);
    padding: 25px 10px;
    margin-left: 0;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #21d769;
}

.navbar.custom-manu .navbar-nav .nav-link:hover,
.navbar.custom-manu .navbar-nav .nav-link.active {
    background-color: var(--light);
}

.navbar.custom-manu .dropdown-menu {
    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;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--secondary);
    color: var(--light);
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 35px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
        background-color: var(--secondary);
    }

    .navbar-expand-lg {
        flex-wrap: wrap;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 50px;
}

#header-carousel .carousel-item {
    position: relative;
    height: 80vh;
}

.custom-slide .carousel-caption h1 {
    text-shadow: 0 5px 15px rgba(0, 1, 44, 0.5);
}

.custom-slide .carousel-caption h2 {
    text-shadow: 0 5px 15px rgba(0, 1, 44, 0.5);
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.slide .carousel-caption h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.custom-slide .carousel-caption p {
    text-shadow: 0 0px 3px rgba(0, 1, 44, 0.9);
}

.gdi-home-carousel-caption {
    text-align: left !important;
    left: 10% !important;
    top: 150px !important;
}

.carousel-indicators {
    bottom: 5px !important;
    margin-right: 5%;
    margin-left: 5%;
}

.carousel-indicators li[data-bs-target] {
    font-size: 14px;
    font-weight: 300;
    position: relative;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 115px;
    height: auto;
    margin-right: 3px;
    margin-left: 3px;
    margin-top: 0;
    margin-bottom: 0;
    text-indent: 0px;
    cursor: pointer;
    background-color: var(--orange) !important;
    background-clip: var(--light);
    border-radius: 10px;
    text-align: center;
    color: #000;
    opacity: 0.9;
    padding: 10px;
    transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    box-shadow: 0px 0px 8px #00000047;
}

.carousel-indicators li span {
    font-size: 24px;
    color: #ffffff;
}

.carousel-indicators .active[data-bs-target] {
    background-color: #fff;
    opacity: 1;
    font-weight: 600;
    transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    transform: scale(1.2, 1.2);
    z-index: 999;
    box-shadow: 0px 0px 8px #00000047;
}

/* .slide .carousel-caption h1 {

} */

@media (max-width: 1599.98px) {
    .gdi-home-carousel-caption {
        top: 80px !important;
    }
}

@media (max-width: 1399.98px) {
    .gdi-home-carousel-caption {
        top: 50px !important;
    }
}

@media (max-width: 1099.98px) {
    .carousel-indicators {
        bottom: 10px !important;
    }

    .carousel-indicators li[data-bs-target] {
        font-size: 11px;
        width: 100px;
    }

    .carousel-indicators li span {
        font-size: 20px;
    }
}

@media (max-width: 991.98px) {
    .carousel-indicators {
        bottom: -115px !important;
    }
}

@media (max-width: 767.98px) {
    #header-carousel .carousel-item {
        height: auto;
    }

    .gdi-home-carousel-caption {
        top: 20px !important;
    }

    .carousel-indicators {
        bottom: -115px !important;
        margin-right: 3%;
        margin-left: 3%;
    }

    .carousel-indicators li[data-bs-target] {
        flex: 0 !important;
        flex-basis: 22% !important;
        width: 90px;
        font-size: 10px;
    }

    .carousel-indicators li span {
        font-size: 10px;
    }
}

@media (max-width: 575.98px) {
    .gdi-home-carousel-caption {
        top: 10px !important;
    }

    .carousel-indicators {
        bottom: -210px !important;
        margin-right: 3%;
        margin-left: 3%;
        flex-wrap: wrap;
    }

    .carousel-indicators li[data-bs-target] {
        flex: 0 !important;
        flex-basis: 21% !important;
        width: 90px;
        font-size: 10px;
    }

    .carousel-indicators li span {
        font-size: 10px;
    }

    .m-mob-180 {
        margin-top: 180px;
    }
}

@media (max-width: 480px) {
    .carousel-indicators {
        bottom: -210px !important;
    }

    .carousel-indicators li[data-bs-target] {
        flex-basis: 22% !important;
        width: 80px;
        font-size: 10px;
    }

    .carousel-indicators li span {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    /* #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    } */

    /* #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 80% 10%;
    } */
    #header-carousel.slide .carousel-caption h1 {
        font-size: 22px;
    }

    #header-carousel.slide .carousel-caption h2 {
        font-size: 16px;
    }

    /* #header-carousel.slide .carousel-caption p {

    } */
    #header-carousel.slide .carousel-caption .btn {
        padding: 5px 10px !important;
        font-size: .8rem;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
        border: 8px solid var(--primary);
    }
}

.page-header {
    /* background-image: url('../img/page-banner.jpg'); */
    background-color: #6b6d9d;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* background-blend-mode: multiply; */
    text-align: center;
    padding: 100px 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}

.page-header h1 {
    text-transform: capitalize;
    color: var(--light);
}


/*** Facts ***/
@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }

    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.facts .facts-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.facts .facts-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.facts .facts-text {
    background: linear-gradient(#ffcd21, #ffcd21), url(../img/carousel-1.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-counter {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(../img/carousel-3.jpg) center right no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/
.counter-item {
    padding: 1.8rem 0 1rem;
    border-style: dotted;
    border-color: var(--light);
}

/*** News Events ***/
.news-event h4,
.news-event h5 {
    margin-bottom: 1rem;
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary);
}

.service-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}

.service-item-top {
    background-color: #F6F7FC;
    height: 100%;
}

.service-item-top a {
    display: block;
}

.service-item-top img {
    transition: .5s;
}

.service-item-top:hover img {
    transform: scale(1.1);
}

.destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination-img img {
    transition: 0.5s;
}

.destination-img:hover img {
    transform: scale(1.2);
}

/*** Home Sidebar ***/
.home-sidebar {
    position: fixed;
    top: 25%;
    margin-top: -20px;
    right: 0;
    background: #fff;
    box-shadow: 0px 0 8px #33333361;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    z-index: 1;
}

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

ul.sidebar-list>li {
    display: block;
    border-bottom: 1px solid #7a7a7a2b;
    text-align: center;
}

ul.sidebar-list>li>a {
    display: block;
    padding: 15px 10px;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 11px;
    line-height: 12px;
    text-align: center;
}

ul.sidebar-list>li>a>i {
    display: block;
    margin: 0 auto;
    height: 30px;
    margin-bottom: 5px;
    color: var(--primary);
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgb(47 50 142 / 90%), rgb(47 50 142 / 90%)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


.table-bordered>:not(caption)>* {
    vertical-align: middle;
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    height: 100%;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-text h5 a {
    color: var(--dark);
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item:hover .team-text h5 a {
    color: var(--primary);
}

.team-item a.btn {
    color: var(--primary);
}

.team-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}

/* profile-card */
.profile-card {
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    height: 100%;
    padding: 20px; */
}

.profile-card-bg {
    position: absolute;
    left: -60px;
    top: -90px;
    border-radius: 50%;
    background-image: -moz-linear-gradient(90deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(47 50 142) 0%, rgb(56 113 193) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
    width: 144px;
    height: 140px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.profile-img {
    display: table;
    position: relative;
}

.profile-img::before {
    content: "";
    width: calc(50% + 13px);
    height: calc(100% + 26px);
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    background-color: var(--primary, #0f3667);
}

.profile-img img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    border: 4px solid var(--insuba-white, #ffffff);
}

.profile-card-imr-bg {
    position: relative;
    background-color: rgb(46 49 145 / 9%);
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 45%;
    margin: 0 auto 20px;
}

.profile-card-imr-bg img {
    width: 90%;
    height: auto;
}


.team-card-three {
    position: relative;
    overflow: hidden;
}

.team-card-three__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 41px 137px;
    border: 1px solid var(--insuba-border-color, #dddddd);
    border-radius: 25px 25px 101px 25px;
    background-color: var(--insuba-white, #ffffff);
    transition: all 500ms ease;
}

@media (max-width: 425px) {
    .team-card-three__content {
        padding-left: 35px;
        padding-right: 35px;
    }
}

@media (max-width: 412px) {
    .team-card-three__content {
        padding-left: 30px;
        padding-right: 30px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .team-card-three__content {
        padding-left: 35px;
        padding-right: 35px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .team-card-three__content {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.team-card-three__content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(0.85);
    opacity: 0;
    background-color: #2f328e;
    border-radius: inherit;
    transition: all 500ms ease;
}

.team-card-three:hover .team-card-three__content {
    border-color: #2f328e;
}

.team-card-three:hover .team-card-three__content::after {
    transform: scale(1);
    opacity: 1;
}

.team-card-three__identity {
    position: relative;
    z-index: 2;
}

.team-card-three__name {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.318;
}

.team-card-three__name a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.team-card-three__name a:hover {
    background-size: 100% 1px;
}

.team-card-three__designation {
    margin: 0;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.625;
    transition: all 500ms ease;
}

.team-card-three:hover .team-card-three__name,
.team-card-three:hover .team-card-three__designation {
    color:#ffffff;
}

.team-card-three__btn {
    position: relative;
    top: -6px;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #2f328e;
    transition: all 500ms ease;
}

.team-card-three__btn::after,
.team-card-three__btn::before {
    content: "";
    width: 2px;
    height: 17px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
}

.team-card-three__btn::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.team-card-three__btn:hover::before {
    opacity: 0;
}

.team-card-three:hover .team-card-three__btn {
    background-color: #ffffff;
}

.team-card-three:hover .team-card-three__btn::before,
.team-card-three:hover .team-card-three__btn::after {
    background-color: #2f328e;
}

.team-card-three__image {
    position: relative;
    margin-top: -122px;
    text-align: center;
    z-index: 2;
}

.team-card-three__image img {
    margin: 0 auto;
    width: auto !important;
    max-width: 100%;
    height: auto;
    border-radius: 101px 0 25px 25px;
    background-color: #ECEDF5;
}

.team-card-three:hover .team-card-three__image img {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.team-card-three .social-links {
    margin: 0;
    position: absolute;
    right: 17px;
    bottom: 51px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    z-index: 2;
}

.team-card-three .social-links li {
    position: relative;
    right: -60px;
    opacity: 0;
    transition: all 500ms ease;
}

.team-card-three .social-links li:nth-child(1) {
    transition-delay: 0ms;
}

.team-card-three .social-links li:nth-child(2) {
    transition-delay: 100ms;
}

.team-card-three .social-links li:nth-child(3) {
    transition-delay: 200ms;
}

.team-card-three .social-links li:nth-child(4) {
    transition-delay: 300ms;
}

.team-card-three .social-links a {
    width: 37px;
    height: 37px;
    background-color: var(--insuba-white, #ffffff);
    border: 1px solid var(--insuba-black9, #0f3260);
}

.team-card-three .social-links__icon {
    color: var(--insuba-black9, #0f3260);
}

.team-card-three .social-links a:hover {
    background-color: #2f328e;
    border-color: #2f328e;
}

.team-card-three .social-links a:hover .social-links__icon {
    color: #ffffff;
}

.team-card-three:hover .social-links li {
    opacity: 1;
    right: 0;
}

/* Products */
.products {
    background: linear-gradient(rgb(0 0 0 / 70%), rgb(0 0 0 / 70%)), url(../img/products/products-bg.jpg) center center fixed;
    background-size: cover;
}

.products-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.products-carousel .owl-nav .owl-prev,
.products-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.products-carousel .owl-nav .owl-prev:hover,
.products-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

/* custom-table */

.custom-table {
    padding: 5px;
    border: 1px solid var(--primary);
}

.custom-table .table {
    margin-bottom: 0;
}

.custom-table thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: var(--light);
}

.custom-table td {
    font-size: 14px;
    font-weight: 400;
    color: var(--dark);
}

.custom-table .table-striped>tbody>tr:nth-of-type(odd) {
    background-color: var(--th-light);
}

/* Online Motor Insurance */
.online-form h4 {
    color: var(--primary);
    margin: 30px 0 40px;
}

.online-form-info {
    margin-bottom: 30px;
}

.online-form label {
    font-weight: 500;
}

.form-lg-check .form-check-input {
    width: 2em;
    height: 2em;
}

.online-form-table th {
    font-weight: 500;
    color: var(--dark);
}

.online-form-table td {
    font-weight: 400;
    color: var(--dark);
}

.risk-container li {
    margin-bottom: 15px;
}

.risk-container li:last-child {
    margin-bottom: 0;
}

.risk-container li i {
    color: var(--primary);
}

.risk-container span {
    font-size: 18px;
    font-weight: 500;
}

/* branch-loca */
.branch-loca {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0;
}

.branch-accordion .accordion-button {
    color: var(--dark)
}

.branch-accordion .accordion-button:not(.collapsed) {
    background-color: var(--th-light);
    color: var(--primary);
}

/* Widget contain */
.widget-contain {
    background-color: var(--light);
    transition: .5s ease-in-out;
}

.widget-contain:hover {
    background-color: var(--primary);
}

.widget-contain:hover a {
    background-color: var(--primary);
    border-color: var(--primary);
}

.widget-contain .bg-white {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Committee */
.committee-img {
    max-width: 100%;
    height: 250px;
    border-radius: 10px;
}

/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px dashed var(--primary);
    border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.special-notice-content {
    padding: 15px 0;
}

.special-notice-content ul li {
    margin-right: 40px;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

@media (max-width: 767.98px) {
    .special-notice-content {
        width: 80%;
    }
}


/*  */
.team-details__big-text {
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgb(47 50 142 / 18%);
    letter-spacing: 0.35em;
    position: absolute;
    transform: rotate(-90deg);
    top: 209px;
    left: -265px;
}

.team-details-thumb {
    text-align: center;
    position: relative;
    z-index: 1
}

.team-details-thumb:before {
    position: absolute;
    content: " ";
    background-color: white;
    height: 88%;
    width: 100%;
    top: 80px;
    left: 0;
    box-shadow: 0 2px 40px rgba(0, 0, 0, .1);
    border: 1px solid #e5e5e5;
    z-index: -1
}

.team-details-thumb .thumbnail img {
    width: 90%;
    border-radius: 5px;
}

@media only screen and (max-width: 1199px) {
    .team-details-thumb .thumbnail img {
        max-width: 100%
    }
}

.team-details-thumb .content {
    padding: 30px;
}

.team-details-thumb .content .author-info .name {
    font-size: 24px;
    line-height: 40px;
    font-family: var(--font-secondary);
    margin-bottom: 10px
}

/*** Footer ***/
.footer {
    color: #A7A8B4;
    margin-top: 50px;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #A7A8B4;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #A7A8B4;
    border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 5px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}



.visitor-area .visitors {
    width: auto;
    display: table;
    margin: auto;
}

.visitor-area .visitors li {
    display: inline-block;
    list-style: none;
    font-size: 18px;
    font-weight: 900;
    background: var(--secondary);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    margin: 0 2px;
}

.widget-text {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}
.widget-text:last-child{
    margin-bottom: 0;
    border-bottom: none;
}

.widget-text ul li{
    font-size: 18px;
    margin-bottom: 10px;
}
.widget-text ul li:last-child{ 
    margin-bottom: 0;
}

.widget-text p {
    font-size: 18px;
    text-align: justify;
}