/*Header Menu css*/
/*.tire-finder-drop-wrapper{*/
/*    display: none;*/
/*}*/

#main{
    background-color: white !important;
}
.firstMenu2 > a {
    padding-top: 21px;
}
/*Header Menu Css End*/



/*Home Page Css*/

.slick {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

.slick__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    background: #000;
}

.bg-video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.flex-control-nav.flex-control-paging li a {
    text-indent: -9999px;
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    overflow: hidden;
    position: relative;
    transition: background-color 0.3s ease;
}

.flex-control-nav.flex-control-paging li a.flex-active {
    background-color: #fff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.banner-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 585px;
    background: #000;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
    list-style: none;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 101%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LEFT CONTENT */
.slide-content {
    position: absolute;
    top: -3px;
    left: 0;
    width: 50%;
    height: 100%;
    background: white;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    z-index: 3;
    padding-left: 12%;
}

/* RIGHT CONTENT */
.slide.content-right .slide-content {
    left: auto;
    right: 0;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.slide-content h1 {
    font-family: 'Arial Black', sans-serif;
    font-size: 34px;
    font-style: italic;
    color: #0066cc;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 900;
    height: 100px;
}

.slide-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 400px;
}

.slide-button {
    display: inline-block;
    padding: 12px 30px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    align-self: flex-start;
}

.slide-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* =============================== */
/*     UPDATED SLIDER ARROWS      */
/* =============================== */

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 55px;
    height: 55px;
    background: transparent !important;
    border: none;
    font-size: 50px;
    font-weight: 300;
    color: #005baa !important; /* Blue arrows */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s ease;
    padding: 0;
}

/* Hover color */
.slider-nav:hover {
    color: #003f7d !important;
}

/* Remove triangle clip-path */
.slider-nav.prev,
.slider-nav.next {
    clip-path: none !important;
}

/* Positioning */
.slider-nav.prev {
    left: 25px;
}

.slider-nav.next {
    right: 25px;
}

/* =============================== */
/*       PAGINATION DOTS          */
/* =============================== */

.slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    list-style: none;
}

.pagination-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.pagination-dot.active {
    background: #0066cc;
    border-color: #0066cc;
    transform: scale(1.3);
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* IMAGE RIGHT SIDE */
.slide-image-container {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
}

/* IMAGE LEFT SIDE (alternate slides) */
.slide.content-right .slide-image-container {
    right: auto;
    left: 0;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .slide-content {
        padding: 40px 50px;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 600px;
    }

    .slide-content {
        width: 100%;
        height: 50%;
        clip-path: none;
        padding: 30px;
        background: rgba(255, 255, 255, 0.95);
    }

    .slide-image-container {
        width: 100%;
        height: 50%;
        top: 50%;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 32px;
    }

    .slider-pagination {
        bottom: 55%;
    }
    
    .slide.content-right .slide-content{
        clip-path: none;
    }
}

/* VIDEO BLOCK */
.video-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 20px 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* SPECIAL SLIDES */
.slide[data-slide="1"] .slide-content,
.slide[data-slide="2"] .slide-content {
    background: rgba(255, 255, 255, 0.98);
    
}

.slide[data-slide="3"] .slide-content h1,
.slide[data-slide="4"] .slide-content h1,
.slide[data-slide="5"] .slide-content h1 {
    color: #0066cc;;
}

/*Home Page Css End*/


/*Tire Details Page*/

.graphic-title{
    width: 100%;
    height: 89px;
    object-fit: contain;
}

.node-header-image{
    height: 26rem;
}

#warrenty-details{
    display: none;
}
#replace{
    display: none;
}
.content-warrenty-details{
    text-align: center;
}

/*Search Results page*/

/*.main-content-area ul {*/
/*    padding-left: 0px !important;*/
/*}*/

/*.admin-action ul li{*/
/*    margin-left: 0px !important;*/
/*}*/

 /* Responsive */
 
 
/*@media screen and (max-width: 480px){*/
/*     .navbar2{*/
/*        left: 85% !important;*/
/*        top: 26px !important;*/
/*}*/

/*}*/

#header .social-icons .links li{
    margin-top:0;
}

#header .social-icons .links{
    margin-top:4px;
}

#header .social-icons li{
    display:flex;
}

#header .social-icons li a{
    display:flex;
}

#header .social-icons {
    margin-top: 3px;
}

#content-bottom{
    gap: 10px;
}

#content-bottom #block-views-tweets_block-block{
    margin:0;
}

#block-views-content_bottom-block .views-row, #block-views-content_bottom-block_1 {
    width: auto;
}

#block-views-content_bottom-block .views-row-1 {
    margin-right: 0 !important;
}

.slide-content p:empty{
    display:none;
}

.new_prdt_part p:empty{
    display:none;
}

.tire-pattern-details .main-content-area ul {
    padding-left: 0;
}

.tire-pattern-details .viewfeature .insHdnTab {
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: center;
    padding-right: 0;
    padding-left: 0;
}

.tire-pattern-details .accordBlock h3 {
    background: #ccc;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
}

.tire-pattern-details .prfTable table th, .tire-pattern-details .prfTable table td {
    padding: 10px 10px;
}

.tire-pattern-details .view-tire-features .views-field-field-video .field-content a:after{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cstm-home-page .video-container a{
    display: inline-block;
}

.not-front .header-background img{
    height:100%;
    object-fit: cover;
}

/* --- Desktop: show menu, hide toggle button --- */
.footer-toggle-btn {
    display: none;
}

#footer .responsive-menus-simple,
#footer .rm-removed,
#footer ul.rm-removed,
#footer div.rm-removed {
    display: none;
}
.responsive-footer-region{
    display: none;
}
.region-2-responsive{
    display: none;
}
.blog-main-content-area{
    display: flex;
}
.frnst{
    display: block;
}

.hero-main-bnr{
    height: 305px !important;
}
.cstm-heaer-menu-option{
    width: 55%;
}

.where-to-buy{
    display: flex;
}
.dealer-address{
    width: 60%;
}
.contact{
    width: 60%;
}

.nearest-dealer-heading{
    color: #0068b3;
    font-weight: bold;
}
.dealer-title{
    color: black !important;
}

/*@media(max-width:1280px){*/
/*    .tire-info{*/
/*        display: flex;*/
/*    }*/
/*}*/

/*@media(max-width: 932px){*/
/*    .tire-info{*/
/*        display: unset;*/
/*    }*/
/*    .tire-phts{*/
/*        width: 44%;*/
/*    }*/
/*}*/

/*@media(max-width: 820px){*/
/*    .tire-info{*/
/*        display: flex;*/
/*    }*/
/*    .tire-phts{*/
/*        width: 44%;*/
/*    }*/
/*    .footer-toggle-btn{*/
/*        display: block !important;*/
/*    }*/
    
/*}*/
/*@media(max-width: 540px){*/
/*    .tire-info{*/
/*        display: unset;*/
/*    }*/
/*    .tire-phts{*/
/*        width: 44%;*/
/*    }*/
/*}*/

/*@media(max-width: 667px){*/
/*    #src-mnu1-open-responsive{*/
/*        margin-top: 50px !important;*/
/*    }*/
    
/*}*/

/*@media(max-width: 667px){*/
/*    .menuClosenew{*/
/*    color: #0061af;*/
/*    position: absolute;*/
/*    z-index: 1;*/
/*    right: 29px;*/
/*    top: 0;*/
/*    font-size: 22px;*/
/*    font-weight: 750;*/
/*    cursor: pointer;*/
/*    }*/
    
/*}*/

/*@media(max-width: 882px){*/
/*   .menuNewModify h3 {*/
/*    text-transform: uppercase;*/
/*    font-size: 24px;*/
/*    font-weight: 700;*/
/*    border-bottom: 1px solid #ccc;*/
/*    padding-bottom: 8px;*/
/*    margin-bottom: 25px;*/
/*    color: #0061af !important;*/
/*    font-family: "Gotham A", "Gotham B", "Helvetica Neue", Helvetica, Arial, sans-serif;*/
/*    }*/
    
/*}*/

.nearest-dlr-btn{
    width: 50%;
    background: white;
    border: 3px solid #006cb8;
    border-radius: 36px;
    margin-bottom: 27px;
    color: #006cb8;
    font-weight: bold;
}

.nearest-dlr-btn:hover{
    width: 50%;
    background: #006cb8;
    border: 3px solid #006cb8;
    border-radius: 36px;
    margin-bottom: 27px;
    color: white;
    font-weight: bold;
}







