@import url('https://fonts.googleapis.com/css2?family=Karla&display=swap');

@font-face {
    font-family: bobby-jones;
    src: url("../font/bobbyjones/Bobby Jones/Bobby Rough Soft.ttf")
  }
body{
    background-color: #d9d2bf;
    font-family: 'Karla', sans-serif !important;    
}
@font-face {
   font-family: 'Karla', sans-serif;
    src: url();
  }
  
.container{
    max-width: 1300px;
    margin: auto;
}
*{
    padding:0;
    margin:0;
  }
  h3.new_font {
    font-family: bobby-jones;
}
/* ==============header css start here===================== */

  
.header_inner ul li{
    list-style:none;
    padding: 30px 10px;
  }
  .header_inner {
    z-index: 999;
    position: relative;
}
  
.header_inner ul li a {
    text-decoration: none;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    position: relative;
}
/* .header_inner ul li a:active{
    border-bottom: 4px solid #fff;
} */
    
  
   header{
    position:relative;
    /* padding:0 2rem; */
    /* background-color:black; */
  }
  
  .header_inner .navbar{
    display:flex;
    width:100%;
    height:60px;
    max-width:1300px;
    margin:0 auto;
    align-items:center;
    justify-content:end;
    position: fixed;
    top: 0;
    right: 5%;
  }
  
  .header_inner .navbar .logo a{
    font-size:1.5rem;
    font-weight:bold;
  }
.navbar .links{
    display:flex;
    gap:2rem;
    position: absolute;
    top: 0;
  }
  
  .navbar .toggle_btn{
    color:#fff;
    cursor:pointer;
    display:none;
    font-size:1.5rem;
  }
  .toggle_btn i{
    padding-right: 5%;
  }
  
  .dropdown_menu{
    display:none;
    right:2rem;
    position:absolute;
    background:#000;
    backdrop-filter:blur(15px);
    top:60px;
    height:0px;
    width:300px;
    border-radius:10px;
    overflow:hidden;
    transition: .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .dropdown_menu li{
    padding:0.7rem;
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .dropdown_menu.open{
    height:240px
  }
  
  .dropdown_menu .action_btn{
    width:100%;
    display:flex;
    justify-content:center;
  }
  .header_inner ul li a:after {
    background-color: #1ea743;
    bottom: -3px;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: width .2s ease;
    width: 0;
}
.header_inner ul li a.pageOn:after, .header_inner ul li a:hover:after {
    width: 100%;
}
  /* ===========================fade images css start here====================== */
  @keyframes fade{
  from{
    opacity:0.4;
  }
  to{
    opacity:1;
  }
}

#slider {
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    position: relative;
    /* top: -60px; */
    height: 100vh;
}

.slides{
  overflow:hidden;
  animation-name:fade;
  animation-duration:1s;
  display:none;
  position: relative;
}
.slides img {
    height: 100vh;
    object-fit: cover;
    width: 100% !important;
    object-position: top;
}
.bottom img{
    object-position: bottom !important;
}
.description_itm{
    align-items: center;
    /* background-color: #fff; */
    bottom: 5%;
    color: #000;
    width: 130px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    left: 4%;
    padding: 4px 4px;
    position: absolute;
    z-index: 99;
}
.description_itm i{
    font-size: 12px;
}
.description_itm a.description{
    /* text-decoration: none;
    text-transform: capitalize;
    font-weight: 400;
    background: #fff;
    font-size: .8rem;
    margin-bottom: 0;
    margin-right: 50px;
    padding-top: 4px;
    color: #000;
    display: contents;
    line-height: 16px;
     */
     /* width: 200px; */
}
.description_itm img {
    width: 400px !important;
    height: auto !important;
}

img{
  width:100%;
}


@media (max-width:567px){
  #slider{
    width:100%;
    height: 100%;

  }
}

/* ===========artist_section_itm css start====================== */

.artist_section_itm .art_heading h3 {
    color: #242424;
    font-family: canada-type-gibson,sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    margin: 70px auto;
    text-align: center;
    /* margin-top: 10px; */
}
.artist_section_itm .flex_all_div{
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.overlay_bg{
    background-color: rgba(30,167,67,.5);
    height: 115%;
    left: -7.5%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: -7.5%;
    transition: opacity .2s ease;
    width: 115%;
    z-index: 0;
} 
.artist_section_itm .flex_all_div .inner_flex_item_div:hover .overlay_bg{
    opacity: 1;
}
.artist_section_itm .flex_all_div .inner_flex_item_div:hover .artist_section_itm .flex_all_div img{
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Safari 3-8 */
    transform: scale(1.5); 
}
.inner_flex_item_div p {
    font-size: 1rem;
    font-weight: 500;
    color: #242424;
    line-height: 16px;
    padding-top: 10px;
}
.artist_section_itm .flex_all_div .inner_flex_item_div{
    width: 31%;
    position: relative;
    margin-bottom: 50px;
}
.artist_section_itm .flex_all_div a.art_img_itm{
    display: inline-block;
    text-decoration: none;
}
.artist_section_itm .flex_all_div img{
    width: 100%;
}
/* ========================category_section_itm css start==================== */

.category_section_inner_content_flex {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}
.category_section_inner_content_flex .category_flex_itm{
    width: 24%;
    
}
.category_section_inner_content_flex .category_flex_itm img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.category_flex_itm p {
    color: #d9d2bf;
    font-size: 1rem;
    text-align: center;
    font-weight: 400;
    padding-top: 10px;
}
.category_section_content {
    background-color: #898989;
    padding: 60px 0px;
}
.category_heading h3 {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: .1em;
    text-align: center;
    color: #d9d2bf;
    padding-bottom: 30px;
}


/* ====================fox_creative_section_itm css start=============== */
.creative_hdg_w_insta h3{
    display: inline-block;
    padding-bottom: 10px;
}
.fox_creative_flex_item {
    overflow: hidden;
    height: 300px;
   
}
.creative_hdg_w_insta a {
    display: inline-block;
    color: #fff;
    font-size: 30px;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    padding: 8px 10px;
}
.creative_hdg_w_insta{
    text-align: center;
    position: relative;
}
.overlay_down_box {
    position: absolute;
    top: 10px;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 94%;
    transition: .5s ease;
    opacity: 0;
    color: white;
    font-size: 20px;
    /* padding: 20px; */
    height: 94%;
    z-index: 1;
    text-align: center;
}
.fox_creative_section_itm a .fox_creative_inner_itm{
    position: relative;
    height: 300px;
    margin-bottom: 30px;
}
.fox_creative_flex_item a{
    display: block;
}
.fox_creative_flex_item .coppy_icon {
    position: absolute;
    right: 30px;
    color: #fff;
    top: 20px;
    font-size: 24px;
}
.fox_creative_inner_itm img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease-in-out;
}
.fox_creative_inner_itm {
    position: relative;
    width: 100%;
    height: 275px;
}


.fox_creative_section_itm{
    padding: 60px 0px;
}
 p.pharaset{
    position: absolute;
    bottom: 15%;
    left: 40%;
    color: #fff;
    margin: 0px;
    display: none;

}
.fox_creative_section_itm  .col-lg-3{
    padding: 10px;
}
.fox_creative_flex_item:Hover p.pharaset {
    display: block;
}
.fox_creative_flex_item:hover a.coppy_icon{
    display: none;
}
.fox_creative_flex_item:Hover .fox_creative_inner_itm img{
    transform: scale(1.1);
    overflow: hidden;
}
.fox_creative_flex_item:Hover .overlay_down_box{
    opacity: 1;
}
.fox_creative_flex_item:Hover .pharaset{
    z-index: 9999999;
}


/* ======================popup slider css start here========== */
:root {
    --arrow-font-size: 30px;
    --arrow-color: #000000;
    --arrow-color-lightbox: #ffffff;
}

.XXXXX__slide img {
    margin: 0 auto;
    max-width: 100%;
}

.slick-slider:not(.hero__slider) .slick-prev + .slick-list .slick-slide {
    padding: 0 35px;
}

.slick-slider:not(.hero__slider) .slick-prev:before,
.slick-slider:not(.hero__slider) .slick-next:before {
    font-size: var(--arrow-font-size);
    color: var(--arrow-color);
}

.slick-lightbox .slick-slider:not(.hero__slider) .slick-prev:before,
.slick-lightbox .slick-slider:not(.hero__slider) .slick-next:before {
    color: var(--arrow-color-lightbox);
}

.slick-slider:not(.hero__slider) .slick-prev,
.slick-slider:not(.hero__slider) .slick-next {
    height: initial;
    width: initial;
    z-index: 4;
}

.slick-slider:not(.hero__slider) .slick-prev {
    left: 0;
}

.slick-slider:not(.hero__slider) .slick-next {
    right: 0;
}

.slick-lightbox .slick-slider:not(.hero__slider) .slick-prev {
    left: 15px;
}

.slick-lightbox .slick-slider:not(.hero__slider) .slick-next {
    right: 15px;
}

.my_modal .slick-list{
    height: 500px;
}
.XXXXX__slide.slick-slide.slick-current.slick-active{
    width: 100%;
    /* display: flex; */
}
.XXXXX__slide.slick-slide.slick-current.slick-active img{
    width: 50%;
    float: left;
}
.XXXXX__slide.slick-slide.slick-current.slick-active .left_content a{
    width: 30%;
    display: inline-block;
    float: right;
}
.left_content a{
    display: inline-block;
    color: #999;
    text-decoration: none;
}

@media only screen and (min-width: 1600px) {
    .slick-slider:not(.hero__slider) .slick-prev + .slick-list .slick-slide {
        padding: 0;
    }

    .slick-slider:not(.hero__slider) .slick-prev {
        left: unset;
        right: calc(100% + 30px);
    }

    .slick-slider:not(.hero__slider) .slick-next {
        left: calc(100% + 30px);
        right: unset;
    }


    .slick-lightbox .slick-slider:not(.hero__slider) .slick-prev {
        left: 30px;
        right: unset;
    }

    .slick-lightbox .slick-slider:not(.hero__slider) .slick-next {
        right: 30px;
        left: unset;
    }
}

/* ===================footer css start here========================= */

.footer_inner_content {
    width: 70%;
    margin: auto;
}
.footer_inner_content .ftr_itm {
    width: 25%;
    float: left;
    padding: 75px 0px;
}
.footer_sctn .ftr_itm a i {
    padding-right: 12px;
}
.footer_sctn{
    background-image: url("../assets/images/footer_bg.jpg");
    padding-bottom: 50px;
}
.ftr_itm h3 {
    font-weight: 400;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 16px;
}
.ftr_itm a{
    display:block;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.ftr_itm p {
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 10px;
}
.footer_down_content {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}
.footer_down_content .coppy_right{
    width: 25%;
}
.footer_down_content .coppy_right p{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}
.footer_down_content2 {
    width: 100%;
    margin: auto;
    /* display: flex; */
    display: none;
}
.footer_down_content2 .coppy_right{
    width: 25%;
}
.footer_down_content2 .coppy_right p{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}



/* ========================================INFO PAGE CSS START HERE=================== */
.fox_creative_fix_log1{
    position: fixed;
    right: 0px;
    top: 0px;

}
.fox_creative_fix_log1 img{
    width: 134px;
    filter: invert(1);
}
.fox_creative_fix_log2{
    position: fixed;
    left: 0px;
    top: 0px;

}
.fox_creative_fix_log2 img{
    width: 134px;
    filter: invert(1);
}
.header_inner ul li a.li-itm {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    position: relative;
}
.logo_top img{
    width: 200px;
    height: auto;
    display: none;
  }

.info_banner_wrapper{
    height: 100vh;
    position: relative;
}
.info_background {
    width: 100%;
    position: relative;
    top: 0;
    right: 0;
    height: 80vh;
}
.info_background img {
    width: 100%;
    height: 80vh;
    position: fixed;
    top: 0;
    object-fit: cover;
    object-position: bottom;
}
.info_background.height_align img {
    width: 100% !important;
    height: 100vh;
    position: fixed;
    top: 0;
}
.side_scroll_bar {
    width: 80%;
    margin: auto;
    padding: 20px;
    position: absolute;
    left: 12%;
    top: 39%;
    text-align: center;
    line-height: 15px;
    border-radius: 10px;
}
.side_scroll_bar.pstn_btm {
    position: absolute;
    top: 80% !important;
    left: 8% !important;
}

.side_scroll_bar.pstn_btm.bold {
    position: absolute;
    padding: 0px;
    background-color: #232121;
    bottom: 0;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    left: 0 !important;
    top: auto !important;
    opacity: 0.5;
    padding: 5px;
}
.other_pages_logo {
    position: absolute;
    bottom: 18%;
    left: 0%;
    /* display: none; */
}
.other_pages_logo a img{
    width: 400px;
    height: auto;
}
.other_pages_logo.hide_logo {
    display: block;
}
.side_scroll_bar.pstn_btm p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}


/* .scroll_itms h2 {
    font-family: canada-type-gibson,sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
    margin: 0px;
    padding-bottom: 20px;
} */
.scrill_inner_text p {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
}
.scrill_inner_text span {
    font-weight:500;
    font-size: 14px;
    line-height: 21px;
}
.scrill_inner_text{
    margin: 0px;
    padding-bottom: 20px;
}
.scrill_inner_text a{
    color: #000;
    font-size: 14px;
    line-height: 21px;
    display: block;
    text-decoration: none;
    margin: 0px;
    padding-bottom: 15px;

}
.scroll_content_wrapper img{
    width: 92px;

}
/* .scroll_content_wrapper h2{
    margin: 0px;
    font-size: 1.1rem;
    line-height: 24px;
    padding-bottom: 20px;
} */
.scroll_content_wrapper p {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    text-align: justify;
    margin: 0px;
    color: #fff;
    padding-bottom: 20px;
}
p.font_Size_p {
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}
.scroll_content_wrapper h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}




  /* =========================header responsive css=================== */
  @media only screen and (min-width: 1024px) and (max-width: 1280px){
    .category_section_inner_content_flex .category_flex_itm {
        width: 23%;
    }
    .category_section_inner_content_flex {
        width: 90%;
        gap: 12px;
    }
    .category_section_inner_content_flex .category_flex_itm img {
        height: 250px;
    }
    .slides img {
        height: 100vh;
    }
    #slider {
        height: 100vh;
    
  }
}
  
  @media only screen and (min-width: 768px) and (max-width: 1024px){
    .artist_section_itm .flex_all_div {
        width: 90%;
    }
    .category_section_inner_content_flex .category_flex_itm img {
        width: 100%;
        height: 100%;
    }
    .footer_inner_content {
        width: 90%;
        margin: auto;
    }
    .category_section_inner_content_flex {
        width: 90%;
        gap: 22px;
    }
    .category_section_inner_content_flex .category_flex_itm {
        width: 31%;
        height: 200px;
        margin-bottom: 20px;
    }
    .fox_creative_section_itm a .fox_creative_inner_itm {
        height: 180px;
    }
    .fox_creative_flex_item {
        overflow: hidden;
        height: 180px;
    }
    .overlay_down_box {
        width: 92%;
        height: 90%;
    }
    .fox_creative_section_itm {
        width: 90%;
        margin: auto;
    }
    .slides img {
        height: 100vh;
    }
    .slides img {
    height: 100vh;
}
#slider {
    height: 100vh;
}
  }
  @media(max-width:768px){
    .navbar .links,
    .navbar .action_btn{
      display:none;
    }
    .navbar .toggle_btn {
        display: block;
        top: 4px;
        position: absolute;
        width: 32px;
        height: 26px;
        font-size: 38px;
        right: 7%;
    }
    .dropdown_menu {
        display: block;
        width: 100%;
        right: 0;
        border-radius: 0;
    }
    .header_inner .navbar{
        right: 0px;
        
    }
    .dropdown_menu li a.li-itm {
        text-decoration: none;
    }
    .dropdown_menu li a{
        color: #fff;
    }
  }
  
  @media(max-width:576px){
    .dropdown_menu {
        left: 0;
        width: 100%;
        border-radius: 0px;
        position: fixed;
    }
    .header_inner {
    z-index: 999;
    position: relative;
}
.header_inner .navbar {
    /* background: grey; */
}
  }
  /* ================responsive css========================= */
  @media only screen and (min-width: 320px) and (max-width: 767px){
    /* =================header responsive css============== */
    /* #slider {
        top: 60px;
    } */
    .logo_top img {
        width: 200px;
        height: auto;
        display: block;
        position: absolute;
        top: 25%;
        left: 2%;
    }
    .header_inner .navbar {
        /* background: #000; */
        /* height: 300px; */
    }
    .slides img {
        height: 100vh;
    }
    .navbar{
        background-color: none !important;
    }
    .description_itm img {
        display: none;
    }
    .dropdown_menu.open {
        height: auto;
        width: 100% !important;
        right: 0px;
        border-radius: 0;
        background-color: #fff;
    }
    .dropdown_menu li {
        padding: 0.7rem;
        display: flex;
        justify-content: left;
        align-items: center;
        border-bottom: 1px solid;
    }
    .dropdown_menu li a {
        color: #000;
        font-size: 20px;
        text-transform: uppercase;
        text-align: left !important;
    }
    .artist_section_itm .art_heading h3{
        margin-top: 0px;
    }
 
  /* ========================artist_section responsive css start============ */
  .artist_section_itm .flex_all_div .inner_flex_item_div {
    width: 46%;
    float: left;
    margin: 0% 2%;
}
.artist_section_itm .flex_all_div {
    width: 90%;
    display: block;
}
.artist_section_itm {
    margin: 50px 0px;
    overflow: hidden;
}
.art_heading h3 {
    padding: 50px 0px 0px 0px;
}
/* ======================category_section  RESPONSIVE CSS START HERE=============== */




.category_section_inner_content_flex .category_flex_itm {
    width: 48%;
}
.category_section_inner_content_flex {
    gap: 10px;
    width: 90%;
}
.category_section_inner_content_flex .category_flex_itm img {
    height: 125px;
}
/* ================footer responsive css start here================ */
.fox_creative_flex_item {
    width: 80%;
    margin: auto;
}
.fox_creative_section_itm a .fox_creative_inner_itm {
    position: relative;
    height: 300px;
    margin-bottom: 30px;
}
.fox_creative_flex_item .coppy_icon {
    right: 18%;
}
.creative_hdg_w_insta h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
}
.creative_hdg_w_insta a {
    margin-right: 20px;
    background: #333;
    margin-top: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 4px 6px;
}
.overlay_down_box {
    width: 75.5%;
    height: 94%;
}
/* ===================footer_sctn responsive css start here================== */
.footer_inner_content .ftr_itm {
    width: 50%;
    padding: 8px 10px;
}
.footer_inner_content {
    width: 90%;
}
.ftr_itm a i{
    font-size: 20px;
    padding-right: 10px;
    padding-top: 5px;
    line-height: 20px;
}
.footer_down_content {
    display: none;
}
.footer_sctn {
    padding-top: 30px;
    min-height: 270px;
}
.footer_down_content2 {
    text-align: center;
    display: block;
    height: 0px;
    padding-bottom: 6px;
}
.footer_down_content2 .coppy_right2 {
    width: 50%;
    float: left;
}
.footer_down_content2 .coppy_right2 p {
    margin: 0px;
    font-size: 14px;
}
}

/* ==============================INFO PAGE RESPONSIVE CSS START HERE================== */
@media only screen and (min-width: 768px) and (max-width: 1023px){
    .info_background {
        width: 100%;
        position: inherit;
    }
    .side_scroll_bar {
        width: 90%;
        float: inherit;
        margin: auto;
        padding: 20px 0px;
    }

}
@media only screen and (min-width: 320px) and (max-width: 767px){
    .info_background {
        width: 100%;
        position: inherit;
    }
    .info_background img {
        width: 100%;
        height: auto;
    }
    .side_scroll_bar {
        width: 90%;
        float: inherit; 
         margin-right: 0%;
        padding: 20px 20px 20px 20px;
    }
    
}
.scroll_content_wrapper h3 {
    font-size: 20px;
    color: #fff;
    width: 80%;
    margin: auto;
    text-align: left;
}
.scroll_content_wrapper.align_text h3 {
    text-align: center !important;
}
.scroll_content_wrapper.align_text {
    width: 100%;
    margin: auto;
}
h3.new_font a img {
    width: 230px;
}
.s_media img {
    object-position: top;
}