@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-ExtraBold.woff2') format('woff2'),
         url('../fonts/outfit/Outfit-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-Bold.woff2') format('woff2'),
         url('../fonts/outfit/Outfit-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
} 

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-Medium.woff2') format('woff2'),
         url('../fonts/outfit/Outfit-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-SemiBold.woff2') format('woff2'),
         url('../fonts/outfit/Outfit-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-Regular.woff2') format('woff2'),
         url('../fonts/outfit/Outfit-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-Light.woff2') format('woff2'),
         url('../fonts/outfit/Outfit-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Shadows-into-light';
    src: url('../fonts/shadowsIntoLight/ShadowsIntoLight.woff2') format('woff2'),
         url('../fonts/shadowsIntoLight/ShadowsIntoLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'bodoni-mt-regular';
    src: url('../fonts/bodoniMT/BodoniMT.woff2') format('woff2'),
         url('../fonts/bodoniMT/BodoniMT.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*
{
    margin: 0;
    padding: 0;
}
html
{
  scroll-behavior: smooth;
}
:root{
    /*color*/
	--black: #000000;
	--white: #ffffff;
    --darkGrey: #4B4444;

    --mediumPink: #F4D9DC;
    --semiPink: #EE8A96;
    --pink: #C54A82;
    --darkPink: #60002A;

    --lightpink: #FFF3F5;
    --lightpink2: #F5E2EA;
    --lightpink3: #FBF2F6;

    --mediumGreen: #e8e2d8;
    --semiGreen: #79C48B;
    --Green: #3e776e;
    --darkGreen: #336b6f;

    --lightgreen: #f3fff8;
    --lightgreen2: #e8f3ec;
    --lightgreen3: #f1fcf5;

    /*transition*/
	--transition: 0.5s all ease-in-out;

    /*fonts*/
	--Outfit: "Outfit";
	--BodoniMT: "bodoni-mt-regular";
	--ShadowsIntoLight: "Shadows-into-light";

    /*font sizes*/
    --size-14: clamp(10px, 1vw, 14px);
    --size-16: clamp(14px, 1vw, 16px);
    --size-18: clamp(15px, 1vw, 18px);
    --size-20: clamp(16px, 1vw, 20px);
    --size-22: clamp(18px, 1vw, 22px);
    --size-24: clamp(18px, 1.6vw, 24px);
    --size-26: clamp(20px, 1.6vw, 26px);
    --size-28: clamp(22px, 1.8vw, 28px);
    --size-32: clamp(24px, 2vw, 32px);
    --size-40: clamp(28px, 3vw, 40px);
    --size-46: clamp(30px, 3.5vw, 46px);
    --size-56: clamp(32px, 4.2vw, 56px);
    --size-65: clamp(35px, 5vw, 65px);
    --size-76: clamp(40px, 5.5vw, 76px);
    --size-115: clamp(50px, 5.5vw, 115px);
    --size-140: clamp(60px, 5.5vw, 140px);
    
}
body{
    font-size: var(--size-22);
    line-height: 28px;
    font-weight: normal;
    color: var(--black);
    font-family: var(--Outfit);
}

::selection{
    color: var(--white);
    background-color: var(--Green);
}
h1, h2, h3, h4, h5, h6, p{
    margin: 0;
    padding: 0;
}

ul, ol, li{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
img{
    max-width: 100%;
    height: auto;
}
a, a:hover, a:focus{
    text-decoration: none;
    border: 0;
    outline: 0;
}
input, select, button, textarea{
    border: 0;
    outline: 0;
    background: transparent;
}

.container{
    max-width: 1600px;
}
.darkgreyBtn{
    padding: 1rem 2rem;
    font-weight: 500;
    color: var(--white);
    font-size: var(--size-24);
    display: inline-block;
    transition: var(--transition);
    background-color: var(--darkGrey);
    &:hover{
        background-color: var(--Green);
    }
}
.whiteBtn{
    padding: 1rem 2rem;
    font-weight: 500;
    color: var(--Green);
    font-size: var(--size-24);
    display: inline-block;
    transition: var(--transition);
    background-color: var(--white);
    &:hover{
        color: var(--white);
        background-color: var(--darkGrey);
    }
}
/* header css  */
header .navbar-brand{
    max-width: 120px;
}
header .navbar-nav{
    gap: 2.5rem;
    height: 80px;
    /* width: 500px; */
    padding-inline: 5rem;
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: var(--Green);
    border-radius: 0 0 100px 100px ;
   
}
/* header .navbar-nav::after */
.navbar-expand-lg .navbar-collapse{
    justify-content: center;
}
header .navbar_container{
    padding-inline: 4rem;
    border-radius: 0 0 100px 100px ;
    background-color: var(--lightgreen3);
}
/* header .navbar-nav::before, */
header .navbar_wrapper{
    padding-inline: 2.5rem;
    padding-bottom: 0.8rem;
    border-radius: 0 0 100px 100px ;
    background-color: var(--lightgreen2);
}
header .navbar-nav .nav-item a{
    padding-inline:0!important;
    padding-block:0;
    line-height: normal;
    position: relative;
    color: var(--white);
    font-weight: 400;
    text-transform: uppercase;
    font-size: var(--size-22);
    letter-spacing: 0.8px;
}
header .navbar-nav .nav-item a:hover, header .navbar-nav .nav-item.current_page_item a
{
    color: var(--white);
    font-weight: 600;
}

header .navbar-nav .nav-item a::before
{
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    bottom: -10px;
    transition: var(--transition);
    background-color: var(--white);
}
header .navbar-nav .nav-item.current_page_item a::before,
header .navbar-nav .nav-item a:hover::before{
    width: 100%;
}
.header_rightSide_wrapper ul{
    gap: 15px;
    display: flex;
    align-items: center;
}
.header_rightSide_wrapper ul li{
    position: relative;
}
.header_rightSide_wrapper ul li a{
    width: 45px;
    height: 45px;
    padding: 12px;
    display: inline-flex;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--lightgreen2);
    &:hover{
        transform: scale(1.1);
        background-color: var(--Green);
    }
    img{
        transition: var(--transition);
    }
    &:hover img{
        filter: brightness(2);
    }
}
.header_rightSide_wrapper ul li span{
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    border: 1px solid var(--white);
    background-color: var(--semiGreen);
}
.slideMenu_header{
    display: none;
}
.humburgerIcon{
    width: 30px;
}
.closeIcon{
    display: none;
    width: 30px;
}

/* hero section  */
.heroSection{
    padding: 8rem 0 15rem;
    position: relative;
    background-color: var(--mediumGreen);
}
.heroSection::before{
    content: '';
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 200px;
    position: absolute;
    transform: translateX(-50%);
    background-image: url('../images/section-pattern-1.svg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.heroSection .row{
    align-items: center;
}
.banner_content_wrapper{
    padding-right: 100px;
}
.banner_content_wrapper h2{
    line-height: 80px;
    color: var(--darkGrey);
    font-size: var(--size-56);
    font-family: var(--ShadowsIntoLight);
}
.banner_content_wrapper h1{
    color: var(--darkGrey);
    line-height: 80px;
    font-size: var(--size-140);
    font-family: var(--BodoniMT);
    span{
        color: var(--Green);
    }
}
.inrBnrSection h1 span{
    display: block;
}
.banner_content_wrapper p{
    font-size: var(--size-24);
    margin-block: 1.8rem;
}
.banner_content_wrapper .darkgrey_btn{
    margin-top: 1.5rem;
}
.banner_image_wrapper img{
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
}
.section_pattern{
    margin-top: 2.5rem;
}

/* Gallery Section */
.gallerySection{
    padding: 3rem 0 5rem;
}

.section_heading h3{
    color: var(--darkGrey);
    font-size: var(--size-46);
    font-family: var(--ShadowsIntoLight);
}
.main_heading{
    max-width: 800px;
    margin-inline: auto;
    margin-bottom: 1.5rem;
}
.section_heading h2{
    color: var(--darkGrey);
    line-height: 65px;
    font-size: var(--size-76);
    font-family: var(--BodoniMT);
    span{
        color: var(--Green);
    }
}
.section_heading p{
    font-size: var(--size-24);
}
.galleryImage{
    width: 100%;
    height: 580px;
    overflow: hidden;
    display: block;
    position: relative;
    cursor:pointer;
    transition: var(--transition);
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }
    &:hover img{
        transform: scale(1.2) rotate(5deg);
    }
}
.galleryImage:hover::before{
    content: '';
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    z-index: 10;
    position: absolute;
    background-color: var(--darkGreen);
}
/* about me Section */
.aboutMeSec
{
    padding: 8rem 0;
    background-color: var(--darkGreen);
}
.columnImage{
    text-align: center;
    padding: 3rem;
    background-image: url("../images/green-big-flower.svg"), url("../images/green-small-flower.svg");
    background-position: right top, left bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: 350px, 150px;
}
.columnImage img{
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
}
.columnContent h3{
    color: var(--white);
    font-size: var(--size-46);
    font-family: var(--ShadowsIntoLight);
}
.columnContent h2{
    color: var(--white);
    line-height: 65px;
    font-size: var(--size-76);
    font-family: var(--BodoniMT);
}
.columnContent p{
    color: var(--white);
    font-size: var(--size-24);
    margin-top: 2.5rem;
}
.columnContent .whiteBtn{
    margin-top: 4rem;
}

/* footer  */
footer{
    text-align: center;
    background-color: transparent;
    background-image: url('../images/ftrbg.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-top: 10rem;
    margin-top: -6rem;
}
.footerLogo{
    width: 250px;
    display: inline-block;
}
.socialMedia{
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: 1.5rem;
}
.socialMedia li a{
    width: 40px;
    height: 40px;
    display: inline-flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: var(--darkGrey);
    transition: var(--transition);
    &:hover{
        background-color: var(--Green);
    }
}

.footerMenus{
    column-gap: 30px;
    row-gap: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding-block: 1rem;
    border-top: 1px solid #4b444448;
}
.footerMenus li a{
    color: var(--darkGrey);
    font-weight: 600;
    font-size: var(--size-22);
    text-transform: uppercase;
    transition: var(--transition);
    &:hover{
        color: var(--Green);
    }
}
.footeTop hr{
    width: 70%;
    margin: 0 auto;
}
.footeBottom{
    color: var(--white);
    padding-block: 10px;
    margin-top: 1.5rem;
    background-color: var(--darkGreen);
}

/* About Page start  css*/
.inrBnrSection{
    padding: 8rem 0 15rem;
    position: relative;
    background-color: var(--mediumGreen);
}
.inrBnrSection::before{
    content: '';
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 200px;
    position: absolute;
    transform: translateX(-50%);
    background-image: url('../images/section-pattern-1.svg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.inrBnrSection .row{
    align-items: center;
}
.breadCrumbs{
    column-gap: 1.2rem;
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    li{
        color: var(--black);
        font-weight: 600;
        position: relative;
    }
    li a{
        color: var(--black);
        font-weight: 300;
        &:hover{
            font-weight: 600;
            color: var(--Green);
        }
    }
}

/* intro Section */
.introSection{
    padding: 3rem 0 8rem;
}

.introSection .canvas_row{
    align-items: center;
}
.introImgs{
    text-align: center;
    /*padding: 0 0 4rem 0;
    background-image: url(../images/green-flower-img-3.svg);
    background-position: left 110%;
    background-repeat: no-repeat;
    background-size: 350px;*/
}
.introImgs img,
.canvasImgs img
{
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.1));
}
.sectionHeading{
    gap: 1rem;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.introContent h2{
    color: var(--darkGreen);
    font-size: var(--size-56);
    font-family: var(--ShadowsIntoLight);
}
.line{
    height: 3px;
    width: 80px;
    display: inline-block;
    background-color: var(--darkGreen);
}
.introContent p
{
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-size: var(--size-24);
}
/* painting page start css */
.paintingSec{
    padding-bottom: 10rem;
}

/* painting details page start css */
.paintingDetailsSec{
    padding: 5rem 0 10rem;
}
.paintingDetailsSec .row{
    align-items: center;
}
.paintingDetails_Content h2
{
    color: var(--black);
    font-size: var(--size-115) ;
    font-family: var(--BodoniMT);
    line-height: 1;
    padding: 0 0 15px 0;
}
.paintingDetails_Content p{
    color: var(--black);
    margin-bottom: 15px;
    font-size: var(--size-28);
}
.paintingDetails_Content a.darkgreyBtn
{
    margin-top: 10px;
}


/* blog section */
.blog-inner{
  background-color: #E7D8CF!important;
}
.blog-section{
    padding: 4rem 0 10rem;
}

.blog-item{
  margin-bottom: 2rem;
}
.blog-box-inner{
    height: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 0.7rem;
    background: var(--white);
    transition: var(--transition);
    box-shadow: 0rem 0rem 0.5rem rgba(0, 0, 0, 0.2);
}
.blog-box-images{
    width: 100%;
    height: 300px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }
}
.blog-box-inner:hover .blog-box-images img{
    transform: scale(1.1);
}
.blog-box-content{
  padding: 0 1.5rem 1.5rem;
}
.blog-metabox{
    column-gap: 20px;
    display: flex;
    align-items: center;
    margin: 1rem 0;
    flex-wrap:wrap;
}

.blog-meta {
  gap: 10px;
  display: flex;
  align-items: center;
  img{
    width: 20px;
  }
  span{
    font-size: var(--size-16);
  }
}

.blog-box-content h4{
    color: var(--black);
    margin-bottom: 1rem;
    font-size: var(--size-24);
}
.blog-box-content p{
  color: var(--gray);
  font-size: var(--size-22);
  line-height: 25px;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  max-height: 6.6rem;
}
.blog-box-inner .darkgreyBtn {
    padding: 0.5rem 1rem;
    margin-top: 1.2rem;
    font-size: var(--size-20);
}

.pagination-blog {
    text-align: center;
}
.custompager .page-numbers {
    height: 40px;
    width: 40px;
    color: var(--white);
    align-items: center;
    line-height: 33px;
    display: inline-flex;
    justify-content: center;
    background-color: var(--Green);
    &:hover{
        background-color: var(--darkGreen);
    }
}
.custompager .page-numbers.current {
    background-color: var(--darkGreen);
}

.single-page-main{
   padding: 4rem 0 10rem;
}
.thumbnail-image{
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.plainContent h2{
    font-weight: 600;
    margin-bottom: 20px;
    font-size: var(--size-56);
}
.plainContent h3{
    font-weight: 600;
    margin-bottom: 20px;
    font-size: var(--size-46);
}
.plainContent h4{
    font-weight: 600;
    margin-bottom: 10px;
    font-size: var(--size-40);
}
.plainContent h5{
    font-weight: 600;
    margin-bottom: 10px;
    font-size: var(--size-32);
}
.plainContent h6{
    font-weight: 600;
    margin-bottom: 10px;
    font-size: var(--size-26);
}
.plainContent p{
    margin-bottom: 10px;
}
.plainContent a{
    color: var(--Green);
}
.plainContent :where(ul, ol){
    padding-left: 20px;
    list-style-type: revert;
}
.plainContent li{
    font-size: var(--size-18);
    font-weight: 400;
    line-height: normal;
    font-family: var(--inter);
    margin-bottom: 10px;
    list-style-type: revert;
}

.banner-area-txt h1{
  font-weight: 600;
  font-size: var(--size-140);
}

.latest-blog-lists {
  padding: 1rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0rem 0rem 0.5rem rgba(0, 0, 0, 0.2);
}
.latest-blog-lists h3{
    font-weight: 600;
    font-size: var(--size-28);
}
.latest-list-item {
  gap: 20px;
  display: flex;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ccc;
}
.latest-list-item:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.latest-list-item .blog-box-images {
  width: 30%;
  height: 80px;
  overflow: hidden;
  border-radius: 8px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.latest-list-item .blog-box-content{
  width: 70%;
  padding: 0;
}
.latest-list-item .blog-box-content h4{
    font-weight: 600;
    font-size: var(--size-18);
}
.latest-list-item .blog-box-content h4 a{
    color: var(--black);
}
.latest-list-item .blog-box-content h4 a:hover{
  color: var(--Green);
}
.latest-list-item .blog-meta {
  img{
    width: 18px;
  }
  span{
    font-size: var(--size-14);
  }
}

/* contact Us page  */
.contactDetailsSec{
    padding: 4rem 0 10rem;
}
.formWrapper
{
    padding: 2.5rem;
    box-shadow: 0 0 30px 15px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
}
.contactDetailsSec .formHeading h2
{
    font-weight: bold;
    padding: 0 0 20px 0;
}
.formWrapper
{
    max-width: 900px;
    margin: 0 auto;
}
.form-control
{
    height: 58px;
    line-height: 58px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-weight: normal;
    border: 1px solid var(--darkGrey);
    outline: 0;
    font-size: var(--size-16);
    font-family: var(--Outfit);
    padding: 0 15px;
    background: #f6f6f6;
}
.form-textarea{
    height: 200px;
}
.form-control:focus,
.form-control:focus-within
{
    outline: 0;
    box-shadow: none;
    border: 1px solid var(--darkGreen);
}
.formSubmitBtn .darkgreyBtn
{
    font-size: var(--size-18);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.paintingDetails_img
{
    position: relative;
}
.producttag
{
    position: absolute;
    left: 15px;
    top: 15px;
    background: var(--Green);
    width: 60px;
    height: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: var(--size-16);
    font-weight: 600;
    font-family: var(--Outfit);
    border-radius: 50%;
    text-transform: capitalize;
}
.paintingTabs {
    gap: 16px;
    border: 0;
    justify-content: center;
}

.paintingTabs .nav-item .nav-link
{
    border-radius: 0;
    color: var(--Green);
    border-color: var(--Green);
}
.paintingTabs .nav-item .nav-link:hover,
.paintingTabs .nav-item .nav-link.active
{
    color: var(--white);
    background-color: var(--Green);
}
.single-product ul.breadCrumbs
{
    display:none;
}