/* Base CSS */

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

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0 solid
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    color: #07171D;
}

body {
    color: #07171D;
    font-family: 'Gordita';
    font-weight: 400;
}

.selector-for-some-widget {
    box-sizing: content-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

a:hover {
    text-decoration: none
}

a,
button,
input,
textarea {
    outline: none !important;
}

.section-padding {
    padding: 80px 0;
}


@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-10px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-10px); }
    80% { transform: translateX(10px); }
    100% { transform: translateX(0); }
  }
  
.shake {
animation: shake 0.5s;
}


/* ------------------------------ HEADER AREA START ------------------------- */

.header__inner__blk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
}

.header__area .container {
    max-width: 1487px;
}

.header__categorie>a {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #D2F34C;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3px 20px;
}

.header__categorie a img {
    margin-right: 8px;
}

.header__left__blk .logo {
    margin-right: 56px;
}

.header__left__blk {
    display: flex;
    align-items: center;
}

.header__number a {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    color: #FFFFFF;
    line-height: 1;
    transition: .3s all;
}

.header__number a:hover {
    color: #D2F34C;
}

.header__number {
    margin-right: 45px;
}

.header__btn a {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    line-height: 1;
    display: inline-block;
    background: #D2F34C;
    border-radius: 50px;
    padding: 12px 35px;
    padding-bottom: 14px;
    border: 1px solid #D2F34C;
    transition: .3s all;
}

.header__btn a:hover {
    background: #fff;
    color: #D2F34C;
}

.header__right__blk {
    display: flex;
    align-items: center;
}

.header__area {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}

.header__categorie {
    position: relative;
}

.header__dropdown {
    width: 170px;
    background: #fff;
    padding: 14px 25px;
    position: absolute;
    left: 0;
    top: 121%;
    box-shadow: 0px 20px 50px rgba(9, 56, 36, 0.2);
    border-radius: 10px;
    transition: .3s all;
    z-index: 33;
    visibility: hidden;
    opacity: 0;
}

.header__dropdown:before {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    content: '';
    background: #fff;
    position: absolute;
    left: 30px;
    top: -8px;
    height: 10px;
    width: 20px;
}

.header__dropdown ul li {
    display: block;
}

.header__dropdown ul li a {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 38px;
    letter-spacing: -0.3px;
    color: #244034;
    transition: .3s all;
}

.header__categorie:hover .header__dropdown {
    visibility: visible;
    opacity: 1;
}

.header__dropdown ul li a:hover {
    color: #D2F34C;
}

/* ------------------------------ HEADER AREA END ------------------------- */


/* ------------------------------ HERO AREA START ------------------------- */
.dropdown-toggle::after {
    height: 6px;
    width: 6px;
    border-left: 1px solid #000000;
    border-bottom: 1px solid #000000;
    transform: rotate(-45deg);
    border-top: unset;
    border-right: unset;
}

.hero__area {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 210px;
}

.hero__content h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 90px;
    line-height: 95px;
    color: #FFFFFF;
    font-family: 'EB Garamond', serif;
    margin: 0;
}

.h_text_light {
    color: #D3F15A;
}

.h_text_slight {
    color: #9FB448;
}

.hero__content {
    margin-bottom: 45px;
}

.hero__zip__code p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 42px;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.zip__code__inner__blk {
    background: #FFFFFF;
    box-shadow: 0px 50px 100px rgba(0, 37, 83, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 12px 30px;
    width: 950px;
    position: relative;
}

.single__hero__input__area label {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.34);
    display: block;
}

.single__hero__input__area input {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 33px;
    color: #000;
    border: 0;
}

.single__hero__input__area .dropdown button {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 33px;
    color: #000;
    border: 0;
    padding: 0;
    background: transparent;
    width: 252px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero__zip__code {
    position: relative;
    z-index: 22;
}

.hero__form__btn button {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
    background: #D2F34C;
    transition: .3s all;
    height: 100%;
    padding: 10px 42px;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.hero__form__btn button:hover {
    background: #4E591FA1;
    color: #fff;
}

.single__hero__input__area.extra__wd {
    width: 50%;
}

.btn-check:focus+.btn-secondary,
.btn-secondary:focus {
    box-shadow: unset !important;
}

.hero__bottom__text {
    display: flex;
    margin-top: 15px;
}

.hero__bottom__text h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 35px;
    color: #FFFFFF;
    margin: 0;
    flex: 0 0 auto;
    margin-right: 8px;
}

.hero__bottom__text p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 35px;
    color: #708F84;
}

.hero__inner__blk {
    position: relative;
    bottom: -60px;
}

.hero__area .container {
    max-width: 1390px;
}

/* ------------------------------ HERO AREA END ------------------------- */


/* ------------------------------ DETAILS AREA START ------------------------- */

.details__area {
    background: #F2F9D8;
    padding: 148px 0;
}

.details__content h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 63px;
    line-height: 75px;
    color: #254035;
    font-family: 'EB Garamond', serif;
}

.details__content h3 span {
    position: relative;
}

.details__content h3 span img {
    position: absolute;
    top: -35px;
    right: -100px;
}

.details__content p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.details__btn a {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    color: #98BD00;
    border-bottom: 1px solid #98BD00;
    padding-bottom: 5px;
    transition: .3s all;
    display: inline-block;
}

.details__btn a:hover {
    color: #254035;
}

.details__btn a i {
    font-size: 21px;
    position: relative;
    top: 3px;
    margin-left: 7px;
}

.details__btn a i {
    font-size: 21px;
    position: relative;
    top: 3px;
    margin-left: 7px;
}

.d__content h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #09321C;
    min-height: 70px;
}

.details__box {
    border-radius: 70px;
    background: #fff;
    padding: 45px 20px;
    padding-bottom: 28px;
    cursor: pointer;
    transition: .3s all;
}

.d__icon {
    margin-bottom: 15px;
    height: 37px;
    text-align: center;
}

.d__content a {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(9, 50, 28, 0.6);
    text-align: center;
    display: block;
}

.details__box:hover {
    background: #D2F34C;
}

.details__bottom__blk {
    margin-top: 80px;
}

.details__content p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.7);
}

.business__table__blk table th {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid #EEEEEE !important;
}

.business__table__blk table td {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: #000000;
    padding-top: 35px;
    padding-bottom: 35px;
}

.td_text h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #000000;
    margin: 0;
}

.td_text span {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.5);
}

.check_text {
    display: flex;
}

.check_text span {
    margin-right: 13px;
}

.business__table__area {
    margin-top: 80px;
}

.business__table__blk table td:first-child {
    width: 450px;
}

.table__bottom__btn a {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #000000;
    border: 1px solid #040404;
    border-radius: 30px;
    padding: 4px 66px;
    display: inline-block;
}

.table__bottom__btn {
    text-align: center;
    margin-top: 50px;
}

.table__bottom__btn a span {
    color: #00BA56;
}

/* ------------------------------ DETAILS AREA END ------------------------- */


/* ------------------------------ STARTED AREA START ------------------------- */

.started__area {
    background: #244034;
    padding: 110px 0;
    position: relative;
    margin-top: 150px;
}

.started__inner__blk .details__content {
    text-align: center;
    margin-bottom: 80px;
}

.started__content h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
}

.started__content p {
    font-family: 'Gordita';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #81B197;
    max-width: 312px;
    margin: 0 auto;
}

.started__ico {
    text-align: center;
    margin-bottom: 30px;
}

.single__started__box {
    position: relative;
}

.started__inner__blk .details__content h3 span img {
    position: absolute;
    top: -45px;
    right: -98px;
}

.arrow__shape {
    position: absolute;
    top: 12px;
    right: -80px;
}

.st_shape_1 {
    position: absolute;
    top: 0;
    left: 0;
}

.st_shape_2 {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/* ------------------------------ STARTED AREA END ------------------------- */


/* ------------------------------ BRAND AREA START ------------------------- */
.brand__area {
    padding: 150px 0;
}

.brand__area {
    padding: 150px 0;
}

.brand__title {
    margin-bottom: 50px;
}

.brand__thumb img {
    border-radius: 200px;
}

.brand__content h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #000000;
    margin-bottom: 8px;
}

.brand__content span {
    font-size: 14px;
    text-align: center;
    display: block;
    color: #808080;
}

.brand__content {
    margin-top: 35px;
}

.expand__content>span {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.2);
}

.expand__thumb {
    padding-right: 70px;
}

.expand__content .details__content p {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 43px;
    color: rgba(0, 0, 0, 0.7);
}

.expand__inner__blk {
    border-top: 1px solid #EBEBEB;
    padding: 150px 0;

}

.food__service__content h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 68px;
    color: #FFFFFF;
}

.food__service__content p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 38px;
    color: #81B197;
    margin-bottom: 30px;
}

.food__service__btn a {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: #010101;
    background: #DFFA73;
    border-radius: 6px;
    padding: 16px 42px;
    display: inline-block;
    border: 1px solid #DFFA73;
    transition: .3s all;
    font-family: 'Circular Std';
}

.food__service__btn a:hover {
    background: #fff;
}

.food__service__inner__blk {
    background: #244034;
    padding: 80px;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.fd_service_shape_1 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.fd_service_shape_2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.food__service__content h4 span {
    color: #DFFA73;
}

.footer__top__title h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 54px;
    line-height: 62px;
    color: #101621;
    margin-bottom: 10px;
    font-family: 'EB Garamond', serif;
}

.footer__top__title p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.6);
    mix-blend-mode: normal;
    opacity: 0.8;
}

.footer__top__btn a {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #244034;
    border: 1.5px solid #244034;
    border-radius: 6px;
    padding: 18px 30px;
    display: inline-block;
    transition: .3s all;
}

.footer__top__inner__blk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    border-bottom: 1px solid #F0F0F0;
}

.footer__top__btn a:hover {
    background: #DFFA73;
    border-color: #DFFA73;
}

/* ------------------------------ BRAND AREA END ------------------------- */


/* ------------------------------ FOOTER AREA START ------------------------- */

.footer__list__blk h4 {
    font-family: 'Circular Std';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #0E0E0E;
}

.footer__list__blk ul li a {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 44px;
    color: rgba(0, 0, 0, 0.7);
    transition: .3s all;
}

.footer__list__blk ul li a:hover {
    color: #82933E;
}

.footer__area {
    padding-top: 80px;
}

.footer__copyright p {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.6;
    margin: 0;
}

.footer__copyright {
    padding: 50px 0;
    text-align: center;
    position: relative;
}

.footer__copyright span {
    position: absolute;
    left: 0;
    top: -116px;
}

.business__area {
    padding-top: 127px;
}

.header_shape {
    margin-right: 125px;
}

.open__menu {
    display: none;
}


.header__inner__blk {
    padding: 18px 0;
}

.mobile__menu {
    display: none;
}

/* ------------------------------ FOOTER AREA END ------------------------- */


/* ------------------------------ LOGIN AREA START ------------------------- */

.login__content {
    max-width: 740px;
    margin: 0 auto;
    padding: 34px 80px;
    background: #fff;
    padding-bottom: 80px;
    border-radius: 20px;
}

.info__content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 34px 80px;
    background: #fff;
    padding-bottom: 80px;
    border-radius: 20px;
}

.contact__content {
    text-align: center;
}

.contact__content h4 {
    margin-bottom: 33px;
    font-style: normal;
    font-weight: 400;
    font-size: 61px;
    line-height: 72px;
    text-align: center;
    color: #254035;
    font-family: 'EB Garamond', serif;
}

.single__linin__input label {
    margin-bottom: 6px;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    color: #254035;
    mix-blend-mode: normal;
    opacity: 0.5;
    font-family: 'Gordita', cursive;
}

.single__linin__input input {
    display: block;
    width: 100%;
    padding: 16px 24px;
    border: 1px solid #254035;
    border-radius: 7px;
    font-family: 'Gordita';
    background: #fff;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
}

.single__linin__input {
    margin-bottom: 30px;
    position: relative;
}

.single__linin__input button {
    right: 18px;
    position: absolute;
    background: transparent;
    border: 0;
    bottom: 20px;
}

.login__btn button {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.875px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #31795A;
    border-radius: 7px;
    width: 100%;
    padding: 20px 10px;
    border: 1px solid #31795A;
    transition: .3s all;
}

.login__area {
    padding: 150px 0;
    margin-top: -10px;
    background: #F0F5F3;
}

.login__btn {
    margin-top: 50px;
}

.login__btn button:hover {
    background: #fff;
    color: #31795A;
}

::placeholder {
    opacity: 1;
}

.breadcrumb__content h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 64px;
    line-height: 89px;
    text-align: center;
    color: #FFFFFF;
    font-family: 'EB Garamond', serif;
}

.breadcrumb__content p {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 42px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.breadcrumb__area {
    padding-top: 149px;
    padding-bottom: 100px;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/* ------------------------------ LOGIN AREA END ------------------------- */