@charset "utf-8";
/* CSS Document */

/*   font-family: "Oswald", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/* font-family: "Poppins", sans-serif; */
@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-family: "IBM Plex Sans Thai", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai:wght@100;200;300;400;500;600;700&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/*html, body {
	width: 100%;
	overflow-x: hidden;
} */



:root {
  --bg-green: #00A651;
  --bg-maroon:#CC373D;
}


* {
    text-decoration: none !important;
    outline: none !important;
}

body {
    font-family: "IBM Plex Sans Thai", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    background: #fff;
    letter-spacing: 0.4px;
    overflow-x: hidden;
    color: #000;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    border: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

ol {
    list-style: decimal inside;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 20px;
    color: #0d141e;
    line-height: 30px;
    font-family: "Poppins", sans-serif;
}

p {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 16px;
    font-family: "IBM Plex Sans Thai", sans-serif;
}

b,
strong {
    font-weight: 600;
}

blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

a,
a:hover,
a:visited {
    color: #21a108;
}

/* ::selection 
{
    background: #21a108;
    color: #fff;
}
::-moz-selection 
{
    background: #21a108;
    color: #fff;
} */
a:focus,
p:focus,
div:focus,
input:focus,
textarea:focus,
submit:focus,
button:focus {
    outline: none;
}


/***************
page scrool
**************/
.scrollup {
    right: 15px;
    position: fixed;
    border-radius: 200px;
    bottom: -80px;
    width: 45px;
    height: 45px;
    z-index: 9999;
    background: rgb(95, 154, 42);
    background: linear-gradient(90deg, rgba(95, 154, 42, 1) 0%, rgba(120, 186, 60, 1) 100%);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    text-align: center;
    color: #FFF;
    padding: 10px;
}

.scrollup.active {
    bottom: 92px;
    right: 15px;
}

/* .scrollup:hover {
    background-color: rgba(37, 37, 37, 0.7);
} */

/***************
page scrool
***************/

/********HAMBURGER ICON***********/
.hamburger {
    padding: 0px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/** Spring **/
.hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent;
}

.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/** Spring **/

/********HAMBURGER ICON***********/

.topmines {
    top: -100px;
}

.nav-active {
    position: fixed;
    top: 0 !important;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 0 5px #d9d9d9;
}

.nav-active .logo {
    margin-top: 0;
    position: relative;
    z-index: 99;
    width: 150px;
    flex: 0 0 150px;
}

.nav-active .menu-part {
    align-items: center;
}



/*******************************
********NAV BAR*****************
*****************************/
#pull {
    display: none;
}

.nav>ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: auto;
    height: auto;
    margin: 0px 44px 0px 0px;
}

/* .nav>ul>li:last-child,
.nav>ul>li:only-child {
    margin: 0;
} */

.nav>ul>li::before {
    position: absolute;
    bottom: 10px;
    left: 0px;
    z-index: 1;
    content: " ";
    width: 20px;
    height: 3px;
    background: #1db315;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.nav>ul>li:hover::before,
.nav>ul>li.current-menu-item::before,
.nav>ul>li.current-menu-parent::before,
.nav>ul>li.current-menu-ancestor::before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
}

.nav>ul>li>a {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    height: auto;
    padding: 30px 0px;
    color: #000;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    font-family: "Poppins", sans-serif;
}

.nav>ul>li:hover>a,
.nav>ul>li.current-menu-item>a,
.nav>ul>li.current-menu-parent>a,
.nav>ul>li.current-menu-ancestor>a {
    color: #1db315;
}

.nav>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    width: 300px;
    height: auto;
    padding: 0px 0px 0px 0px;
    background: none;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:last-child>ul,
.nav>ul>li:nth-last-child(2)>ul {
    left: auto;
    right: 0;
}

.nav>ul>li:hover>ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.nav>ul>li>ul>li,
.nav>ul>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
}

.nav>ul>li>ul>li>a,
.nav>ul>li>ul>li>ul>li>a {
    display: block;
    width: auto;
    height: auto;
    padding: 2px 15px 1px 15px;
    background: rgba(11, 30, 48, 0.8);
    border-top: 1px #485665 solid;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    line-height: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:hover>ul>li>a,
.nav>ul>li:hover>ul>li>ul>li>a {
    padding: 9px 15px 10px 15px;
}

.nav>ul>li>ul>li:hover>a,
.nav>ul>li>ul>li.current-menu-item>a,
.nav>ul>li>ul>li.current-menu-parent>a,
.nav>ul>li>ul>li>ul>li:hover>a,
.nav>ul>li>ul>li>ul>li.current-menu-item>a,
.nav>ul>li>ul>li>ul>li.current-menu-parent>a {
    background: #199adb;
}

.nav>ul>li>ul>li>ul {
    position: absolute;
    top: 10%;
    left: 100%;
    z-index: 9999;
    width: 240px;
    height: auto;
    background: none;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:last-child>ul>li>ul,
.nav>ul>li:nth-last-child(2)>ul>li>ul {
    left: auto;
    right: 100%;
}

.nav>ul>li>ul>li:hover>ul {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.middle-conter {
    width: 100%;
    display: inline-block;
    vertical-align: top;

}


.nav {
    width: 100%;
    justify-content: flex-end;
}

.top-nav 
{
    position: relative;
}

 



/*******************************
********NAV BAR*****************
*****************************/


/***************** Top Bar *****************/

.top-bar {
    position: relative;
    background: var(--bg-green);
    padding: 10px 0;
}

  


.top-bar .info-details ul li {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.top-bar .info-details ul li a {
    color: #2f0909;
    font-size: 14px;
}

.top-bar .info-details ul span {
    width: 33px;
    height: 33px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #75bf33;
    margin-right: 10px;
}


.top-social li a {
    width: 33px;
    height: 33px;
    background: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border: 2px solid #FFF;
    border-radius: 50px;
}

.top-social li:last-child a {
    margin-right: 0;
}

.logo {
    margin-top: -45px;
    position: relative;
    z-index: 99;
}

.banner .slick-list {
    padding: 0 !important;
}

.slick-slide img {
    width: 100%;
}


.get-button 
{
    background: var(--bg-maroon);
    padding: 10px 25px;
    color: #FFF !important; 
    font-weight: 600;
    border-radius: 50px;
}




/************ End Header ***************/

.banner-content {
    position: absolute;
    top: 7%;
    z-index: 99;
    width: 954px;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.banner-content h1 {
    font-size: 48px;
    line-height: 60px;
    color: #FFF;
    margin-bottom: 20px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
}

.banner-content h1 span {
    font-size: 58px;
    font-weight: 100;
}

.banner-content h1 strong {
    font-size: 72px;
    color: #75bf33;
}

.button-design {
    background: rgb(95, 154, 42);
    background: linear-gradient(90deg, rgba(95, 154, 42, 1) 0%, rgba(120, 186, 60, 1) 100%);
    color: #FFF !important;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid #79c733;
    box-shadow: 0px 4px 8px #00000057;
}

.banner-content p {
    padding: 10px 25px;
    position: relative;
    color: #FFF;
    background: var(--bg-maroon);
    display: inline-block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

 
.banner 
{
    position: relative;
}


.common-gap-bottom 
{
    padding-bottom: 60px;
}

.common-gap-top 
{
    padding-top: 60px;
}

.heading 
{
    position: relative;
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    display: inline-block;
}

.heading:after 
{
    content: '';
    position: absolute;
    right: -65px; 
    background: url(../images/rice-image.png) no-repeat right;
    width: 64px;
    height: 64px;
}


.about-area 
{
    background: url(../images/about-bg.jpg) no-repeat center;
    background-size: cover;
}
.about-content {
    padding: 80px 0;
}
.about-content p  
{
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 30px;
}

.about-content strong 
{
     font-size: 18px;
}

/***/ 

.why-choose-us 
{
    position: relative;
    background: url(../images/why-bg.png) no-repeat center;
    background-size: cover;

    padding-bottom: 100px !important;
}



.why-choose-us::after 
{
    content: '';
    position: absolute;
    left: 0;
    top: 220px;
    background: url(../images/why-curv.png) no-repeat center;
    width: 100%;
    height: 112px;
	background-size: cover;
}

.why-icon-box {
    background: #FFF;
    padding: 20px;
    width: 157px;
    height: 154px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 15px;
    box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 99;
}

.why-box b  
{
    font-family: "Poppins", sans-serif;
}

.box-down 
{
    position: relative;
    top: 50px;
}


.green-btn 
{
    background: var(--bg-green);
    padding: 10px 25px;
    color: #FFF !important;
    font-weight: 500;
    border-radius: 50px;
    display: inline-block;
    font-family: "Poppins", sans-serif;

}


.feature-product 
{
    background: url(../images/feature-product.png) no-repeat right top;
}


.product-image 
{
    background: #f5f5f5;
    padding: 30px;
    margin-bottom: 20px;
}

.product-text p   
{
    margin-bottom: 10px;
}

.product-list .slick-slide
{
    padding: 0 15px !important;
}


.product-list .slick-prev, .product-list .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 38%;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #000 !important;
    border: 1px solid #000;
    outline: none;
    border-radius: 50%;
    z-index: 9999;

}


.product-list .slick-prev:before {
    content: '\F12F';
    font-family: bootstrap-icons !important;
     color: #000 !important;
}

.product-list .slick-next:before {
    content: '\F138';
    font-family: bootstrap-icons !important;
     color: #000 !important;
}

.product-list .slick-next {
    right: -50px;
}

.product-list .slick-prev {
    left: -50px;
}

.our-process 
{
    background: url(../images/process-bg.png) no-repeat center;
    background-size: cover;
    padding: 50px 0;
    position: relative;
}

.proces-list ul li {
    text-align: center;
/*     min-height: 415px; */
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    position: relative;
}

.proces-list ul li p
{
    text-align: center;
    font-weight: 700;
    font-size: 24px;
	margin-top: 20px; 
}

/* .our-process::after 
{
    content: '';
    position: absolute;
    background: url(../images/proces-shape.png) no-repeat center top;
    left: 0;
    right: 0;
    top: -40px;
    height: 40px;
    z-index: 9;
	background-size: cover; 
} */

.proces-list ul li:first-child::before
{
    content: '';
    position: absolute;
    right: -65px;
    background: url(../images/bottom-up-arrow.png) no-repeat;
    background-size: cover;
    width: 149px;
    height: 132px;
    bottom: 0;
	z-index:9;
}

.proces-list ul li:nth-child(2)::before
{
    content: '';
    position: absolute;
    right: -65px;
    background: url(../images/bottom-down-arrow.png) no-repeat;
    background-size: cover;
    width: 149px;
    height: 132px;
    top: -60px;
	z-index:99;
}

.proces-list ul li:nth-child(3)::before
{
    content: '';
    position: absolute;
    right: -65px;
    background: url(../images/bottom-up-arrow.png) no-repeat;
    background-size: cover;
    width: 149px;
    height: 132px;
    bottom:0;
	z-index:9;
}

.proces-list ul li:nth-child(4)::before
{
    content: '';
    position: absolute;
    right: -65px;
    background: url(../images/bottom-down-arrow.png) no-repeat;
    background-size: cover;
    width: 149px;
    height: 132px;
    top: -60px;
	z-index:9;
}


.testimonial-sec 
{
    padding: 80px 0;
}

.content-testimo 
{
    position: relative;
}

.content-testimo::before
{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(../images/quotes.png) no-repeat;
    width: 70px;
    height: 70px;
}

.content-testimo p  
{
    color: #656565;
    line-height: 30px;
    font-weight: 300;
}

.content-testimo img 
{
    width: auto !important;
}

.client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.client-image img 
{
    object-fit: cover;
}

.content-testimo {
    border-left: 2px solid #000;
    padding-left: 15px;
    margin: 0 10px;
}


.testimonial-slide .slick-prev, .testimonial-slide .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #000;
    border: 1px solid #2d2d2d;
    outline: none;
    background: transparent;
    border-radius: 50%;
    z-index: 9999;
}

.testimonial-slide .slick-prev:before {
    content: '\F284';
    font-family: bootstrap-icons !important;
    color: #000;
}

.testimonial-slide .slick-next:before {
    content: '\F285';
    font-family: bootstrap-icons !important;
    color: #000;
}

.testimonial-slide .slick-prev
 {
    left: -50px;
}

.testimonial-slide .slick-next {
    right: -50px;
}

 
.blog-list 
{
    background: rgba(246, 255, 251, 1); 
    background-size: cover;
    padding: 80px 0;
}

.date 
{
    position: absolute; 
    background: #3F3030;
    padding: 10px 15px; 
    color: #FFF;
    left: 0px;
    bottom: 50px;
}

.blog-image {
    border: 5px solid #FFF;
    min-height: 320px;
	overflow: hidden; 
	border-radius: 10px; 
}

.blog-image img 
{
	height: 100%; 
	object-fit: cover; 
	min-height: 320px;
}

.blog-list-part h4 
{
    text-transform: capitalize;
    font-size: 20px; 
    font-weight: bold;
    line-height: 35px;
}

.blog-list-part p  
{
    font-size: 15px;
}

.blog-list-part a 
{
    text-transform: uppercase; 
    color: #000 !important;
    font-weight: 600;
}


.blog-slider .slick-prev, .blog-slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 38%;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #000 !important;
    border: 1px solid #000;
    outline: none;
    border-radius: 50%;
    z-index: 9999;

}


.blog-slider .slick-prev:before {
    content: '\F12F';
    font-family: bootstrap-icons !important;
     color: #000 !important;
}

.blog-slider .slick-next:before {
    content: '\F138';
    font-family: bootstrap-icons !important;
     color: #000 !important;
}

.blog-slider .slick-next {
    right: -50px;
}

.blog-slider .slick-prev {
    left: -50px;
}



footer 
{
    background: #4C2E36;
    padding-top: 50px;
}

.footer-holder p 
{
    color: #FFF;
    font-family: "IBM Plex Sans", sans-serif;
}

.footer-holder ul li 
{
    line-height: 35px;
}

.footer-holder ul li a 
{
    color: #FFF;
    font-family: "IBM Plex Sans", sans-serif;
}

.footer-holder h4 
{
    font-size: 20px; 
    color: #FFF;
    font-family: "IBM Plex Sans", sans-serif;
}

.copy-right 
{
    background: #3A242A;
    padding: 10px 0;
}

.copy-right p, .copy-right a   
{
    color: #FFF;
}

.foot-social li a 
{
    width: 40px;
    height: 40px;
    display: inline-block;
    margin-right: 10px;
}

.foot-social li:last-child a 
{
    margin-right: 0;
}

.column2 ul 
{
    columns: 2;
}


.foot-con-details ul li 
{
    display: flex; 
    align-items: start;
    line-height: 28px;
    margin-bottom: 15px;
}

.foot-con-details ul li i  
{
    margin-right: 15px;
    font-size: 30px;
    color: #FFF;
}










/* ******************************************** */
/******************* Gallery Start **************/
/* ******************************************** */

.gallery-area {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 80px 0px;
}

.gallery-area>.container-fluid .gallerys {
    margin-right: -15px;
    margin-left: -15px;
}

.gallery-holder {
    width: 98%;
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    margin: 1%;
}

.gallery-holder img {
    width: 100%;
}

.gallery-holder>.holder {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
}

.gallery-holder>.holder .capson {
    background: rgba(8, 21, 52, 0.80);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-100%, 0px);
    transition: all 0.4s;
}

.gallery-holder:hover .holder .capson {
    transform: translate(0px, 0px);
}

.gallery-holder>.holder .capson .lightbox {
    position: relative;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    display: flex;
    color: #fff;
    transform: translate(-500%, 0px);
    transition: all 0.9s;
}

.gallery-holder:hover>.holder .capson .lightbox {
    transform: translate(0px, 0px);
}

.gallery-holder>.holder .capson .lightbox i {
    position: relative;
    z-index: 1;
}

.gallery-holder>.holder .capson .lightbox::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: 0px;
    top: 0px;
    transform: rotateZ(0deg);
    z-index: 0;
    transition: all 0.3s;

}

.gallery-holder>.holder .capson .lightbox:hover::after {
    background: #d2202d;
    transform: rotateZ(45deg);
}

.tab-center {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.tab-center button {
    margin: 5px 1px;
    width: 165px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-weight: 500;
    font-size: 13px;
}

.tab-center button:first-child {
    background: #133d99;

}

.tab-center button:last-child {
    background: #d2202d;
}

/* ******************************************** */
/******************* Gallery End **************/
/* ******************************************** */


.inner-banner {
    padding: 150px 0;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center;
}

.inner-banner strong {
    color: #FFF;
    position: relative;
    z-index: 99;
    font-size: 50px;

}

.defoult-content h2 {
    font-size: 30px;
    line-height: 40px;
    color: #000;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.defoult-content p {
    margin-bottom: 10px;
    line-height: 28px;
}


.product-details 
{
    padding: 80px 0;
}

.product-slider 
{
    margin-bottom: 20px;
}




.product-slider .slick-prev:before {
    content: '\F12F';
    font-family: bootstrap-icons;  
    color: #000;
}

.product-slider .slick-next:before {
    content: '\F138';
    font-family: bootstrap-icons;  
    color: #000;
}
.product-slider .slick-prev 
{
    left: 20px;
}

.product-slider .slick-next 
{
    right: 20px;
}
.product-slider .slick-prev, .product-slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #ffffff;
    border: 2px solid #694700;
    outline: none;
    background: #ffffff;
    border-radius: 50%;
    z-index: 99;
}

.product-sample .slick-slider {
    margin: 0 -15px;
}

.product-sample .slick-slide {
    margin-right: 10px;
    margin-left: 10px;
}

 .thumbnails {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.thumb:hover, .thumb.active {
    opacity: 1;
}

.thumb {
    margin: 0 .25rem .25rem 0;
    width: 120px;
    transition: opacity .25s ease-out;
}

.zoom {
    display: inline-block;
}


.contact-from-area {
    padding: 80px 0;
}

.details-contact {
    height: 100%;
    padding: 20px;
    border-radius: 15px;
    background: #e9fff3;
}

.heading-contact {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    background: var(--bg-green);
    padding: 15px;
    text-align: center;
    border-radius: 15px;
}

.round-icon {
    background: #000000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    margin-right: 15px;
    color: #FFF;
}

.foot-description p {
    color: #000;
    font-size: 16px;
}

.contact-form {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 15px;
}

.contact-form .heading-con {
    text-align: center;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    color: #000;
}

.contact-form input[type="text"], .contact-form input[type="email"] {
    height: 55px;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 20px;
}

textarea.form-control {
    min-height: calc(1.5em + (.75rem + 2px));
}

.submit-btn {
    background: var(--bg-green);
    padding: 10px 20px;
    color: #FFF;
    display: inline-block;
    font-weight: 600;
    border: none;
    width: 200px;
    text-transform: uppercase;
}

.defoult-text h1 
{
	font-size: 33px; 
	color: #000; 
	font-weight: bold; 
	margin-bottom: 20px; 
	text-transform: capitalize; 
}

.defoult-text h2 
{
	font-size: 30px; 
	color: #000; 
	font-weight: bold; 
	margin-bottom: 20px; 
	text-transform: capitalize; 
}

.defoult-text h3 
{
	font-size: 26px; 
	color: #000; 
	font-weight: bold; 
	margin-bottom: 20px; 
	text-transform: capitalize; 
}

.defoult-text p 
{
	margin-bottom: 10px; 
}

.defoult-text ul li 
{
	margin-bottom: 10px; 
	position: relative; 
	padding-left: 20px; 
}

.defoult-text ul li:before 
{
	content:''; 
	position: absolute; 
	left:0; 
	top:5px; 
	background: var(--bg-green); 
	border-radius: 50px; 
	width: 10px; 
	height: 10px; 
}


.blog-slider .slick-slide 
{
	padding: 0 10px; 
}


.defoult-text img 
{
	margin-bottom: 15px; 
}

.round-image {
    background: #f5ede7;
    height: 300px;
    border-radius: 50%;
    max-width: 300px;
    border: 2px solid #cdb8a3;
	overflow: hidden; 
}

.round-image img 
{
  object-fit: cover;
  width: 100%;
  height: 100%; 
}

