@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); :root {
    --primary-color: #6c9e49;
    --secondary-color: #0d1e04;
    --text-color: #000000;
    --text-color-d: #4f4f4f;
}

* {
    box-sizing: border-box
}

*,*:focus,*:hover,*:active,*:before,*:after {
    outline: 0
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #424242;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

html {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

body {
    width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: montserrat,sans-serif!important;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none!important;
    color: var(--primary-color);
    border: 0;
    cursor: pointer;
    transition: 120ms ease 0s;
    user-select: none;
}

p,h1,h2,h3,h4,h5 {
    margin: 0
}

p {
    font-size: 15px;
    line-height: 32px;
    font-weight: 400;
}

nav,header,.section-main,footer {
    min-width: 100%;
    position: relative;
    display: block
}

.navbar-in,.header-in,.section-in,.footer-in {
    width: 100%;
    padding-left: 40px;
    height: 100%;
    margin-left: auto;
    max-width: 1550px;
    position: relative;
    padding-right: 40px;
    margin-right: auto;
    z-index: 1;
}

.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9 {
    display: grid;
    grid-gap: 45px;
}

.grid-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.grid-7 {
    grid-template-columns: repeat(7, 1fr);
}

.grid-8 {
    grid-template-columns: repeat(8, 1fr);
}

/* OWL */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* OWL */
@media screen and (max-width: 1024px) {
}

nav {
    height: 100px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    margin-top: 20px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    background: #f0f6ed;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 6px;
}

.navbar-l, .navbar-m, .navbar-r {
    display: flex;
    align-items: center;
    grid-gap: 35px;
    position: relative;
}

.navbar-l, .navbar-r {
    z-index: 2;
}

.navbar-m {
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo img {
    height: 70px;
}

.navbar-link, .btn-primary {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

header {
    padding-top: 120px;
    height: 100vh;
    padding-bottom: 40px;
}

.header-in {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.header-container {
    text-align: center;
    align-items: center;
    max-width: 900px;
    flex-direction: column;
    display: flex;
    grid-gap: 20px;
    margin: auto 0;
}

.header-container h1 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 60px;
    color: black;
}

.header-images {
    display: flex;
    align-items: center;
    grid-gap: 40px;
    height: 280px;
}

.header-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    height: 100%;
    transition: 200ms ease 0s;
    cursor: pointer;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.header-image:hover {
    width: 60%;
    transform: scale(1.05);
}

.header-container p {
    color: #000000;
    width: 90%;
}

.header-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
    background: #dfedd4;
}

.header-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://cdn.glitch.global/d914a492-4920-4791-a7f7-1392d268c17f/noise_filter.png?v=1745665989401);
    background-size: 550px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.header-grass {
    height: 90%;
    bottom: -10px;
    left: 0;
    right: 0;
    position: absolute;
    opacity: 0.05;
    margin: auto;
}

.btn-primary, .btn-secondary, .btn-secondary {
    padding: 14px 32px;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    border-radius: 6px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
}

.social-icon {
    height: 40px;
    width: 40px;
    border: 1px solid #6c9e4969;
    background: #6c9e4947;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.flex-row {
    display: flex;
    align-items: center;
    grid-gap: 45px;
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
}

.section-main.x {
    background: #f0f6ed;
    padding: 120px 0;
}

.title-set {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-bottom: 80px;
}

.title-set.center {
    flex-direction: column;
}

.title-set h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
}

.block {
    padding: 30px;
    border: 1px solid #00000029;
    border-radius: 6px;
}

.block.service > i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn-secondary.x {
    border: 0;
    border-bottom: 2px solid;
    border-radius: 0;
    width: fit-content;
    padding: 5px;
}

.block.service h3 {
    text-transform: uppercase;
    font-size: 21px;
    font-weight: 700;
}

.saperate {
    margin: 120px 0;
}

.margin-top-120 {
    margin-top: 120px;
}

.info-body {
    display: grid;
    grid-template-columns: repeat(18, minmax(0, 1fr));
    align-items: center;
}

.info-body-l {
    grid-column: span 9;
    position: relative;
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
    padding: 40px 0;
}

.info-body-r {
    grid-column-start: 11;
    grid-column-end: 19;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.info-body-r img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.info-body-l h3 {
    font-size: 2rem;
    text-transform: uppercase;
}

ul.list-x {
    display: flex;
    margin: 0;
    padding: 0;
    grid-gap: 30px;
    white-space: nowrap;
    flex-wrap: wrap;
    list-style: none;
}

ul.list-x li {
    padding-left: 19px;
    position: relative;
    font-size: 15px;
    font-weight: 500;
}

ul.list-x li:before {
    content: "";
    position: absolute;
    left: 0;
    width: 5px;
    height: 5px;
    bottom: 0;
    top: 0;
    margin: auto;
    background: var(--primary-color);
    border-radius: 1;
}

.img-block {
    padding: 120px 0;
    background-size: cover;
    background-attachment: fixed;
}

.detailed {
    max-width: 60%;
    color: #fff;
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
}

.img-block:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #12121285;
    backdrop-filter: blur(3px);
}

.detailed span {
    background: var(--primary-color);
    padding: 5px 10px;
    display: block;
    width: fit-content;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.detailed h2 {
    font-size: 3rem;
    font-weight: 600;
}

.detailed a {
    width: fit-content;
}

.detailed ul.list-x.bg {
    margin: 20px 0;
}

.detailed ul.list-x.bg li {
    font-size: 17px;
}

.info-body.if .info-body-l {
    grid-column-start: 10;
    grid-column-end: 19;
}

.info-body.if .info-body-r {
    grid-column: span 8;
}


.review-card {
    padding: 30px;
    border-radius: 8px;
    /* border: 1px solid #a4b795; */
    background: #ffffff;
}

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

.review-card h3 {
    margin-top: 20px;
    font-size: 20px;
}

.review-footer {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.review-client-image {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.review-card > p {
    margin-top: 10px;
    margin-bottom: 20px;
}

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

.review-client-body {
    display: flex;
    flex-direction: column;
}

.review-client-body h4 {
    font-weight: 700;
    font-size: 16px;
}

.review-client-body span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #7b7b7b;
}

.stars {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    grid-gap: 4px;
    font-size: 14px;
}

.stars[data="4"] i:nth-child(n+5) {
    color: #323232;
}

.stars[data="3"] i:nth-child(n+4) {
    color: #5b5b5b;
}

.stars[data="2"] i:nth-child(n+3) {
    color: #323232;
}

.stars[data="1"] i:nth-child(n+2) {
    color: #323232;
}

.section-main.y {
    background: #dfedd4;
    padding: 120px 0;
}

.title-set.proud {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 80px;
    grid-gap: 0;
    margin-bottom: 0;
}

.title-set.proud p {
    display: flex;
    grid-gap: 10px;
}

.blog-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 5px;
}

.blog-card {
    background: white;
}

.blog-card h3 {
    color: #242424;
    margin-top: 20px;
    margin-bottom: 10px;
}

.blog-card p {
    color: #353535;
}