/* Start Body scroller */
.scroller {
    overflow-y: scroll;
    scrollbar-color: #aaa4a0 #CDCDCD;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 2px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #23648D;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #e5e5e5;
}

/* End Body scroller */

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    background: #23648D;
    color: #fff;
    transition: display 0.5s ease-in-out;
    z-index: 99999;
    border-color: white;

}

.back-to-top i {
    font-size: 24px;
    position: absolute;
    top: 8px;
    left: 9px;

}

.back-to-top:hover {
    color: #fff;
    background: #23648D;
    transition: background 0.2s ease-in-out;
}

/* End Back To Top */


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: calc(100vh - 80px);
    padding: 0;
    overflow: hidden;
}

#hero .carousel-item {
    width: 100%;
    height: calc(100vh - 80px);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    overflow: hidden;
}

#hero .carousel-item::before {
    content: '';
    background-color: rgba(13, 30, 45, 0.6);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

#hero .carousel-content {
    text-align: left;
}

@media (max-width: 992px) {
    #hero, #hero .carousel-item {
        height: calc(100vh - 70px);
    }

    #hero .carousel-content.container {
        padding: 0 50px;
    }
}

#hero h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 900;
}

#hero p {
    width: 80%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    color: #fff;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
    width: 10%;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#hero .carousel-indicators li {
    cursor: pointer;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 0;
    background: #428bca;
    font-weight: bold;
}

#hero .btn-get-started:hover {
    background: #1c5c93;
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    #hero p {
        width: 60%;
    }

    #hero .carousel-control-prev, #hero .carousel-control-next {
        width: 5%;
    }
}

/*--------------------------------------------------------------
# Youtube video remove black color
--------------------------------------------------------------*/
.various .thumb {
    overflow: hidden;
}

.various .thumb img {
    margin: -11% 0;
    width: 100%;
}

.swal-modal .swal-text {
    font-size: 16px;
    font-weight: bold;
}

.my_lead {
    word-spacing: 0.1rem;
    line-height: 1.8rem;
    text-align: justify;
}

.my_info_style {
    background-color: #23648D;
    text-align: center;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    margin-top: 5px
}

.my_info_style h3 {
    color: white;
    padding: 5px;
    font-size: 20px;
}

.my_info_style h3:hover {
    color: #c5d4e0;
}


/*----------------------------------------
Preloader page
----------------------------------------*/
#loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: #ffffff;
}
#loading-center-page {
    width: 100%;
    height: 100%;
    position: relative;
}
#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 150px;
    width: 150px;
    margin-top: -75px;
    margin-left: -75px;
}

.loader {
    width: 56px;
    height: 56px;
    border: 2px solid #23648D;
    opacity: 0.7;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s ease-in-out infinite;
    top: 50%;
    margin: -28px auto 0 auto;
}
.loader:after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #23648D;
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -5px;
}

@keyframes loader-rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
