@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {
    font-family: 'Brandon';
    font-style: normal;
    font-weight: 400;
    src: url('<?php echo get_template_directory_uri(); ?>/assets/fonts/HVDFonts-BrandonText-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Brandon';
    font-style: normal;
    font-weight: bold;
    src: url('<?php echo get_template_directory_uri(); ?>/assets/fonts/HVDFonts-BrandonText-Bold.otf') format('opentype');

}

* {
    padding: 0;
    margin: 0;
}

html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
    font-family: 'Brandon';
}

.mb-30 {
    margin-bottom: 30px!important;
}

.mb-60 {
    margin-bottom: 60px!important;
}

.mb-80 {
    margin-bottom: 80px!important;
}


/*=======Top header========*/

.top-header {
    display: flex;
    padding: 0.5em 2em;
    justify-content: space-between;
    color: white;
    background-color: cadetblue;
}

.top-header div {
    display: flex;
    place-items: center;
}

.top-header div p,
.top-header p {
    margin: 0;
}

.top-header div i {
    margin-right: 10px;
}

.top-header div a {
    display: flex;
    color: white;
    text-decoration: none;
    place-items: center;
}

.top-header .header-slogan {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}


/*================MID header==========================*/

.mid-header {
    padding: 0em 0.5em;
    text-align: center;
    position: relative;
    height: 100px;
    place-items: center;
}

.mid-header .header-logo {
    height: 100%;
    margin: auto;
}

.mid-header .header-logo img {
    height: 100%;
}

.mid-header .mid-right {
    position: absolute;
    right: 35px;
    bottom: 30px;
    display: flex;
    place-items: end;
}

.mid-header .search-bar {
    margin-right: 1em;
}

.mid-header .search-bar input {
    border: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0), inset 0 0 0 100px rgba(255, 255, 255, 1);
}

.mid-header .search-bar input[type=text] {
    min-width: 200px;
    box-sizing: border-box;
    border-bottom: 2px solid rgb(74 74 74);
    border-radius: 2px;
    font-size: 16px;
    padding: 12px 25px;
}

.mid-header .search-bar form {
    position: relative;
}

.mid-header .search-bar form i {
    position: absolute;
    z-index: 1;
    top: 13px;
    left: 3px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
}

.mid-header .search-bar form input[type=text]:focus {
    outline: none;
}

.mid-header .mid-right .header-acc {
    height: 30px;
    margin-right: 1em;
    transition: 0.5s;
}

.mid-header .mid-right .header-acc i {
    font-size: 30px;
    cursor: pointer;
}

.mid-header .mid-right .header-acc:hover .myacc-menu {
    display: block;
}

.mid-header .mid-right .header-acc .myacc-menu {
    display: none;
    list-style-type: none;
    text-align: left;
    margin: 0;
    padding: 0;
    min-width: 200px;
    position: absolute;
    right: 0;
    margin-top: -2px;
    border: 1px solid #cccccc;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 999;
}

.mid-header .mid-right .header-acc .myacc-menu li {
    border-bottom: 1px solid #cccccc;
    width: 100%;
}

.mid-header .mid-right .header-acc .myacc-menu li a {
    text-decoration: none;
    color: #333;
    padding: 8px 15px;
    height: auto;
    display: block;
}

.mid-header .mid-right .header-cart i {
    cursor: pointer;
    font-size: 24px;
    margin-bottom: -1px;
    color: #222;
}

.mid-header .mid-right .header-acc .myacc-menu li:hover {
    background-color: cadetblue;
    color: white;
}

.mid-header .mid-right .header-acc .myacc-menu li:hover a {
    color: white;
}


/*====================== Navigation Bar=======================*/

.nav-bar {
    margin-bottom: 1em;
}

.nav-bar .main-nav li .main-nav-link {
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-bar .main-nav li .main-nav-link::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    width: 0;
    bottom: -5px;
    background: #000;
    height: 3px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.nav-bar .main-nav li .main-nav-link:hover::after,
.nav-bar .main-nav li .main-nav-link:focus::after,
.nav-bar .main-nav li .main-nav-link:active::after {
    left: 0;
    right: auto;
    width: 100%;
}

.nav-bar .main-nav {
    display: flex;
    list-style-type: none;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    padding-left: 0px;
    margin: 0px 2em;
}

.nav-bar .main-nav .sale-nav a {
    text-decoration: none;
    text-transform: uppercase;
    color: cadetblue;
    font-weight: 600;
    padding: 3px 25px;
    color: #222;
    border-bottom: 4px solid cadetblue;
    transition: 0.5s;
}

.nav-bar .main-nav .sale-nav:hover a {
    background-color: cadetblue;
    color: white;
}

.nav-bar .main-nav li {
    position: relative;
}

.nav-bar .main-nav .sub-menu {
    padding: 1em;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    position: absolute;
    z-index: 2;
    top: 15px;
    display: none;
}

.nav-bar .main-nav .sub-menu ul {
    list-style-type: none;
    padding-left: 0px;
}

.nav-bar .main-nav .sub-menu ul li {
    color: cadetblue;
    font-weight: 600;
    margin: 10px 0.5em;
    box-sizing: border-box;
}

.nav-bar .main-nav .sub-menu ul li a {
    color: #222;
    text-transform: capitalize;
    text-decoration: none;
    transition: 0.7s ease-in-out;
    cursor: pointer;
}

.nav-bar .main-nav .sub-menu ul li a:hover {
    text-decoration: underline;
}

.vl {
    width: 1px;
    background-color: rgb(138, 138, 138);
    margin: 10px 10px;
}


/*=============== Sale countdown ============*/

.sale-counter {
    text-align: center;
    background: rgba( 95, 158, 160, 1);
    backdrop-filter: blur( 0px);
    -webkit-backdrop-filter: blur( 0px);
    border: 1px solid rgba( 255, 255, 255, 0.18);
}

.sale-counter a {
    color: white;
    text-decoration: none;
    transition: 0.7s;
    letter-spacing: 2px;
}

.sale-counter a p {
    padding: 5px;
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0px;
}

.sale-counter a:hover {
    text-decoration: underline;
    letter-spacing: 3px;
}


/*===========index sales banner======*/

.hero {
    max-width: 1400px;
    margin: auto;
}

.sales-banner-width {
    padding: 15px;
}

.sales-banner img {
    width: 100%;
    height: auto;
}


/*=========== Index shop by size==================*/

.index-shopsize .index-shopsize-title {
    text-align: center;
    margin-top: 2em;
    margin-bottom: 1em;
}

.index-shopsize .index-shopsize-title a {
    font-weight: bold;
    color: #222222;
}

.index-shopsize-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.index-shopsize-list .index-shopsize-card {
    width: 25%;
    cursor: pointer;
    text-align: center;
    padding: 15px;
    color: cadetblue;
    border-radius: 10px;
    transition: 0.5s;
   
}

.index-shopsize-list .index-shopsize-card .index-shopsize-card-name {
    text-transform: uppercase;
    color: cadetblue;
}

.index-shopsize-list .index-shopsize-card:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media(max-width:800px){
    .index-shopsize-list .index-shopsize-card{
        width: 50%;
    }
}




/*-----Index two grid banner--------*/
.two-grid-banner a{
    margin-bottom: 1em;
}

/*------------Index banner-----------------*/

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.indexSwiper .swiper-slide a{
    padding: 0.2em 1em;
    border-radius: 5px;
    
}
.indexSwiper .swiper-wrapper .swiper-slide a:hover{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: #222;
}

.indexSwiper .swiper-slider a:hover .slider-product-name{
    text-decoration: underline;
    color: #222;
}


 .indexSwiper .swiper-slide .slider-product-img {
    height: 250px;
    padding: 4px 2px;
    width: 100%;
}

.indexSwiper .swiper-slide img {
    height: 100%;
    width: 100%;
    margin: auto;
}

.indexSwiper .swiper-slide a {
    height: 100%;
    width: 100%;
}

.swiper.indexSwiper {
    margin-bottom: 2em;
    padding: 10px 35px;
    overflow: hidden;
}

.indexSwiper .swiper-slide .slider-product-name {
    color: #222;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.indexSwiper .swiper-slide .slider-product-price {
    color: cadetblue;
    font-weight: 600;
    font-size: 16px;
}

.indexSwiper .swiper-button-next::after,.indexSwiper .swiper-button-prev::after{
    font-size: 30px;
    font-weight: 600;
    color: #222;
}

.indexSwiper .swiper-button-next:hover::after,.indexSwiper .swiper-button-prev:hover:after{
    color: #ccc;
}

@media(max-width:470px){
    .indexSwiper .swiper-slide a{
        margin: 0 1em;
    }
}
/*------carpet grid list-----------------*/
.carpet-grid-list a img{
    width: 100%;
    height: auto;
}

.carpet-grid-list a {
    text-align: center;
    color: cadetblue;
}
.carpet-grid-list a img{
    margin-bottom: 20px;
}
.carpet-grid-list a .carpet-grid-name{
    text-transform: uppercase;
    color: #222;
    font-size: 20px;
    font-weight: 600;
}

.index-banner-link a img{
    width: 100%;
}


/*============ Ideas and Advice==========*/
 .ideas-title{
    width: 100%;
    text-align: center;
}
.index-ideas .index-ideas-maintitle{
    width: 100%;
    text-align: center;
}
.index-ideas-list .row a img{
    width: 100%;
    height: auto;
}

.index-ideas-list .row a{
    text-align: center;
    color: cadetblue;
}

.ideas-title{
    font-size: 20px;
    min-height: 30px;
    margin: 10px 0px;
    font-family: 'Lora', serif;
    text-transform: uppercase;
    color: #222222;
}

.index-ideas-list .row a .index-ideas-subtitle{
    font-size: 15px;
    letter-spacing: 1px;
    font-family: 'Lora', serif;
    text-transform: uppercase;
    color: #222222;
    font-weight: 600;
}
.index-ideas-list .row a .index-ideas-subtitle i{
    margin-left: 5px;
}

/*=============== index leader in rugs----------------*/
.index-leader .index-leader-title{
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}


.index-leader .index-leader-grid{
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 20px;
}

.index-leader .index-leader-grid .index-leader-col h4{
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    min-height: 40px;
}

.index-leader .index-leader-grid .index-leader-col p{
    font-family: 'Lora', serif;
    margin: 0 20px;
    text-align: justify;
}


@media(max-width:860px){
.index-leader .index-leader-grid{
    display: grid;
    grid-template-columns: repeat(1,1fr)!important;
}

.index-leader .index-leader-grid .index-leader-col h4{
    min-height: auto;
}

}

@media(max-width:460px){
    .index-leader .index-leader-title{
        font-size: 30px;
    }
    .index-leader .index-leader-grid .index-leader-col h4{
        font-size: 20px;
    }
}


.galaicha-hr{
    width: 80%;
    border-bottom: 1px solid #ccc;
    margin: auto;
}


/*-------------index-about---------------*/
.index-about{
    font-family: 'Lora', serif;
    font-size: 15px;
    padding: 20px;
}

.index-about span{
    color: cadetblue;
}

@media(max-width:500px){
    .index-about{
        padding: 15px;
    }
}
/*-----------Footer Logo------------*/
footer{
    padding: 0px 50px;
    background-color: #E2E5E8;
    margin-bottom: 2em;
}
footer .footer-logo{
    text-align: center; 
    margin-bottom: 10px;
}
footer .footer-logo img{
    height: 120px;
    width: auto;
}
footer .footer-content{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

footer .footer-content .footer-links{
    width: 75%;
    display: flex;
    flex-direction: row;
    text-align: left;
    flex-wrap: wrap;
}

footer .footer-content .footer-signup-container{
    width: 25%;
}


footer .footer-content .footer-links .quick-links{
    list-style-type: none;
    padding: 10px;
    display: inline-block;
    width: 25%;
}

footer .footer-content .footer-links .quick-links li{
    margin-bottom: 10px;
    line-height: 1;
}

footer .footer-content .footer-links .quick-links li a{
    text-transform: uppercase;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

footer .footer-signup-container .footer-signup-title{
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    font-size: 20px;
    margin-bottom: 0px;
}

footer .footer-signup-container .footer-signup-subtitle{
    text-transform: capitalize;
    color: #000;
    text-align: center;
}


footer .footer-signup-container form .index-signup-btn{
    display: flex;
}

footer .footer-signup-container form #index-signup-input{
    padding: 5px 2px;
    width: 100%;
    margin-bottom: 15px;
    outline: none;
}

footer .footer-signup-container form .index-signup-btn{
    margin: auto;
    padding: 3px 15px;
    border-radius: 0px;
    color: white;
    background-color: cadetblue;
    border: 1px solid cadetblue;
}

footer .footer-signup-container form .index-signup-btn:hover{
    background-color: rgb(64, 130, 132);
    border-color: rgb(64, 130, 132);
}
footer .footer-subsidiary {
    margin: 0 auto;
}
footer .footer-subsidiary p{
    font-weight: 600;
    font-size: 17px;
    text-align: center;
}

footer .footer-subsidiary img{
    height: 100px;
}

@media(max-width:991px){
    footer .footer-content .footer-links{
        width: 100%;
    }
    footer .footer-content .footer-signup-container{
        width: 100%;
        text-align: center;
    }
    footer .footer-signup-container form #index-signup-input{
        width: 60%;
        text-align: center;
        justify-content: center;
    }
}

@media(max-width:550px){
    footer .footer-content .footer-links .quick-links{
        width: 50%;
    }
    footer .footer-subsidiary{
        width: 50%;
        text-align: left;
    }
    footer .footer-subsidiary p {
        text-align: left;
    }
    footer{
        padding: 25px 15px;
    }
    footer .footer-content .footer-links .quick-links li a{
        font-size: 14px;
    }
}


@media(max-width:991px){
    .sale-counter a p {
        font-size: 15px;
    }
}






/*==========Company Profile==========*/


.page-title{
    margin-top: 25px;
}
.page-title h1{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 27px;
}


.content-nav{
    margin: 24px auto;
    background-color: #E2E5E8;
    max-width: 1400px;
    padding: 10px;
    text-align: center;
}

.content-nav a{
    color: #222;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.content-nav .seperator{
    margin:  0 5px;
    color: #222;
    font-size: 16px;
    font-weight: 900;
}
.company-profile p{
    font-family: 'lora';
    color: #000;
}


.company-profile .company-profile-row{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.company-profile .company-profile-row .company-profile-col{
    width: 50%;
    margin-bottom: 40px;
    padding: 10px 50px 0;
}

.company-profile .company-profile-row .company-profile-col h4{
    text-align: center;
    margin: 0 0 15px;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    text-transform: uppercase;
}

.company-profile .company-profile-row .company-profile-col p{
    font-family: lora;
}

@media(max-width:991px){


    .company-profile .company-profile-row .company-profile-col{
        padding: 10px 20px 0;
    }
    
}

@media(max-width:700px){
    .company-profile .company-profile-row .company-profile-col{
        width: 100%;
    }
    .content-nav a{
        font-size: 14px;
    }
    .company-profile .company-profile-row .company-profile-col p{
        font-size: 14px;
    }
    .company-profile p{
        font-size: 14px;
    }
    .page-title h1{
        font-size: 20px;
    }
    .page-title {
        margin-top: 15px;
    }
    .content-nav{
        margin: 15px auto;
        padding: 5px;
    }
}



/*==========Our History============*/
.history .history-img{
    padding: 1em;
    text-align: center;
}
.history .history-img img{
    
    width: 100%;
    height: auto;
}

.history .history-row{
    margin-top: 1em;
}



@media(max-width:768px){
    .history .history-img img{
        height: 300px;
        width: auto;
    }

}

@media(max-width:500px){
    .history p{
        font-size: 14px;
    }

}


/*===========Contact Us======================*/
.contact-page{
    margin-bottom: 5em;
}

.contact-page .contact-content{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    font-weight: 600;
}

.contact-page .contact-content .contact-left{
    padding-right: 3em;
}


.contact-page .contact-content .contact-right{
    padding-left: 3em;
    border-left: 1px solid rgba(167, 116, 116, 0.1);
}

.contact-page .contact-content .contact-right ul li{
    font-size: 24px;
}

.contact-page .contact-content .contact-right ul{
    list-style-type: none;
}

.contact-page .contact-content .contact-right .contact-mail i{

    margin-right: 15px;
}
.contact-page .contact-content .contact-right .contact-mail a{
    color: cadetblue;
}

.contact-page .contact-content .contact-right .contact-phone::before{
    content: '\f879';
    font-family: 'Font Awesome 5 Pro';
    margin-right: 15px;
}

@media(max-width:991px){
    .contact-page .contact-content{
        grid-template-columns: repeat(1,1fr);
    }
    .contact-page .contact-content .contact-left{
        padding-right: 0em;
    }
    .contact-page .contact-content .contact-right{
        border-left: none;
        border-top: 1px solid rgba(167, 116, 116, 0.1);
        padding-top: 2em;
        padding-left: 0em
        ;
    }
}

@media(max-width:500px){
    .contact-content p{
        font-size: 14px;
    }
    .contact-page .contact-content .contact-right ul li{
        font-size: 20px;
    }
}

/*==========Login page==========*/
.login-page .login-content h4{
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1em;
}
.login-page .login-content{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 2em;
    margin-bottom: 3em;
}
.login-page .login-content .login-login{
  padding-right: 30px;
  margin-bottom: 2em;
}
.login-page .login-content .login-register{
    padding-left: 50px;
    border-left: 1px solid rgba(0,0,0,.1);
}

.login-page .login-content .login-register ul{
    padding-left: 50px;
}
.login-page .login-content .login-login .login-form a{
    color: cadetblue;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}
.login-page .login-content .login-login
.login-page .login-content h4{
    font-size: 20px;
    font-weight: 600;
}

.login-page .login-content .login-login .login-form input{
    border-radius: 0px;
    border: 1px solid #000000;
}

.login-page .login-content .login-login .login-form .form-group{
    position: relative;
}
.login-page .login-content .login-login .login-form .form-group .input-caption{
    position: absolute;
    top: 7px;
    left: 12px;
    font-size: 15px!important;
    font-weight: 600;
    text-transform: uppercase;
    pointer-events: none;
    transition: 0.3s;
}

.login-page .login-content .login-login .login-form .form-control{
    display: block;
    color: #000000;
    height: 30px;
    padding: 3px 0.75rem;
}

.login-page .login-content .login-login .login-form .form-control:focus{
    box-shadow: none;
}

.login-page .login-content .login-login .login-form .login-remember{
    margin-left: 10px;
    margin-bottom: 1em;
}

.login-page .login-content .login-login .login-form .login-remember input{
    width: 20px;
    height: 20px;
    margin-left: -23px;
    margin-top: 2px;
}

.login-page .login-content .login-login .login-form .login-remember label{
    font-weight: 600;
}

.login-page .login-content .login-login .login-form .login-btn{
    display: block;
    color: #000000;
    background: white;
    border: 1px solid;
    border-radius: 0px;
    padding: 4px 17px;
    font-size: 15px;
    margin-bottom: 1em;
    transition: 0.5s;
}
.login-page .login-content .login-login .login-form .login-btn:hover{
    font-weight: 600;
    transform: scale(1.1);
}
.login-page .login-content .login-register .login-register-btn{
    color: #000000;
    background: white;
    border: 1px solid;
    border-radius: 0px;
    padding: 5px 17px;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.5s;
}
.login-page .login-content .login-register .login-register-btn:hover{
    font-weight: 600;
    padding: 6px 20px;
    font-size: 16px;
}

@media(max-width:991px){
    .login-page .login-content{
        grid-gap:0em;
    }
    .login-page .login-content .login-register{
        padding-left: 30px;
    }
}

@media(max-width:800px){
    .login-page .login-content{
        grid-template-columns: repeat(1,1fr);
    }
    .login-page .login-content .login-register{
        padding-left: 0px;
        padding-top: 30px;
        border-left: none;
        border-top: 1px solid rgba(0,0,0,.1);
    }
}


@media(max-width:600px){
    .login-page .login-content h4{
        font-size: 16px;
    }
    .login-page .login-content p{
        font-size: 14px;
    }
    .login-page .login-content .login-register ul{
        padding-left: 30px;
    }
    .login-page .login-content .login-register ul li{
        font-size: 14px;
    }
    .login-page .login-content .login-login .login-form .login-btn {
        font-size: 14px;
    }
    .login-page .login-content .login-login .login-form .login-remember label{
        font-size: 15px;
    }
    .login-page .login-content .login-register .login-register-btn{
        font-size: 14px;
    }
}



/*==========Register page===========*/

.register-page .register-content{
    padding: 1em 2em;
    max-width: 900px;
    margin: 0 auto;
}
.register-page .register-content h4{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    
}
.register-page .register-content .register-form{
   
    padding: 0.5em 2em;
}

.register-page .register-content .register-form .form-control{
    box-shadow: none;
    border-color: #000;
    border-radius: 0px;
    color: #000000;
    height: 30px;
    padding: 3px 0.75rem;
}

.register-page .register-content .register-form .form-control:focus{
    border-color: #000;
}
.register-page .register-content .register-form .register-btn{
    display: block;
    color: rgb(0, 0, 0);
    font-size: 15px;
    margin-bottom: 1em;
    background: white;
    border-width: 1px;
    border-style: solid;
    border-color: initial;
    border-image: initial;
    border-radius: 0px;
    padding: 5px 17px;
    transition: 0.5s;
}

.register-page .register-content .register-form .register-btn:hover{
    transform: scale(1.1);
    font-weight: 600;
}

@media (max-width: 600px){
    .register-page .register-content h4 {
        font-size: 16px;
    }
    .register-page .register-content .register-form .register-btn {
        font-size: 14px;
    }
    .register-page .register-content .register-form{
        padding: 0px;
    }
    .register-page .register-content{
        padding: 1em;
    }

}

@media (max-width: 600px){
    .register-page .register-content{
        padding: 0em 0.2em;
    }
}


/*==============Ideas and Advice Page=============*/
.ideas-page-list a{
    text-align: center;
    color: cadetblue;
    overflow: hidden;
}
.ideas-page-list a:hover {
    text-decoration: none;
}

.ideas-page-list a img{
    height: auto;
    width: 100%;
    display: block;
    display: relative
    ;
}
.idea-page-desc{
    background-color: #E2E5E8;
        padding: 10px;
}
.ideas p{
    font-family: 'lora';
    margin-bottom: 0px;
    color: #222;
}

@media (max-width: 700px){
    .ideas p {
        font-size: 14px;
    }
}

/* .ideas-page-list a{
    position: relative;
} */

.ideas-page-list a .idea-overlay{
    position: absolute;
    bottom: 0;
  background-color: rgb(0,0,0,0.7);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .6s ease;
    
}
.ideas-page-list .idea-overlay .idea-overlay-text{
    color: white;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.ideas-page-list .idea-overlay .idea-overlay-text p{
    color: white;
}
.ideas-page-list a:hover .idea-overlay {
    height: 100%;
    width: 100%;
    
  }



  .ideas-page-list .idea-list-img{
      position: relative;
      width: 100%;
      height: auto;
  }

  .ideas-page-list .idea-overlay .idea-overlay-text p span{
      display: block;
      margin-top: 5px;
      font-weight: 700;
      font-size: 17px;
  }



  /*========Idea single================*/
.breadcrumb ul{
    display: flex
    ;
    list-style-type: none;
    margin: 0px;
    white-space: nowrap; 
    width: 100%; 
    overflow: hidden;
    text-overflow: ellipsis; 
}

.breadcrumb ul li{
    margin: 0 5px;
    font-weight: 600; 
}

.breadcrumb ul li a{
    color: cadetblue;
}
.idea-single .row .idea-single-left{
    padding: 2em;
}
.idea-single .row .idea-single-left img{
    width: 100%;
    height: auto;
}

.idea-single .row .idea-single-right{
    padding: 1em 1em;
    display: flex;
    place-items: center;
    height: 100%;
}

.idea-single .row .idea-single-right ul{
    list-style-type: decimal;
}
.idea-single .row .idea-single-right ul li{
    line-height: 28px;
    margin-bottom: 10px;
}

.idea-single .row .idea-single-right ul li::marker{
    font-size: 20px;
    font-weight: 800;
    font-family: 'Brandon';
}
.idea-single {
    font-family: 'lora';
}


.idea-single .idea-single-process div h4{
    font-weight: 800;
    text-transform: uppercase;
}

.idea-single .idea-single-process div ul{
    padding: 0em 1.5em;
}

@media(max-width:1200px){
    .idea-single .row .idea-single-left{
        padding: 1em;
    }
}

@media(max-width:991px){
    .idea-single .row .idea-single-right {
        padding: 1em 2em;
    }
}

@media(max-width:600px){
    .idea-single .idea-single-overview{
        font-size: 14px;
    }
    .idea-single .row .idea-single-right ul li{
        font-size: 14px;
    }
    .idea-single .row .idea-single-right ul li::marker {
        font-size: 16px;
    }
    .idea-single .idea-single-process div h4{
        font-size: 20px;
    }
    .idea-single .idea-single-process div{
        font-size: 14px;
    }
    .idea-single .row .idea-single-right ul li {
        line-height: 23px;
    }
    .breadcrumb{
        font-size: 13px;
        padding: 0.5em;
        
    }
}

@media(max-width:400px){
    .idea-single .row .idea-single-left {
        padding: 0em;
    }
    .idea-single .row .idea-single-right {
        padding: 1em 1em;
    }
    .idea-single .idea-single-process div ul {
        padding: 0em 1em;
    }
    .breadcrumb{
        font-size: 12px;
        padding: 0.2em;
        
    }
}

/*================Additional css after 19th December=============*/

.contact-left{
    margin-bottom: 1em;
}
.contact-left form .contact-submit{
    display: flex;
    width: 50%;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}
.contact-right .contact-logo{
    text-align: center;
}

.contact-right .contact-logo{
    margin-bottom: 0.5em;
}
.contact-right .contact-logo img{
    height: 150px;
    width: auto;
}


.contact-right .contact-map iframe{
    height: 450px;
}

@media(max-width:500px){
    .contact-right .contact-map iframe{
        height: 350px;
    }
}

@media(max-width:400px){
    .contact-right .contact-map iframe{
        height: 300px;
    }
}

.contact-page .contact-content .contact-right ul li{
    font-size: 18px;
    margin-bottom: 10px;
}
.contact-page .contact-content .contact-right ul{
    border-bottom: 1px solid rgba(167, 116, 116, 0.1);
}

.menu-item:hover .sub-menu {
    display: flex;
}

.nav-bar .main-nav .sub-menu{
    background-color: white;
}

.nav-bar .nav-content{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.nav-bar .main-nav{
    width: 100%;
}

.first-banner video{
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.header-logo a img{
    height: 80px;
}

.nav-bar{
    margin: 0px;
    padding: 15px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.nav-bar .main-nav .sub-menu{
    top:20px;
}

.nav-bar .main-nav .sub-menu ul{
    padding: 0px;
}

.nav-bar .main-nav .sub-menu ul li{
    margin: 0px;
    margin-bottom: 5px;
}

p{
    font-family: 'lora';
}

.blog-single a img{
    width: 100%;
    height: 250px;

}


.blog-list-bread{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 370px;
    background: rgb(62,133,135);
    background: linear-gradient(40deg, rgba(62,133,135,1) 0%, rgba(85,169,172,1) 48%, rgba(85,173,176,1) 56%, rgba(101,213,217,1) 100%);
    margin-bottom: 1em;
}

.blog-list-bread .blog-list-bread-content{
    max-width: 500px;
    color: white;
}
.blog-single{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 1em;
}
.blog-single .blog-single-text h1{
    color: #222;
    font-family: 'Lora';
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    text-align: center;
}
.blog-single .blog-single-text h6{
    font-size: 15px;
    text-align: center;
    color: #505050;
}

.blog-single .blog-single-text{
    padding: 15px;
}

.blogs-listing{
    padding: 1.5em 0em;
}

.blog-single .blog-single-text a:hover{
    text-decoration: none;
    color: #505050;
}

.blog-list-bread .blog-list-bread-content H6{
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.5;
}
.blog-list-bread .blog-list-bread-content h1{
    margin-bottom: 1em;
}

.nav-bar{
    border-bottom: 2px solid cadetblue;
}

/*sample changes*/

.nav-bar .nav-content{
    flex-direction: column;
    gap: 10px;
}

.nav-bar .nav-content .header-logo{
    display: flex;
    width: 100%;
    gap:20px;
}

.nav-bar .main-nav{
    justify-content: space-between;
}

.nav-bar .nav-content .header-logo h1{
    border-bottom: 2px solid red;
    padding-right: 17px;
    padding-left: 10px;
}

.nav-bar .nav-content .header-logo p{
    padding-left: 10px;
}




.first-banner video{
    height: 100vh;
}
.first-banner {
    position: relative;
}

.first-banner:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(0,0,0,0.5);
}

.rug-making-process img{
    width: 100%;
}

.rug-making-process .steps:nth-child(odd){
    flex-direction: row-reverse;
}

.rug-making-process .steps{
    margin-bottom: 3em;
}

.rug-making{
    margin-top: 40px;
}

.rug-making-process .steps h4{
    font-weight: 600;
}

.nav-bar .main-nav li .main-nav-link::after{
    background: cadetblue;
}


.history-img img{
    width: 100%;
}

.first-banner{
    margin-bottom: 3em;
}

.steps .step-content-flex{
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.index-history-sec{
    padding: 30px;
    background-color: aliceblue;
}

footer .footer-logo{
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

footer .footer-content .footer-links{
    width: 100%;
}

footer{
    padding: 60px 00px;
}

.nav-bar .main-nav .sub-menu{
    min-width: 250px;
    background-color: #fffffff2;
}

.blog-list-bread{
    text-align: center;
}

.blog-main-img img{
    width: 100%;
}

.related-blogs-list li a{
    display: flex;
    gap: 10px;
}
.related-blogs-list li a img{
    width: 100px;
    height: 80px;
    object-fit: cover;
}

.blog-single-content ul{
    margin-left: 20px;
}

.related-blogs-list ul{
    list-style: none;
}
.related-blogs-list li a h4{
    color: #242424;
    font-size: 20px;
}
.related-blogs-list{
    list-style-type: none;
}

.related-blogs-list li{
    margin-bottom: 0.5em;
}
.blog-main-img{
    margin-bottom: 1em;
}

footer .footer-content .footer-links .quick-links li img{
    width: 80px;
    height: 70px;
    object-fit: cover;
}

.contact-page .contact-content .contact-right .contact-post::before{
    content: '\f813';
    font-family: 'Font Awesome 5 Pro';
    margin-right: 15px;
}

.footer-content .contact-phone::before{
    content: '\f879';
    font-family: 'Font Awesome 5 Pro';
    margin-right: 15px;
}

.footer-content .contact-post::before{
    content: '\f813';
    font-family: 'Font Awesome 5 Pro';
    margin-right: 15px;
}

footer .footer-content .footer-links .quick-links li i{
    margin-right: 15px;
}

.gallery-listing .gallery-single img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
   
    transition: 0.5s all ease-in-out;
}
.gallery-listing .gallery-single {
    margin-bottom: 1em; overflow: hidden;
}
.gallery-listing .gallery-single img:hover{
    transform: scale(1.1);

}
.nav-bar.sticky{
    background-color: white;
}
.nav-bar.sticky .nav-content .header-logo h1{
    color: #212529;
}
.nav-bar {
    position: relative;
    z-index: 100;
  }
  
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    animation: slideDown 0.5s;
  }
  
  @keyframes slideDown {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0);
    }
  }
  


@media(max-width:991px){
    .gallery-listing .gallery-single img{
        height: 230px;
    }
}
@media(max-width:450px){
    .gallery-listing .gallery-single img{
        height: 160px;
    }
}

.sec-title{
    margin-bottom: 1em;
    position: relative;
    padding-bottom: 5px;
}

.sec-title:before{
    position: absolute;
    content: '';
    height: 2px;
    width: 100px;
    background-color: cadetblue;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}


.burger-icon {
    display: none; 
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
}
.mobile-menu-overlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 998; /* Below the mobile menu but above the rest of the content */
}
.close-button {
    position: absolute;
    top: 40px;
    left: 40px;
    cursor: pointer;
    color: white;
    font-size: 29px;
    line-height: 1;
    background: #00000042;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    display: none;
    transition: 0.5s all ease;
}
footer .footer-content .footer-links .quick-links h3{
    color: #22777a;
    margin-bottom: 13px;
}   
footer .footer-content .footer-links .quick-links li a{
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}
footer .footer-content .footer-links .quick-links li{
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}
footer .footer-content .footer-links .quick-links li a{
    font-size:15px ;
}
    
footer .footer-logo{
    font-size: 17px;
    padding-right: 10px;
}
footer{
    padding-bottom:15px;
}

footer .copyright{

    margin-top: 2em;
    border-top: 1px solid #cacaca;
    text-align: center;
    padding-top: 15px;
    font-size: 16px;
    font-weight: 200;
}



footer .copyright span{
    color: rgb(133,38,50);
    font-weight: 600;
    font-family: 'Lora';
}
.page-title h1{
    font-family: 'lora';
}


.breadcrumb{
    font-family: 'Lora';
}

.blog-single a img{
    object-fit: cover;
}
.blog-single .blog-single-text h1{
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.blog-single .blog-single-text h6{
    font-family: 'Poppins', sans-serif;
}
.related-title{
    position: relative;
}

.related-title::before{
    position: absolute;
    left: 0;
    content: '';
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: cadetblue;
}

.related-blogs-list li a h4 span{
    display: block;
    color: #6a6a6a;
    font-family: 'Poppins',sans-serif;
    font-weight: 400;
    font-size: 13px;
}
.related-blogs-list li a h4{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.close-button:hover{
    background: #000000b5;
}
/*Mobile menu*/
@media screen and (max-width: 991px) {
    .close-button{
        display: flex;
    }
    .burger-icon
     {
        display: block; 
    }

    .nav-bar .main-nav {
       display: flex; /* Hide the main navigation on smaller screens */
        position: fixed;
        top: 0;
        right:  -110%; 
        background-color: #a8b2bc;
        max-width: 350px; 
        width: 100%;
        height: 100%; 
        z-index: 999;
        transition: left 0.3s ease; 
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 120px;
        transition: right 0.3s ease;
    }

    .main-nav.open {
        right: 0;
    }
    .nav-bar .nav-content{
        flex-direction: row;
    }
    .header-logo a img{
        height: 70px;
    }
    .nav-bar .nav-content .header-logo h1{
        font-size: 24px;
    }
    .nav-bar .nav-content .header-logo p{
        font-size: 14px;
        margin: 0px;
    }
    .nav-bar .main-nav{
        top: 0px;
        margin: 0px;
    }
    .nav-bar .main-nav li .main-nav-link{
        font-size: 18px;
        width: 100%;
        display: block;
        padding: 10px 35px;
        color: white;
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        border-bottom: 1px solid #cdcdcd;
    }
}

/*Mobile menu*/
@media(max-width:450px){
    .header-logo a img{
        height: 60px;
    }
    .nav-bar .nav-content .header-logo h1{
      display: none;
    }
    .nav-bar .nav-content .header-logo p{
        display: none;
    }
}

/*Media Responsive*/

@media(max-width:1200px){
    .blog-single a img{
        height: 200px;
    }
    .blog-list-bread{
        height: 290px;
    }
    .blog-single .blog-single-text h1{
        font-size: 20px;
    }
}

@media(max-width:991px){
    footer .footer-logo{
        width: 100%;
    }
    footer .footer-logo img{
        height: 90px;
    }
    footer .footer-content .footer-links .quick-links{
        width:33%;
    }
    footer .footer-content .footer-links .quick-links h3{
        font-size: 24px;
    }
    footer .footer-content .footer-links .quick-links li{
        font-size: 15px;
    }
    .related-title{
        margin-top: 2em;
    }
}
@media(max-width:768px){
    footer .footer-content .footer-links .quick-links{
        width: 100%;
        padding: 10px 0px;
    }
    .content p{
        font-size: 14px;
    }
    footer .copyright{
        font-size: 15px;
    }
    .history .history-img img{
        height: 400px;
    }
    .blog-single a img{
        height: 170px;
    }
}


@media(max-width:576px){
    .history .history-img img{
        width: 100%;
        height: auto;
    }
    .breadcrumb{
        padding: 1em 0.5em;
    }
    .blog-single{
        box-shadow: none;
    }
    .blog-single .blog-single-text h1{
        text-align: left;
    }
    .blog-single .blog-single-text h6{
        text-align: left;
    }
    .blog-single .blog-single-text{
        padding: 15px 0px;
    }
    .blog-single a img{
        height: auto;
        max-height: 300px;
    }
    .blog-list-bread .blog-list-bread-content h1{
        font-size: 28px;
    }
    .blog-list-bread{
        min-height: 280px;
        height: auto;
    }
    .blog-list-bread .blog-list-bread-content H6{
        font-size: 14px;
    }
}

.index-history-sec{
    background-color:white;
}

.index-rug-making{
    background-color:aliceblue;
    padding:30px;
    margin-bottom:2em;
}

.first-banner iframe{
    display:none;
}
@media(max-width:768px)
{
    .index-rug-making{
        padding:15px;
    }
    .rug-making-process img{
        margin-bottom:1em;
    }
    .first-banner video{
        height:auto;
    }
    
    .first-banner iframe{
        display:block;
    }
    .first-banner video{
        display:none;
    }
    .first-banner:before{
        display:none;
    }
    .index-history-sec{
        padding:0px;
    }
}


.contact-right .contact-map iframe{
    width:100%;
}


.contact-post p{
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}
footer .footer-content .footer-links .quick-links li{
    display:flex;
}

.contact-phone p{
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

footer .footer-content .footer-links .quick-links li.contact-mail a{
    width:100%;
}

footer .footer-content .footer-links .quick-links li.contact-mail a p{
    color:#22777a;
    white-space:wrap;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    word-wrap:break-word;
}















