/********** Template CSS **********/
:root {
    --primary: #EB1616;
    --secondary: #191C24;
    --light: #6C7293;
    --dark: #000000;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 45px;
    bottom: 30px;
    z-index: 99;
}


/*** 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 ***/
.live-btn{
    animation: blinkingText1 1.2s infinite;
    transition: .2s ease-in-out;
}
.live-btn:hover{
    background-color: transparent;
    transition: .2s ease-in-out;
}
@keyframes blinkingText1{
    0%{
        color: white;
    }
    49%{
        color: white;
    }
    60%{
        color: transparent;
    }
    99%{
        color: transparent;
    }
    100%{
        color: white;
    }
}

.videos-btn{
    animation: blinkingText2 1.2s infinite;
    transition: .2s ease-in-out;
}
.videos-btn:hover{
    animation: none;
    transition: .2s ease-in-out;
}
@keyframes blinkingText2{
    0%{
        color: var(--primary);
    }
    49%{
        color: var(--primary);
    }
    60%{
        color: transparent;
    }
    99%{
        color: transparent;
    }
    100%{
        color: var(--primary);
    }
}


/* Read More in introduction */
.read-more{
    color: var(--light);
    text-decoration: underline;
    transition: .2s ease-in-out;
    cursor: pointer;
}
.read-more:hover{
    color: white;
    text-decoration: underline;
    transition: .2s ease-in-out;
}
/* Read More Popup */
.readMorePopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}
.create-acc-center{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(235, 22, 22, .2);
}
.readMore-content {
    width: 40%;
    background-color: black;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow-y: auto;
}
.close-readMore {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 65px;
    height: 65px;
    font-size: 35px;
    color: white !important;
    transition: .2s ease-in-out !important;
}
.btn-xl-square:hover{
    color: var(--primary) !important;
    transition: .2s ease-in-out !important;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 40px 0;
    color: var(--light);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

/* styling for links and hovering */
.footer-links{
    text-decoration: none;
    color: #6C7293;
    transition: .2s ease-in-out;
}
.footer-links:hover{
    color: #EB1616;
    transition: .2s ease-in-out;
    text-decoration: underline;
}
.footer-social{
    transition: .2s all;
}
.footer-social:hover{
    transition: .2s all;
    color: white !important;
}
.email{
    word-break: break-all;
}
.button_slide {
  color: #FFF;
  border: 2px solid #25d366;
  border-radius: 0px;
  padding: 18px 36px;
  display: inline-block;
  font-family: "Roboto",sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #25d366;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
.slide_right:hover {
  box-shadow: inset 400px 0 0 0 #25d366;
}


/* Whatsapp flioating button */
.whatsapp-float{
    position: fixed;
    right: 40px;
    bottom: 10px;
    z-index: 99;
    font-size: 60px;
    color: #5FFC7B;
    transition:.2s ease-in-out;
}
.whatsapp-float:hover{
    color: #28D146;
    transition:.2s ease-in-out;
}

/* video section styling */
.side-videos-button{
    color: white;
    font-size: 4rem;
    transition: .2s all;
}
.side-videos-button:hover{
    color: var(--primary);
    transition: .2s all;
}
.side-videos-tittle{
    transition: .2s all;
}
.side-videos-tittle:hover{
    transition: .2s all;
    text-decoration: underline;
}
.videos-description-lines{
    background-color: #191C24;
    border-radius: 5px;
}
.videos-description-lines p{
    margin: 0;
}
.videos-description-links{
    transition: .2s all;
    color: #6C7293;
}
.videos-description-links:hover{
    color: white;
    text-decoration: underline;
    transition: .2s all;
}
.video-desc-show-more {
      max-height: 70px;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
    }

#desc-show-more-btn {
      cursor: pointer;
      color: white;
    }



/* Media Queries start */
@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.shadow-sm .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--light);
    }
    .readMore-content{
        width: 80%;
    }
}

@media (min-width: 992px) {
    .navbar.shadow-sm .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .70);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@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;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Service ***/
.service-item .btn {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 50px;
    height: 50px;
    color: var(--primary);
    background: var(--dark);
    opacity: 0;
}

.service-item:hover .btn {
    right: 0;
    bottom: 0;
    opacity: 1;
}


/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .85);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 3px;
    color: var(--primary);
    background: var(--dark);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-size: 15px;
    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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 1.5rem;
    font-size: 15px;
    background: var(--dark);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}