
/* Main Resources */
@import url('../fonts/mainFont.css');
:root{
	--accent-color: #be1818;
	--sec-color: #000;
    --mainFont: 'Poppins', sans-serif;
    /* --mainFont: 'Montserrat', sans-serif; */
}
body{
    font-family: var(--mainFont) !important;
}
.page-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 99999;
    top: 0;
    left: 0;
}
.loader {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}
.dots-6 {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    box-shadow:
        19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 0px,
        19px 0 0 5px, 38px 0 0 5px, 57px 0 0 5px,
        19px 19px 0 0px, 38px 19px 0 0px, 57px 19px 0 0px;
    transform: translateX(-38px);
    animation: d6 2s infinite linear;
    color: #bf1718;
}
@keyframes d6 {
    12.5% {
        box-shadow:
            19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 5px,
            19px 0 0 5px, 38px 0 0 0px, 57px 0 0 5px,
            19px 19px 0 0px, 38px 19px 0 0px, 57px 19px 0 0px
    }

    25% {
        box-shadow:
            19px -19px 0 5px, 38px -19px 0 0px, 57px -19px 0 5px,
            19px 0 0 0px, 38px 0 0 0px, 57px 0 0 0px,
            19px 19px 0 0px, 38px 19px 0 5px, 57px 19px 0 0px
    }

    50% {
        box-shadow:
            19px -19px 0 5px, 38px -19px 0 5px, 57px -19px 0 0px,
            19px 0 0 0px, 38px 0 0 0px, 57px 0 0 0px,
            19px 19px 0 0px, 38px 19px 0 0px, 57px 19px 0 5px
    }

    62.5% {
        box-shadow:
            19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 0px,
            19px 0 0 5px, 38px 0 0 0px, 57px 0 0 0px,
            19px 19px 0 0px, 38px 19px 0 5px, 57px 19px 0 5px
    }

    75% {
        box-shadow:
            19px -19px 0 0px, 38px -19px 0 5px, 57px -19px 0 0px,
            19px 0 0 0px, 38px 0 0 0px, 57px 0 0 5px,
            19px 19px 0 0px, 38px 19px 0 0px, 57px 19px 0 5px
    }

    87.5% {
        box-shadow:
            19px -19px 0 0px, 38px -19px 0 5px, 57px -19px 0 0px,
            19px 0 0 0px, 38px 0 0 5px, 57px 0 0 0px,
            19px 19px 0 5px, 38px 19px 0 0px, 57px 19px 0 0px
    }
}
/* Header Styling */
header.sticky-header .standard-logo img {padding: 10px !important;}
#header-wrap { background-color: rgb(255 255 255 / 80%);}
.full-header #logo, .full-header .primary-menu .menu-container {border-color: rgb(255 255 255 / 30%);}

/* Custom Styling */
#top-search a:hover {
    color: var(--accent-color);
}
.top-search-open #top-search a i:nth-child(1),
#top-search a i:nth-child(2) {
	opacity: 0;
    font-size: 1.5rem;
    z-index: 11;
}
.top-search-open #top-search a i:nth-child(2) {
    opacity: 1;
    z-index: 11;
	font-size: 1.5rem;
}
.accent-color{color: var(--accent-color) !important;}
.accent-bg{background-color: var(--accent-color) !important;}
.accent-border{border-color: var(--accent-color) !important;}
.center .heading-block::after,
.text-center .heading-block::after,
.heading-block.center::after,
.heading-block.text-center::after {margin: 15px auto 0;}
.img-hover {
    position: relative;
    overflow: hidden;
}
.img-hover img {
    position: relative;
    height: 100%;
    width: 100%;
    transform: scale(1);
    transition-property: transform, -webkit-transform;
    transition-duration: .9s;
    transition-timing-function: cubic-bezier(.23, 1, .32, 1);
    transition-delay: 0s;
}
.img-hover:hover img {
    transform: scale(1.2);
    transition: .8s ease-in-out;
}

/* Slider Styling */
.swiper-slide-bg.cover:after {
    background-color: rgb(0 0 0 / 60%);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.slider-caption h2 {font-size: 3rem;}

/* Services */
.portfolio-item .portfolio-desc{padding: 0;}
.portfolio-item p {
    font-size: 13px;
    margin: 0;
    background-color: #fff;
    padding: 20px 5px;
}
.portfolio-image h4 {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    background-color: red;
    color: #fff;
    margin: 0;
    border-top-right-radius: 0;
}
.portfolio-image h4 a {
    color: #fff;
    padding: 10px;
    display: block;
}
.course-card .course-metainfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.course-card .course-metainfo {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}
.course-card {border-radius: 5px;}
.course-card .course-img {
    position: relative;
    overflow: hidden;
}
.course-card .course-img img {
    border-radius: 5px 5px 0 0;
    -webkit-transition: .8s;
    transition: .8s;
}
.course-card .course-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}
.course-card .course-metainfo {
    box-shadow: 0 -5px 15px rgba(0, 0, 0, .05);
    padding: 15px 20px;
}
.course-card .course-metainfo a {color: #4c4c4c;}

.course-card .course-metainfo a:hover {color: #bf1718;}
.course-card.style1 {
    border: 1px solid #ddd;
    margin: 0 0 30px;
    border-radius: 5px;
    -webkit-transition: .3s;
    transition: .3s;
}
.course-card.style1:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    border-color: transparent;
}
.course-card.style1:hover .course-img img {
    -webkit-transform: scale(1.07);
    -moz-transform: scale(1.07);
    transform: scale(1.07);
}
/* .course-card.style1 .course-info {padding: 15px 20px 18px;} */
.course-card.style1 .course-info,
.course-card .course-metainfo {background-color: #fff;}
.title-layer {
    position: absolute;
    bottom: -2px;
    left: -25px;
    width: 276px;
    z-index: 6;
    height: 51px;
    background-repeat: no-repeat;
}
.title-layer h5 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 75%;
    text-align: center;
    font-size: 14px;
}
#content .course-info p {
    padding: 10px 15px !important;
}

/* Pricing Table */
.pricing--palden .pricing--deco {background: var(--accent-color) !important;}
.pricing--currency, .pricing--period{color: #fff !important;}

/* Testimonials */
.testimonials .testi-image{
    text-align: center;
    margin: 0 auto;
    display: block;
    float: unset;
}
.testimonials .testi-content {text-align: center;}
.pricing.pricing--palden .pricing--item:last-child {
    box-shadow: 3px 2px 5px rgb(46 59 125 / 23%);
}
.button {padding: 10px 30px !important;}

/* Footer */
#footer .footer-logo {
    width: 150px;
    margin-top: 8px;
    padding-right: 18px;
    border-right: 1px solid #4A4A4A;
}
#footer ul li:before {content: unset !important;}
#footer ul li a{padding: 0 !important;}
.btn-check:focus + .btn, .btn:focus {
    color: var(--bs-btn-hover-color);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    outline: 0;
    box-shadow: var(--accent-color);
}
.btn-check:checked + .btn:focus, .btn-check:active + .btn:focus, .btn:active:focus, .btn.active:focus, .btn.show:focus {
    box-shadow: var(--accent-color);
}
#copyrights a{transition: .4s;}

/* PageBar */
#page-title{background-color: var(--accent-color);}
#page-title h1{
    color: #fff;
}
.breadcrumb a, .breadcrumb-item + .breadcrumb-item::before{
    color: #fff;
}
.breadcrumb a{transition: .4s;}
.breadcrumb a:hover{
    color: #fff;
    opacity: .8;
}
#page-title h1{width: 60%;}

/* Services Listing Page */
.our-services .col-md-6{padding-bottom: 0;}

/* Service Details Page */
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: var(--accent-color);
}
.nav-link{
    color: var(--accent-color);
    margin-bottom: 10px;
}
.nav-link:hover, .nav-link:focus{
    background-color: var(--accent-color);
    color: #fff;
}

/* Contact Page */
.map {height: 500px;}