/* common css ******************************************************************************/
/* Poppins */
@font-face {
    font-family: "Poppins-Regular";
    src: url('../fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
    font-family: "Poppins-Medium";
    src: url('../fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
    font-family: "Poppins-SemiBold";
    src: url('../fonts/poppins/Poppins-SemiBold.ttf');
}

@font-face {
    font-family: "Poppins-Bold";
    src: url('../fonts/poppins/Poppins-Bold.ttf');
}

/* Gilroy */
@font-face {
    font-family: "Gilroy-Regular";
    src: url('../fonts/gilroy/Gilroy-Regular.ttf');
}

@font-face {
    font-family: "Gilroy-Medium";
    src: url('../fonts/gilroy/Gilroy-Medium.ttf');
}

@font-face {
    font-family: "Gilroy-Bold";
    src: url('../fonts/gilroy/Gilroy-Bold.ttf');
}

@font-face {
    font-family: "Gilroy-Black";
    src: url('../fonts/gilroy/Gilroy-Black.ttf');
}

@font-face {
    font-family: "Archivo-Light";
    src: url('../fonts/archivo/Archivo-Light.ttf');
}

:root {
    --white: #fff;
    --black: #000;
    --gray_707070: #707070;
    --theme-clr: #657B35;
    --light_green: #5F8341;
    --dark_8B8B8B: #8B8B8B;
    --gray_A7A7A7: #A7A7A7;
    --light_yellow: #FFF4D6;
    --white_F8F8F8: #F8F8F8;
    --gray_D8D8D8: #D8D8D8;
    --gilroy_R: "Gilroy-Regular";
    --gilroy_M: "Gilroy-Medium";
    --gilroy_Bold: "Gilroy-Bold";
    --gilroy_Black: "Gilroy-Black";
    --Poppins_R: "Poppins-Regular";
    --Poppins_M: "Poppins-Medium";
    --Poppins_SB: "Poppins-SemiBold";
    --Poppins_Bold: "Poppins-Bold";
    --Archivo_L: "Archivo-Light";
    --transition: .5s all ease-in-out;
}

.white {
    color: var(--white);
}

.black {
    color: var(--black) !important;
}

html {
    scroll-behavior: smooth;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

.common::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
}

body {
    background: #fff;
    font-family: var(--Poppins_M), sans-serif;
}

body.show {
    position: fixed;
    top: 0;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--black);
    text-transform: uppercase;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

h1 {
    font-size: 5.1200rem;
    font-family: var(--Poppins_Bold);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
}

h2 {
    font-size: 4.065rem;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--gray_707070);
}

p:last-child {
    margin-bottom: 0;
}

.small {
    font-size: 16px;
}

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

a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: inherit;
}

span {
    display: inline-block;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    color: var(--theme-clr);
    font-family: var(--Poppins_Bold);
}

.section-heading span {
    font-family: var(--Poppins_R);
    color: var(--black);
}

.btn-common {
    font-size: 20px;
    padding: 12px 40px;
    background: #000a20;
    color: var(--white) !important;
    border-radius: 10px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-clr);
    text-transform: uppercase;
    transition: all 0.5s;
    position: relative;
    cursor: pointer;
}

.btn-common-2 {
    padding: 12px 51px;
    letter-spacing: 2px;
}

.btn-common img {
    max-width: 30px;
    margin-right: 10px;
}

.btn-common:hover {
    background: #385e07;
}

.btn-common:hover {
    animation: rotate 0.7s ease-in-out both;
}

.btn-common:hover span {
    animation: storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
}

.btn-common:hover i {
    animation: storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }

    25% {
        transform: rotate(3deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-3deg) translate3d(0, 0, 0);
    }

    75% {
        transform: rotate(1deg) translate3d(0, 0, 0);
    }

    100% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
}

@keyframes storm {
    0% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }

    25% {
        transform: translate3d(4px, 0, 0) translateZ(0);
    }

    50% {
        transform: translate3d(-3px, 0, 0) translateZ(0);
    }

    75% {
        transform: translate3d(2px, 0, 0) translateZ(0);
    }

    100% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }
}

section {
    overflow: hidden;
}

.bg {
    padding: 100px 0;
}

.mobile {
    display: none !important;
}

.desktop {
    display: block !important;
}

img,
video {
    max-width: 100%;
}

.button-box {
    padding-top: 20px;
}

.button-box .btn-common i {
    position: relative;
    left: 24px;
}

.button-box ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.owl-theme .owl-dots .owl-dot span {
    background: var(--black);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--white);
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

.owl-nav {
    margin-top: 0;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav button.owl-prev {
    left: 0;
}

.owl-nav button.owl-next {
    right: 0;
}

.form-control-common {
    background: var(--white);
    border: 1px solid var(--black);
    font-size: 20px;
    padding: 15px 50px 15px 20px;
    width: 100%;
    appearance: textfield;
    color: var(--gray_707070);
    border-radius: 0;
    box-shadow: none;
    resize: none;
    outline: none;
}

.form-control-common:focus {
    border-color: var(--light_green);
    outline: 0;
    box-shadow: 0 3px 8px 0 rgb(0 0 0 / 10%);
}

.input-group {
    padding-bottom: 30px;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }

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

#header.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 1000;
    box-shadow: 0 0 10px 2px #000;
}



#header {
    background: var(--white);
    padding: 15px 0;
    transition: .5s all;
    position: relative;
}

#header .container.header {
    max-width: 1440px !important;
}

#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .logo-box {
    flex-shrink: 0;
}

#header .logo-box img {
    max-width: 120px;
    width: 100%;
}

#header.show .logo-box img {
    max-width: 80px;
    width: 100%;
}

#header.show .btn-common {
    font-size: 14px;
    padding: 14px 35px;
}

#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 11;
    width: 30px;
    height: 30px;
}

#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: .5s all ease-in-out;
    position: relative;
    border-radius: 5px;
}

#header .main-nav .cancel-menu span {
    position: absolute;
    height: 4px;
}

#header .main-nav .cancel-menu span:first-child {
    transform: rotate(45deg);
}

#header .main-nav .cancel-menu span:last-child {
    transform: rotate(-45deg);
}

#header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
    justify-content: space-between;
    flex-grow: 1;
}

#header .button-box {
    margin-left: 20px;
    padding-top: 0;
}

nav {
    margin-left: auto;
}

#header .main-nav nav ul li {
    display: inline-block;
    position: relative;
    margin-right: 60px;
}

#header .main-nav nav ul li a {
    color: var(--gray_707070);
    padding: 5px;
    font-family: var(--gilroy_M);
    font-size: clamp(1rem, 0.417vw + 0.917rem, 1.25rem);
    line-height: clamp(1.2rem, 0.5vw + 1.1rem, 1.5rem);
    position: relative;
}

#header .main-nav nav ul li a::after {
    content: "";
    position: absolute;
    left: 6px;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: var(--theme-clr);
    opacity: 0;
    transition: var(--transition);
}

#header .main-nav nav ul li a.active {
    font-family: var(--gilroy_Bold);
}

#header .main-nav nav ul li a:hover::after,
#header .main-nav nav ul li a.active::after {
    opacity: 1;
    width: 50px;
}

#header .btn-common {
    font-family: var(--Poppins_Bold);
    text-transform: uppercase;
    padding: 15px 42px;
}

/* homeBanner css ******************************************************************************/
#homeBanner .homeBanner-part {
    /* background: url("../images/homepage-hero-banner-test.png") no-repeat; */
    background: url("../images/homepage-hero-banner.jpeg") no-repeat;
    background-size: 100% 100%;
    background-position: center;
    /* min-height: 820px; */
    /* max-height: 746px; */
    /* height: 100vh; */
    padding: 15% 0 5%;
}

#homeBanner .title h1 img {
    position: relative;
    vertical-align: bottom;
    left: -13px;
}

#homeBanner .title span {
    font-size: clamp(2rem, 6.264vw + 0.747rem, 3.45rem);
    text-transform: uppercase;
    color: var(--white);
    font-family: var(--Poppins_R);
    line-height: 1;
    font-size: 3.5rem;
}

#homeBanner .title p {
    color: var(--white);
    font-family: var(--Poppins_R);
    text-shadow: 2px 2px var(--theme-clr);
    font-size: 24px;
    margin-top: 50px;
    line-height: 1.5;
    text-shadow: 1px 1px var(--theme-clr),
        2px 2px var(--theme-clr),
        3px 3px var(--theme-clr),
        4px 4px var(--theme-clr),
        5px 5px var(--theme-clr),
        6px 6px var(--theme-clr),
        7px 7px var(--theme-clr),
        8px 8px var(--theme-clr),
        9px 9px var(--theme-clr),
        10px 10px var(--theme-clr),
        10px 10px 30px rgba(0, 0, 0, .7),
}

#homeBanner .button-box {
    padding-top: 65px;
}

#homeBanner .button-box .btn-common {
    background: var(--white);
    color: var(--black) !important;
}

#homeBanner .button-box .btn-common i {
    color: var(--theme-clr);
}

/* our-lagacy section css ******************************************************************************/
.our-lagacy {
    overflow: clip;
    overflow-y: visible;
}

.our-lagacy .our-lagacy-part {
    padding: 100px 0 120px;
    background: url("../images/our-lagacy-bg.png") no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.our-lagacy .our-lagacy-part .wrapper-box {
    display: grid;
    grid-template-columns: 40% 1fr;
    column-gap: 100px;
    align-items: center;
}

.our-lagacy .our-lagacy-part .wrapper-box .img-box {
    padding: 100px 0 120px;
    background: url("../images/farmer-img.png") no-repeat;
    background-size: cover;
    background-position: center;
    aspect-ratio: 556/800;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: -120px;
}

.our-lagacy .our-lagacy-part .wrapper-box .img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(#2b4c10a1, #2b4c10a1);
}

.our-lagacy .our-lagacy-part .wrapper-box .img-box h3 {
    color: var(--white);
    font-size: 3.75rem;
    text-align: center;
    font-family: var(--Poppins_Bold);
    position: relative;
    z-index: 9;
    line-height: 1;
}

.our-lagacy .our-lagacy-part .wrapper-box .img-box h3 span {
    font-family: var(--Poppins_M);
    display: block;
}

.content-box .text-box p {
    font-family: var(--Poppins_R);
    color: var(--gray_707070);
    line-height: 2.3;
    /* width: 40ch; */
    font-size: 1.5rem;
}

.content-box .text-box p span {
    font-family: var(--Poppins_Bold);
    display: inline;
}

.our-lagacy .our-lagacy-part .wrapper-box .content-box {
    /* display: grid; */
}

.our-lagacy .our-lagacy-part .wrapper-box .content-box .button-box {
    /* place-self: self-end; */
    /* margin-right: auto; */
    padding-top: 50px;

}

.our-lagacy .our-lagacy-part .flot-bowl {
    position: absolute;
}

.our-lagacy .our-lagacy-part .flot-bowl {
    position: absolute;
}

.our-lagacy .our-lagacy-part .flot-bowl-left-1 {
    left: 8%;
    top: 11%;
}

.our-lagacy .our-lagacy-part .flot-bowl-left-2 {
    left: 2%;
    top: 40%;
}

.our-lagacy .our-lagacy-part .flot-bowl-right-1 {
    right: 2%;
    top: 60%;
}

.our-lagacy .our-lagacy-part .flot-bowl-right-2 {
    right: -5%;
    top: 35%;
}

/* our-key css ******************************************************************************/
#our-key .our-key-part {
    padding: 90px 0 104px;
    background: url("../images/our-key-bg.png") no-repeat;
    background-size: contain;
    background-position: 0 -70px;
    position: relative;
}

#our-key .our-key-part .item {
    height: 100%;
}

#our-key .our-key-part .item a {
    display: block;
    height: 100%;
}

.offer-card {
    max-width: 415px;
    border: 1px solid var(--dark_8B8B8B);
    border-radius: 20px;
    text-align: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.offer-card h5 {
    font-size: 2rem;
    line-height: clamp(1.95rem, 2.375vw + 1.475rem, 3.375rem);
    text-transform: capitalize;
    color: var(--theme-clr);
    font-family: var(--gilroy_Bold);
    margin-top: 25px;
}

.offer-card .button-box {
    padding-top: 30px;
}

.offer-card .button-box ul {
    justify-content: center;
}

.offer-card .button-box .btn-common {
    width: 100%;
    padding: 20px 24px;
}

.offer-card .front-img {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0.2rem 1rem rgba(0, 0, 0));
}

.offer-card .back-img-box {
    position: absolute;
    top: -10px;
    left: 0;
    z-index: 1;
    width: 100%;
}

.offer-card .back-img {
    border-radius: 0 0 50% 50%;
    max-width: unset;
    position: relative;
    width: 100%;
}

.offer-slider .owl-stage {
    /* display: flex; */
    height: 100%;
}

.offer-slider .owl-nav button.owl-prev {
    left: -100px !important;
}

.offer-slider .owl-nav button.owl-next {
    right: -100px;
}

.offer-slider .owl-nav [class*=owl-]:hover {
    background: transparent !important;
}

.button-box .btn-common {
    font-family: var(--Poppins_R);
}

#our-key .button-box {
    padding-top: 60px;
}

/* why-choose css ******************************************************************************/
#why-choose .why-choose-part {
    padding: 127px 0 25px;
    background: url("../images/why-choose-bg.png") no-repeat;
    background-size: contain;
    background-position: 50% -20px;
    position: relative;
}

#why-choose .why-choose-part .section-heading h2 {
    color: var(--white);
}

#why-choose .why-choose-part .section-heading h2 span {
    color: var(--white);
}

#why-choose .why-choose-part .card-wrapper {
    margin-top: 100px;
}

#why-choose .why-choose-card {
    padding: 40px 30px 50px;
    border: 1px solid var(--dark_8B8B8B);
    border-radius: 20px;
    background: #ffffff00;
    backdrop-filter: blur(12px);
    height: 100%;
}

#why-choose .why-choose-card img.front-img {
    margin-bottom: 100px;
}

#why-choose .why-choose-card h6 {
    color: var(--theme-clr);
    text-transform: capitalize;
    font-size: 30px;
    font-family: var(--gilroy_Bold);
}

#why-choose .why-choose-card .text-box p {
    font-family: var(--gilroy_R);
    color: var(--gray_707070);
}

/* Trust Leader css ******************************************************************************/
#trust-leader .trust-leader {
    padding: 90px 0;
}

#trust-leader .trust-leader .section-heading h2 span {
    display: block;
    line-height: 50px;
    font-size: clamp(1.625rem, 2.5vw + 1.125rem, 3.125rem);
}

#trust-leader .trust-leader .leaders-box {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

#trust-leader .trust-leader .leaders-box .box {
    max-width: 190px;
    border-radius: 10px;
    border: 1px solid var(--dark_8B8B8B);
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/* footer css ******************************************************************************/
#footer{
    overflow-x: clip;
}
.footer-part {
    background: url("../images/footer-bg.png") no-repeat;
    /* background: #000; */
    background-size: cover;
    background-position: 0 300px;
}
#footer  .border-box {
    border: 1px solid var(--theme-clr);
    border-radius: 12px;
    height: 100%;
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
    background: var(--white);
}
#footer  .top-box {
    padding: 35px 0;
}

#footer .top-box .logo-box img {
    max-width: 220px;
}
#footer  .border-box h5 {
    margin: 25px 0;
    font-size: 20px;
}
.top-box a,
.top-box p {
    color: var(--black) !important;
    font-family: var(--gilroy_M);
    font-size: 20px;
}

.top-box a.lowercase{
    font-size: 16px;
    text-transform: lowercase;
}

.top-box span {
    background: var(--theme-clr);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin: 0 auto 8px;
}

.top-box span i {
    font-size: 26px;
    color: white;
}

#footer  .border-box h5 {
    font-family: var(--gilroy_M);
    color: var(--theme-clr);
    text-transform: capitalize;
    margin: 35px 0;
}
/* 
#footer .bottom-box {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
} */

#footer .bottom-box a.lowercase {
    text-transform: lowercase;
}

#footer .end-box {
    position: relative;
    padding: 25px 0;
    background: var(--black);
    border-top: 1px solid var(--gray_707070);
}
/* 
#footer .end-box::after {
    content: "";
    width: 130%;
    height: 1px;
    background: var(--gray_707070);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translate(-50%, -50%);
} */

#footer .end-box .text-box p {
    color: var(--white);
    font-family: var(--Archivo_L);
    text-align: center;
}

/************************************
  About us page css  
  ******************************/
#homeBanner.about-us .homeBanner-part {
    background: url("../images/about-hero-banner.png") no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

main.about .section-heading h2 {
    font-size: 2.6rem;
    max-width: 28ch;
    margin-inline: auto;
}

main.about .our-lagacy-part {
    background: var(--white) !important;
}

main.about .sub-text {
    font-size: 1.90rem;
    color: var(--gray_707070);
    text-transform: uppercase;
    text-align: center;
}

.our-lagacy-about .content-box .text-box p {
    font-family: var(--Poppins_R);
    color: var(--gray_707070);
    line-height: 2.3;
    max-width: 58ch;
    font-size: 22px;
    text-align: center;
    margin-inline: auto;
    margin-bottom: 0;
}

.content-box .text-box p span {
    font-family: var(--Poppins_Bold);
    display: inline;
}

/* our core section css */
#our-core {
    padding-bottom: 150px;
}

#our-core .our-core-box-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 300px);
    gap: 30px;
    justify-content: center;
}

#our-core .our-core-box-wrapper .box {
    text-align: center;
    border: 1px solid var(--black);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: grid;
    justify-content: center;
    place-items: center;
    transition: var(--transition);
}

#our-core .our-core-box-wrapper .box:hover {
    background: var(--light_yellow);
    border: 1px solid var(--light_green);
    transform: translateY(-15px);

}

#our-core .our-core-box-wrapper .box h6 {
    color: var(--theme-clr);
    font-family: var(--Poppins_M);
    margin: 20px 0 15px;
    text-transform: capitalize;
    font-size: 1.5rem;
}

#our-core .our-core-box-wrapper .box p {
    font-size: 16px;
    font-family: var(--Poppins_R);
    color: var(--gray_707070);
}

/* our-founder section  */

.our-lagacy.our-founder .section-heading h2 {
    font-size: 3.6rem;
    max-width: 28ch;
    margin-inline: auto;
}
.our-lagacy.our-founder .our-lagacy-part {
    background: var(--light_yellow) !important;
}

.our-lagacy.our-founder .our-lagacy-part .wrapper-box .img-box {
    background: none;
    padding: 0;
    margin-top: -162px;
}


.our-lagacy.our-founder .our-lagacy-part .wrapper-box .img-box::after {
    display: none;
}

.our-lagacy.our-founder .our-lagacy-part .wrapper-box .content-box {
    display: block;
    border-left: 1px solid var(--gray_707070);
    padding-left: 80px;
}


.our-lagacy.our-founder .our-lagacy-part .wrapper-box .section-heading.mobile {
    display: none !important;
    text-align: center !important;
}

.our-lagacy.our-founder .our-lagacy-part .wrapper-box .section-heading.desktop {
    display: block !important;
}

.our-lagacy.our-founder .our-lagacy-part .wrapper-box .section-heading span {
    text-transform: uppercase;
    color: var(--gray_707070);
    font-size: 1.8rem;
    line-height: 2rem;
    font-family: var(--Poppins_M);
}

/* journey-box-wrapper */
.journey-box-wrapper {
    margin-top: 80px;
}

.journey-box-wrapper .journey-box {
    gap: 50px;
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    position: relative;
    min-height: 470px;
}

.journey-box-wrapper .journey-box.odd {
    grid-template-columns: 1fr 2px 1fr;
}

.journey-box-wrapper .journey-box .line {
    height: 100%;
    width: 2px;
    background: var(--gray_707070);
    position: relative;
}

.journey-box-wrapper .journey-box .line::after {
    content: url('../images/bean-small.png');
    position: absolute;
    left: 0;
    top: -3px;
    transform: translateX(-50%);
}

.journey-box-wrapper .journey-box .img-box {
    max-width: 267px;
    max-height: 360px;
    /* border: 1px solid #000; */
    margin-left: auto;
    overflow: hidden;
    transition: var(--transition);

}

.journey-box-wrapper .journey-box .img-box:hover img {
    transform: scale(1.1);
}


.journey-box-wrapper .journey-box.odd .img-box {
    margin-right: auto;
    margin-left: 0;
}

.journey-box-wrapper .journey-box .img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.journey-box {
    display: flex;
    justify-content: space-around;
}
.top.journey-box {
    margin: 100px 0;
}
.journey-box .info-box {
    display: flex;
    align-items: center;
    width: 30%;
    gap: 20px;
}
 .journey-box .info-box h5 {
    color: var(--theme-clr);
    font-family: var(--Poppins_Bold);
    font-size: 1.8rem;
}
.journey-box .info-box .line{
    width: 1px;
    height: 100%;
    background: var(--gray_707070);
}
.journey-box.bottom {
    justify-content: space-between;
    border: 1px solid var(--theme-clr);
    gap: 70px;
    width: 60%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 20px;
}

.journey-box.bottom .info-box {
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 90%;
}

.journey-box.bottom .info-box p{
    color: var(--theme-clr);
}

.journey-box.bottom img{
    border-radius: 20px;
}

 .journey-box .info-box p {
    font-family: var(--Poppins_R);
}

.journey-box-wrapper .journey-box.odd .info-box {
    text-align: right;
}

.journey-box-wrapper .journey-box:last-child {
    min-height: auto;
}

.journey-box-wrapper .journey-box:last-child .line {
    background: transparent;
}

/* product-catagory  */
.product-catagory-part {
    background: url('../images/our-key-bg.png');
    background-position: top left;
    background-size: 100% 30%;
    background-repeat: no-repeat;
}

.product-catagory-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.product-catagory-wrapper .single-img {
    position: relative;
    /* aspect-ratio: 1 / 2; */
}

.product-catagory-wrapper .img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(95, 131, 65, .7);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
    display: block;
}

.product-catagory-wrapper .single-img:hover .img-overlay {
    height: 100%;
}

.product-catagory-wrapper .img-overlay .text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-family: poppins;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.product-catagory-part .button-box {
    padding-top: 50px;
}

/************************************   Product page css  ************************************************/
.productBanner .productBanner-part {
    background-size: cover !important;
    background-position: center !important;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* animation: bgEffect infinite 25s; */
}


@keyframes bgEffect {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2, 1.2);
    }

    100% {
        transform: scale(1);
    }
}

.productBanner .productBanner-part .productBanner-box {
    /* animation: bgEffectText infinite 25s; */
}

@keyframes bgEffectText {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

.productBanner .productBanner-part h5 {
    text-align: center;
    color: var(--white);
    font-family: var(--Poppins_Bold);
}

#product-filter-box .nav {
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: none;
}

#product-filter-box .nav .nav-link {
    border: 1px solid var(--gray_707070);
    border-radius: 10px;
    color: var(--gray_707070);
    font-family: var(--Poppins_M);
    font-size: 1.2rem;
    text-transform: capitalize;
}

#product-filter-box .nav .nav-link:hover {
    border: 1px solid var(--theme-clr);
    color: var(--theme-clr);
}

#product-filter-box .nav .nav-link.active {
    color: var(--theme-clr);
    font-family: var(--Poppins_Bold);
    background: var(--light_yellow);
}

.product-card-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.product-card-container .item {
    flex-grow: 1;
}

.product-card-container .offer-card {
    flex-basis: 415px;
    height: auto;
}

/* Product inner page css  */
.product-inner-page .section-heading h4 {
    font-family: var(--Poppins_Bold);
    color: var(--gray_707070);
    text-transform: capitalize;
}

.product-info-wrapper {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.product-info-wrapper .offer-card {
    flex-shrink: 0;
    flex-basis: 415px;
    padding-bottom: 50px;
}

.product-info-wrapper .text-box p {
    font-family: var(--Poppins_R);
    line-height: 45px;
    max-width: 52ch;
}

.product-info-wrapper .text-box p span {
    display: inline;
}

.parameter-table {
    padding: 40px 70px;
    background: var(--light_yellow);
    border-radius: 20px;
}

.parameter-table table {
    width: 100%;
    color: var(--gray_707070);
    font-family: var(--Poppins_M);
}

.parameter-table table th {
    padding-bottom: 30px;
    font-size: 24px;
    font-family: var(--Poppins_Bold);
    padding: 0 0 25px;
    width: 50%;
}

.parameter-table table td {
    border-bottom: 1px solid var(--gray_A7A7A7);
    padding: 12px 0;
    font-size: 1.3rem;
    width: 50%;
}

.parameter-table table tr:last-child td {
    border-bottom: none;
}

/* Enquire Now form css start */
.enquire-now-part {
    padding: 70px 0;
    background: var(--white_F8F8F8);
}

.enquire-now-part .section-heading {
    margin-bottom: 30px;
}

.enquire-now-part h3 {
    color: var(--gray_707070);
    font-family: var(--Poppins_Bold);
}

.enquire-now-part .enquireNowForm .input-group {
    padding-bottom: 20px;
}

.enquire-now-part .enquireNowForm .form-control-common {
    background: transparent;
    border-bottom: 2px solid var(--gray_D8D8D8) !important;
    color: var(--gray_707070) !important;
}

.enquire-now-part .enquireNowForm .btn-common {
    padding: 16px 51px;
}

#enquireNowForm form.wpcf7-form .input-group p,
#enquireNowForm form.wpcf7-form .input-group p span {
    width: 100%;
}

#enquireNowForm form.wpcf7-form .input-group p br {
    display: none !important;
}

#enquireNowForm form.wpcf7-form .input-group p {
    display: flex;
    justify-content: center;
    gap: 15px;
}

#enquireNowForm form.wpcf7-form .input-group.justify-content-center {
    text-align: center;
}

#enquireNowForm form.wpcf7-form .input-group p span.wpcf7-spinner {
    width: auto !important;
}

#enquireNowForm form.wpcf7-form .input-group.captcha p:first-child {
    display: none;
}

#enquireNowForm form.wpcf7-form .input-group p.dscf7captcha {
    display: block;
}

#enquireNowForm form.wpcf7-form .input-group p.dscf7captcha a#dscf7captcha-410 {
    display: none !important;
}

#enquireNowForm form.wpcf7-form .input-group p.dscf7captcha span {
    display: inline;
    color: var(--gray_A7A7A7) !important;
    font-family: var(--Poppins_R);
    text-transform: uppercase;
    padding: 10px 0;
}

#enquireNowForm form.wpcf7-form .input-group p.dscf7captcha span.wpcf7-form-control-wrap {
    display: block;
    margin-top: 15px;
}

#enquireNowForm form.wpcf7-form .input-group p.dscf7captcha span.wpcf7-form-control-wrap input {
    width: 100% !important;
    padding-left: 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--gray_D8D8D8) !important;
    color: var(--gray_707070) !important;
    padding: 10px 0;
}

#enquireNowForm form.wpcf7-form .input-group p.dscf7captcha span.wpcf7-form-control-wrap input:focus,
#enquireNowForm form.wpcf7-form .input-group p.dscf7captcha span.wpcf7-form-control-wrap input:focus-visible {
    border-bottom: 2px solid var(--theme-clr) !important;
    outline: none !important;
}



input[type="email"] {
    text-transform: lowercase !important;
}

input[type="email"]::placeholder {
    text-transform: capitalize !important;
}

/* Contact us modal css  */
.modal-dialog {
    width: 100%;
    max-width: 585px !important;
}

.modal-content {
    padding: 40px 50px;
    border-radius: 20px;
    background: var(--white);
    position: relative;
}

.modal-content h3 {
    text-transform: capitalize;
    text-align: center;
    font-family: var(--Poppins_SB);
}

.modal-content img.close-btn {
    max-width: fit-content;
    position: absolute;
    right: 15px;
    top: 20px;
}

.modal-content .common-form {
    margin-block: 40px;
}

.enquire-now-part .enquireNowForm .form-control-common,
.modal-content .form-control-common {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray_707070);
    padding-left: 0;
    padding-bottom: 10px;
    color: var(--gray_A7A7A7);
    text-transform: capitalize;
    font-family: var(--Poppins_R);
}

.enquire-now-part .enquireNowForm .form-control-common:focus,
.modal-content .form-control-common:focus {
    border-bottom: 2px solid var(--theme-clr) !important;
    box-shadow: none !important;
}

#enquireNowForm form.wpcf7-form .input-group p.dscf7captcha span.wpcf7-form-control-wrap input::placeholder,
.enquire-now-part .enquireNowForm .form-control-common::placeholder,
.modal-content .form-control-common::placeholder {
    color: var(--gray_A7A7A7);
}

.modal-content .button-box .btn-common {
    width: 100%;
    padding-block: 15px;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

div#contactModal form.wpcf7-form .input-group p span.wpcf7-form-control-wrap,
div#contactModal form.wpcf7-form .input-group p {
    width: 100%;
}

.modal-content .wpcf7 form .wpcf7-response-output {
    margin: 10px 0 0 0;
}

.modal-content .wpcf7-not-valid-tip {
    font-size: 14px;
}

form .button-box p {
    position: relative;
}

form .wpcf7-spinner {
    display: inline-block;
    background-color: #000000;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 0;
    position: absolute !important;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
}

form .wpcf7-spinner::before {
    content: '';
    position: absolute;
    background-color: #4ecf52;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 100%;
    transform-origin: 8px 8px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.whatsapp-btn-box {
    position: fixed;
    bottom: 90px;
    right: 5px;
    max-width: 480px;
    z-index: 9;
}

.whatsapp-btn-box a {
    display: block;
    animation: zoom 2s ease-in-out infinite;
}

.whatsapp-btn-box a img {
    max-width: 65%;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

.tada {
    animation-name: tada !important;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes tada {
    0% {
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

/* Thank you page  */

#page_404 {
    background-image: url('/wp-content/themes/tutorcabin/assets/images/bg-desktop.png');
    background: var(--light_yellow);
    height: calc(100vh - 375px);
    display: grid;
    align-items: center;
}

.main-text {
    width: 40%;
    margin: 0 auto;
}

.main-text h1 {
    color: var(--black);
    text-align: center;
    font-size: 40px;
    margin-top: 20px;
}

.sub-text {
    text-align: center;
    padding-top: 30px;
}



.main-text .line {
    fill: none;
    stroke: var(--theme-clr);
    stroke-width: 12;
    stroke-dasharray: 200 100;
}

.anim {
    -webkit-animation: swirls 2s linear infinite;
    -moz-animation: swirls 2s linear infinite;
    -o-animation: swirls 2s linear infinite;
    animation: swirls 2s linear infinite;
}

@keyframes swirls {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 300;
    }
}


/* Coming soon page  */

.main-text.comingsoon .line {
    fill: none;
    stroke: var(--theme-clr);
    stroke-width: 5px;
    stroke-dasharray: 290 67;
    animation: swirls2 5s linear infinite;
}

.main-text.comingsoon {
    width: 100%;
}

.main-text.comingsoon svg {
    margin: 0 auto;
}

@keyframes swirls2 {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 400;
    }
}



/* Move to Top button  */

#moveToTop {
    display: inline-block;
    background-color: var(--theme-clr);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#moveToTop::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    line-height: 40px;
    color: #fff;
}

#moveToTop:hover {
    cursor: pointer;
    background-color: #333;
}

#moveToTop:active {
    background-color: #555;
}

#moveToTop.show {
    opacity: 1;
    visibility: visible;
}