@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/*--------------------- Copyright (c) 2023 ----------------------- 
[Master Stylesheet] 
Template Name: ICDSAIA- Multipurpose Responsive HTML template 
Version: 1.0.0
Author: Kamleshyadav
Website: 
Purchase: 
 ------------------------------------------------------------------- 
[Table of contents] 
1. body
2. header
3. slider
4. about
5. counter
6. about farm
7. service
8. testimonial
9. shop
10. blog
11. gallery
12. team
13. partner
14. newsletter
15. footer
16. copyright
17. index2
18. index3
19. index4
20. index5
21. index6
22. about page
23. service page
24. gallery page
25. blog page
26. blog single page
27. contact page
28. product page
29. product single page
30. checkout page
31. cart single page
32. profile page
33. payment success popup
34. thank you popup
35. signup popup
36. signin popup
37. profile toggle
38. preloader
39. index7
40. responsive
-------------------------------------------------------------------*/
/********************************************************
1. body start
 *******************************************************/
body {
    padding: 0;
    margin: 0;
    font-family: "Lato", sans-serif;
    color: #757575;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* body.loading::before {
  content: "Loading...";
  position: fixed;
  top: 50%;
  left: 50%;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 1em 2em;
  z-index: 9999;
  transform: translate(-50%, -50%);
} */
*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    cursor: pointer;
    color: #757575;
    outline: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-family: "Roboto", sans-serif;
    margin: 0;
}

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

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

.container {
    max-width: 1200px;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.spacer {
    padding-top: 30px;
}

.padding-0 {
    padding: 0 !important;
}

.clv_section {
    padding: 50px 20px;
}

.clv_heading {
    text-align: center;
    margin-bottom: 20px;
}

.clv_heading h3 {
    font-size: 40px;
    color: #000000;
    font-weight: 700;
    /* text-transform: capitalize; */
}

.clv_heading.white_heading h3 {
    color: #ffffff;
}

.clv_heading.white_heading p {
    color: #ffffff;
}

.clv_heading>.clv_underline {
    margin: 7px 0px;
}

.clv_btn,
.clv_btn:focus {
    min-width: 170px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    outline: none;
    border: none;
    background: none;
    cursor: pointer;
    text-align: center;
    /* text-transform: capitalize; */
    border-radius: 30px;
    font-size: 16px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_btn:hover {
    color: #fec007;
}

.clv_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.clv_btn:hover::before {
    opacity: 0;
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
}

.clv_btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid #fec007;
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

.clv_btn:hover::after {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.clv_btn2,
.clv_btn2:focus {
    min-width: 170px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    /* text-transform: capitalize; */
    background-color: #3f61f6;
    border: 1px solid #3f61f6;
    border-radius: 5px;
    font-size: 16px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_btn2:hover {
    color: #3f61f6;
}

.clv_btn2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    z-index: -1;
    border-radius: 5px;
    background-color: #ffffff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.clv_btn2:hover::before {
    width: 100%;
}

.fa-rotate-130 {
    transform: rotate(130deg);
}

.fa-rotate-315 {
    transform: rotate(315deg);
}

button {
    cursor: pointer;
}

/********************************************************
1. body end
 *******************************************************/
/********************************************************
2. header start
 *******************************************************/
.clv_main_wrapper {
    position: relative;
}

.clv_main_wrapper .clv_header {
    position: relative;
    background-color: #ffffff;
    z-index: 10;
}

.clv_logo {
    position: absolute;
    /*	background: #f4f9ff;*/
    border-radius: 50%;
    top: -22px;
}

.clv_main_wrapper .clv_header .clv_left_header {
    padding: 56px 0px;
}

.clv_logo img {
    /* width: 220px;
	padding: 30px; */
    width: 160px;
    padding: 13px;
}

.clv_main_wrapper .clv_header .clv_right_header .clv_address {
    padding: 23px 0px;
}

.clv_right_header .clv_address .address_block {
    position: relative;
    text-align: left;
    display: inline-block;
    width: 100%;
}

.clv_right_header .clv_address .address_block span.addr_icon {
    transform: rotate(45deg);
    vertical-align: middle;
    width: 32px;
    height: 30px;
    color: #68b42d;
    font-size: 16px;
    float: left;
    margin-right: 6px;
    display: inline-block;
    border-radius: 7px;
    text-align: center;
    border: 1px solid #dedddb;
}

.clv_right_header .clv_address .address_block span.addr_icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.choose-section {
    position: relative;
    overflow: hidden;
}

.circle-map {
    position: absolute;
    top: 50%;
    right: -10px;
}

.shape-img1,
.shape-img2 {
    position: absolute;
    z-index: -1;
}

.shape-img1 {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    opacity: 0.4;
}

.choose-section .service-image {
    position: absolute;
    left: -134px;
    top: 26px;
    opacity: 0.5;
}

.choose-section .testimonial-sideimage {
    position: absolute;
    right: -134px;
    top: 26px;
    opacity: 0.5;
}

.choose-section .choose-sideshape {
    position: absolute;
    right: 0;
    top: 23px;
}

.choose-section .choose-sideshape2 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.banner-sideshape {
    position: absolute;
    left: -38px;
    top: -14px;
}

.banner-sideshape2 {
    position: absolute;
    left: -2px;
    bottom: -20px;
    z-index: 0;
}

.clv_right_header .clv_address .address_block p {
    margin: 0;
    color: #707070;
    font-weight: 500;
    font-size: 12px;
    line-height: 28px;
}

.clv_right_header .clv_menu {
    background-color: #fec007;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 35px 35px 0px 0px;
}

.clv_right_header .clv_menu .clv_menu_nav {
    padding: 0px 20px;
    padding-right: 10px;
}

.clv_right_header .clv_menu .clv_menu_nav>ul>li {
    display: inline-block;
    margin: 0px 7px;
    padding: 14px 0px;
    position: relative;
}

.clv_right_header .clv_menu .clv_menu_nav>ul>li>a {
    display: inline-block;
    color: #ffffff;
    padding: 5px 10px;
    /* text-transform: capitalize; */
    position: relative;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 400;
    line-height: 19.92px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_right_header .clv_menu .clv_menu_nav>ul>li>a:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 10px;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_right_header .clv_menu .clv_menu_nav>ul>li>a:hover:after {
    width: 60%;
}

.clv_right_header .clv_menu .clv_menu_nav>ul>li>ul {
    position: absolute;
    top: 100%;
    left: -27px;
    width: 100%;
    padding: 10px 10px;
    min-width: 280px;
    background-color: white;
    border-radius: 0px 0px 10px 10px;
    border-bottom: 3px solid #fec007;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.06);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.relative {
    position: relative;
}

img.img-data {
    /* position: absolute;
	left: 0px;
	top: 0px;
	width: 27%; */
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 22%;
}

.shape1 {
    position: absolute;

    /* right: -90px;
    top: 70px;
    width: 22%;
     webkit-animation-name: alltuchtopdown;
    animation-name: alltuchtopdown;
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear; */
    right: 0;
    top: 160px;
    width: 18%;
    webkit-animation-name: alltuchtopdown;
    animation-name: alltuchtopdown;
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 0.3;
}

.shape1 img {
    width: 100%;
    transition: all 0.3s ease-out 0s;
    opacity: 0.6;
}

@keyframes alltuchtopdown {
    0% {
        transform: rotateX(0deg) translateY(0px);
    }

    50% {
        transform: rotateX(0deg) translateY(-30px);
    }

    100% {
        transform: rotateX(0deg) translateY(0px);
    }
}

.shape2 img {
    width: 34%;
    transition: all 0.3s ease-out 0s;
}

.shape2 {
    position: absolute;
    right: 72px;
    top: 41px;
    webkit-animation-name: alltuchtopdown;
    animation-name: alltuchtopdown;
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.bg-count-down {
    background-image: url("../images/svg/slider-img-2.jpg") !important;
    position: relative;
    min-height: 420px;
    padding: 50px 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-count-down:before {
    position: absolute;
    content: "";
    background: linear-gradient(75deg,
            rgb(52 49 63 / 65%) 10%,
            rgb(8 23 58 / 85%));
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
}

.clv_right_header .clv_menu .clv_menu_nav>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.count_no {
    white-space: nowrap;
    font-size: 1.2rem;
    /* Adjust as needed */
}

.clv_right_header .clv_menu .clv_menu_nav>ul>li>ul>li {
    display: block;
}

.clv_right_header .clv_menu .clv_menu_nav>ul>li>ul>li>a {
    color: #222222;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    padding: 5px 10px;
    font-family: "Source Sans Pro", sans-serif;
    width: 100%;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_right_header .clv_menu .clv_menu_nav>ul>li>ul>li>a:hover {
    color: #ffffff;
}

.clv_right_header .clv_menu .clv_menu_nav>ul>li>ul>li>a:after {
    display: none;
}

.clv_right_header>.clv_menu>.cart_nav>ul>li {
    display: inline-block;
    position: relative;
    margin-left: 10px;
    padding: 19px 0px;
    padding-left: 14px;
}

.clv_right_header>.clv_menu>.cart_nav>ul>li:last-child:before {
    content: "";
    width: 1px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
}

.clv_right_header>.clv_menu>.cart_nav>ul>li:first-child {
    margin: 0;
    padding: 0;
}

.clv_right_header>.clv_menu>.cart_nav>ul>li.menu_toggle {
    display: none;
    cursor: pointer;
}

.clv_right_header .clv_menu .cart_nav>ul>li>a {
    color: #ffffff;
    font-size: 16px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.search_box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    z-index: 999;
}

.search_box:before {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    content: "";
    z-index: -1;
}

.search_box.search_box_open {
    opacity: 1;
    visibility: visible;
}

.search_box.search_box_open .search_block {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.search_box .search_block {
    position: relative;
    padding: 100px 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: scale(2.3);
    width: 1170px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.search_box .search_block h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    /* text-transform: capitalize; */
    color: #fec007;
}

.search_box .search_close {
    position: absolute;
    top: 30px;
    right: 30px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search_field {
    position: relative;
    border-radius: 10px;
    width: 1070px;
}

.search_box .search_block .search_field input {
    width: 100%;
    height: 70px;
    outline: none;
    color: #333333;
    border: 1px solid #cccccc;
    border-radius: 50px;
    padding: 0px 20px;
    padding-right: 80px;
}

.search_box .search_block .search_field>a {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    color: #ffffff;
    /* text-transform: capitalize; */
    font-size: 20px;
    line-height: 70px;
    background-color: #fec007;
    padding: 0px 50px;
    border-radius: 0px 50px 50px 0px;
    display: inline-block;
    font-weight: 500;
}

.clv_right_header .clv_menu .cart_nav ul>li>a.cart_toggle>span {
    border-radius: 50%;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    background-color: #ffffff;
    color: #fec007;
    display: inline-block;
    font-size: 8px;
    position: absolute;
    right: -5px;
    bottom: -5px;
}

.clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 350px;
    background-color: #ffffff;
    border-radius: 0px 0px 10px 10px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 0px 21px 1px rgba(0, 0, 0, 0.11);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    z-index: 998;
}

.clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box.cart_box_open {
    opacity: 1;
    visibility: visible;
}

.clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box>.cart_section {
    padding: 10px 42px;
    padding-left: 35px;
    background-color: #ffffff;
}

.clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background-color: #fec007;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0px 0px 10px 10px;
    /* text-transform: capitalize; */
}

.clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box>.cart_section>ul>li {
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: center;
    padding: 18px 0px;
    border-bottom: 1px solid #f6f6f6;
}

.clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box>.cart_section>ul>li:last-child {
    border-bottom: none;
}

.clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box>.cart_section>p {
    color: #3d3d3d;
    /* text-transform: capitalize; */
    font-size: 18px;
    font-family: "Source Sans Pro", sans-serif;
    text-align: center;
    font-weight: 500;
    margin: 0;
}

.clv_cart_box>.cart_section>ul>li>.cart_block {
    text-align: center;
    margin: 0px 10px;
}

.clv_cart_box>.cart_section>ul>li>.cart_block>img {
    max-width: 60px;
    max-height: 60px;
    border-radius: 5px;
}

.clv_cart_box>.cart_section>ul>li>.cart_block>h5 {
    margin: 0px 0px 5px;
    /* text-transform: capitalize; */
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}

.item_quantity {
    position: relative;
    max-width: 80px;
}

.item_quantity>input {
    width: 100%;
    border: none;
    font-size: 16px;
    color: #707070;
    background-color: transparent;
    outline: none;
    text-align: center;
}

.item_quantity>a {
    position: absolute;
    top: 50%;
    left: 20px;
    display: inline-block;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 600;
    color: #fec007;
}

.item_quantity>a:last-child {
    left: auto;
    right: 20px;
}

.clv_cart_box>.cart_section>ul>li>.cart_block>h4 {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
}

.clv_cart_box>.cart_section>ul>li>.cart_block>h4>span {
    font-size: 18px;
}

.clv_cart_box>.cart_section>ul>li>h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: "Lato", sans-serif;
    color: #222222;
    width: 75%;
    /* text-transform: capitalize; */
    text-align: center;
}

.clv_cart_box>.cart_section>ul>li>h4 {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
    float: right;
}

.clv_cart_box>.cart_section>ul>li>h4>span {
    font-size: 18px;
}

i.fa {
    color: #9ba1a7;
}

i.fa.fa-link {
    color: #9ba1a7;
    font-size: 12px;
    font-weight: 600;
}

/********************************************************
2. header end
 *******************************************************/
/********************************************************
3. slider start
 *******************************************************/
.index_v1 .clv_rev_slider .rev_column_inner .tp-parallax-wrap {
    left: 265px !important;
}

.index_v1 .clv_rev_slider ul li:last-child .rev_column_inner .tp-parallax-wrap {
    left: 1020px !important;
}

.index_v1 .clv_rev_slider {
    position: relative;
}

.index_v1 .clv_rev_slider .rev-btn:hover {
    background-color: transparent !important;
    color: #fec007 !important;
}

.index_v1 .clv_rev_slider .erinyen.tparrows {
    border: 2px solid #ffffff;
    background: none;
    min-width: 60px;
    min-height: 60px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v1 .clv_rev_slider .erinyen.tparrows:hover {
    border-color: #fec007;
    background: none;
}

.index_v1 .clv_rev_slider .erinyen.tparrows:before {
    font-size: 22px;
    line-height: 55px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v1 .clv_rev_slider .erinyen.tparrows:hover:before {
    color: #fec007;
}

.clv_banner_slider {
    position: relative;
}

.scroll_down {
    position: absolute;
    display: inline-block;
    left: 50%;
    bottom: 40px;
    text-align: center;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 1;
}

.scroll_down span {
    display: inline-block;
    width: 25px;
    height: 35px;
    border-radius: 25px;
    position: relative;
    border: 2px solid #ffffff;
    animation: bounce 3s infinite;
}

.scroll_down span:before {
    content: "";
    display: inline-block;
    height: 6px;
    width: 4px;
    border-radius: 5px;
    background-color: #ffffff;
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
}

.scroll_down p {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
    /* text-transform: capitalize; */
}

@keyframes bounce {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(5px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.clv_banner_slider .clv_slide {
    background: url("../images/slider_bg1.jpg") no-repeat center;
    background-size: cover;
    padding: 272px 0px;
    position: relative;
    z-index: 1;
}

.clv_banner_slider .clv_slide.slide2 {
    background: url("../images/slider_bg2.jpg") no-repeat center;
    background-size: cover;
}

.clv_banner_slider .clv_slide:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(37, 37, 37, 0.7);
    z-index: -1;
}

.clv_banner_slider .clv_slide .clv_slide_inner h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fec007;
    /* text-transform: capitalize; */
    letter-spacing: 3px;
}

.clv_banner_slider .clv_slide .clv_slide_inner h1 {
    font-size: 82px;
    line-height: 82px;
    font-weight: 700;
    color: #ffffff;
    /* text-transform: capitalize; */
}

.clv_banner_slider .clv_slide .clv_slide_inner h2 {
    font-size: 82px;
    font-weight: 300;
    color: #ffffff;
    /* text-transform: capitalize; */
}

.clv_banner_slider .clv_slide .clv_slide_inner .clv_btn {
    margin-top: 10px;
}

.clv_banner_slider .slider_arrow {
    width: 60px;
    height: 60px;
    outline: none;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 40px;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_banner_slider .slider_arrow:hover {
    border-color: #fec007;
    color: #fec007;
}

.clv_banner_slider .slider_arrow.right_arrow {
    left: auto;
    right: 50px;
}

.clv_banner_slider .slider_arrow>svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clv_banner_slider .slider_arrow>svg>path {
    fill: #ffffff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_banner_slider .slider_arrow:hover>svg>path {
    fill: #fec007;
}

.header_location .header_social_links>li>a {
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #b80d14;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    /* background: #DE9EE3; */
}

.header_location .header_social_links {
    margin-top: 0px;
}

.header_social_links>li:first-child {
    margin-left: 0;
}

.header_social_links>li {
    display: inline-block;
    margin: 0px 5px;
}

.wow {
    visibility: visible !important;
}

[data-aos] {
    transition: all 1s ease-in-out;
    opacity: 0;
    /* Ensure it's hidden before animation starts */
}

.aos-animate {
    opacity: 1;
    /* Smoothly fade in when animation starts */
}

.service-shape {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: -1;
    opacity: 0.4;
}

.service-shape img {
    max-width: 500px;
}

/********************************************************
3. slider end
 *******************************************************/
/********************************************************
4. about start
 *******************************************************/
.about-img {
    position: relative;
    margin-top: 63px;
    z-index: 1;
    /* left: 69px; */
    position: relative;
}

.shape-1 {
    position: absolute;
    left: 46px;
    top: -16%;
    -webkit-animation: round-01 7s linear infinite;
    animation: round-01 7s linear infinite;
    z-index: -1;
    border-style: none;
    max-width: 100%;
}

.image2 {
    padding-left: 102px;
    padding-top: 3px;
}

.image2 img {
    border-radius: 50%;
}

@keyframes round-01 {
    0% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(15deg);
    }
}

.inner-column {
    position: relative;
    display: inline-block;
    margin: 60px;
    padding-top: 100px;
}

.inner-column .image {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.image img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.svg-outer {
    position: absolute;
    right: -40px;
    top: 75px;
    /* height: 240px; */
    /* border-radius: 50%; */
    display: inline-block;
    /* border: 2px solid #ffffff; */
    width: 184px;
    height: 184px;
}

.svg-outer1 {
    position: absolute;
    left: -15px;
    bottom: 50px;
    /* height: 205px; */
    /* border-radius: 50%; */
    display: inline-block;
}

.svg-outer2 {
    position: absolute;
    right: -35px;
    bottom: 0px;
    /* height: 205px; */
    /* border-radius: 50%; */
    display: inline-block;
}

.inner-column .svg-boxed {
    position: relative;
    overflow: hidden;
    width: 150px;
    height: 150px;
    z-index: 99;
    /* color: #ffffff; */
    /* font-weight: 400; */
    /* font-size: 28px; */
    text-align: center;
    border-radius: 50%;
    padding-left: 4px;
    line-height: 100px;
    display: inline-block;
    /* background-color: #ffa116; */
    /* transition: all 0.3s ease; */
    -moz-transition: all 0.3s ease;
    /* -webkit-transition: all 0.3s ease; */
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    /* /* border: 8px solid #FFFFFF; */
}

.inner-column .svg-boxed-1 {
    position: relative;
    overflow: hidden;
    width: 110px;
    height: 150px;
    z-index: 99;
    /* color: #ffffff; */
    /* font-weight: 400; */
    /* font-size: 28px; */
    text-align: center;
    border-radius: 18px;
    /* padding-left: 4px; */
    /* line-height: 100px; */
    display: flex;
    /* background-color: #ffa116; */
    /* transition: all 0.3s ease; */
    -moz-transition: all 0.3s ease;
    /* -webkit-transition: all 0.3s ease; */
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    background: linear-gradient(270deg, #d51921 0%, #bb0d14 20%);
}

.inner-column .svg-boxed-2 {
    position: relative;
    overflow: hidden;
    width: 170px;
    height: 170px;
    z-index: 99;
    text-align: center;
    display: flex;
}

.inner-column .svg-boxed span {
    position: relative;
}

.inner-column .svg-boxed-1 span {
    position: relative;
    text-align: center;
    color: #ffffff;
    margin: auto;
}

.inner-column .svg-boxed-2 span {
    position: relative;
    text-align: center;
    color: #ffffff;
    /* height: 100%; */
    margin: auto;
}

.index_v1 .clv_about_wrapper {
    background-image: url("../images/index_v1_about_bg.png");
    background-size: contain;
}

.index_v2 .clv_about_wrapper {
    background-image: url("../images/svg/testimonial-1-UljkUrfk.png");
    background-size: contain;
    animation-delay: 0.1s;
    animation-name: fadeInUp;
    position: relative;
}

.clv_about_wrapper .about_img img {
    border-radius: 10px;
}

.clv_about_wrapper .about_content {
    padding: 50px 0px;
    text-align: justify;
}

.clv_about_wrapper .about_content .about_heading {
    margin-bottom: 20px;
}

.about_content h4 {
    margin-bottom: 10px;
    color: #100f0f;
    text-decoration: underline;
}

.clv_about_wrapper .about_content .para_content p:first-child {
    margin-bottom: 24px;
}

.clv_about_wrapper .about_content .about_heading h2 {
    color: #100f0f;
    /* text-transform: capitalize; */
    margin-bottom: 5px;
    font-family: Poppins;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.clv_about_wrapper .about_content .about_heading h2>span {
    font-weight: 700;
    color: #fec007;
}

.clv_about_wrapper .about_content .about_heading h6 {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    /* text-transform: capitalize; */
}

.clv_about_wrapper .about_content .about_heading .clv_underline {
    margin-top: 13px;
}

.clv_about_wrapper .about_content .video_block {
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.clv_about_wrapper .about_content .video_block>.video_btn>.play_video {
    font-size: 20px;
    font-weight: 600;
    text-transform: lowercase;
    color: #222222;
    display: flex;
    margin-right: 30px;
    align-items: center;
}

.clv_about_wrapper .about_content .video_block>.video_btn>.play_video>span {
    width: 50px;
    height: 50px;
    margin-right: 13px;
    font-size: 16px;
    background-color: #fec007;
    display: inline-block;
    border-radius: 100%;
    position: relative;
    color: #ffffff;
    box-shadow: 0 0 0 rgba(254, 192, 7, 0.4);
    animation: pulse 2s infinite;
}

.video_block span {
    position: relative;
    right: -40px;
}

.video_block i.fa-solid.fa-calendar-days {
    border-radius: 50%;
    border: 3px solid #ffffff;
    padding: 10px;
    background: #b80d14;
    color: white;
    margin: 5px;
}

a.submission_link {
    color: #2ea3f2;
    text-decoration: none;
    word-break: break-all;
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(254, 192, 7, 0.6);
        box-shadow: 0 0 0 0 rgba(254, 192, 7, 0.6);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(254, 192, 7, 0);
        box-shadow: 0 0 0 10px rgba(254, 192, 7, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(254, 192, 7, 0);
        box-shadow: 0 0 0 0 rgba(254, 192, 7, 0);
    }
}

.clv_about_wrapper .about_content .video_block>.video_btn>.play_video>span>i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 2px;
}

/********************************************************
4. about end
 *******************************************************/
/********************************************************
5. counter start
 *******************************************************/
.clv_counter_wrapper {
    position: relative;
    background: url("../images/counter_bg.jpg") no-repeat center;
    background-size: cover;
    padding: 88px 0px 96px;
    z-index: 1;
}

.clv_counter_wrapper:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(37, 37, 37, 0.7);
    z-index: -1;
}

.counter_section {
    margin-top: 36px;
}

.clv_counter_wrapper .counter_block {
    text-align: center;
}

.clv_counter_wrapper .counter_block>.counter_img {
    margin-bottom: 15px;
    display: inline-block;
}

.clv_counter_wrapper .counter_block>.counter_img>span {
    width: 80px;
    height: 80px;
    display: inline-block;
    border-radius: 15px;
    transform: rotate(-45deg);
    position: relative;
}

.clv_counter_wrapper .counter_block>.counter_img>span.red_bg {
    background-color: #f44026;
}

.clv_counter_wrapper .counter_block>.counter_img>span.yellow_bg {
    background-color: #fec422;
}

.clv_counter_wrapper .counter_block>.counter_img>span.orange_bg {
    background-color: #ed6622;
}

.clv_counter_wrapper .counter_block>.counter_img>span.blue_bg {
    background-color: #2491fe;
}

.clv_counter_wrapper .counter_block>.counter_img>span>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.clv_counter_wrapper .counter_block>.counter_img>span>i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    color: #fff;
    font-size: 30px;
}

.clv_counter_wrapper .counter_block.img-2>.counter_img>span>i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    color: #fff;
    font-size: 30px;
}

.clv_counter_wrapper .counter_block.img-3>.counter_img>span>i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    color: #fff;
    font-size: 30px;
}

.clv_counter_wrapper .counter_block.img-4>.counter_img>span>i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    color: #fff;
    font-size: 30px;
}

.clv_counter_wrapper .counter_block>.counter_text>h4 {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
}

.clv_counter_wrapper .counter_block>.counter_text>h5 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    /* text-transform: capitalize; */
}

/********************************************************
5. counter end
*******************************************************/
/********************************************************
6. about farm start
*******************************************************/
.index_v1 .about_farm_wrapper {
    background-image: url("../images/index_v1_farm_bg.png");
    background-size: contain;
}

.about_farm_wrapper .about_content {
    margin-top: 38px;
}

.about_farm_wrapper .about_content .about_heading h2 {
    font-size: 52px;
    /* text-transform: capitalize; */
    color: #222222;
    font-weight: 500;
}

.about_farm_wrapper .about_content .about_heading h2 span {
    font-weight: 700;
}

.about_farm_wrapper .about_content .para_content p:first-child {
    margin-bottom: 24px;
}

.about_farm_wrapper .about_content .about_heading h6 {
    margin: 20px 0px 10px;
    font-size: 20px;
    color: #fec007;
    font-weight: 500;
}

.about_farm_wrapper .about_content .clv_btn {
    margin-top: 9px;
}

.about_farm_wrapper .about_img img {
    border-radius: 10px;
    width: 100%;
}

.about_farm_wrapper .about_img {
    position: relative;
}

.about_farm_wrapper .about_img .about_img_details {
    width: 100%;
    max-width: 470px;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: -80px;
    background-color: #fec007;
    padding: 30px 50px;
    text-align: center;
    position: relative;
}

.about_farm_wrapper .about_img .about_img_details h3 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

.about_farm_wrapper .about_img .about_img_details h1 {
    font-size: 40px;
    color: #ffffff;
    font-weight: 600;
}

/********************************************************
6. about farm end
*******************************************************/
/********************************************************
7. service start
*******************************************************/
.clv_service_wrapper {
    position: relative;
    background-color: #fdfaff;
    padding-top: 90px;
    padding-bottom: 70px;
}

.clv_service_wrapper .service_girl_img {
    position: absolute;
    bottom: -70px;
    right: -253px;
    display: inline-block;
}

.service_main_wrapper {
    margin-top: 25px;
}

.clv_service_wrapper .service_block {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 21px 1px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 40px 40px 20px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_service_wrapper .service_block:before,
.clv_service_wrapper .service_block:after,
.clv_service_wrapper .service_block span:before,
.clv_service_wrapper .service_block span:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-width: 1px 0px 0px 1px;
    border-radius: 10px 0px 0px 0px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_service_wrapper .service_block:after {
    top: auto;
    bottom: 0;
    border-radius: 0px 0px 0px 10px;
    border-width: 0px 0px 1px 1px;
}

.clv_service_wrapper .service_block span:before {
    left: auto;
    right: 0;
    border-radius: 0px 10px 0px 0px;
    border-width: 1px 1px 0px 0px;
}

.clv_service_wrapper .service_block span:after {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    border-radius: 0px 0px 10px 0px;
    border-width: 0px 1px 1px 0px;
}

.clv_service_wrapper .service_block:hover:before {
    width: 90px;
    height: 60px;
    border-color: #fec007;
}

.clv_service_wrapper .service_block:hover:after {
    width: 60px;
    height: 90px;
    border-color: #fec007;
}

.clv_service_wrapper .service_block:hover span:before {
    width: 60px;
    height: 90px;
    border-color: #fec007;
}

.clv_service_wrapper .service_block:hover span:after {
    width: 90px;
    height: 60px;
    border-color: #fec007;
}

.clv_service_wrapper .service_block .service_icon {
    margin-bottom: 14px;
}

.clv_service_wrapper .service_block h4 {
    font-size: 26px;
    font-weight: 600;
    /* text-transform: capitalize; */
    color: #222222;
}

/********************************************************
7. service end
*******************************************************/
/********************************************************
8. testimonial start
*******************************************************/
.clv_testimonial_wrapper {
    position: relative;
    background: url("../images/testimonial_bg.jpg") no-repeat center;
    background-size: cover;
    z-index: 1;
    padding: 90px 0px 60px;
}

.clv_testimonial_wrapper:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(28, 28, 28, 0.8);
    z-index: -1;
}

.index_v1 .testimonial_slider {
    margin-top: 25px;
}

.testimonial_slide {
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    z-index: 1;
}

.testimonial_slider .swiper-slide {
    padding: 40px 100px;
}

.testimonial_slide .rounded_quote {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: -40px;
    left: -40px;
    background-color: #fec007;
    border-radius: 100%;
}

.testimonial_slide .bg_quote {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial_slide .client_img img {
    border-radius: 10px;
}

.testimonial_slide .client_message {
    padding: 10px 20px;
    padding-right: 10px;
}

.testimonial_slide .client_message>p {
    margin: 0;
    margin-bottom: 5px;
}

.testimonial_slide .client_message>h3 {
    font-size: 22px;
    font-weight: 700;
    /* text-transform: capitalize; */
    color: #222222;
}

.testimonial_slide .client_message>h3>span {
    font-size: 15px;
    font-weight: 400;
    color: #757575;
    margin-left: 20px;
    position: relative;
}

.testimonial_slide .client_message>h3>span:before {
    content: "";
    width: 7px;
    height: 1px;
    background-color: #757575;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

.testimonial_slider .slider_arrow {
    position: absolute;
    bottom: 60px;
    right: 150px;
    font-size: 17px;
    cursor: pointer;
    color: #b1b1b1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    z-index: 1;
}

.testimonial_slider .slider_arrow:hover {
    color: #fec007;
}

.testimonial_slider .slider_arrow.left_arrow {
    right: 180px;
}

/********************************************************
8. testimonial end
*******************************************************/
/********************************************************
9. shop start
*******************************************************/
.index_v1 .clv_shop_wrapper {
    background-image: url("../images/index_v1_shop_bg.png");
    background-size: contain;
}

.clv_shop_wrapper {
    padding-top: 90px;
    padding-bottom: 70px;
    position: relative;
}

.shop_slider {
    position: relative;
}

.shop_slider .swiper-container {
    /* padding: 15px 10px 20px; */
}

.shop_slider .swiper-slide {
    /* padding: 10px; */
}

.shop_slider .shop_slide {
    text-align: center;
    padding: 60px 20px 28px;
    position: relative;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 0px 21px 1px rgba(0, 0, 0, 0.06);
}

.shop_slider .shop_slide>.item_image {
    margin-bottom: 40px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.shop_slider .shop_slide:hover>.item_image {
    transform: translateY(40px);
}

.shop_slider .shop_slide>h5 {
    font-size: 26px;
    font-weight: 600;
    color: #222222;
    /* text-transform: capitalize; */
}

.shop_slider .shop_slide>h6 {
    font-size: 26px;
    font-weight: 700;
    color: #fec007;
    /* text-transform: capitalize; */
}

.shop_slider .shop_slide:hover>h6,
.shop_slider .shop_slide:hover>h5 {
    opacity: 0;
    visibility: hidden;
}

.shop_slider .shop_slide>h6>span {
    font-size: 22px;
}

.shop_slider .shop_slide .item_overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background-color: rgba(254, 192, 7, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.shop_slider .shop_slide:hover .item_overlay {
    opacity: 1;
    visibility: visible;
}

.shop_slider .shop_slide .item_overlay>h5 {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    /* text-transform: capitalize; */
}

.shop_slider .shop_slide .item_overlay>h6 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    /* text-transform: capitalize; */
}

.shop_slider .shop_slide .item_overlay>h6>span {
    font-size: 22px;
}

.shop_slider .shop_slide .item_overlay>input[type="checkbox"] {
    position: absolute;
    left: -999px;
}

.shop_slider .shop_slide .item_overlay .wish_icon {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
}

.shop_slider .shop_slide .item_overlay .wish_icon:last-child {
    display: none;
}

.shop_slider .shop_slide .item_overlay.wished .wish_icon:last-child {
    display: block;
}

.shop_slider .shop_slide .item_overlay.wished .wish_icon:first-child {
    display: none;
}

.shop_slider .shop_slide .item_overlay>.shop_btn {
    min-width: 120px;
    height: 40px;
    line-height: 40px;
    margin-top: 20px;
    display: inline-block;
    text-align: center;
    /* text-transform: capitalize; */
    border-radius: 30px;
    font-size: 16px;
    border: 1px solid transparent;
    background-color: #ffffff;
    color: #fec007;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.shop_slider .shop_slide .item_overlay>.shop_btn:hover {
    border-color: #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.clv_shop_wrapper .shop_slider .slider_arrow {
    width: 60px;
    height: 60px;
    outline: none;
    border: 2px solid #e2e2e2;
    border-radius: 50%;
    color: #e2e2e2;
    font-size: 40px;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_shop_wrapper .shop_slider .slider_arrow:hover {
    border-color: #fec007;
    color: #fec007;
}

.clv_shop_wrapper .shop_slider .slider_arrow.right_arrow {
    left: auto;
    right: -100px;
}

.clv_shop_wrapper .shop_slider .slider_arrow>svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clv_shop_wrapper .shop_slider .slider_arrow>svg>path {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_shop_wrapper .shop_slider .slider_arrow:hover>svg>path {
    fill: #fec007;
}

/********************************************************
9. shop end
*******************************************************/
/********************************************************
10. blog start
*******************************************************/
.clv_blog_wrapper {
    background-color: #fdfaff;
    padding-top: 90px;
}

.blog_slider {
    margin-top: 25px;
}

.clv_blog_wrapper .blog_slider .blog_slide {
    position: relative;
    border-radius: 10px;
}

.clv_blog_wrapper .blog_slider .blog_slide .blog_content {
    padding: 25px 30px;
    background-color: #ffffff;
    border-radius: 0px 0px 10px 10px;
}

.clv_blog_wrapper .blog_slider .blog_slide>.blog_image>img {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

.clv_blog_wrapper .blog_slider .blog_slide>.blog_image {
    position: relative;
    z-index: 1;
}

.clv_blog_wrapper .blog_slider .blog_slide>.blog_image:before {
    content: "";
    background-color: #ffffff;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2;
    transform: scale(0);
    transition: all 0.5s ease-in-out;
}

.clv_blog_wrapper .blog_slider .blog_slide:hover>.blog_image:before {
    transform: scale(1);
    opacity: 0;
}

.blog_slide .blog_content .blog_date {
    font-size: 18px;
    font-weight: 600;
    color: #fec007;
    margin-bottom: 6px;
    /* text-transform: capitalize; */
}

.blog_slide .blog_content .blog_title {
    font-size: 22px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 10px;
    /* text-transform: capitalize; */
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.blog_slide .blog_content .blog_title>a {
    color: #222222;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.blog_slide .blog_content .blog_title:hover>a {
    color: #fec007;
}

.blog_slide .blog_content .blog_user {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.blog_slide .blog_content .blog_user .user_name {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.blog_slide .blog_content .blog_user .user_name>img {
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.blog_slide .blog_content .blog_user .user_name>a {
    font-size: 15px;
    /* text-transform: capitalize; */
    margin-left: 20px;
    display: inline-block;
    position: relative;
}

.blog_slide .blog_content .blog_user .user_name>a:before {
    content: "";
    display: block;
    width: 5px;
    height: 1px;
    background-color: #757575;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

.blog_slide .blog_content .blog_user .comment_block span {
    color: #fec007;
}

.blog_slide .blog_content>a {
    /* text-transform: capitalize; */
    color: #f44027;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.blog_slide .blog_content>a:hover {
    color: #fec007;
    letter-spacing: 1px;
}

.blog_slide .blog_content>p {
    margin-bottom: 4px;
}

.clv_blog_wrapper .blog_slider .slider_arrow {
    width: 60px;
    height: 60px;
    outline: none;
    border: 2px solid #e2e2e2;
    border-radius: 50%;
    color: #e2e2e2;
    font-size: 40px;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_blog_wrapper .blog_slider .slider_arrow:hover {
    border-color: #fec007;
    color: #fec007;
}

.clv_blog_wrapper .blog_slider .slider_arrow.right_arrow {
    left: auto;
    right: -100px;
}

.clv_blog_wrapper .blog_slider .slider_arrow>svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clv_blog_wrapper .blog_slider .slider_arrow>svg>path {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_blog_wrapper .blog_slider .slider_arrow:hover>svg>path {
    fill: #fec007;
}

img.icdsaia-right {
    height: 570px;
    float: right;
    border: solid 8px #ffffff;
    box-shadow: 0px 0px 10px #dfdfdf;
    cursor: pointer;
}

.modal-custom {
    max-width: 44%;
}

.close2 {
    opacity: 1;
}

.close2 span {
    color: #f00;
    opacity: 1;
}

/********************************************************
10. blog end
*******************************************************/
/********************************************************
11. gallery start
*******************************************************/
.clv_gallery_wrapper {
    position: relative;
    background: url("../images/gallery_bg.jpg") no-repeat center;
    background-size: cover;
    padding-top: 90px;
    padding-bottom: 85px;
    z-index: 1;
}

.index_v1 .clv_gallery_wrapper .container {
    max-width: 1230px;
}

.clv_gallery_wrapper:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(37, 37, 37, 0.7);
    z-index: -1;
}

.gallery_grid {
    margin-top: 25px;
}

.gallery_grid .gallery_grid_item {
    width: 33%;
    margin-bottom: 30px;
}

.gallery_grid .gallery_grid_item .gallery_image {
    position: relative;
    display: inline-block;
}

.gallery_grid .gallery_grid_item .gallery_image>img {
    border-radius: 10px;
    max-width: 100%;
}

.gallery_grid .gallery_grid_item .gallery_image .gallery_overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(254, 192, 7, 0.8);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.gallery_grid .gallery_grid_item .gallery_image:hover .gallery_overlay {
    opacity: 1;
    visibility: visible;
}

.gallery_grid .gallery_grid_item .gallery_image .gallery_overlay>a {
    font-size: 24px;
    color: #ffffff;
    display: inline-block;
}

.gallery_slider .swiper-container {
    padding-bottom: 30px;
}

.gallery_slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 1);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.gallery_slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
    background-color: #fec007;
    border-radius: 10px;
}

/********************************************************
11. gallery end
*******************************************************/
/********************************************************
12. team start
*******************************************************/
.index_v1 .clv_committee_wrapper {
    background-image: url("../images/index_v1_team_bg.png");
    background-size: contain;
}

.clv_committee_wrapper {
    padding-top: 88px;
}

.clv_committee_wrapper .container {
    max-width: 1200px;
}

.clv_committee_wrapper .team_section {
    margin-top: 25px;
}

.clv_committee_wrapper .team_section .team_block {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 21px 1px rgba(0, 0, 0, 0.07);
}

.clv_committee_wrapper .team_section .team_block .committee_image {
    position: relative;
}

.clv_committee_wrapper .team_section .team_block .committee_details {
    margin-bottom: -47px;
    transform: translateY(0px);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_committee_wrapper .team_section .team_block:hover .committee_details {
    transform: translateY(-60px);
}

.clv_committee_wrapper .team_section .team_block .committee_image .social_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-60px);
    z-index: -1;
    background-color: rgba(254, 192, 7, 0.9);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_committee_wrapper .team_section .team_block:hover .committee_image .social_overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    z-index: 1;
}

.clv_committee_wrapper .team_section .team_block .committee_image .social_overlay p {
    font-size: 16px;
    color: #ffffff;
    /* text-transform: capitalize; */
    margin-bottom: 0;
}

.clv_committee_wrapper .team_section .team_block .committee_image .social_overlay ul>li {
    display: inline-block;
    margin: 0px 10px;
}

.clv_committee_wrapper .team_section .team_block .committee_image .social_overlay ul>li>a {
    display: inline-block;
    font-size: 18px;
    color: #ffffff;
}

.clv_committee_wrapper .team_section .team_block .committee_details .committee_name {
    text-align: center;
    padding: 14px 0px 15px;
    background-color: #ffffff;
}

.clv_committee_wrapper .team_section .team_block .committee_details .committee_name h3 {
    font-size: 24px;
    color: #222222;
    margin-bottom: 3px;
    /* text-transform: capitalize; */
    font-weight: 600;
}

.clv_committee_wrapper .team_section .team_block .committee_details .committee_name p {
    color: #fec007;
    margin-bottom: 5px;
    /* text-transform: capitalize; */
}

.clv_committee_wrapper .team_section .team_block .committee_details .committee_name span {
    display: block;
    width: 50px;
    height: 2px;
    opacity: 0;
    background-color: #fec007;
    margin: 15px auto 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_committee_wrapper .team_section .team_block:hover .committee_details .committee_name span {
    opacity: 1;
}

/********************************************************
12. team end
*******************************************************/
/********************************************************
13. partner start
*******************************************************/
.clv_partner_wrapper {
    /* background-color: #fdfaff; */
}

.partner_slide {
    margin-bottom: 20px;
}

.partner_slider .partner_slide .partner_image {
    text-align: center;
    background-color: #ffffff;
    padding: 27px 0px 28px;
    border: 1px dashed #e8e8e8;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.partner_image img {
    width: 117px;
    text-align: center;
    margin: auto;
}

.partner_slider .partner_slide .partner_image:hover {
    border-color: #fec007;
    background-color: #fec007;
}

.partner_slider .partner_slide .partner_image svg path {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.partner_slider .partner_slide .partner_image:hover svg path {
    fill: #ffffff;
}

.clv_partner_wrapper .partner_slider .slider_arrow {
    width: 40px;
    height: 40px;
    outline: none;
    border: 2px solid #e2e2e2;
    border-radius: 50%;
    color: #e2e2e2;
    font-size: 20px;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_partner_wrapper .partner_slider .slider_arrow:hover {
    border-color: #fec007;
    color: #fec007;
}

.clv_partner_wrapper .partner_slider .slider_arrow.right_arrow {
    left: auto;
    right: -100px;
}

.clv_partner_wrapper .partner_slider .slider_arrow>svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clv_partner_wrapper .partner_slider .slider_arrow>svg>path {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_partner_wrapper .partner_slider .slider_arrow:hover>svg>path {
    fill: #fec007;
}

/********************************************************
13. partner end
*******************************************************/
/********************************************************
14. newsletter start
*******************************************************/
.clv_newsletter_wrapper {
    padding: 38px 60px 55px;
    display: flex;
    align-items: center;
    background-color: #fec007;
    border-radius: 20px;
    margin-top: 100px;
    margin-bottom: -100px;
    position: relative;
    z-index: 1;
}

.clv_newsletter_wrapper .newsletter_text {
    width: 40%;
}

.clv_newsletter_wrapper .newsletter_text h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    /* text-transform: capitalize; */
    margin-bottom: 5px;
}

.clv_newsletter_wrapper .newsletter_text h4 {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    /* text-transform: capitalize; */
}

.clv_newsletter_wrapper .newsletter_field {
    width: 60%;
}

.clv_newsletter_wrapper .newsletter_field h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    /* text-transform: capitalize; */
    margin-bottom: 14px;
}

.clv_newsletter_wrapper .newsletter_field .newsletter_field_block {
    max-width: 610px;
    width: 100%;
    position: relative;
}

.clv_newsletter_wrapper .newsletter_field .newsletter_field_block>input {
    width: 100%;
    height: 50px;
    padding: 0px 20px;
    padding-right: 180px;
    border-radius: 30px;
    border: none;
    outline: none;
}

.clv_newsletter_wrapper .newsletter_field .newsletter_field_block>a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    line-height: 50px;
    padding: 0px 40px;
    border-radius: 30px;
    background-color: #222222;
    /* text-transform: capitalize; */
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_newsletter_wrapper .newsletter_field .newsletter_field_block>a:hover {
    background-color: #555555;
}

/********************************************************
14. newsletter end
*******************************************************/
/********************************************************
15. footer start
*******************************************************/
.clv_footer_wrapper {
    position: relative;
    /* padding-top: 200px;
	padding-bottom: 96px; */
    background-color: #f1f1f1;
    background-image: url("../images/svg/one-world-peace-connection-relationship-interconnection-concept.png");
    background-size: contain;
}

.clv_footer_wrapper img.foot_girl {
    position: absolute;
    bottom: 0;
    right: 30px;
}

.clv_footer_wrapper .footer_block .footer_logo {
    /* margin-bottom: 18px; */
}

.clv_footer_wrapper .footer_block .footer_logo img {
    width: 180px;
    /* padding: 5px; */
    position: relative;
    bottom: 22px;
}

.clv_footer_wrapper .footer_block p {
    color: #4e4e4e;
    margin-bottom: 30px;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-wrap-style: balance;
}

.em_bar_bg {
    height: 2px;
    width: 90px;
    background: #ddd;
    /* margin: 10px auto; */
    margin-bottom: 30px;
    position: relative;
    border-radius: 30px;
}

.em_bar_bg:before {
    content: "";
    position: absolute;
    left: 0;
    top: -3.7px;
    height: 9px;
    width: 9px;
    border-radius: 50%;
    background: #b80d14;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: move-bg;
    animation-name: move-bg;
}

@keyframes move-bg {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(88px);
        transform: translateX(88px);
    }
}

.clv_footer_wrapper .footer_block h6 {
    text-transform: uppercase;
    color: #fec007;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
}

.clv_footer_wrapper .footer_block h3 {
    color: #bcbcbc;
    font-size: 34px;
}

.clv_footer_wrapper .footer_block .footer_heading {
    margin-bottom: 20px;
    position: relative;
}

.clv_footer_wrapper .footer_block .footer_heading>h4 {
    font-size: 22px;
    font-weight: 700;
    /* text-transform: capitalize; */
    color: #262626;
}

.clv_footer_wrapper .footer_block .useful_links>li {
    display: block;
    margin-bottom: 20px;
}

.clv_footer_wrapper .footer_block .useful_links>li:last-child {
    margin-bottom: 0;
}

.clv_footer_wrapper .footer_block .useful_links>li>a {
    display: inline-block;
    color: #262626;
    /* text-transform: capitalize; */
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.clv_footer_wrapper .footer_block .useful_links>li>a:hover {
    color: #dc3545;
}

.clv_footer_wrapper .footer_block .useful_links>li>a>span {
    margin-right: 10px;
}

.clv_footer_wrapper .footer_block .instagram_links>li {
    display: inline-block;
    margin: 0px 5px 10px 0px;
}

.clv_footer_wrapper .footer_block .instagram_links>li>a {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.clv_footer_wrapper .footer_block .instagram_links>li>a:before {
    content: "";
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(254, 192, 7, 0.7);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_footer_wrapper .footer_block .instagram_links>li>a:hover:before {
    opacity: 1;
    visibility: visible;
}

.clv_footer_wrapper .footer_block .instagram_links>li>a>img {
    border-radius: 5px;
}

/********************************************************
15. footer end
*******************************************************/
/********************************************************
16. copyright start
*******************************************************/
.clv_copyright_wrapper {
    background-color: #161c23;
    text-align: center;
    padding: 24px 14px;
}

.clv_copyright_wrapper>p {
    margin: 0;
    /* text-transform: capitalize; */
    color: #ffffff;
    font-size: 16px;
}

.clv_copyright_wrapper>p>a {
    color: #fec007;
}

/********************************************************
16. copyright end
*******************************************************/
/********************************************************
17. Index2 start
*******************************************************/

.index_v2 .clv_heading h3 {
    color: #000000;
    font-family: Poppins;
    font-size: 35px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding: 3px 0;
    /* background: #8f0006; */
}

.committee_wrapper .clv_heading h3 {
    color: white;
    font-family: Poppins;
    font-size: 25px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding: 3px 0;
    background: #8f0006;
}

/*Header Start*/
.index_v2.clv_main_wrapper .clv_header {
    background-color: #f4f9ff;
}

.index_v2.clv_main_wrapper .clv_header .clv_right_header .clv_address {
    margin-left: 10%;
    padding: 26px 0;
}

img.dsai-logo {
    width: 110px !important;
    border: solid 1px #000;
}

img.sal-logo {
    width: 102px !important;
}

.index_v2 .clv_right_header .clv_address .address_block span.addr_icon {
    margin-top: 4px;
}

.addr_icon i {
    color: #9ba1a7;
    font-size: 13px;
    font-weight: 600;
}

.index_v2.clv_main_wrapper .clv_header .clv_address .header_location {
    text-align: left;
    margin-left: 45px;
}

.index_v2.clv_main_wrapper .clv_header .clv_address .header_location>p {
    margin: 0;
}

.index_v2.clv_main_wrapper .clv_header .clv_address .header_location>h5 {
    font-size: 13px;
    font-weight: 600;
    /* text-transform: capitalize; */
    color: #000000;
}

.organized_by {
    text-align: left;
    margin-left: 45px;
}

.organized_by h5 {
    font-size: 15px;
    font-weight: 600;
    /* text-transform: capitalize; */
    color: #000000;
    display: inline-block;
}

.organized_by ul.header_social_links {
    display: inline-block;
    padding: 0px 10px;
}

.organized_by img {
    width: 95px;
}

.index_v2.clv_main_wrapper .clv_right_header {
    position: relative;
}

.index_v2.clv_main_wrapper .clv_right_header .clv_address .address_block:after {
    content: "";
    border-right: 1px solid #ececec;
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    display: block;
}

.index_v2.clv_main_wrapper .clv_right_header .clv_address .address_block.br_none:after {
    display: none;
}

.clv_rev_slider {
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 0px;
    /* height:600px; */
}

.banner-icon {
    /* position: absolute;
	right: 160px;
	z-index: 999;
	width: 33%;
	top: 100px; */
    position: absolute;
    right: 0px;
    z-index: -1;
    width: 25%;
    bottom: -20px;
}

.ai-roc {
    position: absolute;
    width: 15%;
    bottom: 7px;
    webkit-animation-name: alltuchtopdown;
    animation-name: alltuchtopdown;
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.banner-icon img {
    width: 100%;
    transition: all 0.3s ease-out 0s;
    opacity: 0.8;
    webkit-animation-name: alltuchtopdown;
    animation-name: alltuchtopdown;
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes alltuchtopdown {
    0% {
        transform: rotateX(0deg) translateY(0px);
    }

    50% {
        transform: rotateX(0deg) translateY(-30px);
    }

    100% {
        transform: rotateX(0deg) translateY(0px);
    }
}

.index_v2.clv_main_wrapper .clv_right_header .clv_menu {
    background-color: #f4f9ff;
    border-radius: 50px;
    position: absolute;
    left: 0;
    bottom: -46px;
    width: 100%;
    padding-left: 65px;
    z-index: 10;
    background-color: #9b0107;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 35px;
}

.index_v2.clv_main_wrapper .clv_right_header .clv_menu .clv_menu_nav>ul>li {
    padding: 11px 0px 15px;
}

.index_v2.clv_main_wrapper .clv_right_header .clv_menu .clv_menu_nav>ul>li>ul {
    border-bottom-color: #eb3940;
}

.index_v2.clv_main_wrapper .clv_right_header .clv_menu .clv_menu_nav>ul>li>a {
    color: #ffffff;
    padding: 5px 0px;
    margin: 0px 10px;
}

.index_v2.clv_main_wrapper .clv_right_header .clv_menu .clv_menu_nav>ul>li>a:hover {
    color: #ffffff;
}

.index_v2.clv_main_wrapper .clv_right_header .clv_menu .clv_menu_nav>ul>li>a:after {
    width: 100%;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
}

.index_v2.clv_main_wrapper .clv_right_header .clv_menu .clv_menu_nav>ul>li>a:hover:after {
    background-color: #ca1921;
    transform: translateX(-50%) scaleX(1);
}

.clv_menu_nav li.active>a {
    color: #ffbf00 !important;
    font-weight: 600;
}

.index_v2.clv_main_wrapper .clv_right_header .clv_menu .clv_menu_nav>ul>li.active>a:after {
    background-color: #ca1921;
    transform: translateX(-50%) scaleX(1);
}

.index_v2.clv_main_wrapper .clv_right_header .clv_menu .cart_nav>ul>li>a {
    color: #ca1921;
}

.index_v2.clv_main_wrapper .clv_right_header .clv_menu .clv_menu_nav>ul>li>ul>li>a:hover {
    color: black;
}

.index_v2.clv_main_wrapper .clv_right_header>.clv_menu>.cart_nav>ul>li {
    position: relative;
}

.index_v2.clv_main_wrapper .clv_right_header>.clv_menu>.cart_nav>ul>li:first-child:after {
    content: "";
    border-right: 1px solid #ececec;
    position: absolute;
    right: -15px;
    top: 0;
    bottom: 0;
    display: block;
}

.index_v2.clv_main_wrapper .clv_right_header>.clv_menu>.appointment_btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    background-color: #000;
    color: #ffffff;
    border-radius: 50px;
    /* text-transform: capitalize; */
    margin: 10px;
    font-family: Poppins;
    font-size: 15px;
    font-weight: 400;
    line-height: 25.5px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.index_v2.clv_main_wrapper .search_box .search_block h3 {
    color: #8d4293;
}

.index_v2.clv_main_wrapper .search_box .search_block .search_field>a {
    background-color: #8d4293;
}

/*Header End*/
/*Banner Start*/
.index_v2 .clv_rev_slider .erinyen.tparrows {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v2 .clv_rev_slider .erinyen.tparrows:hover {
    min-width: 110px;
    border-radius: 40px;
}

.index_v2 .clv_rev_slider .erinyen.tparrows:after,
.index_v2 .clv_rev_slider .erinyen.tparrows:before {
    content: "Prev";
    position: absolute;
    left: 40px;
    line-height: 70px;
    top: 0;
    font-size: 20px;
    color: #ffffff;
    display: block;
    line-height: 70px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    z-index: 2;
}

.index_v2 .clv_rev_slider .erinyen.tparrows:after {
    opacity: 0;
    visibility: hidden;
}

.index_v2 .clv_rev_slider .erinyen.tparrows:hover:after {
    opacity: 1;
    visibility: visible;
}

.index_v2 .clv_rev_slider .erinyen.tparrows.tp-rightarrow::after {
    content: "Next";
    left: auto;
    right: 40px;
}

.index_v2 .clv_rev_slider .erinyen.tparrows.tp-rightarrow {
    left: auto !important;
    right: -70px !important;
    transform: matrix(1, 0, 0, 1, -110, -35) !important;
}

.index_v2 .clv_rev_slider .erinyen.tparrows.tp-rightarrow:hover::before {
    content: "\e825";
    left: auto;
    right: 25px;
}

.index_v2 .clv_rev_slider .erinyen.tparrows.tp-rightarrow::before {
    content: "\e825";
    left: auto;
    right: 50%;
    transform: translateX(50%);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v2 .clv_rev_slider .erinyen.tparrows:before {
    content: "\e824";
    font-family: "revicons";
    left: 50%;
    color: #ffffff;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v2 .clv_rev_slider .erinyen.tparrows:hover:before {
    left: 25px;
}

.index_v2.clv_main_wrapper .clv_banner_slider .clv_slide {
    background: url("../images/index2_slider_bg1.jpg") no-repeat center;
    background-size: cover;
}

.index_v2.clv_main_wrapper .clv_banner_slider .clv_slide.slide2 {
    background: url("../images/index2_slider_bg2.jpg") no-repeat center;
    background-size: cover;
}

.index_v2.clv_main_wrapper .clv_banner_slider .clv_slide:before {
    background-color: rgba(0, 0, 0, 0.7);
}

.index_v2.clv_main_wrapper .clv_banner_slider .clv_slide .clv_slide_inner h3 {
    color: #b80d14;
}

.index_v2.clv_main_wrapper .clv_banner_slider .clv_btn {
    margin-top: 30px;
}

.index_v2 .clv_btn:hover {
    color: #b80d14;
}

.index_v2 .clv_btn::before {
    background-color: #b80d14;
    background: #b80d14;
}

.index_v2 .clv_btn::after {
    border: 1px solid #d51921;
    border: 1px solid #d51921;
}

.button {
    display: inline-block;
    position: relative;
    background-color: #d51921;
    color: white;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

    padding: 13px 43px 10px 50px;
    text-align: center;
    cursor: pointer;
    clip-path: polygon(15% 0%, 100% 0, 85% 100%, -38% 100%, 0 100%);
    transition: background-color 0.3s ease;
    text-align: center;
}

.button .arrow {
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
}

.button:hover {
    background-color: #d51921;
    /* Slightly lighter purple on hover */
}

.clv_btn.button {
    display: inline-block;
    position: relative;
    background-color: #d51921;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 13px 43px 10px 29px;
    text-align: center;
    cursor: pointer;
    clip-path: polygon(15% 0%, 100% 0, 85% 100%, -38% 100%, 0 100%);
    transition: background-color 0.3s ease;
    text-align: center;
    border-radius: 0;
}

.clv_btn.button .arrow {
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
}

.index_v2 .clv_btn.button:hover {
    background-color: #8e59af;
    /* Slightly lighter purple on hover */
}

.index_v2 .clv_banner_slider .slider_arrow {
    border: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.index_v2 .clv_banner_slider .slider_arrow:hover {
    background-color: rgba(0, 0, 0, 1);
    width: 100px;
    border-radius: 50px;
}

.index_v2 .clv_banner_slider .slider_arrow>svg,
.index_v2 .clv_banner_slider .slider_arrow.right_arrow>svg {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v2 .clv_banner_slider .slider_arrow:hover>svg {
    left: 30%;
}

.index_v2 .clv_banner_slider .slider_arrow.right_arrow>svg {
    left: auto;
    right: 50%;
    transform: translate(50%, -50%);
}

.index_v2 .clv_banner_slider .slider_arrow.right_arrow:hover>svg {
    left: auto;
    right: 30%;
}

.index_v2 .clv_banner_slider .slider_arrow span {
    font-size: 15px;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v2 .clv_banner_slider .slider_arrow:hover span {
    left: 30%;
    margin-left: 30px;
    color: #ffffff;
    opacity: 1;
    visibility: visible;
}

.index_v2 .clv_banner_slider .slider_arrow.right_arrow>span {
    left: auto;
    right: -30%;
}

.index_v2 .clv_banner_slider .slider_arrow.right_arrow:hover>span {
    right: 20%;
}

/*Banner End*/
/*Service Feature Start*/
.clv_features_wrapper .feature_block {
    padding: 30px 20px;
    background-color: #f4f9ff;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_features_wrapper .feature_block:hover {
    background-color: #ffffff;
    box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.06);
}

.clv_features_wrapper .feature_block .feature_img {
    padding-bottom: 14px;
}

.clv_features_wrapper .feature_block h3 {
    font-size: 26px;
    font-weight: 600;
    /* text-transform: capitalize; */
    color: #222222;
    margin-bottom: 14px;
    padding-bottom: 14px;
    position: relative;
}

.clv_features_wrapper .feature_block h3:before,
.clv_features_wrapper .feature_block h3:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    height: 1px;
    width: 110px;
    transform: translateX(-50%);
    background-color: #8d4293;
}

.clv_features_wrapper .feature_block h3:after {
    width: 50px;
    top: 115%;
}

.clv_features_wrapper .feature_block .clv_btn {
    height: 40px;
    line-height: 40px;
    min-width: 135px;
}

/*Service Feature End*/
/*About Agriculture Start*/
.clv_about_agriculture_wrapper {
    position: relative;
    background: url("../images/about_agri_bg.jpg") no-repeat center;
    background-size: cover;
    padding-bottom: 140px;
}

.clv_about_agriculture_wrapper .about_agri_image {
    position: relative;
    text-align: right;
    z-index: 1;
}

.clv_about_agriculture_wrapper .about_agri_image>img {
    border-radius: 10px;
}

.clv_about_agriculture_wrapper .about_agri_image:after {
    content: "";
    display: block;
    position: absolute;
    top: 40px;
    left: 15px;
    right: 40px;
    bottom: -40px;
    background-color: #74c482;
    border-radius: 10px;
    z-index: -1;
}

.clv_about_agriculture_wrapper .about_agri_content {
    padding-top: 30px;
}

.clv_about_agriculture_wrapper .about_agri_content h2 {
    font-size: 40px;
    font-weight: 700;
    /* text-transform: capitalize; */
    color: #222222;
    margin-bottom: 15px;
}

.clv_about_agriculture_wrapper .about_agri_content h6 {
    font-size: 20px;
    /* text-transform: capitalize; */
    color: #222222;
    font-family: "Lato", sans-serif;
    margin-bottom: 23px;
}

.clv_about_agriculture_wrapper .about_agri_content .auth_sign_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.clv_about_agriculture_wrapper .about_agri_content .auth_sign_block .agri_auth_name>h5 {
    font-size: 22px;
    /* text-transform: capitalize; */
    color: #222222;
}

.clv_about_agriculture_wrapper .about_agri_content .auth_sign_block .agri_auth_name>p {
    /* text-transform: capitalize; */
}

/*About Agriculture End*/
/*About Product Start*/
.clv_about_product {
    padding-bottom: 121px;
}

.clv_about_product .about_product_contect {
    position: relative;
    padding-top: 70px;
}

.clv_about_product .about_product_contect>h2 {
    font-size: 40px;
    font-weight: 700;
    /* text-transform: capitalize; */
    color: #222222;
    margin-bottom: 14px;
}

.clv_about_product .about_product_contect>h6 {
    font-size: 20px;
    color: #8d4293;
    font-family: "Lato", sans-serif;
    margin-bottom: 19px;
}

.clv_about_product .about_product_contect .about_product_contact {
    position: relative;
    padding: 30px;
    padding-left: 28px;
    padding-right: 55px;
    margin-right: 105px;
    background-color: #98c7e2;
    border-radius: 10px;
}

.clv_about_product .about_product_contect .about_product_contact h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 7px;
    /* text-transform: capitalize; */
    color: #ffffff;
}

.clv_about_product .about_product_contect .about_product_contact h3 {
    font-size: 40px;
    font-weight: 700;
    /* text-transform: capitalize; */
    color: #ffffff;
}

.clv_about_product .about_product_contect .about_product_contact>span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border: 6px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    background-color: #98c7e2;
    top: 50%;
    right: -45px;
    transform: translateY(-50%);
}

.clv_about_product .about_keynote_speakers_image {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.clv_about_product .about_keynote_speakers_image>img {
    border-radius: 10px;
}

.clv_about_product .about_keynote_speakers_image .play_btn_block {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
}

.clv_about_product .about_keynote_speakers_image .play_btn_block a>span {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.5);
    background-color: #ffffff;
    border-radius: 50%;
    width: 88px;
    height: 88px;
    animation: pulse2 2s infinite;
}

@keyframes pulse2 {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.clv_about_product .about_keynote_speakers_image:after {
    content: "";
    display: block;
    position: absolute;
    top: 40px;
    left: 40px;
    right: -40px;
    bottom: -40px;
    background-color: #98c7e2;
    border-radius: 10px;
    z-index: -1;
}

/*About Product End*/
/*Agriculture Services Start*/
.agri_service_wrapper {
    position: relative;
    background-color: #f4f8ff;
    padding: 88px 0px 70px;
}

.agri_boy_image {
    position: absolute;
    bottom: 0px;
    left: 20%;
}

.agri_service_section .agri_service_block {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 17px 1px rgba(0, 0, 0, 0.06);
    padding: 52px 0px 47px;
    margin-bottom: 30px;
    text-align: center;
}

.agri_service_inner {
    margin-top: 30px;
}

.agri_service_section .agri_service_block .agrice_service_image {
    margin-bottom: 15px;
}

.agri_service_section .agri_service_block h4 {
    font-size: 22px;
    font-weight: 600;
    color: #222222;
    /* text-transform: capitalize; */
}

/*Agriculture Services End*/
/*Agriculture Counter Start*/
.index_v2 .clv_counter_wrapper {
    background: none;
    background-color: #f5f5f5;
}

.index_v2 .clv_counter_wrapper:before {
    display: none;
}

.index_v2 .clv_counter_wrapper .counter_block>.counter_img>span {
    border: 1px dashed #dcdcdc;
}

.index_v2 .clv_counter_wrapper .counter_block.img-1>.counter_img>span {
    border: 1px dashed #f6e6f7;
    background: #104692;
}

.index_v2 .clv_counter_wrapper .counter_block.img-2>.counter_img>span {
    border: 1px dashed #fff;
    background: #104692;
}

.index_v2 .clv_counter_wrapper .counter_block.img-3>.counter_img>span {
    border: 1px dashed #fff;
    background: #104692;
}

.index_v2 .clv_counter_wrapper .counter_block.img-4>.counter_img>span {
    border: 1px dashed #fff;
    background: #104692;
}

.index_v2 .clv_counter_wrapper .counter_block>.counter_text>h5 {
    color: #222222;
}

.clv_counter_wrapper .counter_block>.counter_text>h4.red_color {
    color: #f44026;
}

.clv_counter_wrapper .counter_block.img-1>.counter_text>h4.red_color {
    color: #fff;
}

.clv_counter_wrapper .counter_block.img-2>.counter_text>h4 {
    color: #fff;
}

.clv_counter_wrapper .counter_block.img-3>.counter_text>h4 {
    color: #fff;
}

.clv_counter_wrapper .counter_block.img-4>.counter_text>h4 {
    color: #fff;
}

.clv_counter_wrapper .counter_block>.counter_text>h4.yellow_color {
    color: #fec422;
}

.clv_counter_wrapper .counter_block>.counter_text>h4.orange_color {
    color: #ed6622;
}

.clv_counter_wrapper .counter_block>.counter_text>h4.blue_color {
    color: #fff;
}

/*Agriculture Counter End*/
/*Agriculture Testimonial Start*/
.agri_testimonial_wrapper {
    background-color: #f4f8ff;
    padding-bottom: 80px;
    padding-top: 86px;
}

.agri_testimonial_wrapper .agri_testimonial_content {
    margin-top: 69px;
}

.agri_testimonial_wrapper .agri_testimonial_content h3 {
    font-size: 40px;
    font-weight: 700;
    /* text-transform: capitalize; */
    color: #8d4293;
}

.agri_testimonial_wrapper .agri_testimonial_slider {
    position: relative;
}

.agri_testimonial_wrapper .agri_testimonial_slider .agri_arrow {
    position: absolute;
    top: 47px;
    right: 40px;
    z-index: 1;
    width: 60px;
    height: 50px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f0f0f0;
    border-radius: 0px 25px 25px 0;
    cursor: pointer;
    background-color: #ffffff;
    box-shadow: 6px 0px 20px 0px rgba(0, 0, 0, 0.06);
}

.agri_testimonial_wrapper .agri_testimonial_slider .agri_arrow.agri_testimonial_left {
    right: 100px;
    border-radius: 25px 0px 0px 25px;
    border: none;
    box-shadow: 1px 0px 20px 1px rgba(0, 0, 0, 0.06);
}

.agri_testimonial_wrapper .agri_testimonial_slider .agri_arrow svg>path {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.agri_testimonial_wrapper .agri_testimonial_slider .agri_arrow:hover svg>path {
    fill: #8d4293;
}

.agri_testimonial_wrapper .agri_testimonial_slider .swiper-container {
    padding: 70px 0px 20px;
}

.agri_testimonial_wrapper .agri_testimonial_slider .swiper-container .swiper-slide {
    padding: 0px 10px;
}

.agri_testimonial_wrapper .agri_testimonial_slider .agri_testimonial_slide {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 60px 20px 30px;
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
    z-index: 1;
}

.agri_testimonial_wrapper .agri_testimonial_slider .agri_testimonial_slide .agri_testimonial_image {
    position: absolute;
    display: block;
    bottom: 0;
}

.agri_testimonial_wrapper .agri_testimonial_slider .agri_testimonial_slide .agri_testimonial_message {
    margin-left: 200px;
    position: relative;
    z-index: 1;
}

.agri_testimonial_wrapper .agri_testimonial_slider .agri_testimonial_slide .agri_testimonial_message p {
    font-style: italic;
    margin-bottom: 5px;
}

.agri_testimonial_wrapper .agri_testimonial_slider .agri_testimonial_slide .agri_quate {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.agri_testimonial_wrapper .agri_testimonial_slider .agri_testimonial_slide .agri_testimonial_message h4 {
    font-size: 18px;
    font-weight: 700;
    /* text-transform: capitalize; */
    color: #222222;
}

.agri_testimonial_wrapper .agri_testimonial_slider .agri_testimonial_slide .agri_testimonial_message h4>span {
    font-size: 15px;
    color: #757575;
    font-weight: 400;
    /* text-transform: capitalize; */
    margin-left: 20px;
    position: relative;
}

.agri_testimonial_wrapper .agri_testimonial_slider .agri_testimonial_slide .agri_testimonial_message h4>span:before {
    content: "";
    width: 7px;
    height: 1px;
    background-color: #757575;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

/*Agriculture Testimonial End*/
/*Agriculture Shop Start*/
.index_v2 .shop_slider .shop_slide {
    box-shadow: none;
    border: 1px dashed #e0e0e0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v2 .shop_slider .shop_slide:hover {
    border-color: transparent;
}

.index_v2 .shop_slider .shop_slide .item_overlay>h5 {
    font-size: 22px;
}

.index_v2 .shop_slider .shop_slide .item_overlay {
    background-color: rgba(31, 161, 46, 0.85);
}

.index_v2 .shop_slider .shop_slide .item_overlay>.shop_btn {
    color: #8d4293;
}

.index_v2 .shop_slider .shop_slide .item_overlay>.shop_btn:hover {
    color: #ffffff;
}

.index_v2 .shop_slider .shop_slide .item_details {
    text-align: left;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v2 .shop_slider .shop_slide .item_name {
    display: inline-block;
}

.index_v2 .shop_slider .shop_slide .item_name h5 {
    font-size: 22px;
    color: #222222;
    font-weight: 600;
    display: inline-block;
    /* text-transform: capitalize; */
}

.index_v2 .shop_slider .shop_slide .item_name h3 {
    font-size: 16px;
    color: #8d4293;
    font-weight: 600;
    /* text-transform: capitalize; */
}

.index_v2 .shop_slider .shop_slide .item_details h6 {
    font-size: 26px;
    color: #222222;
    font-weight: 600;
    float: right;
    display: inline-block;
    /* text-transform: capitalize; */
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v2 .shop_slider .shop_slide .item_details h6 span {
    font-size: 20px;
}

.index_v2 .shop_slider .shop_slide:hover .item_details,
.index_v2 .shop_slider .shop_slide:hover .item_details h6 {
    opacity: 0;
    visibility: hidden;
}

.index_v2 .clv_shop_wrapper .shop_slider .slider_arrow {
    width: 40px;
    height: 40px;
    border-width: 1px;
}

.index_v2 .clv_shop_wrapper .shop_slider .slider_arrow:hover {
    background-color: #8d4293;
    border-color: #8d4293;
}

.index_v2 .clv_shop_wrapper .shop_slider .slider_arrow:hover svg path {
    fill: #ffffff;
}

/*Agriculture Shop End*/
/*Agriculture Blog Start*/
.agri_blog_wrapper {
    background-color: #f4f8ff;
    padding-top: 88px;
    padding-bottom: 95px;
}

.agri_blog_inner {
    margin-top: 25px;
}

.blog_section .agri_blog_image {
    position: relative;
}

.blog_section .agri_blog_image img {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

.blog_section .agri_blog_image .agri_blog_date {
    position: absolute;
    bottom: -20px;
    left: 35px;
    display: flex;
    align-items: center;
    font-family: "Source Sans Pro", sans-serif;
    justify-content: center;
    /* text-transform: capitalize; */
    width: 150px;
    height: 45px;
    font-size: 18px;
    font-weight: 700;
    color: #8d4293;
    background-color: #ffffff;
    border-radius: 30px;
}

.blog_section .regist_content {
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 0px 0px 10px 10px;
}

.blog_section .regist_content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #222222;
    /* text-transform: capitalize; */
}

.blog_section .regist_content h3>a {
    color: #222222;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.blog_section .regist_content h3>a:hover {
    color: #8d4293;
}

.blog_section .blog_user {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 9px;
}

.blog_section .blog_user .user_name {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.blog_section .blog_user .user_name>img {
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.blog_section .blog_user .user_name>a {
    font-size: 15px;
    /* text-transform: capitalize; */
    margin-left: 20px;
    display: inline-block;
    position: relative;
}

.blog_section .blog_user .user_name>a:before {
    content: "";
    display: block;
    width: 5px;
    height: 1px;
    background-color: #757575;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

.blog_section .blog_user .comment_block span {
    color: #fec007;
    font-size: 22px;
}

.blog_section .regist_content>p {
    margin: 0;
}

.blog_section .regist_content>a {
    /* text-transform: capitalize; */
    color: #f44027;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.blog_section .regist_content>a:hover {
    color: #8d4293;
    letter-spacing: 1px;
}

.right_blog_section .right_blog_block {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 10px;
}

.right_blog_section .right_blog_block .right_blog_image img {
    border-radius: 10px 0px 0px 10px;
}

.right_blog_section .right_blog_block .right_blog_content {
    padding: 18px 30px;
    padding-right: 5px;
}

.right_blog_section .right_blog_block .right_blog_content .agri_blog_date {
    font-size: 18px;
    font-weight: 700;
    font-family: "Source Sans Pro", sans-serif;
    color: #8d4293;
    display: inline-block;
    /* text-transform: capitalize; */
}

.right_blog_section .right_blog_block .right_blog_content h3 {
    font-size: 22px;
    line-height: 33px;
    font-weight: 700;
    color: #222222;
    /* text-transform: capitalize; */
}

.right_blog_section .right_blog_block .right_blog_content h3>a {
    color: #222222;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.right_blog_section .right_blog_block .right_blog_content h3>a:hover {
    color: #8d4293;
}

.right_blog_block .blog_user {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 9px;
}

.right_blog_block .blog_user .user_name {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.right_blog_block .blog_user .user_name>img {
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.right_blog_block .blog_user .user_name>a {
    font-size: 15px;
    /* text-transform: capitalize; */
    margin-left: 20px;
    display: inline-block;
    position: relative;
}

.right_blog_block .blog_user .user_name>a:before {
    content: "";
    display: block;
    width: 5px;
    height: 1px;
    background-color: #757575;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

.right_blog_block .blog_user .comment_block span {
    color: #fec007;
    font-size: 22px;
}

.right_blog_block .right_blog_content>a {
    /* text-transform: capitalize; */
    color: #f44027;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.right_blog_block .right_blog_content>a:hover {
    color: #8d4293;
    letter-spacing: 1px;
}

/*Agriculture Blog End*/
/*Agriculture Team Start*/
.agri_committee_wrapper {
    padding-bottom: 95px;
}

.agri_team_content {
    margin-top: 20px;
    position: relative;
}

.agri_team_content h3 {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    /* text-transform: capitalize; */
}

.agri_team_section .agri_team_block {
    display: inline-block;
    background-color: #ffffff;
    border: 1px dashed #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.agri_team_section .agri_team_block:hover {
    border-color: transparent;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.agri_team_section .agri_team_block .agri_team_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    background-color: rgba(31, 161, 46, 0.9);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.agri_team_section .agri_team_block:hover .agri_team_overlay {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.agri_team_section .agri_team_block .agri_team_overlay h4 {
    font-size: 30px;
    font-weight: 600;
    /* text-transform: capitalize; */
    color: #ffffff;
    margin-bottom: 13px;
}

.agri_team_section .agri_team_block .agri_team_overlay>span {
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    /* text-transform: capitalize; */
    border-radius: 30px;
    margin-bottom: 23px;
}

.agri_team_section .agri_team_block .agri_team_overlay p {
    color: #ffffff;
    /* text-transform: capitalize; */
    font-size: 16px;
}

.agri_team_section .agri_team_block .agri_team_overlay>ul>li {
    display: inline-block;
    margin: 0px 5px;
}

.agri_team_section .agri_team_block .agri_team_overlay>ul>li>a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 18px;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.agri_team_section .agri_team_block .agri_team_overlay>ul>li>a:hover {
    color: #8d4293;
    border-color: #ffffff;
    background-color: #ffffff;
}

/*Agriculture Team End*/
/*Agriculture Partner Start*/
.index_v2 .partner_slider .partner_slide .partner_image:hover {
    background-color: rgb(255 255 255);
    border-color: #9b0107;
}

.index_v2 .clv_partner_wrapper .partner_slider .slider_arrow {
    width: 40px;
    height: 40px;
    border-width: 1px;
}

.index_v2 .clv_partner_wrapper .partner_slider .slider_arrow:hover {
    background-color: #9b0107;
    border-color: #9b0107;
}

.index_v2 .clv_partner_wrapper .partner_slider .slider_arrow:hover svg path {
    fill: #ffffff;
}

/*Agriculture Partner End*/
/*Agriculture Newsletter Start*/
.index_v2 .clv_newsletter_wrapper {
    background-color: #8d4293;
}

/*Agriculture Newsletter End*/
/*Agriculture Footer Start*/
.index_v2 .clv_footer_wrapper {
    /* background: none;
	background-color: #1c1c1c; */
}

.index_v2 .footer_post_slider .footer_post_slide {
    position: relative;
    display: flex;
    align-items: center;
}

.index_v2 .footer_post_slider .footer_post_slide .footer_post_image {
    margin-right: 10px;
}

.index_v2 .footer_post_slider .footer_post_slide .footer_post_image>img {
    border-radius: 5px;
}

.index_v2 .footer_post_slider .footer_post_slide .footer_post_content span {
    font-size: 14px;
    /* text-transform: capitalize; */
    color: #8d4293;
}

.index_v2 .footer_post_slider .footer_post_slide .footer_post_content p {
    margin: 0;
}

.index_v2 .footer_post_slider .footer_post_slide .footer_post_content p a {
    color: #ffffff;
}

.index_v2 .footer_post_slider .swiper-container {
    max-height: 150px;
    overflow: hidden;
}

.index_v2 .footer_post_slider .footer_post_slide {
    overflow: hidden;
}

.index_v2 .footer_slider_arrows {
    display: inline-block;
    float: right;
    margin-right: 15px;
}

.index_v2 .footer_slider_arrows .footer_arrow {
    margin: 0px 3px;
    outline: none;
    cursor: pointer;
}

.index_v2 .footer_slider_arrows .footer_arrow svg path {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v2 .footer_slider_arrows .footer_arrow:hover svg path {
    fill: rgb(246, 190, 26);
}

.index_v2 .clv_copyright_wrapper {
    background-color: #7c0408;
}

.index_v2 .clv_footer_wrapper .footer_block .useful_links>li {
    margin-bottom: 10px;
}

.index_v2 .footer_block p {
    margin-bottom: 10px;
}

.index_v2 .footer_block p span {
    margin-right: 10px;
    color: #d51921;
}

.agri_social_links {
    margin-top: 20px;
}

.agri_social_links>li {
    display: inline-block;
    margin: 0px 5px;
}

.agri_social_links>li:first-child {
    margin-left: 0;
}

.agri_social_links>li>a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #616161;
    border-radius: 50%;
    font-size: 16px;
    color: #d51921;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    border: 1px solid #c8c2c2;
}

.agri_social_links>li>a:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #d51921;
}

/*Agriculture Footer End*/
/********************************************************
17. Index2 end
*******************************************************/
/********************************************************
18. Index3 start
*******************************************************/
.index_v3 .clv_heading h3 {
    color: #222222;
}

.index_v3 .search_box .search_block h3 {
    color: #3f61f6;
}

.index_v3 .search_box .search_block .search_field>a {
    background-color: #3f61f6;
}

.search_box .search_block .search_close svg path {
    fill: #3f61f6;
}

/*Header Start*/
.index_v3 .header2_wrapper {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v3 .header2_wrapper.header2_fix {
    background-color: #ffffff;
    top: 0;
    box-shadow: 0px 0px 21px 1px rgba(0, 0, 0, 0.06);
}

.index_v3 .header2_wrapper.header2_fix .clv_header2 {
    box-shadow: none;
}

.index_v3 .header2_wrapper .clv_header2 {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 0px 20px;
    box-shadow: 0px 0px 21px 1px rgba(0, 0, 0, 0.06);
}

.index_v3 .header2_wrapper .clv_header2 .clv_logo {
    padding: 28px 0px 25px;
}

.index_v3 .clv_right_header .clv_menu {
    background: none;
    border-radius: unset;
    justify-content: flex-end;
    align-items: center;
}

.index_v3 .clv_right_header .clv_menu .cart_nav>ul>li>a {
    color: #3f61f6;
    height: 100%;
    vertical-align: middle;
}

.index_v3 .clv_right_header .clv_menu .cart_nav>ul>li>a.search_toggle:after {
    content: "";
    border-right: 1px solid #ececec;
    position: absolute;
    top: 0;
    bottom: 0px;
    right: -10px;
}

.index_v3 .clv_right_header>.clv_menu>.cart_nav>ul>li {
    vertical-align: -webkit-baseline-middle;
    vertical-align: middle;
}

.index_v3 .clv_right_header .clv_menu .cart_nav {
    padding: 0;
    margin: 0px 15px;
    margin-right: 20px;
}

.index_v3 .clv_right_header .clv_menu .cart_nav>ul>li {
    padding: 32px 0px;
}

.index_v3 .clv_right_header .clv_menu .clv_menu_nav>ul>li {
    padding: 28px 0px;
    margin: 0px 9px;
}

.index_v3 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a {
    color: #222222;
}

.index_v3 .clv_right_header .clv_menu .clv_menu_nav>ul>li:last-child {
    margin-right: 0;
}

.index_v3 .clv_right_header .clv_menu .clv_menu_nav>ul>li:last-child>a {
    padding-right: 0;
}

.index_v3 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a:hover {
    color: #3f61f6;
}

.index_v3 .clv_right_header .clv_menu .cart_nav>ul>li>a.cart_toggle>span {
    background-color: #3f61f6;
    color: #ffffff;
}

.index_v3 .clv_right_header .clv_menu .cart_nav>ul {
    height: 100%;
}

.index_v3 .clv_right_header .clv_menu .cart_nav>ul>li {
    height: 100%;
    position: relative;
    padding: 32px 5px;
}

.index_v3 .clv_right_header .clv_menu .cart_nav>ul>li:last-child:after {
    display: none;
}

.index_v3 .clv_right_header .clv_menu .clv_menu_nav>ul>li>ul {
    border-bottom-color: #3f61f6;
}

.index_v3 .clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box>a {
    background-color: #3f61f6;
}

.index_v3 .clv_right_header .clv_menu .clv_menu_nav>ul>li>ul>li>a:hover {
    color: #3f61f6;
}

.index_v3 .appointment_btn {
    min-width: 170px;
    height: 50px;
    border-radius: 5px;
    background-color: #3f61f6;
    color: #ffffff;
    border: 1px solid transparent;
    /* text-transform: capitalize; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v3 .appointment_btn:hover {
    border-color: #3f61f6;
    background-color: transparent;
    color: #3f61f6;
}

img.shape-r {
    position: absolute;
    right: 0px;
    z-index: 999999;
}

.index_v3 .clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box {
    right: 0;
}

/*Header End*/
/*Banner Start*/
.index_v3 .clv_banner_slider .clv_slide {
    background: url("../images/index3_slider_bg1.jpg") no-repeat center;
    background-size: cover;
    padding: 312px 0px;
}

.patn-shape {
    background: url("../images/shape-014.png") no-repeat center;
}

.index_v3 .clv_banner_slider .clv_slide:before {
    background-color: rgba(27, 27, 27, 0.8);
}

.index_v3 .clv_banner_slider .clv_slide.slide2 {
    background: url("../images/index3_slider_bg2.jpg") no-repeat center;
    background-size: cover;
}

.index_v3 .clv_banner_slider .clv_slide .clv_slide_inner h1 {
    font-size: 72px;
    max-width: 550px;
}

.index_v3 .clv_banner_slider .clv_slide .clv_slide_inner>img {
    margin-top: 11px;
    margin-bottom: 25px;
}

.index_v3 .clv_banner_slider .clv_slide .clv_slide_inner h6 {
    font-size: 20px;
    max-width: 600px;
    color: #ffffff;
    margin-bottom: 25px;
}

.index_v3 .clv_banner_slider .slider_arrow {
    height: 80px;
    width: 50px;
    left: 22px;
    border-radius: 5px;
    border: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.clv_banner_slider .slider_arrow.right_arrow {
    left: auto;
    right: 22px;
}

.index_v3 .clv_banner_slider .slider_arrow:hover {
    background-color: #3f61f6;
}

.index_v3 .clv_banner_slider .slider_arrow:hover>svg>path {
    fill: #ffffff;
}

/*Banner End*/
/*Dairy About Start*/
.index_v3 .dairy_about_wrapper {
    padding-top: 90px;
}

.index_v3 .dairy_about_wrapper .dairy_about_inner {
    margin-top: 25px;
}

.index_v3 .dairy_about_wrapper .dairy_about_inner .about_img img {
    border-radius: 10px;
}

.index_v3 .dairy_about_inner .about_content {
    margin-top: 40px;
}

.index_v3 .dairy_about_inner .about_content .about_heading>h2 {
    font-size: 42px;
    color: #222222;
}

.index_v3 .dairy_about_inner .about_content .about_heading>h2>span {
    font-weight: 700;
    color: #3f61f6;
}

.index_v3 .dairy_about_inner .about_content .about_heading>.clv_underline {
    margin: 9px 0px 17px;
}

.index_v3 .dairy_about_inner .about_content .clv_btn2 {
    margin-top: 19px;
}

.index_v3 .dairy_counter_wrapper {
    display: flex;
    padding: 30px 20px;
    background-color: #3f61f6;
    border-radius: 10px;
    margin-top: 44px;
    margin-left: -310px;
    width: 100%;
    min-width: 670px;
    position: relative;
}

.index_v3 .dairy_counter_wrapper .dairy_counter_block {
    width: 33.33%;
    text-align: center;
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid #5674f7;
    position: relative;
}

.index_v3 .dairy_counter_wrapper .dairy_counter_block img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.index_v3 .dairy_counter_wrapper .dairy_counter_block:last-child {
    border: none;
}

.index_v3 .dairy_counter_wrapper .dairy_counter_block .counter_text {
    z-index: 1;
}

.index_v3 .dairy_counter_wrapper .dairy_counter_block .counter_text h4 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.index_v3 .dairy_counter_wrapper .dairy_counter_block .counter_text h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    font-family: "Lato", sans-serif;
    /* text-transform: capitalize; */
}

/*Dairy About End*/
/*Dairy Products Start*/
.keynote_speakers_wrapper {
    background-color: #f5f5f5;
    padding-top: 20px;
    padding-bottom: 101px;
}

.keynote_speakers_inner {
    margin-top: 20px;
}

.keynote_speakers_inner .keynote_speakers_block {
    position: relative;
    padding: 20px 10px;
    box-shadow: 18px 10px 0px 0px #ffc82236;
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
    /* height: 620px; */
    min-height: min-content;
    background-color: #f4f9ff;
}

.keynote_speakers_inner .keynote_speakers_block:hover {
    box-shadow: 0px 0px 20px 1px rgba(63, 97, 246, 0.6);
}

.keynote_speakers_inner .keynote_speakers_block:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(51, 51, 51, 1);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.keynote_speakers_inner .keynote_speakers_block>span.keynote_speakers_devider {
    width: 108px;
    height: 10px;
    border-radius: 10px 10px 0px 0px;
    background-color: #ffffff;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.keynote_speakers_inner .keynote_speakers_block>span.keynote_speakers_devider.top_devider {
    bottom: auto;
    top: 0;
    border-radius: 0px 0px 10px 10px;
}

.keynote_speakers_inner .keynote_speakers_block:hover>span.keynote_speakers_devider {
    opacity: 1;
    visibility: visible;
}

.keynote_speakers_inner .keynote_speakers_block:hover:before {
    opacity: 1;
    visibility: visible;
}

.keynote_speakers_inner .keynote_speakers_block>svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.keynote_speakers_inner .keynote_speakers_block>svg>path {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.keynote_speakers_inner .keynote_speakers_block:hover>svg>path {
    fill: rgba(255, 255, 255, 0.15);
}

.keynote_speakers_inner .keynote_speakers_block .keynote_speakers_image {
    margin-bottom: 34px;
}

.keynote_speakers_inner .keynote_speakers_block .keynote_speakers_content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    /* text-transform: capitalize; */
    margin-bottom: 8px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.keynote_speakers_inner .keynote_speakers_block:hover .keynote_speakers_content h4 {
    color: #ffffff;
}

.keynote_speakers_inner .keynote_speakers_block .keynote_speakers_content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    /* text-transform: capitalize; */
    margin-bottom: 8px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.keynote_speakers_inner .keynote_speakers_block:hover .keynote_speakers_content h5 {
    color: #ffffff;
}

.keynote_speakers_inner .keynote_speakers_block .keynote_speakers_content p {
    margin-bottom: 16px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.keynote_speakers_inner .keynote_speakers_block:hover .keynote_speakers_content p {
    color: #ffffff;
}

.keynote_speakers_inner .keynote_speakers_block:hover .keynote_speakers_content span {
    color: #ffffff;
}

.keynote_speakers_inner .keynote_speakers_block .keynote_speakers_content a {
    font-weight: 700;
    color: #fbbc00;
    /* text-transform: capitalize; */
    text-decoration: NONE;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    height: 40px;
    line-height: 40px;
}

.keynote_speakers_inner .keynote_speakers_block:hover .keynote_speakers_content a {
    color: #ffffff;
}

.keynote_speakers_content {
    padding: 10px;
    text-align: justify;
}

.keynote_speakers_image.speaker-img {
    position: relative;
    /* padding-top: 10px; */
}

.keynote_speakers_block .speaker-img:before,
.keynote_speakers_block .speaker-img:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    height: 2px;
    width: 110px;
    transform: translateX(-50%);
    background-color: #fec007;
    margin-top: 10px;
}

.keynote_speakers_block .speaker-img:after {
    width: 50px;
    top: 105%;
}

/*Dairy Products End*/
/*Dairy Service Start*/
.dairy_service_wrapper .service_content {
    margin-top: 40px;
}

.dairy_service_wrapper .service_content .service_heading {
    position: relative;
}

.service_content .service_heading h3 {
    font-size: 42px;
    /* text-transform: capitalize; */
    color: #222222;
    font-weight: 700;
}

.service_content .service_heading .clv_underline {
    margin: 10px 0px 17px;
}

.service_content .service_heading .service_arrow_block {
    display: flex;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}

.service_content .service_heading .service_arrow_block .dairy_service_arrow {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.service_content .service_heading .service_arrow_block .dairy_service_arrow:hover {
    background-color: #3f61f6;
    border-color: #3f61f6;
}

.service_content .service_heading .service_arrow_block .dairy_service_arrow:hover>svg>path {
    fill: #ffffff;
}

.service_content>ul>li {
    margin-bottom: 5px;
}

.service_content>ul>li>p {
    font-size: 16px;
    color: #222222;
    /* text-transform: capitalize; */
    margin: 0;
}

.service_content>ul>li>p>span {
    margin-right: 10px;
}

.dairy_service_slider .dairy_service_slide>img {
    border-radius: 10px;
}

/*Dairy Service End*/
/*Dairy Gallery Start*/
.dairy_gallery_wrapper {
    background-color: #f5f5f5;
    padding-bottom: 85px;
    padding-top: 90px;
}

.dairy_gallery_wrapper .dairy_gallery_inner {
    margin-top: 25px;
}

.index_v3 .gallery_slide .gallery_grid {
    margin: 0;
}

.index_v3 .gallery_slide .gallery_grid .gallery_grid_item {
    width: 25%;
    padding: 0 15px;
}

.index_v3 .gallery_slider .swiper-pagination-bullet {
    border: 2px solid #3f61f6;
}

.index_v3 .gallery_slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #3f61f6;
}

.index_v3 .gallery_slide .gallery_grid .gallery_grid_item .gallery_image .gallery_overlay {
    background-color: rgba(63, 97, 246, 0.8);
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border-radius: 10px;
}

/*Dairy Gallery End*/
/*Dairy Shop Start*/
.index_v3 .clv_shop_wrapper {
    padding-bottom: 71px;
}

.index_v3 .shop_slider .shop_slide {
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.06);
    padding: 60px 0px 28px;
}

.index_v3 .shop_slider .shop_slide>.item_image {
    margin-bottom: 10px;
}

.index_v3 .shop_slider .shop_slide>h6 {
    color: #3f61f6;
}

.index_v3 .shop_slider .shop_slide .item_overlay {
    background-color: rgba(63, 97, 246, 0.9);
}

.index_v3 .shop_slider .shop_slide .item_overlay>.shop_btn {
    color: #3f61f6;
}

.index_v3 .shop_slider .shop_slide .item_overlay>.shop_btn:hover {
    color: #ffffff;
}

.index_v3 .clv_shop_wrapper .shop_slider .slider_arrow:hover {
    border-color: #3f61f6;
}

.index_v3 .clv_shop_wrapper .shop_slider .slider_arrow:hover>svg>path {
    fill: #3f61f6;
}

/*Dairy Shop End*/
/*Dairy Testimonial Start*/
.dairy_testimonial_wrapper {
    background-color: #f5f5f5;
}

.dairy_testimonial_wrapper .testimonial_content {
    margin-top: 50px;
}

.dairy_testimonial_wrapper .testimonial_content h3 {
    font-size: 40px;
    /* text-transform: capitalize; */
    color: #222222;
    font-weight: 700;
}

.dairy_testimonial_wrapper .testimonial_content img {
    margin: 8px 0px 7px;
}

.dairy_testimonial_wrapper .dairy_testimonial_slider {
    position: relative;
}

.dairy_testimonial_wrapper .dairy_testimonial_slider .dairy_arrow {
    outline: none;
    cursor: pointer;
    position: absolute;
    top: 80px;
    left: calc(39% + 5px);
    z-index: 10;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.dairy_testimonial_wrapper .dairy_testimonial_slider .dairy_arrow.dairy_left:hover {
    transform: translateX(-10px);
}

.dairy_testimonial_wrapper .dairy_testimonial_slider .dairy_arrow.dairy_right {
    left: auto;
    right: calc(39% + 5px);
}

.dairy_testimonial_wrapper .dairy_testimonial_slider .dairy_arrow.dairy_right:hover {
    transform: translateX(10px);
}

.dairy_testimonial_wrapper .dairy_testimonial_slider .dairy_arrow svg path {
    fill: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.dairy_testimonial_wrapper .dairy_testimonial_slider .dairy_arrow:hover svg path {
    fill: rgba(255, 255, 255, 1);
}

.dairy_testimonial_slider .dairy_testimonial_slide {
    position: relative;
    position: relative;
    z-index: 1;
    background-color: #3f61f6;
    border-radius: 10px;
    padding: 40px 40px;
    text-align: center;
}

.dairy_testimonial_slider .dairy_testimonial_slide:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("../images/dairy_testimonial_bg.png") no-repeat center;
    background-size: cover;
    z-index: -1;
    border-radius: 10px;
}

.dairy_testimonial_slider .dairy_testimonial_slide .dairy_testimonial_image {
    display: block;
    text-align: center;
}

.dairy_testimonial_slider .dairy_testimonial_slide .dairy_testimonial_image>img {
    border: 4px solid #b2c0fb;
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

.dairy_testimonial_slider .dairy_testimonial_slide .dairy_testimonial_message p {
    color: #ffffff;
    font-style: italic;
    font-size: 18px;
}

.dairy_testimonial_slider .dairy_testimonial_slide .dairy_testimonial_message h4 {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    /* text-transform: capitalize; */
}

/*Dairy Testimonial End*/
/*Dairy Blog Start*/
.dairy_blog_wrapper {
    padding-top: 88px;
    padding-bottom: 70px;
}

.dairy_blog_section {
    margin-top: 25px;
}

.index_v3 .right_blog_section .right_blog_block {
    background-color: #f5f5f5;
    min-height: 287px;
    border: 1px solid #ebebeb;
}

.index_v3 .right_blog_section .right_blog_block .right_blog_content .agri_blog_date {
    color: #3f61f6;
}

.index_v3 .right_blog_block .blog_user .comment_block span {
    color: #3f61f6;
}

.index_v3 .right_blog_section .right_blog_block .right_blog_content h3>a:hover {
    color: #3f61f6;
}

.index_v3 .right_blog_block .right_blog_content>a:hover {
    color: #3f61f6;
}

.choose_wrapper-1 {
    position: relative;
}

.choose_wrapper-1 .choose-image {
    position: absolute;
    top: 286px;
    right: -66px;
    overflow: hidden;
}

.choose_wrapper-1 .choose-image img {
    width: 400px;
}

figure.sub-bannersideshape {
    position: absolute;
    top: -60px;
    left: -37px;
}

/*Dairy Blog End*/
/*Dairy Team Start*/
.committee_wrapper {
    background-color: #f5f5f5;
    background: #f5f5f5 url("../images/shape-1.png") no-repeat right center;
    padding-top: 50px;
    padding-bottom: 50px;
    animation-delay: 0.1s;
    animation-name: fadeInUp;
    position: relative;
    overflow: hidden;
}

.data-ani-bot {
    position: absolute;
    left: -40px;
    top: 50px;
}

.container.max-sub {
    max-width: 65%;
}

.pad-all {
    padding: 50px 0px;
}

.committee_slider {
    margin-top: 25px;
}

.committee_slider .swiper-slide {
    padding-bottom: 50px;
}

.committee_slider .committee_slide {
    position: relative;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.committee_slider .committee_slide .committee_image>img {
    border-radius: 10px;
}

.committee_slider .committee_slide .committee_details {
    border-radius: 10px;
    padding: 10px 20px;
    position: absolute;
    bottom: -30px;
    left: 20px;
    border-bottom: solid 2px #d5a9ab;
    right: 20px;
    overflow: hidden;
    background-color: #ffffff;
    max-height: calc(150px - 66px);
    transition: all 0.4s ease-in-out;
}

.committee_slider .committee_slide:hover .committee_details {
    background-color: #b80d14;
    max-height: calc(165px + 66px);
}

.committee_slide .committee_details .committee_name_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.committee_slide .committee_details .committee_name_block .committee_name {
    position: relative;
    flex: 1;
    margin-right: 20px;
    text-align: left;
}

.committee_slide .committee_details .committee_name_block .committee_name:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background-color: #f5f5f5;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.committee_slide .committee_details .committee_name_block .committee_name h4 {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 600;
    line-height: 19.92px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #222222;
    /* text-transform: capitalize; */
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.committee_slide:hover .committee_details .committee_name_block .committee_name h4 {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.committee_slide .committee_details .committee_name_block .committee_name span {
    color: #b80d14;
    /* text-transform: capitalize; */
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    line-height: 16.41px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.img-data2 img {
    width: 67%;
    opacity: 0.3;
}

.img-data2 {
    position: absolute;
    left: 0px;
}

.committee_slide:hover .committee_details .committee_name_block .committee_name span {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.committee_slide .committee_details .committee_name_block .team_social>ul>li {
    text-align: center;
}

.committee_slide .committee_details .committee_name_block .team_social>ul>li>a {
    color: #d51921;
    font-size: 14px;
    width: 8px;
    height: 15px;
    top: 1650px;
    left: 370px;
}

.committee_slide:hover .committee_details .committee_name_block .team_social>ul>li>a {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.committee_slide .committee_details .committee_name_block .team_social>ul>li>a.twitter {
    color: #d51921;
}

.committee_slide:hover .committee_details .committee_name_block .team_social>ul>li>a.twitter {
    color: #ffffff;
}

.committee_slide .committee_details .team_message {
    margin-top: 5px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.committee_slide:hover .committee_details .team_message {
    margin-top: 5px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.committee_slide .committee_details .team_message p {
    height: 100%;
    margin: 0px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.committee_slide:hover .committee_details .team_message p {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.committee_slider .slider_arrow {
    width: 60px;
    height: 60px;
    outline: none;
    border: 2px solid #e2e2e2;
    border-radius: 50%;
    color: #e2e2e2;
    font-size: 40px;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.committee_slider .slider_arrow:hover {
    border-color: #d51921;
}

.committee_slider .slider_arrow.right_arrow {
    left: auto;
    right: -100px;
}

.committee_slider .slider_arrow>svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.committee_slider .slider_arrow>svg>path {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.committee_slider .slider_arrow:hover>svg>path {
    fill: #b80d14;
}

/*Dairy Team End*/
/*Dairy Partner Start*/
.index_v3 .clv_partner_wrapper {
    background-color: #ffffff;
    padding-bottom: 100px;
}

.index_v3 .partner_slider .partner_slide .partner_image:hover {
    background-color: #3f61f6;
    border-color: #3f61f6;
}

.index_v3 .partner_slider .slider_arrow:hover {
    border-color: #3f61f6;
}

.index_v3 .partner_slider .slider_arrow:hover>svg>path {
    fill: #3f61f6;
}

/*Dairy Partner End*/
/*Dairy Newsletter Start*/
.index_v3 .clv_newsletter_wrapper {
    margin: 0;
    margin-bottom: 93px;
    background-color: #3f61f6;
    border-radius: 0px 0px 20px 20px;
}

/*Dairy Newsletter End*/
/*Dairy Footer Start*/
.index_v3 .clv_footer_wrapper {
    padding: 0;
    background: url(../images/dairy_footer_bg.jpg) no-repeat center;
    background-size: contain;
    z-index: 1;
    position: relative;
}

.index_v3 .clv_footer_wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(27, 27, 27, 0.96);
    z-index: -1;
}

.index_v3 .clv_footer_wrapper .footer_block .useful_links>li {
    margin-bottom: 14px;
}

.index_v3 .clv_footer_wrapper .footer_block .useful_links>li>a:hover {
    color: #3f61f6;
    text-decoration: underline;
}

.index_v3 .clv_footer_wrapper .footer_block h6 {
    color: #3f61f6;
}

.footer_post_section {
    height: 100%;
    max-height: 150px;
    overflow: hidden;
    overflow-y: auto;
}

.footer_post_section::-webkit-scrollbar {
    width: 3px;
}

.footer_post_section::-webkit-scrollbar-track {
    background: #4c4b49;
}

.footer_post_section::-webkit-scrollbar-thumb {
    background: #3f61f6;
}

.footer_post_section .footer_post_slide {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.index_v3 .footer_post_section .footer_post_slide .footer_post_image {
    margin-right: 10px;
}

.index_v3 .footer_post_section .footer_post_slide .footer_post_image>img {
    border-radius: 5px;
}

.index_v3 .footer_post_section .footer_post_slide .footer_post_content span {
    font-size: 14px;
    /* text-transform: capitalize; */
    color: #3f61f6;
}

.index_v3 .footer_post_section .footer_post_slide .footer_post_content p {
    margin: 0;
}

/*Dairy Footer End*/
/*Dairy Copyright Start*/
.index_v3 .clv_copyright_wrapper {
    background-color: unset;
    border-top: 1px solid #4c4a49;
    margin-top: 81px;
}

.index_v3 .clv_copyright_wrapper p>a {
    color: #3f61f6;
}

/*Dairy Copyright End*/
/********************************************************
18. Index3 end
*******************************************************/
/********************************************************
19. Index4 start
*******************************************************/
.index_v4 .search_box .search_block h3 {
    color: #2a7d2e;
}

.index_v4 .search_box .search_block .search_field>a {
    background-color: #2a7d2e;
}

.index_v4 .clv_heading h3 {
    color: #2a7d2e;
}

.index_v4 .clv_heading.white_heading h3 {
    color: #ffffff;
}

/*Garden Header Start*/
.index_v4 .header3_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v4 .header3_wrapper.dark_header {
    background-color: #000000;
}

.index_v4 .header3_wrapper.dark_header .clv_right_header .clv_menu .clv_menu_nav>ul>li {
    padding: 24.5px 0px 31.5px;
}

.header3_wrapper {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header3_wrapper .clv_header3 {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
}

.index_v4 .clv_right_header .clv_menu {
    background-color: unset;
    justify-content: flex-end;
    align-items: center;
}

.index_v4 .clv_right_header .clv_menu .clv_menu_nav>ul>li {
    padding: 34.5px 0px 41.5px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v4 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a:after {
    display: none;
}

.index_v4 .clv_left_header {
    display: flex;
    align-items: center;
    height: 100%;
}

.index_v4 .clv_right_header .clv_menu .cart_nav {
    margin-right: 30px;
    padding: 0;
}

.index_v4 .appointment_btn {
    background-color: #ffffff;
    color: #2a7d2e;
    border-radius: 30px;
}

.index_v4 .appointment_btn:hover {
    border-color: #2a7d2e;
    background-color: transparent;
}

.index_v4 .clv_right_header .clv_menu .clv_menu_nav>ul>li>ul {
    border-bottom-color: #2a7d2e;
}

.index_v4 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a {
    font-family: "Source Sans Pro", sans-serif;
}

.index_v4 .clv_right_header>.clv_menu>.cart_nav>ul>li:last-child:before {
    display: none;
}

.index_v4 .clv_right_header>.clv_menu>.cart_nav>ul>li {
    padding: 39.5px 0px 46.5px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v4 .dark_header .clv_right_header>.clv_menu>.cart_nav>ul>li {
    padding: 29.5px 0px 36.5px;
}

.index_v4 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a>span {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2px;
    background-color: #2a7d2e;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v4 .clv_right_header .clv_menu .clv_menu_nav>ul>li:hover>a>span {
    opacity: 1;
    visibility: visible;
}

.index_v4 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a>span:before,
.index_v4 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a>span:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    width: 2px;
    height: 2px;
    background-color: #2a7d2e;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v4 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a>span:after {
    left: auto;
    right: -6px;
}

.index_v4 .clv_right_header .clv_menu .clv_menu_nav>ul>li>ul>li>a:hover {
    color: #2a7d2e;
}

.index_v4 .clv_right_header .clv_menu .cart_nav ul>li>a.cart_toggle>span {
    color: #2a7d2e;
}

.index_v4 .clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box>a {
    background-color: #2a7d2e;
}

.index_v4 .clv_right_header>.clv_menu .clv_btn {
    color: #2a7d2e;
}

.index_v4 .clv_right_header>.clv_menu .clv_btn::before {
    background-color: #ffffff;
}

/*Garden Header End*/
/*Garden Banner Start*/
.index_v4 .clv_banner_slider .clv_slide {
    background: url(../images/index4_slider_bg1.jpg) no-repeat center;
    background-size: cover;
    padding-bottom: 380px;
}

.index_v4 .clv_banner_slider .clv_slide:before {
    background-color: rgba(0, 0, 0, 0.7);
}

.index_v4 .clv_banner_slider .clv_slide.slide2 {
    background: url(../images/index4_slider_bg2.jpg) no-repeat center;
    background-size: cover;
}

.index_v4 .clv_btn:hover {
    color: #2a7d2e;
}

.index_v4 .clv_btn::before {
    background-color: #2a7d2e;
}

.index_v4 .clv_btn::after {
    border: 1px solid #2a7d2e;
}

.index_v4 .clv_slide_inner {
    text-align: center;
}

.index_v4 .clv_banner_slider .clv_slide .clv_slide_inner h2 {
    letter-spacing: 10px;
    font-size: 72px;
}

.index_v4 .clv_slide_inner p {
    font-size: 18px;
    margin-bottom: 23px;
    color: #ffffff;
}

.index_v4 .clv_slide_inner .banner_btn {
    position: relative;
    display: inline-block;
}

.index_v4 .clv_slide_inner .banner_btn>span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.3);
}

.index_v4 .clv_slide_inner .banner_btn>span:before {
    content: "";
    height: 0.5px;
    width: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.index_v4 .clv_slide_inner .banner_btn>span.left_line {
    left: -100px;
}

.index_v4 .clv_slide_inner .banner_btn>span.left_line:before {
    right: -54px;
}

.index_v4 .clv_slide_inner .banner_btn>span.right_line:before {
    left: -54px;
}

.index_v4 .clv_slide_inner .banner_btn>span.right_line {
    right: -100px;
}

.index_v4 .clv_banner_slider .clv_slide .clv_slide_inner .clv_btn {
    margin-top: 0;
}

.index_v4 .clv_banner_slider .slider_arrow:hover {
    border-color: #2a7d2e;
    color: #2a7d2e;
}

.index_v4 .clv_banner_slider .slider_arrow:hover>svg>path {
    fill: #2a7d2e;
}

/*Garden Banner End*/
/*Garden Service Start*/
.index_v4 .garden_about_wrapper {
    padding-top: 0px;
    margin-top: -168px;
    position: relative;
}

.index_v4 .garden_service_wrapper {
    margin-bottom: 100px;
}

.index_v4 .garden_about_wrapper .garden_about_content {
    margin-top: 9px;
}

.garden_service_wrapper .garden_service_block {
    position: relative;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.06);
    background: url("../images/service_block_bg.jpg") no-repeat center;
    background-size: cover;
    overflow: hidden;
    text-align: center;
    padding: 40px 20px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_service_wrapper .garden_service_block:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: -1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_service_wrapper .garden_service_block:hover:before {
    background-color: rgba(42, 125, 46, 0.94);
}

.garden_service_wrapper .garden_service_block .service_image span {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(42, 125, 46, 0.1);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_service_wrapper .garden_service_block:hover .service_image span {
    background-color: rgba(255, 255, 255, 0.1);
}

.garden_service_wrapper .garden_service_block h3 {
    font-size: 30px;
    font-weight: 600;
    /* text-transform: capitalize; */
    color: #222222;
    padding: 13px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_service_wrapper .garden_service_block:hover h3 {
    color: #ffffff;
}

.garden_service_wrapper .garden_service_block h3:before,
.garden_service_wrapper .garden_service_block h3:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 1px;
    background-color: rgba(42, 125, 46, 1);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_service_wrapper .garden_service_block:hover h3:before,
.garden_service_wrapper .garden_service_block:hover h3:after {
    background-color: rgba(255, 255, 255, 1);
}

.garden_service_wrapper .garden_service_block h3:after {
    top: calc(100% + 5px);
    width: 40px;
}

.garden_service_wrapper .garden_service_block p {
    margin: 0;
    font-size: 18px;
    color: #333333;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_service_wrapper .garden_service_block:hover p {
    color: #ffffff;
}

/*Garden Service End*/
/*Garden About Start*/
.garden_about_wrapper {}

.garden_about_wrapper .garden_about_section .garden_about_image img {
    border-radius: 10px;
}

.garden_about_wrapper .garden_about_section .garden_about_image .garden_ofc_block {
    width: 100%;
    max-width: 415px;
    border-radius: 10px;
    text-align: center;
    padding: 30px 30px 32px;
    margin: 0 auto;
    margin-top: -70px;
    position: relative;
    background-color: #2a7d2e;
}

.garden_about_image .garden_ofc_block h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
    /* text-transform: capitalize; */
}

.garden_about_image .garden_ofc_block p {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
}

.garden_about_wrapper .garden_about_section .garden_about_content h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 52px;
    color: #222222;
    /* text-transform: capitalize; */
    margin-bottom: 10px;
}

.garden_about_wrapper .garden_about_section .garden_about_content h6 {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    color: #2a7d2e;
    line-height: 30px;
    margin-bottom: 7px;
}

.garden_about_wrapper .garden_about_section .garden_about_content p {
    color: #333333;
    margin: 0;
}

.garden_about_content .garden_about_blog {
    display: flex;
    align-items: center;
    margin: 0px -15px;
}

.garden_about_blog .about_blog_inner {
    padding: 0px 15px;
}

.garden_about_blog .about_blog_inner .about_blog_image {
    margin: 17px 0px 15px;
}

.garden_about_blog .about_blog_inner .about_blog_image img {
    border-radius: 10px;
}

.garden_about_blog .about_blog_inner h4 {
    font-size: 22px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 4px;
    /* text-transform: capitalize; */
}

.garden_about_blog .about_blog_inner p {
    color: #333333;
}

.garden_about_section .garden_about_content .garden_contact_section {
    display: flex;
    align-items: center;
    margin-top: 24px;
}

.garden_about_content .garden_contact_section .contact_number {
    margin-left: 34px;
    display: flex;
    align-items: center;
}

.garden_contact_section .contact_number span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #2a7d2e;
    box-shadow: 0px 0px 0px 4px rgba(42, 125, 46, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 13px;
}

.garden_contact_section .contact_number h4 {
    font-size: 30px;
    font-weight: 700;
    /* text-transform: capitalize; */
    color: #222222;
}

/*Garden About End*/
/*Garden Counter Start*/
.index_v4 .clv_counter_wrapper {
    background: url("../images/garden_counter_bg.jpg") no-repeat center;
    background-size: cover;
}

.index_v4 .clv_counter_wrapper:before {
    background-color: rgba(0, 0, 0, 0.7);
}

/*Garden Counter End*/
/*Garden Service About Start*/
.garden_service_about_wrapper {
    /* padding-bottom: 174px;         */
}

.garden_service_about_wrapper .service_about_content {
    margin-top: 30px;
    position: relative;
}

.service_about_content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 52px;
    padding: 10px 0px 19px;
    margin-bottom: 25px;
    position: relative;
    /* text-transform: capitalize; */
    color: #222222;
}

.service_about_content h1:before,
.service_about_content h1:after {
    content: "";
    width: 300px;
    height: 1px;
    background-color: #dadada;
    position: absolute;
    top: 100%;
    left: 0;
}

.service_about_content h1:after {
    width: 170px;
    background-color: #2a7d2e;
}

.service_about_content h1>span {
    font-weight: 400;
}

.service_about_content>p {
    color: #333333;
    margin-bottom: 6px;
}

.service_about_content h5 {
    font-size: 22px;
    font-style: italic;
    line-height: 32px;
    color: #2a7d2e;
    font-weight: 500;
    margin-bottom: 6px;
}

.garden_green_box {
    width: 670px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 46px 40px;
    background-color: #2a7d2e;
    margin-top: 70px;
    position: relative;
    z-index: 1;
    right: -150px;
}

.garden_green_box .green_box_image {
    position: relative;
    padding-right: 30px;
    margin-right: 20px;
}

.garden_green_box .green_box_image:after {
    content: "";
    width: 1px;
    height: 142px;
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.garden_green_box .green_box_content h4 {
    font-size: 26px;
    color: #ffffff;
    line-height: 52px;
    /* text-transform: capitalize; */
    font-weight: 600;
}

.garden_green_box .green_box_content p {
    margin: 0;
    color: #ffffff;
}

/*Garden Service About End*/
/*Garden Testimonial Start*/
.garden_testimonial_wrapper {
    background: url("../images/garden_testimonial_bg.jpg") no-repeat center;
    background-size: cover;
    position: relative;
    padding-top: 88px;
    padding-bottom: 90px;
    z-index: 1;
}

.garden_testimonial_wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.garden_testimonial_slider {
    margin-top: 15px;
}

.thumb_slider {
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.thumb_slider .thumb_slide span img {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 4px #ffffff;
}

.thumb_slider .swiper-container-3d {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}

.thumb_slider .swiper-container {
    padding: 10px 0px;
}

.thumb_slider .test_arrow {
    position: absolute;
    top: 50%;
    left: -10%;
    outline: none;
    cursor: pointer;
    transform: translateY(-50%);
}

.thumb_slider .test_right_arrow {
    left: auto;
    right: -10%;
}

.thumb_slider .test_arrow>span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.thumb_slider .test_arrow:hover>span {
    transform: translate(-50%, -50%) scale(0);
}

.thumb_slider .test_arrow>span.hover_arrow {
    transform: translate(-50%, -50%) scale(0);
}

.thumb_slider .test_arrow:hover>span.hover_arrow {
    transform: translate(-50%, -50%) scale(1);
}

.thumb_slider .test_arrow>span.hover_arrow>svg>path {
    fill: #2a7d2e;
}

.message_slider .swiper-wrapper {
    padding: 10px;
}

.message_slider .message_slide {
    position: relative;
    border-radius: 10px;
    padding: 150px 20px 26px;
    background-color: #ffffff;
    max-width: 840px;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
}

.message_slider .message_slide .msg_quote {
    position: absolute;
    top: 25%;
    left: 15%;
    opacity: 0.2;
}

.message_slider .message_slide .msg_quote.right_quote {
    left: auto;
    right: 15%;
}

.message_slider .message_slide:before,
.message_slider .message_slide:after {
    content: "";
    display: block;
    position: absolute;
    top: 20px;
    right: -10px;
    bottom: 20px;
    left: -10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: -1;
}

.message_slider .message_slide:after {
    top: 40px;
    right: -20px;
    bottom: 40px;
    left: -20px;
}

.message_slider .message_slide h3 {
    font-size: 20px;
    font-weight: 600;
    /* text-transform: capitalize; */
    color: #222222;
    margin-bottom: 5px;
}

.message_slider .message_slide p {
    margin: 0;
    color: #333333;
}

/*Garden Testimonial End*/
/*Garden Service 2 Start*/
.garden_service2_wrapper {
    padding-top: 88px;
}

.garden_service2_section {
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 0px 15px;
    overflow: hidden;
    margin-top: 25px;
}

.garden_service2_section>.row>.col-md-4 {
    padding: 0;
}

.garden_service2_section .service2_block {
    position: relative;
    background: url("../images/service_block_bg2.jpg") no-repeat center;
    background-size: cover;
    text-align: center;
    padding: 40px 20px;
    z-index: 1;
    border: 1px solid #eaeaea;
    border-width: 0px 1px 1px 0px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_service2_section .service2_block:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: -1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_service2_section .service2_block:hover:before {
    background-color: rgba(0, 0, 0, 0.7);
}

.garden_service2_section .service2_block .service2_content {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_service2_section .service2_block:hover .service2_content {
    transform: translateY(-40px);
}

.garden_service2_section .service2_block .service2_image {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_service2_section .service2_block:hover .service2_image {
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.garden_service2_section .service2_block h3 {
    font-size: 30px;
    font-weight: 600;
    /* text-transform: capitalize; */
    color: #222222;
    padding: 13px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_service2_section .service2_block:hover h3 {
    color: #ffffff;
}

.garden_service2_section .service2_block h3:before,
.garden_service2_section .service2_block h3:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 1px;
    background-color: rgba(42, 125, 46, 1);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_service2_section .service2_block:hover h3:before,
.garden_service2_section .service2_block:hover h3:after {
    background-color: rgba(255, 255, 255, 1);
}

.garden_service2_section .service2_block h3:after {
    top: calc(100% + 5px);
    width: 40px;
}

.garden_service2_section .service2_block p {
    margin: 0;
    font-size: 18px;
    color: #333333;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_service2_section .service2_block:hover p {
    color: #ffffff;
}

.garden_service2_section .row:last-child .col-md-4 .service2_block {
    border-bottom: none;
}

.garden_service2_section .row .col-md-4:last-child .service2_block {
    border-right: none;
}

/*Garden Service 2 End*/
/*Garden Blog Start*/
.garden_blog_wrapper {
    position: relative;
    background: url("../images/blog_bg.jpg") no-repeat center;
    background-size: cover;
    z-index: 1;
    padding-top: 88px;
    padding-bottom: 85px;
}

.garden_blog_wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.garden_blog_wrapper .agri_blog_inner {
    margin-top: 25px;
}

.garden_blog_slider .swiper-container {
    padding-bottom: 30px;
}

.garden_blog_slider .swiper-pagination-bullet {
    background-color: #ffffff;
}

.garden_blog_slider .blog_section .agri_blog_image .agri_blog_date {
    color: #2a7d2e;
}

.garden_blog_slider .blog_section .blog_user .comment_block span {
    color: #2a7d2e;
}

.garden_blog_slider .right_blog_section .right_blog_block .right_blog_content .agri_blog_date {
    color: #2a7d2e;
}

.garden_blog_slider .right_blog_block .blog_user .comment_block span {
    color: #2a7d2e;
}

.garden_blog_slider .blog_section .regist_content>a:hover {
    color: #2a7d2e;
}

.garden_blog_slider .right_blog_section .right_blog_block .right_blog_content h3>a:hover {
    color: #2a7d2e;
}

.garden_blog_slider .right_blog_block .right_blog_content>a:hover {
    color: #2a7d2e;
}

.garden_blog_slider .blog_section .regist_content h3>a:hover {
    color: #2a7d2e;
}

/*Garden Blog End*/
/*Garden Shop Start*/
.garden_shop_wrapper {
    padding-top: 90px;
    padding-bottom: 81px;
}

.garden_shop_slider {
    margin-top: 6px;
}

.garden_shop_slider .swiper-container {
    padding: 20px 28px;
}

.garden_shop_slide {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 1px #f2f2f2;
    padding: 90px 10px 27px;
    position: relative;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_shop_slide:hover {
    box-shadow: 0px 0px 39px 1px rgba(0, 0, 0, 0.1);
}

.garden_shop_slide .item_image {
    margin-bottom: 23px;
}

.garden_shop_slide .item_details h5 {
    font-size: 22px;
    font-weight: 600;
    /* text-transform: capitalize; */
    color: #222222;
}

.garden_shop_slide .item_details h6 {
    font-size: 26px;
    font-weight: 700;
    /* text-transform: capitalize; */
    color: #222222;
}

.garden_shop_slide .item_details h6 span {
    font-size: 20px;
}

.garden_shop_slide .label {
    padding: 5px 10px;
    padding-right: 20px;
    display: inline-block;
    color: #ffffff;
    background-color: #fecf3f;
    text-transform: uppercase;
    position: absolute;
    top: 30px;
    left: -1px;
}

.garden_shop_slide .label:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    border-right: 8px solid #ffffff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.garden_shop_slide input {
    position: absolute;
    left: -9999px;
}

.garden_shop_slide label {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #f2f2f2;
    position: absolute;
    top: 20px;
    right: 20px;
}

.garden_shop_slide label .wish_icon {
    font-size: 22px;
    color: #8d4293;
}

.garden_shop_slide label .wish_icon:last-child {
    display: none;
}

.garden_shop_slide.wished label .wish_icon:first-child {
    display: none;
}

.garden_shop_slide.wished label .wish_icon:last-child {
    display: block;
}

/*Garden Shop End*/
/*Garden Project Start*/
.garden_project_wrapper {
    background-color: #f5f5f5;
    padding-top: 88px;
    padding-bottom: 85px;
}

.project_nav {
    margin-top: 8px;
    text-align: center;
}

.project_nav ul>li {
    display: inline-block;
    margin: 0px 10px;
    position: relative;
    z-index: 1;
}

.project_nav ul>li>a {
    /* text-transform: capitalize; */
    color: #222222;
    font-size: 16px;
    display: inline-block;
    padding: 10px 0px;
    position: relative;
    font-family: "Source Sans Pro", sans-serif;
}

.project_nav ul>li>div.list_dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.project_nav ul>li.active>div.list_dots {
    opacity: 1;
    visibility: visible;
}

.project_nav ul>li:hover>div.list_dots {
    opacity: 1;
    visibility: visible;
}

.project_nav ul>li>div.list_dots>span {
    width: 3px;
    height: 3px;
    display: inline-block;
    background-color: #8d4293;
}

.garden_project_slider {
    margin-top: 37px;
}

.garden_project_grid .project_item {
    width: 33.33%;
    padding: 0px 10px 20px 10px;
}

.garden_project_grid .project_item .project_block {
    position: relative;
    overflow: hidden;
}

.garden_project_grid .project_item .project_block img {
    border-radius: 10px;
}

.garden_project_grid .project_item .project_block .project_overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(45, 125, 46, 0.9);
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100px);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_project_grid .project_item .project_block:hover .project_overlay {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

.project_block .project_overlay h3 {
    font-size: 30px;
    font-weight: 600;
    /* text-transform: capitalize; */
    color: #ffffff;
    padding: 13px;
    margin-bottom: 20px;
    position: relative;
}

.project_block .project_overlay h3:before,
.project_block .project_overlay h3:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 1px;
    background-color: #ffffff;
}

.project_block .project_overlay h3:after {
    top: calc(100% + 5px);
    width: 40px;
}

.project_block .project_overlay p {
    margin: 0;
    color: #ffffff;
}

.garden_project_slider .swiper-container {
    padding-bottom: 43px;
}

.garden_project_slider .swiper-pagination-bullet-active {
    background-color: #8d4293;
}

/*Garden Project End*/
/*Garden Team Start*/
.garden_committee_wrapper {
    background: url("../images/garden_team_bg.jpg") no-repeat center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding-bottom: 137px;
}

.garden_committee_wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.team_heading {
    margin-top: 110px;
}

.team_heading h3 {
    font-weight: 700;
    font-size: 40px;
    color: #ffffff;
    /* text-transform: capitalize; */
    line-height: 50px;
}

.team_heading img {
    margin-bottom: 8px;
}

.team_heading p {
    color: #ffffff;
    margin: 0;
}

.garden_team_block {
    position: relative;
}

.garden_team_block img {
    border-radius: 10px;
}

.garden_team_block .garden_team_overlay {
    position: absolute;
    top: calc(100% - 37px);
    left: 20px;
    right: 20px;
    bottom: -20px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 13px;
    display: block;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    height: 74px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_team_block:hover .garden_team_overlay {
    height: unset;
    background-color: rgba(42, 125, 46, 0.9);
    top: 20px;
    bottom: 20px;
    display: flex;
}

.garden_team_block .garden_team_overlay h3 {
    font-size: 22px;
    color: #222222;
    /* text-transform: capitalize; */
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_team_block:hover .garden_team_overlay h3 {
    color: #ffffff;
}

.garden_team_block .garden_team_overlay h6 {
    font-size: 15px;
    color: #2a7d2e;
    /* text-transform: capitalize; */
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.garden_team_block:hover .garden_team_overlay h6 {
    color: #ffffff;
}

.garden_team_block .garden_team_overlay p {
    margin: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    color: #ffffff;
}

.garden_team_block .garden_team_overlay ul li {
    display: inline-block;
    margin: 0px 3px;
}

.garden_team_block .garden_team_overlay ul li a {
    font-size: 16px;
    color: #ffffff;
}

/*Garden Team End*/
/*Garden Pricing Table Start*/
.garden_pricing_wrapper {
    padding-top: 90px;
}

.pricing_section {
    margin-top: 25px;
}

.pricing_section .pricing_block {
    text-align: center;
    padding: 40px 0px;
    background-color: #ffffff;
    border-radius: 30px;
    border: 1px solid #f2f2f2;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.pricing_section .pricing_block:hover {
    box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.1);
}

.pricing_section .pricing_block .pricing_header {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    min-width: 170px;
    height: 60px;
    text-align: center;
    border-radius: 30px 0px 30px 0px;
    background-color: #ffa442;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.pricing_section .pricing_block:hover .pricing_header {
    border-radius: 0px 30px 0px 30px;
}

.pricing_section .pricing_block .pricing_header.premium {
    background-color: #ff4b4b;
}

.pricing_section .pricing_block .pricing_header.ultimate {
    background-color: #40c952;
}

.pricing_section .pricing_block .pricing_header:before,
.pricing_section .pricing_block .pricing_header:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #f2f2f2;
    position: absolute;
    top: 100%;
    right: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.pricing_section .pricing_block:hover .pricing_header:before {
    top: 0;
}

.pricing_section .pricing_block .pricing_header:after {
    top: 0px;
    right: auto;
    left: 100%;
}

.pricing_section .pricing_block:hover .pricing_header:after {
    top: 100%;
}

.pricing_section .pricing_block .pricing_header h3 {
    color: #ffffff;
    /* text-transform: capitalize; */
    font-size: 16px;
    line-height: 60px;
}

.pricing_section .pricing_block>h1 {
    font-size: 50px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 10px;
    /* text-transform: capitalize; */
}

.pricing_section .pricing_block>h1>span {
    font-size: 40px;
}

.pricing_section .pricing_block>ul {
    margin-bottom: 35px;
}

.pricing_section .pricing_block>ul>li {
    margin-bottom: 29px;
}

.pricing_section .pricing_block>ul>li>p {
    color: #707070;
    margin: 0;
}

.pricing_section .pricing_block>a {
    display: inline-block;
    border-radius: 30px;
    background-color: #222222;
    color: #ffffff;
    /* text-transform: capitalize; */
    min-width: 170px;
    padding: 0px 10px;
    height: 50px;
    line-height: 50px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.pricing_section .pricing_block>a:hover {
    background-color: #2a7d2e;
}

.speaker-img img {
    /* border-radius: 50px; */
    /* border: 8px solid #dee2e6; */
    width: 300px;
    height: auto;
}

.pricing_block p {
    font-size: 14px;
}

span.strong {
    font-weight: 800;
    color: #262626;
    padding: 5px;
}

.pricing_block li {
    text-align: left;
}

/*Garden Pricing Table End*/
/*Garden Partner Start*/
.index_v4 .clv_partner_wrapper {
    padding: 100px 0px;
    background-color: #f9f9f9;
}

.index_v4 .clv_partner_wrapper .partner_slider .slider_arrow {
    background-color: #ffffff;
    border-width: 1px;
}

.index_v4 .clv_partner_wrapper .partner_slider .slider_arrow:hover {
    border-color: #e2e2e2;
}

.index_v4 .partner_slider .partner_slide .partner_image:hover {
    background-color: #2a7d2e;
    border-color: #2a7d2e;
}

/*Garden Partner End*/
/*Garden Footer Start*/
.index_v4 .clv_footer_wrapper {
    background: none;
    background-color: #222222;
    padding-top: 93px;
    padding-bottom: 90px;
}

.index_v4 .footer_block>p {
    margin-bottom: 10px;
}

.index_v4 .footer_block>p>span {
    margin-right: 10px;
}

.index_v4 .agri_social_links>li>a:hover {
    color: #2a7d2e;
}

.index_v4 .clv_footer_wrapper .footer_block .time_table>li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index_v4 .clv_footer_wrapper .footer_block .time_table>li>p {
    margin-bottom: 22px;
}

.index_v4 .clv_footer_wrapper .footer_block .time_table>li>p>span {
    margin-right: 10px;
}

.index_v4 .footer_post_section::-webkit-scrollbar-thumb {
    background: #2a7d2e;
}

.footer_post_section .footer_post_slide {
    align-items: unset;
}

.footer_post_section .footer_post_slide>span {
    margin-right: 10px;
    color: #2a7d2e;
}

.footer_post_section .footer_post_slide>.blog_links>p {
    margin-bottom: 0;
}

.footer_post_section .footer_post_slide>.blog_links>a {
    color: #2a7d2e;
    font-weight: 600;
}

.index_v4 .clv_footer_wrapper .footer_block .instagram_links>li>a:before {
    background-color: rgba(42, 125, 46, 0.7);
}

.index_v4 .footer_post_section .footer_post_slide>.blog_links>p {
    color: #ffffff;
}

/*Garden Footer End*/
/*Garden Copyright Start*/
.index_v4 .clv_copyright_wrapper {
    background-color: #000000;
}

/*Garden Copyright End*/
/********************************************************
19. Index4 end
*******************************************************/
/********************************************************
20. Index5 start
*******************************************************/
.index_v5 .search_box .search_block .search_field>a {
    background-color: #27ae93;
}

.index_v5 .search_box .search_block h3 {
    color: #27ae93;
}

.index_v5 .clv_heading h3 {
    color: #222222;
}

/*Organic Header Start*/
.index_v5 .clv_btn::before {
    background-color: #27ae93;
}

.index_v5 .clv_btn::after {
    border-color: #27ae93;
}

.index_v5 .clv_btn:hover {
    color: #27ae93;
}

.index_v5.clv_main_wrapper .clv_header .clv_left_header {
    padding: 15px 0px;
}

.index_v5.clv_main_wrapper .clv_header {
    background-color: unset;
}

.index_v5.clv_main_wrapper .clv_header span.header_shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.index_v5 .clv_right_header .clv_menu {
    background-color: unset;
    align-items: center;
    justify-content: flex-end;
}

.index_v5 .clv_right_header .clv_menu .clv_menu_nav {
    padding: 0;
}

.index_v5 .clv_right_header .clv_menu .cart_nav {
    padding: 0;
}

.index_v5 .clv_right_header .clv_menu .clv_menu_nav>ul>li {
    padding: 34.5px 0px 32.5px;
}

.index_v5 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a:after {
    background-color: #222222;
}

.index_v5 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a {
    color: #222222;
    font-family: "Source Sans Pro", sans-serif;
}

.index_v5 .clv_right_header .clv_menu .cart_nav>ul>li {
    position: relative;
    margin-right: 15px;
    padding: 40.5px 0px 38.5px;
}

.index_v5 .clv_right_header .clv_menu .cart_nav>ul>li>a {
    color: #27ae93;
    position: relative;
}

.index_v5 .clv_right_header .clv_menu .cart_nav>ul>li:first-child>a:after {
    content: "";
    border-right: 1px solid #ececec;
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    display: block;
}

.index_v5 .clv_right_header .clv_menu .clv_menu_nav>ul>li>ul>li>a:hover {
    color: #27ae93;
}

.index_v5 .clv_right_header .clv_menu .clv_menu_nav>ul>li>ul {
    border-bottom-color: #27ae93;
}

.index_v5 .clv_right_header .clv_menu .cart_nav ul>li>a.cart_toggle>span {
    background-color: #27ae93;
    color: #ffffff;
}

.index_v5 .clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box>a {
    background-color: #27ae93;
}

/*Organic Header End*/
/*Organic Banner Slider Start*/
.index_v5 .clv_banner_slider .clv_slide {
    background: url("../images/index5_slider_bg1.jpg") no-repeat center;
    background-size: cover;
}

.index_v5 .clv_banner_slider .clv_slide.slide2 {
    background: url("../images/index5_slider_bg2.jpg") no-repeat center;
    background-size: cover;
}

.index_v5 .clv_banner_slider .clv_slide:before {
    background-color: rgba(11, 11, 11, 0.8);
}

.index_v5 .clv_banner_slider .clv_slide .clv_slide_inner h1 {
    font-size: 72px;
    text-transform: uppercase;
    line-height: 82px;
    margin-bottom: 14px;
}

.index_v5 .clv_banner_slider .clv_slide .clv_slide_inner h3 {
    padding: 10px 20px;
    color: #ffffff;
    background-color: #27ae93;
    display: inline-block;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 11px;
    letter-spacing: 0;
    position: relative;
}

.index_v5 .clv_banner_slider .clv_slide .clv_slide_inner h3:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    display: inline-block;
    border-top: 25px solid #27ae93;
    border-bottom: 25px solid #27ae93;
    border-right: 10px solid transparent;
}

.index_v5 .clv_banner_slider .org_arrow {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-radius: 0px 30px 30px 0px;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    color: #ffffff;
    transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.index_v5 .clv_banner_slider .org_arrow:hover {
    color: #27ae93;
}

.index_v5 .clv_banner_slider .org_arrow>u {
    margin: 0;
    /* text-transform: capitalize; */
    margin-left: 5px;
    text-decoration: underline;
    transition: all 0.1s;
}

.index_v5 .clv_banner_slider .org_arrow.right_arrow>u {
    margin-left: 0;
    margin-right: 5px;
}

.index_v5 .clv_banner_slider .org_arrow.right_arrow {
    left: auto;
    right: 0;
    border-radius: 30px 0px 0px 30px;
}

.index_v5 .clv_banner_slider .org_arrow>i {
    font-size: 18px;
}

.index_v5 .clv_banner_slider .swiper-pagination {
    bottom: 50px;
}

.index_v5 .clv_banner_slider .swiper-pagination-bullet {
    background-color: #ffffff;
    opacity: 1;
}

.index_v5 .clv_banner_slider .swiper-pagination-bullet-active {
    background-color: #27ae93;
    box-shadow: 0px 0px 0px 3px rgba(255, 255, 255, 0.1);
}

/*Organic Banner Slider End*/
/*Organic Services Start*/
.important_dates_wrapper {
    overflow: hidden;
    animation-delay: 0.2s;
    animation-name: fadeInLeft;
}

.important_dates_left_service {
    padding: 20px 25px;
    text-align: center;
    width: 100%;
    height: 100%;
    /* top: 1916px; */
    /* left: 148px; */
    /* gap: 0px; */
    padding: 20% 5%;
    border: 1px solid;
    opacity: 0px;
    background: #b80d14;
    justify-content: center;
    align-items: center;
    display: block;
    margin: auto;
    position: relative;
}

.session_schedule .important_dates_left_service {
    padding: 10px 20px;
    text-align: center;
    width: 100%;
    height: 100%;
    /* top: 1916px; */
    /* left: 148px; */
    /* gap: 0px; */

    border: 1px solid;
    opacity: 0px;
    background: #b80d14;
    justify-content: center;
    align-items: center;
    display: block;
    margin: auto;
    position: relative;
}

.important_dates_left_service .important_dates_description {
    margin-bottom: 10px;
}

.session_schedule .important_dates_left_service .important_dates_description {
    margin-bottom: 5px;
}

.important_dates_left_service .important_dates_description h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 46px;
    color: #ffffff;
    /* text-transform: capitalize; */
}

.session_schedule .important_dates_left_service .important_dates_description h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 40px;
    color: #ffffff;
    /* text-transform: capitalize; */
}

.technical-Program-Schedule .important_dates_left_service .important_dates_description h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 46px;
    color: #ffffff;
    /* text-transform: capitalize; */
}

.important_dates_left_service .important_dates_description h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 46px;
    color: #ffffff;
    /* text-transform: capitalize; */
}

.important_dates_left_service .important_dates_description p {
    margin: 0;
    margin-top: 5px;
    color: #ffffff;
}

.important_dates_left_service .important_dates_contact {
    /* border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 36px; */
}

.important_dates_left_service .important_dates_contact>span {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: #ffffff;
    margin-bottom: 10px;
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.1);
    animation: pulse3 2s infinite;
    border: 8px solid #9b0107;
}

.session_schedule .important_dates_left_service .important_dates_contact>span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: #ffffff;
    margin-bottom: 10px;
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.1);
    animation: pulse3 2s infinite;
    border: 8px solid #9b0107;
}

.important_dates_contact i {
    color: #9b0107;
    font-size: 30px;
}

.session_schedule .important_dates_contact i {
    color: #9b0107;
    font-size: 22px;
}

@keyframes pulse3 {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.important_dates_left_service .important_dates_contact>h4 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
}

.important_dates_wrapper .col-lg-4.col-md-4,
.important_dates_wrapper .col-lg-8.col-md-8,
.important_dates_wrapper .col-lg-2.col-md-2,
.important_dates_wrapper .col-lg-10.col-md-10,
.cv-service7-wrapper .col-lg-4.col-md-4,
.cv-service7-wrapper .col-lg-8.col-md-8 {
    padding: 0;
}

.important_dates_right_service {
    position: relative;
    /* z-index: 999999; */
    background: white;
}

.important_dates_right_service table {
    border-collapse: separate;
    /* border-spacing: 0; */
    color: #4a4a4d;
    /* font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; */
    font-size: 17px;
    border-right: 1px solid #e6eff7;
    border-radius: 0px 10px 10px 0px;
    width: 100%;
    border-radius: 0px;
    box-shadow: 0px 0px 12px 0px #b4aeae40;
    border: solid 1px #edededdd;
}

.technical-Program-Schedule .important_dates_right_service table {
    height: 100%;
}

div#mainBox {
    position: absolute;
    z-index: 99;
    bottom: 0px;
}

.committee_image {
    height: 350px;
    background: #08223d;
    padding: 15px;
}

.committee_image img {
    height: 100%;
    object-fit: cover;
    padding: 10px;
    width: 100%;
}

.important_dates_right_service table td {
    /* border-bottom: 1px solid #edededdd; */
    border: 1px solid #edededdd;
    /* text-align: left; */
    padding: 20px 15px;
    vertical-align: middle;
    /* border-top: 1px solid #e6eff7; */
}

.technical-Program-Schedule .important_dates_right_service table td {
    /* border-bottom: 1px solid #edededdd; */
    border: 1px solid #edededdd;
    text-align: center;
    padding: 20px 15px;
    vertical-align: middle;
    white-space: nowrap;
    /* border-top: 1px solid #e6eff7; */
}

/* Container styles */
#payment-information .fd_review_wrapper {
    background: #fff8f8;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(155, 0, 15, 0.15);
    padding: 20px 30px;
    max-width: 700px;
    margin: auto;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Heading */
#payment-information .review_heading {
    color: #9b000f;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #9b000f;
    padding-bottom: 5px;
}

/* Table styling */
#payment-information table.fee-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    font-size: 1rem;
}

/* Table header */
#payment-information table.fee-table th {
    background: #9b000f;
    color: #fff;
    font-weight: 700;
    padding: 12px 15px;
    text-align: left;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(155, 0, 15, 0.3);
}

/* Table rows */
#payment-information table.fee-table td {
    background: #fff0f0;
    padding: 12px 15px;
    color: #5a0a0f;
    border-left: 4px solid transparent;
    transition: border-color 0.3s ease;
    border-radius: 6px;
}

/* Highlight effect on rows */
#payment-information table.fee-table tbody tr:hover td {
    border-left-color: #9b000f;
    background: #ffd6d6;
    color: #7a0000;
    cursor: default;
    transition: all 0.3s ease;
}

#fee .review_heading {
    color: #9b000f;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #9b000f;
    padding-bottom: 5px;
}

.btn-primary {
    background-color: #0d47a1;
    border-color: #0d47a1;
}

.btn-primary:hover,
.btn-primary:hover,
.btn-primary:focus {
    background-color: #093571;
    color: #f1f1f1;
}

.submission_link {
    font-size: 1rem;
    font-weight: 600;
}

.camera-ready-section p {
    line-height: 1.7;
}

/* Accepted Paper Section */
.accepted-paper-section {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.accepted-paper-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
}

.accepted-icon img {
    /* width: 80px; */
    height: auto;
    margin-bottom: 20px;
}

.accepted-paper-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: center;
}

.accepted-paper-table thead {
    background-color: #9b0107;
    color: #ffffff;
}

.accepted-paper-table th,
.accepted-paper-table td {
    padding: 15px 20px;
    border: 1px solid #ddd;
    vertical-align: top;
    font-size: 16px;
}

.accepted-paper-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Responsive tweak */
@media (max-width: 480px) {
    #payment-information .fd_review_wrapper {
        padding: 15px 20px;
    }

    #payment-information table.fee-table th,
    #payment-information table.fee-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
}

.technical-Program-Schedule .important_dates_right_service {
    height: 100%;
}

.important_dates_right_service table tbody tr:nth-child(odd) {
    background: #f8f7f7;
}

.important_dates_right_service .col-md-4 {
    padding: 0;
}

.important_dates_right_service th {
    padding: 0;
    border: 1px solid #edededdd;
    /* border-right: 1px solid #edededdd; */
    /* text-align: left; */
    padding: 15px;
    vertical-align: middle;
    color: #b80d14;

}

.fee-table th {
    padding: 0;
    border: 1px solid #edededdd;
    text-align: left;
    padding: 15px;
    vertical-align: middle;
    color: white;
}

.fee-table td {
    border: 1px solid #edededdd;
}

.important_dates_right_service .service_block {
    text-align: center;
    padding: 38px 30px 39px;
    border: 1px solid #ededed;
    border-width: 0px 1px 1px 0px;
}

.important_dates_right_service .col-md-4:last-child>.service_block {
    border-right: none;
}

.important_dates_right_service .row:last-child .service_block {
    border-bottom: none;
}

.important_dates_right_service .service_block h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222222;
    /* text-transform: capitalize; */
    margin: 11px 0px 7px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.important_dates_right_service .service_block:hover h3 {
    color: #27ae93;
}

.important_dates_right_service .service_block p {
    margin: 0;
}

/*Organic Services End*/
/*Organic About Start*/
.org_about_wrapper {
    background-color: #f9fcf6;
    padding-top: 95px;
}

.org_about_image {
    position: relative;
}

.org_about_image>img {
    position: absolute;
    top: -150px;
    right: 98px;
}

.org_about_contents h5 {
    font-size: 22px;
    /* text-transform: capitalize; */
    color: #27ae93;
    margin-bottom: 7px;
    font-weight: 600;
}

.org_about_contents h2 {
    font-size: 36px;
    color: #222222;
    line-height: 46px;
    font-weight: 700;
}

.org_about_contents img {
    margin-bottom: 16px;
}

.org_about_contents .clv_btn {
    margin-bottom: 30px;
}

.org_about_contents p {
    margin-bottom: 25px;
}

.org_support {
    background-color: #27ae93;
    border-radius: 10px;
    padding: 24px 30px 27px;
    width: 100%;
    max-width: 465px;
}

.org_support h6 {
    font-size: 20px;
    /* text-transform: capitalize; */
    color: #ffffff;
    line-height: 30px;
    margin-bottom: 7px;
    font-weight: 700;
}

.org_support h3 {
    font-size: 40px;
    /* text-transform: capitalize; */
    color: #ffffff;
    font-weight: 700;
}

/*Organic About End*/
/*Organic Product Start*/
.org_product_wrapper {
    padding-top: 90px;
}

.org_product_section {
    margin-top: 26px;
}

.load_more_btn {
    text-align: center;
    margin-top: 11px;
}

.org_product_block {
    box-shadow: 0px 0px 0px 1px #ededed;
    border-radius: 10px;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    background-color: #ffffff;
    padding: 60px 30px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.org_product_block:hover {
    box-shadow: 0px 0px 39px 1px rgba(0, 0, 0, 0.1);
}

.org_product_block .product_label {
    position: absolute;
    top: 30px;
    left: 0;
    padding: 5px 10px;
    background-color: #fecf3f;
    color: #ffffff;
    text-transform: uppercase;
}

.org_product_block .product_label:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    display: inline-block;
    border-top: 15px solid #fecf3f;
    border-bottom: 15px solid #fecf3f;
    border-right: 10px solid transparent;
}

.org_product_block .org_keynote_speakers_image {
    margin-bottom: 25px;
}

.org_product_block h4 {
    font-size: 22px;
    color: #222222;
    /* text-transform: capitalize; */
    font-weight: 600;
    margin-bottom: 10px;
}

.org_product_block h3 {
    font-size: 26px;
    color: #222222;
    /* text-transform: capitalize; */
    margin-bottom: 24px;
    font-weight: 700;
}

.org_product_block h3 span {
    font-size: 20px;
}

.org_product_block a {
    min-width: 170px;
    height: 50px;
    line-height: 50px;
    color: #ffffff;
    background-color: #222222;
    border-radius: 30px;
    /* text-transform: capitalize; */
    display: inline-block;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.org_product_block a:hover {
    background-color: #27ae93;
}

/*Organic Product End*/
/*Organic Team Start*/
.org_committee_wrapper {
    background-color: #f9fcf6;
    padding-top: 88px;
    padding-bottom: 88px;
}

.index_v5 .org_committee_slider .swiper-pagination-bullet {
    background-color: #d4d4d4;
    opacity: 1;
}

.index_v5 .org_committee_slider .swiper-pagination-bullet-active {
    background-color: #27ae93;
    box-shadow: 0px 0px 0px 3px #eaece8;
}

.org_committee_slider .swiper-container {
    padding: 0px 15px 36px;
}

.org_committee_slide {
    background-color: #ffffff;
    display: inline-block;
    border-radius: 10px;
}

.org_committee_slide .org_committee_image {
    position: relative;
}

.org_committee_slide .org_committee_image img {
    border-radius: 10px 10px 0px 0px;
}

.org_committee_slide .org_committee_image .org_team_overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(39, 174, 147, 0.8);
    border-radius: 10px 10px 0px 0px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.org_committee_slide:hover .org_committee_image .org_team_overlay {
    opacity: 1;
    visibility: visible;
}

.org_committee_slide .org_committee_name {
    box-shadow: 0px 0px 17px 1px rgba(0, 0, 0, 0.06);
    border-radius: 0px 0px 10px 10px;
    padding: 10px 0px 24px;
    text-align: center;
    position: relative;
}

.org_social_links {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.org_social_links li {
    display: inline-block;
    margin: 0px 3px;
}

.org_social_links li a {
    color: #ffffff;
    font-size: 18px;
}

.org_committee_slide .org_committee_name h4 {
    font-size: 22px;
    font-weight: 600;
    /* text-transform: capitalize; */
    color: #222222;
}

.org_committee_slide .org_committee_name>p {
    margin: 0;
    color: #27ae93;
    /* text-transform: capitalize; */
}

.org_social {
    position: absolute;
    bottom: -19px;
    left: 50%;
    background-color: #27ae93;
    display: inline-block;
    min-width: 160px;
    text-align: center;
    padding: 5px 15px;
    border-radius: 30px;
    overflow: hidden;
    transform: translateX(-50%);
}

.org_committee_slide:hover .org_social .org_social_links {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px);
}

.org_social>p {
    margin: 0;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.org_committee_slide:hover .org_social>p {
    opacity: 1;
    visibility: visible;
}

/*Organic Team End*/
/*Organic Testimonial Start*/
.org_testimonial_wrapper {
    background-color: #f9fcf6;
    padding-top: 90px;
}

.org_testimonial_slider {
    margin-top: 15px;
}

.org_testimonial_slider .swiper-container {
    padding-bottom: 10px;
}

.org_testimonial_slider .swiper-slide {
    padding: 10px;
}

.org_testimonial_slider .org_testimonial_slide {
    display: flex;
    padding: 0px 20px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 17px 1px rgba(0, 0, 0, 0.06);
}

.org_testimonial_slide .org_test_image {
    margin-top: 20px;
    margin-bottom: -40px;
    width: 180px;
}

.org_testimonial_slide .org_test_image img {
    border-radius: 10px;
    border: 2px solid #27ae93;
}

.org_testimonial_message {
    padding: 30px 0px 0px 20px;
    position: relative;
    width: calc(100% - 180px);
}

.org_testimonial_message>p {
    font-size: 18px;
    font-style: italic;
}

.org_testimonial_message>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.org_testimonial_message>h5 {
    font-size: 20px;
    color: #222222;
    font-weight: 600;
    /* text-transform: capitalize; */
}

.org_testimonial_message>h5>span {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #707070;
}

.org_testimonial_slide>.test_social {
    position: absolute;
    bottom: 30px;
    right: 10px;
    padding: 7px 20px;
    border-radius: 30px 0px 0px 30px;
    background-color: #27ae93;
}

.org_testimonial_slide>.test_social>li {
    display: inline-block;
    margin: 0px 10px;
}

.org_testimonial_slide>.test_social>li>a {
    color: #ffffff;
    font-size: 18px;
}

.org_test_btn {
    position: absolute;
    bottom: 65px;
    cursor: pointer;
    left: 235px;
    padding: 0px 15px;
    z-index: 10;
}

.org_test_btn.org_right {
    left: 265px;
}

.org_test_btn.org_right:before {
    content: "";
    width: 1px;
    height: 20px;
    background-color: #e6e6e6;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.org_test_btn span {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.org_test_btn>span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.org_test_btn:hover>span {
    transform: translate(-50%, -50%) scale(0);
}

.org_test_btn>span.hover_arrow {
    transform: translate(-50%, -50%) scale(0);
}

.org_test_btn:hover>span.hover_arrow {
    transform: translate(-50%, -50%) scale(1);
}

/*Organic Testimonial End*/
/*Organic Partner Start*/
.index_v5 .clv_partner_wrapper {
    padding-bottom: 100px;
    background-color: #27ae93;
}

.index_v5 .partner_slider .partner_slide .partner_image {
    border-color: rgba(232, 232, 232, 0.5);
    background-color: transparent;
}

.index_v5 .partner_slider .partner_slide .partner_image:hover {
    border-color: #ffffff;
    background-color: #ffffff;
}

.index_v5 .partner_slider .partner_slide .partner_image svg path {
    fill: #ffffff;
}

.index_v5 .partner_slider .partner_slide .partner_image:hover svg path {
    fill: #27ae93;
}

.index_v5 .clv_partner_wrapper .partner_slider .slider_arrow {
    border-width: 1px;
    border-color: rgba(232, 232, 232, 0.5);
}

.index_v5 .clv_partner_wrapper .partner_slider .slider_arrow:hover {
    background-color: #ffffff;
    border-color: #ffffff;
}

.index_v5 .clv_partner_wrapper .partner_slider .slider_arrow:hover svg path {
    fill: #27ae93;
}

/*Organic Partner End*/
/*Organic Footer Start*/
.index_v5 .clv_footer_wrapper {
    background: none;
    background-color: #ffffff;
    padding-top: 60px;
}

.index_v5 .useful_links {
    display: inline-block;
    vertical-align: top;
}

.index_v5 .useful_links.float {
    float: right;
}

.index_v5 .footer_block>p {
    margin-bottom: 10px;
}

.index_v5 .footer_block>p>span {
    margin-right: 10px;
}

.index_v5 .agri_social_links>li>a {
    color: #27ae93;
    border-color: #b1b1b14d;
}

.index_v5 .agri_social_links>li>a:hover {
    background-color: #27ae93;
    border-color: #27ae93;
    color: #ffffff;
}

.index_v5 .clv_footer_wrapper .footer_block .useful_links>li>a {
    color: #222222;
}

.index_v5 .clv_footer_wrapper .footer_block .useful_links>li>a:hover {
    text-decoration: underline;
    color: #27ae93;
}

.index_v5 .footer_post_section .footer_post_slide>span {
    color: #27ae93;
}

.index_v5 .footer_post_section .footer_post_slide>.blog_links>a {
    color: #27ae93;
}

.index_v5 .footer_post_section::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.index_v5 .footer_post_section::-webkit-scrollbar-thumb {
    background: #27ae93;
}

.index_v5 .clv_footer_wrapper .footer_block .footer_heading>h4 {
    color: #222222;
    font-weight: 600;
}

.index_v5 .clv_footer_wrapper .footer_block p {
    color: #222222;
}

.index_v5 .clv_footer_wrapper .footer_block .useful_links>li {
    margin-bottom: 10px;
}

.footer_service_wrapper {
    margin-bottom: 55px;
}

.footer_service_block {
    text-align: center;
    padding: 38px 30px 33px;
    border: 1px solid #eeeeee;
    border-radius: 10px;
}

.footer_service_block>img {
    margin-bottom: 15px;
}

.footer_service_block>h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: #222222;
    /* text-transform: capitalize; */
}

/*Organic Footer End*/
/*Organic Copyright Start*/
.index_v5 .clv_copyright_wrapper {
    background-color: #27ae93;
}

.index_v5 .clv_copyright_wrapper p {
    color: #ffffff;
}

.index_v5 .clv_copyright_wrapper>p>a {
    color: #f59699;
}

/*Organic Copyright End*/

/********************************************************
20. Index5 end
*******************************************************/
/********************************************************
21. Index6 start
*******************************************************/
.index_v6 {
    background-color: #ffffff;
}

.index_v6 .clv_heading h3 {
    font-weight: 400;
    color: #222222;
}

.index_v6 .clv_heading.white_heading h3 {
    color: #ffffff;
}

/*Coffee Header Start*/
.index_v6 .header4_wrapper {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.clv_header4 {
    background-color: #ffffff;
    border-radius: 80px;
}

.index_v6 .header4_wrapper.header4_fix {
    top: 0;
    background-color: #ffffff;
    box-shadow: 0px 0px 21px 1px rgba(0, 0, 0, 0.06);
}

.index_v6 .clv_right_header .clv_menu {
    background-color: unset;
    justify-content: flex-end;
    align-items: center;
}

.index_v6 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a {
    color: #000000;
    font-size: 16px;
    font-family: "Source Sans Pro", sans-serif;
}

.index_v6 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a:after {
    background-color: #000000;
}

.index_v6 .clv_right_header .clv_menu .cart_nav>ul>li>a {
    color: #ffc539;
}

.index_v6 .clv_right_header .clv_menu .cart_nav ul>li>a.cart_toggle>span {
    background-color: #ffc539;
    color: #ffffff;
}

.index_v6 .clv_right_header .clv_menu .cart_nav>ul>li {
    position: relative;
    height: 100%;
    padding: 32px 0px;
    margin-right: 10px;
}

.index_v6 .clv_right_header .clv_menu .cart_nav>ul>li:last-child {
    margin: 0;
    padding-left: 10px;
}

.index_v6 .clv_right_header .clv_menu .cart_nav>ul>li:last-child::before {
    background-color: #e8e8e8;
}

.index_v6 .clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box {
    right: 0;
}

.index_v6 .header4_wrapper .clv_header4 {
    padding: 0px 20px;
}

.index_v6 .header4_wrapper .clv_header4 .clv_logo {
    padding: 28px 0px 25px;
}

.index_v6 .clv_right_header .clv_menu .clv_menu_nav>ul>li {
    padding: 28px 0px;
}

.index_v6 .clv_right_header .clv_menu .cart_nav {
    margin-right: 20px;
    padding: 0px;
}

/*Coffee Header End*/
/*Coffee Banner Start*/
.index_v6 .clv_banner_slider .clv_slide {
    background: url("../images/index6_slider_bg1.jpg") no-repeat center;
    background-size: cover;
    padding: 236px 0px 96px;
}

.index_v6 .clv_banner_slider .clv_slide.slide2 {
    background: url("../images/index6_slider_bg2.jpg") no-repeat center;
    background-size: cover;
}

.index_v6 .clv_banner_slider .clv_slide:before {
    background-color: rgba(60, 63, 72, 0.88);
}

.index_v6 .clv_banner_slider .clv_slide .clv_slide_inner h3 {
    letter-spacing: 0;
    font-size: 22px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-block;
    border-radius: 0px 10px;
}

.index_v6 .clv_banner_slider .clv_slide .clv_slide_inner h2 {
    font-size: 72px;
    font-weight: 400;
}

.index_v6 .clv_banner_slider .clv_slide .clv_slide_inner h2 span {
    font-weight: 700;
    position: relative;
}

.index_v6 .clv_banner_slider .clv_slide .clv_slide_inner h2 span:after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.index_v6 .clv_banner_slider .clv_slide .clv_slide_inner h1 {
    font-size: 72px;
    color: #ffc539;
}

.index_v6 .clv_banner_slider .clv_slide .clv_slide_inner p {
    font-size: 20px;
    margin: 5px 0px 13px;
    color: #ffffff;
}

.index_v6 .clv_banner_slider .clv_slide .clv_slide_inner .clv_btn {
    text-decoration: underline;
}

.index_v6 .clv_banner_slider .clv_slide .banner_content {
    margin-top: 135px;
}

.index_v6 .clv_banner_slider .slider_arrow {
    border: none;
    background-color: #505158;
}

.index_v6 .clv_banner_slider .slider_arrow:hover {
    background-color: #ffc539;
}

.index_v6 .clv_banner_slider .slider_arrow:hover svg path {
    fill: #ffffff;
}

/*Coffee Banner End*/
/*Coffee About Start*/
.index_v6 .coffee_about_wrapper {
    background-image: url(../images/index_v6_about_bg.png);
    background-size: contain;
}

.coffee_about_image img {
    border-radius: 10px;
}

.coffee_about_content {
    position: relative;
    padding: 45px 40px 52px;
    border-radius: 10px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    margin-top: 120px;
    margin-left: -100px;
    width: 663px;
    background-color: #3c3f48;
}

.coffee_about_content h6 {
    font-size: 30px;
    color: #ffffff;
    line-height: 42px;
    /* text-transform: capitalize; */
    font-weight: 500;
}

.coffee_about_content h5 {
    font-size: 42px;
    color: #ffc539;
    line-height: 42px;
    /* text-transform: capitalize; */
    margin-bottom: 26px;
    font-weight: 600;
}

.coffee_about_content p {
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    margin: 0;
}

.coffee_about_content a {
    font-size: 20px;
    line-height: 30px;
    color: #ffc539;
    text-decoration: underline;
    /* text-transform: capitalize; */
}

.coffee_about_content img {
    position: absolute;
    bottom: -130px;
    right: -180px;
}

/*Coffee About End*/
/*Coffee Counter Start*/
.index_v6 .clv_counter_wrapper {
    background: url("../images/coffee_counter_bg.jpg") no-repeat center;
    background-size: cover;
}

.index_v6 .clv_counter_wrapper:before {
    background-color: rgba(60, 63, 72, 0.88);
}

/*Coffee Counter End*/
/*Coffee Service Start*/
.index_v6 .coffee_service_wrapper {
    background-image: url(../images/index_v6_farm_bg.png);
    background-size: contain;
}

.coffee_service_content {
    text-align: center;
    margin-top: 38px;
}

.coffee_service_content>h6 {
    font-size: 30px;
    color: #222222;
    line-height: 42px;
    /* text-transform: capitalize; */
    font-weight: 500;
}

.coffee_service_content>h5 {
    font-size: 42px;
    color: #222222;
    line-height: 42px;
    /* text-transform: capitalize; */
    margin-bottom: 26px;
    font-weight: 600;
}

.coffee_service_content>p {
    font-size: 20px;
    line-height: 30px;
    color: #222222;
    margin-bottom: 20px;
}

.coffee_service_content>p.mb_4 {
    margin-bottom: 30px;
}

.coffee_service_content>a {
    font-size: 20px;
    line-height: 30px;
    color: #ffc539;
    text-decoration: underline;
    /* text-transform: capitalize; */
}

.coffee_service_section {
    padding: 31px 40px 36px;
    background-color: #3c3f48;
    border-radius: 10px;
    width: 663px;
    position: relative;
    margin-top: 47px;
    z-index: 1;
}

.coffee_service_section>h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    color: #ffffff;
    /* text-transform: capitalize; */
}

.coffee_service_section>h4 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    color: #ffc539;
    /* text-transform: capitalize; */
}

.coffee_service_block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.coffee_service_block .service_icon {
    width: 33.33%;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.coffee_service_block .service_icon:last-child {
    border: none;
}

.coffee_service_block .service_icon>span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #2b2d34;
    margin: 0 auto 10px;
}

.coffee_service_block .service_icon>h3 {
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    margin: 0;
    /* text-transform: capitalize; */
}

.coffee_service_image>img {
    border-radius: 10px;
}

/*Coffee Service End*/
/*Coffee Team Start*/
.index_v6 .committee_wrapper {
    background-color: unset;
    background: url("../images/coffee_team_bg.jpg") no-repeat center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}

.index_v6 .committee_wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(60, 63, 72, 0.88);
    z-index: -1;
}

.index_v6 .committee_slide .coffee_committee_details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: url("../images/team_shape.png") no-repeat bottom;
    text-align: center;
}

.index_v6 .committee_slide .coffee_committee_details .call_icon {
    width: 54px;
    height: 54px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v6 .committee_slide:hover .coffee_committee_details .call_icon {
    background-color: #ffc539;
}

.index_v6 .committee_slide .coffee_committee_details .call_icon svg path {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v6 .committee_slide:hover .coffee_committee_details .call_icon svg path {
    fill: #ffffff !important;
}

.index_v6 .committee_slide .coffee_committee_details h3 {
    font-size: 24px;
    font-weight: 600;
    color: #222222;
    /* text-transform: capitalize; */
}

.index_v6 .committee_slide .coffee_committee_details p {
    color: #ffc539;
    margin: 0;
    /* text-transform: capitalize; */
}

.index_v6 .committee_slider .slider_arrow {
    border: none;
    background-color: #505158;
}

.index_v6 .committee_slider .slider_arrow:hover {
    background-color: #ffc539;
}

.index_v6 .committee_slider .slider_arrow:hover svg path {
    fill: #ffffff;
}

/*Coffee Team End*/
/*Coffee Testimonial Start*/
.index_v6 .coffee_testimonial_wrapper {
    background-image: url("../images/index_v6_testimonial_bg.png");
    background-size: contain;
}

.coffee_testimonial_wrapper {
    padding-top: 90px;
}

.coffee_testimonial_slider .coffee_name_slider.swiper-container {
    padding: 84px 0px 0px;
}

.coffee_test_slide {
    border-radius: 10px;
    position: relative;
    background-color: #3c3f48;
    text-align: center;
    padding: 100px 100px 73px;
}

.coffee_test_slide .testimonial_client_image {
    position: absolute;
    left: 50%;
    top: -67px;
    transform: translateX(-50%);
}

.coffee_test_slide .testimonial_client_image span>img {
    border-radius: 50%;
    border: 8px solid #ffffff;
}

.coffee_test_slide>img.test_quote_bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 20px;
}

.coffee_test_slide p {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    font-style: italic;
    position: relative;
}

.coffee_test_slide p>span {
    position: absolute;
    top: 0;
    left: -40px;
}

.swiper-container.coffee_thumb_slider {
    position: absolute;
    max-width: 650px;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
}

.coffee_thumb_slide {
    text-align: center;
}

.coffee_thumb_slide h3 {
    /* text-transform: capitalize; */
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.1);
}

.swiper-slide.swiper-slide-active .coffee_thumb_slide h3 {
    color: #ffc539;
}

.coffee_arrow_wrapper {
    max-width: 250px;
    width: 100%;
    position: absolute;
    z-index: 30;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.coffee_test_left_arrow,
.coffee_test_right_arrow {
    cursor: pointer;
    outline: none;
}

/*Coffee Testimonial End*/
/*Coffee Shop Start*/
.index_v6 .garden_shop_wrapper {
    background: url("../images/coffee_shop_bg.jpg") no-repeat center;
    background-size: cover;
    position: relative;
    padding-bottom: 90px;
    z-index: 1;
}

.index_v6 .garden_shop_wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(60, 63, 72, 0.88);
    z-index: -1;
}

.index_v6 .garden_shop_slider {
    margin-top: 16px;
}

.index_v6 .garden_shop_slide:hover {
    box-shadow: 0px 0px 0px 1px #f2f2f2;
}

.index_v6 .garden_shop_slider .swiper-container {
    padding: 10px 0px 20px;
}

.index_v6 .garden_shop_slider .slider_arrow {
    width: 60px;
    height: 60px;
    outline: none;
    border: none;
    background-color: #505158;
    border-radius: 50%;
    color: #e2e2e2;
    font-size: 40px;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.index_v6 .garden_shop_slider .slider_arrow.right_arrow {
    left: auto;
    right: -100px;
}

.index_v6 .garden_shop_slider .slider_arrow svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.index_v6 .garden_shop_slider .slider_arrow:hover {
    background-color: #ffc539;
}

.index_v6 .garden_shop_slider .slider_arrow:hover svg path {
    fill: #ffffff;
}

/*Coffee Shop End*/
/*Coffee Pricing Start*/
.index_v6 .coffee_pricing_wrapper {
    background-image: url("../images/index_v6_pricing_bg.png");
    background-size: contain;
}

.coffee_pricing_wrapper {
    padding-top: 90px;
}

.coffee_pricing_section {
    margin-top: 25px;
}

.coffee_pricing_section .coffee_pricing_toggle {
    text-align: center;
    margin-bottom: 36px;
}

.coffee_pricing_toggle .fieldset {
    display: inline-block;
    position: relative;
    padding: 0px 2px;
    margin-bottom: 0;
    border-radius: 50em;
    background-color: #f8f8f8;
}

.coffee_pricing_toggle input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.coffee_pricing_toggle label {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-family: "Source Sans Pro", sans-serif;
    float: left;
    margin: 0;
    width: 90px;
    height: 50px;
    color: #222222;
    font-size: 18px;
    font-weight: 400;
    /* text-transform: capitalize; */
    line-height: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.coffee_pricing_toggle .pr_switch {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 50px;
    width: 92px;
    background-color: #fecf3f;
    border-radius: 50em;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}

.coffee_pricing_toggle input[type="radio"]:checked+label+.pr_switch {
    -webkit-transform: translateX(92px);
    -moz-transform: translateX(92px);
    -ms-transform: translateX(92px);
    -o-transform: translateX(92px);
    transform: translateX(92px);
}

.coffee_pricing_toggle input[type="radio"]:checked+label {
    color: #ffffff;
}

.pricing-group {
    position: relative;
}

.pricing-group.switched .coffee_pricing_block.yearly {
    transform: translate(-50%, -50%) scale(1);
}

.pricing-group.switched .coffee_pricing_block.monthly {
    transform: translate(0, 0) scale(0);
}

.coffee_pricing_block {
    text-align: center;
    box-shadow: 0px 0px 0px 1px #f2f2f2;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 0px 0px 30px;
    transform: translate(0, 0) scale(1);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.coffee_pricing_block:hover {
    box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.1);
}

.coffee_pricing_block.yearly {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
}

.coffee_pricing_block .pricing_header {
    padding: 30px 30px;
    border-radius: 10px 10px 0px 50px;
    background-color: #dc4c4c;
    margin-bottom: 54px;
}

.coffee_pricing_block .pricing_header.premium {
    border-radius: 10px 10px 0px 0px;
    background-color: #16c3c7;
}

.coffee_pricing_block .pricing_header.ultimate {
    border-radius: 10px 10px 50px 0px;
    background-color: #f39c11;
}

.coffee_pricing_block .pricing_header h5 {
    /* text-transform: capitalize; */
    font-weight: 400;
    font-size: 26px;
    color: #ffffff;
}

.coffee_pricing_block .pricing_header h3 {
    /* text-transform: capitalize; */
    font-weight: 700;
    font-size: 50px;
    color: #ffffff;
}

.coffee_pricing_block .pricing_header h3>span {
    font-size: 40px;
}

.coffee_pricing_block ul>li {
    margin-bottom: 30px;
}

.coffee_pricing_block ul>li>p {
    margin: 0;
    color: #222222;
    /* text-transform: capitalize; */
}

.coffee_pricing_block>a {
    display: inline-block;
    border-radius: 30px;
    background-color: #222222;
    color: #ffffff;
    /* text-transform: capitalize; */
    min-width: 170px;
    padding: 0px 10px;
    height: 50px;
    line-height: 50px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.coffee_pricing_block>a:hover {
    background-color: #ffc539;
}

/*Coffee Pricing End*/
/*Coffee Partner Start*/
.index_v6 .clv_partner_wrapper {
    padding-bottom: 100px;
    position: relative;
    background: url("../images/partner_bg.jpg") no-repeat center;
    background-size: cover;
    z-index: 1;
}

.index_v6 .clv_partner_wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(60, 63, 72, 0.88);
    z-index: -1;
}

.index_v6 .partner_slider .partner_slide .partner_image {
    background-color: transparent;
}

.index_v6 .partner_slider .partner_slide .partner_image:hover {
    background-color: #ffffff;
    border-color: #ffffff;
}

.index_v6 .partner_slider .partner_slide .partner_image svg path {
    fill: #ffffff;
}

.index_v6 .partner_slider .partner_slide .partner_image:hover svg path {
    fill: #ffc539;
}

.index_v6 .clv_partner_wrapper .partner_slider .slider_arrow {
    width: 60px;
    height: 60px;
    border: none;
    background-color: #505158;
}

.index_v6 .clv_partner_wrapper .partner_slider .slider_arrow:hover {
    background-color: #ffc539;
}

.index_v6 .clv_partner_wrapper .partner_slider .slider_arrow svg path {
    fill: #ffffff;
}

/*Coffee Partner End*/
/*Coffee Footer Start*/
.index_v6 .clv_footer_wrapper {}

.index_v6 .clv_footer_wrapper {
    background: none;
    padding-top: 100px;
    background-image: url("../images/index_v6_footer_bg.png");
    background-size: contain;
}

.support_main_wrapper {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 53px;
}

.footer_support_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer_support_wrapper .footer_service_section {
    width: 50%;
    display: flex;
    align-items: center;
}

.footer_support_wrapper .footer_service_section>img {
    margin-right: 50px;
}

.footer_support_wrapper .footer_service_section h3 {
    font-size: 26px;
    font-weight: 500;
    color: #222222;
}

.footer_support_wrapper .footer_service_section .contact_label {
    display: flex;
    align-items: center;
    height: 50px;
    margin-right: 15px;
    line-height: 50px;
    border-radius: 30px;
    padding-right: 20px;
    background-color: #ec5e5e;
}

.footer_support_wrapper .footer_service_section .contact_label>span {
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-right: 10px;
    text-align: center;
    border-radius: 50%;
    background-color: #de5a5a;
    float: left;
    display: inline-block;
}

.footer_support_wrapper .footer_service_section .contact_label:last-child {
    background-color: #f39c11;
}

.footer_support_wrapper .footer_service_section .contact_label:last-child>span {
    background-color: #e5930f;
}

.footer_support_wrapper .footer_service_section .contact_label>h4 {
    font-size: 22px;
    color: #ffffff;
    /* text-transform: capitalize; */
    font-weight: 500;
}

.index_v6 .clv_footer_wrapper .footer_block>p {
    color: #222222;
    margin-bottom: 10px;
}

.footer_post_section .footer_post_slide>.blog_links>p {
    color: #222222;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
}

.index_v6 .footer_block>p>span {
    margin-right: 10px;
}

.index_v6 .agri_social_links>li>a {
    color: #222222;
    border-color: #b1b1b14d;
}

.index_v6 .agri_social_links>li>a:hover {
    background-color: #ffc539;
    border-color: #ffc539;
    color: #ffffff;
}

.index_v6 .useful_links {
    display: inline-block;
    vertical-align: top;
}

.index_v6 .useful_links.float {
    float: right;
}

.index_v6 .clv_footer_wrapper .footer_block .useful_links>li>a {
    color: #222222;
}

.index_v6 .clv_footer_wrapper .footer_block .useful_links>li {
    margin-bottom: 10px;
}

.index_v6 .clv_footer_wrapper .footer_block .useful_links>li>a:hover {
    text-decoration: underline;
    color: #ffc539;
}

.index_v6 .footer_post_section::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.index_v6 .footer_post_section::-webkit-scrollbar-thumb {
    background: #ffc539;
}

.index_v6 .clv_footer_wrapper .footer_block .footer_heading>h4 {
    color: #222222;
    font-weight: 600;
}

.index_v6 .footer_post_section .footer_post_slide>.blog_links>a {
    color: #ffc539;
    font-family: "Source Sans Pro", sans-serif;
}

.index_v6 .footer_post_section .footer_post_slide>span {
    color: #222222;
}

/*Coffee Footer End*/
/*Coffee Copyright Start*/
.index_v6 .clv_copyright_wrapper {
    background-color: #222222;
}

.index_v6 .clv_copyright_wrapper p a {
    color: #ffffff;
}

/*Coffee Copyright End*/
/********************************************************
21. Index6 end
*******************************************************/
/********************************************************
22. About Page start
*******************************************************/
.about_page .clv_about_wrapper {
    padding-top: 125px;
}

.about_page .clv_about_product .about_product_contect .about_product_contact {
    background-color: #fec007;
}

.about_page .clv_about_product .about_product_contect .about_product_contact>span {
    background-color: #fec007;
}

.about_page .clv_about_product .about_keynote_speakers_image:after {
    background-color: #fec007;
}

.about_page .clv_about_product .about_product_contect>h6 {
    color: #fec007;
}

/*Breadcrumb Start*/
.breadcrumb_wrapper {
    position: relative;
    background: url("../images/Banner/aboutus.png") no-repeat center;
    background-size: cover;
    padding: 120px 0 80px;
    /* padding: 80px 0; */
    z-index: 1;
}

.breadcrumb_wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(37, 37, 37, 0.7);
    z-index: -1;
}

.breadcrumb_wrapper .breadcrumb_inner {
    /* text-align: left; */
    text-align: center;
}

.breadcrumb_wrapper .breadcrumb_inner h3 {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    /* text-transform: capitalize; */
}

.breadcrumb_block {
    /* position: absolute; */
    /* left: 50%; */
    /* bottom: -25px; */
    /* transform: translateX(-50%); */
    padding: 15px 0px;
    /* background-color: #fec007; */
    /* border-radius: 30px; */
    z-index: 1;
}

.breadcrumb_block ul li {
    display: inline-block;
    color: #ffffff;
    position: relative;
    margin-right: 15px;
    /* text-transform: capitalize; */
}

.breadcrumb_block ul li a {
    color: #ffffff;
}

/* .breadcrumb_block ul li:before, */
.breadcrumb_block ul li:after {
    content: ">";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}

.breadcrumb_block ul li:after {
    right: -15px;
}

.breadcrumb_block ul li:last-child {
    margin: 0;
}

.breadcrumb_block ul li:last-child:before,
.breadcrumb_block ul li:last-child:after {
    display: none;
}

/*Breadcrumb End*/
/********************************************************
22. About Page end
*******************************************************/
/********************************************************
23. Service Page start
*******************************************************/
.service_page .clv_features_wrapper {
    padding-top: 125px;
}

.service_page .clv_features_wrapper .feature_block h3:before,
.service_page .clv_features_wrapper .feature_block h3:after {
    background-color: #fec007;
}

.service_page .garden_service2_section .service2_block h3:before,
.service_page .garden_service2_section .service2_block h3:after {
    background-color: #fec007;
}

.service_page .garden_service2_section .service2_block:hover h3:before,
.service_page .garden_service2_section .service2_block:hover h3:after {
    background-color: rgba(255, 255, 255, 1);
}

/********************************************************
23. Service Page end
*******************************************************/
/********************************************************
24. Gallery Page Start
*******************************************************/
.gallery_page .clv_gallery_wrapper {
    background: none;
    padding-top: 115px;
    padding-bottom: 100px;
}

.gallery_page .clv_gallery_wrapper:before {
    display: none;
}

/********************************************************
24. Gallery Page end
*******************************************************/
/********************************************************
25. Blog Page start
*******************************************************/
.blog_page .blog_sidebar_wrapper {
    background-color: #ffffff;
    padding-top: 125px;
}

.blog_page .blog_sidebar_wrapper.blog_single_wrapper {
    padding-bottom: 40px;
}

.blog_page .blog_section {
    margin-bottom: 30px;
}

.blog_page .blog_section .regist_content {
    background-color: #fdfdfd;
}

.blog_pagination_section ul li {
    display: inline-block;
    margin: 0px 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.blog_pagination_section ul li a {
    display: inline-block;
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 55px;
    font-size: 18px;
    /* text-transform: capitalize; */
    border: 1px solid #eaeaea;
    position: relative;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.blog_pagination_section ul li a span {
    outline: none;
}

.blog_pagination_section ul li.blog_page_arrow a span {
    transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.blog_pagination_section ul li:first-child a:hover,
.blog_pagination_section ul li:last-child a:hover {
    width: 120px;
    border-radius: 40px;
    background-color: #fec007;
    border-color: #fec007;
    color: #ffffff;
}

.blog_pagination_section ul li.blog_page_arrow:first-child a span,
.blog_pagination_section ul li.blog_page_arrow:last-child a span {
    opacity: 0;
    visibility: hidden;
    font-size: 0;
}

.blog_pagination_section ul li:first-child a:hover span,
.blog_pagination_section ul li:last-child a:hover span {
    opacity: 1;
    visibility: visible;
    font-size: 18px;
}

.blog_pagination_section ul li a svg {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    display: inline-block;
}

.blog_pagination_section ul li a svg path {
    fill: #707070;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.blog_pagination_section ul li a:hover svg path {
    fill: #ffffff;
}

.blog_sidebar .sidebar_block {
    margin-bottom: 35px;
}

.sidebar_heading {
    margin: 20px 0;
}

.sidebar_heading h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 10px;
    /* text-transform: capitalize; */
}

.sidebar_search {
    position: relative;
    width: 100%;
}

.sidebar_search input {
    border: 1px solid #eaeaea;
    border-radius: 40px;
    height: 50px;
    width: 100%;
    padding: 0px 20px;
    padding-right: 50px;
    outline: none;
}

.sidebar_search a {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    cursor: pointer;
}

.sidebar_category>ul>li {
    position: relative;
    margin-bottom: 19px;
    padding-left: 30px;
}

.sidebar_category>ul>li:before {
    /* content: "";
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 4px solid #ddd;
	position: absolute;
	top: 50%;
	left: 0;
	display: inline-block;
	transform: translateY(-50%); */
    content: "";
    /* border-right: 8px solid transparent; */
    border-bottom: 8px solid #fec007;
    border-left: 8px solid #fec007;
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    transform: translateY(-50%);
    border-radius: 50%;
}

.sidebar_category>ul>li:last-child {
    margin-bottom: 0;
}

.sidebar_category>ul>li>a {
    /* text-transform: capitalize; */
}

.sidebar_category>ul>li>a>span {
    float: right;
}

.sidebar_post ul li {
    display: flex;
    align-content: center;
    margin-bottom: 13px;
}

.sidebar_post ul li .post_image {
    margin-right: 10px;
}

.sidebar_post ul li .post_image img {
    border-radius: 5px;
}

.sidebar_post ul li .post_content p {
    margin: 0;
    font-size: 14px;
    font-family: "Source Sans Pro", sans-serif;
    /* text-transform: capitalize; */
    color: #8d4293;
}

.sidebar_post ul li .post_content a {
    font-size: 15px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
}

.sidebar_tags ul li {
    display: inline-block;
    margin-bottom: 20px;
    margin-right: 5px;
}

.sidebar_tags ul li a {
    border: 1px solid #eaeaea;
    border-radius: 30px;
    padding: 5px 13px;
    color: #707070;
    /* text-transform: capitalize; */
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.sidebar_tags ul li a:hover {
    background-color: #fec007;
    border-color: #fec007;
    color: #ffffff;
}

.sidebar_test_slider {
    display: inline-block;
    position: relative;
    width: 100%;
    border-radius: 10px;
    background-color: #fec007;
    padding: 30px 20px 36px;
    text-align: center;
}

.sidebar_test_slide .test_slide_image {
    text-align: center;
    margin-bottom: 20px;
}

.sidebar_test_slide .test_slide_image>img {
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.sidebar_test_slide .test_slide_content {
    position: relative;
    z-index: 1;
}

.sidebar_test_slide .test_slide_content p {
    font-size: 15px;
    color: #ffffff;
    font-style: italic;
    margin: 0;
}

.sidebar_test_slide .test_slide_content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 5px;
    /* text-transform: capitalize; */
}

.sidebar_test_slide .test_slide_content img {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.sidebar_arrow_wrapper {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 130px;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.sidebar_arrow_wrapper .sidebar_test_arrow {
    font-size: 26px;
    color: #ffffff80;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.sidebar_arrow_wrapper .sidebar_test_arrow:hover {
    color: #ffffff;
}

/********************************************************
25. Blog Page end
*******************************************************/
/********************************************************
26. Blog Single Page start
*******************************************************/
.mt-3 {
    margin-top: 25px !important;
}

.single_content_wrapper {
    display: flex;
    align-items: flex-start;
}

.single_content_wrapper img {
    border-radius: 10px;
    margin-right: 10px;
}

.single_content_wrapper p {
    margin: 0;
}

.blog_message {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    text-align: center;
}

.blog_message>p {
    font-size: 18px;
    color: #222222;
    font-style: italic;
    margin: 0;
}

.blog_message>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.author_message_box {
    background-color: #fec007;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 92px;
}

.author_image {
    margin-right: 20px;
}

.author_image img {
    border-radius: 10px;
}

.author_content {
    padding-right: 30px;
}

.author_content .social_name {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.author_content .social_name h3 {
    font-size: 20px;
    color: #ffffff;
    margin-right: 30px;
    text-transform: uppercase;
    font-weight: 600;
}

.author_content .social_name h3>span {
    /* text-transform: capitalize; */
    font-weight: 600;
    font-size: 18px;
}

.author_content .social_name>ul {
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 40px;
}

.author_content .social_name>ul>li {
    display: inline-block;
    margin: 0px 5px;
}

.author_content .social_name>ul>li>a {
    color: #ffffff;
    font-size: 18px;
}

.author_content p {
    margin: 0;
    color: #ffffff;
}

.Papers_single_heading {
    margin: auto;
    text-align: center;
    margin-bottom: 20px;
}

.camera-ready-section {
    /* text-align: center; */
}

.camera-ready-section h4 {
    color: #0d47a1;
    text-align: center;
}

/* RESET default list styles */
.camera-ready-section ul,
.camera-ready-section ol {
    padding-left: 0;
    margin: 2rem 0;
}

/* === STYLE FOR CUSTOM-CHECK UL === */
.camera-ready-section ul.custom-check {
    list-style: none;
}

.camera-ready-section ul.custom-check li {
    position: relative;
    background: #f9fafb;
    padding: 0.5em 1.5em 0.5em 3rem;
    margin-bottom: 1.5em;
    border-left: 4px solid #9b000f;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    font-size: 1.05rem;
    color: #333;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: fit-content;
}

.camera-ready-section ul.custom-check li::before {
    content: "✔";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9b000f;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1;
}

.camera-ready-section ul.custom-check li:hover {
    background: #eef3f8;
    transform: translateY(-2px);
}

/* === STYLE FOR NUMBERED LIST === */
.camera-ready-section ol.numbered-list {
    list-style: decimal inside;
}

.camera-ready-section ol.numbered-list li {
    background: #f9fafb;
    padding: 0.5em 1.5em;
    margin-bottom: 1.5em;
    border-left: 4px solid #9b000f;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    font-size: 1.05rem;
    color: #333;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: fit-content;
    text-align: left;
}

.camera-ready-section ol.numbered-list li:hover {
    background: #eef3f8;
    transform: translateY(-2px);
}

.camera-ready-section h4 {
    color: #0d47a1;
    text-align: center;
}

.camera-ready-section ul li,
.camera-ready-section ol li {
    font-size: 16px;
}

.Papers_single_heading h3 {
    color: #ffffff;
    /* text-transform: capitalize; */
    font-size: 24px;
    font-weight: 600;
    background: #9b0107;
    padding: 10px;
    margin-bottom: 10px;
    width: fit-content;
    margin: auto;
}

.comment_section {
    margin-bottom: 20px;
}

.comment_section>ul>li {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.comment_section>ul>li:last-child {
    border: none;
    margin: 0;
}

.comment_box {
    display: flex;
}

.comment_box .comment_image {
    margin-right: 30px;
}

.comment_box .comment_image>img {
    border-radius: 50%;
}

.comment_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.comment_header .comment_name {
    display: flex;
    align-items: center;
}

.comment_header .comment_name>h5 {
    font-size: 20px;
    /* text-transform: capitalize; */
    font-weight: 600;
    color: #222222;
    margin-right: 10px;
}

.comment_header .comment_name>span {
    color: #9b0107;
    margin-right: 10px;
}

.comment_header>a {
    display: inline-block;
    min-width: 80px;
    text-align: center;
    height: 30px;
    line-height: 25px;
    border: 1px solid #ebebeb;
    border-radius: 40px;
    /* text-transform: capitalize; */
    color: #222222;
}

.comment_box .comment_text>p {
    margin: 0;
}

.comment_section>ul>li>ul>li {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    margin-left: 100px;
}

.comment_section>ul>li>ul>li:last-child {
    margin-bottom: 0;
    border: none;
    padding: 0;
}

.form_block {
    margin-bottom: 30px;
}

.form_block .form_field {
    height: 50px;
    width: 100%;
    border-radius: 5px;
    padding: 0px 10px;
    border: 1px solid #ebebeb;
    outline: none;
}

.form_block .form_field_registation {
    height: 50px;
    border-radius: 5px;
    padding: 0px 10px;
    border: 1px solid #ebebeb;
    outline: none;
}

.form_block textarea.form_field_registation {
    min-height: 170px;
    padding-top: 15px;
    resize: none;
}

.display-inline-table tbody {
    width: 100%;
    display: inline-table;
}

button.add-input {
    background: #28a745;
    color: white;
    border: 1px solid green;
}

button.remove-button {
    background: #dc3545;
    color: white;
    border: 1px solid #dc3545;
}

.form_block textarea.form_field {
    min-height: 170px;
    padding-top: 15px;
    resize: none;
}

/********************************************************
login Page end
*******************************************************/
.login-wrapper {
    padding-top: 125px;
}

.login-form {
    padding: 40px 50px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    background: white;
}

.login-form_heading {
    padding: 0px 40px;
    border-bottom: 1px solid #f7f7f7;
    margin-bottom: 30px;
}

.register-form {
    padding: 0px 40px;
    margin-bottom: 6px;
}

.login-form h2 {
    font-size: 35px;
    margin-bottom: 25px;
    font-weight: 800;
}

.login-form form .remember-me-wrap [type="checkbox"]:checked+label,
.login-form form .remember-me-wrap [type="checkbox"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    margin-bottom: 0;
    color: #6b6b84;
    font-weight: 600;
}

.login-form form .remember-me-wrap [type="checkbox"]:checked+label:before,
.login-form form .remember-me-wrap [type="checkbox"]:not(:checked)+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 19px;
    height: 19px;
    transition: all 0.2sease;
    border: 1px solid #f5f5f5;
    border-radius: 3px;
    background: #f5f5f5;
}

.login-form form .remember-me-wrap [type="checkbox"]:not(:checked)+label:after {
    opacity: 0;
    transform: scale(0);
}

.login-form form .remember-me-wrap [type="checkbox"]:checked+label:after,
.login-form form .remember-me-wrap [type="checkbox"]:not(:checked)+label:after {
    content: "";
    width: 8px;
    height: 8px;
    background: #b80d14;
    position: absolute;
    top: 5.5px;
    left: 6px;
    transition: all 0.2sease;
}

.login-form form .lost-your-password-wrap {
    text-align: right;
}

.login-form form .lost-your-password-wrap a {
    display: inline-block;
    position: relative;
    font-weight: 600;
    line-height: 1.3;
}

.login-form form .lost-your-password-wrap a:before {
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    transition: 0.5s;
    background-color: #eee;
}

.login-form form .lost-your-password-wrap a:after {
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    transition: 0.5s;
    bottom: 0;
    content: "";
    background-color: #ff5d22;
}

.login-form form button {
    margin-top: 22px;
    border: none;
    /* display: block; */
    text-align: center;
    /* overflow: hidden; */
    color: #fff;
    /* background-color: #ff5d22; */
    transition: 0.5s;
    width: 100%;
    border-radius: 5px;
    /* padding: 14.5px 30px; */
    font-weight: 700;
    font-size: 17px;
}

.login-form form .remember-me-wrap [type="checkbox"]:checked,
.login-form form .remember-me-wrap [type="checkbox"]:not(:checked) {
    display: none;
}

.form-check-input[type="checkbox"] {
    border-radius: 0.25em;
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}

.form-check-input {
    --bs-form-check-bg: var(--bs-body-bg);
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
}

.login-form form .remember-me-wrap [type="checkbox"]:checked,
.login-form form .remember-me-wrap [type="checkbox"]:not(:checked) {
    display: none;
}

.form-check-input:checked[type="checkbox"] {
    --bs-form-check-bg-image: url(data:image/svg + xml,
 %3csvgxmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" %3e%3cpathfill="none" stroke="%23fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="m6 10 3 3 6-6" /%3e%3c/svg%3e);
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-input[type="checkbox"] {
    border-radius: 0.25em;
}

/********************************************************
 Contact Page Start
*******************************************************/
.contact_blocks_wrapper {
    background-color: #ffffff;
    padding-top: 125px;
}

.contact_block {
    position: relative;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    background-color: #ffffff;
    text-align: center;
    padding: 30px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    /* height: 250px; */
    min-height: 250px;
}

.contact_block:before,
.contact_block:after,
.contact_block span:before,
.contact_block span:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-width: 1px 0px 0px 1px;
    border-radius: 10px 0px 0px 0px;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.contact_block:after {
    top: auto;
    bottom: 0;
    border-radius: 0px 0px 0px 10px;
    border-width: 0px 0px 1px 1px;
}

.contact_block span:before {
    left: auto;
    right: 0;
    border-radius: 0px 10px 0px 0px;
    border-width: 1px 1px 0px 0px;
}

.contact_block span:after {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    border-radius: 0px 0px 10px 0px;
    border-width: 0px 1px 1px 0px;
}

.contact_block:hover:before {
    width: 90px;
    height: 60px;
    border-color: #b80d14;
}

.contact_block:hover:after {
    width: 60px;
    height: 90px;
    border-color: #b80d14;
}

.contact_block:hover span:before {
    width: 60px;
    height: 90px;
    border-color: #b80d14;
}

.contact_block:hover span:after {
    width: 90px;
    height: 60px;
    border-color: #b80d14;
}

.contact_block .contact_icon {
    margin-bottom: 15px;
}

.contact_block h4 {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 17px;
    /* text-transform: capitalize; */
    font-size: 26px;
    color: #222222;
    font-weight: 600;
}

.contact_block h4:before,
.contact_block h4:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 104px;
    height: 1px;
    background-color: #b80d14;
}

.contact_block h4:after {
    width: 56px;
    top: calc(100% + 5px);
}

.contact_block p {
    margin: 0;
    font-size: 16px;
}

.contact_form_wrapper {
    background-color: #f9f9f9;
    background-image: url("../images/svg/client-bg.png");
    background-size: contain;
}

.contact_form_section {
    background-color: #ffffff;
    border-radius: 10px 10px 10px 10px;
    padding: 33px 40px 10px;
}

.contact_form_section h3 {
    /* text-transform: capitalize; */
    font-size: 32px;
    margin-bottom: 22px;
    color: #222222;
    font-weight: 600;
}

.contact_form_section form {
    display: contents;
}

.working_time_section {
    background-color: #ffffff;
}

.timetable_block {
    padding: 40px 40px 20px;
    background-color: #ffffff;
}

.timetable_block h5 {
    font-size: 22px;
    font-weight: 700;
    /* text-transform: capitalize; */
    text-align: center;
    margin-bottom: 19px;
    color: #222222;
}

.timetable_block>ul>li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.timetable_block>ul>li:last-child {
    margin: 0;
}

.timetable_block>ul>li>p {
    margin: 0;
    color: #222222;
    /* text-transform: capitalize; */
    text-align: left;
    width: 45%;
}

.tollfree_block {
    border-radius: 10px;
    background-color: #fec007;
    padding: 22px 20px 19px;
    text-align: center;
    margin-top: 30px;
}

.tollfree_block h5 {
    font-size: 22px;
    font-weight: 600;
    /* text-transform: capitalize; */
    color: #ffffff;
    margin-bottom: 3px;
}

.tollfree_block h3 {
    font-size: 32px;
    font-weight: 700;
    /* text-transform: capitalize; */
    font-family: "Lato", sans-serif;
    color: #ffffff;
}

#map {
    height: 550px;
    width: 100%;
}

/********************************************************
27. Contact Page end
*******************************************************/
/********************************************************
28. product Page start
*******************************************************/
.products_wrapper {
    padding-top: 125px;
}

.product_block {
    margin-bottom: 30px;
}

.product_category>ul>li {
    margin-bottom: 15px;
}

.product_category>ul>li:last-child {
    margin-bottom: 0;
}

.product_category>ul>li>input[type="checkbox"] {
    position: absolute;
    left: -9999px;
}

.product_category>ul>li>label {
    position: relative;
    width: 100%;
    cursor: pointer;
    margin: 0;
    /* text-transform: capitalize; */
    padding-left: 20px;
}

.product_category>ul>li>label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 4px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
}

.product_category>ul>li>label:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    padding: 3px;
    background: #fec007;
    opacity: 0;
    visibility: hidden;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.product_category>ul>li>label>span {
    float: right;
}

.product_category>ul>li>input[type="checkbox"]:checked~label:after {
    opacity: 1;
    visibility: visible;
}

.Range_slider {
    padding: 0px 10px;
    margin-top: 5px;
    display: inline-block;
    width: 100%;
}

.Range_slider .ui-widget.ui-widget-content {
    border-color: #fec007;
    height: 2px;
}

.Range_slider .ui-slider .ui-slider-range {
    background-color: #fec007;
}

.Range_slider .ui-state-default {
    border: 1px solid #fec007;
    background: #fec007;
    outline: none;
    border-radius: 50%;
    top: -8px;
    cursor: pointer;
    width: 15px;
    height: 15px;
}

.price_range {
    margin: 33px -10px 0px;
}

.price_range p {
    margin: 0;
    font-size: 18px;
    color: #222222;
    /* text-transform: capitalize; */
    font-weight: 600;
}

.product_list_section {
    margin-top: 65px;
}

.product_list_filter>ul>li {
    display: inline-block;
    width: 33%;
    text-align: center;
    color: #222222;
    font-size: 18px;
    /* text-transform: capitalize; */
    position: relative;
}

.product_list_filter>ul>li:nth-child(2):before,
.product_list_filter>ul>li:nth-child(2):after {
    content: "";
    width: 1px;
    height: 20px;
    background-color: #e5e5e5;
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
}

.product_list_filter>ul>li:nth-child(2):after {
    left: auto;
    right: 45px;
}

.product_list_filter>ul>li:first-child {
    text-align: left;
}

.product_list_filter>ul>li:last-child {
    text-align: right;
}

.product_list_filter ul.list_view_toggle>li {
    display: inline-block;
    margin-left: 10px;
}

.product_list_filter>ul>li .nice-select {
    border: none;
    margin: 0 auto;
    float: none;
    display: inline;
    font-size: 18px;
}

.nice-select {
    height: 50px;
    line-height: 50px;
    font-size: 15px;
    width: 100%;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #ebebeb;
}

.nice-select .list {
    margin-top: 0px;
}

.product_list_filter>ul>li .nice-select:after {
    width: 7px;
    height: 7px;
    border-color: #222222;
}

.product_list_filter>ul>li .nice-select .option {
    font-size: 16px;
}

.product_list_filter>ul>li .nice-select .option.selected {
    font-weight: 600;
    background-color: #f5f5f5;
}

.list_view_toggle>li>a {
    width: 24px;
    height: 24px;
    border: 1px solid #e5e5e5;
    display: inline-block;
    text-align: center;
    line-height: 19px;
}

.list_view_toggle>li>a.active>svg path {
    fill: #fec007;
}

.product_items_section {
    margin-top: 18px;
}

.product_items_section>ul {
    margin: 0px -15px;
}

.product_items_section>ul>li {
    width: 33%;
    padding: 0px 15px;
    display: inline-block;
}

.product_item_block {
    margin-bottom: 30px;
}

.product_items_section ul li .org_product_block {
    padding: 60px 0px 10px;
    margin-bottom: 0;
    z-index: 1;
}

.product_items_section ul li .org_product_block .org_keynote_speakers_image>img {
    max-width: 100%;
}

.product_items_section ul li .org_product_block a {
    position: absolute;
    top: calc(100% - 90px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: none;
}

.product_items_section ul li .org_product_block:hover {
    padding: 60px 0px 90px;
    margin-bottom: -90px;
    z-index: 2;
}

.product_items_section ul li .org_product_block:hover>a {
    opacity: 1;
    visibility: visible;
}

.product_list_section .blog_pagination_section {
    margin-top: 10px;
}

.product_items_section.product_list_view>ul>li {
    width: 100%;
}

.product_items_section.product_list_view>ul>li>.product_item_block {
    display: flex;
    box-shadow: 0px 0px 0px 1px #ededed;
    border-radius: 10px;
}

.product_items_section.product_list_view .product_item_block .org_product_block {
    box-shadow: none;
    width: 33%;
    padding: 40px 30px;
}

.product_items_section.product_list_view .product_item_block .org_product_block:hover {
    box-shadow: none;
    margin: 0;
}

.product_items_section .product_item_block .content_block {
    width: 67%;
    position: relative;
    padding: 40px 30px 40px;
    display: none;
}

.product_items_section .product_item_block .content_block:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 250px;
    background-color: #f5f5f5;
}

.product_items_section.product_list_view .product_item_block .content_block {
    display: block;
}

.product_items_section.product_list_view .org_product_block h4 {
    display: none;
}

.product_items_section.product_list_view .org_product_block h3 {
    display: none;
}

.product_list_view.product_items_section ul li .org_product_block a {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
    position: relative;
    top: unset;
    left: unset;
}

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

.content_block .product_price_box>h3 {
    font-size: 22px;
    /* text-transform: capitalize; */
    font-weight: 600;
    color: #222222;
    margin-bottom: 5px;
}

.content_block .product_price_box>h5 {
    font-size: 26px;
    color: #222222;
    /* text-transform: capitalize; */
    font-weight: 700;
}

.content_block .product_price_box>h5>span {
    font-size: 20px;
}

.content_block>p {
    margin-bottom: 20px;
}

.content_block>.rating_section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.content_block>.rating_section span {
    color: #fec007;
    margin-right: 10px;
}

.content_block>.rating_section>ul>li {
    display: inline-block;
}

.content_block>.rating_section>ul>li>a {
    color: #7c7c7c;
}

.content_block>.rating_section>ul>li>a.active {
    color: #fec007;
}

.content_block>.rating_section {
    margin-bottom: 20px;
}

.content_block>.rating_section>p {
    margin: 0;
    /* text-transform: capitalize; */
    margin-left: 10px;
}

.content_block>.product_code {
    margin-bottom: 23px;
}

.content_block>.product_code>li {
    display: inline-block;
    padding: 0px 10px;
    position: relative;
}

.content_block>.product_code>li:first-child {
    padding-left: 0;
}

.content_block>.product_code>li:first-child:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 15px;
    background-color: #222222;
}

.content_block>.product_code>li>p {
    margin: 0;
    /* text-transform: capitalize; */
}

.content_block>.product_code>li>p span {
    color: #fec007;
}

/********************************************************
28. product Page end
*******************************************************/
/********************************************************
29. product single Page start
*******************************************************/
.product_single_wrapper {
    padding-top: 125px;
    padding-bottom: 21px;
}

.fd_pro_thumnail {
    height: 550px;
    overflow: hidden;
    text-align: left;
}

.product_single_slider .col-lg-3 {
    padding-right: 0px;
}

.product_single_slider .col-lg-9 {
    padding-left: 0px;
}

.fd_pro_thumnail .swiper-container {
    backface-visibility: hidden;
    height: 100% !important;
}

.fd_pro_thumnail .fd_pro_img_thumnail img,
.fd_product_img .fd_pro_img img {
    border: 1px solid #ebebeb;
    border-radius: 10px;
    max-width: 100%;
}

.fd_pro_thumnail .swiper-slide.swiper-slide-active .fd_pro_img_thumnail img {
    border: 2px solid #fec007;
}

.product_single_details {
    margin-top: 20px;
}

.product_single_details .product_price_box h3 {
    font-size: 24px;
    /* text-transform: capitalize; */
    font-weight: 600;
    color: #222222;
    margin-bottom: 20px;
}

.product_single_details .rating_section {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.product_single_details .rating_section>span {
    color: #fec007;
    margin-right: 10px;
}

.product_single_details>.rating_section>p {
    margin: 0;
    /* text-transform: capitalize; */
    margin-left: 10px;
}

.product_single_details>.rating_section>ul>li {
    display: inline-block;
}

.product_single_details>.rating_section>ul>li>a.active {
    color: #fec007;
}

.product_single_details>.rating_section>ul>li>a {
    color: #7c7c7c;
}

.product_single_details>.product_code {
    margin-bottom: 13px;
}

.product_single_details>.product_code>li {
    display: inline-block;
    padding: 0px 10px;
    position: relative;
}

.product_single_details>.product_code>li:first-child {
    padding-left: 0;
}

.product_single_details>.product_code>li:first-child:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 15px;
    background-color: #222222;
}

.product_single_details>.product_code>li>p {
    margin: 0;
    /* text-transform: capitalize; */
}

.product_single_details>.product_code>li>p span {
    color: #fec007;
}

.product_prices {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product_prices h2 {
    font-size: 22px;
    font-weight: 600;
    color: #222222;
    margin-right: 10px;
}

.product_prices h3 {
    font-size: 18px;
    font-weight: 600;
    text-decoration: line-through;
    margin-right: 10px;
}

.product_prices span.product_discount {
    color: #fec007;
}

.product_delivery p {
    display: flex;
    align-items: center;
}

.product_delivery p span.pro_icon {
    margin-right: 10px;
    font-size: 18px;
    position: relative;
    color: #fec007;
}

.product_delivery p input {
    border: none;
    width: 200px;
    outline: none;
}

.product_delivery p input::placeholder {
    color: #d4d4d4;
}

.product_delivery p a.pin_check {
    padding-left: 11px;
    font-size: 18px;
    color: #fec007;
    /* text-transform: capitalize; */
    display: inline-block;
    font-weight: 600;
    position: relative;
}

.product_delivery p a.pin_check:before {
    position: absolute;
    width: 1px;
    height: 15px;
    background-color: #d4d4d4;
    top: 50%;
    left: 2px;
    content: "";
    transform: translateY(-50%);
}

.pro_cod {
    color: #222222;
    /* text-transform: capitalize; */
    margin-bottom: 25px;
}

.pro_cod span {
    margin-right: 10px;
    color: #fec007;
}

.quantity_wrapper {
    width: 130px;
    display: inline-block;
    float: left;
}

.quantity_wrapper>.input-group {
    border: 1px solid #ebebeb;
    border-radius: 5px;
}

.quantity_wrapper>.input-group>span {
    height: 50px;
    width: 33%;
    text-align: center;
    line-height: 50px;
    position: relative;
    font-size: 26px;
    color: #fec007;
    cursor: pointer;
}

.quantity_wrapper>.input-group>input {
    max-width: 33%;
    text-align: center;
    color: #707070;
    border: none;
}

.quantity_wrapper>.input-group>span.quantity_minus:after,
.quantity_wrapper>.input-group>span.quantity_plus:before {
    position: absolute;
    width: 1px;
    height: 22px;
    background-color: #ebebeb;
    top: 50%;
    right: 0;
    content: "";
    margin-top: -11px;
}

.quantity_wrapper>.input-group>span.quantity_plus:before {
    left: 0;
    right: auto;
}

.fd_pro_add_btn {
    float: left;
    margin-left: 30px;
}

.product_detail_wrapper::after {
    position: relative;
    /* bottom: 22px; */
    z-index: 1;
}

.product_detail_wrapper {
    position: relative;
    /* bottom: 22px; */
    z-index: 1;
}

.product_detail_tab {
    padding-bottom: 20px;
}

.product_detail_tab>.nav-tabs {
    border: none;
    margin-bottom: 30px;
    border-radius: 40px;
    background: #d51921;
    width: max-content;
    justify-content: center;
    text-align: center;
    margin: auto;
}

.product_detail_tab>ul>li {
    margin: 3px 5px;
    position: relative;
}

.product_detail_tab>ul>li:first-child {
    /* margin-left: 0; */
}

.product_detail_tab>ul>li>a {
    display: inline-block;
    min-width: 130px;
    padding: 9px 10px;
    border-radius: 40px;
    background-color: transparent;
    /* text-transform: capitalize; */
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    margin: 2px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.product_detail_tab>ul>li>a.active {
    color: #ffffff;
    background-color: #9b0107;
    border: 1px solid #9b0107;
}

/* .product_detail_tab>ul>li>::after a.active {
	font-family: "Font Awesome 5 Free";
	content: "\f0d7";
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	line-height: 28px;
	margin-left: auto;
} */
.product_detail_tab>ul>li>a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #9b0107;
}

.additional_info {
    width: 86%;
    position: relative;
}

.additional_info>li {
    width: 50%;
    float: left;
    /* text-transform: capitalize; */
    margin-bottom: 20px;
}

.additional_info>li>span {
    font-size: 16px;
    color: #222;
    /* text-transform: capitalize; */
    font-weight: bold;
    margin-right: 10px;
}

.fd_review_wrapper .review_heading {
    font-size: 20px;
    color: #222222;
    font-weight: 800;
    margin-bottom: 35px;
    text-align: center;
    /* text-transform: capitalize; */
}

.fd_review_wrapper h5 {
    font-size: 20px;
    color: #222222;
    font-weight: 500;
    margin-bottom: 35px;
    /* text-transform: capitalize; */
}

/********************************************************
29. product single Page end
*******************************************************/
/********************************************************
30. Checkout Page start
*******************************************************/
.clv_checkout_wrapper {
    /* padding-top: 125px; */
}

.checkout_inner {
    padding: 34px 0px 40px;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

.checkout_heading {
    padding: 0px 40px;
    border-bottom: 1px solid #f7f7f7;
    margin-bottom: 30px;
}

.checkout_heading h3 {
    font-size: 26px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 30px;
    /* text-transform: capitalize; */
}

.checkout_heading h5 {
    color: #222222;
    /* text-transform: capitalize; */
    font-size: 18px;
    margin-bottom: 16px;
}

.checkout_form {
    padding: 0px 40px;
    margin-bottom: 6px;
}

.payment_option {
    padding: 0px 40px;
    margin-bottom: 40px;
}

.payment_option>ul>li {
    display: inline-block;
    margin-right: 20px;
}

.payment_option>ul>li>input[type="radio"] {
    position: absolute;
    left: -9999px;
}

.payment_option>ul>li>label {
    position: relative;
    margin: 0;
    padding-left: 25px;
    cursor: pointer;
}

.payment_option>ul>li>label>span {
    margin-right: 10px;
    vertical-align: middle;
    /* text-transform: capitalize; */
    color: #222222;
}

.payment_option>ul>li>label:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #c8c8c8;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.payment_option>ul>li>label:after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #c8c8c8;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.payment_option>ul>li>input[type="radio"]:checked~label:before {
    border-color: #3fad21;
}

.payment_option>ul>li>input[type="radio"]:checked~label:after {
    background-color: #3fad21;
}

.checkout_submit {
    padding: 0px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout_submit>a {
    color: #222222;
    font-size: 16px;
    font-family: "Source Sans Pro", sans-serif;
    /* text-transform: capitalize; */
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.checkout_submit>a:hover {
    color: #fec007;
}

.checkout_submit>a>span {
    font-size: 18px;
}

.cart_summery_block {
    padding: 32px 40px 35px;
    border-radius: 10px;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.cart_summery_block>h3 {
    font-size: 26px;
    font-weight: 600;
    /* text-transform: capitalize; */
    color: #222222;
    margin-bottom: 9px;
}

.cart_summery_block>h5 {
    font-size: 18px;
    font-weight: 500;
    /* text-transform: capitalize; */
    color: #222222;
    margin-bottom: 6px;
}

.cart_summery_block>ul>li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f6f6f6;
    padding: 18px 0px 18px;
}

.cart_summery_block>ul>li:last-child {
    border: none;
}

.cart_summery_block>ul>li>.product_quantity {
    width: 50%;
}

.product_quantity h6 {
    font-size: 18px;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    color: #222222;
    /* text-transform: capitalize; */
}

.product_quantity p {
    margin: 0;
}

.product_price>h4 {
    font-size: 22px;
    font-weight: 600;
    color: #222222;
    /* text-transform: capitalize; */
}

.total_amount>h4 {
    font-size: 18px;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    color: #222222;
    /* text-transform: capitalize; */
}

.cart_summery_block>a {
    /* text-transform: capitalize; */
    color: #fec007;
    text-align: center;
    font-size: 18px;
    font-family: "Source Sans Pro", sans-serif;
    text-decoration: underline;
    display: block;
}

.guarantee_block {
    text-align: center;
    padding: 40px 40px 35px;
    border-radius: 10px;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.06);
}

.guarantee_block>.guaranty_icon {
    margin-bottom: 25px;
}

.guarantee_block>h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222222;
    /* text-transform: capitalize; */
    margin-bottom: 11px;
}

.guarantee_block>p {
    margin: 0;
}

/********************************************************
30. Checkout Page end
*******************************************************/
/********************************************************
31. Cart Single Page start
*******************************************************/
.cart_single_wrapper {
    padding-top: 125px;
}

.cart_table_section {
    width: 100%;
    padding: 34px 50px 50px;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    z-index: 99;
    position: relative;
    background: white;
}

.table_heading {
    margin-bottom: 36px;
}

.table_heading>h3 {
    font-size: 26px;
    font-weight: 600;
    color: #222222;
    display: inline-block;
    /* text-transform: capitalize; */
}

.table_heading>h4 {
    font-size: 26px;
    font-weight: 600;
    color: #222222;
    /* text-transform: capitalize; */
    float: right;
}

.woocommerce-cart .cart_table {
    width: 100%;
    display: table;
}

.woocommerce-cart .cart_table tr {
    border-bottom: 1px solid #f7f7f7;
    padding: 10px 0px;
}

.woocommerce-cart .cart_table tr:last-child {
    border: none;
}

.woocommerce-cart .cart_table tr th {
    text-align: center;
    font-size: 18px;
    /* text-transform: capitalize; */
    font-family: "Source Sans Pro", sans-serif;
    color: #707070;
    font-weight: 600;
    padding: 10px 0px 19px;
    margin: 10px 0px 20px;
}

.woocommerce-cart .cart_table tr th:first-child,
.woocommerce-cart .cart_table tr td:first-child {
    text-align: left;
    width: 20%;
}

.woocommerce-cart .cart_table tr:nth-child(2) td:first-child {
    padding-top: 51px;
}

.woocommerce-cart .cart_table tr td {
    padding: 19px 0px 21px;
    text-align: center;
}

.woocommerce-cart .cart_table tr td .product_img {
    display: flex;
    align-items: center;
}

.woocommerce-cart .cart_table tr td .product_img>h6 {
    margin-left: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    /* text-transform: capitalize; */
    font-family: "Lato", sans-serif;
}

.woocommerce-cart .cart_table tr td .item_quantity {
    margin: 0 auto;
}

.woocommerce-cart .cart_table tr td .pro_price>h5 {
    font-size: 22px;
    font-weight: 600;
    color: #222222;
    /* text-transform: capitalize; */
}

.woocommerce-cart .cart_table tr td .pro_remove>span {
    cursor: pointer;
}

.checkout_btn_block {
    margin-top: 14px;
}

.woocommerce-cart .clv_btn {
    padding: 0px 30px;
}

/********************************************************
31. Cart Single Page end
*******************************************************/
/********************************************************
32. Profile Page start
*******************************************************/
.user_profile_wrapper {
    padding-top: 198px;
}

.user_profile_section {
    padding: 0px 0px 60px;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

.profile_image_block {
    text-align: center;
    margin-bottom: 56px;
}

.user_profile_img {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    margin-top: -100px;
}

.user_profile_img>img {
    width: 172px;
    height: 172px;
    border-radius: 50%;
}

.user_profile_img>input[type="file"] {
    position: absolute;
    left: -9999px;
    opacity: 0;
    visibility: hidden;
}

.user_profile_img>label {
    margin: 0;
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fec007;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.user_profile_section .checkout_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
}

.user_profile_section .checkout_heading h3 {
    font-size: 22px;
    margin: 0;
}

.user_profile_section .checkout_heading>a {
    /* text-transform: capitalize; */
    color: #fec007;
}

.user_profile_section .checkout_heading>a>span {
    margin-right: 5px;
}

.profile_form {
    padding: 0px 40px;
}

.profile_form .form_block h6 {
    font-size: 20px;
    /* text-transform: capitalize; */
    color: #222222;
    margin-bottom: 15px;
}

.profile_form .form_block {
    margin-bottom: 25px;
}

.error_image {
    position: relative;
    text-align: center;
}

.error_image .shape_img {
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.error_image .veg_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 20px;
}

.error_image h2 {
    font-size: 400px;
    line-height: 458px;
    /* text-transform: capitalize; */
    font-weight: 700;
    color: #fec007;
}

.error_content {
    text-align: center;
    margin-top: 28px;
}

.error_content h3 {
    font-size: 42px;
    color: #222222;
    /* text-transform: capitalize; */
    margin-bottom: 5px;
}

.error_content h3>span {
    font-weight: 700;
}

.error_content p {
    font-size: 22px;
    /* text-transform: capitalize; */
    margin-bottom: 22px;
}

/********************************************************
32. Profile Page end
*******************************************************/
/********************************************************
33. Success Popup Start
*******************************************************/
.success_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.success_wrapper.open_success {
    opacity: 1;
    visibility: visible;
}

.success_wrapper>.success_inner {
    width: 100%;
    max-width: 732px;
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
    padding: 60px 110px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px) rotateY(10deg);
    -webkit-transform: translateY(-50px) rotateY(10deg);
    -moz-transform: translateY(-50px) rotateY(10deg);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.success_wrapper.open_success>.success_inner {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) rotateY(0deg);
    -webkit-transform: translateY(0px) rotateY(0deg);
    -moz-transform: translateY(0px) rotateY(0deg);
}

.success_wrapper>.success_inner .success_img {
    margin-bottom: 20px;
}

.success_wrapper>.success_inner>img {
    margin-bottom: 13px;
}

.success_wrapper>.success_inner>h3 {
    font-size: 32px;
    font-weight: 600;
    /* text-transform: capitalize; */
    color: #222222;
    margin-bottom: 8px;
}

.success_wrapper>.success_inner>p {
    font-size: 16px;
    margin-bottom: 34px;
    font-weight: 600;
}

.success_wrapper>.success_inner>span.success_close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #dbdbdb;
    cursor: pointer;
}

/********************************************************
33. Success Popup End
*******************************************************/
/********************************************************
34. Thankyou Popup Start
*******************************************************/
.thankyou_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.thankyou_wrapper.open_thankyou {
    opacity: 1;
    visibility: visible;
}

.thankyou_wrapper>.thankyou_inner {
    width: 100%;
    max-width: 732px;
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
    padding: 60px 90px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px) rotateY(10deg);
    -webkit-transform: translateY(-50px) rotateY(10deg);
    -moz-transform: translateY(-50px) rotateY(10deg);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.thankyou_wrapper.open_thankyou>.thankyou_inner {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) rotateY(0deg);
    -webkit-transform: translateY(0px) rotateY(0deg);
    -moz-transform: translateY(0px) rotateY(0deg);
}

.thankyou_wrapper>.thankyou_inner>.thankyou_img {
    margin-bottom: 10px;
}

.thankyou_wrapper>.thankyou_inner>h3 {
    font-size: 22px;
    /* text-transform: capitalize; */
    color: #fec007;
    letter-spacing: 5px;
    margin-bottom: 8px;
}

.thankyou_wrapper>.thankyou_inner>h5 {
    font-size: 28px;
    /* text-transform: capitalize; */
    color: #222222;
    line-height: 50px;
    margin-bottom: 8px;
}

.thankyou_wrapper>.thankyou_inner>.download_button {
    margin-top: 25px;
}

.thankyou_wrapper>.thankyou_inner>.download_button>a:last-child {
    margin-left: 40px;
}

.thankyou_wrapper>.thankyou_inner>span.success_close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #dbdbdb;
    cursor: pointer;
}

/********************************************************
34. Thankyou Popup End
*******************************************************/
/********************************************************
35. SignUp Popup Start
*******************************************************/
.signup_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.signup_wrapper.open_signup {
    opacity: 1;
    visibility: visible;
}

.signup_wrapper>.signup_inner {
    width: 100%;
    max-width: 902px;
    min-height: 600px;
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px) rotateY(10deg);
    -webkit-transform: translateY(-50px) rotateY(10deg);
    -moz-transform: translateY(-50px) rotateY(10deg);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.signup_wrapper.open_signup>.signup_inner {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) rotateY(0deg);
    -webkit-transform: translateY(0px) rotateY(0deg);
    -moz-transform: translateY(0px) rotateY(0deg);
}

.signup_wrapper>.signup_inner>.signup_details {
    position: relative;
    text-align: center;
    border-radius: 10px 0px 0px 10px;
    background: url("../images/signup_bg.jpg") no-repeat center;
    background-size: cover;
    padding: 40px 20px;
    width: 50%;
    padding-top: 58px;
    z-index: 1;
}

.signup_wrapper>.signup_inner>.signup_details:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(254, 192, 7, 0.9);
    z-index: -1;
    border-radius: 10px 0px 0px 10px;
}

.signup_wrapper>.signup_inner>.signup_details>.site_logo {
    margin-bottom: 35px;
}

.signup_wrapper>.signup_inner>.signup_details>h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 20px;
    /* text-transform: capitalize; */
}

.signup_wrapper>.signup_inner>.signup_details>h3:before,
.signup_wrapper>.signup_inner>.signup_details>h3:after {
    content: "";
    width: 98px;
    height: 1px;
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: #ffffff;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
}

.signup_wrapper>.signup_inner>.signup_details>h3:after {
    width: 56px;
    top: calc(100% + 5px);
}

.signup_wrapper>.signup_inner>.signup_details>p {
    color: #ffffff;
}

.signup_wrapper>.signup_inner>.signup_details>.clv_btn {
    color: #fec007;
}

.signup_wrapper>.signup_inner>.signup_details>.clv_btn:hover {
    color: #ffffff;
}

.signup_wrapper>.signup_inner>.signup_details>.clv_btn::before {
    background-color: #ffffff;
}

.signup_wrapper>.signup_inner>.signup_details>.clv_btn::after {
    border-color: #ffffff;
}

.signup_wrapper>.signup_inner>.signup_details>ul {
    margin-top: 30px;
}

.signup_wrapper>.signup_inner>.signup_details>ul>li {
    margin: 0px 10px;
    display: inline-block;
}

.signup_wrapper>.signup_inner>.signup_details>ul>li:first-child {
    margin-left: 0;
}

.signup_wrapper>.signup_inner>.signup_details>ul>li>a {
    width: 50px;
    height: 50px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.signup_wrapper>.signup_inner>.signup_details>ul>li>a:hover {
    background-color: #ffffff;
    color: #fec007;
}

.signup_wrapper>.signup_inner>.signup_form_section {
    width: 60%;
    text-align: center;
    padding: 70px 70px;
    position: relative;
}

.signup_wrapper>.signup_inner>.signup_form_section>h4 {
    font-size: 32px;
    color: #222222;
    /* text-transform: capitalize; */
    font-weight: 600;
}

.signup_wrapper>.signup_inner>.signup_form_section>img {
    margin-bottom: 35px;
    margin-top: 13px;
}

.signup_wrapper>.signup_inner>.signup_form_section>.form_block {
    margin-bottom: 20px;
}

.signup_wrapper>.signup_inner>.signup_form_section>.clv_btn {
    margin-top: 10px;
}

.signup_wrapper>.signup_inner>.signup_form_section>.clv_btn::before {
    background-color: #fec007 !important;
}

.signup_wrapper>.signup_inner>.signup_form_section>.clv_btn::after {
    border-color: #fec007 !important;
}

.social_button_section {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.social_button_section>a {
    display: inline-block;
    height: 50px;
    border-radius: 5px;
    color: #222222;
    border: 1px solid #f0f0f0;
    /* text-transform: capitalize; */
    line-height: 50px;
}

.social_button_section>a.fb_btn {
    border-color: #3b5999;
    background-color: #3b5999;
    color: #ffffff;
}

.social_button_section>a.fb_btn>span:last-child:before {
    background-color: rgba(0, 0, 0, 0.15);
}

.social_button_section>a>span {
    text-align: center;
}

.social_button_section>a>span:first-child {
    width: 50px;
    display: inline-block;
}

.social_button_section>a>span:last-child {
    padding: 0px 20px;
    position: relative;
}

.social_button_section>a>span:last-child:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 50px;
    background-color: #f0f0f0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

.signup_wrapper>.signup_inner>.signup_form_section>span.success_close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #dbdbdb;
    cursor: pointer;
}

/********************************************************
35. SignUp Popup End
*******************************************************/
/********************************************************
36. SignIn Popup Start
*******************************************************/
.signin_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.signin_wrapper.open_signin {
    opacity: 1;
    visibility: visible;
}

.signin_wrapper>.signup_inner {
    width: 100%;
    max-width: 902px;
    min-height: 600px;
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px) rotateY(10deg);
    -webkit-transform: translateY(-50px) rotateY(10deg);
    -moz-transform: translateY(-50px) rotateY(10deg);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.signin_wrapper.open_signin>.signup_inner {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) rotateY(0deg);
    -webkit-transform: translateY(0px) rotateY(0deg);
    -moz-transform: translateY(0px) rotateY(0deg);
}

.signin_wrapper>.signup_inner>.signup_details {
    position: relative;
    text-align: center;
    border-radius: 10px 0px 0px 10px;
    background: url("../images/signup_bg.jpg") no-repeat center;
    background-size: cover;
    padding: 40px 20px;
    width: 50%;
    padding-top: 58px;
    z-index: 1;
}

.signin_wrapper>.signup_inner>.signup_details:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(254, 192, 7, 0.9);
    z-index: -1;
    border-radius: 10px 0px 0px 10px;
}

.signin_wrapper>.signup_inner>.signup_details>.site_logo {
    margin-bottom: 35px;
}

.signin_wrapper>.signup_inner>.signup_details>h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 20px;
    /* text-transform: capitalize; */
}

.signin_wrapper>.signup_inner>.signup_details>h3:before,
.signin_wrapper>.signup_inner>.signup_details>h3:after {
    content: "";
    width: 98px;
    height: 1px;
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: #ffffff;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
}

.signin_wrapper>.signup_inner>.signup_details>h3:after {
    width: 56px;
    top: calc(100% + 5px);
}

.signin_wrapper>.signup_inner>.signup_details>p {
    color: #ffffff;
}

.signin_wrapper>.signup_inner>.signup_details>.clv_btn {
    color: #fec007;
}

.signin_wrapper>.signup_inner>.signup_details>.clv_btn:hover {
    color: #ffffff;
}

.signin_wrapper>.signup_inner>.signup_details>.clv_btn::before {
    background-color: #ffffff;
}

.signin_wrapper>.signup_inner>.signup_details>.clv_btn::after {
    border-color: #ffffff;
}

.signin_wrapper>.signup_inner>.signup_details>ul {
    margin-top: 30px;
}

.signin_wrapper>.signup_inner>.signup_details>ul>li {
    margin: 0px 10px;
    display: inline-block;
}

.signin_wrapper>.signup_inner>.signup_details>ul>li:first-child {
    margin-left: 0;
}

.signin_wrapper>.signup_inner>.signup_details>ul>li>a {
    width: 50px;
    height: 50px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.signin_wrapper>.signup_inner>.signup_details>ul>li>a:hover {
    background-color: #ffffff;
    color: #fec007;
}

.signin_wrapper>.signup_inner>.signup_form_section {
    width: 60%;
    text-align: center;
    padding: 70px 70px;
    position: relative;
}

.signin_wrapper>.signup_inner>.signup_form_section>h4 {
    font-size: 32px;
    color: #222222;
    /* text-transform: capitalize; */
    font-weight: 600;
}

.signin_wrapper>.signup_inner>.signup_form_section>img {
    margin-bottom: 35px;
    margin-top: 13px;
}

.signin_wrapper>.signup_inner>.signup_form_section>.form_block {
    margin-bottom: 20px;
}

.signin_wrapper>.signup_inner>.signup_form_section>.clv_btn {
    margin-top: 10px;
}

.social_button_section {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.social_button_section>a {
    display: inline-block;
    height: 50px;
    border-radius: 5px;
    color: #222222;
    border: 1px solid #f0f0f0;
    /* text-transform: capitalize; */
    line-height: 50px;
}

.social_button_section>a.fb_btn {
    border-color: #3b5999;
    background-color: #3b5999;
    color: #ffffff;
}

.social_button_section>a.fb_btn>span:last-child:before {
    background-color: rgba(0, 0, 0, 0.15);
}

.social_button_section>a>span {
    text-align: center;
}

.social_button_section>a>span:first-child {
    width: 50px;
    display: inline-block;
}

.social_button_section>a>span:last-child {
    padding: 0px 20px;
    position: relative;
}

.social_button_section>a>span:last-child:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 50px;
    background-color: #f0f0f0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

.signin_wrapper>.signup_inner>.signup_form_section>span.success_close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #dbdbdb;
    cursor: pointer;
}

/********************************************************
36. SignIn Popup End
*******************************************************/
/********************************************************
37. Profile Toggle Start
*******************************************************/
.profile_toggle {
    position: fixed;
    right: 80px;
    bottom: 100px;
    z-index: 10;
}

.profile_toggle>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fec007;
    box-shadow: 0 0 0 0 rgba(254, 192, 7, 0.6);
    animation: pulse4 2s infinite;
}

/* ICDSAIA Modal Styles */
#icdsaiaModal {
    overflow-y: auto;
    background-image: url(./assets/img/bg.jpg);
}

#icdsaiaModal .modal-content {
    background: transparent !important;
    border: none;
}

#icdsaiaModal .card {
    position: relative;
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    border-radius: 11px !important;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 1;
    border-bottom: 10px solid #249cb3;
    transition: all 500ms ease;
    border: 10px solid #ffffff;
    border-color: #ffffff;
    top: 100px;
}

#icdsaiaModal .card:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgb(37 37 37 / 32%);
    z-index: -1;
}

#icdsaiaModal .close {
    position: absolute;
    z-index: 1;
    right: 10px !important;
    top: 10px !important;
    height: 2.5rem;
    width: 2.5rem;
    background: rgb(255 255 255) !important;
    border-radius: 50%;
    font-size: 1.8rem;
    padding: 0;
}

#icdsaiaModal .close:focus {
    outline: 0;
}

#icdsaiaModal .close span {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M14.7,1.3c-0.4-0.4-1-0.4-1.4,0L8,6.6L2.7,1.3c-0.4-0.4-1-0.4-1.4,0s-0.4,1,0,1.4L6.6,8l-5.3,5.3 c-0.4,0.4-0.4,1,0,1.4C1.5,14.9,1.7,15,2,15s0.5-0.1,0.7-0.3L8,9.4l5.3,5.3c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3 c0.4-0.4,0.4-1,0-1.4L9.4,8l5.3-5.3C15.1,2.3,15.1,1.7,14.7,1.3z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    color: transparent;
    text-shadow: none;
    background-position: center;
}

#icdsaiaModal .close.light span {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M14.7,1.3c-0.4-0.4-1-0.4-1.4,0L8,6.6L2.7,1.3c-0.4-0.4-1-0.4-1.4,0s-0.4,1,0,1.4L6.6,8l-5.3,5.3 c-0.4,0.4-0.4,1,0,1.4C1.5,14.9,1.7,15,2,15s0.5-0.1,0.7-0.3L8,9.4l5.3,5.3c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3 c0.4-0.4,0.4-1,0-1.4L9.4,8l5.3-5.3C15.1,2.3,15.1,1.7,14.7,1.3z'/%3E%3C/svg%3E");
}

#icdsaiaModal .close.size-sm {
    transform: scale(0.5);
    right: 0.5rem;
    top: 0.5rem;
}

#icdsaiaModal .close.close-pinned {
    top: -19px;
    right: -19px;
}

#icdsaiaModal a.btn.btn-overlay-2.program-block_one-modal {
    background-image: linear-gradient(to right, #052a52 0%, #002a4e 100%);
    border: 3px solid white;
    border-bottom: 4px solid #fec007;
    padding: 10px 50px;
    font-size: 17px;
    text-transform: inherit;
}

#icdsaiaModal .popup-text {
    /* position: absolute;
	bottom: 24px;
	width: 100%; */
    position: absolute;
    top: 100px;
    width: 100%;
}

#icdsaiaModal .btn-overlay-2 {
    background: #925afa;
    color: #fff !important;
    border: 1px solid #925afa;
}

#icdsaiaModal .btn {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-transform: capitalize;
    border: none;
    border-radius: 50px;
    padding: 17px 35px;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    text-align: center;
    text-wrap-mode: wrap;
    width: fit-content;
    margin: auto;
}

#icdsaiaModal p {
    font-size: 13px;
}

#icdsaiaModal .top-head-modal {
    position: relative;
}

#icdsaiaModal .top-head-modal p {
    position: absolute;
    bottom: 38px;
    text-align: center;
    margin: 0 33%;
    justify-content: center;
    /* display: inline-block; */
    /* right: 50%; */
    align-items: center;
    color: #fec007;
    font-size: 16px;
    font-weight: 700;
}

@keyframes pulse4 {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(254, 192, 7, 0.6);
        box-shadow: 0 0 0 0 rgba(254, 192, 7, 0.6);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(254, 192, 7, 0);
        box-shadow: 0 0 0 10px rgba(254, 192, 7, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(254, 192, 7, 0);
        box-shadow: 0 0 0 0 rgba(254, 192, 7, 0);
    }
}

/********************************************************
37. Profile Toggle End
*******************************************************/
/********************************************************
38. Preloader Start
*******************************************************/
.preloader_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    z-index: 1111;
}

/********************************************************
38. Preloader End
*******************************************************/

/********************************************************
39. Index7 start
*******************************************************/

/* banner start */
.cv-banner7 {
    text-align: center;
    padding: 150px 0;
    background: url(../images/wool/wool-banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.cv-banner7::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: rgba(0, 0, 0, 0.6);
}

.cv-banner7-content {
    z-index: 1;
    position: relative;
}

.cv-banner7-content h3 {
    font-size: 70px;
    font-weight: 800;
    /* text-transform: capitalize; */
    color: #fff;
    margin-bottom: 20px;
}

.cv-banner7-content p {
    color: #fff;
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.cv-banner7-content h4 {
    color: #fff;
    letter-spacing: 4px;
    /* text-transform: capitalize; */
    background: rgb(255 255 255 / 25%);
    max-width: 500px;
    margin: 0 auto 15px;
    display: inline-block;
    padding: 3px 20px;
    border-radius: 10px 0 10px 0;
    border-left: 3px solid #07adb1;
}

/* banner end */

/* about start */
.cv-about7-image {
    position: relative;
    width: fit-content;
    width: -moz-fit-content;
    margin-left: 20px;
}

.cv-about7-image:after {
    background: rgb(7 173 177 / 15%);
    content: "";
    left: -20px;
    bottom: -20px;
    top: 20px;
    right: 20px;
    margin: auto;
    position: absolute;
    z-index: 0;
    border-radius: 10px;
}

.cv-about7-image img {
    z-index: 1;
    position: relative;
    border-radius: 10px;
}

.dairy_gallery_wrapper.cv-gallery7 {
    background: #f9fcf6;
}

.keynote_speakers_wrapper.cv-product7 {
    background: #fff;
}

.notice-mar {
    /* background: linear-gradient(to left, #6E48AA, #9d50bbfc); */
    background: #8e050b;
    /* background: #08090e; */
    color: #fff;
}

.td-trending-now-title {
    padding: 20px 18px;
    display: flex;
    text-align: center;
    justify-content: center;
    margin: auto;
    font-size: 19px;
}

/* about end */

/********************************************************
39. Index7 end
*******************************************************/
/********************************************************
40. Index8 start
*******************************************************/
body.style-eight {
    background-color: #04000a;
}

body.style-eight {
    color: #a9a9a9;
}

body.style-eight .clv_main_wrapper .clv_header {
    background-color: #04000a;
}

body.style-eight .clv_right_header .clv_address .address_block span.addr_icon {
    border-color: #484223;
}

body.style-eight .clv_counter_wrapper:before,
body.style-eight .clv_gallery_wrapper:before {
    background-color: rgb(10 0 0 / 80%);
}

body.style-eight .clv_about_wrapper .about_content .about_heading h2,
body.style-eight .clv_about_wrapper .about_content .about_heading h6,
body.style-eight .clv_about_wrapper .about_content .video_block>.video_btn>.play_video,
body.style-eight .about_farm_wrapper .about_content .about_heading h2,
body.style-eight .clv_service_wrapper .service_block h4,
body.style-eight .shop_slider .shop_slide>h5,
body.style-eight .blog_slide .blog_content .blog_title>a,
body.style-eight .clv_committee_wrapper .team_section .team_block .committee_details .committee_name h3,
body.style-eight .testimonial_slide .client_message>h3,
body.style-eight .clv_right_header .clv_address .address_block p,
body.style-eight .testimonial_slide .client_message>h3>span {
    color: #ffffff;
}

body.style-eight .clv_service_wrapper,
body.style-eight .clv_blog_wrapper,
body.style-eight .clv_partner_wrapper {
    background: #02050c;
}

body.style-eight .clv_service_wrapper .service_block,
body.style-eight .testimonial_slide,
body.style-eight .shop_slider .shop_slide,
body.style-eight .clv_blog_wrapper .blog_slider .blog_slide .blog_content,
body.style-eight .clv_committee_wrapper .team_section .team_block .committee_details .committee_name {
    background-color: #151e31;
}

body.style-eight .testimonial_slide .bg_quote img {
    opacity: 0.2;
}

body.style-eight .clv_right_header>.clv_menu>.cart_nav>ul>li.menu_toggle svg {
    background: #ffffff;
}

body.style-eight .clv_right_header .clv_menu .cart_nav>ul>li>a>svg>path {
    fill: #ffffff;
}

.regis:after,
.regis:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.regis:before {
    animation: imageChange 1slinear 1s infinite;
    background-image: url(../images/svg/footer-shape1.png);
}

.regis:after {
    animation: imageChangeTwo 1slinear 1s infinite;
    background-image: url(../images/svg/footer-shape2.png);
}

.partner-shape,
.partner-shape-img1 {
    position: absolute;
    z-index: -1;
    animation: movebounce 5slinear infinite;
}

.partner-shape {
    top: 22px;
    left: 0;
    width: 100%;
    height: auto;
}

.partner-shape-img1 {
    right: 0;
    bottom: -6%;
}

.schedule-table th,
.schedule-table td {
    vertical-align: middle;
    text-align: center;
    border: 1px solid #dee2e6;
    padding: 12px;
    font-size: 14px;
}

.schedule-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.schedule-table .session-cell {
    background-color: #e7f1ff;
}

.schedule-table .break-cell {
    background-color: #fff3cd;
}

.schedule-table .workshop-cell {
    background-color: #d1e7dd;
}

.schedule-table .retreat-cell {
    background-color: #f0e5ff;
    font-weight: bold;
    font-size: 16px;
}

.schedule-table .closing-cell {
    background-color: #f8d7da;
}

.schedule-table tr:nth-child(odd) td:first-child {
    background-color: #f2f2f2;
    font-weight: bold;
}

.schedule-table tr:nth-child(even) td:first-child {
    background-color: #e9ecef;
    font-weight: bold;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes movebounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes imageChange {
    0% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes imageChangeTwo {
    0% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

li.mobile-reg {
    display: none !important;
}

/********************************************************
41. Responsive CSS Start
*******************************************************/
@media (max-width: 1600px) {
    .clv_service_wrapper .service_girl_img {
        position: absolute;
        bottom: -70px;
        right: 0;
        display: inline-block;
    }

    .clv_service_wrapper .service_girl_img>img {
        max-width: 100%;
    }

    .clv_footer_wrapper img.foot_girl {
        display: none;
    }

    .index_v1 .clv_rev_slider ul li:last-child .rev_column_inner .tp-parallax-wrap {
        left: 265px !important;
    }

    .service_about_image>img {
        max-width: 100%;
        border-radius: 10px;
    }

    .coffee_about_content img {
        bottom: -200px;
        right: -130px;
    }

    .garden_green_box {
        right: auto;
        width: 850px;
    }

    .garden_service_about_wrapper {
        padding-bottom: 100px;
    }

    .banner-icon {
        position: absolute;
        right: 49px;
        z-index: -1;
        width: 33%;
        top: 150px;
    }
}

@media (max-width: 1400px) {
    .slider_arrow {
        display: none !important;
    }

    .index_v2 .clv_rev_slider .erinyen.tparrows {
        display: none;
    }

    .garden_about_wrapper .garden_about_section .garden_about_image img {
        max-width: 100%;
    }

    .garden_about_blog .about_blog_inner .about_blog_image img {
        max-width: 100%;
    }

    .header3_wrapper .clv_header3 {
        max-width: 1170px;
        padding: 0px 15px;
    }

    .index_v5.clv_main_wrapper .clv_header {
        background-color: #ffffff;
    }

    .index_v5.clv_main_wrapper .clv_header span.header_shape {
        display: none;
    }

    .coffee_about_content img {
        right: -50px;
    }

    .banner_image img {
        max-width: 100%;
    }

    .banner-icon {
        position: absolute;
        right: 49px;
        z-index: -1;
        width: 33%;
        bottom: 32px;
        top: auto;
    }
}

@media (max-width: 1200px) {
    .clv_right_header .clv_address .address_block span.addr_icon {
        margin-right: 8px;
        float: none;
    }

    .clv_right_header .clv_address .address_block {
        text-align: center;
        display: flex;
    }

    .index_v1 .clv_address .col-md-4 {
        padding: 0px 10px;
    }

    .clv_about_wrapper .about_img img {
        max-width: 100%;
    }

    .index_v1 .clv_rev_slider .rev_column_inner .tp-parallax-wrap {
        left: 0px !important;
    }

    .index_v1 .clv_rev_slider ul li:last-child .rev_column_inner .tp-parallax-wrap {
        left: 0px !important;
    }

    .rev_column_inner .tp-parallax-wrap .tp-mask-wrap {
        left: 0px !important;
    }

    .search_field {
        width: 800px;
    }

    .index_v2.clv_main_wrapper .clv_header .clv_right_header .clv_address {
        margin: 0;
    }

    .organized_by {
        text-align: left;
        margin-left: 20px;
    }

    .index_v2.clv_main_wrapper .clv_header .clv_address .header_location {
        text-align: center;
        margin-left: 20px;
    }

    .index_v2 .clv_right_header .clv_address .address_block span.addr_icon {
        margin: 0;
        margin-bottom: 10px;
    }

    .index_v2.clv_main_wrapper .clv_right_header>.clv_menu>.appointment_btn {
        min-width: 150px;
    }

    .clv_about_agriculture_wrapper .about_agri_image>img {
        max-width: 100%;
    }

    .clv_about_agriculture_wrapper .about_agri_image:after {
        display: none;
    }

    .clv_about_product .about_keynote_speakers_image>img {
        max-width: 100%;
    }

    .clv_about_product .about_product_contect .about_product_contact {
        margin-right: 0;
    }

    .agri_boy_image {
        left: 0;
    }

    .agri_team_section .agri_team_block>.agri_committee_image>img {
        max-width: 100%;
    }

    .index_v3 .clv_right_header .clv_menu .clv_menu_nav>ul>li {
        margin: 0;
    }

    .clv_right_header .clv_menu .clv_menu_nav>ul>li>a {
        padding: 5px;
    }

    .index_v3 .dairy_about_wrapper .dairy_about_inner .about_img img {
        max-width: 100%;
    }

    .dairy_service_slider .dairy_service_slide>img {
        max-width: 100%;
    }

    .dairy_gallery_wrapper .dairy_gallery_inner {
        overflow: hidden;
    }

    .index_v3 .clv_footer_wrapper {
        background-size: cover;
    }

    .garden_team_block img {
        max-width: 100%;
    }

    .garden_project_grid .project_item .project_block img {
        max-width: 100%;
    }

    .index_v5 .clv_right_header .clv_menu .clv_menu_nav>ul>li {
        margin: 0px 8px;
    }

    .index_v5 .useful_links.float {
        float: none;
    }

    .org_committee_slide .org_committee_image img {
        max-width: 100%;
    }

    .coffee_about_content img {
        display: none;
    }

    .index_v6 .clv_right_header .clv_menu .clv_menu_nav>ul>li {
        margin: 0px 8px;
    }

    .coffee_about_content {
        width: 530px;
        margin-left: -60px;
    }

    .coffee_service_image>img {
        max-width: 100%;
    }

    .committee_slider .committee_slide .committee_image>img {
        max-width: 100%;
        width: 100%;
    }

    .index_v6 .committee_slide .coffee_committee_details {
        border-radius: 0px 0px 10px 10px;
    }

    .footer_support_wrapper .footer_service_section .contact_label>h4 {
        font-size: 18px;
    }

    .clv_committee_wrapper .team_section .team_block .committee_image img {
        max-width: 100%;
    }

    .ads_section img {
        max-width: 100%;
    }

    .banner-icon {
        position: absolute;
        right: 49px;
        z-index: -1;
        width: 30%;
        bottom: 32px;
        top: auto;
    }

    #icdsaiaModal .popup-text {
        position: absolute;
        top: 100px;
        width: 100%;
        /* bottom: 13px; */
    }

    #icdsaiaModal .card {
        position: relative;
        background-repeat: no-repeat;
        background-position: right;
        background-size: cover;
        border-radius: 11px !important;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
        overflow: hidden;
        z-index: 1;
        border-bottom: 10px solid #249cb3;
        transition: all 500ms ease;
        border: 10px solid #ffffff;
        border-color: #ffffff;
        top: 20px;
    }

    #icdsaiaModal a.btn.btn-overlay-2.program-block_one-modal {
        background-image: linear-gradient(to right, #052a52 0%, #002a4e 100%);
        border: 3px solid white;
        border-bottom: 4px solid #fec007;
        padding: 10px 50px;
        font-size: 15px;
    }

    .important_dates_left_service {
        padding: 50% 5%;
    }
}

@media (max-width: 1199px) and (min-width: 991px) {
    .clv_right_header .clv_menu .clv_menu_nav>ul>li>a {
        display: inline-block;
        color: #ffffff;
        padding: 5px 10px;
        /* text-transform: capitalize; */
        position: relative;
        font-family: Roboto;
        font-size: 14px;
        font-weight: 400;
        line-height: 19.92px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
    }

    .index_v1 .clv_address .col-md-4 {
        padding: 0px 5px;
    }

    .clv_right_header .clv_menu .clv_menu_nav {
        padding: 0px 10px;
    }

    .clv_right_header .clv_menu .clv_menu_nav>ul>li {
        margin: 0;
    }

    .right_blog_section .right_blog_block .right_blog_content {
        padding: 10px;
    }

    .right_blog_section .right_blog_block {
        padding-left: 10px;
    }

    .right_blog_section .right_blog_block .right_blog_image img {
        border-radius: 10px;
    }

    .index_v6 .clv_right_header .clv_menu .clv_menu_nav>ul>li {
        margin: 0;
    }
}

@media (max-width: 1065px) and (min-width: 991px) {
    .clv_right_header .clv_menu .clv_menu_nav>ul>li {
        margin: 0;
    }

    .clv_about_wrapper .about_content {
        padding: 0;
    }

    .clv_about_product .about_keynote_speakers_image:after {
        display: none;
    }

    .index_v2 .shop_slider .shop_slide .item_details h6 {
        float: none;
    }

    .index_v2 .footer_post_slider .footer_post_slide .footer_post_image {
        display: none;
    }

    .index_v6 .useful_links.float {
        float: none;
    }

    .sidebar_category>ul>li>a>span {
        float: none;
        margin-left: 20px;
    }
}

@media (max-width: 1024px) {
    .committee_slider .committee_slide .committee_details {
        padding: 15px 25px;
    }

    .index_v2 .clv_heading h3 {
        font-size: 20px;
        font-weight: 700;
        line-height: 30px;
    }

    .garden_service_about_wrapper .service_about_content {
        margin: 0;
    }

    .message_slider .message_slide {
        max-width: 740px;
    }

    .important_dates_left_service {
        padding: 12px 30px 31px;
        height: 100%;
    }

    .org_test_btn {
        bottom: 45px;
    }

    .coffee_service_section {
        margin-top: 90px;
    }

    .footer_support_wrapper .footer_service_section h3 {
        font-size: 22px;
    }

    .footer_support_wrapper .footer_service_section .contact_label {
        padding-right: 10px;
    }

    .clv_footer_wrapper .footer_block h3 {
        font-size: 26px;
    }

    .clv_features_wrapper .feature_block {
        padding: 30px 15px;
    }

    .gallery_grid .gallery_grid_item {
        width: 30%;
    }

    .single_content_wrapper img {
        margin-top: 10px;
    }

    .banner-icon {
        position: absolute;
        right: 4px;
        z-index: -1;
        width: 30%;
        bottom: 32px;
        top: auto;
    }
}

@media (max-width: 991px) {
    li.mobile-reg {
        /* position: absolute; */
        justify-content: center;
        min-width: 170px;
        background-color: #000;
        color: #ffffff;
        border-radius: 50px;
        /* text-transform: capitalize; */
        margin: 10px;
        font-family: Poppins;
        font-size: 15px;
        font-weight: 400;
        /* line-height: 25.5px; */
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        display: block !important;
    }

    .register-form {
        padding: 0;
        margin-bottom: 6px;
    }

    .index_v1 .clv_rev_slider ul li .rev_column_inner .tp-parallax-wrap {
        left: 0px !important;
        margin: 0 auto !important;
        width: 100% !important;
        text-align: center !important;
    }

    .modal-custom {
        max-width: 74%;
    }

    .rev_column_inner .tp-parallax-wrap .tp-loop-wrap {
        width: auto !important;
    }

    .clv_main_wrapper .clv_header .clv_left_header {
        padding: 15px 0px;
    }

    .clv_right_header .clv_menu .clv_menu_nav {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        background-color: #9b0107;
        flex-direction: column;
        border-radius: 0;
        width: 250px;
        transform: translateX(-260px);
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0 10px;
        padding-top: 20px;
        z-index: 999;
        transition: all 0.3s ease-in-out;
    }

    .clv_right_header .clv_menu .clv_menu_nav>ul>li>a {
        display: block;
    }

    .clv_right_header .clv_menu .clv_menu_nav>ul>li>a:after {
        display: none;
    }

    .clv_right_header .clv_menu .clv_menu_nav.nav_toggle {
        transform: translateX(0px);
    }

    .clv_right_header .clv_menu {
        background-color: transparent;
        justify-content: flex-end;
    }

    .clv_right_header>.clv_menu>.cart_nav>ul>li.menu_toggle {
        display: inline-block;
    }

    .clv_main_wrapper .clv_header .clv_right_header {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* justify-content: flex-end; */
    }

    .clv_right_header .clv_address .address_block {
        padding: 5px 0;
    }

    .clv_right_header>.clv_menu>.cart_nav>ul>li:first-child {
        padding: 39px 0px;
    }

    .clv_right_header .clv_menu .cart_nav>ul>li>a {
        color: #fec007;
    }

    .clv_right_header .clv_menu .cart_nav>ul>li>a>svg>path {
        fill: #000000;
    }

    .clv_right_header .clv_menu .cart_nav ul>li>a.cart_toggle>span {
        background-color: #fec007;
        color: #ffffff;
    }

    .clv_right_header .clv_menu .clv_menu_nav>ul>li {
        display: block;
        padding: 0;
    }

    .clv_right_header>.clv_menu>.cart_nav>ul>li {
        float: left;
        padding: 40px 0px;
        padding-left: 14px;
    }

    .clv_right_header .clv_menu .clv_menu_nav>ul>li>ul {
        box-shadow: none;
        border-radius: 0;
        border: none;
        transform: none;
        position: relative;
        display: none;
        transition: none;
        left: auto;
        padding: 10px 0px;
        opacity: 1;
        visibility: visible;
        background-color: #9b0107;
    }

    .clv_right_header .clv_menu .clv_menu_nav>ul>li:hover>ul {
        opacity: unset;
        visibility: unset;
        transform: none;
    }

    .clv_right_header .clv_menu .clv_menu_nav>ul>li>ul>li {
        padding: 0px 10px;
        position: relative;
    }

    .clv_right_header .clv_menu .clv_menu_nav>ul>li>ul>li:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 5px;
        transform: translateY(-50%);
        width: 7px;
        height: 1px;
        background-color: #fefefe;
    }

    .clv_right_header .clv_menu .clv_menu_nav>ul>li>ul>li>a {
        color: #ffffff;
    }

    .clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box>a {
        border-radius: 0;
    }

    .clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box>.cart_section {
        padding: 10px 0;
    }

    .clv_cart_box>.cart_section>ul>li>.cart_block>h4>span {
        font-size: 15px;
    }

    .clv_cart_box>.cart_section>ul>li>.cart_block>h4 {
        font-size: 18px;
    }

    .clv_cart_box>.cart_section>ul>li>.cart_block>h5 {
        font-size: 16px;
    }

    .clv_cart_box>.cart_section>ul>li>h4>span {
        font-size: 15px;
    }

    .clv_cart_box>.cart_section>ul>li>h4 {
        font-size: 18px;
    }

    .clv_cart_box>.cart_section>ul>li>h3 {
        font-size: 16px;
    }

    .gallery_grid .gallery_grid_item {
        width: 30%;
        margin-bottom: 20px;
    }

    .clv_service_wrapper .service_girl_img {
        display: none;
    }

    .clv_about_wrapper .about_img img {
        max-width: 100%;
    }

    .profile_toggle {
        bottom: 40px;
        right: 40px;
    }

    .clv_about_wrapper .about_content {
        padding: 0;
    }

    .clv_section {
        padding: 50px 10px;
    }

    .about_farm_wrapper .about_content .about_heading h2 {
        font-size: 32px;
    }

    .about_farm_wrapper .about_img .about_img_details {
        border-radius: 0px 0px 10px 10px;
    }

    .about_farm_wrapper .about_img .about_img_details h1 {
        font-size: 32px;
    }

    .clv_about_wrapper .about_content .about_heading h2 {
        font-size: 32px;
    }

    .clv_heading h3 {
        font-size: 30px;
    }

    .about_farm_wrapper .about_content {
        margin: 0;
    }

    .clv_counter_wrapper .counter_block>.counter_text>h4 {
        font-size: 16px;
    }

    .service_main_wrapper .col-lg-8.col-md-8 {
        max-width: 100%;
        flex: unset;
    }

    .shop_slider .shop_slide {
        padding: 30px 20px 30px;
    }

    .shop_slider .shop_slide>h5 {
        font-size: 20px;
    }

    .shop_slider .shop_slide>h6 {
        font-size: 20px;
    }

    .shop_slider .shop_slide>h6>span {
        font-size: 18px;
    }

    .clv_committee_wrapper .team_section .team_block .committee_details .committee_name h3 {
        font-size: 20px;
    }

    .clv_newsletter_wrapper .newsletter_text h2 {
        font-size: 30px;
    }

    .clv_newsletter_wrapper {
        padding: 38px 30px 35px;
    }

    .clv_footer_wrapper {
        padding-top: 100px;
    }

    .clv_footer_wrapper .footer_block h3 {
        font-size: 22px;
    }

    .search_field {
        width: 700px;
    }

    .signup_wrapper>.signup_inner {
        max-width: 700px;
    }

    .signup_wrapper>.signup_inner>.signup_form_section {
        padding: 70px 30px;
    }

    .signup_wrapper>.signup_inner>.signup_details>ul>li {
        margin: 0px 5px;
    }

    .signin_wrapper>.signup_inner {
        max-width: 700px;
    }

    .signin_wrapper>.signup_inner>.signup_form_section {
        padding: 70px 30px;
    }

    .signin_wrapper>.signup_inner>.signup_details>ul>li {
        margin: 0px 5px;
    }

    .clv_about_product .about_keynote_speakers_image:after {
        display: none;
    }

    .index_v2.clv_main_wrapper .clv_right_header .clv_menu {
        position: relative;
        bottom: unset;
        background-color: transparent;
        padding: 0;
        width: auto;
    }

    .index_v2.clv_main_wrapper .clv_right_header>.clv_menu>.appointment_btn {
        display: none;
    }

    .index_v2.clv_main_wrapper .clv_right_header>.clv_menu>.cart_nav>ul>li:first-child:after {
        display: none;
    }

    .index_v2.clv_main_wrapper .clv_right_header .clv_menu .clv_menu_nav>ul>li {
        /* padding: 0;
		position: relative;
		color: white; */
        padding: 5px;
        position: relative;
        color: white;
        border-bottom: 1px solid #ffffff;
        margin-bottom: 20px;
    }

    .index_v2.clv_main_wrapper .clv_right_header .clv_menu .clv_menu_nav>ul>li>a {
        color: #ffffff;
        position: relative;
        color: white;
        /* font-family: 'Font Awesome 5 Free';
		font-weight: 600; */
    }

    .index_v2.clv_main_wrapper .clv_right_header .clv_menu .clv_menu_nav>ul>li>a:hover {
        color: #ffffff;
    }

    .index_v2.clv_main_wrapper .clv_right_header .clv_menu .clv_menu_nav>ul>li>a.dropdown.btn-toggle:after {
        /* width: 1.25em;
		line-height: 0;
		content: "\f054";
		width: 1.25em;
		line-height: 2.4;
		content: "\f054";
		position: absolute; */
        /* text-align: right; */
        /* left: 0; */
        /* right: 11px; */
        content: "";
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #9b0107;
    }

    .btn-toggle[aria-expanded="true"]::after {
        transform: rotate(90deg);
    }

    .btn-toggle::after {
        width: 1.25em;
        line-height: 0;
        content: "\f054";
        width: 1.25em;
        line-height: 2.4;
        content: "\f054";
        position: absolute;
        /* text-align: right; */
        /* left: 0; */
        right: 11px;
    }

    .clv_about_agriculture_wrapper .about_agri_content h2 {
        font-size: 32px;
    }

    .clv_about_product .about_product_contect>h2 {
        font-size: 32px;
    }

    .agri_boy_image {
        display: none;
    }

    .agri_service_wrapper .justify-content-end {
        justify-content: center !important;
    }

    .agri_service_wrapper .justify-content-end>.col-md-6 {
        max-width: 100%;
        flex: unset;
    }

    .spacer {
        padding: 0;
    }

    .agri_testimonial_wrapper .agri_testimonial_content h3 {
        font-size: 32px;
    }

    .right_blog_section .right_blog_block {
        flex-direction: column;
        padding-top: 20px;
    }

    .right_blog_section .right_blog_block .right_blog_image img {
        border-radius: 10px;
    }

    .blog_section .regist_content h3 {
        font-size: 20px;
    }

    .right_blog_section .right_blog_block .right_blog_content h3 {
        font-size: 20px;
    }

    .agri_team_content {
        margin-top: 20px;
    }

    .agri_team_content h3 {
        /* font-size: 32px; */
    }

    .index_v2 .footer_post_slider .footer_post_slide .footer_post_image {
        display: none;
    }

    .index_v2 .footer_block>p>span {
        display: none;
    }

    .index_v2 .shop_slider .shop_slide .item_details h6 {
        display: block;
        float: none;
    }

    .index_v2 .shop_slider .shop_slide .item_details {
        text-align: center;
    }

    .clv_features_wrapper .feature_block h3 {
        font-size: 20px;
    }

    .index_v3 .dairy_about_wrapper {
        padding-top: 51px;
    }

    .keynote_speakers_wrapper {
        padding-top: 51px;
        padding-bottom: 31px;
    }

    .dairy_service_wrapper {
        padding-top: 51px;
    }

    .index_v3 .clv_right_header .clv_menu .cart_nav>ul>li {
        padding: 39px 5px;
    }

    .index_v3 .clv_right_header .clv_menu .clv_menu_nav>ul>li {
        padding: 0;
    }

    .index_v3 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a {
        color: #ffffff;
    }

    .index_v3 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a:hover {
        color: #ffffff;
    }

    .dairy_service_wrapper .service_content {
        margin: 0;
    }

    .service_content .service_heading h3 {
        font-size: 32px;
    }

    .dairy_testimonial_wrapper .testimonial_content h3 {
        font-size: 32px;
    }

    .dairy_testimonial_wrapper .dairy_testimonial_slider .dairy_arrow {
        left: calc(35% + 5px);
    }

    .dairy_testimonial_wrapper .dairy_testimonial_slider .dairy_arrow.dairy_right {
        right: calc(35% + 5px);
    }

    .committee_slider .committee_slide .committee_details {
        padding: 15px 15px;
        max-height: max-content;
    }

    .index_v3 .footer_post_section .footer_post_slide .footer_post_image {
        display: none;
    }

    .index_v3 .dairy_about_inner .about_content .about_heading>h2 {
        font-size: 32px;
    }

    .index_v4 .menu_toggle svg path {
        fill: #ffffff;
    }

    .index_v4 .clv_right_header .clv_menu .cart_nav>ul>li>a>svg path {
        fill: #ffffff;
    }

    .index_v4 .clv_right_header .clv_menu .cart_nav>ul>li>a {
        color: #ffffff;
    }

    .index_v4 .clv_right_header .clv_menu .cart_nav ul>li>a.cart_toggle>span {
        color: #ffffff;
    }

    .index_v4 .clv_right_header .clv_menu .cart_nav {
        margin: 0;
    }

    .index_v4 .clv_right_header>.clv_menu .clv_btn {
        display: none;
    }

    .index_v4 .clv_right_header>.clv_menu>.cart_nav>ul>li {
        margin-left: 20px;
    }

    .index_v4 .clv_right_header .clv_menu .clv_menu_nav>ul>li,
    .index_v4 .header3_wrapper.dark_header .clv_right_header .clv_menu .clv_menu_nav>ul>li {
        padding: 0;
    }

    .garden_about_wrapper .garden_about_section .garden_about_content h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .garden_about_blog .about_blog_inner h4 {
        font-size: 20px;
    }

    .garden_contact_section .contact_number h4 {
        font-size: 20px;
    }

    .index_v4 .clv_banner_slider .clv_slide .clv_slide_inner h1 {
        font-size: 62px;
        line-height: 62px;
    }

    .index_v4 .clv_banner_slider .clv_slide .clv_slide_inner h2 {
        font-size: 52px;
    }

    .service_about_content h1 {
        font-size: 32px;
        line-height: 42px;
    }

    .garden_service_about_wrapper .service_about_content {
        margin: 0;
    }

    .garden_service2_section .service2_block h3 {
        font-size: 20px;
    }

    .garden_service2_section .service2_block p {
        font-size: 16px;
    }

    .team_heading h3 {
        font-size: 32px;
    }

    .team_heading {
        margin-top: 50px;
    }

    .index_v4 .footer_block>p>span {
        margin: 0;
    }

    .index_v4 .clv_footer_wrapper .footer_block .time_table>li {
        flex-direction: column;
        align-items: flex-start;
    }

    .index_v5 .clv_right_header .clv_menu .clv_menu_nav>ul>li {
        padding: 0;
    }

    .index_v5 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a {
        color: #ffffff;
    }

    .index_v5 .clv_right_header .clv_menu .clv_menu_nav {
        padding: 0 10px;
        padding-top: 20px;
    }

    .important_dates_left_service .important_dates_description h3 {
        font-size: 25px;
    }

    .org_about_image>img {
        position: relative;
        max-width: 100%;
        top: unset;
        right: unset;
    }

    .org_about_contents h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .org_test_btn {
        bottom: 45px;
    }

    .org_product_block .org_keynote_speakers_image img {
        max-width: 100%;
    }

    .index_v6 .clv_right_header .clv_menu .cart_nav>ul>li {
        padding: 32px 0px;
    }

    .index_v6 .clv_right_header .clv_menu .cart_nav>ul>li:last-child::before {
        display: none;
    }

    .index_v6 .clv_right_header .clv_menu .clv_menu_nav>ul>li {
        padding: 0;
    }

    .index_v6 .clv_right_header .clv_menu .clv_menu_nav>ul>li>a {
        color: #ffffff;
    }

    .index_v6 .clv_banner_slider .clv_slide .clv_slide_inner h2 {
        font-size: 52px;
    }

    .coffee_about_image img {
        max-width: 100%;
    }

    .coffee_about_content {
        width: 100%;
        margin: 0;
    }

    .coffee_about_content h5 {
        font-size: 32px;
        line-height: 32px;
    }

    .coffee_service_content>h5 {
        font-size: 32px;
        line-height: 32px;
    }

    .coffee_service_section {
        width: 100%;
        padding: 21px 10px 26px;
    }

    .index_v6 .useful_links.float {
        float: none;
    }

    .index_v6 .clv_banner_slider .clv_slide .banner_content {
        margin: 0;
    }

    .footer_support_wrapper {
        flex-direction: column;
        justify-content: center;
    }

    .footer_support_wrapper .footer_service_section {
        width: 100%;
        margin: 20px 0px;
        justify-content: center;
    }

    .index_v6 .committee_slide .coffee_committee_details h3 {
        font-size: 20px;
    }

    .index_v6 .committee_slide .coffee_committee_details {
        padding: 15px;
    }

    .sidebar_category>ul>li>a>span {
        float: none;
        margin-left: 20px;
    }

    .comment_section>ul>li>ul>li {
        margin-left: 50px;
    }

    .author_content .social_name h3 {
        margin-right: 10px;
    }

    .user_profile_wrapper {
        padding-top: 150px;
    }

    .product_list_filter>ul>li {
        width: 100%;
        text-align: left;
    }

    .product_list_filter>ul>li:last-child {
        text-align: left;
    }

    .product_list_filter>ul>li:first-child p {
        margin: 0;
    }

    .fd_pro_add_btn {
        margin-left: 0px;
    }

    .cart_summery_block {
        padding: 32px 20px 35px;
    }

    .timetable_block {
        padding: 40px 10px 20px;
    }

    .timetable_block>ul>li>p {
        width: 55%;
    }

    .contact_block {
        padding: 50px 10px 43px;
    }

    .contact_block p {
        font-size: 16px;
    }

    .clv_footer_wrapper .footer_block .footer_logo a img {
        max-width: 100%;
    }

    .banner-icon {
        position: absolute;
        right: 5px;
        z-index: -1;
        width: 28%;
        bottom: 25px;
        top: auto;
    }

    .data-ani-bot {
        position: absolute;
        left: auto;
        top: 50px;
        right: -250px;
    }

    .clv_logo {
        position: absolute;
        /* background: #f4f9ff; */
        border-radius: 50%;
        top: -20px;
    }

    .clv_logo img {
        width: 200px;
        padding: 12px;
    }

    #icdsaiaModal .popup-text {
        position: absolute;
        top: 65px;
        width: 100%;
    }
}

@media (max-width: 806px) {
    #icdsaiaModal .popup-text {
        position: relative;
        bottom: 0;
        background-image: linear-gradient(to right, #052a52 0%, #002a4e 100%);
        margin-bottom: -30px;
        top: 0;
    }

    #icdsaiaModal a.btn.btn-overlay-2.program-block_one-modal {
        background-image: linear-gradient(to right, #052a52 0%, #002a4e 100%);
        border: 3px solid white;
        border-bottom: 4px solid #fec007;
        padding: 10px 50px;
        font-size: 14px;
        bottom: 55px;
    }

    .organized_by img {
        width: 80px;
    }

    img.sal-logo {
        width: 80px !important;
    }

    img.dsai-logo {
        width: 82px !important;
    }
}

@media (max-width: 768px) and (min-width: 768px) {
    .garden_team_block .garden_team_overlay ul {
        display: none;
    }

    .garden_team_block .garden_team_overlay {
        left: 10px;
        right: 10px;
    }

    .garden_team_block:hover .garden_team_overlay {
        top: 10px;
        bottom: 10px;
    }

    .important_dates_left_service {
        padding: 12px 10px 31px;
        height: 100%;
    }

    .important_dates_left_service .important_dates_contact>h4 {
        font-size: 28px;
    }

    .important_dates_right_service .col-md-4:last-child>.service_block {
        padding: 38px 10px 39px;
        height: 100%;
    }

    .org_support h3 {
        font-size: 30px;
    }

    .org_testimonial_message {
        padding: 30px 0px 40px 20px;
    }

    .org_testimonial_slider .org_testimonial_slide {
        align-items: center;
    }

    .org_testimonial_slide .org_test_image {
        margin-top: 0;
        margin-bottom: -20px;
    }

    .index_v5 .footer_block>p>span {
        display: none;
    }

    .coffee_service_content {
        margin-top: 0;
    }

    .coffee_service_section {
        width: 663px;
    }

    .index_v6 .footer_block>p>span {
        display: none;
    }

    .sidebar_post ul li {
        flex-direction: column;
    }

    .sidebar_post ul li .post_image {
        margin-bottom: 10px;
    }

    .sidebar_arrow_wrapper {
        display: none;
    }

    .blog_pagination_section ul li a {
        width: 40px;
        height: 40px;
        line-height: 35px;
        font-size: 16px;
    }

    .single_content_wrapper {
        margin-top: 10px;
        flex-direction: column;
    }

    .single_content_wrapper img {
        margin-bottom: 10px;
    }

    .author_content .social_name>ul>li>a {
        font-size: 16px;
    }

    .author_content .social_name {
        flex-direction: column;
    }

    .author_content .social_name>ul {
        display: inline-block;
        margin-top: 10px;
    }

    .product_items_section>ul>li {
        width: 49%;
    }

    .product_items_section.product_list_view>ul>li>.product_item_block {
        flex-direction: column;
    }

    .product_items_section.product_list_view .product_item_block .org_product_block {
        width: 100%;
    }

    .product_items_section.product_list_view .product_item_block .content_block {
        width: 100%;
    }

    .cart_summery_block {
        padding: 32px 10px 35px;
    }

    .payment_option,
    .checkout_heading,
    .checkout_form,
    .checkout_submit {
        padding: 0px 20px;
    }

    .cart_summery_block>h3 {
        font-size: 20px;
    }

    .product_quantity h6 {
        font-size: 16px;
    }

    .product_price>h4 {
        font-size: 18px;
    }

    .guarantee_block {
        padding: 40px 20px 35px;
    }

    .contact_form_section {
        padding: 33px 20px 10px;
    }

    .tollfree_block h5 {
        font-size: 20px;
    }

    .tollfree_block h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .clv_main_wrapper .clv_header .clv_right_header .clv_address {
        /* display: none; */
    }

    .clv_right_header .clv_address .address_block {
        padding: 10px 0;
    }

    .testimonial_slider .swiper-slide {
        padding: 40px 50px;
    }

    .agri_team_section .agri_team_block .agri_team_overlay h4 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .agri_team_section .agri_team_block .agri_team_overlay>span {
        padding: 5px 5px;
        margin-bottom: 5px;
    }

    .agri_team_section .agri_team_block .agri_team_overlay p {
        margin: 0;
    }

    .agri_team_section .agri_team_block .agri_team_overlay>ul>li {
        margin: 0px 2px;
    }

    .agri_team_section .agri_team_block .agri_team_overlay>ul>li>a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .agri_social_links>li>a {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .clv_about_product .about_product_contect {
        padding-top: 0;
    }

    .clv_about_agriculture_wrapper .about_agri_content {
        padding-top: 0;
    }

    .index_v3 .dairy_about_inner .about_content {
        margin-top: 0;
    }

    .message_slider .message_slide {
        max-width: 500px;
    }

    .garden_about_section .garden_about_content .garden_contact_section {
        flex-direction: column;
    }

    .garden_about_content .garden_contact_section .contact_number {
        margin: 0;
        margin-top: 20px;
    }

    .footer_post_section .footer_post_slide>.blog_links {
        display: inline-block;
        width: 100%;
    }

    .footer_post_section .footer_post_slide>.blog_links>a {
        word-break: break-all;
    }

    .about_farm_wrapper .about_img .about_img_details {
        padding: 30px 20px;
    }

    .committee_slider .swiper-slide {
        text-align: center;
    }

    .index_v6 .header4_wrapper {
        top: 20px;
    }

    .index_v6 .clv_banner_slider .clv_slide .clv_slide_inner h2 {
        font-size: 32px;
    }

    .index_v6 .clv_banner_slider .clv_slide .clv_slide_inner h1 {
        font-size: 52px;
    }

    .committee_slider .swiper-slide {
        text-align: center;
    }

    .committee_slider .committee_slide {
        display: inline-block;
    }

    .coffee_service_section {
        margin-top: 30px;
    }

    .clv_about_wrapper .about_content .video_block>.video_btn>.play_video {
        margin-right: 10px;
        font-size: 18px;
    }

    .clv_about_product .about_product_contect .about_product_contact h3 {
        font-size: 26px;
    }

    .clv_about_product .about_product_contect .about_product_contact h4 {
        font-size: 18px;
    }

    .clv_footer_wrapper .footer_block h3 {
        font-size: 20px;
    }

    .blog_pagination_section ul li.blog_page_arrow:first-child a span,
    .blog_pagination_section ul li.blog_page_arrow:last-child a span {
        display: none;
    }

    .blog_pagination_section ul li:first-child a:hover,
    .blog_pagination_section ul li:last-child a:hover {
        width: 30px;
    }

    .product_list_filter>ul>li:first-child,
    .product_list_filter>ul>li,
    .product_list_filter>ul>li:last-child {
        text-align: center;
    }

    .product_list_filter>ul>li:nth-child(2):before,
    .product_list_filter>ul>li:nth-child(2):after {
        display: none;
    }

    .checkout_heading h3 {
        margin-bottom: 10px;
    }

    .payment_option,
    .checkout_heading,
    .checkout_form,
    .checkout_submit {
        padding: 0px 20px;
    }

    .guarantee_block {
        padding: 40px 20px 35px;
    }

    .table_heading {
        margin-bottom: 10px;
    }

    .banner-icon {
        position: absolute;
        right: 0;
        z-index: -1;
        width: 28%;
        bottom: auto;
        top: 40px;
    }

    .clv_logo img {
        width: auto;
        padding: 0px;
        height: 120px;
    }

    .index_v2.clv_main_wrapper .clv_right_header .clv_address .address_block:after {
        content: "";
        border-right: none;
        position: absolute;
        right: -10px;
        top: 0;
        bottom: 0;
        display: block;
    }
}

@media (max-width: 767px) {
    .clv_header .col-xl-3.col-lg-3.col-md-2 {
        width: 120px;
    }

    .index_v2.clv_main_wrapper .clv_header .clv_right_header .clv_address {
        padding: 0px 0;
    }

    .clv_logo img {
        width: 100% !important;
        object-fit: cover;
    }

    .clv_header .col-xl-9.col-lg-9.col-md-10 {
        width: 75%;
    }

    .clv_header .col-lg-4.col-md-4 {
        display: none;
    }

    .clv_main_wrapper .clv_header .clv_right_header {
        justify-content: end !important;
        padding-right: 30px;
    }

    li.menu_toggle {
        background: #ffffff;
        width: 44px;
        height: 41px;
        color: #fff;
        border: solid 1px #8c2c31;
        text-align: center;
        /* line-height: 12px; */
        padding: 7px !important;
        top: -22px;
        position: absolute !important;
        /* right: 0px; */
        border-radius: 4px;

        position: absolute !important;
        /* right: 0px; */
    }

    .clv_address span.addr_icon {
        display: none !important;
    }

    .clv_address .organized_by h5 {
        display: none;
    }

    .header_social_links>li {
        margin: 0px 20px;
    }

    .clv_logo img {
        height: auto;
    }

    .organized_by img {
        width: 90px;
    }

    img.sal-logo {
        width: 91px !important;
    }

    img.dsai-logo {
        width: 90px !important;
    }

    .header_social_links>li {
        margin: 0px 10px;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .signup_wrapper>.signup_inner {
        margin: 405px 0 30px 0;
    }
}

@media (max-width: 767px) {
    .agri_team_content h3 {
        font-size: 25px;
    }

    img.icdsaia-right {
        float: inherit;
        margin-top: 50px;
        height: auto;
    }

    .modal-custom {
        max-width: 94%;
    }

    .clv_btn,
    .clv_btn:focus {
        min-width: 150px;
        height: 45px;
        line-height: 45px;
    }

    .clv_main_wrapper .clv_header .clv_left_header {
        padding: 5px 0px;
    }

    .clv_right_header>.clv_menu>.cart_nav>ul>li {
        padding: 15px 0px;
    }

    .clv_right_header>.clv_menu>.cart_nav>ul>li:first-child {
        padding: 16px 0px;
    }

    .clv_counter_wrapper {
        padding-bottom: 30px;
        padding-top: 51px;
    }

    .clv_service_wrapper {
        padding-top: 51px;
        padding-bottom: 29px;
    }

    .clv_testimonial_wrapper {
        padding-top: 51px;
    }

    .testimonial_slider .swiper-slide {
        padding: 0;
    }

    .testimonial_slide .client_message {
        padding: 10px 0px;
    }

    .testimonial_slide .rounded_quote {
        display: none;
    }

    .clv_shop_wrapper {
        padding-top: 52px;
        padding-bottom: 30px;
    }

    .clv_blog_wrapper {
        padding-top: 51px;
    }

    .clv_gallery_wrapper {
        padding-top: 51px;
        padding-bottom: 45px;
    }

    .index_v5 .clv_right_header .clv_menu .cart_nav>ul>li {
        padding: 15px 0px;
    }

    .clv_committee_wrapper {
        padding-top: 51px;
        padding-bottom: 30px;
    }

    .clv_newsletter_wrapper {
        margin-top: 50px;
    }

    .clv_newsletter_wrapper {
        padding: 38px 15px 35px;
    }

    .clv_features_wrapper {
        padding-bottom: 30px;
    }

    .agri_service_wrapper {
        padding-top: 51px;
        padding-bottom: 30px;
    }

    .agri_testimonial_wrapper {
        padding-top: 51px;
        padding-bottom: 40px;
    }

    .agri_blog_wrapper {
        padding-top: 51px;
        padding-bottom: 30px;
    }

    .index_v3 .gallery_slide .gallery_grid .gallery_grid_item {
        padding: 40px 15px;
    }

    .dairy_gallery_wrapper {
        padding-top: 51px;
        padding-bottom: 45px;
    }

    .index_v3 .clv_shop_wrapper {
        padding-bottom: 31px;
    }

    .dairy_testimonial_wrapper {
        padding-top: 51px;
    }

    .org_about_wrapper {
        padding-top: 54px;
    }

    .org_product_wrapper {
        padding-top: 51px;
    }

    .org_committee_wrapper {
        padding-top: 51px;
        padding-bottom: 45px;
    }

    .org_product_wrapper {
        padding-top: 51px;
    }

    .org_testimonial_wrapper {
        padding-top: 51px;
        padding-bottom: 40px;
    }

    .committee_slider .swiper-slide {
        text-align: center;
    }

    .dairy_testimonial_slider .dairy_testimonial_slide {
        padding: 40px 15px;
    }

    .dairy_blog_wrapper {
        padding-top: 51px;
        padding-bottom: 30px;
    }

    .committee_slider .swiper-slide {
        text-align: center;
    }

    .committee_slider .committee_slide {
        /* display: inline-block; */
        display: block;
    }

    .garden_service_about_wrapper {
        padding-top: 41px;
    }

    .garden_service2_wrapper {
        padding-top: 51px;
    }

    .garden_blog_wrapper {
        padding-top: 51px;
        padding-bottom: 45px;
    }

    .garden_shop_wrapper {
        padding-top: 51px;
        padding-bottom: 41px;
    }

    .garden_project_wrapper {
        padding-top: 51px;
    }

    .garden_pricing_wrapper {
        padding-top: 51px;
        padding-bottom: 30px;
    }

    .index_v4 .clv_partner_wrapper {
        padding: 60px 0px;
    }

    .garden_project_grid .project_item .project_block .project_overlay {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 10px;
    }

    .project_block .project_overlay h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .clv_heading {
        padding: 0px 30px;
    }

    .scroll_down {
        display: none;
    }

    .index_v1 .clv_rev_slider .erinyen.tparrows {
        display: none;
    }

    .clv_main_wrapper .clv_header .clv_left_header {
        text-align: center;
    }

    .clv_main_wrapper .clv_header .clv_right_header {
        justify-content: center;
    }

    .clv_about_wrapper {
        text-align: center;
    }

    .clv_about_wrapper .about_img {
        margin-bottom: 30px;
    }

    .clv_logo {
        position: relative;
        background: #f4f9ff;
        border-radius: 0;
        top: 0px;
    }

    .clv_about_wrapper .about_content .video_block {
        justify-content: center;
    }

    .clv_counter_wrapper .counter_block {
        margin-bottom: 40px;
    }

    .about_farm_wrapper {
        text-align: center;
    }

    .about_farm_wrapper .about_img img {
        width: unset;
        max-width: 100%;
    }

    .about_farm_wrapper .about_content {
        margin-bottom: 30px;
    }

    .about_farm_wrapper .about_img .about_img_details {
        border-radius: 10px;
    }

    .clv_committee_wrapper .team_section .col-md-3 {
        width: 50%;
        text-align: center;
    }

    .clv_committee_wrapper .team_section .team_block {
        width: auto;
        display: inline-block;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .footer_block {
        margin-bottom: 30px;
    }

    .index_v3 .clv_right_header .clv_menu .cart_nav {
        margin: 0px 15px;
    }

    .index_v3 .gallery_slide .gallery_grid .gallery_grid_item .gallery_image .gallery_overlay img {
        width: 30px;
        height: 30px;
    }

    .clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box,
    .index_v3 .clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box {
        right: 50%;
        transform: translateX(50%);
        min-width: 320px;
    }

    .clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box>a {
        border-radius: 0px 0px 10px 10px;
    }

    .testimonial_slider .swiper-slide {
        padding: 40px 0px;
    }

    .signup_wrapper>.signup_inner {
        max-width: 500px;
        flex-direction: column;
    }

    .signin_wrapper>.signup_inner {
        max-width: 500px;
        flex-direction: column;
    }

    .signup_wrapper>.signup_inner>.signup_details>h3,
    .signup_wrapper>.signup_inner>.signup_details>p,
    .signup_wrapper>.signup_inner>.signup_details>ul {
        display: none;
    }

    .signup_wrapper>.signup_inner>.signup_form_section,
    .signup_wrapper>.signup_inner>.signup_details {
        width: 100%;
        padding: 30px;
    }

    .signin_wrapper>.signup_inner>.signup_details>h3,
    .signin_wrapper>.signup_inner>.signup_details>p,
    .signin_wrapper>.signup_inner>.signup_details>ul {
        display: none;
    }

    .signin_wrapper>.signup_inner>.signup_form_section,
    .signin_wrapper>.signup_inner>.signup_details {
        width: 100%;
        padding: 30px;
    }

    .signup_wrapper>.signup_inner>.signup_details,
    .signup_wrapper>.signup_inner>.signup_details:before {
        border-radius: 10px 10px 0px 0px;
    }

    .signin_wrapper>.signup_inner>.signup_details,
    .signin_wrapper>.signup_inner>.signup_details:before {
        border-radius: 10px 10px 0px 0px;
    }

    .social_button_section {
        margin-top: 30px;
    }

    .success_wrapper>.success_inner {
        max-width: 530px;
        padding: 60px 30px;
    }

    .thankyou_wrapper>.thankyou_inner {
        max-width: 530px;
        padding: 60px 30px;
    }

    .thankyou_wrapper>.thankyou_inner>h5 {
        line-height: 1.5;
    }

    .search_field {
        width: 450px;
    }

    .search_box .search_block .search_field input {
        height: 50px;
    }

    .search_box .search_block .search_field>a {
        line-height: 50px;
    }

    .gallery_grid .gallery_grid_item {
        width: 45%;
    }

    .index_v2.clv_main_wrapper .clv_right_header .clv_menu {
        justify-content: center;
    }

    .clv_features_wrapper .feature_block {
        margin-bottom: 30px;
    }

    .clv_about_agriculture_wrapper .about_agri_image {
        text-align: center;
    }

    .clv_about_agriculture_wrapper .about_agri_content {
        text-align: center;
        padding: 0px 0px;
        padding-top: 30px;
    }

    .clv_about_product .about_product_contect {
        text-align: center;
        padding: 0px 0px;
        margin-bottom: 30px;
    }

    .clv_about_product .about_product_contect .about_product_contact>span {
        display: none;
    }

    .clv_about_product .about_product_contect .about_product_contact {
        padding: 30px 15px;
    }

    .clv_about_product .col-md-6.col-lg-6 {
        text-align: center;
    }

    .agri_testimonial_wrapper .agri_testimonial_content {
        margin: 0;
        text-align: center;
    }

    .agri_testimonial_wrapper .agri_testimonial_content h3>span {
        display: block;
    }

    .index_v2.clv_main_wrapper .blog_section {
        margin-bottom: 30px;
    }

    .agri_team_content {
        margin: 0;
        text-align: center;
    }

    .agri_team_section .col-md-4 {
        text-align: center;
    }

    .agri_team_section .agri_team_block {
        margin-bottom: 30px;
    }

    .agri_committee_wrapper {
        padding-bottom: 30px;
    }

    .index_v2 .footer_post_slider .footer_post_slide .footer_post_image {
        display: block;
    }

    .clv_left_header {
        text-align: center;
    }

    .index_v3 .appointment_btn {
        display: none;
    }

    .index_v3 .clv_right_header .clv_menu {
        justify-content: center;
    }

    .index_v3 .clv_right_header .clv_menu .cart_nav>ul>li>a.search_toggle:after {
        display: none;
    }

    .index_v3 .header2_wrapper .clv_header2 .clv_logo {
        padding-bottom: 5px;
        padding-top: 10px;
    }

    .index_v3 .clv_right_header .clv_menu .cart_nav>ul>li {
        padding: 10px 5px 20px;
    }

    .index_v3 .dairy_about_wrapper .dairy_about_inner {
        text-align: center;
    }

    .index_v3 .dairy_counter_wrapper {
        margin-left: 0;
        min-width: unset;
        flex-direction: column;
        justify-content: center;
    }

    .index_v3 .dairy_counter_wrapper .dairy_counter_block {
        width: 100%;
        margin-bottom: 20px;
        border: none;
    }

    .keynote_speakers_inner .keynote_speakers_block {
        margin-bottom: 30px;
    }

    .dairy_service_slide {
        text-align: center;
    }

    .dairy_service_wrapper .service_content {
        margin-bottom: 30px;
    }

    .index_v3 .gallery_slide .gallery_grid .gallery_grid_item {
        width: 100%;
    }

    .dairy_testimonial_wrapper .testimonial_content {
        text-align: center;
        margin: 0;
    }

    .index_v3 .footer_post_section .footer_post_slide .footer_post_image {
        display: block;
    }

    .committee_slide .committee_details .committee_name_block .committee_name h4 {
        font-size: 20px;
    }

    .committee_slider .committee_slide .committee_details {
        left: 10px;
        right: 10px;
    }

    .index_v3 .clv_banner_slider .clv_slide .clv_slide_inner h1 {
        font-size: 62px;
        line-height: 62px;
        max-width: unset;
    }

    .clv_slide_inner {
        text-align: center;
    }

    .index_v3 .clv_partner_wrapper {
        padding-bottom: 60px;
    }

    .index_v4 .clv_left_header {
        justify-content: center;
        padding: 10px 0px;
    }

    .index_v4 .clv_right_header .clv_menu {
        justify-content: center;
    }

    .index_v4 .clv_right_header>.clv_menu>.cart_nav>ul>li {
        padding: 0px 0px 30px;
    }

    .index_v4 .dark_header .clv_right_header>.clv_menu>.cart_nav>ul>li {
        padding: 0px 0px 30px;
    }

    .index_v4 .clv_slide_inner .banner_btn>span:before {
        height: 1px;
    }

    .index_v4 .garden_about_wrapper {
        margin-top: 0;
        padding-top: 60px;
    }

    .index_v4 .garden_service_wrapper {
        margin-bottom: 30px;
    }

    .garden_service_wrapper .garden_service_block {
        margin-bottom: 30px;
    }

    .garden_about_section {
        text-align: center;
    }

    .index_v4 .garden_about_wrapper .garden_about_content {
        margin-top: 21px;
    }

    .garden_about_section .garden_about_content .garden_contact_section {
        justify-content: center;
    }

    .garden_contact_section .contact_number h4 {
        font-size: 26px;
    }

    .garden_service_about_wrapper .service_about_content {
        text-align: center;
        margin-bottom: 30px;
    }

    .service_about_content h1:before,
    .service_about_content h1:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .garden_green_box {
        width: auto;
    }

    .message_slider .message_slide {
        max-width: 400px;
    }

    .garden_service2_section .row:last-child .col-md-4 .service2_block {
        border-bottom: 1px solid #eaeaea;
    }

    .blog_section {
        margin-bottom: 30px;
    }

    .garden_committee_wrapper .col-md-3 {
        text-align: center;
    }

    .garden_committee_wrapper .garden_team_block {
        display: inline-block;
        margin: 0 auto;
        margin-bottom: 60px;
    }

    .team_heading {
        margin-top: 0;
        margin-bottom: 50px;
    }

    .pricing_section .pricing_block {
        margin-bottom: 30px;
    }

    .index_v4 .footer_block>p>span {
        margin-right: 10px;
    }

    .index_v4 .clv_footer_wrapper .footer_block .time_table>li {
        flex-direction: row;
    }

    .garden_about_content .garden_about_blog {
        margin-top: 30px;
    }

    .index_v5 .clv_right_header .clv_menu .cart_nav>ul>li:first-child>a:after {
        display: none;
    }

    .important_dates_wrapper .col-lg-4.col-md-4,
    .important_dates_wrapper .col-lg-8.col-md-8,
    .cv-service7-wrapper .col-lg-4.col-md-4,
    .cv-service7-wrapper .col-lg-8.col-md-8 {
        padding: 0px 15px;
    }

    .important_dates_left_service {
        border-radius: 10px;
        /* margin-bottom: 30px; */
    }

    .important_dates_right_service .service_block {
        border-width: 0px 0px 1px 0px;
    }

    .important_dates_right_service .row:last-child .service_block {
        border: 1px solid #ededed;
        border-width: 0px 0px 1px 0px;
    }

    .org_about_image {
        display: none;
    }

    .org_about_contents {
        text-align: center;
    }

    .org_support {
        margin: 0 auto;
    }

    .org_test_btn {
        display: none;
    }

    .footer_service_block {
        margin-bottom: 30px;
    }

    .index_v5 .useful_links.float {
        float: right;
    }

    .index_v6 .header4_wrapper .clv_header4 .clv_logo {
        padding: 18px 0px 5px;
    }

    .index_v6 .clv_right_header .clv_menu {
        justify-content: center;
    }

    .index_v6 .clv_right_header .clv_menu .clv_btn {
        display: none;
    }

    .index_v6 .clv_right_header .clv_menu .cart_nav {
        margin: 0;
    }

    .index_v6 .clv_right_header .clv_menu .cart_nav>ul>li {
        padding: 15px 0px;
    }

    .banner_image {
        margin-top: 30px;
    }

    .coffee_about_image {
        text-align: center;
        margin-bottom: 30px;
    }

    .coffee_service_image {
        margin-top: 30px;
        text-align: center;
    }

    .index_v6 .committee_slider .committee_slide {
        display: inline-block;
    }

    .index_v6 .committee_slider .swiper-slide {
        text-align: center;
    }

    .coffee_pricing_block {
        margin-bottom: 30px;
    }

    .coffee_pricing_block .pricing_header,
    .coffee_pricing_block .pricing_header.premium,
    .coffee_pricing_block .pricing_header.ultimate {
        border-radius: 10px 10px 50px 50px;
    }

    .index_v6 .useful_links.float {
        float: right;
    }

    .swiper-container.coffee_thumb_slider {
        max-width: 100%;
    }

    .coffee_arrow_wrapper {
        max-width: 200px;
    }

    .blog_sidebar {
        margin-top: 30px;
    }

    .sidebar_category>ul>li>a>span {
        float: right;
        margin: 0;
    }

    .product_sidebar {
        margin-bottom: 30px;
    }

    .fd_pro_add_btn {
        margin-left: 30px;
    }

    .fd_pro_thumnail {
        height: 400px;
    }

    .fd_pro_img {
        text-align: center;
    }

    .product_single_slider .col-lg-9 {
        padding-left: 15px;
    }

    .fd_product_img .fd_pro_img img {
        max-width: 90%;
    }

    .product_detail_tab>ul>li {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
        display: block;
        text-align: center;
    }

    .product_detail_tab>.nav-tabs {
        border: none;
        margin-bottom: 30px;
        border-radius: 40px;
        background: #d51921;
        padding: 5px;
        width: auto;
        margin: 20px;
    }

    .checkout_inner {
        margin-bottom: 30px;
    }

    .error_image h2 {
        font-size: 320px;
        line-height: 340px;
    }

    .error_image .shape_img {
        max-width: 100%;
    }

    .contact_block {
        margin-bottom: 30px;
    }

    .working_time_section {
        margin-top: 30px;
    }

    .timetable_block>ul>li>p {
        width: 45%;
    }

    #map {
        height: 550px;
    }

    .contact_form_section {
        padding: 33px 20px 10px;
    }

    .coffee_about_content {
        padding: 45px 20px 52px;
    }

    .coffee_service_content {
        margin-top: 0;
    }

    .index_v6 .coffee_service_wrapper {
        padding-top: 42px;
    }

    .coffee_service_section {
        margin-top: 30px;
    }

    .index_v6 .committee_wrapper {
        padding-top: 51px;
    }

    .index_v6 .garden_shop_wrapper {
        padding-bottom: 41px;
    }

    .index_v6 .coffee_pricing_wrapper {
        padding-top: 51px;
        padding-bottom: 31px;
    }

    .index_v6 .clv_partner_wrapper {
        padding-bottom: 60px;
    }

    .footer_support_wrapper {
        margin-bottom: 20px;
    }

    .about_page .clv_about_wrapper {
        padding-top: 85px;
    }

    .clv_about_product {
        padding-top: 51px;
    }

    .breadcrumb_wrapper {
        padding: 43px 0px 47px;
    }

    .service_page .clv_features_wrapper {
        padding-top: 85px;
    }

    .gallery_page .clv_gallery_wrapper {
        padding-top: 85px;
        padding-bottom: 60px;
    }

    .blog_page .blog_sidebar_wrapper {
        padding-top: 85px;
    }

    .single_content_wrapper img {
        margin-bottom: 10px;
    }

    .profile_form {
        padding: 0px 20px;
    }

    .product_items_section.product_list_view>ul>li>.product_item_block {
        flex-direction: column;
    }

    .product_items_section.product_list_view .product_item_block .org_product_block {
        width: 100%;
    }

    .product_items_section.product_list_view .product_item_block .content_block {
        width: 100%;
        text-align: left;
    }

    .cv-about7-image {
        text-align: center;
        margin: 30px auto 0;
    }

    .cv-banner7 {
        padding: 80px 0;
    }

    .cv-banner7-content h3 {
        font-size: 50px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .cv-banner7-content h4 {
        letter-spacing: 2px;
    }
}

@media (max-width: 569px) {
    .header_social_links>li {
        margin: 0px 4px;
    }

    .organized_by ul.header_social_links {
        right: 13%;
        position: relative;
    }
}

@media (max-width: 550px) {
    .clv_committee_wrapper .team_section .col-md-3 {
        width: 100%;
    }

    .testimonial_slide {
        display: block;
    }

    .index_v5 .clv_banner_slider .org_arrow {
        display: none;
    }

    .testimonial_slide .client_img {
        text-align: center;
    }

    .testimonial_slide .rounded_quote {
        top: -20px;
        left: -20px;
    }

    .clv_newsletter_wrapper {
        flex-direction: column;
    }

    .clv_newsletter_wrapper .newsletter_text {
        width: 100%;
        text-align: center;
    }

    .clv_newsletter_wrapper .newsletter_field {
        width: 100%;
        text-align: center;
    }

    .index_v1 .clv_rev_slider .clv_btn {
        margin-top: 30px !important;
    }

    .clv_about_product .about_product_contect .about_product_contact h3 {
        font-size: 30px;
    }

    .org_testimonial_slide>.test_social {
        bottom: 50px;
        padding: 7px 10px;
    }

    .banner_image {
        display: none;
    }

    .comment_section>ul>li>ul>li {
        margin-left: 20px;
    }

    .product_items_section>ul>li {
        width: 49%;
        text-align: center;
    }

    .fd_pro_thumnail {
        height: 150px;
    }

    .fd_pro_add_btn {
        margin: 0;
        margin-top: 20px;
    }

    .table_heading>h4 {
        float: none;
    }

    .error_image h2 {
        font-size: 250px;
        line-height: 270px;
    }

    .error_image .veg_img {
        display: none;
    }

    .breadcrumb_block {
        width: 100%;
        /* max-width: 250px; */
        text-align: center;
    }

    .woocommerce-cart .cart_table tr th,
    .woocommerce-cart .cart_table tr td {
        padding: 19px 30px 21px;
    }

    .container.max-sub {
        max-width: 100%;
    }
}

@media (max-width: 529px) {
    .organized_by img {
        width: 120px;
    }

    img.sal-logo {
        width: 120px !important;
    }

    img.dsai-logo {
        width: 120px !important;
    }

    .organized_by ul.header_social_links {
        display: flex;
    }

    .organized_by ul.header_social_links {
        padding: 0px 1px;
    }
}

@media (max-width: 486px) {
    li.menu_toggle {
        width: 40px;
        height: 36px;
        padding: 4px !important;
        top: -22px;
    }
}

@media (max-width: 480px) {
    .index_v1 .clv_rev_slider .erinyen.tparrows {
        min-width: 40px;
        min-height: 40px;
    }

    .fd_pro_add_btn {
        margin: 0;
        margin-left: 30px;
    }

    .checkout_form {
        padding: 0px 20px;
    }

    .payment_option {
        padding: 0px 20px;
    }

    .checkout_submit {
        padding: 0px 20px;
    }

    .cart_table_section {
        padding: 34px 20px 50px;
    }

    .woocommerce-cart .cart_table tr:nth-child(2) td:first-child {
        padding-top: 19px;
    }

    .woocommerce-cart .cart_table tr td .product_img>h6 {
        font-size: 16px;
    }

    .woocommerce-cart .cart_table tr td .pro_price>h5 {
        font-size: 16px;
    }

    .product_items_section>ul>li {
        width: 100%;
    }

    .signup_wrapper>.signup_inner>.signup_form_section>h4 {
        font-size: 26px;
    }

    .signin_wrapper>.signup_inner>.signup_form_section>h4 {
        font-size: 26px;
    }

    .social_button_section {
        justify-content: center;
    }

    .signup_wrapper>.signup_inner>.signup_form_section,
    .signup_wrapper>.signup_inner>.signup_details {
        padding: 20px;
    }

    .social_button_section>a.fb_btn {
        margin-right: 20px;
    }

    .social_button_section>a>span:last-child {
        display: none;
    }

    .signup_wrapper>.signup_inner>.signup_details>.site_logo {
        margin-bottom: 20px;
    }

    .signin_wrapper>.signup_inner>.signup_details>.site_logo {
        margin-bottom: 20px;
    }

    .index_v1 .clv_rev_slider .erinyen.tparrows:before {
        line-height: 35px;
    }

    .signup_wrapper>.signup_inner,
    .signin_wrapper>.signup_inner {
        max-width: 300px;
    }

    .success_wrapper>.success_inner {
        max-width: 300px;
    }

    .thankyou_wrapper>.thankyou_inner {
        max-width: 300px;
    }

    .thankyou_wrapper>.thankyou_inner>h5 {
        font-size: 20px;
    }

    .clv_about_wrapper .about_content .video_block>.video_btn>.play_video {
        margin-right: 10px;
    }

    .clv_about_wrapper .about_content .video_block>.video_btn>.play_video>span {
        margin-right: 8px;
    }

    .thankyou_wrapper>.thankyou_inner>.download_button>a:last-child {
        margin: 0;
        margin-top: 30px;
    }

    .about_farm_wrapper .about_img .about_img_details {
        border-radius: 0px 0px 10px 10px;
    }

    .search_field {
        width: 330px;
    }

    .search_box .search_block .search_field>a {
        padding: 0px 20px;
    }

    .thankyou_wrapper>.thankyou_inner>.thankyou_img>img {
        max-width: 100%;
    }

    .agri_testimonial_wrapper .agri_testimonial_slider .agri_testimonial_slide {
        flex-direction: column;
    }

    .agri_testimonial_wrapper .agri_testimonial_slider .agri_testimonial_slide .agri_testimonial_image {
        position: relative;
        margin-bottom: 20px;
    }

    .agri_testimonial_wrapper .agri_testimonial_slider .agri_testimonial_slide .agri_testimonial_message {
        margin: 0;
    }

    .dairy_testimonial_wrapper .dairy_testimonial_slider .dairy_arrow.dairy_right {
        right: calc(20% + 5px);
    }

    .dairy_testimonial_wrapper .dairy_testimonial_slider .dairy_arrow {
        left: calc(20% + 5px);
    }

    .service_content .service_heading .service_arrow_block {
        position: relative;
        transform: none;
        margin-bottom: 10px;
    }

    .garden_about_section .garden_about_content .garden_contact_section {
        flex-direction: column;
    }

    .garden_about_content .garden_contact_section .contact_number {
        margin: 0;
        margin-top: 30px;
    }

    .garden_about_content .garden_about_blog {
        flex-direction: column;
    }

    .garden_green_box {
        flex-direction: column;
        padding: 20px;
    }

    .garden_green_box .green_box_image {
        padding: 0;
        margin: 0;
    }

    .garden_green_box .green_box_image:after {
        display: none;
    }

    .message_slider .message_slide {
        max-width: 280px;
    }

    .thumb_slider {
        top: 10%;
    }

    .message_slider .swiper-wrapper {
        padding: 0;
    }

    .garden_project_grid .project_item {
        width: 100%;
    }

    .clv_banner_slider .clv_slide,
    .index_v3 .clv_banner_slider .clv_slide {
        padding: 200px 0px;
    }

    .index_v4 .clv_banner_slider .clv_slide {
        padding-bottom: 200px;
    }

    .index_v4 .clv_slide_inner .banner_btn>span {
        display: none;
    }

    .thumb_slider .test_arrow {
        display: none;
    }

    .org_testimonial_slider .org_testimonial_slide {
        flex-direction: column;
        padding: 0px 10px 20px;
    }

    .org_testimonial_slide .org_test_image {
        margin: 30px 0 0;
        text-align: center;
    }

    .org_testimonial_message {
        padding: 0;
        padding-top: 30px;
        width: 100%;
    }

    .org_testimonial_slide>.test_social {
        bottom: auto;
        right: auto;
        padding: 7px 10px;
        position: relative;
        margin-top: 20px;
        text-align: center;
        border-radius: 30px;
    }

    .index_v5 .clv_banner_slider .clv_slide .clv_slide_inner h3 {
        border-radius: 10px;
    }

    .index_v5 .clv_banner_slider .clv_slide .clv_slide_inner h3:after {
        display: none;
    }

    .index_v5 .clv_banner_slider .clv_slide .clv_slide_inner h1 {
        font-size: 52px;
        line-height: 52px;
    }

    .index_v5 .clv_banner_slider .clv_slide {
        padding: 100px 0px;
    }

    .org_support h3 {
        font-size: 28px;
    }

    .footer_support_wrapper .footer_service_section {
        flex-direction: column;
    }

    .footer_support_wrapper .footer_service_section>img {
        margin: 0;
    }

    .footer_support_wrapper .footer_service_section h3 {
        margin-top: 30px;
    }

    .footer_support_wrapper .footer_service_section .contact_label {
        margin: 0;
        margin-bottom: 20px;
    }

    .coffee_service_block {
        flex-direction: column;
    }

    .coffee_service_block .service_icon {
        width: 100%;
        border: none;
        margin-bottom: 30px;
    }

    .coffee_test_slide p>span {
        top: -20px;
        left: -25px;
    }

    .coffee_test_slide {
        padding: 100px 30px 73px;
    }

    .clv_newsletter_wrapper .newsletter_field .newsletter_field_block>input {
        padding: 0px 25px;
    }

    .clv_newsletter_wrapper .newsletter_field .newsletter_field_block>a {
        position: relative;
        display: inline-block;
        margin-top: 20px;
    }

    .blog_pagination_section ul li {
        margin: 0;
        margin-left: 5px;
        margin-bottom: 5px;
    }

    .blog_pagination_section ul li a {
        width: 30px;
        height: 30px;
        line-height: 25px;
        font-size: 14px;
    }

    .comment_header .comment_name {
        /* flex-direction: column; */
    }

    .author_message_box {
        padding: 10px;
        flex-direction: column;
    }

    .author_image {
        margin: 0;
        margin-bottom: 20px;
    }

    .author_content .social_name {
        flex-direction: column;
    }

    .author_content {
        padding: 0;
    }

    .single_content_wrapper {
        flex-direction: column;
        margin-top: 20px;
    }

    .clv_right_header .clv_menu .clv_menu_nav {
        width: 250px;
    }

    .user_profile_section .checkout_heading {
        flex-direction: column;
    }

    .user_profile_section .checkout_heading h3 {
        margin-bottom: 20px;
    }

    .error_image h2 {
        font-size: 140px;
        line-height: 170px;
    }

    .gallery_grid .gallery_grid_item {
        width: 100%;
    }
}

@media (max-width: 479px) {
    .clv_header .col-xl-9.col-lg-9.col-md-10 {
        width: 70%;
    }
}

@media (max-width: 453px) {
    .index_v2.clv_main_wrapper .clv_header .clv_right_header .clv_address {
        padding: 0px 0;
    }

    .clv_right_header>.clv_menu>.cart_nav>ul>li:first-child {
        top: -20px;
    }

    .organized_by h5 {
        margin-bottom: 10px !important;
    }
}

@media (max-width: 320px) {
    .clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box {
        min-width: 250px;
    }

    .signup_wrapper>.signup_inner>.signup_form_section>h4 {
        font-size: 22px;
    }

    .search_field {
        width: 300px;
    }

    .clv_about_wrapper .about_content .video_block {
        flex-direction: column;
    }

    .video_btn {
        margin-bottom: 20px;
    }

    .about_farm_wrapper .about_img .about_img_details {
        margin-top: -40px;
        padding: 30px 10px;
    }

    .clv_heading {
        padding: 0px 10px;
    }

    .gallery_grid .gallery_grid_item {
        width: 100%;
    }

    .signup_wrapper>.signup_inner,
    .signin_wrapper>.signup_inner {
        max-width: 300px;
    }

    .social_button_section {
        flex-direction: column;
    }

    .social_button_section>a.fb_btn {
        margin-bottom: 20px;
    }

    .thankyou_wrapper>.thankyou_inner {
        max-width: 300px;
    }

    .success_wrapper>.success_inner {
        max-width: 300px;
    }

    .testimonial_slider .swiper-slide {
        padding: 40px 20px;
    }

    .index_v2 .cart_nav {
        margin-left: 30px;
    }

    .clv_about_product .about_product_contect .about_product_contact>span {
        display: none;
    }

    .clv_about_product .about_product_contect {
        padding: 0px 10px;
    }

    .clv_about_product .about_product_contect .about_product_contact {
        padding: 20px 10px;
    }

    .index_v3 .clv_banner_slider .clv_slide .clv_slide_inner h1 {
        font-size: 42px;
        line-height: 42px;
    }

    .index_v3 .clv_right_header .clv_menu .cart_nav ul>li>.clv_cart_box {
        right: 50%;
    }

    .org_testimonial_slide>.test_social {
        bottom: 10px;
    }

    .breadcrumb_block {
        padding: 14px 10px;
        text-align: center;
    }

    .product_items_section>ul>li {
        width: 100%;
    }
}

@media (max-width: 399px) {
    .clv_header .col-xl-9.col-lg-9.col-md-10 {
        width: 67%;
    }
}

@media (max-width: 363px) {
    .clv_header .col-xl-9.col-lg-9.col-md-10 {
        width: 65%;
    }
}

/********************************************************
39. Responsive CSS End
*******************************************************/