@charset "UTF-8";

:root {
    --primary-color: #c20907;
    --secondary-color: #000000;
    --black-color: #000000;
    --bg-color: #f9f9f9;
    --white-color: #ffffff;
    --transition: all 0.3s ease 0s;
}
* {
    margin: 0;
    box-sizing: border-box;
}
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
html {
    scroll-behavior: smooth
}
body {
    overscroll-behavior: none;
}
body,
html {
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 22px;
    color: var(--black-color);
    font-family: "Poppins", sans-serif;
}
h1,h2,h3,h4 {
    margin: 0;
}
h5,h6 {
    margin: 0;
}
p {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--black-color);
}
span, li {
    font-family: "Poppins", sans-serif;
}
p:last-child {
    margin-bottom: 0
}
a,
button {
    cursor: pointer;
    text-decoration: none;
    color: var(--black-color);
    transition: var(--transition);
}
a, button, img, input, textarea {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}
a:focus {
    text-decoration: none;
    outline: 0
}
a:hover {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto
}
ul {
    margin: 0;
    padding: 0
}
li {
    list-style: none;
    transition: var(--transition);
}
.all-search i {
    font-size: 22px;
}
.container-fluid {
    padding-right: 80px;
    padding-left: 80px;
}
.section-padding {
    padding: 30px 0 30px 0;
}
.pad-top {
    padding-top: 30px;
}
.pad-bottom {
    padding-bottom: 30px;
}
.pad-top-half {
    padding-top: 15px;
}
.pad-bottom-half {
    padding-bottom: 15px;
}
.section-heading-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    flex-direction: column;
    z-index: 11;
}
.section-heading-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.section-heading {
    margin-bottom: 15px;
}
.main-head {
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
}
.sub-head {
    background: var(--primary-color);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgb(243 156 1 / 36%) 50%, rgba(255, 255, 255, 0.00) 95.35%);
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    color: #151515;
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
    padding: 8px 50px;
    border-radius: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.bg-color {
    background: var(--bg-color) !important;
}
.bg-primary {
    background: var(--primary-color) !important;
}
.bg-secondary {
    background: var(--secondary-color) !important;
}

.heading-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*button section start*/
.inline-main-btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.main-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    height: 40px;
    padding: 0 15px;
}

.btn-1 {
    color: #ffffff;
    background: var(--primary-color);
}
.btn-1:hover {
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-color);
}


.btn-white {
    color: #000;
    background: var(--white-color);
}
.btn-white:hover {
    border: 1px solid #ffffff;
    color: #ffffff;
    background: var(--primary-color);
}
/*button section end*/

/*hover-link start*/
.hover-link {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.hover-link::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #000;
    transition: width .3s;
}
.hover-link:hover::after {
    width: 100%;
    transition: width .3s;
}
/*hover-link end*/


/*mouse start*/
.center, .outerCircle {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 999;
}
.center {
    background-color: var(--primary-color);
    width: 5px;
    height: 5px;
    border-radius: 50%;
}
.outerCircle {
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transition: 0.1s ease;
}
/*mouse end*/

/*--------------------------------------------
           header section start
--------------------------------------------*/
header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 999;
}
.header-top-section {
    padding: 8px 0;
    background: var(--secondary-color);
}
.header-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-social-list-icon {
    width: 120px;
    height: 40px;
    color: var(--primary-color);
    border: 1px solid #ffffff;
    text-align: center;
    border-radius: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    background: #fff;
}
.header-social-list-icon:hover {
    color: #ffffff;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
}
.header-social-inline {
    display: flex;
    column-gap: 5px;
    align-items: center;
}
.header-social-inline li {
    font-size: 13px;
    color: var(--black-color);
}
.top-info a {
    font-size: 13px;
    color: var(--black-color);
    margin-right: 15px;
}
.top-info a:hover {
    color: var(--primary-color);
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-left: 50px;
}
.logo img {
    width: 100px;
    height: auto;
}
.logo-text {
    font-size: 38px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    padding-left: 15px;
    position: relative;
    top: -2px;
}
.logo-text span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    display: block;
    font-style: italic;
    letter-spacing: 0.5px;
}
/*--------------------------------------------
           header section end
--------------------------------------------*/



/*--------------------------------------------
           home section start
--------------------------------------------*/
.z-index-1 {
    z-index: 1;
}
.contact-form .section-heading {
    margin-bottom: 10px;
}
.contact-form .main-head {
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    font-weight: 600;
}
.contact-form .form-control {
    height: 45px;
    color: #ffffff;
    padding: 10px 15px;
    border: 1px solid #ffffff;
    background: transparent;
    position: relative;
    z-index: 11;
    font-size: 14px;
    width: 100%;
}
.contact-form .form-control::placeholder {
    color: #ffffff;
    font-size: 14px;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
.contact-form {
    background: var(--primary-color);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.main-btn i {
    padding-left: 5px;
}
.contact-form .main-btn {
    position: absolute;
    right: 20px;
    top: 47px;
    height: 45px;
}
.contact-form .row {
    padding-right: 150px;
}
.form-control:focus {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, .25);
}
/*--------------------------------------------
           home section end
--------------------------------------------*/


/*--------------------------------------------
        footer section start
--------------------------------------------*/
.footer-section {
    background: var(--secondary-color);
}
.footer-logo {
    height: 150px;
}
.footer-title:before {
    content: "";
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    border-radius: 14px;
}
.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    color: #fff;
    position: relative;
}
.footer-widget a {
    font-size: 14px;
    color: #fff;
    width: fit-content;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.footer-widget a:hover {
    color: var(--primary-color);
}
.row-space-1 {
    padding-left: 50px;
}
.row-space-2 {
    padding-left: 65px;
}
.footer-widget ul li {
    margin-bottom: 5px;
}
.footer-widget p {
    font-size: 14px;
    margin-top: 15px;
    color: #fff;
}
.footer-bottom {
    padding: 20px 0 20px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid #323232;
    margin-top: 50px;
}
.copyright-content-link:hover {
    color: var(--primary-color);
}
.footer-logo-box {
    background: #ffffff0f;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-bottom p {
    font-size: 12px;
    margin: 0;
    color: #fff;
}
.contact-info i {
    font-size: 20px;
    color: #ffffff;
    margin-right: 10px;
}
.contact-info a:hover i {
    color: var(--primary-color);
}
.extra-link a {
    font-size: 12px;
    color: #fff;
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
}
.extra-link a:hover {
    color: var(--primary-color);
}
.extra-link a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 3px;
    width: 1px;
    height: 70%;
    background: var(--black-color);
}
.extra-link a:last-child:before {
    content: "";
    width: 0;
}
.extra-link .hover-link::after {
    background: var(--primary-color);
}
#scroll__top {
    position: fixed;
    bottom: 80px;
    right: 25px;
    z-index: 99;
    outline: 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 2px 22px rgba(0, 0, 0, .16);
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}
#scroll__top:hover {
    color: var(--primary-color);
    background: var(--white-color)
}

#scroll__top.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}
#scroll__top svg {
    width: 25px;
    line-height: 1
}
.contact-info i {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid #fff;
    color: #000;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: -35px;
    font-size: 12px;
    display: inline-block;
    transition: var(--transition);
}
.contact-info a:hover i {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.contact-info a {
    margin-left: 35px;
    margin-bottom: 12px;
    position: relative;
}
.contact-info a:first-child {
    margin-bottom: 20px;
}
.inline-footer-widget {
    display: flex;
    justify-content: space-between;
}
.arrow-list li a:before {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    padding-right: 10px;
}
/*--------------------------------------------
        footer section end
--------------------------------------------*/



/*--------------------------------------------
       menu active class start
--------------------------------------------*/
.menu-item .active, .menu-item a.active {
    color: var(--white-color) !important;
    background: var(--primary-color);
}
.menu-item .sub_menu .active {
    color: var(--black-color);
    background: #fff;
}
/*--------------------------------------------
       menu active class end
--------------------------------------------*/




/*------------- New Style Start --------------------*/
.owl-carousel.trending-owl .owl-item img {
    display: block;
    height: 145px;
    object-fit: cover;
    border-radius: 10px;
}
.owl-carousel.trending-owl .owl-item:hover img {
    transform: scale(1.1);
}
.trending-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.latest-main-video img, .latest-main-video iframe{
    width: 100%;
    height: 582px;
    object-fit: cover;
    border-radius: 10px;
}
.sidebar-video img, .sidebar-video iframe {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 5px;
}
.sidebar-video.video-container {
    width: 100%;
    height: 140px;
    margin-bottom: 5px;
}
.category-owl img, .category-owl iframe {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
}

.category-video-section img, .category-video-section iframe {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
}
.category-repeat {
    margin-bottom: 20px;
}
.category-repeat:last-child {
    margin-bottom: 0;
}
.category-video-section {
    display: grid;
    width: 100%;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-columns: repeat(5, minmax(0px, 1fr));
}

/*------------- New Style End --------------------*/


















