/* Overall */
#main_index{
    overflow: hidden;
    padding-bottom: 0px !important;
}
a:hover{
    text-decoration: unset;
}
:root{
    --pcolor: #a57d24;
}

/* Text */
.subtitle-style{
    display: flex;
    align-items: baseline;
    gap: 1rem;
    font-size: clamp(.85rem, .92vw, .92vw);
    font-weight: 400;
    
    &:after{
        display: inline-flex;
        content:"";
        width: 32px;
        height: 1.5px;
        background: #ccc;
        margin: 0
    }
}

.title-style{
    color: var(--pcolor);
    font-size: clamp(1.6rem, 2.15vw, 2.15vw);
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.content{
    color: #777;
    font-weight: 300;
    font-size: clamp(.85rem, 1vw, 1vw);
    line-height: 1.75;
    margin: 0
}

/*Button*/
#main_index a{
    width: fit-content;
}
.main-btn{    
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: clamp(.8rem, .85vw, .85vw);
    color: #fff;
    font-weight: 400;
    padding: 10px 15px;
    border-radius: 0;
    background: #000000;  
    border-style: none;
    overflow: hidden;      
    text-transform: uppercase;
    
    .b-icon img{
        max-width: 16px;
        height: auto;       
        transition: all .5s linear;
    }
    
    &:hover{
        color: #fff;        
        
        .b-icon{
            animation: zoomIn .6s linear forwards, swing 1s cubic-bezier(.79,.14,.15,.86);
        }
    }
    
    &.gallery{
        background: linear-gradient(to top, var(--pcolor) 40% , #fbf2a8 130%);
        transform: translateY(-50%);
    }
}


/* Nav */
.navbar_type8{
    height: 100px;
    background: #fff;
    padding: 0;
}
#main_index .navbar_type8{
    background: transparent;
}
.navbar_type8 .logo{
    margin-left: 8%;  
    flex: unset;
    min-width: 20%;
}
.navbar_type8 .logo img{
    padding: 0px;
    width: 100%;
    object-position: left;
}

.navbar_type8 .nav_tab{
    flex: unset;
    width: fit-content;
    padding-right: 0;
    gap: 3.5vw;  
    margin-left: auto;
    margin-right: 7%;
    padding-left: 0;
    position: relative;
    
    &:before{
        position: absolute;
        content: "";
        width: 100%;
        height: .1rem;
        background: linear-gradient(to right, rgb(165, 125, 36, .25), #fbf2a8, rgb(165, 125, 36, .25));
        bottom: 0;
        left: 0;
    }
}
.navbar_type8 .nav_tab .nav_item:before{
    display: none;
}
.navbar_type8 .nav_tab .nav_item a{
    color: #1a1a1a;
    padding: 0;
    font-size: clamp(.75rem, .95vw, .95rem);
    font-weight: 300;   
}
#main_index .navbar_type8 .nav_tab .nav_item a{
    color: #fff;
    
    &:hover{
        color: #ccc;
    }
}
#main_index .navbar_type8.dark_nav .nav_tab .nav_item a{
    color: #1a1a1a;
    
    &:hover{
        color: var(--pcolor);
    }
}
.navbar_type8 .nav_tab .nav_item a:hover{
    color:  #a57d24;
}
.navbar_type8 .nav_tab .nav_item:hover:before{
    width: 100%;
}

.dark_nav{
background: rgba(255, 255, 255, 0.9) !important;
}

.navbar_mobile{
    background: #fff;
}

@media(max-width:1200px){
    .navbar_type8 .logo{
        margin-left: 4%;
    }
    .navbar_type8 .nav_tab{
        margin-right: 4%;
        gap: 3vw;
    }
}

/* Slider */
.slider_banner .banner_content{
    overflow: hidden;
    opacity: 1 !important;
}
.hp_banner{
    position: relative;
    height: 100%;
}
.b-image{    
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 67%;
    display: grid;
    place-content: center;
    padding-top: 60px;
    padding-right: 7%;
}

.b-content{
    width: 38.4%;
    height: 100%;
    display: grid;
    place-content: center;    
    padding-left: 0;
    padding-top: 8%;    
}
.b-content h6{
    color: #666;
    font-weight: 400;
    font-size: clamp(.9rem, 1.25vw, 1.25vw);
    margin-bottom: 0;
}
.b-content h2{
    font-size: clamp(1.85rem, 2.78vw, 2.78vw);
    font-weight: 700;
    margin-bottom: 0;
}
.b-content p{
    color: #555;
    font-weight: 300;
    font-size: clamp(.85rem, .92vw, .92vw);
    margin-bottom: 0;
    width: 75%;
}

.b-info{
    position: relative;
    
    left: 6%;
    &:before{
        position: absolute;
        content: "";
        width: 130%;
        height: 150%;
        background: url(https://cdn1.npcdn.net/images/banner_gold_border_ut376q_1776654223.png?md5id=9e020ebb181dfd3fb1229c6ceb076a60&new_width=1002&new_height=992&type=4);
        background-size: contain;
        background-repeat: no-repeat;  
        top: -25%;
        left: -15%;
        z-index: -1;
    }
}

@media(min-width:991px){
    .slider_banner{
        margin-top: -100px;   
    }    
}

@media(max-width:1200px){
    .b-info{
        padding-left: 5%;   
    }
    .b-info:before{
        display: none;
    }
    .b-image{
        padding-top: 10%;
        padding-right: 4%;
        width: 55%;
    }        
}

@media(max-width:991px){
    .b-content{
        padding-top: 0;
    }
    .b-image{
        width: 61.6%;
        padding: 0 5%;
    }
}

@media(max-width:768px){
    .slider_banner .item > img{
        min-height: 70vw;
        object-fit: cover;
        object-position: right;        
    }
    .hp_banner{
        background: #555;
    }
}

@media(max-width:768px){
    .slider_banner .item > img{
        min-height: 100vw;
        object-fit: cover;
        object-position: right;        
    }
    .hp_banner{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4em;
    }
    .b-content,
    .b-image{
        position: unset;
        width: 100%;
        height: fit-content;
    }
    .b-content h6,
    .b-content h2,
    .b-content p{
        color: #fff;
    }
    .b-content h2 br{
        display: none;
    }
    .b-info{
        padding: 0;
        left: 0;
    }
    .b-image{
        padding: 0 5%;
    }
    .b-content{
        padding: 0 5%;
    }
}

@media(max-width:576px){
    .slider_banner .item > img{
        min-height: 150vw;
    }
    .b-content{
        padding: 0 5%;
    }
    .b-content p{
        width: 90%;
    }
}

/* About */
.abt-wrapper {
  display: flex;
}

.abt-content{
    display: grid;
    place-content: center;
    padding-left: 0%;    
    margin-right: 7%;    
}
.abt-info{
    padding: 4rem 5rem;    
    padding-left: 5rem;
    position: relative;
    
    &:before{
        position: absolute;
        content: "";
        width: 110%;
        height: 100%;
        top: 0;
        left: -10%;
        border: 2px solid #ccc;            
        z-index: -1;
    }    
    
    &:after{
        position: absolute;
        content: "";
        width: 10px;
        height: 75%;
        background: linear-gradient(to bottom, #a57d24, #fbf2a8, #a57d24);
        top: 0;
        right: 0;
    }
}
.abt-content .main-btn{
    transform: translateY(-50%);
    margin-left: 5rem;
}

.abt-frame {
  position: relative;
  z-index: 1;
}

.abt-content .content{
    font-size: clamp(.75rem, .92vw, .92vw);
}

@media(min-width:991px){
    .abt-frame{
        min-width: 55%;
    }    
}

@media(max-width:1200px){
    .abt-content{
        margin-right: 4%;
        margin-top: 1%;
    }
    .abt-info{
        padding: 2rem 3rem 2.75rem;
    }
    .abt-content .main-btn{
        margin-left: 3rem;
    }
}

@media(max-width:991px){
    .abt-frame{
        width: 2750px;
        position: relative;
        
        &:before{
            position: absolute;
            content: "";
            width: 69.8%;
            height: 100%;
            background: #727272;
            top: 0;
            left: 0;
            z-index: -1;
        }
    }
    .abt-content{
        margin: 0;
        position: relative;
        padding: 3rem 0;
        
        &:after{
            position: absolute;
            content: "";
            width: 10px;
            height: 100%;
            background: linear-gradient(to bottom, #a57d24, #fbf2a8, #a57d24);
            top: 0;
            right: 0;
        }
    }    
    .abt-info:before{
        display: none;
    }
    .abt-info:after{        
        display: none;
    }
    .abt-content .main-btn{
        transform: unset;
    }
    .abt-info{
        padding-bottom: 2rem;
        padding-top: 0;
    }
}

@media(max-width:768px){
    .abt-wrapper{
        flex-direction: column-reverse;        
    }    
    .abt-frame{
        width: 100%;
        margin-top: -10%;
        z-index: -1;
        position: relative;
        
        &:before{
            width: 100%;
            height: 14%;
            background: #fff;
            z-index: 1;
        }
    }
}

@media(max-width:576px){
    .abt-info{
        padding: 0 60px 30px 30px;
    }
    .abt-content .main-btn{
        margin-left: 30px;
    }
}

/*Qoutes*/

.hp_qoutes {
    padding: 6rem 10% 6rem;
}

.hp_qoutes .title-style {
    color: var(--pcolor);
    font-size: clamp(1.6rem, 2.15vw, 2.15vw);
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    margin-bottom: 1vw;
}

.hp_qoutes .title-wrapper {
    margin-top: 3rem;
    margin-bottom: 2vw;
}

.project-f .qoutes_box {
    position: relative;
    background: #000;
    border-radius: 25px;
    padding: 80px 25px 40px 25px;
    text-align: center;
    margin: 12px;
    overflow: hidden;
    margin-top: 2vw;
}

.project-f .qoutes_box::before,
.project-f .qoutes_box::after {
    position: absolute;
    font-size: 80px;
    color: #a57d24;
    font-family: serif;
    line-height: 1;
}

.project-f .qoutes_box::before {
    content: "“";
    top: 10px;
    left: 20px;
}

.project-f .qoutes_box::after {
    content: "”";
    bottom: -20px;
    right: 20px;
}

.project-f .qoutes_text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: #fff;
    /* font-family: 'Playfair Display', serif; */
    margin-bottom: 0px;
    height: 130px;
}

.project-f .qoutes_name {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
}

.project-f .slick-prev:before, .project-f .slick-next:before {
    display: none;
}

.project-f {
    padding: 0vw 0vw 1vw 0vw;
}

@media screen and (max-width: 1300.5px) {
    .project-f .qoutes_box {
        position: relative;
        background: #000;
        border-radius: 25px;
        padding: 60px 25px 60px 25px;
        text-align: center;
        margin: 12px;
        overflow: hidden;
    }
    
    .project-f .qoutes_text {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.6;
        color: #fff;
        /* font-family: 'Playfair Display', serif; */
        margin-bottom: 0px;
        height: 140px;
    }
}

@media screen and (max-width: 1200.5px){
    .project-f .qoutes_box {
        position: relative;
        background: #000;
        border-radius: 25px;
        padding: 60px 25px 60px 25px;
        text-align: center;
        margin: 12px;
        overflow: hidden;
    }

    .project-f .qoutes_text {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.6;
        color: #fff;
        /* font-family: 'Playfair Display', serif; */
        margin-bottom: 0px;
        height: 193px;
    }
    
    .hp_qoutes {
        padding: 5rem 10% 6rem;
    }
}

@media screen and (max-width: 767.5px){
    .hp_qoutes {
        padding: 2rem 4% 1.5rem;
    }
    
    .project-f .qoutes_text {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.6;
        color: #fff;
        /* font-family: 'Playfair Display', serif; */
        margin-bottom: 0px;
        height: 193px;
    }
}

/* Service */
#main_index .innerRow_5{
    margin-left: 9%;
    position: relative;
    
    &:before{
        position: absolute;
        content: "";
        width: 10px;
        height: var(--height-style);
        background: linear-gradient(to bottom, #a57d24, #fbf2a8, #a57d24);
        left: -5.7%;
        top: 0;
    }
}
.index_wrapper_5{
    background: linear-gradient(to left, #000 61.7%, #fff 0%);
    padding: 7rem 0;
}

.ex_hpservice_slide{
    margin: 0;
    padding: 2.8rem 0 0;        
    background: transparent;    
    margin-bottom: 3.7rem;
}
.ex_hpservice_slide .slick-dots{
    display: none;
}
.ex_hpservice_slide .services-text{
    top: unset;
    transform: unset;
    bottom: 0;
    left: 0;
    text-align: left;    
    padding: 2rem;
}
.ex_hpservice_slide .services-text h3.title{
     font-weight: 500;
    font-size: clamp(.85rem, 1.1vw, 1.1vw);    
    text-transform: capitalize;
    margin-bottom: 1.4rem;
}
.ex_hpservice_slide .services-text h3.title::after{
    display: none;
}
.ex_hpservice_slide .services-text p{
    display: none;
}
.ex_hpservice_slide .service_btn{
    margin: 0;
    background: none;
    padding: 0;
    font-weight: 300;
    font-size: clamp(.6rem, .75vw, .75vw);
    border-bottom: 1px solid #fff;
    letter-spacing: 0;
}
.ex_hpservice_slide .service_btn i{
    display: none;
}
.ex_hpservice_slide .services-content .overlay{
    opacity: .35;
}
.ex_hpservice_slide .services-content{
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}
.ex_hpservice_slide .container{
    max-width: 100%;
    margin: 0;
}
.ex_hpservice_slide .col-md-12{
    padding: 0 !important;
    margin-bottom: unset;
}
.ex_hpservice_slide .item{
    margin: 0 14px;
}
.ex_hpservice_slide .slick-list{
    margin: 0 -14px;
}

.hp_service .title-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 6.6%;    
}
.hp_service-more .duo-col{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 6.6%;
}

.slogan{
    color: var(--pcolor);
    font-size: clamp(1.15rem, 1.5vw, 1.5vw);
    font-weight: 300;
    letter-spacing: 16px;
    margin-bottom: 0;
    cursor: default;
}
.sm-slogan{
    color: #ddd;
    font-size: clamp(.85rem, 1.15vw, 1.15vw);
    font-weight: 300;
    letter-spacing: 3px;    
    cursor: default;
    margin-bottom: 0;
}

@media(max-width:1300px){
    .slogan{
        letter-spacing: 10px;
    }
    .sm-slogan{
        letter-spacing: .15vw;
    }
}

@media(max-width:991px){
    .ex_hpservice_slide{
        padding: 2rem 0 0;
    }
    .hp_service .title-wrapper,
    .hp_service-more .duo-col{
        padding-right: 4%;
    }
    .slogan{
        letter-spacing: .8vw;
    }
    .sm-slogan{
        letter-spacing: 0.05vw;
    }
}

@media(max-width:768px){
    .index_wrapper_5{
        background: #000;
    }
    .hp_service .title-wrapper{
        align-items: end;
    }
    .slogan{
        letter-spacing: .2vw;
    }
    .sm-slogan{
        width: 50%;
    }
    .hp_service-more .main-btn{
        background: #fff;
        color: #000;
        
        .b-icon{
            filter: brightness(0);
        }
    }
    .hp_service .subtitle-style{
        color: #fff;
    }
    
    .ex_hpservice_slide .services-text{
        padding: 1.75rem;
    }
    .ex_hpservice_slide .services-text h3.title{
        margin-bottom: .5rem;
        font-size: 1.2em;
    }
    .ex_hpservice_slide .services-text .service_btn{
        font-size: .8em;
    }
    .index_wrapper_5{
        padding: 5rem 0;
    }
}

@media(max-width:576px){
    #main_index .innerRow_5:before{
        left: calc(-9% - 16px);
    }
    .hp_service .title-wrapper{
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
}

/* Product */
.hp_product{
    background: url(https://cdn1.npcdn.net/images/our_products_bg_jrhe0m_1776673994.jpg?md5id=9e020ebb181dfd3fb1229c6ceb076a60&new_width=1600&new_height=1148&type=4);
    padding: 7rem 7%;
}

.prod-wrapper {
  display: grid;       
   grid-template-columns: repeat(5, 1fr);
    gap: 3.5rem;
}

.prod-main{
  grid-column: span 2
}
.prod-main .title-box{
    margin-left: 2rem;
    margin-bottom: 4.5rem;
}

.prod-sub{
    grid-column: span 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3.5rem;
}

.prod-box.big .prod-frame img{
    width: 100%;
    height: 46vw;    
    object-fit: cover;
}
.prod-box{
    position: relative;
}

.prod-btn{
    color: #fff;    
    background: linear-gradient(to bottom, #a57d24 50%, #fbf2a8 160%);
    width: 85%;
    margin-left: auto;
    padding: 1rem 1.5rem;
    font-size: clamp(.95rem, 1.05vw, 1.05vw);    
    font-weight: 600;        
    z-index: 1;    
    transform: translateY(-50%);
    
    span{
        font-size: 85%;
    }
}
.prod-box.big .prod-btn{
    width: 60%;
}

.hp_product_btn{
  transform: translateY(-50%);
}
@media(min-width:768px){
  .hp_product_btn {
    margin-left: 10%;    
  }  
}


@media(max-width:1200px){
    .hp_product{
        padding: 7rem 4% 4rem;
    }
    .prod-wrapper{
        column-gap: 2rem;        
    }       
    .prod-sub{
        column-gap: 2rem;
    }
    .prod-box.big .prod-frame img{
        height: 46vw;
    }
}

@media(max-width:768px){
    .hp_product{
        padding: 5rem 4% 3.5rem;
    }
    .prod-wrapper{
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
    
}

@media(max-width:568px){
    .prod-sub{
        grid-template-columns: repeat(1, 1fr);
    }
    .prod-box.big .prod-btn{
        width: 85%;
    }
    .prod-box.big .prod-btn br,
    .prod-box .prod-btn br{
        display: none;
    }
}

/* Gallery */
.index_wrapper_7{
    padding: 7rem 10% 6rem;
}

.hp_gallery .content{
    font-size: clamp(.85rem, 1.15vw, 1.15vw);
    letter-spacing: 1px;
}

.gallerycategory{
    margin: 0 -1rem;
}
.gallerycategory .col-lg-3{
    flex: 0 1 33.33%;
    max-width: 33.33%;
    padding: 0 1rem !important;
}

.gallerycategory .img_frame .more p{
    display: none;
}

.gallerycategory .col-lg-3 .text-center{
    text-align: left !important; 
    padding: 0 !important;
    margin: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(.85rem, 1vw, 1vw);
    position: relative; 
        
    cursor: default;
    &:before{
        position: absolute;
        content: "";
        width: 100%;
        height: 1.5px;
        background: linear-gradient(to right, #a57d24, #fbf2a8 , #a57d24);
        bottom: -20px;
        left: 0;
    }
    
    &:after{
        display: inline-flex;
        content: "";
        width: 50px;
        height: 50px;        
        background: url(https://cdn1.npcdn.net/images/arrow_small_10cyq3_1776676184.png?md5id=9e020ebb181dfd3fb1229c6ceb076a60&new_width=105&new_height=43&type=4);        
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        cursor: default;
    }
}

#index_7_2{
    padding-bottom: 5.8rem !important;
    position: relative;
    
    &:before{
        position: absolute;
        content: "";
        width: 112%;
        height: 64%;
        bottom: 0;
        left: calc(-12% / 2);
        background: #000;
        z-index: -1;
    }
}

@media(max-width:991px){
    .index_wrapper_7{
        padding: 5rem 10% 4rem;
    }
    .gallerycategory .img_frame{
        height: 170px;
    }
    .hp_gallery .content{
        width: 50%;
    }
}

@media(max-width:768px){
    .hp_gallery .title-box{
        margin-bottom: 1rem;
    }
    .hp_gallery .subtitle-style{
        justify-content: center;
        
        &:after{
            display: none;
        }
    }
    .hp_gallery .content{
        width: 80%;
        text-align: center;
    }
}

@media(max-width:576px){
        .hp_gallery .content{
            width: 100%;
        }
        .gallerycategory .col-lg-3{
            flex: 0 1 100%;
            max-width: 100%;
            padding: 1rem !important;
        }
        .gallerycategory .img_frame{
            height: 300px;
        }
        #index_7_2{
            padding-top: 3rem !important;
            padding-bottom: 3rem !important;
        }
        #index_7_2:before{
            height: 100%;
        }
        .gallerycategory .col-lg-3 .text-center:before{
            bottom: 0;
    }
}
    
/* connect     */
.hp_connect{
    background: url(https://cdn1.npcdn.net/images/connect_with_us_bg_6c0tvy_1776677519.jpg?md5id=9e020ebb181dfd3fb1229c6ceb076a60&new_width=1600&new_height=576&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10rem 0;
    background-attachment: fixed;
}
.conn-box{
    width: 60%;
    margin: auto;
}
.hp_connect .content{
    font-size: clamp(.85rem, 1.1vw, 1.1vw);
}


@media(max-width:991px){
    .hp_connect{
        background-attachment: unset;
        background-position: center;
    }
}
@media(max-width:768px){
    .hp_connect{
        padding: 5rem 0;
    }
    .conn-box{
        width: 80%;
    }
}

@media(max-width:576px){
    .conn-box{
        width: 90%;
    }
}

/* News */
.index_wrapper_9{
    padding: 7rem 8% 4.5rem;
}
.hp_news .content{
    width: 65%;
}
.hp_news .title-wrapper{
    padding: 0 15px;
}
.hp_latest_new_8 .news_box{
    padding: 0;
}
.hp_news .content{
    font-size: clamp(.85rem, 1.1vw, 1.1vw);
}
.hp_latest_new_8 .news_box .read_more{
    color: var(--pcolor);
    font-size: clamp(.85rem, 1vw, 1vw);
}
    
@media(Max-width:991px){
    .index_wrapper_9{
        padding: 5rem 8%;
    }
    .hp_news .content{
        width: 50%;
    }
}

@media(max-width:768px){
    .index_wrapper_9{
        padding-left: 4%;
        padding-right: 4%;
    }
    .hp_news .content{
        width: 90%;
        text-align: center;
    }
    .hp_news .title-box{
        margin-bottom: 1rem;
    }
    .hp_news .subtitle-style{
        justify-content: center;
        &:after{
            display: none;
        }
    }
}

@media(max-width:576px){
    .hp_news .content{
        width: 100%;
    }
}

/*footer*/
.footer_type9 {
    color: #f4f4f4;
    padding-top: 4rem;
    background: #000000;
    font-size: clamp(.85rem, .95vw, .95vw);
    line-height: 1.6;    
}

.footer_type9 .copy_right{
    font-size: clamp(.85rem, .95vw, .95vw);
}

.footer_type9 .text {
    color: #f2f2f2 !important;    
    font-size: clamp(.85rem, .95vw, .95vw);
    font-weight: 300;
}

.footer_type9 .logo {
    min-height: 100px;
    
    img{
        max-height: 100px;
    }
}

.footer_type9 .icon{    
    background: linear-gradient(to right, #a57d24, #fbf2a8, #a57d24);
}
.footer_type9 .icon i{
    color: #000;
    font-size: .85rem;
}

.footer_type9 .bg_dark {
    background-color: transparent;
}

.footer_type9 a:hover,
.footer_type9 a.text:hover {
    color: #fff !important;
}

.footer_type9 a {
    color: #f2f2f2;
    font-weight: 300;        
}

.footer_type9 .nav_item li a::after {
    color: #f4f4f4;
    padding: 0 10px;
}

.footer_type9 .col-12.col-md-6.mb-md-0:nth-child(1) {
    padding-right: 5vw !important;
}

.footer_type9 .sub_title p {       
    color: #fff;
    font-size: clamp(1rem, 1.3vw, 1.3vw);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer_type9 .info-title{
    font-weight: 700;
}

.footer_type9 .text-muted{
    color: #fff !important;
}

.footer_type9 .social_media a .icon_s{
    margin-bottom: 0 !important;
    background: #fff;    
    width: 30px;
    height: 30px;   
    
    i{
        color: var(--primary-color);
    }
}
.footer_type9 .social_media,
.footer_type9 .social_mediaImg{       
    width: fit-content;    
    margin: 0 !important;    
}
.footer_type9 .social_mediaImg a .icon_s{
    border: none;    
    padding: 0;
    background: none;
}
.footer_type9 .social_mediaImg .icon_s{
    filter: brightness(0) invert(1);            
    padding: 0;
    
    img{
        border-radius: 50%;        
        height: 30px !important;
    }
}

.footer_type9 .social_media a:hover .icon_s{
    background: #fff;
    
    i{
        color: var(--primary-color);
    }
}

.footer_type9 .social_mediaImg a:hover .icon_s{
    background: unset;
}
.footer_type9 .social_mediaImg a:hover .icon_s img{
    filter: brightness(0) invert(1) !important;
}
.footer_type9 .social_media a{
    height: 100%;
    display: flex;
    margin-right: .35rem;
}

@media (min-width:991px){
    .footer_type9 .col-12.col-md-6.mb-md-0:nth-child(1) {
        -ms-flex: 0 0 65%;
        flex: 0 0 65%;
        max-width: 65%;
    }
    .footer_type9 .col-12.col-md-6.mb-md-0:nth-child(2) {
        -ms-flex: 0 0 35%;
        flex: 0 0 35%;
        max-width: 35%;
    }
}

@media (min-width: 768px) {    
    .footer_type9 .col-12.col-md-6.mb-md-0:nth-child(2) {
        padding-left: 4vw !important;   
    }
}

@media (min-width:768px) and (max-width:991px){
    .footer_type9 .logo img{
        width: 100%;
    }
}

@media(max-width:576px){
    .footer_type9 .logo{
        min-height: 85px;
    }
    .footer_type9 .logo img{
        height: 85px;
    }
}