html {
    color: #000000;
    font-weight: normal;
    font-family: 'Open Sans', sans-serif;
}

body {
    margin: 0;
    color: #000000;
    font-weight: normal;
    font-family: 'Open Sans', sans-serif;
}

section.header {
    padding: 50px;
    position: absolute;
    z-index: 9;
    width: 100%;
    top: 0;
}
section.header .menus {
    float: right;
}
section.header .logo img{
   /* width: 350px;*/
    margin: auto;
}
/*Modal*/
.modal-body {
    padding: 50px;
}
.modal-backdrop {
    z-index: -1;
}
.login-form input.form {
    background: #e8f0fe;
    width: 100%;
    border: none;
    height: 36px;
    padding: 10px;
    margin: 15px 0;
    font-size: 12px;
    display: block;
    outline: 0;
}
.login-form label, .login-form a {
    font-size: 16px;
    font-weight: 100;
}
.modal-content h4 {
  font-weight: bold;
  color: #fff;
}
.close {
  /*color: #fff;*/
  transform: scale(1.2)
}
.modal-content {
  font-weight: bold;
  /*background: linear-gradient(to bottom right,#F87E7B,#B05574);
  background: linear-gradient(to bottom right,#c2f87b,#55b082);
  background: linear-gradient(to bottom right,#f8d77b,#78b055);*/
}
.login {
  padding: 6px 20px;
  border-radius: 20px;
  background: none;
  border: 2px solid #1bb115;
    color: #28a745;
  font-weight: bold;
  transition: all .5s;
  margin-top: 50px;
  margin-bottom: 20px;
}
.login:hover {
  background: #1bb115;
  color: #fff;
}
.step a {
    background: #4867aa;
    width: 100%;
    display: block;
    margin: 15px 0;
    height: 36px;
    color: #ffffff;
    line-height: 35px;
}
.step a:last-child {
    background: #e94235;
    margin-bottom: 0;
}

section.slider .slider-item.bg-img {
    height: 800px;
}
section.slider .slider-item:before {
    position: absolute;
    content: '';
    left: 40px;
    right: 40px;
    bottom: 40px;
    top: 40px;
    border: 1px solid #9e9e9e;
    z-index: 9;
}
section.slider .slider-item:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at center, rgba(193,164,95,0.39) 0%,rgba(0,0,0,0.81) 99%,rgba(0,0,0,0.81) 100%);
    width: 100%;
    height: 100%;
}
section.slider .slider-item .content {
    position: absolute;
    color: #ffffff;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
section.slider .slider-item .content h1 {
    font-size: 70px;
    line-height: 76px;
    font-weight: 700;
    text-shadow: 2px 2px 4px #404040;
}
section.slider .slider-item .content p {
    padding: 0 160px;
    margin-top: 20px;
    font-size: 22px;
    text-shadow: 2px 2px 4px #404040;
}
section.slider button.owl-prev, section.slider button.owl-next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    margin: 0!important;
}
section.slider button.owl-prev{
    left: 0;
}
section.slider button.owl-next {
    right: 0;
}
section.slider .owl-carousel .owl-nav button.owl-prev, 
section.slider .owl-carousel .owl-nav button.owl-next, 
section.slider .owl-carousel button.owl-dot {
    background: #cfcfcf;
    border-radius: 0;
    height: 65px;
    width: 65px;
}
section.slider .owl-theme .owl-nav [class*=owl-]:hover {
    background: #cfcfcf;
    color: #fff;
}
section.slider .owl-theme .owl-nav span {
    font-size: 50px;
    color: #00732e;
}
section.slider button.owl-prev:before, 
section.slider button.owl-next:after {
    position: absolute;
    content: '';
    bottom: -13px;    
    border-bottom: 13px solid transparent;
}
section.slider button.owl-prev:before {
    left: 41px;
    border-left: 24px solid #000000;
}
section.slider button.owl-next:after {
    right: 41px;
    border-right: 24px solid #000000;
}

/*another shipping area*/
section.shiping-area, section.about {
    background: #f3f3f3;
    position: relative;
}
section.shiping-area .ship-inner {
    text-align: center;
    margin-bottom: 30px;
}
section.shiping-area .ship-inner.first {
    border-right: 1px solid #d2d2d2;
}
section.shiping-area span.inner-img {
    margin-bottom: 10px;
    display: block;
}
section.shiping-area span.inner-img img {
    margin: auto;
}
.left-img {
    position: absolute;
    top: -30px;
    left: 0;
    animation: zoom-fade 6s infinite linear;
    z-index: 1;
}
.left-img img{
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
}
section.product .right-img {
    position: absolute;
    right: 14%;
    top: 0;
    animation-name: floating;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    z-index: 1;
}
@keyframes floating {
    from { transform: translate(0,  0px); }
    65%  { transform: translate(0, 15px); }
    to   { transform: translate(0, -0px); }    
}
section.product .right-img img {
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

/*product*/
section.product{
    position: relative;
}
section.product:before {
    position: absolute;
    content: '';
    background: url(../images/bg-top.jpg) no-repeat;
    min-width: 100%;
    min-height: 200px;
    top: 0px;
    left: 0;
    z-index: -1;
}
section.product .product-inner {
    
    transition: all 0.5s ease;
    position: relative;
}
section.product .product-inner figure,
/*section.shop-page*/ .box figure {
    position: relative;
    height: 300px;
    overflow: hidden;
    text-align: center;
}
section.product .product-inner figure img,
 .box figure img{
    transition: all .5s ease 0s;
}
section.product .product-inner:hover figure img,
 .box:hover figure img {
    transform: scale(1.1);
    transition: .6s ease-in-out;
}
section.product .product-inner .content {
    /*background: #e6e6e6;*/
    padding: 15px;
    text-align: center;
}
section.product .product-inner .content span.price {
    font-weight: 700;
    color: #20a053;
    color: #f9a319;
    font-family: 'Lora', serif;
}
section.product .product-inner .product-icon,
 .box .product-icon{
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    opacity: 0;    
    transition: all 300ms ease;
}
section.product .product-inner:hover .product-icon,
 .box:hover .product-icon {
    opacity: 1;
}
section.product .product-inner .product-icon .cart-icon, 
.box .product-icon .cart-icon {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}
section.product .product-inner .product-icon .cart-icon i,
 .box .product-icon .cart-icon i{
    font-size: 20px;
    background: #ffffff;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    margin-top: 5px;
    color: #00a64d;
    box-shadow: 1px 2px 1px rgb(0 0 0 / 19%);
}
section.product .product-inner .product-icon .cart-icon:hover i,
 .box .product-icon .cart-icon:hover i{
    background: #00a64d;
    color: #ffffff;
}
section.product .product-inner .product-icon .cart-icon span, 
.box .product-icon .cart-icon span{
    visibility: hidden;
    width: 110px;
    padding: 5px 0;
    border-radius: 4px;
    text-align: center;
    color: #fff;
    background-color: #000;
    opacity: 0;
    transition: opacity 1s;
    z-index: 1;
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    font-size: 12px;
}
section.product .product-inner .product-icon .cart-icon span::after,
 .box .product-icon .cart-icon span::after{
    position: absolute;
    content: " ";
    top: 100%;
    left: 50%;
    margin-left -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}
section.product .product-inner .product-icon .cart-icon:hover span,
 .box .product-icon .cart-icon :hover span { 
    visibility: visible; 
    opacity: 1;
}

/*about*/
section.about{
    padding: 130px 0;
}
section.about:before {
    position: absolute;
    content: '';
    background: url(../images/top-blog.png) no-repeat;
    top: 0;
    right: 0;
    width: 100%;
    min-height: 130px;
}
section.about:after {
    position: absolute;
    content: '';
    background: url(../images/bottom-blog.png) no-repeat;
    bottom: 0;
    right: 0;
    width: 100%;
    min-height: 130px;
}
section.about figure {
    height: 350px;
}
section.about .abt-content {
    padding: 63px 40px;  
}
section.about .abt-content h1 {
    text-transform: uppercase;
}
section.about .abt-content p{
    line-height: 30px;
    margin: 20px 0;
}
a.btns i{
    font-size: 12px;
    margin-left: 10px;
}

/*blog*/
section.blog .single-blog {
    position: relative;
}
section.blog .single-blog:before {
    position: absolute;
    content: '';
    right: 10px;
    left: 10px;
    top: 10px;
    bottom: 10px;
    background: rgb(224 221 221 / 0.8);
    opacity: 0;
    transition: 0.3s;
    transform: scale(0);
}
section.blog .single-blog:hover:before {
    opacity: 1;
    transform: scale(1);
}
figure img {
    
    /*height: 100%;*/
    /*object-fit: cover;*/
}
section.blog .single-blog figure {
    height: 300px;
}
section.blog .single-blog:hover .content {
    opacity: 1;
}
section.blog .single-blog .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease 0s;
    text-align: center;
}
section.blog .single-blog .content h3 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
section.blog .single-blog .content h3:before {
    position: absolute;
    content: '';
    background: #00732d;
    width: 50px;
    height: 2px;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%);
}
section.blog .owl-carousel .owl-nav button.owl-prev, 
section.blog .owl-carousel .owl-nav button.owl-next{
    position: absolute;
    bottom: 0;
    border: 2px solid #d8c9b1;
    height: 45px;
    width: 35px;
    border-radius: 0;
}
section.blog button.owl-prev{
    left: -52%;
}
section.blog button.owl-next{
    left: -46%;
}
section.blog button span {
    font-size: 30px;
    color: #f9a51d;
}

/*textimonial*/
section.review{
    position: relative;
}
section.review.bg-img{
    padding: 100px 0;
    height: auto;
}
section.review .overlay {
    background-color: rgb(255 158 0 / 70%);
}
section.review .title {
    position: relative;
    color: #ffffff;
}
section.review .title span {
    color: #00732d;
}
section.review .content {
    color: #ffffff;
    position: relative;
}
section.review .client-say {
    position: relative;
    padding-left: 55px;
    font-size: 22px;
    margin-bottom: 40px;
}
section.review .client-say:before {
    position: absolute;
    content: '';
    background-image: url(../images/icon/qot.png);
    top: 10px;
    left: 0;
    width: 32px;
    height: 32px;
}
section.review .review-img img {
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
section.review .review-img {
    width: 100px;
    height: 100px;
        display: inline-block;
    vertical-align: middle;
}
section.review p.client-detail {
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
}
section.review .owl-theme .owl-dots .owl-dot.active span, 
section.review .owl-theme .owl-dots .owl-dot:hover span {
    background: #00732d;
}
section.review .owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 3px;
    background: #509745;
}
section.review.reviews .overlay {
    background-color: rgb(138 103 47 / 70%);
}
section.review.reviews .title span {
    color: #f9a51c;
}
section.review.reviews .content {
    text-align: center;
}

/*footer*/
section.foter {
    background: black;
    color: #ffffff;
}
section.foter .foter-logo img{
    margin: auto;
    margin-bottom: 50px;
}
section.foter .foter-info li a {
    color: #ffffff;
}
section.foter .foter-info.info1 {
    padding: 0px 50px 0 130px;
    text-align: right;
}
section.foter .foter-info.info1 p {
    margin-bottom: 54px;
}
section.foter .foter-info.info1 li {
    display: inline-block;
    border-right: 1px solid #4e4e4e;
    margin-right: 10px;
    padding-right: 10px;
}
section.foter .foter-info.info1 li:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
}
section.foter .foter-info.info1 li a {
    color: #bdbdbd;
}
section.foter .foter-info.info2 {
    position: relative;
    padding-left: 50px;
}
section.foter .foter-info.info2:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #4e4e4e;
}
section.foter .foter-info.info2 .contact-icon li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
}
section.foter .foter-info.info2 .contact-icon li i {
    color: #00a650;
    margin-right: 8px;
    position: absolute;
    left: 0;
    top: 4px;
}
section.foter .foter-info.info2 .social-icon li {
    background: #1f1f1f;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 28px;
    display: inline-block;
}
section.foter .botom-foter {
    text-align: center;
    margin-top: 50px;
}
section.foter .botom-foter span a{
    color: #ffffff;
}
section.foter .foter-info.info1 li a:hover, 
section.foter .botom-foter span a:hover{
    color: #00732d;
}

/*for all pages*/
section.head {
    padding: 10px 0;
}
section.head .btn.btn-success {
    float: right;
    margin-top: 27px;
}
section.head .small-lgo {
    width: 100px;
}
.nav-cover {
    padding: 26px 0 0;
    float: right;
}

section.banner-page{
    position: relative;
}
section.banner-page .bg-img{
    padding: 225px 0;
    background-position: top center;
}
section.banner-page .bg-img:before {
    position: absolute;
    content: '';
    left: 20px;
    right: 20px;
    bottom: 20px;
    top: 20px;
    border: 1px solid #838383;
    z-index: 9;
}
section.banner-page .overlay {
    background: rgb(1 167 78 / 44%);
}
section.banner-page .bg-img:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at center, rgba(193,164,95,0.39) 0%,rgba(0,0,0,0.81) 99%,rgba(0,0,0,0.81) 100%);
    width: 100%;
    height: 100%;
}
section.banner-page .inner-box{
    position:relative;
    z-index: 9;
    text-align: center;
}
section.banner-page h1 {
    position: relative;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;   
}
section.banner-page h1:after {
    position: absolute;
    content: '';
    width: 70px;
    background: #fea813;
    height: 1px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
}

/*about*/
/*section.about-info */.abt-inner {
    background: #e2e2e2;
    padding: 45px;
    border-radius: 50%;
    width: 341px;
    height: 341px;
    text-align: center;
    z-index: 9;
    color: #ffffff;
    position: absolute;
}
.abt-inner.mission {
    left: 20%;
    bottom: 5%;    
    background: #48bc7b;
}
.abt-inner.slogan {
    left: 40%;
    bottom: -30%;
    background: #fbbf53;
    padding: 115px 85px;
}
.abt-inner.vision {
    right: 20%;
    bottom: -10%;
    background: #90d6ae;
    padding: 95px 60px;
}
.abt-inner h2 {
    margin-bottom: 15px;
}
.abt-inner p {
    margin-bottom: 0;
}
section.about-page .content{
    padding: 74px 0;
    margin-right: 200px;
}
section.about-page .content h6 {
    color: #01a74e;
    margin-bottom: 20px;
}
section.about-page .content h1 {
    line-height: 50px;
}
section.about-page .content p {
    margin: 20px 0;
    line-height: 30px;
    text-align: justify;
}
section.about-page .about-img {
    background: #f5d49c;
    padding: 60px 60px 60px 0;
}
section.about-page .about-img figure {
    height: 300px; 
    margin-left: -110px;
}
section.abt-objective.bg-img {
    height: auto;
}
section.abt-objective .overlay {
    background-color: rgb(9 138 38 / 50%);
    background-color: rgb(9 138 38 / 70%);
}
section.abt-objective .col-lg-6.col-md-12.col-sm-12 {
    padding: 0;
}
section.abt-objective .obj-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.abt-objective .obj-content {
    padding: 103px;
}
section.abt-objective .obj-content h2 {
    margin-bottom: 50px;
    position: relative;
    color: #ffffff;
    text-align: center;
}
section.abt-objective .obj-content li {
    position: relative;
    padding-left: 25px;
    padding-bottom: 25px;
    font-size: 15px;
    text-align: justify;
    line-height: 25px;
    color: #ffffff;
}
section.abt-objective .obj-content li:before {
    position: absolute;
    content: '\f18e';
    font-family: 'FontAwesome';
    color: #d89d38;
    left: 0;
    top: 0;
}

/*shop*/
section.shop-page .tab {
    margin-bottom: 50px;
}
section.shop-page button.tablinks {
    border: 1px solid #00a650;
    background: none;
    margin-right: 8px;
    padding: 5px 20px;
}
section.shop-page .tab button.active {
    color: #ffffff;
    background-color: #00a650;
}
section.shop-page button:focus {
    outline: 0;
}
section.shop-page .tabcontent {
  display: none;
  border-top: none;
}
section.shop-page .tabcontent.show{
  display: block;
}
section.shop-page .box{
    margin-bottom: 30px;
}
/*section.shop-page*/ .box .text{
    padding-top: 15px;
    background: whitesmoke;
    padding: 15px;
}
/*section.shop-page*/ .box .text h5 {
    padding-bottom: 10px;
}
/*section.shop-page .box .text*/ ul.star {
    float: right;
}
ul.star li {
    display: inline-block;
    color: #fdab1b;
}

/*shop detail*/
section.shop-detail figure {
    max-width: 100%;
    height: auto;
}
section.shop-detail .owl-carousel .owl-nav button.owl-prev, 
section.shop-detail .owl-carousel .owl-nav button.owl-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid #d8c9b1;
    background: aliceblue;
    height: 45px;
    width: 35px;
    border-radius: 0;
}
section.shop-detail button.owl-prev{
    left: 0;
}
section.shop-detail button.owl-next{
    right: 0;
}
section.shop-detail button span {
    font-size: 30px;
    color: #f9a51d;
}
section.shop-detail .content h3 {
    margin-bottom: 10px;
}
section.shop-detail .content span {
    font-size: 30px;
    font-weight: 700;
}
section.shop-detail .content p.intro {
    font-size: 14px;
    line-height: 24px;
    border-bottom: 1px solid #c7c7c7;
    border-top: 1px solid #c7c7c7;
    padding: 18px 0;
    margin-top: 15px;
}
section.shop-detail .content .size {
    border-bottom: 1px solid #c7c7c7;
    margin-bottom: 20px;
    padding-bottom: 15px;
}
section.shop-detail .content .size label {
    margin-right: 10px;
}
section.shop-detail .content .quantity {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}
section.shop-detail .content .quantity input {
    width: 120px;
    padding: 0px 35px;
    text-align: center;
    height: 35px;
    position: relative;
    background: #ccc;
    border: none;
}
section.shop-detail .content .quantity .qtybutton {
    position: absolute;
    top: 0;
    left: 0;
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 35px;
    font-size: 18px;
    cursor: pointer;
    color: #333;
    background:#ddd;
}
section.shop-detail .content .quantity .qtybutton:hover {
    background: #00a650;
    color: #fff;
}
section.shop-detail .content .quantity .qtybutton.inc {
    left: auto;
    right: 0;
}
section.shop-detail .content .btn {
    padding: 7px 25px;
    font-size: 14px;
    margin-top: 0;
}
section.detail-page-slider {
    background: #eeeeee;
}

/*blog*/
section.blog-page .inner-box{
    margin-bottom: 30px;
}
section.blog-page .inner-box figure{
    position: relative;
    height: 250px;
}
section.blog-page .inner-box figure:before, 
section.blog-page .inner-box figure:after{
    position: absolute;
    content: '';    
    background-color: rgba(255, 255, 255, 0.1);
    width: 0;
    height: 0;
    transition: all 0.3s ease-out 0s;
}
section.blog-page .inner-box figure:before{
    left: 0;
    top: 0;
}
section.blog-page .inner-box figure:after{
    right: 0;
    bottom: 0;
}
section.blog-page .inner-box:hover figure:before, 
section.blog-page .inner-box:hover figure:after{
    height: 100%;
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    width: 100%;
}
section.blog-page .inner-box figure .date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffffff;
    text-align: center;
    padding: 8px 12px;
    color: #ffa200;
}
section.blog-page .inner-box figure .date:before {
    position: absolute;
    content: '';
    top: -5px;
    bottom: -5px;
    left: -5px;
    right: -5px;
    border-left: 2px solid white;
    border-right: 2px solid white;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
}
section.blog-page .inner-box .content {
    background: #f7f7f7;
    border: 1px solid #afafaf;
    border-top: 0;
    padding: 30px;
    min-height: 219px;
}
section.blog-page .inner-box .content h3 {
    margin-bottom: 15px;
    font-weight: 600;
}
section.blog-page .inner-box:hover .content {
    border: 1px solid #12ac5c;
    border-top: 0;
}

/*blog detail*/
section.blog-detail .detail{
    margin-top: 25px;
}
section.blog-detail .detail .date {
    float: left;
    width: 60px;
    text-align: center;
    margin-right: 20px;
    background: #02a651;
    color: #fff;
    padding: 5px 0;
}
section.blog-detail .detail .content {
    overflow: hidden;
}
section.blog-detail .detail .content p{
    text-align: justify;
    margin-top: 20px;
}
section.blog-detail .detail .post-share{
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    padding: 12px 0; 
    margin-bottom: 30px; 
}
section.blog-detail .detail .post-share .share {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    margin-right: 20px;
}
section.blog-detail .detail .post-share .social-icon {
    display: inline-block;
    vertical-align: middle;
}
section.blog-detail .detail .post-share #share a {
    width: 35px;
    height: 35px;
    display: inline-block;
    border-radius: 5px;
    font-size: 20px;
    line-height: 21px;
    text-align: center;
    color: #fff;
    opacity: 0.75;
    transition: opacity 0.15s linear;
}
section.blog-detail .detail .post-share #share a:hover {
    opacity: 1;
}
section.blog-detail .detail .post-share #share i {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
section.blog-detail .detail .post-share #share .facebook {
    background: #3b5998;
}
section.blog-detail .detail .post-share #share .twitter {
    background: #55acee;
}
section.blog-detail .detail .post-share #share .googleplus {
    background: #dd4b39;
}
section.blog-detail .detail .post-share #share .linkedin {
    background: #0077b5;
}
section.blog-detail .detail .post-share #share .pinterest {
    background: #cb2027;
}


.sidebar {
    margin-bottom: 30px;
    background: #f5f5f5;
    padding: 30px;
}
.sidebar h4 {
    position: relative;
    text-transform: uppercase;
    padding-left: 45px;
    margin-bottom: 15px;
}
.sidebar h4:before, .sidebar h4:after {
    position: absolute;
    content: '';
    background: #00a650;
    top: 10px;
    left: 0;
    width: 35px;
    height: 1px;
}
.sidebar h4:after {
    bottom: 10px;
    top: auto;
    width: 20px;
}
.sidebar li{
    position: relative;
    padding-left: 20px;
    padding-bottom: 10px;
    font-size: 15px;
}
.sidebar li:before{
    position: absolute;
    content: '\f061';
    font-family: fontawesome;
    top: 4px;
    left: 0;
    font-size: 12px;
    color: #e6a637;
}
.sidebar .news-box {
    border-bottom: 1px dashed #a0a0a0;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.sidebar .news-box:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.sidebar .news-box figure {
    display: table-cell;
    vertical-align: middle;
    width: 80px;
    height: 80px;
}
.sidebar .news-box .text {
    display: table-cell;
    vertical-align: middle;
    padding-left: 20px;
}

/*business page*/
section.busines-page .content p {
    margin-top: 15px;
}
/*different pages*/
section.pages {
    margin-bottom: 30px;
}

/*contact*/
section.contact-page iframe {
    margin-bottom: 50px;
}
section.contact-page .address {
    background: #ffffff;
    box-shadow: 0px 0px 20px 0px rgba(102, 102, 102, 0.15);
    padding: 40px;
    transform: translateY(-300px);
}
section.contact-page .address p {
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 3px;
    color: #ee9700;
}
section.contact-page .address li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
    margin: 35px 0;
}
section.contact-page .address li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 40px;
    color: #38b170;
}
section.contact-page .address li strong {
    text-transform: uppercase;
}
section.contact-page .address li span{
    display: block;
    color: #7d7d7d;
}
section.contact-page .address li span a {
    color: #7d7d7d;
}
section.contact-page h1.info {
    margin-top: -250px;
    font-size: 55px;
    font-weight: 700;
    line-height: 61px;
    color: #ee9700;
    padding: 0 50px;
}
section.contact-page .form {
    box-shadow: 0px 0px 20px 0px rgba(102, 102, 102, 0.15);
    background: #ffffff;
    padding: 30px;
}
section.contact-page .form p {
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #ee9700;
}
section.contact-page .form .form-group input,
section.contact-page .form .form-group textarea {
    width: 100%;
    height: auto;
    border-radius: 0;
    border: 1px solid #ced4da;
    padding: 8px 20px 0;
    font-size: 12px;
}
section.contact-page .form .form-group input {
    height: 45px;
    padding: 0 20px;
}
section.contact-page .form .form-group input:focus,
section.contact-page .form .form-group textarea:focus {
    outline: 0;
}

/*cart form*/
section.cart-form{
    position: relative;
}
.cart-wrap {
    background: #f1f3f5;
    padding: 30px;
    border: 1px solid #c3c0c0;
}
.cart-wrap h2 {
    margin-bottom: 25px;
}
.cart-form input, .cart-form select, .cart-form textarea {
    width: 100%;
    height: 36px;
    font-size: 13px;
    border-radius: 0;
    border: 1px solid #d0d0d0;
    padding: 0 12px;
}
.cart-wrap input::placeholder {
    color: #373737;
}
.cart-wrap label {
    font-weight: 600;
}
.cart-wrap .card-icon i {
    font-size: 35px;
}
.cart-wrap i.fa.fa-cc-visa {
    color: #000085;
}
.cart-wrap i.fa.fa-cc-mastercard {
    color: red;
}
.cart-wrap i.fa.fa-cc-discover {
    color: orange;
}
.cart-wrap i.fa.fa-cc-amex {
    color: #0000ff;
}
section.cart-form .right-img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.cart-wrap .chk-btn {
    text-align: center;
    margin-top: 30px;
}





/*mission page*/
section.baner-page .bg-img{
    padding: 225px 0;
}
section.baner-page .bg-img:before {
    position: absolute;
    content: '';
    left: 20px;
    right: 20px;
    bottom: 20px;
    top: 20px;
    border: 1px solid #838383;
    z-index: 9;
}
section.baner-page .bg-img{
    background-position: top center;
}
section.baner-page .inner-box{
    position:relative;
    z-index: 9;
    text-align: center;
}
section.baner-page h1 {
    position: relative;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;   
}
section.baner-page h1:after {
    position: absolute;
    content: '';
    width: 70px;
    background: #fea813;
    height: 1px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
}
section.baner-page .overlay {
    background: rgb(1 167 78 / 44%);
}
section.baner-page .bg-img:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at center, rgba(193,164,95,0.39) 0%,rgba(0,0,0,0.81) 99%,rgba(0,0,0,0.81) 100%);
    width: 100%;
    height: 100%;
}

/*about*/
/*section.about-info */.abot-inner {
    background: #e2e2e2;
    padding: 45px;
    border-radius: 50%;
    width: 341px;
    height: 341px;
    text-align: center;
    z-index: 9;
    color: #ffffff;
    position: absolute;
}
/*section.about-info */.abot-inner.mission {
    left: 20%;
    bottom: 5%;    
    background: #48bc7b;
}
/*section.about-info */.abot-inner.slogan {
    left: 40%;
    bottom: -30%;
    background: #fbbf53;
}
/*section.about-info */.abot-inner.vision {
    right: 20%;
    bottom: -10%;
    background: #90d6ae;
}
/*section.about-info */.abot-inner h2 {
    margin-bottom: 15px;
}
/*section.about-info*/ .abot-inner p {
    margin-bottom: 0;
}

.form-error{
    margin-bottom: 0 !important;
}