@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --font1: "Bebas Neue", sans-serif;
    --font2: "Open Sans", sans-serif;
    --menu-text-color: #6f7173;
    --menu-bg-color: #e6e7e8;
    --footer-bg: #444545;
    --link-color: #ed3123;
    --border-color: #777777;
    --border-color2: #d5d5d5;
    --blue: #67bdef;
    --yeallow: #fdb913;
    --purple: #5d1369;
}

body {
    font-family: var(--font2) !important;
    color: var(--menu-text-color) !important;
    font-size: clamp(14px, 1.5vw, 16px) !important;
}

.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

p {
    line-height: 30px;
}

ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

a {
    text-decoration: none !important;
}

.button1 {
    background: linear-gradient(180deg, rgba(237, 49, 35, 1) 50%, rgba(191, 44, 33, 1) 100%);
    color: #ffffff;
    transition: all 300ms ease;
    text-align: center;
}

.button1:hover {
    background: linear-gradient(180deg, rgba(237, 49, 35, 1) 0%, rgba(191, 44, 33, 1) 100%);
}

.button2 {
    background: var(--menu-bg-color);
    color: var(--menu-text-color);
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 10px;
    transition: all 300ms ease;
    text-align: center;
}

.button2:hover {
    background: linear-gradient(180deg, rgba(237, 49, 35, 1) 0%, rgba(191, 44, 33, 1) 100%);
    color: #ffffff;
}

.button4 {
    background: var(--menu-bg-color);
    color: var(--menu-text-color);
    font-weight: 600;
    padding: 15px 10px;
    border-radius: 10px;
    text-align: center;
    transition: all 300ms ease;
}

.button4:hover {
    background: linear-gradient(180deg, rgba(237, 49, 35, 1) 0%, rgba(191, 44, 33, 1) 100%);
    color: #ffffff;
}

.button3 {
    background: var(--purple);
    color: #ffffff;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 10px;
    transition: all 300ms ease;
}

.button3:hover {
    background: linear-gradient(180deg, rgba(237, 49, 35, 1) 0%, rgba(191, 44, 33, 1) 100%);
    color: #ffffff;
}

b {
    font-family: var(--font2);
    font-weight: 600 !important;
}

.heading3 {
    font-size: clamp(16px, 2vw, 24px);
}

.heading2 {
    font-size: clamp(24px, 2vw, 26px);
}

.heading-blue {
    color: var(--blue);
    font-family: var(--font1);
}

.link-blue {
    color: var(--blue);
    border-bottom: 1px solid var(--blue);
}

.accordion-button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.boxhead h3 {
    color: var(--menu-text-color);
    font-family: var(--font1);
    font-size: clamp(24px, 2vw, 26px);
}

.boxhead h3 i {
    font-size: 20px;
    color: var(--yeallow);
}


/* For Header */
/* ========== */
header {
    background-color: #fff;
}

header img.logo {
    transition: transform 0.3s ease;
}

header.scrolled img.logo {
    transform: scale(0.9);
}

/* ========== */



.header-menu li a {
    display: block;
    padding: 4px 25px;
    background: var(--menu-bg-color);
    color: var(--menu-text-color);
    text-decoration: none;
    font-size: 16px;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0% 100%);
    transition: all 300ms ease;
}

.header-menu li {
    margin: 0 -3px;
}

.header-menu li:first-child a {
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0% 100%);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.header-menu li:last-child a {
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0% 100%);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.header-menu li.active a {
    background: linear-gradient(180deg, rgba(237, 49, 35, 1) 50%, rgba(191, 44, 33, 1) 100%);
    color: #fff;
}

.header-menu li.active a:hover {
    background: linear-gradient(180deg, rgba(237, 49, 35, 1) 0%, rgba(191, 44, 33, 1) 100%);
    color: #fff;
}

.header-menu li a:hover {
    background: linear-gradient(180deg, rgba(237, 49, 35, 1) 50%, rgba(191, 44, 33, 1) 100%);
    color: #fff;
}

.sitemap {
    padding: 4px 20px;
    border: 1px solid var(--menu-text-color);
    border-radius: 50px;
    color: var(--menu-text-color);
}

.search-btn {
    color: var(--menu-text-color);
    font-size: 20px;
    transition: all 300ms;
}

.search-btn:hover,
.search-btn:hover i {
    color: var(--link-color) !important;
}

@media (max-width: 767px) {
    .header-menu li a {
        clip-path: none;
    }

    .header-menu,
    .header-sitemap,
    .header-bottom-menu {
        width: 100%;
    }

    .header-menu li,
    .header-sitemap li,
    .header-bottom-menu li {
        margin: 0;
        width: 100%;
    }

    .header-bottom-menu li a {
        padding: 0 25px;
        display: inline-block;
        width: 100%;
    }

    .header-menu li:first-child a {
        clip-path: none;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .header-menu li:last-child a {
        clip-path: none;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .sitemap {
        border-radius: 0;
        width: 100%;
        display: inline-block;
        margin-top: 0px;
    }

    header {
        box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.15);
    }
}

.header-bottom-menu li a {
    color: var(--menu-text-color);
    font-family: var(--font1);
    font-size: clamp(24px, 2vw, 26px);
    position: relative;
    text-decoration: none;
}

.header-bottom-menu li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 3px;
    background-color: var(--link-color);
    transition: width 300ms ease;
}

.header-bottom-menu li a:hover::before {
    width: 100%;
}

.header-bottom-menu li.search a:hover::before {
    /* border-bottom: inherit; */
    width: 100% !important;
}

.header-bottom-menu .search a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.header-bottom-menu .search a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    background-color: var(--menu-text-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.header-bottom-menu .search i {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 20px;
}

@media (min-width: 992px) and (max-width: 1199.5px) {
    .header-bottom-menu {
        gap: 15px;
    }

    .header-bottom-menu li a {
        font-size: 24px;
    }

    .header-bottom-menu .search a i {
        font-size: 15px;
    }

    .header-bottom-menu .search a::after {
        width: 35px;
        height: 35px;
    }
}


.hamburger {
    color: var(--menu-text-color);
    font-size: 25px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    color: var(--link-color);
}

@media (min-width: 992px) {
    #collapseExample {
        display: block !important;
        height: auto !important;
        visibility: visible !important;
        overflow: visible !important;
    }
}

.hamburger i {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* optional rotation */
.hamburger:not(.collapsed) i {
    transform: rotate(180deg);
}



/* Main Content */
/* Contact us */
.breadcrumb {
    border-bottom: 1px solid var(--border-color2);
}

.breadcrumb li {
    display: inline-block;
    color: var(--link-color);
    font-weight: 600;
}

.breadcrumb li a {
    color: inherit;
}

.breadcrumb li::after {
    content: "»";
    margin: 0 8px;
    color: var(--link-color);
}

.breadcrumb li:last-child {
    font-weight: normal;
    color: var(--menu-text-color);
}

.breadcrumb li:last-child::after {
    content: "";
}

.main .left-content .page-title {
    color: var(--menu-text-color);
    font-family: var(--font1);
    font-size: clamp(24px, 2vw, 26px);
    margin-top: 15px;
}

.main .left-content h2 {
    color: var(--blue);
    font-family: var(--font1);
}

.border1 {
    border: 1px solid #dadada;
    border-radius: 10px;
}

.main .custom-form input,
.main .custom-form textarea {
    color: var(--menu-text-color);
    padding: 13px 20px;
    border-radius: 10px;
    border: 1px solid #dadada;
}

.main .custom-form input:focus,
.main .custom-form textarea:focus {
    box-shadow: none !important;
}

.main .custom-form select {
    color: var(--menu-text-color);
    padding: 13px 20px;
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid #dadada;
    width: 100%;
}

.main .custom-form textarea {
    resize: none;
}

.main .custom-form button {
    border: none;
    padding: 10px 50px;
    border-radius: 10px;
    font-weight: 600;
}


.open-sidebar {
    color: #ffffff;
    background-color: var(--blue);
    padding: 5px 10px;
    border-radius: 10px;
    transition: all 300ms;
    position: fixed;
    right: 15px;
    z-index: 999;
}

.close-sidebar {
    color: #ffffff;
    background-color: var(--link-color);
    padding: 5px 10px;
    border-radius: 10px;
    transition: all 300ms;
}

.open-sidebar:hover,
.close-sidebar:hover {
    color: #ffffff;
    background-color: var(--menu-text-color);
}





.homepage-slider .slick-dots li button::before {
    font-size: 50px;
}

.homepage-slider .slick-dots li {
    margin: 10px 0 0 0;
}

.homepage-slider .slick-slide img {
    width: 100%;
}

.bd {
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px){
.homepage-list {
    overflow: hidden;
}
}

.homepage-list h3 {
    color: var(--menu-text-color);
    font-family: var(--font1);
    font-size: clamp(24px, 2vw, 26px);
}

.homepage-list h3 i {
    font-size: 20px;
    color: var(--yeallow);
}

.homepage-list .chanels img {
    border-radius: 10px;
    width: 100%;
}

.homepage-list .chanels .slick-slide {
    margin-right: 20px;
}

.homepage-list .chanels .slick-list {
    margin-right: -20px;
}


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

.welcome h3 {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(16px, 2vw, 25px);
    color: #5f6163;
}

.welcome h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 300px;
    background-color: var(--border-color);
}

.wild-pets .box {
    border-bottom: 1px solid var(--border-color);
}

.wild-pets .date {
    font-size: 18px;
}

.wild-pets .title {
    display: flex;
    align-items: center;
}

.wild-pets .title .button1 {
    font-family: var(--font2);
    font-size: 14px;
    padding: 6px 13px;
    border-radius: 5px;
    margin-left: 20px;
    font-weight: 600;
}

.wild-pets .description {
    margin-bottom: 0;
}

.loader img {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.socialmedia li a img {
    transition: transform 0.3s ease;
}

.socialmedia li a:hover img {
    transform: scale(1.1);
}



.wap-box {
    margin-top: -20px;
}

.wap-box .button2 {
    color: #ffffff;
    text-align: center;
}

.wap-box .button2.one {
    background-color: #9ed478;
}

.wap-box .button2.two {
    background-color: #f0b42a;
}

.wap-box .button2.three {
    background-color: var(--purple);
}


.button-grid {
    display: grid;
    grid-template-columns: 28% 28% 38%;
    gap: 2%;
}

.button-grid .button4 {
    display: inline-block;
}

@media (max-width: 1199px) {
    .button-grid {
        grid-template-columns: 48% 48%;
    }

    .button-grid div:last-child .button4 {
        width: 100%;
    }
}

@media (max-width: 510px) {
    .button-grid {
        grid-template-columns: 100%;
    }
}


/* Right-sidebar */
.sidebar .sidebar-bd {
    border: 1px solid #dadada;
    border-radius: 10px;
}

.sidebar .sidebar1 {
    background-image: url(../images/sidebar-bg.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
}

.sidebar .sidebar1 .date-time p:first-child {
    font-weight: 500;
    font-size: 20px;
}

.sidebar .sidebar1 .date-time p {
    font-size: 13px;
}

.sidebar .sidebar1 .sidebar-button {
    padding: 15px 20px;
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(16px, 2vw, 20px);
    border-radius: 10px;
}



/* ================================================== */
@media (max-width: 992px) {
    .main .container {
        overflow-x: hidden;
    }

    /* .main .container .row {
    position: relative;
} */
    .main .sidebar {
        position: fixed;
        top: 0;
        right: -360px;
        width: 360px;
        height: 100vh;
        background: #fff;
        transition: right 0.4s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    .main .sidebar.active {
        right: 0;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
    }
}

/* ================================================== */

.sidebar .sidebar2 .button-group {
    display: grid;
    grid-template-columns: 43% 54%;
    gap: 3%;
}

.sidebar .sidebar2 .button-group a {
    padding: 15px 10px;
    color: var(--menu-text-color);
    font-weight: 500;
    font-size: 18px;
    border-radius: 10px;
    background-color: var(--menu-bg-color);
    display: block;
    transition: all 300ms ease;
}

.sidebar .sidebar2 .button-group a:hover {
    background: linear-gradient(180deg, rgba(237, 49, 35, 1) 0%, rgba(191, 44, 33, 1) 100%);
    color: #ffffff;
}

.host-name {
    color: var(--menu-text-color);
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

@media (max-width: 1184px) {
    .sidebar .sidebar2 .button-group {
        grid-template-columns: 42% 56%;
    }
}




.sidebar3 .accordion-header button.collapsed {
    background: var(--menu-bg-color) !important;
    border-radius: 10px !important;
    color: var(--menu-text-color) !important;
    font-weight: 600;
    font-size: 18px;
}

.sidebar3 .accordion-header button {
    background: linear-gradient(180deg, rgba(237, 49, 35, 1) 50%, rgba(191, 44, 33, 1) 100%) !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 18px;
}

.sidebar3 .accordion-header button::after {
    content: "\f107";
    /* angle-down icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    transition: transform 0.3s ease;
    background-image: none !important;
}

.sidebar3 .accordion-header button:not(.collapsed)::after {
    content: "\f106";
    transform: none !important;
}

.sidebar3 .accordion-collapse {
    background-color: #f4f5f5;
    border-radius: 0 0 10px 10px !important;
    margin-top: -5px;
    padding-top: 5px;
    text-align: left;
}

.sidebar3 .accordion-collapse .accordion-body {
    color: var(--menu-text-color);
    font-weight: 500;
}

.sidebar3 .accordion-item {
    border: none !important;
    margin-bottom: 15px !important;
}

.sidebar3 .accordion-item:last-child {
    margin-bottom: 0 !important;
}



.sidebar4 i {
    color: var(--blue);
    font-size: 45px;
}






/* Footer */
footer {
    background-color: var(--footer-bg);
    color: #ffffff;
}

footer h3 {
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: clamp(16px, 2vw, 25px);
}

footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 80%;
    background-color: var(--border-color);
}

footer .head3 {
    display: block;
}

footer .head3::after {
    width: 100%;
}

.link {
    color: var(--link-color);
    border-bottom: 1px solid var(--link-color);
}

footer ul li a {
    color: #ffffff;
    font-size: clamp(14px, 1.5vw, 17px);
    transition: all 300ms ease;
}

footer ul li a:hover {
    padding-left: 3px;
}

footer p {
    margin-bottom: 0;
}

footer .copyright {
    border-top: 1px solid var(--border-color);

}
















/* 27-04-26 */
@media (min-width: 992px) {

    .homepage-slider,
    .homepage-slider .slick-track,
    .homepage-slider .slick-slide,
    .homepage-slider .slick-slide>a,
    .homepage-slider .slick-slide img {
        min-height: 100%;
        height: 100%;
    }
}

@media (min-width: 992px) {
    .homepage-slider .slick-list{
        height: 488px;
    }
    .homepage-slider{
        min-height: 488px;
    }
}

.homepage-slider .slick-slide {
    border-radius: 10px;
    overflow: hidden;
}

.homepage-slider .slick-track {
    display: flex;
    align-items: stretch;
}