@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/*@font-face {*/
/*    font-family: 'span regular';*/
/*    src: url('../fonts/Span-Regular.otf') format('opentype');*/
/*}*/
/*@font-face {*/
/*    font-family: 'Butlermedium';*/
/*    src: url('../fonts/Butler/Butler-Medium.woff2') format('woff2'),*/
/*         url('../fonts/Butler/Butler-Medium.woff') format('woff');*/
/*    font-weight: medium;*/
/*}*/
/*@font-face {*/
/*    font-family: 'Butlerlight';*/
/*    src: url('../fonts/Butler/Butler-Light.woff2') format('woff2'),*/
/*         url('../fonts/Butler/Butler-Light.woff') format('woff');*/
/*    font-weight: light;*/
/*}*/
/*@font-face {*/
/*    font-family: 'Butlerbold';*/
/*    src: url('../fonts/Butler/Butler-Bold.woff2') format('woff2'),*/
/*         url('../fonts/Butler/Butler-Bold.woff') format('woff');*/
/*    font-weight: bold;*/
/*}*/
/*@font-face {*/
/*    font-family: 'Butlernormal';*/
/*    src: url('../fonts/Butler/Butler.woff2') format('woff2'),*/
/*         url('../fonts/Butler/Butler.woff') format('woff');*/
/*    font-weight: normal;*/
/*}*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
:root{
    --primary-font: "Open Sans", sans-serif;
    /*--secondary-font: "Raleway", serif;*/
    --primary-color: #B48B48;
    --secondary-color: #2f4c92;
}
html,
body{
    overflow-x: hidden;
    /* background: #F6F5ED; */
}

body::-webkit-scrollbar{
    width: 5px;
    background: var(--primary-color);
}
body::-webkit-scrollbar-thumb{
    background: var(--secondary-color);
}
a{text-decoration: none;color: #000; display: block;}
ul{padding: 0; margin: 0; list-style-type: none;}
p,h1,h2,h3,h4,h5,h6{margin: 0;}
.msgbox{
    position: fixed;
    bottom: 20px;
    z-index: 99;
    width: 70%;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
}
.msgbox .alertdiv{
    background: #fff;
    padding: 12px  10px;
    text-align: center;
    border-radius: 5px;
    width: fit-content;
    margin: auto;
}
.msgbox .alertdiv.success{
    background: #7acb7a;
}
.msgbox .alertdiv.failed{
    background: #ff8d8d;
}
.msgbox .alertdiv p{font-family: var(--secondary-font); color: #fff;margin: 0;font-size: 16px;letter-spacing: 0.5px;font-weight: 300;display: flex;align-items: center;gap: 5px;}
.msgbox .alertdiv.success p{}
.msgbox .alertdiv.success p i{color: green; font-size: 16px; line-height: 1;}
.msgbox .alertdiv.failed p{}
.msgbox .alertdiv.failed p i{color: red;font-size: 16px;line-height: 1;}
.msgbox .loading-wrapper{background: #bb8100;padding: 10px;display: flex;align-items: center;justify-content: center;width: 50%;margin: auto;border-radius: 10px;}
.msgbox .loading-wrapper .loading_span{
    width: 30px;
    height: 30px;
    border: 2px solid #bb8100;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 50px;
    animation: circle 1s linear infinite;
}
@keyframes circle{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
.msgbox .loading-wrapper p{
    color: #fff;
    letter-spacing: 1px;
    margin-left: 10px;
}
.pagebtn{
    background: var(--primary-color);
    padding: 10px 12px 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    transition: .3s linear;
    overflow: hidden;
}
.pagebtn:before{
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    z-index: -1;
    transition: .3s linear;
    background: #a4cb1f;
}
.pagebtn i{
    font-size: 20px;
    transform: rotate(-30deg);
    transform-origin: center center;
    transition: .2s linear;
    line-height: 1;
    position: relative;
    z-index: 1;
    color: #fff;
}

.pagebtn:hover{
    color: #fff;
}
.pagebtn i:after{
    content: "";
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    z-index: -1;
}
.pagebtn:hover:before{
    width: 100%;
}
.pagebtn:hover i:after{
    background: #fff;
}
.pagebtn:hover i{
    transform: rotate(0);
    color: var(--secondary-color);
}

.preloader{
    background: var(--secondary-color);
    position: fixed;
    width: 100%;
    height: 100vh;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.preloader span{
    width: 150px;
    height: 150px;
    border: 1px solid #fff;
    border-radius: 50%;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    animation: circle 1s linear infinite alternate;
}
@keyframes circle{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}


.slick-dots{
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: auto;
    display: flex;
    gap: 0;
    justify-content: end;
    align-items: end;
    border-radius: 50px;
}
.slick-dots li{
    width: 10px;
    height: 10px;
    background: #aaa;
    border-radius: 6px;
    display: block;
    transition: .2s linear;
}
.slick-dots li.slick-active{
    background: var(--primary-color);
}
.slick-dots li button{
    display: none;
}


/*=======================
    page breadcrumb
=======================*/
.page-breadcrumb{
    background: #2f4c92;
}
.page-breadcrumb:after{
    content: "";
}
.page-breadcrumb .breadcrumb-col{display: flex;align-items: center;justify-content: center;padding: 60px 0;flex-direction: column;}
.page-breadcrumb .breadcrumb-col h3{
    color: #fff;
    font-size: 34px;
    letter-spacing: 1px;
    font-weight: 100;
}
.page-breadcrumb .breadcrumb-col span{
    font-weight: 800;
    margin: 30px 0 0;
    color: #fff;
}
.page-breadcrumb .breadcrumb-col ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.page-breadcrumb .breadcrumb-col ul li{
    font-size: 16px;
}
.page-breadcrumb .breadcrumb-col ul li a{
    color: #000;
}
.page-breadcrumb .breadcrumb-col ul li:not(:first-child) a:before{
    content: "/";
    margin: 0 5px;
    color: var(--primary-color);
}

.page-breadcrumb .breadcrumb-col ul li:not(:last-child) a{
    color: var(--primary-color);
}

.maintitle{
    text-align: center;
    margin: 0 0 30px;
}
.maintitle span{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-family: var(--secondary-font);
    font-weight: 600;
    color: #333;
}
.maintitle h3{
    font-size: 50px;
    font-weight: 500;
}



/*=======================
        header
=======================*/
header{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 9;
    transition: position .5s linear;
    padding: 0 80px;
}
header.fix{
    box-shadow: 0 2px 5px 2px #00000014;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: #fff;
}
header.fix .topheader{
    display: none;
}
.topheader{
    background: var(--third-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}
.th-left{}
.th-left p{
    color: #fff;
    font-size: 14px;
    line-height: 1;
}
.th-left p i{
    color: var(--secondary-color);
    margin-right: 5px;
}
.th-right{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}
.th-right .icons{
    color: #fff;
    transition: .3s ease-in;
    font-size: 14px;
    line-height: 1;
}
.th-right .icons:hover{
    color: var(--secondary-color);
}

header .gridbox{
    padding: 0;
}
.headerleft{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}
.headerleft a.searchicon{
    font-size: 25px;
    transition: .3s linear;
}
.headerleft a.searchicon:hover{
    color: var(--primary-color);
}
.headerleft .headeremail{
    font-size: 16px;
}
.headerleft .headeremail i{
    margin: 0 8px 0 0;
    line-height: 1;
}
.headercenter{
    text-align: center;
    margin: 15px 0;
}
.headercenter .websitelogo{
    width: 70%;
    margin: auto;
}
.headerright{
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100%;
    gap: 20px;
}
.headerright .contactno{
    font-size: 16px;
}
.headerright .contactno i{
    margin-right: 10px;
}
.headerright .contactlink{
    padding: 6px 15px;
    transition: .3s linear;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 4px;
}
.headerright .contactlink:hover{
    background: var(--primary-color);
    color: #fff;
}
.header-menu{
    border-top: 1px solid #ddd;
}
.header-menu .menu{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.header-menu .menu .menulist{
    display: inline-block;
    position: relative;
    z-index: 1;
}
.header-menu .menu .menulist .menulink{
    font-size: 14px;
    transition: .3s linear;
    line-height: 1;
    padding: 30px 0;
    position: relative;
    z-index: 1;
    color: #222;
    text-transform: uppercase;
    font-weight: 500;
}
.header-menu .menu .menulist .menulink:after{
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 20%;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s linear;
}
.header-menu .menu .menulist .menulink:hover:after{
    transform: scale(1);
}
.header.fix header-menu .menu .menulist .menulink{color: #000;font-weight: 500;letter-spacing: 0.4px;}
.header.fix header-menu .menu .menulist{margin-left: 16px;}
.header-menu .menu .menulist .menulink:hover{color: #000;}
.header-menu .menu .menulist .menulink i{
    font-size: 0.9em;
    color: #000;);
}
.header.fix header-menu .menu .menulist .menulink i{color: #000;}
.header-menu .menu .menulist .menulink:hover i{color: var(--secondary-color);}

.header-menu .menu .menulist.enuirylist{}
.header-menu .menu .menulist.enuirylist .menulink.enquirylink{
    background: #fff;
    padding: 5px 10px 5px 20px;
    border-radius: 50px;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    transition: .3s linear;
    overflow: hidden;
}
.header-menu .menu .menulist.enuirylist .menulink.enquirylink:before{
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    z-index: -1;
    transition: .3s linear;
    background: #000;
}
.header-menu .menu .menulist.enuirylist .menulink.enquirylink i{
    width: 25px;
    height: 25px;
    display: inline-block;
    background: #000;
    border-radius: 50px;
    line-height: 25px;
    text-align: center;
    font-size: 20px;
    transform: rotate(-30deg);
    transition: .2s linear;
}
.header-menu .menu .menulist.enuirylist .menulink.enquirylink:hover{
    color: #fff;
}
.header-menu .menu .menulist.enuirylist .menulink.enquirylink:hover:before{
    width: 100%;
}
.header-menu .menu .menulist.enuirylist .menulink.enquirylink:hover i{
    transform: rotate(0);
    background: #fff;
    color: #000;
}

/*====== submenu start here =======*/
.header-menu .submenu{
    position: absolute;
    top: 100%;
    left: 0;
    background: #151617;
    width: 280px;
    margin: 40px 0 0;
    visibility: hidden;
    opacity: 0;
    transition: .2s linear;
    z-index: 99999;
    text-align: left;
    z-index: 9999;
    box-shadow: 0 2px 10px -4px rgb(0,0,0,0.2);
    padding: 10px 0;
}
.header-menu .menu .menulist:hover .submenu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;   
    margin: 0;   
}
.header-menu .submenu .sublist{
    display: block;
}
.header-menu .submenu .sublist .sublink{
    color: #999;
    padding: 8px 20px;
    border-radius: 3px;
    transition: .2s linear;
    letter-spacing: 0.8px;
    font-size: 14px;
    text-transform: uppercase;
}
.header-menu .submenu .sublist .sublink:hover{
    color: #fff;
    transform: translateX(10px);
}
/*====== submenu end here =======*/

/*====== mobile menu start here =======*/

.mobheader{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.mobheader .moblogo{width: 20%;}
.mobheader .moblogo img{width: 100%;}
.mobheader .mobtoggle{
    color: #000;
    width: 25px;
    height: 20px;
    position: relative;
    z-index: 1;
}
.mobheader .mobtoggle span{
    width: 25px;
    height: 1px;
    background: #000;
    display: inline-block;
    position: absolute;
    right: 0;
}
.mobheader .mobtoggle span:nth-child(1){}
.mobheader .mobtoggle span:nth-child(2){margin: 8px 0 0;}
.mobheader .mobtoggle span:nth-child(3){
    margin: 16px 0 0;
}
.mobsearch-box{
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    padding: 8px;
}
.mobsearch{
    width: 30px;
    height: 23px;
    position: relative;
    z-index: 1;
    display: none;
}
.mobsearch span{
    display: inline-block;
    position: absolute;
    z-index: 1;
}
.mobsearch span:nth-child(1){
    width: 18px;
    height: 18px;
    border-radius: 50px;
    border: 1px solid #000;
    top: 0;
    left: 0;
}
.mobsearch span:nth-child(2){
    width: 1px;
    height: 10px;
    background: #000;
    top: 14px;
    left: 60%;
    transform: rotate(-42deg);
}
.mobheader .mobheader-right{
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobmenu{
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    z-index: 9999;
    background: #fff;
    transition: .3s linear;
    overflow: auto;
}
.mobmenu.active{
    box-shadow: -2px 0 10px 0 #0000002e;
    right: 0;
}
.mobmenu .close-mobmenu{
    position: absolute;
    top: 10px;
    left: 10px;
    color: #000;
    font-size: 18px;
}

.mobmenuhead{text-align: center;padding: 15px 10px;border-bottom: 1px solid #ddd;}
.mobmenuhead h3{font-size: 16px;text-transform: uppercase;letter-spacing: 1px;font-weight: 700;}
.mobul{
    padding: 15px;
}
.mobul .mobli{
    padding: 0 0 10px;
}
.mobul .mobli .moba{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
    letter-spacing: .4px;
    font-family: var(--secondary-font);
    font-size: 15px;
    letter-spacing: .5px;
}
.mobsmneu{
    padding: 0 10px 0;
    display: none;
}
.mobsmneu .mobslist{
    padding: 5px 0 0;
}
.mobsmneu .mobslist .mobslink{
    font-size: 13px;
    font-family: var(--secondary-font);
    letter-spacing: .4px;
    color: #666;
}
/*====== mobile menu end here =======*/


.searchpanel{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s linear;
}
.searchpanel.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.close-searchpanel{
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 30px;
}
.close-searchpanel:before,
.close-searchpanel:after{}
.close-searchpanel:before{}
.close-searchpanel:after{}
.innersearchpanel{
    width: 100%;
    padding: 5% 10%;
    background: #151617;
    margin-top: -8%;
    transition: .3s linear;
}
.searchpanel.active .innersearchpanel{
    margin-top: 0;
}
.searchpanel-header{
    position: relative;
    z-index: 1;
}
.searchpanel-header img{width: 150px;margin: 0 0 10%;}
.innersearchpanel form{
}
.innersearchpanel form h3{
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 1px;
}
.innersearchpanel form .fields{
    position: relative;
    z-index: 1;
}
.innersearchpanel form .fields input{
    width: 100%;
    border: 0;
    border-bottom: 1px solid #b48b482e;
    padding: 15px 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 20px;
}
.innersearchpanel form .fields input::after{
    content: "alsdfj";
}
.innersearchpanel form .fields input::placeholder{
    color: #cdcdcd;
    letter-spacing: 0.5px;
    font-weight: 300;
    font-size: 25px;
}
.innersearchpanel form .fields button{
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px 0;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 23px;
}
.innersearchpanel form .fields .emptyinput{
    position: absolute;
    bottom: 14px;
    line-height: 1;
    right: 28px;
    display: none;
}


.sidebar-shadow{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    z-index: 998;
    transition: left .3s ease-in;
}
.sidebar-shadow.active{
    left: 0;
}
.sidebar-contact-info{
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 999;
    transition: right .3s ease-in;
    transition-delay: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-contact-info.active{
    right: 0;
}
.sidebar-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.sidebar-inner .sidelogo{}
.sidebar-inner .sidelogo img{width: 150px;}
.sidebar-inner h3{
    font-weight: 600;
    font-size: 1.4em;
    padding: 30px 0 15px;
    font-family: var(--secondary-font);
}
.sidebar-inner .number{font-weight: 500;letter-spacing: 1px;font-size: 20px;}
.sidebar-inner p{
    padding: 10px 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
}
.sidebar-inner .email{
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 20px;
}
.sidebar-inner .social{
    padding: 50px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.sidebar-inner .social a{
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    position: relative;
    color: #aaa;
}
.sidebar-inner .social a:hover{
    border-color: transparent;
    color: #000;
}
.sidebar-inner .social a:after{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 1px dashed #000;
    position: absolute;
    top: 0;
    left: 0;
    animation: socialcircle 3s linear infinite reverse;
    opacity: 0;
}
.sidebar-inner .social a:hover:after{
    opacity: 1;
}
@keyframes socialcircle{
    0%{transform: rotate(360deg);}
    100%{transform: rotate(0deg);}
}
.close-sidebar{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 20px;
}
.close-sidebar span{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    background: #000;
    height: 100%;
    border-radius: 50px;
    transition: .3s ease;
}
.close-sidebar span:nth-child(1){
    transform: translate(-50%, -50%) rotate(45deg);
}
.close-sidebar span:nth-child(2){
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close-sidebar:hover span:nth-child(1){
    transform: translate(-50%, -50%) rotate(90deg);
}
.close-sidebar:hover span:nth-child(2){
    transform: translate(-50%, -50%) rotate(-90deg);
}




/*====== slider start here =======*/
.slider-wrapper{
    padding: 0 80px;
}
.slider{
    position: relative;
    z-index: 1;
    margin: 0 !important;
}
.slider .slider-img{
    position: relative;
}
.slider .slider-img img{width: 100%;}
.slider .slider-img .overlaytext{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 60%;
}
.slider .slider-img .overlaytext p{
    font-size: 18px;
    color: #fff;
    font-weight: 200;
    margin: 0 0 10px;
    transform: translateX(50px);
    transition: 1s ease-out;
}
.slider .slider-img.slick-active .overlaytext p{transform: translateX(0);}
.slider .slider-img .overlaytext h3{
    font-size: 50px;
    color: #fff;
    line-height: 1.3;
    transform: translateX(50px);
    transition: 1s ease-out;
    font-weight: 100;
}
.slider .slider-img.slick-active .overlaytext h3{transform: translateX(0);}
.slider .slick-dots{
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: auto;
    display: flex;
    gap: 0;
    justify-content: end;
    align-items: end;
    border-radius: 50px;
}

.slider .overslide{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 60%;
}
.slider .overslide h2{
    color: #fff;
    font-size: 2.8em;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 10px;
}
.slider .overslide h2 span{
    color: var(--primary-color);
    font-weight: 800;
}
.slider .overslide p{
    color: #fff;
    font-size: 15px;
    width: 80%;
    margin: auto;
}
.slider .overslide a{margin: 30px;}
.slider .overslide a:hover{}
/*====== slider end here =======*/


/*====== what we offer start here =======*/
.whatoffer{
    padding: 50px 70px;
    background: rgb(255 0 0 / 3%);
}
.whatoffer .maintitle{}
.whatoffer .maintitle span{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}
.whatoffer .maintitle h3{
    margin: 10px auto 30px;
    font-weight: 500;
    width: 80%;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    color: #000;
}
.whatoffer .maintitle a{
    font-size: 14px;
    position: relative;
    z-index: 1;
    display: inline-block;
    color: #333;
    transition: .3s linear;
    color: #6666;
}
.whatoffer .maintitle a:hover{
    color: #111;
}
.whatoffer .maintitle a:after{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    z-index: 9;
    background: #9999993b;
    top: 100%;
    left: 0;
    transition: .4s linear;
    transform-origin: left;
    transform: scaleX(1);
}
.whatoffer .maintitle a:hover:after{
    transform: scaleX(0);
}

.offerlist{}
.offerlist .slick-dots{
    bottom: -45px;
}
.offerlistbox{
    position: relative;
    z-index: 1;
    margin: 0 10px;
    overflow: hidden;
}
.offerlistbox img{width: 100%;}
.offeroverlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    color: #fff;
    background: rgb(0 0 0 / 30%);
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.offeroverlay h3{
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 300;
    margin: 0 0 5px;
}
.offeroverlay span{
    /* margin: 30px 0 -50px; */
    transition: .3s linear;
    /* opacity: 0; */
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 200;
}
.offerlistbox:hover .offeroverlay span{
    margin: 10px 0 0;
    opacity: 1;
}


/*====== what we offer end here =======*/


/*====== our collection start here =======*/
.ourcollection{
    padding: 2% 80px;
    display: none;
}
.ourcollection .maintitle{}
.ourcollection .maintitle span{text-transform: uppercase;letter-spacing: 1px;font-size: 14px;font-family: var(--secondary-font);font-weight: 600;color: #333;}
.ourcollection .maintitle h3{margin: 20px auto 40px;font-weight: 500;width: 80%;font-size: 40px;}

.collectionlist{margin: 0 0 30px;}
.collectionlist figure{overflow: hidden;}
.collectionlist figure img{
    width: 100%;
    transition: .3s linear;
}
.collectionlist:hover figure img{
    transform: scale(1.08);
}

.collectionlist h3{
    font-size: 22px;
    text-align: center;
    letter-spacing: 1px;
}

.viewmore{
    padding: 40px 0 0;
    text-align: center;
}
.viewmore a{
    padding: 12px 30px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 18px;
    display: inline-block;
    letter-spacing: 1px;
    font-family: var(--secondary-font);
    font-weight: 500;
    transition: .3s linear;
}
.viewmore a:hover{background: var(--primary-color);color: #fff;}

/*====== our collection end here =======*/



/*====== choose us start here =======*/
.chooseus{
    padding: 3% 80px 4%;
    background: rgb(255 0 0 / 3%);
}
.chooseus .maintitle{}
.chooseus .maintitle span{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}
.chooseus .maintitle h3{
    margin: 10px auto 30px;
    width: 80%;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    color: #000;
}

.choosebox{
    padding: 0 0 20px;
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 1;
}
.choosebox:after{
    content: "";
    width: 0%;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width .3s linear;
    
}
.choosebox:hover:after{
    width: 100%;
}
.choosebox figure{
    margin: 0;
}
.choosebox figure img{width: 100%}
.choosebox .content{
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.choosebox .content h3{
    position: relative;
    left: -40px;
    transition: .3s linear;
    margin: 20px 0 0;
    font-weight: 100;
}
.choosebox:hover .content h3{
    left: 0;
}
.choosebox .content h3 span{
}

/*====== choose us end here =======*/



/*====== play video start here =======*/
.playvideo{
    position: relative;
    z-index: 1;
    background: url('../image/video.webp');
    padding: 50px;
}
.playvideo figure{}
.playvideo figure img{width: 100%;}
.playbtnbox{
}
.playbtnbox iframe{
    width: 100%;
    height: 300px;
}
.playbtn{
    width: 100px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    background: #ffffff14;
}
.playbtn span{}

/*====== play video end here =======*/


/*========== views start here ==========*/
.testimonials{
    padding: 3% 0;
    position: relative;
    z-index: 1;
}
.testimonials .maintitle{
    margin: 0;
}
.testimonials .maintitle span{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}
.testimonials .maintitle h3{
    margin: 10px auto 0px;
    width: 80%;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    color: #000;
}

.reviewright .reviewbox{
    overflow: hidden;
    height: 100%;
    padding: 30px;
    margin: 15px;
    transition: .3s ease-in;
    position: relative;
    z-index: 1;
    text-align: center;
}
.reviewright .reviewbox > i{
    font-size: 30px;
    color: var(--secondary-color);
}
.reviewright:hover .reviewbox > i{
    color: var(--primary-color);
}
.reviewright .reviewbox p{
    font-weight: 300;
    font-size: 18px;
    transition: .3s ease-in;
}
.reviewright .reviewbox .info{
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 20px auto 0;
    padding-left: 60px;
}
.reviewright .reviewbox .info img{
    width: 50px;
    border: 1px solid #eee;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border-radius: 10px;
}
.reviewright .reviewbox .info h3{transition: .3s ease-in;font-size: 18px;color: #000;font-weight: 400;}
.reviewright .reviewbox .info span{
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: .3s ease-in;
}
/*========== views end here ==========*/


/*====== about us start here =======*/

.widget-aboutus{
    padding: 50px 80px 40px;
    position: relative;
    z-index: 1;
    background: rgb(255 0 0 / 3%);
}
.aboutleft{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 0 100px;
}
.aboutleft span{text-transform: uppercase;letter-spacing: 1px;font-size: 16px;font-weight: 400;color: #333;}
.aboutleft h3{
    margin: 10px 0px;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    color: #000;
}
.aboutleft p{
    font-size: 18px;
    font-weight: 300;
    color: #333;
    text-align: justify;
    padding: 0 0 20px;
    font-family: var(--secondary-font);
}
.aboutleft p:nth-child(4){
    padding: 0;
}
.aboutleft .aboutus-btns{
    padding: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}
.aboutleft .aboutus-btns .viewall{
    border: 1px solid var(--primary-color);
    display: inline-block;
    padding: 12px 40px;
    transition: .3s ease-in;
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--primary-color);
    border-radius: 5px;
}
.aboutleft .aboutus-btns .viewall:hover{background: var(--primary-color);color: #fff;}
.aboutleft .aboutus-btns .call{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    transition: .2s linear;
    font-weight: 100;
}
.aboutleft .aboutus-btns .call i{
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: block;
    font-size: 18px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
}
.aboutleft .aboutus-btns .call:hover{
}
.aboutleft .aboutus-btns .call:hover i{}
.aboutright{text-align: center;position: relative;z-index: 1;height: 100%;}
.aboutright .experience{
    background: var(--primary-color);
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
    position: absolute;
    right: -100px;
    top: 30px;
    width: 60%;
}
.aboutright .experience p{
    color: #fff;
    font-size: 18px;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.aboutright .experience p span{
    font-size: 32px;
    font-weight: 500;
    color: var(--secondary-color);
}

.aboutright img{
    position: absolute;
}
.aboutright img.firstimg{
    width: 50%;
    bottom: 10%;
    left: 5%;
    z-index: 99;
}
.aboutright img.secondimg{
    width: 60%;
    right: 0;
}


.machinery{
    padding: 50px 0;
    background: #eee;
}
.machinery .maintitle{}
.machinery .maintitle h3{width: 80%;font-size: 30px;font-weight: 300;text-transform: uppercase;color: #000;margin: auto;}
.machinery .machbox{position: relative;z-index: 1;margin: 0 0 20px;background: #fff;box-shadow: 0 0 10px rgb(0 0 0 / 10%);}
.machinery .machbox img{width: 100%;}
.machinery .machbox h4{
    /* position: absolute; */
    bottom: 0;
    left: 0;
    color: #000;
    width: 100%;
    padding: 20px;
    opacity: 1;
    transition: .3s linear;
    font-weight: 300;
    font-size: 20px;
}
.machinery .machbox:hover h4{opacity: 1;}

.certificates{padding:50px 0;}
.certificates .maintitle{}
.certificates .maintitle h3{
    margin: 10px 0px;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    color: #000;
}
.certificates .certificateslider{}
.certificates .certificateslider figure{
    box-shadow: 2px 9px 16px -10px #0000006b;
    margin: 0px 10px 0;
    text-align: center;
    padding: 15px;
}
.certificates .certificateslider figure img{
    width: 80%;
}


.certificates-page{padding: 50px 0 30px;}
.certificates-page .gridbox{
    margin: 0 0 20px;
}

.certibox{
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgb(0 0 0 / 14%);
    height: 100%;
}
.certibox figure{
    width: 40%;
    text-align: center;
    margin: 0;
}
.certibox figure img{width: 65%;}
.certibox .content{
    width: 60%;
}
.certibox .content h3{
    text-transform: uppercase;
    font-weight: 500;
    font-size: 17px;
    margin: 0 0 10px;
    letter-spacing: 1px;
}
.certibox .content p{
    font-weight: 400;
    font-size: 15px;
}

/*========== treatment page start here ==========*/
.treatment{
    padding: 3% 0;
}
.treatment .treatcol{}
.treatment .treatcol li{
    margin: 0 0 30px;
}
.treatment .treatcol .imgcol{display: flex;}
.treatment .treatcol li .innertreatcol{width: 49%;}
.treatment .treatcol li figure{width: 49%;text-align: center;padding: 15px 0 0;}
.treatment .treatcol li figure img{width: 85%;}
.treatment .treatcol li h3{
    font-weight: 800;
    color: var(--primary-color);
    font-size: 42px;
    margin: 0 0 10px;
    line-height: 1;
}
.treatment .treatcol li h3 span{
    color: var(--secondary-color);
}
.treatment .treatcol li p{
    color: #666;
    font-size: 16px;
    text-align: justify;
    padding: 0 0 5px;
}
.treatment .treatcol li .innerul{}
.treatment .treatcol li .innerul li{
    margin: 0 0 10px;
    color: #666;
}
.treatment .treatcol li .innerul li span{}
/*========== treatment page end here ==========*/



/*=======================
        footer
=======================*/
footer{
    padding: 50px 0 30px;
    background: #151617;
}
.footerbox iframe{
    width: 100%;
    height: 290px;
}
.footerbox .footerlogo{margin: 0 0 10px;display: inline-block;}
.footerbox .footerlogo img{
    width: 130px;
}
.footerbox .cont-info{
    font-size: 16px;
    font-weight: 100;
    color: #fff;
    padding: 15px 0 0;
    display: block;
    letter-spacing: 1px;
}
.footerbox .cont-info a{
    color: #fff;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: 100;
}
.footerbox .cont-info a i{
    margin: 0 10px 0 0;
    color: #001d62;
    font-size: 1.3em;
}
.footerbox-title{
    color: #fff;
    font-size: 22px;
    margin: 0 0 10px;
    letter-spacing: 1px;
}
.socialmedia{
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin: 15px 0 0;
}
.socialmedia .sociallinks{
    width: 40px;
    height: 40px;
    border-radius: 50px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    transition: .3s linear;
    display: inline-block;
    font-size: 18px;
}
.socialmedia .sociallinks:hover{
    transform: scale(1.05);
}
.socialmedia .sociallinks.ri-facebook-line{
    background: #3B5998;
}
.socialmedia .sociallinks.ri-instagram-line{
    background: #f00073;
}
.socialmedia .sociallinks.ri-youtube-line{
    background: #FF0000;
}
.socialmedia .sociallinks.ri-linkedin-line{
    background: #55ACEE;
}
.socialmedia .sociallinks.ri-twitter-line{
    background: #55ACEE;
}
.socialmedia .sociallinks.ri-pinterest-line{
    background: #E60023;display: none;
}
.usefullinks{color: #fff;
    font-size: 22px;
    letter-spacing: 2px;
    margin: 0 0 15px;
    font-family: var(--secondary-font);
}
footer .footer-menu{
    /* text-align: center; */}footer .footer-menu li{
    padding: 0 0 5px;
}footer .footer-menu li a{
    font-size: 14px;
    position: relative;
    transition: .2s linear;
    letter-spacing: 1px;
    display: inline-block;
    font-weight: 400;
    color: #999;
    font-family: var(--secondary-font);
}
footer .footer-menu li a:is(:hover, .active){
    color: #fff;
}footer .footer-menu li a:before{
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 20px;
    transform: scaleX(0);
    transition: .2s linear;
}footer .footer-menu li a.active:before,
footer .footer-menu li a:hover:before{
    transform: scaleX(1);
}
.footer-map{
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 20px 0 0;
}
.footer-map iframe{
    width: 100%;
    height: 140px;
    border-radius: 20px;
}
.footer-mapiframe{width: 100%;height: 300px;display: block;border-radius: 50px;border-bottom-left-radius: 0;
}

.copyright{margin: 40px 0 0;border-top: 1px solid #333;padding: 30px 0 0;text-align: center;}
.copyright p{
    font-size: 15px;
    display: block;
    color: #fff;
    font-weight: 200;
    letter-spacing: 1px;
}
.copyright p a{
    color: var(--primary-color);
    font-weight: 400;
    display: inline-block;
}
.copyright p a:hover{
    color: #fff;
}


/*=========== contact page =======*/
.contactpage{
    padding: 40px 0 50px;
}
.contactpage .contmap{margin: 0 0 50px;}
.contactpage .contmap iframe{width: 100%; height: 400px;}
.continfo{}
.continfo span{text-transform: uppercase;letter-spacing: 1px;font-size: 16px;font-weight: 400;color: #333;}
.continfo h3{
    width: 80%;
    font-size: 43px;
    font-weight: 100;
    line-height: 1.3;
    margin: 15px 0 20px;
}
.rightbox{
    margin: 0 0 30px;
    display: flex;
    align-items: center;
}
.rightbox i{font-size: 18px;display: inline-block;color: var(--secondary-color);margin-right: 10px;}
.rightbox a{font-size: 16px;color: #000;font-weight: 300;}

.form{}
.form h3{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin: 0 0 20px;
}
.form .maintitle{
    text-align: start;
}
.form .maintitle .tag{}
.form .maintitle h2{}
.form .maintitle h2 span{}
.form form{}
.form form .fields{margin: 0 0 25px;position: relative;z-index: 1;}
.form form .fields label{font-size: 14px;font-weight: 500;letter-spacing: 1px;color: var(--primary-color);
}
.form form .fields :is(input, select){background: none;color: #000;font-weight: 400;border: none;border-bottom: 1px solid #e7e7e7;font-size: .9em;padding: 15px 15px 15px 40px;border-radius: 0;font-family: var(--secondary-font);}
.form form .fields input[type='number']::-webkit-outer-spin-button,
.form form .fields input[type='number']::-webkit-inner-spin-button{
    -webkit-appearance: none;-moz-appearance: none;appearance: none;
}
.form form .fields textarea{border: none;border-bottom: 1px solid #e7e7e7;background: none;height: 100px;font-size: .9em;font-weight: 400;border-radius: 0;color: #000;padding: 15px 15px 15px 40px;font-family: var(--secondary-font);}

.form form .fields textarea::placeholder,
.form form .fields input::placeholder{
    color: #bbb;
    font-weight: 400;
    font-size: 14px;
}
.form form .fields :is(input, select, textarea):focus{
    box-shadow: none;
    border-color: var(--secondary-color);
}
.form form .fields i{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #959595;
    font-size: 20px;
}
.form form .fields.textarea i{
    top: 30px;
}
.form form .fields-btn{}
.form form .fields-btn button{transition: .3s linear;background: var(--primary-color);padding: 10px 20px;border: none;color: #fff;font-size: 18px;letter-spacing: 1px;font-weight: 200;border-radius: 5px;}
.form form .fields-btn button:hover{
    background: #9f7736;
}

/*========== aboutus page ===========*/
.aboutpage{
    padding: 3% 80px;
    position: relative;
    z-index: 1;
}
.aboutpage .contenttagline{
    padding: 0 0 30px;
}
.aboutpage .contenttagline h3{
    margin: 10px auto 10px;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    margin: 0;
}
.aboutpageleft{
    padding: 0 30px;
    text-align: start;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100%;
}
.aboutpageleft span{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}
.aboutpageleft h3{margin: 10px auto 10px;font-size: 30px;font-weight: 300;text-transform: uppercase;color: #000;}
.aboutpageleft p{
    text-align: justify;
    font-weight: 300;
    color: #000;
    font-size: 16px;
    letter-spacing: .5px;
}
.aboutpageleft .aboutcontact{margin: 30px 0 0;background: var(--primary-color);display: inline-block;padding: 10px 50px;color: #fff;letter-spacing: 1px;transition: .3s linear;}
.aboutpageleft .aboutcontact:hover{
    background: #a98244;
}
.aboutpageright{display: flex; justify-content: space-between;}
.aboutpageright img{width: 48%;}
.aboutuscontainter{}

.aboutpage .fulldesc{
    padding: 40px 0 0;
}
.aboutpage .fulldesc .descbox{
    margin: 0 0 20px;
}
.aboutpage .fulldesc .descbox .manufact-box{
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 15px 0 0;
    gap: 25px;
}
.aboutpage .fulldesc .descbox .manufact-box figure{
    flex-basis: 50%;
    margin: 0;
}
.aboutpage .fulldesc .descbox .manufact-box figure img{width: 100%;}
.aboutpage .fulldesc .descbox .manufact-box .content{
    flex-basis: 50%;
}
.aboutpage .fulldesc .descbox .manufact-box .content p{}
.aboutpage .fulldesc .descbox h3{margin: 10px auto 10px;font-size: 30px;font-weight: 300;text-transform: uppercase;color: #000;text-align: center;}
.aboutpage .fulldesc .descbox .manufact-box .content h3{
    text-align: left;
}
.aboutpage .fulldesc .descbox .manufact-box .content h4{margin: 20px 0 0; font-size: 18px; font-weight: 600;}
.aboutpage .fulldesc .descbox p{color: #000;font-weight: 300;font-size: 16px;text-align: justify;letter-spacing: .3px;}
.aboutpage .fulldesc .descbox ul{
    padding: 10px 00;
}
.aboutpage .fulldesc .descbox ul li{
    color: #000;
    font-weight: 300;
    padding: 0 0 15px;
    font-size: 16px;
    text-align: justify;
    letter-spacing: 0.5px;
}
.aboutpage .fulldesc .descbox ul li:before{
    content: "\f3ce";
    font-family: "bootstrap-icons";
    color: var(--primary-color);
    margin-right: 5px;
    font-size: 13px;
    display: none;
}
.aboutpage .fulldesc .descbox ul li span{
    color: #000;
    font-weight: 400;
}
.aboutpage .fulldesc .descbox p.last{
}
.aboutpage .fulldesc .descbox:last-child{}
.aboutpage .fulldesc .descbox:last-child h3{
    line-height: 1;
}
.aboutpage .fulldesc .descbox:last-child ul{
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.aboutpage .fulldesc .descbox:last-child ul li{
    /* flex-basis: 30%; */
    background: #eee;);
    line-height: 1;
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
}

/*========== our products page start here ==========*/
.ourproducts{
    padding: 50px 80px 4%;
    position: relative;
}
.productlist{}
.productlist figure{overflow: hidden;}
.productlist figure img{
    width: 100%;
    transition: .3s linear;
}
.productlist:hover figure img{
    transform: scale(1.08);
}

.productlist h3{
    font-size: 21px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 200;
}

.ourproducts .product-img{display: flex;align-items: start;gap: 15px;flex-wrap: wrap;}
.ourproducts .product-img .popup_img{
    width: 48%;
}
.ourproducts .product-img .popup_img img{width: 100%;}
.ourproducts .product-info{
}
.ourproducts .product-info .tagname{
    background: var(--secondary-color);
    color: #fff;
    font-size: 12px;
    display: inline-block;
    padding: 1px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-style: italic;
    letter-spacing: 1px;
}
.ourproducts .product-info h3{
    font-size: 50px;
    margin: 0 0 20px;
    font-weight: 100;
}
.ourproducts .product-info .productcat{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 15px;
    font-family: var(--secondary-font);
    padding: 0 0 10px;
}
.ourproducts .product-info .productcat a{
    font-family: var(--secondary-font);
    font-size: 15px;
}
.ourproducts .product-info p{
    font-size: 16px;
    font-family: var(--secondary-font);
    color: #999;
    font-weight: 300;
    margin: 0 0 25px;
}

.ourproducts .product-info .productshare{
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 0 30px 0 0;
}
.ourproducts .product-info .productshare span{
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 2px 0 0 2px;
    background: var(--primary-color);
    color: #fff;
}
.ourproducts .product-info .productshare a{
    font-size: 20px;
    color: #666;
    transition: .3s linear;
}
.ourproducts .product-info .productshare a:hover{
    color: var(--primary-color);
}
.relatedproducts{
    padding: 50px 0 0;
}
.relatedproducts > h3{
    font-size: 36px;
    margin: 0 0 25px;
    font-weight: 100;
}
.relproduct{}
.relproduct figure{overflow: hidden;}
.relproduct figure img{
    width: 100%;
    transition: .3s linear;
}
.relproduct:hover figure img{
    transform: scale(1.08);
}

.relproduct h3{
    font-size: 20px;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 100;
}

.notfound{}
.notfound h3{

}
/*========== our products page end here ==========*/


/*========== gallery page start here ==========*/
.gallerypage{
    padding: 3% 0;
}
.gallerypage .gallerbox{
    margin: 0 0 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.gallerypage .gallerbox span{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #8db60061;
    padding: 5px 15px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 3px;
    backdrop-filter: blur(3px);
    color: var(--secondary-color);
}
.gallerypage .gallerbox img{width: 100%;}


/*========== gallery page end here ==========*/


/*========== blogs page start here ==========*/
.blogpage{padding: 3% 80px;}
.blogpage .blogbox{
    background: #fff;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4%;
}
.blogpage .blogbox figure{
    margin: 0;
    overflow: hidden;
    flex: 1 0 48%;
}
.blogpage .blogbox figure img{width: 100%;transition: .3s ease-in}
.blogpage .blogbox:hover figure img{transform: scale(1.1);}
.blogpage .blogbox .content{flex: 1 0 48%;}
.blogpage .blogbox .content .tagname{
    background: var(--secondary-color);
    color: #fff;
    font-size: 12px;
    display: inline-block;
    padding: 1px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
}
.blogpage .blogbox .content .date{
    margin: 20px 0 0;
    display: inline-block;
    color: #999;
    font-family: var(--secondary-font);
    font-size: 14px;
    position: relative;
    z-index: 1;
}
.blogpage .blogbox .content .date:before{
    content: "";
    width: 80px;
    height: 1px;
    background: #000;
    position: absolute;
    top: -10px;
    left: 0;
    z-index: 9;
}
.blogpage .blogbox .content h3{
    font-size: 24px;
    margin: 0 0 10px;
    font-weight: 100;
}
.blogpage .blogbox .content a{
    font-size: 14px;
    color: #666;
    letter-spacing: .5px;
}
.blogpage .blogbox .content a:hover{
    color: var(--primary-color);
}







/*============= single blogs start here ===========*/
.blog{
    position: relative;
}
.blog figure{
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    text-align: center;
}
.blog figure img{width: 30%;margin: auto;}
.blog .blogleft{
    position: relative;
    background: #f6f5ed;
    padding: 50px 0 50px;
    margin: 0 0 50px;
}
.blog .blogleft .content{
    position: relative;
    text-align: center;
    margin: 0 0 0;
    background: #f6f5ed;
    padding: 20px 0;
    z-index: 1;
}
.blog .blogleft .content .tagname{
    background: var(--secondary-color);
    color: #fff;
    font-size: 12px;
    display: inline-block;
    padding: 1px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-weight: 400;
    letter-spacing: 1px;
    font-style: italic;
}
.blog .blogleft .content .date{
    margin: 20px 0 0;
    display: inline-block;
    color: #999;
    font-family: var(--secondary-font);
    font-size: 14px;
    position: relative;
    z-index: 1;
}
.blog .blogleft .content h3{
    font-size: 45px;
    letter-spacing: 1px;
    margin: 0 0 10px;
    width: 80%;
    margin: auto;
    font-weight: 100;
}
.blog .blogleft .blogdesc{position: relative; z-index: 2; width: 80%; margin: auto;}
.blog .blogleft .blogdesc h2{
    font-size: 18px;
    margin: 30px 0 10px;
    font-weight: 400;
}
.blog .blogleft .blogdesc p{
    color: #555;
    line-height: 1.8;
    font-weight: 200;
}
.blog .blogleft .blogdesc ul{}
.blog .blogleft .blogdesc ul li{
    margin: 0 0 5px;
    font-weight: 200;
}
/*============= single blogs start here ===========*/ 
  