@import "https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&amp;family=Roboto:wght@400;500;700&amp;display=swap";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--clr-common-text);
    line-height: 26px
}

a {
    text-decoration: none
}

.w-img img {
    width: 100%
}

.m-img img {
    max-width: 100%
}

span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-5,
h1,
h2,
h3,
h4,
h5,
h6,
div {
    -webkit-transition: all .5s ease-out 0s;
    -moz-transition: all .5s ease-out 0s;
    -ms-transition: all .5s ease-out 0s;
    -o-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s
}

a,
.btn,
button {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: 0 0
}

button:hover {
    cursor: pointer
}

button:focus {
    outline: 0;
    border: 0
}

.uppercase {
    text-transform: uppercase
}

.capitalize {
    text-transform: capitalize
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: poppins, sans-serif;
    color: var(--clr-common-heading);
    margin-top: 0;
    font-weight: 700;
    line-height: 1.2;
    -webkit-transition: all .5s ease-out 0s;
    -moz-transition: all .5s ease-out 0s;
    -ms-transition: all .5s ease-out 0s;
    -o-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s;
    letter-spacing: -1px
}

h1 {
    font-size: 40px
}

h2 {
    font-size: 36px
}

h3 {
    font-size: 24px
}

h4 {
    font-size: 20px
}

h5 {
    font-size: 16px
}

h6 {
    font-size: 14px
}

ul {
    margin: 0;
    padding: 0
}

li {
    list-style: none
}

p {
    font-family: roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--clr-common-text);
    margin-bottom: 15px;
    line-height: 26px
}

*::-moz-selection {
    background: var(--clr-common-black);
    color: var(--clr-common-white);
    text-shadow: none
}

::-moz-selection {
    background: var(--clr-common-black);
    color: var(--clr-common-white);
    text-shadow: none
}

::selection {
    background: var(--clr-common-black);
    color: var(--clr-common-white);
    text-shadow: none
}

*::-moz-placeholder {
    color: var(--clr-common-placeholder);
    font-size: 16px;
    opacity: 1
}

*::placeholder {
    color: var(--clr-common-placeholder);
    font-size: 16px;
    opacity: 1
}

.fix {
    overflow: hidden
}

.clear {
    clear: both
}

.f-left {
    float: left
}

.f-right {
    float: right
}

.z-index-1 {
    z-index: 1
}

.z-index-11 {
    z-index: 11
}

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible
}

.p-relative {
    position: relative
}

.p-absolute {
    position: absolute
}

.pos-rel {
    position: relative
}

.pos-abs {
    position: absolute
}

.grey-bg {
    background: var(--clr-bg-grey)
}

.pink-bg {
    background: var(--clr-common-black)
}

.white-bg {
    background: var(--clr-common-white)
}

.black-bg {
    background: var(--clr-common-black)
}

.footer-bg {
    background: var(--clr-bg-3)
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
    color: var(--clr-common-white) !important
}

.white-color {
    color: var(--clr-common-white)
}

.theme-color {
    color: var(--clr-common-black) !important
}

.black-color {
    color: var(--clr-common-black)
}

.body-overlay {
    background-color: rgba(0, 0, 0, .5);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.body-overlay:hover {
    cursor: pointer
}

.body-overlay.opened {
    opacity: 1;
    visibility: visible
}

@media(max-width:575px) {
    .progress-wrap {
        right: 15px;
        bottom: 15px
    }
}

.link-btn {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--clr-common-black);
    text-transform: uppercase;
    padding-inline-end: 15px
}

.link-btn i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -ms-transition: all ease .2s;
    -o-transition: all ease .2s
}

.link-btn i:first-child {
    left: -100%;
    visibility: hidden;
    opacity: 0
}

.link-btn i:last-child {
    right: 0
}

.link-btn:hover {
    color: var(--clr-common-black)
}

.link-btn:hover i:first-child {
    left: 0;
    visibility: visible;
    opacity: 1
}

.link-btn:hover i:last-child {
    right: -100%;
    visibility: hidden;
    opacity: 0
}

.link-btn-2 {
    position: relative;
    font-size: 14px;
    color: var(--clr-common-black);
    font-weight: 500;
    padding-inline-end: 22px;
    display: inline-block;
    text-transform: uppercase;
    font-family: roboto, sans-serif
}

.link-btn-2 i {
    position: absolute;
    top: 45%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -ms-transition: all ease .2s;
    -o-transition: all ease .2s;
    font-size: 12px
}

.link-btn-2 i:first-child {
    right: 10%;
    visibility: hidden;
    opacity: 0
}

.link-btn-2 i:last-child {
    right: 0
}

.link-btn-2:hover {
    color: var(--clr-common-black)
}

.link-btn-2:hover i:first-child {
    right: 0;
    visibility: visible;
    opacity: 1
}

.link-btn-2:hover i:last-child {
    right: -10%;
    visibility: hidden;
    opacity: 0
}

.link-btn-2.pink {
    color: var(--clr-common-black)
}

.link-btn-2.pink:hover {
    color: var(--clr-common-black)
}

.pulse-btn {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 84px;
    text-align: center;
    background-color: var(--clr-common-white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: var(--clr-common-black);
    animation: pulse 2s infinite
}

.pulse-btn:hover {
    background-color: var(--clr-common-black);
    color: var(--clr-common-white)
}

.pulse-btn i {
    padding-inline-start: 2px
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .4)
    }
    70% {
        -webkit-box-shadow: 0 0 0 45px transparent
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 transparent
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .4)
    }
    70% {
        -moz-box-shadow: 0 0 0 45px transparent;
        box-shadow: 0 0 0 45px transparent
    }
    100% {
        -moz-box-shadow: 0 0 0 0 transparent;
        box-shadow: 0 0 0 0 transparent
    }
}

.border-left {
    position: relative
}

.border-left:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #eaebee;
    left: 0;
    top: 0
}

:root {
    --clr-common-white: #fff;
    --clr-common-black: #000;
    --clr-common-blue: #2785ff;
    --clr-common-heading: #0b3d2c;
    --clr-common-text: #777777;
    --clr-common-border: #0b3d2c;
    --clr-common-placeholder: #777777;
    --clr-theme-1: #0b3d2c;
    --clr-theme-2: #4e9f24;
    --clr-theme-3: #f8f5f0;
    --clr-bg-1: #0b3d2c;
    --clr-bg-2: #4e9f24;
    --clr-bg-3: #f6f6f6
}

.bg-gray {
    background-color: var(--clr-bg-1)
}

.fill-btn {
    font-size: 16px;
    color: var(--clr-common-white);
    font-weight: 700;
    background: var(--clr-bg-1);
    border: 1px solid var(--clr-bg-1);
    height: 60px;
    line-height: 58px;
    border-radius: 10px;
    padding: 0 38px;
    position: relative;
    overflow: hidden;
    text-align: center;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    white-space: nowrap;
    z-index: 1
}

.fill-btn:hover,
.fill-btn:focus {
    color: var(--clr-theme-1);
    background-color: var(--clr-common-white)
}

.fill-btn::before,
.fill-btn::after {
    content: "";
    background: var(--clr-common-white);
    height: 50%;
    width: 0;
    position: absolute;
    transition: .3s cubic-bezier(.785, .135, .15, .86);
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    z-index: -1
}

.fill-btn::before {
    top: 0;
    left: 0;
    right: auto
}

.fill-btn::after {
    bottom: 0;
    right: 0;
    left: auto
}

.fill-btn:hover::before {
    width: 100%;
    right: 0;
    left: auto
}

.fill-btn:hover::after {
    width: 100%;
    left: 0;
    right: auto
}

.fill-btn-rounded {
    font-size: 16px;
    color: var(--clr-common-white);
    font-weight: 700;
    background: var(--clr-bg-1);
    border: 1px solid var(--clr-bg-1);
    height: 60px;
    line-height: 58px;
    border-radius: 30px;
    padding: 0 34px;
    position: relative;
    overflow: hidden;
    text-align: center;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    white-space: nowrap;
    z-index: 1
}

.fill-btn-rounded:hover,
.fill-btn-rounded:focus {
    color: var(--clr-theme-1);
    background-color: var(--clr-common-white)
}

.fill-btn-rounded::before,
.fill-btn-rounded::after {
    content: "";
    background: var(--clr-common-white);
    height: 50%;
    width: 0;
    position: absolute;
    transition: .3s cubic-bezier(.785, .135, .15, .86);
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    z-index: -1
}

.fill-btn-rounded::before {
    top: 0;
    left: 0;
    right: auto
}

.fill-btn-rounded::after {
    bottom: 0;
    right: 0;
    left: auto
}

.fill-btn-rounded:hover::before {
    width: 100%;
    right: 0;
    left: auto
}

.fill-btn-rounded:hover::after {
    width: 100%;
    left: 0;
     right:auto
 }

 .border-btn {
     font-size: 16px;
     color: var(--clr-common-heading);
     border: 1px solid var(--clr-common-heading);
     padding: 0 38px;
     height: 50px;
     border-radius: 5px;
     display: inline-flex;
     line-height: 48px;
     font-weight: 600;
     justify-content: center;
     align-items: center;
     gap: 6px;
     text-transform: uppercase;
     position: relative;
     z-index: 1;
     overflow: hidden
 }

 .border-btn:hover,
 .border-btn:focus {
     color: var(--clr-common-white);
     background: var(--clr-common-heading)
 }

 .border-btn::before,
 .border-btn::after {
     content: "";
     background: var(--clr-bg-1);
     height: 50%;
     width: 0;
     position: absolute;
     transition: .3s cubic-bezier(.785, .135, .15, .86);
     -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
     z-index: -1
 }

 .border-btn::before {
     top: 0;
     left: 0;
     right: auto
 }

 .border-btn::after {
     bottom: 0;
     right: 0;
     left: auto
 }

 .border-btn:hover::before {
     width: 100%;
     right: 0;
     left: auto
 }

 .border-btn:hover::after {
     width: 100%;
     left: 0;
     right: auto
 }

 .border-btn-rounded {
     font-size: 16px;
     color: var(--clr-theme-1);
     height: 60px;
     border: 1px solid var(--clr-bg-1);
     text-align: center;
     line-height: 58px;
     border-radius: 30px;
     padding: 0 38px;
     display: inline-flex;
     align-items: center;
     gap: 6px;
     position: relative;
     overflow: hidden;
     text-transform: uppercase;
     font-weight: 700;
     white-space: nowrap;
     z-index: 1
 }

 .border-btn-rounded:hover,
 .border-btn-rounded:focus {
     color: var(--clr-common-white);
     background: var(--clr-bg-1);
     border-color: var(--clr-theme-1)
 }

 .border-btn-rounded::before,
 .border-btn-rounded::after {
     content: "";
     background: var(--clr-bg-1);
     height: 50%;
     width: 0;
     position: absolute;
     transition: .3s cubic-bezier(.785, .135, .15, .86);
     -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
     z-index: -1
 }

 .border-btn-rounded::before {
     top: 0;
     left: 0;
     right: auto
 }

 .border-btn-rounded::after {
     bottom: 0;
     right: 0;
     left: auto
 }

 .border-btn-rounded:hover::before {
     width: 100%;
     right: 0;
     left: auto
 }

 .border-btn-rounded:hover::after {
     width: 100%;
     left: 0;
     right: auto
 }

 .text-btn {
     font-size: 14px;
     font-weight: 600;
     color: var(--clr-theme-1);
     text-transform: uppercase;
     display: inline-flex;
     gap: 10px;
     align-items: center;
     line-height: 1;
     overflow: hidden
 }

 .text-btn:hover {
     color: var(--clr-theme-2)
 }

 .text-btn:hover i:first-child {
     margin-inline-start: 0
 }

 .text-btn:hover i:last-child {
     font-size: 0
 }

 .text-btn i:first-child {
     margin-inline-start: -22px
 }

 .action-btn {
     font-size: 16px;
     color: var(--clr-theme-1);
     width: 50px;
     height: 50px;
     border: 1px solid #e3e3e3;
     display: inline-flex;
     text-align: center;
     line-height: 50px;
     border-radius: 50%;
     align-items: center;
     justify-content: center
 }

 .icon-btn {
     width: 60px;
     height: 60px;
     justify-content: center;
     align-items: center;
     font-size: 20px;
     display: inline-flex;
     background: var(--clr-common-white);
     border-radius: 50%;
     color: var(--clr-theme-1)
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 only screen and (min-width:768px) and (max-width:991px),
 (max-width:450px) {
     .icon-btn {
         width: 45px;
         height: 45px;
         line-height: 45px;
         font-size: 18px
     }
 }

 .icon-btn:hover {
     color: var(--clr-common-white);
     background: var(--clr-theme-2)
 }

 .icon-btn:hover i {
     animation: iconltr .5s forwards
 }

 .section-main-title {
     font-size: 50px;
     line-height: 1.16;
     font-weight: 700;
     color: var(--clr-common-heading);
     text-transform: uppercase;
     letter-spacing: -1.3px
 }

 @media only screen and (min-width:1400px) and (max-width:1600px) {
     .section-main-title {
         font-size: 43px
     }
 }

 @media only screen and (min-width:1200px) and (max-width:1399px) {
     .section-main-title {
         font-size: 43px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px) {
     .section-main-title {
         font-size: 43px
     }
 }

 @media only screen and (min-width:768px) and (max-width:991px) {
     .section-main-title {
         font-size: 48px
     }
 }

 @media only screen and (min-width:576px) and (max-width:767px) {
     .section-main-title {
         font-size: 40px
     }
 }

 @media(max-width:575px) {
     .section-main-title {
         font-size: 40px
     }
     .contact-info-area {
    position: relative;
    padding-top: 150px;
    padding-bottom: 50px;
 }
}
 @media(max-width:450px) {
     .section-main-title {
         font-size: 21px
     }
     .mb-45 {
    margin-bottom: 25px;
}
.fill-btn
{
        padding: 0 26px;
        height: 40px;
    line-height: 30px;
}
 }

 .section-title {
     position: relative;
     z-index: 2
 }

 .section-subtitle {
     font-size: 16px;
     text-transform: uppercase;
     font-weight: 700;
     color: var(--clr-theme-2);
     display: block;
     margin-bottom: 10px;
     margin-top: -2px;
     line-height: 1
 }

 .style-2 .section-subtitle {
     margin-bottom: 12px
 }

 .style-3 .section-subtitle {
     font-size: 16px;
     font-weight: 700;
     text-transform: uppercase;
     color: var(--clr-common-white);
     height: 30px;
     background: var(--clr-theme-2);
     line-height: 30px;
     display: inline-block;
     padding: 0 20px 0 32px;
     border-radius: 15px;
     position: relative
 }

 .style-3 .section-subtitle::before {
     position: absolute;
     content: "";
     width: 6px;
     height: 6px;
     background: var(--clr-common-white);
     border-radius: 50%;
     left: 20px;
     top: 50%;
     transform: translateY(-50%)
 }

 .style-4 .section-subtitle {
     font-size: 16px;
     text-transform: uppercase;
     font-weight: 700;
     color: var(--clr-theme-2);
     display: block;
     margin-bottom: 10px;
     margin-top: -2px;
     line-height: 1
 }

 .style-5 .section-subtitle {
     font-size: 16px;
     text-transform: uppercase;
     font-weight: 700;
     color: var(--clr-theme-2);
     display: block;
     margin-bottom: 10px;
     margin-top: -2px;
     line-height: 1
 }

 .hr1 {
     border-bottom: 1px solid #dcdcdc
 }

 .container,
 .container-fluid,
 .container-lg,
 .container-md,
 .container-sm,
 .container-xl,
 .container-xxl {
     width: 100%;
     padding-inline-end: var(--bs-gutter-x, 15px);
     padding-inline-start: var(--bs-gutter-x, 15px);
     margin-inline-end: auto;
     margin-inline-start: auto
 }

 .row {
     --bs-gutter-x: 30px
 }

 .g-0,
 .gx-0 {
     --bs-gutter-x: 0
 }

 @media(min-width:1400px) {
     .container,
     .container-lg,
     .container-md,
     .container-sm,
     .container-xl,
     .container-xxl {
         max-width: 1320px
     }
 }

 @media(min-width:1400px) {
     .container-big {
         max-width: 1800px
     }
 }

 .play-border-effect {
     position: relative
 }

 .play-border-effect::before,
 .play-border-effect::after {
     position: absolute;
     left: 0;
     top: 0;
     content: "";
     border-radius: 50%;
     width: 100%;
     height: 100%;
     border: 1px solid #eaeaea;
     animation: popupBtn 1.8s linear infinite
 }

 @keyframes popupBtn {
     0% {
         transform: scale(1);
         opacity: 0
     }
     50% {
         transform: scale(1.4);
         opacity: .3
     }
     100% {
         transform: scale(1.8);
         opacity: 0
     }
 }

 .filter-search-input {
     position: relative
 }

 .filter-search-input input {
     width: 100%;
     height: 50px;
     border: 1px solid var(--clr-bg-1);
     background: var(--clr-common-white);
     border-radius: 10px 10px 10px 10px;
     padding: 0 20px;
     padding-inline-end: 50px;
     outline: none
 }

 .filter-search-input button {
     position: absolute;
     right: 20px;
     top: 12px;
     color: #919191
 }

 [dir=rtl] .filter-search-input button {
     left: 20px;
     right: auto
 }

 .cursor-outer {
     margin-left: -15px;
     margin-top: -15px;
     width: 30px;
     height: 30px;
     border: 2px solid var(--clr-theme-2);
     box-sizing: border-box;
     z-index: 10000000;
     opacity: .5;
     transition: all .08s ease-out
 }

 .mouseCursor {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     pointer-events: none;
     border-radius: 50%;
     transform: translateZ(0);
     visibility: hidden;
     text-align: center
 }

 [dir=rtl] .mouseCursor {
     left: 0;
     right: auto
 }

 .cursor-inner {
     margin-left: -3px;
     margin-top: -3px;
     width: 6px;
     height: 6px;
     z-index: 10000001;
     background-color: var(--clr-theme-2);
     transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out
 }

 .cursor-inner span {
     color: #fff;
     line-height: 80px;
     opacity: 0;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-size: 12px
 }

 .cursor-inner.cursor-big span {
     opacity: 1
 }

 .mouseCursor.cursor-big {
     width: 80px;
     height: 80px;
     margin-inline-start: -40px;
     margin-top: -40px
 }

 .mouseCursor.cursor-big.cursor-outer {
     display: none
 }

 .mouseCursor.cursor-big.d-none {
     display: none
 }

 .slider-drag .swiper-slide {
     cursor: none
 }

 .sticky {
     position: fixed;
     top: 0;
     background: var(--clr-common-white);
     z-index: 800;
     right: 0;
     left: 0;
     width: 100%;
     transition: .4s;
     box-shadow: 0 0 60px 0 rgba(53, 57, 69, .15);
     animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
     border: none
 }

 .main-menu {
     display: inline-block
 }

 .main-menu ul li {
     display: inline-block;
     margin: 0 25px;
     position: relative
 }

 @media only screen and (min-width:1400px) and (max-width:1600px) {
     .main-menu ul li {
         margin: 0 18px
     }
 }

 @media only screen and (min-width:1200px) and (max-width:1399px),
 only screen and (min-width:992px) and (max-width:1199px) {
     .main-menu ul li {
         margin: 0 13px
     }
 }

 .main-menu ul li a {
     font-size: 16px;
     color: var(--clr-common-heading);
     text-transform: uppercase;
     display: inline-block;
     padding: 30px 0;
     line-height: 20px;
     font-weight: 600
 }

 [dir=rtl] .main-menu ul li a {
     text-align: right
 }

 .main-menu ul li .sub-menu {
     background: var(--clr-common-white) none repeat scroll 0 0;
     box-shadow: 0 6px 12px rgba(0, 0, 0, .176);
     left: 0;
     right: 0;
     opacity: 0;
     position: absolute;
     top: 100%;
     transition: all .5s ease 0s;
     visibility: hidden;
     width: 240px;
     z-index: 9;
     border-top: 4px solid var(--clr-common-heading);
     text-align: left;
     padding: 15px 0;
     -webkit-transform: scaleY(0) translateZ(100px);
     transform: scaleY(0) translateZ(100px);
     -webkit-transform-origin: top center;
     transform-origin: top center
 }

 .main-menu ul li .sub-menu .sub-menu {
     left: 100%;
     right: 100%;
     top: 0%
 }

 .main-menu ul li .sub-menu li {
     display: flex;
     margin: 0;
     padding: 8px 25px;
     justify-content: space-between
 }

 .main-menu ul li .sub-menu li a {
     padding: 0;
     display: block;
     color: var(--clr-common-heading);
     position: relative;
     font-weight: 500;
     width: 100%
 }

 .main-menu ul li .sub-menu li a:before {
     content: "";
     width: 0;
     height: 1px;
     bottom: 0;
     position: absolute;
     left: auto;
     right: 0;
     z-index: -1;
     transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
     background: var(--clr-common-heading);
     opacity: 0
 }

 .main-menu ul li .sub-menu li:hover>a {
     color: var(--clr-theme-2);
     padding-inline-start: 5px
 }

 .main-menu ul li .sub-menu li:hover>a:before {
     width: 100%;
     left: 0;
     right: auto
 }

 .main-menu ul li:hover>a {
     color: var(--clr-theme-2)
 }

 .main-menu ul li:hover>.sub-menu {
     opacity: 1;
     visibility: visible;
     top: 100%;
     -webkit-transform: scaleY(1) translateZ(194px);
     transform: scaleY(1) translateZ(0px)
 }

 .main-menu ul li:hover>.sub-menu li:hover>.sub-menu {
     top: 0
 }

 .main-menu ul li:hover.menu-item-has-children::after {
     color: var(--clr-theme-2)
 }

 .main-menu ul li.menu-item-has-children {
     position: relative
 }

 .main-menu ul li.menu-item-has-children:after {
     content: "\f067";
     font-size: 12px;
     color: var(--clr-common-heading);
     font-family: "font awesome 5 pro";
     -webkit-transition: all .3s ease-out 0s;
     -moz-transition: all .3s ease-out 0s;
     -ms-transition: all .3s ease-out 0s;
     -o-transition: all .3s ease-out 0s;
     transition: all .3s ease-out 0s
 }

 .bar-icon {
     width: 20px;
     height: 14px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     overflow: hidden
 }

 .bar-icon span {
     width: 100%;
     height: 2px;
     background: #000;
     display: inline-block
 }

 .bar-icon span:nth-child(2) {
     margin-inline-start: 9px;
     transition: .3s
 }

 .bar-icon:hover span:nth-child(2) {
     margin-inline-start: 0
 }

 div.mean-container .mean-bar {
     background: 0 0
 }

 div.mean-container .mean-nav {
     background: 0 0;
     margin-bottom: 40px;
     overflow: hidden
 }

 div.mean-container .mean-nav>ul {
     display: block !important
 }

 div.mean-container .mean-nav ul li a {
     width: 100%;
     font-size: 16px;
     text-transform: none;
     opacity: 1;
     padding-inline-start: 0
 }

 div.mean-container .mean-nav ul li a:hover {
     color: var(--clr-theme-1)
 }

 div.mean-container .mean-nav ul li a i {
     display: none
 }

 div.mean-container .mean-nav ul li a.mean-expand {
     height: 26px;
     border: none;
     background: var(--clr-bg-3);
     padding: 10px 5%
 }

 div.mean-container .mean-nav ul li a.mean-expand::before {
     position: absolute;
     content: "+";
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%)
 }

 div.mean-container .mean-nav ul li a.mean-expand.mean-clicked::before {
     content: "-"
 }

 div.mean-container .mean-nav ul li li a {
     padding: 10px 5%
 }

 div.mean-container .mean-nav ul li li li a {
     padding: 10px 10%
 }

 div.mean-container a.meanmenu-reveal {
     display: none !important
 }

 .offcanvas-overlay {
     position: fixed;
     height: 100%;
     width: 100%;
     background: #000;
     z-index: 900;
     top: 0;
     opacity: 0;
     visibility: hidden
 }

 .offcanvas-overlay.overlay-open {
     opacity: .4;
     visibility: visible
 }

 .offcanvas-overlay-white {
     position: fixed;
     height: 100%;
     width: 100%;
     background: var(--clr-common-white);
     z-index: 900;
     top: 0;
     opacity: 0;
     visibility: hidden
 }

 .offcanvas-overlay-white.overlay-open {
     opacity: 0;
     visibility: visible
 }

 .side-info-close {
     background: 0 0;
     border: 0;
     color: #fff;
     font-size: 20px;
     padding: 0;
     -webkit-transition: all .5s ease-out 0s;
     -moz-transition: all .5s ease-out 0s;
     -ms-transition: all .5s ease-out 0s;
     -o-transition: all .5s ease-out 0s;
     transition: all .5s ease-out 0s
 }

 .side-info {
     background: #008037;
     height: 100%;
     position: fixed;
     z-index: 99999;
     right: -100%;
     top: 0;
     width: 365px;
     padding: 45px 35px 45px 45px;
     transition: .6s;
     overflow-y: scroll
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .side-info {
         width: 300px;
         padding: 15px 25px
     }
 }

 .side-info.info-open {
     right: 0
 }

 .header-note {
     background: var(--clr-common-heading);
     position: relative;
     padding: 7px 15px
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .header-note {
         display: none
     }
 }

 .header-note p {
     color: var(--clr-common-white);
     margin-bottom: 0;
     text-align: center
 }

 .header-note p span {
     font-weight: 600
 }

 .note-close-btn {
     font-size: 12px;
     position: absolute;
     right: 20px;
     top: 8px;
     color: var;
     color: var(--clr-common-white)
 }

 .header-top-inner {
     background: var(--clr-theme-3);
     display: flex;
     justify-content: space-between;
     align-items: center
 }

 .meta-item-text p {
     color: var(--clr-theme-1);
     margin-bottom: 0
 }

 .meta-item-icon {
     color: var(--clr-theme-1)
 }

 .meta-item {
     display: flex;
     gap: 10px
 }

 .header-top-left .meta-item {
     position: relative
 }

 .header-top-left .meta-item:not(:first-child):before {
     position: absolute;
     content: "";
     width: 2px;
     height: 10px;
     background: #d1d0cf;
     left: -25px;
     right: -25px;
     top: 8px
 }

 .header-top-left .meta-items {
     display: flex;
     gap: 50px;
     padding-inline-start: 20px
 }

 .header-top-right {
     display: flex;
     gap: 40px;
     align-items: center
 }

 .header-top-social .social-links ul {
     gap: 0
 }

 .header-top-social .social-links ul li {
     width: 40px;
     height: 40px;
     border-left: 1px solid #e8e3da;
     text-align: center;
     line-height: 40px
 }

 [dir=rtl] .header-top-social .social-links ul li {
     border-right: 1px solid #e8e3da;
     border-left: 0
 }

 .header-top-social .social-links ul li:last-child {
     border-right: 1px solid #e8e3da
 }

 .header-main-content-wrapper {
     display: flex;
     justify-content: space-between;
     align-items: center
 }

 .header-main-right {
     display: flex;
     gap: 15px;
     align-items: center
 }

 .header-main-right .border-btn-rounded {
     border-color: #e2e2e2;
     height: 50px;
     line-height: 48px;
     padding: 0 29px
 }

 .header-main-right .border-btn-rounded:hover {
     border-color: var(--clr-theme-1)
 }

 .header-main-right .border-btn-rounded::before,
 .header-main-right .border-btn-rounded::after {
     background: var(--clr-bg-1)
 }

 .header-main-left {
     display: flex;
     gap: 35px
 }

 .header1-logo {
     margin-bottom: -20px;
     position: relative;
     z-index: 5;
     width: 285px
 }

 @media only screen and (min-width:1200px) and (max-width:1399px),
 only screen and (min-width:992px) and (max-width:1199px),
 only screen and (min-width:768px) and (max-width:991px) {
     .header1-logo {
         width: 229px;
         margin-bottom: 0
     }
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .header1-logo {
         width: 229px;
         margin-bottom: 0
     }
 }

 @media(max-width:450px) {
     .header1-logo {
         width: 200px;
         margin-bottom: 0
     }
 }

 .header-logo {
     display: inline-block
 }

 .header-logo img {
     width: 70%
 }

 .header-main-right-header1 .action-btn {
     color: var(--clr-theme-1)
 }

 .header-main-right-header1 .action-btn:hover {
     color: var(--clr-common-white);
     background: var(--clr-bg-1);
     border-color: var(--clr-theme-1)
 }

 .header2 .header-top-area {
     background: #f8f5f0
 }

 .header2 .social-links ul li a {
     color: var(--clr-theme-1)
 }

 .meta-header-area {
     background: var(--clr-bg-1);
     padding: 25px 0
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .meta-header-area {
         padding: 15px 0
     }
 }

 .meta-header-area.sticky {
     padding: 10px 0
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .meta-header-area.sticky {
         padding: 15px 0
     }
 }

 .meta-header-area .bar-icon span {
     background: #fff
 }

 .meta-header-inner {
     display: flex;
     justify-content: space-between;
     align-items: center
 }

 .meta-header-right {
     display: flex;
     gap: 14px;
     align-items: center
 }

 .meta-header-right .border-btn-rounded {
     border-color: #18523e;
     color: var(--clr-common-white);
     height: 50px;
     line-height: 48px;
     padding: 0 29px
 }

 .meta-header-right .border-btn-rounded:hover {
     color: var(--clr-theme-1);
     background: var(--clr-common-white);
     border-color: var(--clr-common-white)
 }

 .meta-header-right .border-btn-rounded::before,
 .meta-header-right .border-btn-rounded::after {
     background: var(--clr-common-white)
 }

 .meta-header-right .action-btn {
     border-color: #18523e;
     color: var(--clr-common-white)
 }

 .meta-header-right .action-btn:hover {
     color: var(--clr-theme-1);
     background: var(--clr-common-white);
     border-color: var(--clr-common-white)
 }

 .meta-header-right .main-menu {
     display: none
 }

 .sticky .meta-header-right .main-menu {
     display: inline-block
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .sticky .meta-header-right .main-menu {
         display: none
     }
 }

 .sticky .meta-header-right .meta-header-meta-items {
     display: none !important
 }

 .sticky .meta-header-right .action-btn {
     display: none !important
 }

 @media only screen and (min-width:992px) and (max-width:1199px) {
     .sticky .meta-header-right .border-btn-rounded {
         display: none !important
     }
 }

 .sticky .meta-header-right .main-menu ul li a {
     color: var(--clr-common-white)
 }

 .sticky .meta-header-right .main-menu ul li.menu-item-has-children::after {
     color: var(--clr-common-white)
 }

 .sticky .meta-header-right .main-menu ul li .sub-menu li a {
     color: var(--clr-common-heading)
 }

 .meta-header-meta-items {
     display: flex;
     gap: 40px;
     margin-inline-end: 46px
 }

 .meta-header-meta-items .meta-item-icon {
     width: 50px;
     height: 50px;
     border: 1px solid #18523e;
     border-radius: 50%;
     text-align: center;
     line-height: 50px;
     color: var(--clr-common-white)
 }

 .meta-header-meta-items p {
     font-size: 14px;
     text-transform: uppercase;
     color: #6a8c80;
     font-weight: 700;
     margin-bottom: 4px;
     line-height: 1
 }

 .meta-header-meta-items .meta-title {
     font-size: 20px;
     color: var(--clr-common-white);
     font-weight: 700;
     text-transform: uppercase
 }

 .meta-header-meta-items .meta-item {
     display: flex;
     align-items: center;
     gap: 14px
 }

 .header-main-left-header2 {
     background: var(--clr-common-white);
     border-radius: 0 0 10px 10px;
     box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .1);
     padding: 0 40px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-grow: 1
 }

 .header-search .single-input-field {
     margin-bottom: 0
 }

 .header-search .single-input-field input {
     border: 0;
     height: auto;
     padding: 0 0 0 25px;
     width: 150px
 }

 .header-search .single-input-field input::placeholder {
     text-transform: inherit;
     font-size: 16px;
     font-weight: 400;
     color: #b1b1b1
 }

 .header-search .single-input-field::after {
     display: none
 }

 .header-search .single-input-field button {
     color: var(--clr-theme-1);
     position: absolute;
     left: 0;
     top: 0
 }

 .main-menu2.main-menu ul li:first-child {
     margin-inline-start: 0
 }

 .header-main2 {
     position: relative;
     z-index: 5
 }

 .header-main2 .header-main-content-wrapper {
     gap: 20px
 }

 .header-main-right-header2 .meta-item {
     background: var(--clr-theme-2);
     height: 80px;
     border-radius: 0 0 10px 10px;
     position: relative;
     z-index: 1;
     display: flex;
     align-items: center;
     padding: 0 38px
 }

 .header-main-right-header2 .meta-item .meta-title {
     font-size: 14px;
     font-weight: 700;
     text-transform: uppercase;
     color: var(--clr-common-white);
     line-height: 1;
     margin-bottom: 4px
 }

 .header-main-right-header2 .meta-item p {
     font-size: 20px;
     font-weight: 700;
     color: var(--clr-common-white);
     margin-bottom: 0
 }

 .header-main-right-header2 .meta-item p a:hover {
     text-decoration: underline
 }

 .header-main-right-header2 .meta-item-icon {
     font-size: 40px;
     color: #3a8b3e;
     position: absolute;
     right: 10px;
     top: 10px;
     z-index: -1
 }

 .header-main3 {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     z-index: 100;
     padding: 25px 0
 }

 .header-main3::before {
     position: absolute;
     content: "";
     width: 100%;
     height: 170px;
     left: 0;
     top: 0;
     z-index: -1;
     background-image: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
     background-image: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
     background-image: -ms-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
     opacity: .6
 }

 .header-main3 .container,
 .header-main3 .container-lg,
 .header-main3 .container-md,
 .header-main3 .container-sm,
 .header-main3 .container-xl,
 .header-main3 .container-xxl {
     max-width: 1590px
 }

 .header-main3.sticky {
     position: fixed;
     background: var(--clr-bg-1);
     padding: 10px 0
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .header-main3.sticky {
         padding: 15px 0
     }
 }

 .header-main3.sticky:before {
     display: none
 }

 .header3-logo {
     position: relative;
     z-index: 2
 }

 .header3-logo:before {
     position: absolute;
     content: "";
     width: 208px;
     height: 208px;
     right: -56px;
     bottom: -37px;
     background: var(--clr-theme-2);
     border-radius: 50%;
     z-index: -1
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .header3-logo:before {
         bottom: -27px
     }
 }

 .header3-logo:after {
     position: absolute;
     content: "";
     width: 208px;
     height: 208px;
     left: -40px;
     bottom: -54px;
     background: var(--clr-bg-1);
     border-radius: 50%;
     z-index: -1
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .header3-logo:after {
         bottom: -44px
     }
 }

 .main-menu3 {
     margin-inline-end: 140px
 }

 @media only screen and (min-width:1200px) and (max-width:1399px) {
     .main-menu3 {
         margin-inline-end: 80px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px) {
     .main-menu3 {
         margin-inline-end: 0
     }
 }

 .main-menu3.main-menu ul li a {
     font-size: 16px;
     color: var(--clr-common-white);
     text-transform: uppercase;
     display: inline-block;
     padding: 30px 0;
     line-height: 20px;
     font-weight: 500
 }

 .main-menu3.main-menu ul li.menu-item-has-children::after {
     color: var(--clr-common-white)
 }

 .header-main-right-header3 .border-btn-rounded {
     border-color: rgba(255, 255, 255, .2);
     height: 50px;
     line-height: 46px;
     padding: 0 29px;
     border-width: 2px;
     color: var(--clr-common-white)
 }

 .header-main-right-header3 .border-btn-rounded:hover {
     color: var(--clr-common-white);
     border-color: var(--clr-theme-2);
     background: var(--clr-theme-2)
 }

 .header-main-right-header3 .action-btn {
     border-width: 2px;
     border-color: rgba(255, 255, 255, .2);
     color: var(--clr-common-white)
 }

 .header-main-right-header3 .action-btn:hover {
     color: var(--clr-common-white);
     border-color: var(--clr-theme-2);
     background: var(--clr-theme-2)
 }

 .header-main-right-header3 .bar-icon span {
     background: var(--clr-common-white)
 }

 .style-4.header-top-area {
     /*position: absolute;*/
         background: #008037;
     top: 0;
     left: 0;
     right: 0;
     z-index: 100;
     padding: 7px 0
 }

 /*.style-4.header-top-area .container {
     max-width: 1450px
 }*/

 .style-4.header-top-area .header-top-inner {
     background: 0 0
 }

 .style-4.header-top-area .meta-item-icon {
     color: var(--clr-common-white)
 }

 .style-4.header-top-area .meta-item-text p {
     color: var(--clr-common-white)
 }

 .style-4.header-top-area .meta-item-text p a:hover {
     color: var(--clr-common-white)
 }

 .style-4 .header-top-left .meta-items {
     padding-inline-start: 0
 }

 .style-4 .header-top-left .meta-item:not(:first-child)::before {
     background: #5f6865
 }

 .style-4 .header-main-content-wrapper {
     background: #000;
     opacity: .3;
     border-radius: 10px;
     padding: 5px 30px;
     padding-inline-end: 20px
 }

 .header-main4 {
     /*position: absolute;*/
     top: 40px;
     left: 0;
     right: 0;
     z-index: 100
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .header-main4 {
         top: 15px
     }
 }

 .header-main4 .container {
     /*max-width: 1450px*/
 }

 .header-main4 .header-main-content-wrapper {
     /*background-color: rgba(0, 0, 0, .3);*/
     border-radius: 10px;
     padding: 5px 30px;
     padding-inline-end: 20px
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .header-main4 .header-main-content-wrapper {
         padding: 15px 20px
     }
 }

 .header-main4.sticky {
     position: fixed;
     top: 0;
     background: 0 0
 }

 .header-main4.sticky .header-main-content-wrapper {
     background: #fff;
     border-radius: 0 0 10px 10px
 }

/* .header-main-right-header4 .main-menu ul li a {
     color: var(--clr-common-white)
 }*/

 .header-main-right-header4 .main-menu ul li.menu-item-has-children::after {
     color: var(--clr-common-white)
 }

 .header-main-right-header4 .border-btn {
     border-color: #38534b;
     /*color: var(--clr-common-white);*/
     border-width: 2px
 }

 .header-main-right-header4 .border-btn:hover {
     border-color: var(--clr-theme-2);
     background: var(--clr-theme-2)
 }


 .main-menu4 {
     margin-inline-end: 100px
 }

 @media only screen and (min-width:992px) and (max-width:1199px) {
     .main-menu4 {
         margin-inline-end: 0
     }
 }

 .header-main5 {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     z-index: 100;
     overflow-x: clip
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .header-main5 {
         background: var(--clr-bg-1)
     }
 }

 .header-main5.sticky {
     position: fixed;
     background: var(--clr-bg-1)
 }

 .header-main5 .header-main-content-wrapper {
     background-color: transparent
 }

 .header5-logo {
     width: 120px;
     height: 120px;
     text-align: center;
     line-height: 120px;
     background: var(--clr-bg-1);
     border-radius: 0 0 10px 0
 }

 [dir=rtl] .header5-logo {
     border-radius: 0 0 0 10px
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .header5-logo {
         height: 80px;
         line-height: 80px
     }
 }

 .header5-logo img {
     width: 50px
 }

 .main-menu5 {
     margin-inline-end: 40px
 }

 .main-menu5.main-menu ul li a {
     color: var(--clr-common-white);
     padding: 50px 0
 }

 .main-menu5.main-menu ul li {
     margin: 0 27px
 }

 @media only screen and (min-width:992px) and (max-width:1199px) {
     .main-menu5.main-menu ul li {
         margin: 0 18px
     }
 }

 .main-menu5.main-menu ul li.menu-item-has-children::after {
     color: var(--clr-common-white)
 }

 .header-main-right-header5 {
     background: var(--clr-bg-1);
     border-radius: 0 0 0 10px;
     padding: 0 60px 0 35px;
     gap: 30px
 }

 [dir=rtl] .header-main-right-header5 {
     border-radius: 0 0 10px 0
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .header-main-right-header5 {
         padding: 0 35px
     }
 }

 .header-main-right-header5 .action-btn {
     border: 0;
     color: var(--clr-common-white);
     width: auto;
     height: auto;
     font-size: 18px
 }

 .header-main-right-header5 .side-toggle {
     color: var(--clr-common-white);
     color: var(--clr-common-white);
     font-size: 18px;
     transform: translateY(4px)
 }

 .cartmini__title {
     padding: 20px;
     border-bottom: 1px solid var(--clr-border-14);
     box-shadow: 0 0 10px 0 rgba(129, 129, 129, .2)
 }

 .cartmini__title h4 {
     font-size: 16px;
     text-transform: uppercase;
     font-weight: 600;
     margin-bottom: 0
 }

 .cartmini__close {
     position: absolute;
     top: 17px;
     right: 20px
 }

 .cartmini__close-btn {
     background: 0 0;
     color: var(--clr-common-heading);
     font-size: 22px
 }

 .cartmini__close-btn:hover {
     -webkit-transform: rotate(90deg);
     -moz-transform: rotate(90deg);
     -ms-transform: rotate(90deg);
     transform: rotate(90deg)
 }

 .cartmini__widget {
     overflow-y: scroll;
     height: 100%
 }

 .cartmini__inner ul li {
     position: relative;
     display: -webkit-box;
     display: -moz-box;
     display: -ms-flexbox;
     display: -webkit-flex;
     display: flex;
     padding: 20px;
     padding-inline-end: 35px;
     border-bottom: 1px solid rgba(129, 129, 129, .2);
     transition: background-color .3s
 }

 .cartmini__inner ul li:hover {
     background: var(--tp-gray)
 }

 .cartmini__thumb {
     background: var(--clr-border-18);
     margin-inline-end: 15px
 }

 .cartmini__thumb img {
     width: 70px;
     height: 90px
 }

 .cartmini__content h5 {
     font-size: 16px;
     margin-bottom: 12px;
     font-weight: 500
 }

 .cartmini__content h5 a:hover {
     color: var(--clr-theme-1)
 }

 .cartmini__del {
     position: absolute;
     top: 10px;
     right: 10px;
     width: 25px;
     height: 25px;
     line-height: 25px;
     text-align: center;
     color: var(--clr-common-heading);
     font-size: 12px;
     background: 0 0;
     -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
     border-radius: 50%
 }

 .cartmini__del:hover {
     background: var(--clr-border-4)
 }

 .cartmini__checkout {
     padding: 20px;
     padding-bottom: 85px;
     width: 100%;
     background: var(--clr-common-white)
 }

 .cartmini__checkout-title h4 {
     font-size: 18px;
     display: inline-block;
     font-weight: 600;
     margin-bottom: 0
 }

 .cartmini__checkout-title span {
     float: right;
     font-size: 20px;
     color: var(--clr-common-heading);
     font-weight: 600;
     color: var(--clr-theme-1)
 }

 .offset-widget .support-meta .support-number {
     color: var(--clr-theme-1)
 }

 .offset-widget .support-meta .support-number:hover {
     color: var(--clr-theme-2)
 }

 .offset-widget .footer-social span {
     color: var(--clr-theme-1)
 }

 .page-title-area {
     height: 300px;
     display: flex;
     align-items: center;
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
     position: relative;
     z-index: 9;
     margin-inline-start: auto
 }

 .page-title-area::after {
     background-image: -moz-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
     background-image: -webkit-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
     background-image: -ms-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
     opacity: .6;
     position: absolute;
     left: 0;
     top: 0;
     content: "";
     width: 100%;
     height: 100%;
     z-index: -1
 }

 [dir=rtl] .page-title-area::after {
     right: 0;
     left: auto
 }

 .page-title-wrapper {
     padding-bottom: 65px
 }

 .page-title-wrapper p {
     font-weight: 700;
     color: var(--clr-common-white);
     text-transform: uppercase;
     margin-bottom: 3px
 }

 .page-title {
     font-size: 70px;
     font-weight: 700;
     line-height: 1.1;
     text-transform: uppercase;
     color: var(--clr-common-white);
     margin-bottom: 0
 }

 @media only screen and (min-width:992px) and (max-width:1199px) {
     .page-title {
         font-size: 72px
     }
 }

 @media only screen and (min-width:768px) and (max-width:991px) {
     .page-title {
         font-size: 62px
     }
 }

 @media only screen and (min-width:576px) and (max-width:767px) {
     .page-title {
         font-size: 46px
     }
 }

 @media(max-width:575px) {
     .page-title {
         font-size: 32px
     }
 }

 .breadcrumb-menu li {
     position: relative
 }

 .breadcrumb-menu li span {
     font-size: 16px;
     font-weight: 700;
     color: var(--clr-common-white);
     text-transform: uppercase
 }

 .breadcrumb-menu li:not(:last-child):after {
     display: inline-block;
     color: var(--clr-common-white);
     content: "\f105";
     position: absolute;
     right: -14px;
     top: 0;
     font-family: "font awesome 5 pro";
     font-size: 14px
 }

 [dir=rtl] .breadcrumb-menu li:not(:last-child):after {
     left: -14px;
     right: auto
 }

 .breadcrumb-menu li:last-child:before {
     position: absolute;
     content: "";
     width: 100%;
     height: 2px;
     background: #789288;
     left: 0;
     bottom: 4px
 }

 [dir=rtl] .breadcrumb-menu li:last-child:before {
     right: 0;
     left: auto
 }

 .breadcrumb-menu ul {
     display: flex;
     justify-content: start;
     gap: 20px
 }

 .breadcrumb-wrapper {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     padding: 27px 0
 }

 [dir=rtl] .breadcrumb-wrapper {
     right: 0;
     left: auto
 }

 .breadcrumb-wrapper::before {
     position: absolute;
     content: "";
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     width: 100%;
     width: 100%;
     background: #0b3d2c;
     opacity: .9
 }

 [dir=rtl] .breadcrumb-wrapper::before {
     right: 0;
     left: auto
 }

 .banner-800 {
     min-height: 800px;
     position: relative
 }

 @media only screen and (min-width:768px) and (max-width:991px) {
     .banner-800 {
         min-height: 700px
     }
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .banner-800 {
         min-height: 600px
     }
 }

 @media(max-width:450px) {
     .banner-800 {
         min-height: 600px
     }
 }

 .banner-850 {
     min-height: 850px;
     position: relative
 }

 @media only screen and (min-width:768px) and (max-width:991px) {
     .banner-850 {
         min-height: 700px
     }
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .banner-850 {
         min-height: 700px
     }
 }

 @media(max-width:450px) {
     .banner-850 {
         min-height: 700px
     }
 }

 .banner-900 {
     min-height: 900px;
     position: relative
 }

 .banner-970 {
     min-height: 770px;
     position: relative
 }

 @media only screen and (min-width:768px) and (max-width:991px) {
     .banner-970 {
         min-height: 600px
     }
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .banner-970 {
         min-height: 500px
     }
 }

 @media(max-width:450px) {
     .banner-970 {
         min-height: 400px
     }
 }

 .single-banner {
     z-index: 5;
     position: relative
 }

 .banner-bg {
     position: absolute;
     width: 100%;
     height: 100%;
     left: 0;
     top: 0;
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center center;
     z-index: -1;
     background-color: var(--clr-common-white);
     transform: scale(1);
     -webkit-transition: all 8s linear 0s;
     -moz-transition: all 8s linear 0s;
     -o-transition: all 8s linear 0s;
     transition: all 8s linear 0s
 }

 .swiper-slide-active .banner-bg {
     -webkit-transform: scale(1.12);
     -moz-transform: scale(1.12);
     transform: scale(1.12)
 }

 .banner-meta-text {
     margin-bottom: 5px
 }

 .banner-meta-text span {
     font-size: 16px;
     font-weight: 700;
     text-transform: uppercase
 }

 .banner-title {
     font-size: 100px;
     font-weight: 700;
     line-height: 1.1;
     margin-bottom: 40px;
     text-transform: uppercase
 }

 @media only screen and (min-width:1200px) and (max-width:1399px) {
     .banner-title {
         font-size: 90px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px) {
     .banner-title {
         font-size: 80px
     }
 }

 @media only screen and (min-width:768px) and (max-width:991px) {
     .banner-title {
         font-size: 60px
     }
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .banner-title {
         font-size: 48px
     }
 }

 @media(max-width:450px) {
     .banner-title {
         font-size: 40px
     }
 }

 .banner-btn {
     display: flex;
     gap: 30px;
     flex-wrap: wrap;
     align-items: center
 }

 .banner-area1 {
     padding-inline-start: 120px
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .banner-area1 {
         padding-inline-start: 0
     }
 }

 @media(min-width:1601px) {
     .single-banner-1 .container {
         transform: translateX(-60px)
     }
 }

 .banner-content1 {
     padding-bottom: 60px
 }

 .banner-content1 .banner-meta-text span {
     color: var(--clr-common-white)
 }

 .banner-content1 .banner-title {
     color: var(--clr-common-white)
 }

 .banner-content1 .fill-btn-rounded {
     background: var(--clr-theme-2);
     border-color: var(--clr-theme-2)
 }

 .banner-content1 .fill-btn-rounded:hover {
     color: var(--clr-theme-1);
     border-color: var(--clr-common-white);
     background: var(--clr-common-white)
 }

 .banner-content1 .border-btn-rounded {
     border-color: #575d4d;
     color: var(--clr-common-white)
 }

 .banner-content1 .border-btn-rounded:hover {
     color: var(--clr-theme-1);
     border-color: var(--clr-common-white);
     background: var(--clr-common-white)
 }

 .banner-content1 .border-btn-rounded:before,
 .banner-content1 .border-btn-rounded:after {
     background: var(--clr-common-white)
 }

 .single-banner-1::after {
     background-image: -moz-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
     background-image: -webkit-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
     background-image: -ms-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     content: "";
     position: absolute;
     opacity: .6;
     z-index: -1
 }

 .banner-meta-link {
     position: absolute;
     left: 120px;
     bottom: 0;
     padding: 20px 40px;
     height: 120px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     transform: rotate(-90deg);
     transform-origin: bottom left
 }

 [dir=rtl] .banner-meta-link {
     transform: rotate(90deg);
     transform-origin: bottom right;
     right: 120px;
     left: auto
 }

 .banner-meta-link h4 {
     font-size: 18px;
     margin-bottom: 2px
 }

 .banner-meta-link p {
     font-size: 14px;
     margin-bottom: 0
 }

 .slider-pagination.slider1-pagination {
     position: absolute;
     left: 60px;
     top: 50%;
     display: flex;
     flex-direction: column;
     width: inherit;
     z-index: 10;
     transform: translate(-50%, -50%);
     height: 100%;
     justify-content: center;
     gap: 10px;
     margin-top: -60px
 }

 [dir=rtl]
.slider-pagination.slider1-pagination {
    right: 60px;
    left: auto
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .slider-pagination.slider1-pagination {
        display: none
    }
}

.slider-pagination.slider1-pagination .swiper-pagination-bullet {
    width: 4px;
    height: 24px;
    border-radius: 2px;
    background: #e7e7e7;
    opacity: 1
}

.slider-pagination.slider1-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    height: 34px;
    background: var(--clr-bg-1)
}

.banner-bg2::after {
    position: absolute;
    content: "";
    width: 85%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1
}

[dir=rtl] .banner-bg2::after {
    right: 0;
    background: linear-gradient(270deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)
}

.banner-content2 {
    padding-top: 80px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .banner-content2 {
        padding-top: 0
    }
}

.banner-content2 .banner-meta-text span {
    color: var(--clr-theme-2)
}

.banner-content2 .banner-btn {
    gap: 40px;
    row-gap: 10px
}

.banner-content2 .banner-title {
    margin-bottom: 30px
}

.banner-content2 .fill-btn-rounded {
    background: var(--clr-theme-2);
    border-color: var(--clr-theme-2)
}

.banner-content2 .fill-btn-rounded:hover {
    color: var(--clr-theme-2);
    background: var(--clr-common-white);
    border-color: var(--clr-common-white)
}

.banner-text {
    max-width: 570px;
    padding: 19px 28px;
    background: var(--clr-common-white);
    border-radius: 0 10px 10px 0;
    border-left: 2px solid var(--clr-theme-1);
    margin-bottom: 30px
}

[dir=rtl] .banner-text {
    border-radius: 10px 0 0 10px;
    border-right: 2px solid var(--clr-theme-1);
    border-left: 0
}

.banner-text p {
    font-size: 18px;
    font-weight: 500;
    color: var(--clr-theme-1);
    line-height: 28px;
    margin-bottom: 0
}

.banner-meta-review {
    display: flex;
    gap: 5px;
    align-items: center
}

.banner-meta-review .meta-review-text {
    font-size: 14px;
    color: var(--clr-theme-2);
    padding-top: 10px
}

.banner-meta-review .meta-review-text span {
    font-size: 30px;
    font-weight: 700;
    color: var(--clr-theme-1);
    display: block
}

.banner-area2 {
    margin-top: -80px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .banner-area2 {
        margin-top: 0
    }
}

.banner-bg3::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #022a1c;
    opacity: .4;
    z-index: -1
}

.banner-content3 {
    text-align: center;
    position: relative
}

.banner-content3 .banner-meta-text {
    margin-bottom: 10px
}

.banner-content3 .banner-meta-text span {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-common-white);
    height: 30px;
    background: var(--clr-bg-1);
    line-height: 30px;
    display: inline-block;
    padding: 0 20px 0 32px;
    border-radius: 15px;
    position: relative
}

.banner-content3 .banner-meta-text span:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: var(--clr-common-white);
    border-radius: 50%;
    left: 20px;
    top: 50%;
    transform: translateY(-50%)
}

.banner-content3 .banner-title {
    color: var(--clr-common-white);
    margin-bottom: 30px
}

.banner-content3 .banner-btn {
    justify-content: center
}

.banner-content3 .fill-btn-rounded {
    background: var(--clr-theme-2);
    border-color: var(--clr-theme-2)
}

.banner-content3 .fill-btn-rounded:hover {
    color: var(--clr-theme-2);
    background: var(--clr-common-white);
    border-color: var(--clr-common-white)
}

.banner-content3 .play-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: var(--clr-theme-1)
}

.banner-content3 .play-btn:hover {
    color: var(--clr-common-white);
    background: var(--clr-theme-2)
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .banner-content3.banner-plant-shape::before {
        display: none
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .banner-content3.banner-plant-shape::after {
        display: none
    }
}

.footer-plant-shape {
    position: relative
}

.footer-plant-shape:before {
    position: absolute;
    content: url(../img/shape/plant-shape-big.png);
    bottom: -137.5px;
    left: -8px;
    z-index: -1;
    margin-left: -228px;
    transform-origin: bottom;
    animation: skew3deg 5s linear infinite
}

.footer-plant-shape:after {
    position: absolute;
    content: url(../img/shape/plant-shape-big-rotated.png);
    bottom: -137.5px;
    right: -8px;
    z-index: -1;
    margin-right: -228px;
    transform-origin: bottom;
    animation: skew3deg 5s linear infinite 1s
}

.banner-bg4::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:-webkit-radial-gradient(50% 50%, circle farthest-side, rgba(11, 61, 44, 0.6) 0%, rgb(11 61 44 / 40%) 100%);
    opacity: 1;
    z-index: -1
}

.banner-content4 {
    text-align: center;
    position: relative
}

.banner-content4 .banner-meta-text {
    margin-bottom: 43px
}

.banner-content4 .banner-meta-text span {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-common-white);
    font-family: poppins, sans-serif
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px),
(max-width:450px) {
    .banner-content4 .banner-meta-text span {
        font-size: 16px
    }
}

.banner-content4 .banner-title {
    color: var(--clr-common-white);
    margin-bottom: 16px;
    font-size: 40px
}

.banner-content4 .banner-title span {
    font-size: 100px;
    display: block;
    margin-top: 2px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px),
(max-width:450px) {
    .banner-content4 .banner-title span {
        font-size: 30px
    }
    .banner-title {
    font-size: 30px !important;
}
.pb-60 {
    padding-bottom: 30px;
}
.banner-content4 .banner-meta-text {
    margin-bottom: 10px;
}
.banner-content4 .border-btn
{
    line-height: 40px!important;
    height: 45px!important;
        padding: 0 25px!important;
}
}

.banner-content4 .banner-btn {
    justify-content: center
}

.banner-content4 .fill-btn {
    background: var(--clr-theme-2);
    border-color: var(--clr-theme-2);
    border-radius: 6px
}

.banner-content4 .fill-btn:hover {
    color: var(--clr-theme-2);
    background: var(--clr-common-white);
    border-color: var(--clr-common-white)
}

.banner-content4 .border-btn {
    height: 60px;
    border-color: var(--clr-common-white);
    color: var(--clr-common-white);
    line-height: 58px;
    border-radius: 6px;
    border-width: 2px
}

.banner-content4 .border-btn:hover,
.banner-content4 .border-btn:focus {
    color: var(--clr-theme-2);
    background: var(--clr-common-white);
    border-color: var(--clr-common-white)
}

.banner-content4 .border-btn:before,
.banner-content4 .border-btn:after {
    background: var(--clr-common-white)
}

.banner-bg5 {
    background: #f8f5f0
}

.banner-5-support {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: var(--clr-bg-1);
    border-radius: 0 10px 0 0;
    padding: 24px 40px
}

[dir=rtl] .banner-5-support {
    border-radius: 10px 0 0 0;
    right: 0;
    left: auto
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .banner-5-support {
        padding: 14px 30px
    }
}

@media(max-width:575px) {
    .banner-5-support {
        display: none
    }
}

.banner-5-support .support-meta .irc-item-content p {
    margin-bottom: 0;
    font-size: 16px;
    color: #94b0a6;
    text-transform: uppercase;
    font-weight: 700
}

.banner-5-support .support-mail {
    font-size: 24px;
    font-weight: 700;
    color: var(--clr-common-white);
    text-transform: uppercase
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .banner-5-support .support-mail {
        font-size: 20px
    }
}

.banner-5-support .support-meta .irc-item-icon {
    width: auto;
    height: auto;
    line-height: 1;
    background: 0 0;
    font-size: 40px
}

.banner-5-support .support-meta {
    gap: 15px
}

.slider-5-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    gap: 10px
}

[dir=rtl] .slider-5-nav {
    left: 0;
    right: auto
}

.slider-5-nav-btn {
    font-size: 26px;
    color: var(--clr-common-white);
    background: var(--clr-bg-1);
    height: 100px;
    width: 100px;
    text-align: center;
    line-height: 100px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .slider-5-nav-btn {
        height: 80px;
        width: 80px;
        line-height: 80px
    }
}

.slider-5-nav-btn:hover {
    background: var(--clr-theme-2)
}

.slider-button-prev.slider-5-nav-btn {
    border-radius: 10px 10px 0 0
}

.slider-button-next.slider-5-nav-btn {
    border-radius: 10px 0 0 0
}

[dir=rtl] .slider-button-next.slider-5-nav-btn {
    border-radius: 0 10px 0 0
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .banner-content5 {
        margin-bottom: 200px
    }
}

.banner-content5 .banner-meta-text {
    margin-bottom: 0
}

.banner-content5 .banner-meta-text span {
    color: var(--clr-theme-2)
}

.banner-content5 .banner-title {
    margin-bottom: 30px
}

.banner-content5 .fill-btn:hover {
    background: var(--clr-theme-2);
    border-color: var(--clr-theme-2);
    color: var(--clr-theme-2)
}

.banner-content5 .banner-shop-btn {
    background: var(--clr-theme-2);
    border-color: var(--clr-theme-2)
}

.banner-content5 .banner-shop-btn:hover {
    background: var(--clr-bg-1);
    border-color: var(--clr-theme-1);
    color: var(--clr-theme-1)
}

.banner-5-img {
    position: relative;
    z-index: -1
}

.banner-5-img .pro-img {
    position: absolute;
    transform: translateY(-50%);
    right: 55px;
    top: 55px;
    opacity: 0;
    transition: .7s
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .banner-5-img .pro-img {
        right: -50px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .banner-5-img .pro-img {
        right: -120px
    }
}

@media(max-width:450px) {
    .banner-5-img .pro-img {
        right: -55px
    }
}

.banner-5-img .round-circle-1 {
    width: 525px;
    height: 525px;
    background: var(--clr-common-white);
    position: absolute;
    content: "";
    border-radius: 50%;
    top: -25px;
    right: 25px;
    transform: translateY(-50%);
    z-index: -1
}

.banner-5-img .round-circle-2 {
    width: 60px;
    height: 60px;
    position: absolute;
    content: "";
    background: var(--clr-bg-1);
    border-radius: 50px;
    transform: translateY(-50%);
    top: 195px;
    right: 525px
}

.swiper-slide-active .banner-5-img .pro-img {
    opacity: 1
}

.about-thumb {
    max-width: 510px;
    margin-inline-start: 70px;
    position: relative;
    border-radius: 10px;
    padding-bottom: 30px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about-thumb {
        margin-bottom: 60px
    }
}

.about-thumb img {
    border-radius: 10px;
    width: 100%
}

.about-thumb-meta {
    width: 300px;
    height: 300px;
    background: var(--clr-bg-1);
    position: absolute;
    border-radius: 10px;
    padding: 23px 30px;
    bottom: 0;
    left: -70px;
    right: -70px;
    transform: rotate(-90deg);
    z-index: -1
}

.about-thumb-meta p {
    margin-bottom: 0;
    font-weight: 700;
    color: var(--clr-common-white);
    text-transform: uppercase
}

[dir=rtl] .about-thumb-meta {
    transform: rotate(90deg)
}

.about-content p {
    margin-inline-end: 15px
}

.clients-area2 {
    background: var(--clr-theme-3);
    padding: 81px 0
}

.clients-container-wrapped {
    background: var(--clr-common-white);
    border-radius: 10px;
    padding: 40px 50px;
    box-shadow: -16px 0 32px 0 rgba(0, 0, 0, .06);
    margin-top: -80px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .clients-container-wrapped {
        padding: 50px 30px
    }
}

.style-2.clients-container-wrapped {
    margin-bottom: -80px
}

.clients-area {
    position: relative;
    z-index: 6
}

.client-single {
    text-align: center
}

.client-single a {
    background: 0 0;
    display: inline-block;
    border-radius: 5px;
    padding: 10px
}

.client-single a:hover {
    background: #f4f7f7
}

.client-single img {
    opacity: .6;
    transition: .3s
}

.client-single img:hover {
    opacity: 1
}

.foundation-area {
    position: relative;
    z-index: 2
}

.foundation-area-bg {
    background: var(--clr-theme-3)
}

.foundation-img {
    border-radius: 10px;
    overflow: hidden
}

.foundation-img:hover img {
    transform: scale(1.03)
}

.foundation-img img {
    width: 100%
}

.foundation-content {
    max-width: 565px;
    margin-inline-start: auto
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .foundation-content {
        margin-inline-start: 0
    }
}

.founder-info-meta {
    display: flex;
    gap: 20px;
    align-items: center
}

.founder-info-meta .founder-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden
}

.founder-img img {
    width: 100%
}

.founder-desciption .designation {
    font-size: 16px;
    color: var(--clr-theme-2);
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    line-height: 1
}

.founder-desciption .founder-name {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 0
}

@media(max-width:450px) {
    .founder-desciption .founder-name {
        font-size: 20px
    }
}

.founder-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.founder-meta .fill-btn-rounded {
    background: var(--clr-theme-2);
    border-color: var(--clr-theme-2)
}

.founder-meta .fill-btn-rounded:hover {
    background: var(--clr-common-white);
    color: var(--clr-theme-2)
}

.foundation-bg-shape {
    position: absolute;
    bottom: 0;
    z-index: -1;
    opacity: .2;
    width: 100%
}

.foundation-bg-shape img {
    filter: invert(87%) sepia(25%) saturate(35%) hue-rotate(359deg) brightness(105%) contrast(90%);
    width: 100%
}

.style-2.foundation-content {
    max-width: 565px;
    margin-inline-start: auto;
    margin-inline-end: 30px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-2.foundation-content {
        margin-inline-start: 0;
        margin-inline-end: 0
    }
}

.style-2.foundation-content .founder-meta .fill-btn-rounded {
    border-color: #ebebeb;
    background: var(--clr-common-white);
    color: var(--clr-theme-1);
    border-radius: 6px;
    border-width: 2px
}

.style-2.foundation-content .founder-meta .fill-btn-rounded:hover {
    background: var(--clr-theme-2);
    border-color: var(--clr-theme-2);
    color: var(--clr-common-white)
}

.style-2.foundation-content .founder-meta .fill-btn-rounded::before,
.style-2.foundation-content .founder-meta .fill-btn-rounded::after {
    background: var(--clr-theme-2)
}

.style-2.foundation-img {
    max-width: 620px
}

.style-2.foundation-img:hover img {
    transform: scale(1)
}

.style-2.foundation-img .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px
}

.about-thumb-group {
    max-width: 625px;
    padding-top: 94%;
    margin-inline-start: -45px;
    position: relative
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .about-thumb-group {
        max-width: 600px;
        padding-top: 80%
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about-thumb-group {
        margin-inline-start: 0
    }
}

.about-group-thumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: inherit;
    border-radius: 6px
}

.about-group-thumb:hover {
    transform: scale(1.05);
    opacity: 1
}

.about-group-thumb1 {
    width: 38%;
    top: 7.5%;
    opacity: .5
}

.about-group-thumb2 {
    left: 44.8%;
    right: 44.8%;
    top: 0;
    width: 24%
}

.about-group-thumb3 {
    left: 82.4%;
    right: 82.4%;
    top: 13.4%;
    width: 12.8%
}

.about-group-thumb4 {
    top: 23.5%;
    left: 16.8%;
    right: 16.8%;
    width: 68.8%
}

.about-group-thumb5 {
    left: 8%;
    right: 8%;
    top: auto;
    width: 22.4%;
    bottom: .84%
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about-group-thumb5 {
        left: 0;
        right: 0
    }
}

.about-group-thumb6 {
    top: auto;
    right: 0;
    left: auto;
    width: 24%;
    bottom: 0
}

[dir=rtl] .about-group-thumb6 {
    left: 0;
    right: auto
}

.about-group-thumb7 {
    top: 8.4%;
    left: 95.2%;
    right: 95.2%;
    width: 3.2%
}

.about-work-progress .bd-skill--content {
    padding-bottom: 20px
}

.about-work-progress .bd-skill--title {
    font-size: 16px;
    font-family: roboto, sans-serif
}

.about-work-progress .bd-skill--title__wrapper {
    margin-bottom: 24px
}

.about-work-progress .bd-skill--title__wrapper span {
    font-size: 16px;
    font-family: roboto, sans-serif;
    top: 2px;
    right: 0
}

[dir=rtl] .about-work-progress .bd-skill--title__wrapper span {
    left: 0;
    right: auto
}

.about-work-progress .bd-skill__wrapper .progress {
    height: 4px;
    border-radius: 0
}

.about-work-progress .bd-skill__wrapper .progress .progress-bar {
    background: var(--clr-bg-1);
    border-radius: 0
}

.about-work-progress .bd-skill__wrapper .progress .progress-bar span {
    height: 20px;
    width: 4px;
    transform: rotate(0deg);
    border-radius: 0;
    display: block;
    right: 0
}

[dir=rtl] .about-work-progress .bd-skill__wrapper .progress .progress-bar span {
    left: 0;
    right: auto
}

.about-content.style-2 {
    max-width: 575px
}

.about-content.style-2 .border-btn-rounded {
    border-color: #ebebeb
}

.about-content.style-2 .border-btn-rounded:hover {
    border-color: var(--clr-theme-1)
}

.about-tab-wrapper {
    background-color: #fff;
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .04);
    border-radius: 20px 20px;
    overflow: hidden;
    margin-top: -70px
}

.about-tab-nav .nav-tabs {
    border-bottom: 0
}

.about-tab-nav .nav-tabs .nav-link {
    font-size: 30px;
    font-weight: 700;
    color: var(--clr-common-white);
    text-transform: uppercase;
    background: var(--clr-theme-2);
    border: 1px solid var(--clr-theme-2);
    padding: 0 90px;
    position: relative;
    height: 140px;
    line-height: 140px;
    z-index: 2;
    border-radius: 0;
    width: 50%
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about-tab-nav .nav-tabs .nav-link {
        font-size: 24px;
        padding: 0 30px;
        height: 100px;
        line-height: 100px;
        width: 100%
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .about-tab-nav .nav-tabs .nav-link {
        font-size: 24px;
        padding: 0 30px;
        height: 100px;
        line-height: 100px;
        width: 50%
    }
}

.about-tab-nav .nav-tabs .nav-link.active {
    background: #022a1c;
    border-color: #022a1c
}

.about-tab-nav .nav-tabs .nav-link.active i {
    color: #073424
}

.about-tab-nav .nav-tabs .nav-link.active .tab-number {
    stroke: 2px #073424;
    -webkit-text-stroke-color: #073424
}

.about-tab-nav .nav-tabs .nav-link.active:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 11px;
    background: #073424;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

[dir=rtl] .about-tab-nav .nav-tabs .nav-link.active:before {
    right: 50%;
    left: auto
}

.about-tab-nav .nav-tabs .nav-link i {
    font-size: 120px;
    color: #348838;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    line-height: .7
}

[dir=rtl] .about-tab-nav .nav-tabs .nav-link i {
    left: 10px;
    right: auto
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about-tab-nav .nav-tabs .nav-link i {
        font-size: 80px
    }
}

.about-tab-nav .tab-number {
    font-size: 87px;
    font-weight: 700;
    color: transparent;
    stroke: 2px #348838;
    font-family: poppins, sans-serif;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #348838;
    line-height: .7;
    transition: .3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    left: 45px
}

[dir=rtl] .about-tab-nav .tab-number {
    right: 45px;
    left: auto
}

.about-service-wrapper {
    padding: 40px 100px 65px;
    position: relative;
    z-index: 2
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about-service-wrapper {
        padding: 40px 40px 65px
    }
}

@media(max-width:450px) {
    .about-service-wrapper {
        padding: 40px 20px 65px
    }
}

.about-service-wrapper .section-main-title {
    margin-inline-end: -50px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about-service-wrapper .section-main-title {
        margin-inline-end: 0
    }
}

.about-service-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1
}

.service-tab-content {
    max-width: 510px
}

.service-tab-img {
    max-width: 576px;
    margin-inline-start: -30px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .service-tab-img {
        margin-inline-start: 0
    }
}

.service-tab-img img {
    width: 100%
}

.service-tab-point {
    background: var(--clr-theme-2);
    position: relative;
    border-radius: 10px;
    display: flex;
    gap: 24px;
    padding: 23px 10px 23px 30px;
    z-index: 2;
    margin-top: 35px
}

@media(max-width:450px) {
    .service-tab-point {
        padding: 23px 10px 20px 21px;
        flex-direction: column
    }
}

.service-tab-point p {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-common-white);
    text-transform: uppercase;
    margin-bottom: 0
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .service-tab-point p {
        font-size: 16px
    }
}

.service-tab-point .backside-icon {
    position: absolute;
    right: 10px;
    bottom: -10px;
    font-size: 100px;
    color: #398a3d;
    line-height: .7;
    width: auto;
    height: auto;
    background: 0 0;
    z-index: -1
}

[dir=rtl] .service-tab-point .backside-icon {
    left: 10px;
    right: auto
}

.service-tab-point i {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: #fff;
    border-radius: 50%;
    color: var(--clr-theme-2);
    font-size: 20px;
    min-width: 50px
}

.style-3.clients-area {
    position: relative;
    overflow-x: clip
}

.style-3 .clients-bg-img {
    position: absolute;
    left: -45px;
    top: 60px;
    z-index: -1;
    width: 17.5%
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .style-3 .clients-bg-img {
        width: 22.5%
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .style-3 .clients-bg-img {
        width: 25.5%
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-3 .clients-bg-img {
        display: none
    }
}

.style-3 .clients-bg-img img {
    width: 100%
}

.circle-border-logo {
    text-align: center;
    margin-bottom: 30px
}

.single-strategy {
    border: 2px solid var(--clr-bg-1);
    border-radius: 10px;
    text-align: center;
    padding: 48px 15px 38px;
    position: relative
}

.single-strategy h4 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 48px
}

.single-strategy:hover .st-hover {
    transform: scale(1);
    opacity: 1;
    visibility: visible
}

.strategy-icon {
    width: 140px;
    height: 140px;
    line-height: 140px;
    background: var(--clr-bg-1);
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-bottom: 34px
}

.strategy-arrow {
    font-size: 24px;
    color: var(--clr-theme-1)
}

.st-hover {
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    top: -2px;
    left: -2px;
    background: var(--clr-bg-1);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(.8);
    transition: .5s;
    opacity: 0;
    visibility: hidden
}

.st-hover .st-h-content {
    flex-grow: 1;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center
}

.st-hover .st-h-content:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--clr-bg-1);
    opacity: .9;
    top: 0;
    left: 0;
    z-index: -1
}

.st-h-content {
    padding: 20px 45px
}

@media only screen and (min-width:992px) and (max-width:1199px),
(max-width:450px) {
    .st-h-content {
        padding: 20px
    }
}

.st-h-content p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.66;
    color: var(--clr-common-white)
}

.st-h-btn .fill-btn {
    width: 100%;
    border-radius: 0 0 10px 10px
}

.st-h-btn .fill-btn:before,
.st-h-btn .fill-btn:after {
    display: none
}

.video-area {
    position: relative;
    z-index: 5
}

.video-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--clr-bg-1);
    opacity: .9;
    z-index: -1;
    top: 0;
    left: 0
}

.video-content {
    text-align: center
}

.play-btn {
    width: 120px;
    height: 120px;
    text-align: center;
    line-height: 120px;
    background: var(--clr-common-white);
    display: inline-block;
    border-radius: 50%;
    color: var(--clr-theme-1)
}

.play-btn:hover {
    background: var(--clr-theme-2);
    color: var(--clr-common-white)
}

.style-5.video-area::before {
    display: none
}

.style-5 .video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden
}

.style-5 .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.history-chart {
    padding: 0 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .history-chart {
        padding: 0 0
    }
}

.history-chart>div {
    width: 50%
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .history-chart>div {
        width: 100%
    }
}

.history-chart>div:nth-child(2n+1).single-year-wrapper {
    transform: translateY(-50%)
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .history-chart>div:nth-child(2n+1).single-year-wrapper {
        transform: translateY(0%)
    }
}

.history-chart>div:nth-child(2n+1).single-year-wrapper::before {
    right: -1px;
    left: auto
}

[dir=rtl] .history-chart>

 div:nth-child(2n+1).single-year-wrapper::before {
     left: -1px;
     right: auto
 }

 .history-chart>div:nth-child(2n+1).single-year-wrapper::after {
     transform: translateY(-50%) rotate(180deg);
     right: 0;
     left: auto
 }

 [dir=rtl] .history-chart>div:nth-child(2n+1).single-year-wrapper::after {
     transform: translateY(-50%) rotate(0deg);
     left: 0;
     right: auto
 }

 .history-chart>div:nth-child(2n+1).single-year-wrapper:last-child {
     margin-bottom: -177.5px
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .history-chart>div:nth-child(2n+1).single-year-wrapper:last-child {
         margin-bottom: 0
     }
 }

 .history-chart>div:nth-child(2n+1) .single-year {
     margin-inline-end: auto;
     margin-inline-start: 0
 }

 @media(max-width:450px) {
     .history-chart>div:nth-child(2n+1) .single-year {
         margin-inline-end: 15px
     }
 }

 .history-chart>div:nth-child(2n+1) .history-thumb {
     margin-inline-start: auto
 }

 .history-chart>div:nth-child(2n+1) .history-year {
     left: 0;
     right: auto
 }

 [dir=rtl] .history-chart>div:nth-child(2n+1) .history-year {
     right: 0;
     left: auto
 }

 @media(max-width:450px) {
     .history-chart>div:nth-child(2n+1) .history-year {
         transform: rotate(-90deg) translateX(-100%);
         transform-origin: top left;
         top: 0
     }
 }

 .history-chart>div:nth-child(2n+1) .history-content-wrapper {
     justify-content: start
 }

 .single-year-wrapper {
     padding: 40px 0;
     position: relative
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .single-year-wrapper {
         border-top: 1px solid var(--clr-theme-1)
     }
 }

 .single-year-wrapper:hover .history-year {
     color: #d5d5d5
 }

 .single-year-wrapper::before {
     position: absolute;
     content: "";
     width: 1px;
     height: 100%;
     background: var(--clr-bg-1);
     left: 0;
     top: 0
 }

 [dir=rtl] .single-year-wrapper::before {
     right: 0;
     left: auto
 }

 .single-year-wrapper::after {
     position: absolute;
     content: url(../img/history/history-shape.png);
     top: 50%;
     left: 0;
     transform: translateY(-50%) rotate(0deg);
     max-height: 36px
 }

 [dir=rtl] .single-year-wrapper::after {
     transform: translateY(-50%) rotate(180deg);
     right: 0;
     left: auto
 }

 @media(max-width:500px) {
     .single-year-wrapper::after {
         display: none
     }
 }

 .single-year-wrapper.first-year {
     padding-top: 25px
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .single-year-wrapper.first-year {
         border-top: 0
     }
 }

 .single-year-wrapper:last-child {
     padding-bottom: 25px
 }

 .single-year {
     position: relative;
     max-width: 500px;
     margin-inline-start: auto
 }

 @media only screen and (min-width:1200px) and (max-width:1399px) {
     .single-year {
         max-width: 475px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .single-year {
         max-width: 400px
     }
     .style-1.single-counter .counter-text {
    font-size: 14px;
}
 }

 @media(max-width:450px) {
     .single-year {
         margin-inline-start: 15px
     }
 }

 .history-thumb {
     max-width: 220px;
     border-radius: 10px;
     position: relative
 }

 @media(max-width:575px) {
     .history-thumb {
         max-width: 100%
     }
 }

 .history-thumb img {
     width: 100%
 }

 .history-year {
     position: absolute;
     top: 0;
     right: 0;
     font-size: 100px;
     font-weight: 700;
     font-family: poppins, sans-serif;
     line-height: 80px;
     color: #f5f5f5;
     transition: all .5s
 }

 [dir=rtl] .history-year {
     left: 0;
     right: auto
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .history-year {
         font-size: 70px;
         line-height: 55px
     }
 }

 @media(max-width:450px) {
     .history-year {
         font-size: 50px;
         line-height: 45px;
         transform: rotate(-90deg);
         transform-origin: bottom right;
         top: -45px
     }
 }

 .history-title {
     font-size: 24px;
     text-transform: uppercase;
     margin-bottom: 12px
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .history-title {
         font-size: 20px
     }
 }

 .history-content-wrapper {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     display: flex;
     justify-content: end;
     align-items: center
 }

 @media(max-width:450px) {
     .history-content-wrapper {
         align-items: flex-end
     }
 }

 .history-content {
     max-width: 340px;
     background: var(--clr-common-white);
     border-radius: 10px;
     padding: 23px 30px;
     position: relative;
     box-shadow: 24.575px 17.207px 60px 0 rgba(0, 0, 0, .06)
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .history-content {
         max-width: 290px;
         padding: 23px 20px
     }
 }

 .history-content p {
     margin-bottom: 0
 }

 .services-area {
     position: relative
 }

 .services-title-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 530px;
     z-index: -1;
     overflow: hidden
 }

 [dir=rtl] .services-title-bg {
     right: 0;
     left: auto
 }

 .services-title-bg:before {
     position: absolute;
     content: "";
     width: 100%;
     height: 100%;
     background: var(--clr-bg-1);
     opacity: .9
 }

 .services-title-bg img {
     width: 100%;
     height: 100%;
     object-fit: cover
 }

 .services-wrapper .row>div {
     counter-increment: service-counter
 }

 .single-service-default .service-title {
     font-size: 24px;
     text-transform: uppercase;
     margin-bottom: 20px;
     position: relative;
     padding-bottom: 23px
 }

 @media only screen and (min-width:1200px) and (max-width:1399px),
 only screen and (min-width:768px) and (max-width:991px) {
     .single-service-default .service-title {
         font-size: 22px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 (max-width:450px) {
     .single-service-default .service-title {
         font-size: 20px
     }
 }

 .single-service-default .service-title:before {
     width: 40px;
     height: 2px;
     background: var(--clr-theme-2);
     position: absolute;
     content: "";
     bottom: 0;
     left: 0
 }

 [dir=rtl] .single-service-default .service-title:before {
     right: 0;
     left: auto
 }

 .services-wrapper .single-service {
     box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .06);
     border-radius: 6px;
     padding: 30px 35px;
     position: relative;
     overflow: hidden;
     z-index: 5;
     background: var(--clr-common-white)
 }

 @media only screen and (min-width:1200px) and (max-width:1399px),
 only screen and (min-width:768px) and (max-width:991px) {
     .single-service-default.single-service {
         padding: 30px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 (max-width:450px) {
     .single-service-default.single-service {
         padding: 20px
     }
 }

 .single-service-default.single-service:hover {
     background: var(--clr-theme-2);
     box-shadow: none;
     transform: translateY(-10px)
 }

 .single-service-default.single-service:hover::after {
     opacity: .1
 }

 .single-service-default.single-service:hover .service-icon {
     filter: grayscale(0%) opacity(1)
 }

 .single-service-default.single-service:hover .single-service-content p {
     color: #bfd8c1
 }

 .single-service-default.single-service:hover .service-number::before {
     -webkit-text-stroke-color: var(--clr-common-white)
 }

 .single-service-default.single-service:hover .service-title {
     color: var(--clr-common-white)
 }

 .single-service-default.single-service:hover .service-title::before {
     background: var(--clr-common-white)
 }

 .single-service-default.single-service:hover .text-btn {
     color: var(--clr-common-white)
 }

 .single-service-default.single-service::after {
     position: absolute;
     content: url(../img/shape/pattern-sm.png);
     bottom: 0;
     display: flex;
     justify-content: center;
     left: 0;
     right: 0;
     opacity: 0;
     z-index: -1
 }

 .single-service-default .single-service-content p {
     margin-bottom: 25px;
     transition: .3s
 }

 .single-service-default .service-icon {
     transition: 2s;
     z-index: -1
 }

 [dir=rtl] .single-service-default .service-icon {
     left: 10px;
     right: auto
 }


 @media only screen and (min-width:992px) and (max-width:1199px),
 (max-width:450px) {
     .single-service-default .service-icon {
         transform: scale(.6);
         transform-origin: top right
     }
 }

 .single-service-default .service-number {
     margin-bottom: 15px;
     display: inline-block
 }

 .single-service-default .service-number::before {
     content: counter(service-counter, decimal-leading-zero);
     font-size: 120px;
     font-weight: 700;
     color: transparent;
     stroke: 2px var(--clr-theme-1);
     font-family: poppins, sans-serif;
     -webkit-text-fill-color: transparent;
     -webkit-text-stroke-width: 2px;
     -webkit-text-stroke-color: var(--clr-theme-1);
     line-height: 1;
     transition: .3s
 }

 @media only screen and (min-width:1200px) and (max-width:1399px),
 only screen and (min-width:768px) and (max-width:991px) {
     .single-service-default .service-number::before {
         font-size: 100px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 (max-width:450px) {
     .single-service-default .service-number::before {
         font-size: 70px;
         -webkit-text-stroke-width: 1px
     }
 }

 .work-step-icon {
     width: 140px;
     height: 140px;
     text-align: center;
     line-height: 140px;
     margin: 0 auto;
     background: var(--clr-common-white);
     box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .08);
     border-radius: 50%;
     margin-bottom: 36px;
     position: relative
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .work-step-icon {
         margin-inline-start: 0
     }
 }

 .work-step-icon:after {
     position: absolute;
     content: "\f178";
     font-family: "font awesome 5 pro";
     font-size: 18px;
     color: var(--clr-common-white);
     width: 40px;
     height: 40px;
     background: var(--clr-theme-2);
     border-radius: 50%;
     z-index: 1;
     text-align: center;
     line-height: 40px;
     font-weight: 300;
     transform: rotate(-45deg);
     transition: .3s
 }

 .work-step:nth-child(2n) .work-step-icon::after {
     transform: rotate(45deg)
 }

 .work-step {
     text-align: center;
     padding: 0 10px;
     position: relative;
     z-index: 2
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .work-step {
         text-align: left
     }
     [dir=rtl] .work-step {
         text-align: right
     }
 }

 .work-step:hover .work-step-icon img {
     transform: translateY(-10px)
 }

 .work-step h4 {
     font-size: 20px;
     text-transform: uppercase;
     margin-bottom: 15px
 }

 .work-step p {
     margin-bottom: 0
 }

 .work-step:before {
     position: absolute;
     content: counter(work-counter, decimal-leading-zero);
     font-size: 120px;
     font-weight: 700;
     font-family: poppins, sans-serif;
     -webkit-text-fill-color: transparent;
     -webkit-text-stroke-width: 1px;
     -webkit-text-stroke-color: #eeeae3;
     bottom: 0;
     left: 0;
     right: 0;
     line-height: 1;
     z-index: -1
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 only screen and (min-width:768px) and (max-width:991px) {
     .work-step:before {
         font-size: 100px;
         bottom: 65px
     }
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .work-step:before {
         font-size: 100px;
         bottom: 0
     }
 }

 .work-step:last-child:after {
     display: none
 }

 .work-step:after {
     position: absolute;
     content: "";
     width: 1px;
     height: 74%;
     top: 0;
     bottom: 0;
     background-image: linear-gradient(#fff 0%, #dedede 20%, #dedede 80%, #fff 100%);
     right: -15px;
     margin: auto 0
 }

 [dir=rtl] .work-step:after {
     left: -15px;
     right: auto
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .work-step:after {
         display: none
     }
 }

 .working-steps {
     display: flex;
     gap: 30px;
     margin-bottom: 45px;
     align-items: flex-start;
     flex-wrap: wrap
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .working-steps {
         gap: 50px
     }
 }

 .working-steps>div {
     width: calc((100% - 60px)/3);
     counter-increment: work-counter
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .working-steps>div {
         width: calc((100% - 0px)/1)
     }
 }

 .service-details-main {
     padding-inline-end: 20px
 }

 .service-details-main .service-image {
     margin-bottom: 50px
 }

 .service-details-main h3 {
     font-size: 30px;
     text-transform: uppercase
 }

 .service-details-main p {
     font-size: 16px;
     line-height: 28px
 }

 .service-image {
     border-radius: 10px
 }

 .service-image img {
     width: 100%
 }

 .service-sub-image {
     display: flex;
     gap: 20px;
     margin-bottom: 60px
 }

 .service-sub-image img {
     border-radius: 10px;
     width: calc((100% - 20px)/2)
 }

 .service-features {
     background: var(--clr-bg-1);
     border-radius: 10px;
     padding: 45px 50px 50px
 }

 @media(max-width:450px) {
     .service-features {
         padding: 35px 20px 40px
     }
 }

 .service-features h4 {
     font-size: 24px;
     color: var(--clr-common-white);
     text-transform: uppercase;
     margin-bottom: 20px
 }

 .service-feature-list {
     display: flex;
     flex-wrap: wrap;
     column-gap: 30px;
     row-gap: 20px
 }

 .service-feature-list span {
     font-size: 14px;
     font-weight: 700;
     color: var(--clr-theme-1);
     background: var(--clr-common-white);
     height: 50px;
     line-height: 50px;
     padding: 0 20px;
     border-radius: 10px;
     display: inline-block;
     position: relative;
     width: calc((100% - 60px)/3);
     white-space: nowrap
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 only screen and (min-width:768px) and (max-width:991px) {
     .service-feature-list span {
         width: calc((100% - 30px)/2)
     }
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .service-feature-list span {
         width: calc((100% - 0px)/1)
     }
 }

 .service-feature-list span:after {
     position: absolute;
     content: "\f00c";
     font-family: "font awesome 5 pro";
     font-size: 14px;
     font-weight: 300;
     color: #aab3bd;
     right: 20px
 }

 [dir=rtl] .service-feature-list span:after {
     left: 20px;
     right: auto
 }

 .sidebar-widget-title {
     font-size: 20px;
     text-transform: uppercase;
     position: relative;
     line-height: 1;
     margin-bottom: 30px;
     padding-bottom: 16px
 }

 .sidebar-widget-title:before {
     position: absolute;
     content: "";
     width: 100%;
     height: 1px;
     background: #f2f2f2;
     left: 0;
     bottom: 0
 }

 [dir=rtl] .sidebar-widget-title:before {
     right: 0;
     left: auto
 }

 .sidebar-widget-title::after {
     position: absolute;
     content: "";
     width: 60px;
     height: 1px;
     background: var(--clr-bg-1);
     left: 0;
     bottom: 0
 }

 [dir=rtl] .sidebar-widget-title::after {
     right: 0;
     left: auto
 }

 .sidebar-service .sidebar-widget-title {
     margin-bottom: 20px
 }

 .sidebar-service-list a {
     font-size: 14px;
     color: var(--clr-theme-1);
     text-transform: uppercase;
     font-weight: 700;
     font-family: poppins, sans-serif;
     position: relative;
     padding-inline-start: 34px;
     display: inline-flex;
     align-items: center
 }

 .sidebar-service-list a:before {
     position: absolute;
     content: "\f178";
     left: 0;
     font-family: "font awesome 5 pro";
     font-weight: 400;
     color: #afafaf;
     transition: .3s
 }

 [dir=rtl] .sidebar-service-list a:before {
     right: 0;
     left: auto
 }

 .sidebar-service-list a:hover {
     color: var(--clr-theme-2)
 }

 .sidebar-service-list a:hover:before {
     color: var(--clr-theme-2);
     transform: translateX(7px)
 }

 [dir=rtl] .sidebar-service-list a:hover:before {
     transform: translateX(-7px)
 }

 .sidebar-service-list li {
     border-bottom: 1px solid #f2f2f2;
     padding-bottom: 14px;
     margin-bottom: 14px
 }

 .sidebar-service-list li:last-child {
     border-bottom: 0;
     padding-bottom: 0;
     margin-bottom: 0
 }

 .sidebar-materials-list a {
     height: 60px;
     display: inline-block;
     border: 2px solid var(--clr-bg-1);
     border-radius: 10px;
     padding: 0 25px;
     line-height: 56px;
     width: 100%;
     color: var(--clr-theme-1);
     font-size: 14px;
     font-weight: 700;
     text-transform: uppercase;
     font-family: poppins, sans-serif;
     position: relative
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 (max-width:450px) {
     .sidebar-materials-list a {
         padding: 0 13px;
         padding-inline-end: 13px;
         padding-inline-end: 45px;
         overflow: hidden;
         text-overflow: ellipsis;
         white-space: nowrap
     }
 }

 .sidebar-materials-list a i {
     margin-inline-end: 15px;
     font-size: 18px
 }

 .sidebar-materials-list a:after {
     position: absolute;
     content: "\f019";
     font-family: "font awesome 5 pro";
     font-weight: 300;
     font-size: 16px;
     color: #c6c6c6;
     right: 20px
 }

 [dir=rtl] .sidebar-materials-list a:after {
     left: 20px;
     right: auto
 }

 .sidebar-materials-list a:hover {
     background: var(--clr-bg-1);
     color: var(--clr-common-white)
 }

 .sidebar-materials-list a:hover:after {
     color: var(--clr-theme-2)
 }

 .sidebar-materials-list ul {
     display: flex;
     flex-direction: column;
     gap: 10px
 }

 .sidebar-adv {
     border-radius: 10px;
     overflow: hidden
 }

 .sidebar-adv img {
     width: 100%
 }

 .services-inner-2 {
     padding-top: 0
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .services-inner-2 {
         padding-top: 20px
     }
 }

 .style-2.single-service {
     padding: 50px 50px 0
 }

 @media only screen and (min-width:1400px) and (max-width:1600px) {
     .style-2.single-service {
         padding: 40px 40px 0
     }
 }

 @media only screen and (min-width:1200px) and (max-width:1399px) {
     .style-2.single-service {
         padding: 35px 35px 0
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px) {
     .style-2.single-service {
         padding: 30px 20px 0
     }
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .style-2.single-service {
         padding: 0 20px
     }
 }

 .style-2.single-service:hover .service-img img {
     transform: scale(1)
 }

 .style-2.single-service:hover .service-img:before {
     height: 100%
 }

 .style-2 .service-img {
     border-radius: 10px;
     overflow: hidden;
     position: relative
 }

 .style-2 .service-img::before {
     position: absolute;
     content: "";
     width: 100%;
     height: 0%;
     bottom: 0;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(11, 61, 44, 0.7) 100%);
     z-index: 1
 }

 .style-2 .service-img img {
     width: 100%
 }

 .style-2 .single-service-content {
     position: relative;
     text-align: center;
     padding: 20px 0 10px
 }
 .style-2 .service-icon img{
 	width: 100%;
 }

 .style-2 .service-icon {
     background: var(--clr-common-white);
     border-radius: 50px;
     text-align: center;
     line-height: 115px;
     font-size: 50px;
     color: var(--clr-theme-2);
     box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .04);
     z-index: 2
 }

 .style-2 .service-title {
     margin-bottom: 20px;
     text-align: left;
     font-size: 20px;
     text-transform: uppercase;
     margin-bottom: 10px
 }

 .style-2 .service-title a:hover {
     color: var(--clr-theme-2)
 }

 .style-2 .single-service-content p {
     margin-bottom: 0;
     text-align: left;
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .style-2 .single-service-content:before {
         font-size: 100px
     }
 }

 .services-area-2 {
     background: var(--clr-theme-3);
     padding-top: 120px
 }

 @media(min-width:1601px) {
     .services-area-2 {
         padding-top: 0
     }
 }

 .services-wrapper-2 {
     background: var(--clr-common-white);
     border-radius: 10px;
     z-index: 2;
     position: relative;
     overflow: hidden
 }

 @media(min-width:1601px) {
     .services-wrapper-2 {
         transform: translateY(-60px);
         margin-bottom: -60px
     }
 }

 .services-action-wrapper {
     background: var(--clr-bg-1);
     padding: 40px 60px;
     display: flex;
     align-items: center;
     gap: 20px;
     justify-content: space-between;
     position: relative;
     z-index: 2;
     overflow: hidden
 }

 @media only screen and (min-width:1200px) and (max-width:1399px) {
     .services-action-wrapper {
         padding: 40px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px) {
     .services-action-wrapper {
         padding: 30px
     }
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px),
 (max-width:450px) {
     .services-action-wrapper {
         padding: 30px 20px;
         align-items: start;
         flex-direction: column
     }
 }

 .services-action-wrapper h3 {
     font-size: 30px;
     line-height: 1.33;
     margin-bottom: 0;
     color: var(--clr-common-white);
     text-transform: uppercase;
     max-width: 850px
 }

 @media only screen and (min-width:992px) and (max-width:1199px) {
     .services-action-wrapper h3 {
         font-size: 28px
     }
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .services-action-wrapper h3 {
         font-size: 26px
     }
 }

 @media(max-width:450px) {
     .services-action-wrapper h3 {
         font-size: 22px
     }
 }

 .services-action-wrapper .fill-btn-rounded {
     color: var(--clr-theme-1);
     background: var(--clr-common-white);
     border-color: var(--clr-common-white);
     min-width: 200px
 }

 .services-action-wrapper .fill-btn-rounded:hover {
     color: var(--clr-common-white);
     background: var(--clr-bg-1);
     border-color: var(--clr-theme-2)
 }

 .services-action-wrapper .fill-btn-rounded::before,
 .services-action-wrapper .fill-btn-rounded::after {
     background: var(--clr-theme-2)
 }

 .style-2.services-action-wrapper {
     background: var(--clr-common-white);
     border-top: 1px solid #e8e8e8;
     margin-top: 60px;
     padding: 50px 0
 }

 .style-2.services-action-wrapper h3 {
     color: var(--clr-theme-1);
     display: flex;
     align-items: center;
     gap: 25px
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .style-2.services-action-wrapper h3 {
         flex-direction: column;
         align-items: start
     }
 }

 .style-2.services-action-wrapper h3 i {
     color: var(--clr-theme-2);
     font-size: 60px;
     line-height: 1;
     padding-top: 10px
 }

 .style-2.services-action-wrapper .fill-btn-rounded {
     color: var(--clr-common-white);
     background: var(--clr-bg-1);
     border-color: var(--clr-theme-1)
 }

 .style-2.services-action-wrapper .fill-btn-rounded:hover,
 .style-2.services-action-wrapper .fill-btn-rounded:focus {
     color: var(--clr-theme-1);
     border-color: var(--clr-theme-1);
     background: var(--clr-common-white)
 }

 .style-2.services-action-wrapper .fill-btn-rounded:before,
 .style-2.services-action-wrapper .fill-btn-rounded:after {
     background: var(--clr-common-white)
 }

 .style-2 .service-action-bg-shape {
     display: none
 }

 .service-action-bg-shape {
     position: absolute;
     bottom: -60px;
     z-index: -1;
     left: 0;
     right: 0;
     text-align: center
 }

 .working-steps-2 {
     gap: 30px;
     row-gap: 50px
 }

 .working-steps-2 .work-step:nth-child(2n) {
     margin-top: 40px
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px),
 (max-width:450px) {
     .working-steps-2 .work-step:nth-child(2n) {
         margin-top: 0
     }
 }

 .working-steps-2>div {
     width: calc((100% - 90px)/4)
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .working-steps-2>div {
         width: calc((100% - 30px)/2)
     }
 }

 @media(max-width:450px) {
     .working-steps-2>div {
         width: calc((45% - 0px)/1)
     }
     .work-step-icon
     {
        width: 90px;
    height: 90px;
    text-align: center;
    line-height: 90px;
     }
     .work-step-icon img {
    height: 50px;
}
.pb-55 {
    padding-bottom: 35px;
}
.pt-95 {
    padding-top: 45px;
}
.working-steps
{    gap: 20px;
    margin-bottom: 0px;
}
.pb-65 {
    padding-bottom: 35px;
}
.work-step h4 {
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 0;
}
 }

 .work-step-2::before {
     -webkit-text-stroke-color: #ebe6de
 }

 .work-step-2::after {
     display: none
 }

 .work-step-2:hover::before {
     -webkit-text-stroke-color: #cfd5d3
 }

 .process-flow-border:before {
     position: absolute;
     top: 0;
     left: 75%;
     content: url(../img/shape/process-flow-border1.png)
 }

 [dir=rtl] .process-flow-border:before {
     left: auto;
     right: 75%;
     transform: rotate(-6deg)
 }

 @media only screen and (min-width:1200px) and (max-width:1399px) {
     .process-flow-border:before {
         transform: scale(.9);
         transform-origin: left
     }
     [dir=rtl] .process-flow-border:before {
         transform: scale(.9) rotate(-6deg);
         transform-origin: right
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px) {
     .process-flow-border:before {
         transform: scale(.75);
         transform-origin: left
     }
     [dir=rtl] .process-flow-border:before {
         transform: scale(.75) rotate(-6deg);
         transform-origin: right
     }
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px),
 (max-width:450px) {
     .process-flow-border:before {
         display: none
     }
 }

 .work-step:nth-child(2n) .process-flow-border::before {
     transform: rotate(-16deg);
     transform-origin: top left
 }

 [dir=rtl] .work-step:nth-child(2n) .process-flow-border::before {
     transform: rotate(0deg) translateY(-50px);
     transform-origin: top right
 }

 @media only screen and (min-width:1200px) and (max-width:1399px) {
     .work-step:nth-child(2n) .process-flow-border::before {
         transform: scale(.9) rotate(-16deg)
     }
     [dir=rtl] .work-step:nth-child(2n) .process-flow-border::before {
         transform: scale(.9) rotate(0deg) translateY(-50px);
         transform-origin: top right
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px) {
     .work-step:nth-child(2n) .process-flow-border::before {
         transform: scale(.75) rotate(-16deg)
     }
     [dir=rtl] .work-step:nth-child(2n) .process-flow-border::before {
         transform: scale(.75) rotate(0deg) translateY(-50px);
         transform-origin: top right
     }
 }

 .services-title-style-2 .section-subtitle {
     color: var(--clr-common-white)
 }

 .services-title-style-2 .section-subtitle span {
     color: #84a99c
 }

 .services-title-style-2 .section-main-title {
     color: var(--clr-common-white)
 }

 .style-3.single-service:hover .service-img::before {
     height: 100%
 }

 .style-3.single-service:hover .service-icon {
     border-color: var(--clr-theme-2);
     background: var(--clr-bg-1);
     color: var(--clr-common-white)
 }

 .style-3 .service-img {
     width: 100%;
     overflow: hidden;
     border-radius: 10px;
     position: relative
 }

 .style-3 .service-img::before {
     position: absolute;
     content: "";
     width: 100%;
     height: 0%;
     bottom: 0;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(11, 61, 44, 0.7) 100%);
     z-index: 1
 }

 .style-3 .service-img img {
     width: 100%
 }

 .style-3 .single-service-content {
     text-align: center;
     padding: 0 30px
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .style-3 .single-service-content {
         padding: 0 20px
     }
 }

 .style-3 .service-title {
     font-size: 26px;
     text-transform: uppercase;
     margin-bottom: 15px
 }

 @media only screen and (min-width:768px) and (max-width:991px) {
     .style-3 .service-title {
         font-size: 22px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 (max-width:450px) {
     .style-3 .service-title {
         font-size: 20px
     }
 }

 .style-3 p {
     margin-bottom: 25px
 }

 .style-3 .service-icon {
     width: 140px;
     height: 140px;
     border: 10px solid var(--clr-common-white);
     border-radius: 50%;
     background: var(--clr-bg-1);
     margin-inline-start: auto;
     margin-inline-end: auto;
     font-size: 60px;
     line-height: 140px;
     color: var(--clr-common-white);
     margin-top: -70px;
     position: relative;
     -webkit-transition: all .3s ease-out 0s;
     -moz-transition: all .3s ease-out 0s;
     -ms-transition: all .3s ease-out 0s;
     -o-transition: all .3s ease-out 0s;
     transition: all .3s ease-out 0s;
     margin-bottom: 23px;
     z-index: 2
 }

 .style-4.services-area {
     position: relative;
     margin-top: -80px
 }

 .single-service-style-4 .service-title {
     font-size: 24px;
     text-transform: uppercase;
     margin-bottom: 15px;
     position: relative;
     padding-bottom: 0;
     transition: .3s
 }

 @media only screen and (min-width:1200px) and (max-width:1399px),
 only screen and (min-width:768px) and (max-width:991px) {
     .single-service-style-4 .service-title {
         font-size: 22px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 (max-width:450px) {
     .single-service-style-4 .service-title {
         font-size: 20px
     }
 }

 .single-service-style-4 .service-title:before {
     width: 40px;
     height: 2px;
     background: var(--clr-theme-2);
     position: absolute;
     content: "";
     bottom: 0;
     left: 0;
     transition: .3s;
     display: none
 }

 [dir=rtl] .single-service-style-4 .service-title:before {
     right: 0;
     left: auto
 }

 .single-service-style-4.single-service {
     box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .06);
     border-radius: 6px;
     padding: 60px 50px 50px;
     position: relative;
     overflow: hidden;
     transition: .3s;
     z-index: 5;
     background: var(--clr-common-white)
 }

 @media only screen and (min-width:1200px) and (max-width:1399px),
 only screen and (min-width:768px) and (max-width:991px) {
     .single-service-style-4.single-service {
         padding: 30px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 (max-width:450px) {
     .single-service-style-4.single-service {
         padding: 20px
     }
 }

 .single-service-style-4.single-service:hover {
     background: var(--clr-bg-1);
     box-shadow: none
 }

 .single-service-style-4.single-service:hover .service-icon {
     filter: grayscale(0%) opacity(1)
 }

 .single-service-style-4.single-service:hover::after {
     opacity: .1
 }

 .single-service-style-4.single-service:hover .single-service-content p {
     color: #bfd8c1
 }

 .single-service-style-4.single-service:hover .service-number::before {
     -webkit-text-stroke-color: #124a37
 }

 .single-service-style-4.single-service:hover .service-title {
     color: var(--clr-common-white)
 }

 .single-service-style-4.single-service:hover .service-title::before {
     width: 80px;
     background: var(--clr-common-white)
 }

 .single-service-style-4.single-service:hover .text-btn {
     color: var(--clr-common-white)
 }

 .single-service-style-4.single-service::after {
     position: absolute;
     content: url(../img/shape/pattern-sm.png);
     bottom: 0;
     display: flex;
     justify-content: center;
     left: 0;
     right: 0;
     opacity: 0;
     transition: .3s;
     z-index: -1
 }

 .single-service-style-4 .single-service-content {
     text-align: center
 }

 .single-service-style-4 .single-service-content p {
     margin-bottom: 25px;
     transition: .3s
 }

 .single-service-style-4 .service-icon {
     filter: grayscale(0%) opacity(1);
     transition: .3s;
     height: 80px;
     text-align: center;
     margin-bottom: 35px
 }

 @media only screen and (min-width:1200px) and (max-width:1399px),
 only screen and (min-width:768px) and (max-width:991px) {
     .single-service-style-4 .service-icon {
         transform: scale(.8);
         transform-origin: center
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 (max-width:450px) {
     .single-service-style-4 .service-icon {
         transform: scale(.8);
         transform-origin: center
     }
 }

 .single-service-style-4 .service-icon img {
     height: 100%
 }

 .single-service-style-4 .service-number {
     margin-bottom: 0;
     display: inline-block;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     z-index: -1
 }

 .single-service-style-4 .service-number::before {
     content: counter(service-counter, decimal-leading-zero);
     font-size: 200px;
     font-weight: 700;
     color: transparent;
     stroke: 1px #ececec;
     font-family: poppins, sans-serif;
     -webkit-text-fill-color: transparent;
     -webkit-text-stroke-width: 1px;
     -webkit-text-stroke-color: #ececec;
     line-height: 1;
     transition: .3s
 }

 @media only screen and (min-width:1200px) and (max-width:1399px),
 only screen and (min-width:768px) and (max-width:991px) {
     .single-service-style-4 .service-number::before {
         font-size: 100px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 (max-width:450px) {
     .single-service-style-4 .service-number::before {
         font-size: 100px;
         -webkit-text-stroke-width: 1px
     }
 }

 .single-service-style-5.single-service {
     position: relative
 }

 .single-service-style-5.single-service:hover .service-hover-border {
     opacity: 1;
     visibility: visible
 }

 .single-service-style-5.single-service:hover .service-icon svg {
     transform: scale(-1) rotate(180deg)
 }

 .single-service-style-5.single-service .service-hover-border {
     position: absolute;
     content: "";
     width: calc(100% - 20px);
     height: calc(100% + 20px);
     border: 2px solid var(--clr-theme-2);
     background: var(--clr-theme-2);
     border-radius: 6px;
     top: 50%;
     left: 50%;
     z-index: -1;
     transform: translate(-50%, -50%);
     opacity: 0;
     visibility: hidden;
     -webkit-transition: all .5s ease-out 0s;
     -moz-transition: all .5s ease-out 0s;
     -ms-transition: all .5s ease-out 0s;
     -o-transition: all .5s ease-out 0s;
     transition: all .5s ease-out 0s
 }

 .single-service-style-5 .single-service-inner {
     border: 2px solid var(--clr-bg-1);
     border-radius: 6px;
     text-align: center;
     padding: 48px 13px 40px;
     position: relative;
     background: var(--clr-common-white);
     z-index: 2
 }

 .single-service-style-5 .single-service-inner .service-icon {
     width: 120px;
     height: 120px;
     background: var(--clr-bg-1);
     text-align: center;
     line-height: 120px;
     border-radius: 100%;
     margin-inline-start: auto;
     margin-inline-end: auto;
     margin-bottom: 35px
 }

 .single-service-style-5 .single-service-inner .service-title {
     font-size: 24px;
     margin-bottom: 12px;
     text-transform: uppercase
 }

 .single-service-style-5 .single-service-inner p {
     margin-bottom: 0
 }

 .single-service-style-5 .single-service-inner .service-number {
     margin-bottom: 0;
     display: inline-block;
     position: absolute;
     top: 65%;
     left: 50%;
     transform: translate(-50%, -50%);
     z-index: -1
 }

 .single-service-style-5 .single-service-inner .service-number::before {
     content: counter(service-counter, decimal-leading-zero);
     font-size: 160px;
     font-weight: 700;
     color: transparent;
     stroke: 1px #ececec;
     font-family: poppins, sans-serif;
     -webkit-text-fill-color: transparent;
     -webkit-text-stroke-width: 1px;
     -webkit-text-stroke-color: #ececec;
     line-height: 1;
     transition: .3s
 }

 @media only screen and (min-width:1200px) and (max-width:1399px),
 only screen and (min-width:768px) and (max-width:991px) {
     .single-service-style-5 .single-service-inner .service-number::before {
         font-size: 100px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 (max-width:450px) {
     .single-service-style-5 .single-service-inner .service-number::before {
         font-size: 100px;
         -webkit-text-stroke-width: 1px
     }
 }

 .choose-area {
     position: relative;
     z-index: 5;
     background: var(--clr-bg-1)
 }

 .choose-bg {
     position: absolute;
     width: 64%;
     height: 100%;
     top: 0;
     left: 0;
     z-index: -1;
     overflow: hidden
 }

 [dir=rtl] .choose-bg {
     right: 0;
     left: auto
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .choose-bg {
         position: static;
         width: 100%;
         margin-bottom: 60px
     }
 }

 .choose-bg img {
     width: 100%;
     height: 100%;
     object-fit: cover
 }

 .choose-inner {
     max-width: 670px;
     background: var(--clr-common-white);
     padding: 70px 80px;
     border-radius: 10px;
     width: 100%
 }

 @media only screen and (min-width:992px) and (max-width:1199px) {
     .choose-inner {
         padding: 50px
     }
 }

 @media only screen and (min-width:576px) and (max-width:767px) {
     .choose-inner {
         padding: 50px
     }
 }

 @media(max-width:450px) {
     .choose-inner {
         padding: 30px 20px
     }
 }

 @media(max-width:575px) {
     .choose-inner {
         padding: 40px 30px
     }
 }

 .choose-item .irc-item-content h4 {
     font-size: 24px;
     text-transform: uppercase;
     margin-bottom: 12px;
     line-height: 1
 }

 @media only screen and (min-width:992px) and (max-width:1199px) {
     .choose-item .irc-item-content h4 {
         font-size: 20px
     }
 }

 @media(max-width:450px) {
     .choose-item .irc-item-content h4 {
         font-size: 20px
     }
 }

 .choose-item .irc-item-content p {
     margin-bottom: 0
 }

 .choose-item .irc-item-icon {
     width: 80px;
     height: 80px;
     text-align: center;
     line-height: 80px;
     background: var(--clr-bg-1);
     min-width: 80px;
     border-radius: 50%
 }

 .irc-item.choose-item {
     display: flex;
     gap: 24px
 }

 @media(max-width:450px) {
     .irc-item.choose-item {
         flex-direction: column
     }
 }

 .irc-item.choose-item:hover .irc-item-icon {
     background: var(--clr-theme-2)
 }

 .choose-list {
     display: flex;
     flex-direction: column;
     gap: 30px
 }

 .choose-wrapper {
     display: flex;
     justify-content: end
 }

 .portfolio-hover-style.portfolio-single {
     position: relative;
     z-index: 5;
     overflow: hidden;
     border-radius: 10px
 }

 .portfolio-hover-style.portfolio-single:hover .portfolio-content {
     opacity: 1;
     visibility: visible;
     transform: scale(1)
 }

 .portfolio-hover-style .portfolio-content {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     z-index: 2;
     text-align: center;
     padding: 0 70px;
     transform: scale(.8);
     border-radius: 10px;
     overflow: hidden;
     display: flex;
     align-items: center;
     opacity: 0;
     visibility: hidden;
     transition: .3s;
     justify-content: center
 }

 @media only screen and (min-width:1200px) and (max-width:1399px) {
     .portfolio-hover-style .portfolio-content {
         padding: 0 50px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 only screen and (min-width:768px) and (max-width:991px),
 (max-width:450px) {
     .portfolio-hover-style .portfolio-content {
         padding: 0 30px
     }
 }

 .portfolio-hover-style .portfolio-content .portfolio-title {
     margin-top: 10px;
     margin-bottom: 35px;
     line-height: 1.3;
     font-size: 24px;
     color: var(--clr-common-white)
 }

 @media only screen and (min-width:1200px) and (max-width:1399px) {
     .portfolio-hover-style .portfolio-content .portfolio-title {
         margin-bottom: 25px;
         font-size: 22px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .portfolio-hover-style .portfolio-content .portfolio-title {
         margin-bottom: 25px;
         font-size: 20px
     }
 }

 .portfolio-hover-style .portfolio-hover-bg {
     position: absolute;
     content: "";
     width: 100%;
     height: 100%;
     background: var(--clr-bg-1);
     opacity: .9;
     z-index: -1;
     top: 0;
     left: 0;
     pointer-events: none
 }

 .portfolio-hover-style .portfolio-tag {
     font-size: 14px;
     font-weight: 700;
     color: var(--clr-common-white);
     text-transform: uppercase
 }

 .portfolio-hover-style .portfolio-title {
     font-size: 24px;
     text-transform: uppercase
 }

 .portfolio-hover-style .portfolio-thumb img {
     width: 100%
 }

 .style-2.portfolio-hover-style .portfolio-content {
     padding: 80px 70px;
     align-items: inherit
 }

 @media only screen and (min-width:1200px) and (max-width:1399px) {
     .style-2.portfolio-hover-style .portfolio-content {
         padding: 80px 50px
     }
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 only screen and (min-width:768px) and (max-width:991px),
 (max-width:450px) {
     .style-2.portfolio-hover-style .portfolio-content {
         padding: 80px 30px
     }
 }

 .style-2 .portfolio-inner {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: space-between
 }

 .portfolio-hover-items-wrapper {
     display: flex;
     flex-wrap: wrap;
     gap: 30px
 }

 .portfolio-hover-items-wrapper>div {
     width: calc((100% - 60px)/3)
 }

 @media only screen and (min-width:768px) and (max-width:991px) {
     .portfolio-hover-items-wrapper>div {
         width: calc((100% - 30px)/2)
     }
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .portfolio-hover-items-wrapper>div {
         width: calc((100% - 0px)/1)
     }
 }

 .portfolio-tab-nav {
     display: flex;
     justify-content: center
 }

 .portfolio-tab-nav .nav-tabs {
     border-bottom: 0;
     border: 2px solid var(--clr-bg-1);
     border-radius: 10px;
     display: flex;
     gap: 8px 18px;
     padding: 15px 23px;
     position: relative;
     background: var(--clr-common-white)
 }

 @media only screen and (min-width:576px) and (max-width:767px) {
     .portfolio-tab-nav .nav-tabs {
         gap: 8px 7px;
         padding: 15px 10px
     }
 }

 @media(max-width:575px) {
     .portfolio-tab-nav .nav-tabs {
         gap: 8px 13px;
         padding: 15px 10px
     }
 }

 @media(max-width:450px) {
     .portfolio-tab-nav .nav-tabs {
         padding: 15px
     }
 }

 .portfolio-tab-nav .nav-tabs .nav-link {
     font-size: 16px;
     font-weight: 700;
     color: var(--clr-theme-1);
     text-transform: uppercase;
     padding: 0;
     border: 0;
     border-radius: 0;
     margin-bottom: 0;
     padding-inline-start: 10px;
     position: relative
 }

 .portfolio-tab-nav .nav-tabs .nav-link:hover {
     color: var(--clr-theme-2)
 }

 .portfolio-tab-nav .nav-tabs .nav-link.active {
     background: 0 0;
     color: var(--clr-theme-2)
 }

 .portfolio-tab-nav .nav-tabs .nav-link.active::before {
     opacity: 1
 }

 .portfolio-tab-nav .nav-tabs .nav-link:before {
     position: absolute;
     content: "";
     width: 4px;
     height: 4px;
     background: var(--clr-theme-2);
     border-radius: 50%;
     left: 0;
     right: 0;
     top: 0;
     bottom: 0;
     margin: auto 0;
     opacity: 0
 }

 .portfolio-tab-nav .nav-tabs::before {
     position: absolute;
     content: "";
     width: calc(100% - 36px);
     height: 100%;
     border: 2px solid var(--clr-bg-1);
     border-radius: 10px;
     left: 18px;
     bottom: -12px;
     z-index: -1
 }

 .portfolio-meta-wrapper {
     background: var(--clr-common-white);
     box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .08);
     border-radius: 10px;
     margin: -60px 40px 50px;
     padding: 30px 40px;
     z-index: 5;
     position: relative
 }

 @media only screen and (min-width:992px) and (max-width:1199px),
 only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px) {
     .portfolio-meta-wrapper {
         padding: 30px
     }
 }

 @media(max-width:450px) {
     .portfolio-meta-wrapper {
         margin: -60px 20px 50px;
         padding: 30px 20px
     }
 }

 .portfolio-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
     flex-wrap: wrap
 }

 .portfolio-meta .meta-list {
     display: flex;
     gap: 75px;
     flex-wrap: wrap
 }

 @media only screen and (min-width:992px) and (max-width:1199px) {
     .portfolio-meta .meta-list {
         gap: 25px
     }
 }

 @media only screen and (min-width:768px) and (max-width:991px) {
     .portfolio-meta .meta-list {
         gap: 10px;
         justify-content: space-between;
         flex-grow: 1
     }
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .portfolio-meta .meta-list {
         gap: 20px
     }
 }

 .portfolio-meta .meta-item {
     display: block
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .portfolio-meta .meta-item {
         width: calc((100% - 20px)/2)
     }
 }

 @media(max-width:450px) {
     .portfolio-meta .meta-item {
         width: calc((100% - 0px)/1)
     }
 }

 .portfolio-meta .meta-item span {
     font-size: 20px;
     font-weight: 700;
     color: var(--clr-theme-1);
     text-transform: uppercase;
     font-family: poppins, sans-serif;
     display: block;
     line-height: 1;
     margin-bottom: 6px
 }

 .portfolio-meta .meta-item p {
     font-size: 14px;
     margin-bottom: 0
 }

 .portfolio-quote {
     background: #f6f6f6;
     padding: 40px 50px;
     display: flex;
     gap: 30px;
     align-items: center;
     border-radius: 10px
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .portfolio-quote {
         padding: 40px 20px;
         flex-direction: column;
         align-items: flex-start
     }
 }

 .portfolio-quote .quote-icon {
     width: 120px;
     height: 120px;
     background: var(--clr-common-white);
     text-align: center;
     line-height: 120px;
     border-radius: 50%;
     min-width: 120px
 }

 .portfolio-quote .quote-content p {
     font-size: 24px;
     font-weight: 400;
     color: var(--clr-theme-1);
     line-height: 1.4;
     margin-bottom: 15px
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .portfolio-quote .quote-content p {
         font-size: 22px
     }
 }

 .portfolio-quote .quote-content .author-name {
     font-size: 18px;
     font-weight: 700;
     color: var(--clr-theme-1);
     text-transform: uppercase;
     font-family: poppins, sans-serif
 }

 .portfolio-quote .quote-content .author-name span {
     color: var(--clr-theme-2);
     font-size: 16px
 }

 .portfolio-faq-wrapper {
     margin-bottom: 60px;
     margin-top: 50px
 }

 .portfolio-faq-wrapper h4 {
     font-size: 30px;
     text-transform: uppercase;
     margin-bottom: 17px
 }

 .portfolio-faq-wrapper .gm-faq .accordion-button {
     border-radius: 10px;
     padding: 0 18px;
     box-shadow: none
 }

 .portfolio-faq-wrapper .gm-faq .accordion-item:first-of-type .accordion-button {
     border-radius: 10px
 }

 .portfolio-faq-wrapper .gm-faq .accordion-item:last-of-type .accordion-button.collapsed {
     border-radius: 10px
 }

 .portfolio-nav-wrapper {
     border-top: 1px solid #f0f0f0;
     padding-top: 30px;
     padding-bottom: 30px
 }

 .portfolio-nav-items {
     gap: 30px;
     display: flex;
     justify-content: space-between;
     position: relative
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .portfolio-nav-items {
         flex-direction: column
     }
 }

 .portfolio-nav-items .portfolio-img {
     width: 45px;
     height: 45px;
     border-radius: 50%;
     overflow: hidden
 }

 .portfolio-nav-items .portfolio-img img {
     width: 100%;
     height: 100%;
     object-fit: cover
 }

 .portfolio-nav-items .portfolio-single {
     display: flex;
     align-items: center;
     gap: 14px
 }

 .portfolio-nav-items .portfolio-single:last-child {
     flex-direction: row-reverse;
     text-align: right
 }

 [dir=rtl] .portfolio-nav-items .portfolio-single:last-child {
     text-align: left
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .portfolio-nav-items .portfolio-single:last-child {
         flex-direction: row;
         text-align: left
     }
     [dir=rtl] .portfolio-nav-items .portfolio-single:last-child {
         text-align: right
     }
 }

 .portfolio-nav-items .portfolio-content span {
     font-size: 14px;
     line-height: 1
 }

 .portfolio-nav-items .portfolio-title {
     font-size: 24px;
     color: var(--clr-theme-1);
     margin-bottom: 0;
     text-transform: uppercase
 }

 @media(max-width:450px) {
     .portfolio-nav-items .portfolio-title {
         font-size: 20px
     }
 }

 .portfolio-nav-items .portfolio-title a:hover {
     color: var(--clr-theme-2)
 }

 .portfolio-nav-items .dot-icon {
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%)
 }

 @media only screen and (min-width:768px) and (max-width:991px),
 only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .portfolio-nav-items .dot-icon {
         display: none
     }
 }

 .portfolio-details-wrapper .portfolio-thumb img {
     width: 100%
 }

 .portfolio-details-wrapper p {
     line-height: 28px
 }

 .portfolio-details-wrapper p a {
     color: var(--clr-theme-1)
 }

 .portfolio-details-wrapper p span {
     font-weight: 700;
     color: var(--clr-theme-1)
 }

 .portfolio-sub-image {
     display: flex;
     gap: 30px;
     flex-wrap: wrap;
     margin-top: 50px;
     margin-bottom: 60px
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .portfolio-sub-image {
         gap: 15px
     }
 }

 .portfolio-sub-image img {
     border-radius: 10px;
     width: calc((100% - 60px)/3)
 }

 @media only screen and (min-width:576px) and (max-width:767px),
 (max-width:575px) {
     .portfolio-sub-image img {
         width: calc((100% - 30px)/3)
     }
 }

 @media(max-width:450px) {
     .portfolio-sub-image img {
         width: calc((100% - 0px)/1)
     }
 }

 .style-2.portfolio-tab-nav .nav-tabs::before {
     display: none
 }

 .style-2.portfolio-tab-nav .nav-tabs {
     border-radius: 30px
 }

 @media only screen and (min-width:1200px) and (max-width:1399px) {
     .style-2.portfolio-tab-nav .nav-tabs {
    gap: 9px
}

}

.style-2.portfolio-tab-nav {
    justify-content: end
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-2.portfolio-tab-nav {
        justify-content: start
    }
}

.portfolio-slide-wrapper {
    position: relative
}

.portfolio-1-nav-btn {
    width: 60px;
    height: 60px;
    display: inline-flex;
    background: var(--clr-bg-1);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
    color: var(--clr-common-white);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.portfolio-1-nav-btn:hover {
    background: var(--clr-bg-2)
}

.portfolio-1-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px
}

.portfolio-bottom-content {
    border-radius: 10px;
    overflow: hidden
}

.portfolio-bottom-content .portfolio-meta-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-theme-2);
    text-transform: uppercase
}

.portfolio-bottom-content .portfolio-meta-list {
    display: flex;
    gap: 35px;
    line-height: 1;
    margin-bottom: 10px
}

.portfolio-bottom-content .portfolio-meta-single {
    position: relative
}

.portfolio-bottom-content .portfolio-meta-single:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--clr-theme-2);
    left: -17px;
    right: -17px;
    top: 50%;
    transform: translateY(-50%)
}

.portfolio-bottom-content .portfolio-meta-single:first-child:before {
    display: none
}

.portfolio-bottom-content .portfolio-title {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 0
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .portfolio-bottom-content .portfolio-title {
        font-size: 20px
    }
}

@media(max-width:450px) {
    .portfolio-bottom-content .portfolio-title {
        font-size: 22px
    }
}

.portfolio-bottom-content .portfolio-title a:hover {
    color: var(--clr-theme-2)
}

.portfolio-bottom-content .portfolio-content {
    background: #f7f7f7;
    padding: 33px 40px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .portfolio-bottom-content .portfolio-content {
        padding: 28px 25px
    }
}

@media(max-width:450px) {
    .portfolio-bottom-content .portfolio-content {
        padding: 23px 20px;
        flex-direction: column;
        align-items: start
    }
}

.portfolio-bottom-content .portfolio-thumb img {
    width: 100%
}

.portfolio-bg {
    background: #f6f3ee
}

.portfolio-active-style-2 {
    overflow: visible
}

.portfolio-active-style-2 .swiper-wrapper .swiper-slide:nth-child(2n) {
    margin-top: 40px
}

.portfolio-full-width {
    overflow-x: clip
}

.portfolio-style-2-pagination-wrapper {
    display: flex;
    justify-content: center
}

.portfolio-style-2-pagination {
    display: inline-flex;
    justify-content: center;
    padding: 8px 5px;
    background: var(--clr-bg-1);
    border-radius: 10px
}

.portfolio-style-2-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    background: #205442;
    border-radius: 2px;
    opacity: 1;
    margin: 0 5px
}

.portfolio-style-2-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px;
    background: var(--clr-common-white)
}

.style-3.portfolio-slide-wrapper {
    padding: 0 30px
}

@media(max-width:575px) {
    .style-3.portfolio-slide-wrapper {
        padding: 0 15px
    }
}

.style-3.portfolio-hover-style .portfolio-content {
    padding: 50px 70px;
    align-items: inherit
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px) {
    .style-3.portfolio-hover-style .portfolio-content {
        padding: 50px 30px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-3.portfolio-hover-style .portfolio-content {
        padding: 50px 15px
    }
}

.style-3 .portfolio-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between
}

.style-4.portfolio-hover-style.portfolio-single {
    position: relative;
    z-index: 5;
    overflow: hidden;
    border-radius: 6px
}

.style-4.portfolio-hover-style .portfolio-content {
    text-align: left;
    padding: 30px 40px 40px;
    justify-content: start
}

@media only screen and (min-width:992px) and (max-width:1199px),
(max-width:450px) {
    .style-4.portfolio-hover-style .portfolio-content {
        padding: 15px 25px 40px
    }
}

.style-4 .portfolio-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

[dir=rtl] .style-4 .portfolio-inner {
    text-align: right
}

.style-4 .icon-btn {
    border-radius: 6px
}

.style-4.portfolio-hover-style .portfolio-content .portfolio-title {
    margin-top: 5px
}

.portfolio-btn.style-4 .fill-btn {
    background: var(--clr-common-white);
    border-color: var(--clr-common-white);
    color: var(--clr-theme-1)
}

.portfolio-btn.style-4 .fill-btn:hover {
    background: var(--clr-bg-1);
    border-color: var(--clr-theme-1);
    color: var(--clr-common-white)
}

.portfolio-btn.style-4 .fill-btn:before,
.portfolio-btn.style-4 .fill-btn:after {
    background: var(--clr-bg-1)
}

.portfolio-hover-items-wrapper.style-4 {
    position: relative
}

.portfolio-shape-1 {
    width: 190px;
    height: 190px;
    background: var(--clr-common-white);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%)
}

.portfolio-shape-2 {
    font-size: 256px;
    color: #efeae2;
    position: absolute;
    right: -190px;
    bottom: -90px
}

.instagram-shot {
    position: relative;
    display: inline-block;
    width: 100%
}

.instagram-shot:hover .instagram-hover-link {
    opacity: 1;
    visibility: visible
}

.instagram-shot img {
    width: 100%
}

.instagram-hover-link {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.instagram-hover-link:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--clr-bg-1);
    opacity: .9
}

.instagram-hover-link a {
    font-size: 50px;
    color: var(--clr-common-white);
    position: relative
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .instagram-hover-link a {
        font-size: 35px
    }
}

@media(max-width:450px) {
    .instagram-hover-link a {
        font-size: 30px
    }
}

.gm-faq.gm-faq-2column .accordion {
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 20px
}

.gm-faq.gm-faq-2column .accordion>div {
    width: calc((100% - 50px)/2)
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .gm-faq.gm-faq-2column .accordion>div {
        width: calc((100% - 0px)/1)
    }
}

.gm-faq .accordion-button {
    border: 2px solid var(--clr-bg-1);
    border-radius: 30px;
    padding: 0 28px;
    height: 60px;
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase;
    font-family: poppins, sans-serif;
    padding-inline-end: 8px;
    justify-content: space-between;
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .08);
    text-align: left;
    background: var(--clr-common-white)
}

[dir=rtl] .gm-faq .accordion-button {
    text-align: right
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .gm-faq .accordion-button {
        font-weight: 600
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
(max-width:450px) {
    .gm-faq .accordion-button {
        padding: 0 18px;
        font-size: 16px;
        font-weight: 600;
        padding-inline-end: 8px
    }
}

.gm-faq .accordion-button::after {
    content: "\f067";
    background-image: none;
    font-family: "font awesome 5 pro";
    font-size: 18px;
    font-weight: 400;
    height: 40px;
    width: 40px;
    border: 2px solid var(--clr-bg-1);
    line-height: 36px;
    border-radius: 50%;
    margin-inline-start: 0;
    text-align: center
}

.gm-faq .accordion-button:not(.collapsed) {
    background-color: var(--clr-bg-1);
    color: var(--clr-common-white);
    box-shadow: none
}

.gm-faq .accordion-button:not(.collapsed)::after {
    border-color: var(--clr-common-white);
    background: var(--clr-common-white);
    color: var(--clr-theme-1);
    content: "\f068"
}

.gm-faq .accordion-button:focus {
    box-shadow: none
}

.gm-faq .accordion-body {
    font-size: 18px;
    line-height: 28px;
    padding: 24px 9px 5px 30px
}

@media only screen and (min-width:992px) and (max-width:1199px),
(max-width:450px) {
    .gm-faq .accordion-body {
        font-size: 16px;
        padding: 24px 9px 5px 20px
    }
}

.gm-faq .accordion-collapse {
    border: none;
    transition: all .5s
}

.gm-faq .accordion-item {
    border: none
}

[dir=rtl] .gm-faq .accordion-item {
    background: 0 0
}

.gm-faq .accordion-item:first-of-type .accordion-button {
    border-radius: 30px
}

.gm-faq .accordion-item:last-of-type .accordion-button.collapsed {
    border-width: 2px;
    border-radius: 30px
}

.gm-faq-group {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.faq-area.style-2 {
    background: var(--clr-theme-3)
}

.faq-thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: var(--clr-common-white);
    text-align: center;
    line-height: 160px;
    border-radius: 550%
}

@media(max-width:450px) {
    .faq-thumb {
        transform: translate(-50%, -50%) scale(.7)
    }
}

.faq-img {
    position: relative;
    max-width: 580px
}

.faq-img img {
    max-width: 100%
}

.member-designation {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-theme-2);
    text-transform: uppercase;
    line-height: 1;
    display: inline-block;
    margin-bottom: 0
}

.member-name {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 25px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:576px) and (max-width:767px) {
    .member-name {
        font-size: 20px
    }
}

.member-name a:hover {
    color: var(--clr-theme-2)
}

.social-links.team-social ul {
    display: flex;
    gap: 10px;
    justify-content: center
}

.social-links.team-social ul li a {
    width: 50px;
    height: 50px;
    text-align: center;
    display: inline-block;
    border: 2px solid var(--clr-bg-1);
    line-height: 46px;
    color: var(--clr-theme-1);
    font-size: 16px;
    border-radius: 6px;
    background: var(--clr-common-white)
}

.social-links.team-social ul li a:hover {
    color: var(--clr-common-white);
    background: var(--clr-theme-2);
    border-color: var(--clr-theme-2)
}

.team-single {
    padding: 0 10px 30px;
    text-align: center
}

.member-img {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    max-width: 220px;
    margin-bottom: 25px;
    position: relative
}

.member-img img {
    width: 100%
}

.hover-img-border .member-img a {
    position: relative;
    display: inline-block
}

.hover-img-border .member-img a:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 4px solid var(--clr-theme-1);
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: 50%;
    transform: scale(1.4);
    background: 0 0
}

.hover-img-border .member-img a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 30px solid var(--clr-theme-3);
    border-radius: 50%;
    transform: scale(1.4);
    background: 0 0
}

.hover-img-border .team-single:hover .member-img a::after {
    transform: scale(1)
}

.hover-img-border .team-single:hover .member-img a::before {
    transform: scale(1)
}

.team-intro-area {
    background: var(--clr-bg-1);
    position: relative
}

.team-intro-content .section-subtitle {
    color: var(--clr-common-white)
}

.team-intro-content .section-main-title {
    color: var(--clr-common-white)
}

.team-intro-thumb {
    position: absolute;
    right: 0;
    width: 40%;
    height: 100%;
    top: 0;
    overflow: hidden
}

[dir=rtl] .team-intro-thumb {
    left: 0;
    right: auto
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .team-intro-thumb {
        position: static;
        width: 100%;
        padding-bottom: 60px
    }
}

.team-intro-thumb:hover img {
    transform: scale(1.1)
}

.team-intro-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 6s
}

.team-award-logo {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap
}

@media(max-width:575px) {
    .team-award-logo img {
        max-height: 70px
    }
}

@media(max-width:450px) {
    .team-award-logo {
        gap: 25px
    }
}

.team-detais-wrapper .member-img {
    border-radius: 10px;
    margin-bottom: 0;
    width: 100%;
    max-width: 520px
}

.team-detais-wrapper .member-contact {
    margin: -45px 30px 60px;
    background: var(--clr-bg-1);
    position: relative;
    border-radius: 10px;
    padding: 30px
}

@media(max-width:450px) {
    .team-detais-wrapper .member-contact {
        margin: -45px 15px 60px;
        padding: 30px 15px
    }
}

.team-detais-wrapper .member-contact li {
    border-bottom: 1px solid #154b39;
    padding-bottom: 10px;
    margin-bottom: 10px
}

.team-detais-wrapper .member-contact li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0
}

.member-contact .single-contact p {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-common-white);
    text-transform: uppercase;
    font-family: poppins, sans-serif
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .member-contact .single-contact p {
        font-size: 18px
    }
}

@media(max-width:450px) {
    .member-contact .single-contact p {
        font-size: 16px
    }
}

.member-contact .single-contact .contact-icon {
    font-size: 20px;
    color: #558675;
    min-width: 40px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .member-contact .single-contact .contact-icon {
        font-size: 18px
    }
}

@media(max-width:450px) {
    .member-contact .single-contact .contact-icon {
        font-size: 16px;
        min-width: 30px
    }
}

.team-details-content-wrapper {
    padding-inline-start: 70px;
    padding-inline-end: 45px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .team-details-content-wrapper {
        padding-inline-start: 0;
        padding-inline-end: 0
    }
}

.team-details-content-wrapper .member-designation {
    font-size: 16px;
    font-weight: 700
}

.team-details-content-wrapper .member-name {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .team-details-content-wrapper .member-name {
        font-size: 52px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .team-details-content-wrapper .member-name {
        font-size: 44px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .team-details-content-wrapper .member-name {
        font-size: 52px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .team-details-content-wrapper .member-name {
        font-size: 42px
    }
}

@media(max-width:575px) {
    .team-details-content-wrapper .member-name {
        font-size: 40px
    }
}

@media(max-width:450px) {
    .team-details-content-wrapper .member-name {
        font-size: 28px
    }
}

.section-widget-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase
}

.team-details-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px
}

.team-details-social .section-widget-title {
    margin-bottom: 0
}

.hr-1 {
    border-bottom: 1px solid #efefef
}

.team-details-skill .bd-skill--content {
    display: flex;
    flex-wrap: wrap;
    column-gap: 45px
}

.team-details-skill .bd-skill__wrapper {
    width: calc((100% - 45px)/2)
}

@media(max-width:450px) {
    .team-details-skill .bd-skill__wrapper {
        width: calc((100% - 0px)/1)
    }
}

.team-details-skill .section-widget-title {
    margin-bottom: 10px
}

.bd-skill--title__wrapper {
    margin-bottom: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.bd-skill--title__wrapper span {
    color: var(--clr-body-heading)
}

.bd-skill--title {
    font-size: 14px;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
    font-family: poppins, sans-serif
}

.bd-skill__wrapper {
    overflow-x: clip
}

.bd-skill__wrapper .progress {
    height: 6px;
    border-radius: 10px;
    overflow: inherit;
    background-color: var(--clr-theme-3)
}

.bd-skill__wrapper .progress .progress-bar {
    background: var(--clr-theme-2);
    position: relative;
    overflow: inherit;
    border-radius: 10px
}

[dir=rtl] .bd-skill__wrapper .progress .progress-bar {
    animation-name: slideInRight
}

.bd-skill__wrapper .progress .progress-bar span {
    height: 22px;
    width: 4px;
    display: inline-block;
    background: var(--clr-bg-1);
    position: absolute;
    transform: rotate(20deg);
    right: -2px;
    border-radius: 30px;
    display: none
}

.bd-skill--content {
    overflow: hidden;
    padding-bottom: 15px
}

.bd-skill--title__wrapper {
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative
}

.bd-skill--title__wrapper span {
    position: absolute;
    top: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-theme-2);
    font-family: poppins, sans-serif;
    line-height: 1;
    right: 0
}

[dir=rtl] .bd-skill--title__wrapper span {
    left: 0;
    right: auto
}

.style-4 .social-links.team-social ul li a {
    border: 2px solid var(--clr-common-white);
    color: var(--clr-theme-1);
    background: var(--clr-common-white)
}

.style-4 .social-links.team-social ul li a:hover {
    color: var(--clr-common-white);
    background-color: var(--clr-theme-2);
    border-color: var(--clr-theme-2)
}

.style-4.team-area {
    background: #f8f5f0
}

.single-input-field {
    position: relative;
    margin-bottom: 20px;
    width: 100%
}

.single-input-field input {
    border: 2px solid var(--clr-bg-1);
    border-radius: 10px;
    height: 60px;
    padding: 0 22px;
    padding-inline-end: 44px;
    width: 100%;
    outline: 0
}

.single-input-field input::placeholder {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #bebebe
}

.single-input-field input:focus {
    border-color: #7d7d7d
}

.single-input-field textarea {
    height: 180px;
    width: 100%;
    padding: 14px 22px;
    padding-inline-end: 44px;
    border: 2px solid var(--clr-bg-1);
    border-radius: 10px;
    outline: 0;
    resize: none
}

.single-input-field textarea::placeholder {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #bebebe
}

.single-input-field textarea:focus {
    border-color: #7d7d7d
}

.single-input-field::after {
    content: "\f007";
    position: absolute;
    right: 24px;
    top: 16px;
    font-family: "font awesome 5 pro";
    font-weight: 700;
    font-size: 14px;
    color: var(--clr-theme-1)
}

[dir=rtl] .single-input-field::after {
    left: 24px;
    right: auto
}

.contact-form .contact-btn {
    margin-top: 10px
}

.single-input-field.field-email::after {
    content: "\f0e0"
}

.single-input-field.field-message::after {
    content: "\f040"
}

.single-input-field.field-website::after {
    content: "\f0ac"
}

.single-input-field.field-number::after {
    content: "\f095"
}

.single-input-field.field-address::after {
    content: "\f279"
}

.single-input-field.field-service::after {
    content: "\f175"
}

.contact-form .row {
    --bs-gutter-x: 25px
}

.contact-area {
    position: relative;
    margin-bottom: -105px;
    z-index: 2
}

.contact-wrapper {
    box-shadow: -30px 0 60px 0 rgba(0, 0, 0, .06);
    border-radius: 10px;
    position: relative;
    overflow: hidden
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .contact-wrapper {
        box-shadow: 0 0 60px 0 rgba(0, 0, 0, .06)
    }
}

.contact-wrapper:hover .contact-wrapper-img img {
    transform: scale(1.03)
}

.contact-wrapper-content {
    padding: 90px 100px 100px;
    width: 64%;
    background: var(--clr-common-white)
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .contact-wrapper-content {
        padding: 60px 70px 70px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .contact-wrapper-content {
        padding: 60px 70px 70px;
        width: 100%
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .contact-wrapper-content {
        padding: 30px 30px 40px;
        width: 100%
    }
}

@media(max-width:575px) {
    .contact-wrapper-content {
        padding: 30px 30px 40px;
        width: 100%
    }
}

@media(max-width:450px) {
    .contact-wrapper-content {
        padding: 20px 20px 30px
    }
}

.contact-wrapper-img {
    width: 36%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden
}

[dir=rtl] .contact-wrapper-img {
    left: 0;
    right: auto
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .contact-wrapper-img {
        position: static;
        width: 100%
    }
}

.contact-wrapper-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.contact-info-area {
    position: relative;
    padding-top: 220px;
    padding-bottom: 120px;
    background: var(--clr-theme-3);
    margin-top: -105px;
    z-index: 2
}

.contact-info-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .contact-info-shape {
        display: none
    }
}



.whats-app{
     position:fixed;
     top:80vh;
     right:40px;
     width:30px;
     z-index:99;
}
 .whats-app img {
     animation-name: floating;
     animation-duration: 3s;
     animation-iteration-count: infinite;
     animation-timing-function: ease-in-out;
     margin-left: 0px;
     margin-top: 5px;
     opacity:1;
     max-width:60px;
}

@keyframes floating {
     from {
         transform: translate(0, 0px);
    }
     65% {
         transform: translate(0, 15px);
    }
     to {
         transform: translate(0, -0px);
    }
}
/* Feel free to change duration  */ 
.animated  {
  -webkit-animation-duration : 1000 ms  ;
  animation-duration : 1000 ms  ;
  -webkit-animation-fill-mode : both  ;
  animation-fill-mode : both  ;
}  
.contact-info-shape .contact-img-1 {
    position: absolute;
    top: 99px;
    left: 0
}

.contact-area {
    position: relative;
    margin-bottom: -105px;
    z-index: 3
}

.contact-map {
    margin-inline-end: -30px;
    border-radius: 10px 0 0 10px;
    overflow: hidden
}

[dir=rtl] .contact-map {
    border-radius: 0 10px 10px 0
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .contact-map {
        margin-inline-end: 0;
        border-radius: 10px 10px 0 0 !important
    }
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 290px;
    display: block
}

.contact-info-title {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 17px
}

.info-contact-time .info-date {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-common-white);
    text-transform: uppercase;
    display: flex;
    justify-content: space-between
}

@media only screen and (min-width:992px) and (max-width:1199px),
(max-width:450px) {
    .info-contact-time .info-date {
        font-size: 15px
    }
}

.info-contact-time li {
    border-bottom: 1px solid #1a5440;
    padding-bottom: 12px;
    margin-bottom: 12px
}

.info-item-wrapper.info-wrapper-media {
    border-radius: 0 10px 10px 0
}

[dir=rtl] .info-item-wrapper.info-wrapper-media {
    border-radius: 10px 0 0 10px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .info-item-wrapper.info-wrapper-media {
        border-radius: 0 0 10px 10px
    }
}

.info-item-wrapper.info-wrapper-time {
    background: var(--clr-bg-1)
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .info-item-wrapper.info-wrapper-time {
        margin-top: 30px
    }
}

.info-item-wrapper.info-wrapper-time::before {
    content: url(../img/icon/clock-icon.png);
    filter: grayscale(0) opacity(1)
}

.info-wrapper-time .contact-info-title {
    color: var(--clr-common-white)
}

.info-item-wrapper {
    background: var(--clr-common-white);
    border-radius: 10px;
    padding: 43px 50px 50px;
    height: 100%;
    position: relative;
    z-index: 2
}

@media only screen and (min-width:992px) and (max-width:1199px),
(max-width:450px) {
    .info-item-wrapper {
        padding: 24px 30px 30px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .info-item-wrapper {
        height: auto
    }
}

@media(max-width:450px) {
    .info-item-wrapper {
        padding: 24px 20px 30px
    }
}

.info-item-wrapper::before {
    position: absolute;
    content: url(../img/icon/calender-icon.png);
    top: 20px;
    right: 20px;
    z-index: -1;
    filter: grayscale(100%) opacity(.05)
}

.info-contact .single-contact p {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase
}

@media only screen and (min-width:992px) and (max-width:1199px),
(max-width:450px) {
    .info-contact .single-contact p {
        font-size: 15px
    }
}

.info-contact .single-contact .contact-icon {
    color: var(--clr-theme-2)
}
span.__cf_email__ {
    text-transform: lowercase;
}
.info-contact li {
    border-bottom: 1px solid #ece9e3;
    padding-bottom: 12px;
    margin-bottom: 12px
}

.info-contact li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0
}

.style-2.contact-info-area {
    margin-top: 0;
    padding-top: 120px;
    overflow: hidden
}

.style-2 .contact-info-shape .contact-img-1 {
    position: absolute;
    top: 0;
    left: auto;
    right: 0
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .style-2 .contact-info-shape .contact-img-1 {
        width: 350px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px) {
    .style-2 .contact-info-shape .contact-img-1 {
        width: 300px
    }
}

.style-2 .contact-info-shape .contact-img-2 {
    position: absolute;
    left: 0;
    bottom: -280px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .style-2 .contact-info-shape .contact-img-2 {
        width: 200px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px) {
    .style-2 .contact-info-shape .contact-img-2 {
        width: 200px
    }
}

.blog-main-wrapper {
    margin-inline-end: 60px;
    position: relative
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blog-main-wrapper {
        margin-inline-end: 30px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-main-wrapper {
        margin-inline-end: 0
    }
}

.blog-main-wrapper:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #ededed;
    right: -45px;
    top: 0
}

[dir=rtl] .blog-main-wrapper:after {
    left: -45px;
    right: auto
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blog-main-wrapper:after {
        right: -30px
    }
    [dir=rtl] .blog-main-wrapper:after {
        left: -30px;
        right: auto
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-main-wrapper:after {
        display: none
    }
}

.blog-main-wrapper .blog-single {
    margin-bottom: 40px;
    border: 2px solid var(--clr-bg-1);
    border-radius: 10px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-main-wrapper .blog-single {
        border-width: 1px
    }
}

.blog-main-wrapper .blog-thumb {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
    margin: -2px -2px 0;
    min-height: 100px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-main-wrapper .blog-thumb {
        margin: -1px -1px 0
    }
}

.blog-main-wrapper .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.blog-main-wrapper .blog-thumb .play-btn {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    line-height: 80px;
    font-size: 14px;
    color: var(--clr-common-white);
    background: var(--clr-bg-1);
    transform: translate(-50%, -50%)
}

.blog-main-wrapper .blog-thumb .play-btn:hover {
    background: var(--clr-theme-2)
}

.blog-main-wrapper .blog-content {
    padding: 58px 48px 48px;
    position: relative;
    z-index: 3
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blog-main-wrapper .blog-content {
        padding: 58px 28px 48px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-main-wrapper .blog-content {
        padding: 29px 19px
    }
}

.blog-main-wrapper .blog-content .tags {
    font-size: 14px;
    text-transform: uppercase;
    font-family: poppins, sans-serif;
    font-weight: 700;
    color: var(--clr-common-white);
    position: absolute;
    background: var(--clr-bg-1);
    height: 30px;
    line-height: 30px;
    padding: 0 12px;
    border-radius: 6px;
    top: -15px;
    left: 50px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blog-main-wrapper .blog-content .tags {
        left: 30px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-main-wrapper .blog-content .tags {
        top: -30px;
        left: -1px;
        border-radius: 0
    }
}

.blog-main-wrapper .blog-content p {
    margin-bottom: 25px
}

.blog-main-wrapper .blog-author {
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .08);
    padding: 10px;
    border-radius: 10px;
    position: absolute;
    right: 50px;
    top: -30px;
    background: var(--clr-common-white);
    padding-inline-end: 22px
}

.blog-main-wrapper .blog-author .author-name {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 0
}

.blog-main-wrapper .blog-author .author-img {
    width: 40px;
    height: 40px;
    overflow: hidden
}

.blog-main-wrapper .blog-author .author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blog-main-wrapper .blog-author {
        right: 30px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-main-wrapper .blog-author {
        right: -1px;
        top: -60px;
        border-radius: 0
    }
}

@media(max-width:450px) {
    .blog-main-wrapper .blog-author {
        position: static;
        padding: 0;
        box-shadow: none;
        margin-bottom: 20px
    }
}

.blog-main-wrapper .blog-title {
    font-size: 34px;
    line-height: 1.35;
    text-transform: uppercase;
    margin-bottom: 15px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .blog-main-wrapper .blog-title {
        font-size: 30px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blog-main-wrapper .blog-title {
        font-size: 26px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .blog-main-wrapper .blog-title {
        font-size: 28px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-main-wrapper .blog-title {
        font-size: 24px
    }
}

@media(max-width:450px) {
    .blog-main-wrapper .blog-title {
        font-size: 20px
    }
}

.blog-main-wrapper .blog-title a:hover {
    color: var(--clr-theme-2)
}

.blog-main-wrapper .blog-meta-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase
}

.blog-main-wrapper .blog-meta-icon {
    font-size: 14px;
    color: var(--clr-theme-1)
}

.blog-main-wrapper .blog-meta-single {
    display: flex;
    gap: 8px;
    position: relative;
    line-height: 1
}

.blog-main-wrapper .blog-meta-single:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--clr-bg-1);
    right: -29px
}

[dir=rtl] .blog-main-wrapper .blog-meta-single:after {
    left: -29px;
    right: auto
}

@media(max-width:575px) {
    .blog-main-wrapper .blog-meta-single:after {
        display: none
    }
}

.blog-main-wrapper .blog-meta-single:last-child:after {
    display: none
}

.blog-main-wrapper .blog-meta-list {
    display: flex;
    gap: 58px;
    margin-top: 25px
}

@media(max-width:575px) {
    .blog-main-wrapper .blog-meta-list {
        gap: 15px 30px;
        flex-wrap: wrap
    }
}

.blog-main-wrapper .blog-thumb-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.blog-main-wrapper .b-t-overlay::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--clr-bg-1);
    opacity: .9
}

.bh-115 {
    height: 115px
}

.blockquote-wrapper {
    background: #f7f7f7;
    padding: 65px 40px 60px 50px;
    border-radius: 10px;
    position: relative;
    z-index: 2
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blockquote-wrapper {
        padding: 65px 30px 60px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blockquote-wrapper {
        padding: 35px 20px 30px 25px
    }
}

.blockquote-content p {
    font-size: 34px;
    line-height: 1.35;
    text-transform: uppercase;
    font-family: poppins, sans-serif;
    color: var(--clr-common-heading);
    font-weight: 700;
    margin-bottom: 0
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .blockquote-content p {
        font-size: 30px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blockquote-content p {
        font-size: 26px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .blockquote-content p {
        font-size: 28px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blockquote-content p {
        font-size: 22px
    }
}

@media(max-width:450px) {
    .blockquote-content p {
        font-size: 20px
    }
}

.blockquote-content {
    display: flex;
    gap: 30px;
    align-items: center
}

@media(max-width:575px) {
    .blockquote-content {
        flex-direction: column;
        align-items: flex-start
    }
}

.blockquote-wrapper:before {
    position: absolute;
    content: url(../img/icon/quote-icon-white-big.png);
    right: 30px;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%)
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blockquote-wrapper:before {
        transform: translateY(-50%) scale(.8)
    }
}

.sidebar-about-content {
    text-align: center
}

.sidebar-about-content .profile-thumb {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 20px
}

.sidebar-about-content .profile-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sidebar-about-content .member-name {
    font-size: 18px;
    margin-bottom: 13px
}

.sidebar-about-content .social-links ul {
    justify-content: center;
    gap: 22px
}

.sidebar-about-content .social-links ul li a {
    font-size: 14px;
    color: #d4d4d4
}

.sidebar-about-content .social-links ul li a:hover {
    color: var(--clr-theme-1)
}

.sidebar-about-content p {
    margin-bottom: 20px
}

.sidebar-search-form {
    position: relative
}

.sidebar-search-form input {
    height: 60px;
    width: 100%;
    border: 2px solid var(--clr-bg-1);
    border-radius: 10px;
    padding: 0 18px;
    padding-inline-end: 70px;
    outline: 0
}

.sidebar-search-form button {
    width: 60px;
    height: 60px;
    background: var(--clr-bg-1);
    color: var(--clr-common-white);
    font-size: 14px;
    top: 0;
    right: 0;
    position: absolute;
    border-radius: 0 10px 10px 0
}

[dir=rtl] .sidebar-search-form button {
    border-radius: 10px 0 0 10px;
    left: 0;
    right: auto
}

.sidebar-blog-list .blog-single:hover .blog-thumb::before {
    opacity: 1
}

.sidebar-blog-list .blog-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin: 0;
    min-width: 80px;
    position: relative;
    overflow: hidden
}

.sidebar-blog-list .blog-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 61, 44, 0.5) 0%, rgba(11, 61, 44, 0.5) 100%);
    z-index: 1;
    opacity: 0
}

.sidebar-blog-list .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sidebar-blog-list .blog-title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 15px
}

.sidebar-blog-list .blog-title a:hover {
    color: var(--clr-theme-2)
}

.sidebar-blog-list .blog-single {
    display: flex;
    gap: 20px;
    border: 0;
    margin-bottom: 0
}

.sidebar-blog-list .blog-content {
    padding: 0
}

.sidebar-blog-list .blog-meta-list {
    margin-top: 0
}

.sidebar-blog-list .blog-meta-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase
}

.sidebar-blog-list .blog-meta-icon {
    font-size: 14px;
    color: var(--clr-theme-1)
}

.sidebar-blog-list .blog-meta-single {
    display: flex;
    gap: 8px;
    position: relative;
    line-height: 1
}

.sidebar-blog-list .blog-meta-single:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--clr-bg-1);
    right: -29px
}

@media(max-width:575px) {
    .sidebar-blog-list .blog-meta-single:after {
        display: none
    }
}

.sidebar-blog-list .blog-meta-single:last-child:after {
    display: none
}

.sidebar-blog-list ul {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.sidebar-category-list a {
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    line-height: 1
}

.sidebar-category-list a:hover {
    color: var(--clr-theme-1)
}

.sidebar-category-list a:hover .category-name::before {
    transform: translateX(7px)
}

[dir=rtl] .sidebar-category-list a:hover .category-name::before {
    transform: translateX(-7px)
}

.sidebar-category-list .category-name {
    position: relative;
    padding-inline-start: 20px
}

.sidebar-category-list .category-name:before {
    position: absolute;
    content: "\f105";
    font-family: "font awesome 5 pro";
    position: absolute;
    left: 0;
    font-weight: 300
}

[dir=rtl] .sidebar-category-list .category-name:before {
    right: 0;
    left: auto
}

.sidebar-category-list .category-item-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-theme-1)
}

.sidebar-category-list ul {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    height: 30px;
    background: #f4f4f4;
    display: inline-block;
    line-height: 30px;
    padding: 0 15px;
    border-radius: 6px;
    text-align: center
}

.sidebar-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.sidebar-tag-list a {
    flex-grow: 1;
    max-width: 110px
}

.sidebar-tag-list a:hover {
    color: var(--clr-common-white);
    background: var(--clr-bg-1)
}

.basic-pagination ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center
}

.basic-pagination ul li a,
.basic-pagination ul li span {
    background: var(--clr-common-white);
    color: var(--clr-theme-1);
    font-size: 14px;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid var(--clr-bg-1);
    font-weight: 700
}

.basic-pagination ul li a:hover,
.basic-pagination ul li span.current {
    background: var(--clr-bg-1);
    color: var(--clr-common-white)
}

.blockquote-d-wrapper {
    border: 2px solid var(--clr-bg-1);
    border-radius: 10px;
    text-align: center;
    padding: 48px 50px 38px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blockquote-d-wrapper {
        padding: 39px 19px 29px;
        border-width: 1px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blockquote-d-wrapper {
        padding: 28px 19px 18px;
        border-width: 1px
    }
}

.blockquote-d-icon {
    width: 60px;
    height: 60px;
    background: var(--clr-theme-2);
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 22px
}

.blockquote-d-content .author-name {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 0
}

@media(max-width:450px) {
    .blockquote-d-content .author-name {
        font-size: 16px
    }
}

.blockquote-d-content .author-designation {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-theme-2)
}

.blockquote-d-content p {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-theme-1);
    font-family: poppins, sans-serif;
    line-height: 1.35;
    margin-bottom: 26px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blockquote-d-content p {
        font-size: 24px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .blockquote-d-content p {
        font-size: 24px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blockquote-d-content p {
        font-size: 24px
    }
}

@media(max-width:450px) {
    .blockquote-d-content p {
        font-size: 18px
    }
}

.blog-nav-wrapper {
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding-top: 50px;
    padding-bottom: 50px
}

.blog-nav-items {
    gap: 30px;
    display: flex;
    justify-content: space-between;
    position: relative
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-nav-items {
        flex-direction: column
    }
}

.blog-nav-items .blog-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden
}

.blog-nav-items .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.blog-nav-items .blog-single {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 0;
    margin-bottom: 0;
    border-radius: 0
}

.blog-nav-items .blog-single:last-child {
    flex-direction: row-reverse;
    text-align: right
}

[dir=rtl] .blog-nav-items .blog-single:last-child {
    text-align: left
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-nav-items .blog-single:last-child {
        flex-direction: row;
        text-align: left
    }
    [dir=rtl] .blog-nav-items .blog-single:last-child {
        text-align: right
    }
}

.blog-nav-items .blog-content {
    padding: 0
}

.blog-nav-items .blog-content span {
    font-size: 14px;
    line-height: 1
}

.blog-nav-items .blog-title {
    font-size: 24px;
    color: var(--clr-theme-1);
    margin-bottom: 0;
    text-transform: uppercase
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-nav-items .blog-title {
        font-size: 20px
    }
}

.blog-nav-items .blog-title a:hover {
    color: var(--clr-theme-2)
}

.blog-nav-items .dot-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-nav-items .dot-icon {
        display: none
    }
}

.blog-details-wrapper {
    border: 2px solid var(--clr-bg-1);
    border-radius: 10px;
    padding: 48px;
    margin-inline-end: 60px;
    position: relative
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blog-details-wrapper {
        padding: 39px 29px;
        border-width: 1px;
        margin-inline-end: 30px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-details-wrapper {
        margin-inline-end: 0;
        padding: 29px 19px;
        border-width: 1px
    }
}

.blog-details-wrapper:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #ededed;
    right: -45px;
    top: 0
}

[dir=rtl] .blog-details-wrapper:after {
    left: -45px;
    right: auto
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blog-details-wrapper:after {
        right: -30px
    }
    [dir=rtl] .blog-details-wrapper:after {
        left: -30px;
        right: auto
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-details-wrapper:after {
        display: none
    }
}

.blog-single-details .blog-thumb {
    border-radius: 10px;
    margin: 0 0 53px
}

.blog-single-details .blog-thumb img {
    width: 100%;
    border-radius: 10px
}

.blog-single-details h3 {
    font-size: 30px;
    margin-bottom: 30px;
    text-transform: uppercase;
    margin-top: 50px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blog-single-details h3 {
        font-size: 26px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-single-details h3 {
        font-size: 24px
    }
}

@media(max-width:450px) {
    .blog-single-details h3 {
        font-size: 20px
    }
}

.blog-single-details .blog-meta-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase
}

.blog-single-details .blog-meta-icon {
    font-size: 14px;
    color: var(--clr-theme-1)
}

.blog-single-details .blog-meta-single {
    display: flex;
    gap: 8px;
    position: relative;
    line-height: 1
}

.blog-single-details .blog-meta-single:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--clr-bg-1);
    right: -29px
}

[dir=rtl] .blog-single-details .blog-meta-single:after {
    left: -29px;
    right: auto
}

@media(max-width:575px) {
    .blog-single-details .blog-meta-single:after {
        display: none
    }
}

.blog-single-details .blog-meta-single:last-child:after {
    display: none
}

.blog-single-details .blog-meta-list {
    display: flex;
    gap: 58px;
    margin-top: 0;
    margin-bottom: 30px
}

@media(max-width:575px) {
    .blog-single-details .blog-meta-list {
        gap: 15px 30px;
        flex-wrap: wrap
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-single-details .blog-nav-items .dot-icon {
        display: none
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blog-single-details .blog-nav-items .blog-title {
        font-size: 22px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blog-single-details .blog-writer {
        padding: 28px;
        gap: 28px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blog-single-details .blgo-writer-content .writer-name {
        font-size: 24px
    }
}

.img-details {
    display: flex;
    gap: 30px;
    align-items: flex-start
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .img-details {
        flex-direction: column
    }
}

.img-details img {
    width: 190px;
    min-width: 190px;
    border-radius: 10px
}

.img-details p {
    margin-bottom: 0
}

.blog-actions {
    display: flex;
    justify-content: space-between
}

@media(max-width:575px) {
    .blog-actions {
        flex-direction: column;
        gap: 40px
    }
}

.blog-actions h4 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 23px
}

.blog-actions>div:last-child {
    text-align: right
}

[dir=rtl] .blog-actions>div:last-child {
    text-align: left
}

@media(max-width:575px) {
    .blog-actions>div:last-child {
        text-align: left
    }
    [dir=rtl] .blog-actions>div:last-child {
        text-align: right
    }
}

.social-links.blog-share ul {
    gap: 26px
}

.social-links.blog-share ul li a {
    color: #b9b9b9
}

.social-links.blog-share ul li a:hover {
    color: var(--clr-theme-1)
}

.blog-tag-list {
    display: flex;
    gap: 10px
}

.blog-tag-list .tag {
    border: 2px solid #f4f4f4;
    background: 0 0;
    line-height: 26px
}

.blog-tag-list .tag:hover {
    color: var(--clr-common-white);
    background: var(--clr-bg-1);
    border-color: var(--clr-theme-1)
}

.blog-writer {
    border: 2px solid #f3f3f3;
    padding: 38px;
    display: flex;
    gap: 40px;
    align-items: center
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-writer {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px 16px
    }
}

.blgo-writer-content span {
    font-size: 12px;
    color: #999;
    margin-bottom: 0;
    display: block
}

.blgo-writer-content .writer-name {
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 15px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .blgo-writer-content .writer-name {
        font-size: 34px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blgo-writer-content .writer-name {
        font-size: 28px
    }
}

@media(max-width:450px) {
    .blgo-writer-content .writer-name {
        font-size: 22px
    }
}

.blgo-writer-content p {
    font-size: 14px;
    margin-bottom: 0
}

.post-comment-title h3 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 30px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .post-comment-title h3 {
        font-size: 20px
    }
}

.latest-comments ul {
    list-style: none
}

.comments-box {
    border-top: 1px solid #f3f3f3;
    padding-top: 30px
}

.latest-comments li:first-child .comments-box {
    border-top: 0;
    padding-top: 0
}

.comments-avatar {
    float: left;
    margin-inline-end: 30px
}

[dir=rtl] .comments-avatar {
    float: right
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .comments-avatar {
        width: 70px
    }
}

@media(max-width:575px) {
    .comments-avatar {
        float: none;
        margin-bottom: 20px
    }
    [dir=rtl] .comments-avatar {
        float: none
    }
}

.comments-avatar img {
    border-radius: 50%
}

.comments-text {
    overflow: hidden;
    padding-bottom: 0;
    margin-bottom: 25px;
    position: relative
}

.comments-text p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 24px
}

.comment-reply {
    font-weight: 700;
    font-size: 14px;
    color: var(--clr-theme-1);
    border: 2px solid #f3f3f3;
    height: 40px;
    display: inline-block;
    line-height: 36px;
    border-radius: 10px;
    padding: 0 20px;
    text-transform: uppercase;
    position: absolute;
    right: 0;
    top: 0
}

[dir=rtl] .comment-reply {
    left: 0;
    right: auto
}

@media(max-width:450px) {
    .comment-reply {
        position: static;
        margin-top: 20px
    }
}

.comment-reply:hover {
    color: var(--clr-common-white);
    background: var(--clr-bg-1);
    border-color: var(--clr-theme-1)
}

.avatar-name {
    margin-bottom: 25px;
    overflow: hidden;
    position: relative
}

.avatar-name h5 {
    font-size: 18px;
    margin-bottom: 12px;
    text-transform: uppercase
}

.avatar-name span {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase;
    display: flex;
    line-height: 1;
    gap: 8px;
    align-items: center
}

.latest-comments li.children {
    margin-inline-start: 105px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .latest-comments li.children {
        margin-inline-start: 55px
    }
}

.blog-comment-form {
    background: #f7f7f7;
    padding: 50px;
    border-radius: 10px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blog-comment-form {
        padding: 30px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .blog-comment-form {
        padding: 40px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-comment-form {
        padding: 20px
    }
}

.post-comment-form h3 {
    font-size: 26px;
    margin-bottom: 30px;
    margin-top: 40px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .post-comment-form h3 {
        font-size: 20px
    }
}

.blog-general:hover .blog-thumb img {
    transform: scale(1.05)
}

.blog-general:hover .blog-thumb:before {
    height: 100%
}

.blog-general .blog-thumb {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    position: relative
}

.blog-general .blog-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 61, 44, 0.05) 0%, rgba(11, 61, 44, 0.7) 100%);
    z-index: 1;
    transition: all .5s
}

.blog-general .blog-thumb img {
    width: 100%
}

.blog-general .blog-meta-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase
}

.blog-general .blog-meta-text .blog-date {
    color: var(--clr-theme-2)
}

.blog-general .blog-meta-text span {
    color: #cecece
}

.blog-general
.blog-meta-list {
    display: flex;
    gap: 35px;
    margin-bottom: 10px
}

.blog-general .blog-meta-list .blog-meta-single:first-child:before {
    display: none
}

.blog-general .blog-meta-single {
    position: relative;
    line-height: 1
}

.blog-general .blog-meta-single:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    background: var(--clr-bg-1);
    border-radius: 50%;
    left: -17px;
    top: 50%;
    transform: translateY(-50%)
}

[dir=rtl] .blog-general .blog-meta-single:before {
    right: -17px;
    left: auto
}

.blog-general .blog-title {
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 29px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .blog-general .blog-title {
        font-size: 22px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blog-general .blog-title {
        font-size: 20px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .blog-general .blog-title {
        font-size: 20px
    }
}

@media(max-width:450px) {
    .blog-general .blog-title {
        font-size: 18px
    }
}

.blog-general .blog-title a:hover {
    color: var(--clr-theme-2)
}

.blog-general .blog-content {
    padding: 30px 0 0;
    transition: .3s
}

.blog-general .blog-btn {
    line-height: 1
}

.style-2:hover .blog-thumb img {
    transform: scale(1.05)
}

.style-2:hover .blog-thumb::before {
    height: 100%
}

.style-2:hover .blog-content {
    border-color: var(--clr-theme-1)
}

.style-2 .blog-thumb {
    width: calc(100% - 40px);
    overflow: hidden;
    border-radius: 10px;
    margin-inline-start: auto;
    margin-inline-end: auto;
    position: relative
}

.style-2 .blog-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 61, 44, 0.05) 0%, rgba(11, 61, 44, 0.7) 100%);
    z-index: 1;
    transition: all .5s
}

.style-2 .blog-thumb img {
    width: 100%
}

.style-2 .blog-meta-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase
}

.style-2 .blog-meta-text .blog-date {
    color: var(--clr-theme-2)
}

.style-2 .blog-meta-text span {
    color: #cecece
}

.style-2 .blog-meta-list {
    display: flex;
    gap: 35px;
    margin-bottom: 10px
}

@media(max-width:450px) {
    .style-2 .blog-meta-list {
        gap: 32px
    }
}

.style-2 .blog-meta-list .blog-meta-single:first-child:before {
    display: none
}

.style-2 .blog-meta-single {
    position: relative;
    line-height: 1
}

.style-2 .blog-meta-single:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    background: var(--clr-bg-1);
    border-radius: 50%;
    left: -17px;
    top: 50%;
    transform: translateY(-50%)
}

[dir=rtl] .style-2 .blog-meta-single:before {
    right: -17px;
    left: auto
}

.style-2 .blog-title {
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 29px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .style-2 .blog-title {
        font-size: 22px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .style-2 .blog-title {
        font-size: 20px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .style-2 .blog-title {
        font-size: 20px
    }
}

@media(max-width:450px) {
    .style-2 .blog-title {
        font-size: 20px
    }
}

.style-2 .blog-title a:hover {
    color: var(--clr-theme-2)
}

.style-2 .blog-content {
    border: 2px solid var(--clr-common-white);
    border-radius: 10px;
    padding: 170px 38px 36px;
    margin-top: -130px;
    background: var(--clr-common-white);
    transition: all .5s
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
(max-width:450px) {
    .style-2 .blog-content {
        padding: 170px 18px 36px
    }
}

.style-2 .blog-btn {
    line-height: 1
}

.blog-area-2 {
    background: #f8f5f0;
    padding-top: 215px
}

.style-4:hover .blog-thumb img {
    transform: scale(1.05)
}

.style-4:hover .blog-thumb::before {
    height: 100%
}

.style-4:hover .blog-content {
    border-color: var(--clr-theme-1);
    background: var(--clr-common-white)
}

.style-4 .blog-thumb {
    width: calc(100% - 40px);
    overflow: hidden;
    border-radius: 10px;
    margin-inline-start: auto;
    margin-inline-end: auto;
    position: relative
}

.style-4 .blog-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 61, 44, 0.05) 0%, rgba(11, 61, 44, 0.7) 100%);
    z-index: 1;
    transition: all .5s
}

.style-4 .blog-thumb img {
    width: 100%
}

.style-4 .blog-meta-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase
}

.style-4 .blog-meta-text .blog-date {
    color: var(--clr-theme-2)
}

.style-4 .blog-meta-text span {
    color: #cecece
}

.style-4 .blog-meta-list {
    display: flex;
    gap: 10px 35px;
    margin-bottom: 10px
}

@media(max-width:450px) {
    .style-4 .blog-meta-list {
        gap: 32px
    }
}

.style-4 .blog-meta-list .blog-meta-single:first-child:before {
    display: none
}

.style-4 .blog-meta-single {
    position: relative;
    line-height: 1
}

.style-4 .blog-meta-single:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    background: var(--clr-bg-1);
    border-radius: 50%;
    left: -17px;
    top: 50%;
    transform: translateY(-50%)
}

[dir=rtl] .style-4 .blog-meta-single:before {
    right: -17px;
    left: auto
}

.style-4 .blog-title {
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 29px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .style-4 .blog-title {
        font-size: 22px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .style-4 .blog-title {
        font-size: 20px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .style-4 .blog-title {
        font-size: 20px
    }
}

@media(max-width:450px) {
    .style-4 .blog-title {
        font-size: 20px
    }
}

.style-4 .blog-title a:hover {
    color: var(--clr-theme-2)
}

.style-4 .blog-content {
    border: 2px solid #f8f5f0;
    border-radius: 10px;
    padding: 170px 38px 36px;
    margin-top: -130px;
    background: #f8f5f0;
    transition: .3s
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
(max-width:450px) {
    .style-4 .blog-content {
        padding: 170px 18px 36px
    }
}

.style-4 .blog-btn {
    line-height: 1
}

.style-5.blog-single {
    display: flex;
    border: 2px solid var(--clr-bg-1);
    border-radius: 10px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-5.blog-single {
        flex-direction: column
    }
}

.style-5.blog-single:hover .blog-thumb img {
    transform: scale(1.05)
}

.style-5 .blog-meta-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase
}

.style-5 .blog-meta-text .blog-date {
    color: var(--clr-theme-2)
}

.style-5 .blog-meta-text span {
    color: #cecece
}

.style-5 .blog-meta-list {
    display: flex;
    gap: 35px;
    margin-bottom: 12px
}

@media(max-width:450px) {
    .style-5 .blog-meta-list {
        gap: 30px
    }
}

.style-5 .blog-meta-list .blog-meta-single:first-child:before {
    display: none
}

.style-5 .blog-meta-single {
    position: relative;
    line-height: 1
}

.style-5 .blog-meta-single:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    background: var(--clr-bg-1);
    border-radius: 50%;
    left: -17px;
    top: 50%;
    transform: translateY(-50%)
}

[dir=rtl] .style-5 .blog-meta-single:before {
    right: -17px;
    left: auto
}

.style-5 .blog-title {
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 15px
}

@media(max-width:450px) {
    .style-5 .blog-title {
        font-size: 20px
    }
}

.style-5 .blog-title a:hover {
    color: var(--clr-theme-2)
}

.style-5 .blog-btn {
    line-height: 1;
    margin-top: 32px
}

.style-5 .blog-thumb {
    border-radius: 10px 0 0 10px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    margin: -2px;
    width: 440px;
    min-width: 440px;
    overflow: hidden
}

[dir=rtl] .style-5 .blog-thumb {
    transform: rotateY(180deg)
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .style-5 .blog-thumb {
        height: auto;
        min-width: auto
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .style-5 .blog-thumb {
        width: 450px;
        min-width: 450px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-5 .blog-thumb {
        width: calc(100% + 4px);
        height: 300px;
        border-radius: 10px 10px 0 0;
        min-width: auto
    }
}

.style-5 .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.style-5 .blog-content {
    padding: 45px 50px 45px 52px;
    position: relative
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .style-5 .blog-content {
        width: 346px;
        padding: 45px 30px 45px 40px
    }
}

@media(max-width:450px) {
    .style-5 .blog-content {
        padding: 35px 20px
    }
}

.style-5 .blog-content:before {
    content: counter(blog-counter, decimal-leading-zero);
    font-size: 160px;
    font-weight: 700;
    color: transparent;
    stroke: 1px #ececec;
    font-family: poppins, sans-serif;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ececec;
    line-height: .7;
    transition: .3s;
    position: absolute;
    z-index: -1;
    bottom: 30px;
    right: 20px;
    display: none
}

.blog-wrapper .row>div {
    counter-increment: blog-counter
}

.blog-thumb-nav-btn {
    font-size: 30px;
    color: var(--clr-common-white);
    font-weight: 900
}

.blog-thumb-button-prev {
    position: absolute;
    top: 50%;
    left: 40px;
    z-index: 2;
    transform: translateY(-50%)
}

.blog-thumb-button-next {
    position: absolute;
    top: 50%;
    right: 40px;
    z-index: 2;
    transform: translateY(-50%)
}

.product-thumb {
    background: var(--clr-theme-3);
    border-radius: 10px;
    position: relative
}

.product-thumb img {
    width: 100%
}

.product-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    row-gap: 0
}

.product-wrapper>div {
    width: calc((100% - 90px)/4)
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .product-wrapper>div {
        width: calc((100% - 60px)/3)
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-wrapper>div {
        width: calc((100% - 30px)/2)
    }
}

@media(max-width:450px) {
    .product-wrapper>div {
        width: calc((100% - 0px)/1)
    }
}

.rating {
    display: flex;
    gap: 5px
}

.rating a {
    font-size: 14px;
    color: #d2b116
}

.product-name {
    font-size: 24px;
    text-transform: uppercase
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .product-name {
        font-size: 22px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-name {
        font-size: 20px
    }
}

.product-name a:hover {
    color: var(--clr-theme-2)
}

.product-price .price-old {
    color: #cfcfcf;
    text-decoration: line-through
}

.product-description {
    padding: 30px 0 18px
}

.product-description .rating {
    margin-bottom: 5px
}

.product-description .product-name {
    margin-bottom: 18px
}

.product-description .product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-theme-2);
    display: flex;
    gap: 5px;
    line-height: 1
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-description .product-price {
        font-size: 18px
    }
}

.product-single {
    margin-bottom: 30px
}

.product-item-action {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    display: flex;
    gap: 12px;
    justify-content: center
}

.product-item-action a {
    display: inline-block;
    height: 50px;
    width: 50px;
    background: var(--clr-common-white);
    border-radius: 50%;
    color: var(--clr-theme-1);
    font-size: 20px;
    line-height: 50px;
    transition: .3s;
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .08);
    transform: scaleX(0);
    text-align: center
}

.product-item-action a:hover {
    background: var(--clr-bg-1);
    color: var(--clr-common-white)
}

.product-single:hover .product-item-action a {
    transform: scaleX(1)
}

.product-d-img-nav {
    width: 70px
}

.product-d-img-nav .nav-link {
    padding: 0;
    background: var(--clr-theme-3);
    border: 2px solid var(--clr-theme-3);
    border-radius: 10px
}

.product-d-img-nav .nav-link img {
    width: 100%
}

.product-d-img-nav .nav-link:hover {
    border-color: var(--clr-theme-1)
}

.product-d-img-nav .nav-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 0
}

.product-d-img-nav .nav-link.active {
    border-color: var(--clr-theme-1);
    background: var(--clr-theme-3)
}

.product-d-img-tab-wrapper {
    display: flex;
    gap: 20px;
    margin-inline-end: 50px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-d-img-tab-wrapper {
        margin-inline-end: 0
    }
}

.product-d-img-tab {
    flex-grow: 1
}

.product-d-img-tab .tab-pane {
    background: var(--clr-theme-3);
    border-radius: 10px
}

.product-d-img-tab .tab-pane img {
    width: 100%
}

.product-d-category {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase;
    background: #ffe400;
    display: inline-block;
    height: 20px;
    line-height: 22px;
    border-radius: 4px;
    padding: 0 10px
}

.product-d-review {
    display: flex;
    gap: 5px
}

.product-d-review .rating a {
    color: #ffbf14
}

.product-d-review span {
    font-size: 14px
}

.product-category-review {
    display: flex;
    gap: 10px;
    margin-bottom: 3px;
    flex-wrap: wrap
}

.product-side-info .product-name {
    font-size: 26px;
    margin-bottom: 10px
}

.product-side-info .product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-theme-2);
    display: flex;
    gap: 5px;
    line-height: 1;
    align-items: end;
    margin-bottom: 35px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-side-info .product-price {
        font-size: 18px
    }
}

.product-side-info .product-price .price-old {
    font-size: 20px
}

.product-side-info .price-now {
    font-size: 36px;
    color: var(--clr-theme-2)
}

.product-d-meta {
    display: flex;
    gap: 10px
}

.product-d-meta span {
    font-size: 16px;
    text-transform: uppercase
}

.product-d-meta span:first-child {
    color: var(--clr-theme-1);
    font-weight: 700
}

.product-d-meta .social-links ul li a {
    color: #999
}

.product-d-meta .social-links ul li a:hover {
    color: var(--clr-theme-2)
}

.product-quantity-cart {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.product-quantity-cart .border-btn {
    height: 60px;
    border-width: 2px;
    padding: 0;
    width: 60px;
    line-height: 56px;
    border-radius: 10px
}

.product-quantity-cart .border-btn:before,
.product-quantity-cart .border-btn:after {
    display: none
}

.product-quantity-form .cart-minus {
    height: 56px;
    width: 35px;
    border: none
}

.product-quantity-form .cart-plus {
    height: 56px;
    width: 35px;
    border: none
}

.product-quantity-form .cart-input {
    height: 56px;
    width: 24px;
    border: none;
    text-align: center;
    color: var(--clr-theme-1)
}

.product-details-tab-wrapper {
    display: flex;
    gap: 40px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-details-tab-wrapper {
        flex-direction: column;
        gap: 0
    }
}

.product-details-content {
    flex-grow: 1
}

.product-details-nav .nav-tabs {
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-details-nav .nav-tabs {
        flex-direction: row;
        flex-wrap: wrap
    }
}

.product-details-nav .nav-link {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--clr-theme-1);
    border: 2px solid var(--clr-bg-1);
    border-radius: 10px;
    width: 260px;
    padding: 0 28px;
    height: 60px;
    line-height: 56px;
    font-weight: 700;
    white-space: nowrap
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-details-nav .nav-link {
        width: auto
    }
}

.product-details-nav .nav-link:hover {
    border-color: var(--clr-theme-1);
    color: var(--clr-common-white);
    background: var(--clr-bg-1)
}

.product-details-nav .nav-link.active {
    border-color: var(--clr-theme-1);
    color: var(--clr-common-white);
    background: var(--clr-bg-1)
}

.product__details-info ul li {
    display: flex;
    align-items: center;
    padding: 15px 30px
}

@media(max-width:575px) {
    .product__details-info ul li {
        padding: 15px
    }
}

.product__details-info ul li:nth-child(2n+1) {
    background: #f7f7f7
}

.product__details-info ul li h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    display: inline-block;
    width: 25%;
    text-transform: uppercase;
    min-width: 100px
}

.product__details-info ul li span {
    font-size: 16px
}

.course-review-item {
    display: flex;
    align-items: normal
}

.course-review-list {
    margin-inline-start: 20px
}

.course-review-list span {
    color: var(--clr-common-heading);
    margin-inline-start: 10px;
    font-size: 14px;
    font-weight: 400
}

.course-review-list h5 {
    text-transform: uppercase
}

.course-start-icon i {
    color: var(--clr-theme-1);
    font-size: 13px
}

.course-start-icon {
    margin-bottom: 10px
}

.comment-title h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase
}

.comment-title p {
    color: #454545
}

.comment-rating span {
    font-size: 15px;
    color: #454545;
    margin-inline-end: 5px
}

.comment-rating ul li {
    display: inline-block
}

.comment-rating ul li a {
    font-size: 14px;
    color: var(--clr-theme-1)
}

.comment-rating ul {
    display: inline-block
}

.comment-agree input {
    margin: 0;
    appearance: none;
    display: inline-block;
    width: 18px;
    height: 18px;
    background: 0 0;
    border: 2px solid var(--clr-common-border);
    border-radius: 2px;
    outline: none
}

.comment-agree label {
    margin-inline-start: 5px;
    font-size: 15px;
    color: #454545
}

.comment-agree input::placeholder {
    color: var(--clr-common-text);
    font-size: 14px;
    opacity: 1
}

.comment-input input {
    height: 60px;
    width: 100%;
    background: #f8f8f9;
    border: none;
    padding: 15px 20px;
    border-radius: 4px;
    outline: 0
}

.comment-input input::placeholder {
    color: var(--clr-common-text);
    font-size: 14px;
    opacity: 1
}

.comment-textarea {
    height: 170px;
    width: 100%;
    background: #f8f8f9;
    border: none;
    padding: 15px 20px;
    border-radius: 4px;
    resize: none;
    outline: 0
}

.comment-textarea::placeholder {
    color: var(--clr-common-text);
    font-size: 14px;
    opacity: 1
}

.product-available-sizes span {
    border: 1px solid var(--clr-common-border);
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    border-radius: 3px
}

.product-slider-area-btn {
    margin-bottom: 60px;
    text-align: right
}

[dir=rtl] .product-slider-area-btn {
    text-align: left
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-slider-area-btn {
        text-align: left
    }
    [dir=rtl] .product-slider-area-btn {
        text-align: right
    }
}

.style-5.product-slider-area-btn .border-btn {
    border-color: #f0f0f0;
    border-width: 2px;
    height: 60px;
    line-height: 56px;
    color: var(--clr-theme-2)
}

.style-5.product-slider-area-btn .border-btn:before,
.style-5.product-slider-area-btn .border-btn:after {
    background: var(--clr-theme-2)
}

.style-5.product-slider-area-btn .border-btn:hover {
    border-color: var(--clr-theme-2);
    background: var(--clr-theme-2);
    color: var(--clr-common-white)
}

.style-2.product-single {
    border-radius: 10px;
    overflow: hidden
}

.style-2.product-single:hover .product-item-action {
    margin-bottom: 0;
    opacity: 1;
    visibility: visible
}

.style-2.product-single:hover .product-thumb img {
    transform: scale(1.05)
}

.style-2 .product-description {
    padding: 33px 0 37px;
    background: var(--clr-common-white);
    text-align: center
}

.style-2 .product-price {
    justify-content: center
}

.style-2 .product-name {
    font-size: 20px;
    margin-bottom: 13px
}

.style-2 .product-price {
    font-size: 18px;
    font-weight: 400
}

.style-2 .product-item-action a {
    font-size: 18px;
    color: var(--clr-common-white);
    width: auto;
    height: auto;
    line-height: inherit;
    background: 0 0;
    position: relative;
    transform: scaleX(1)
}

.style-2 .product-item-action a:hover {
    color: var(--clr-theme-2)
}

.style-2 .product-item-action a:not(:first-child)::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 18px;
    background: #254;
    left: -20px;
    top: 50%;
    transform: translateY(-50%)
}

[dir=rtl] .style-2 .product-item-action a:not(:first-child)::before {
    right: -20px;
    left: auto
}

.style-2 .product-thumb {
    overflow: hidden
}

.style-2 .product-item-action {
    display: inline-flex;
    background: var(--clr-bg-1);
    padding: 17px 23px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    gap: 40px;
    margin-right: -23%;
    margin-bottom: -60px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    opacity: 0;
    visibility: hidden
}

.style-2 .product-batches {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    gap: 10px
}

.style-2 .batch-trending {
    width: 30px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--clr-theme-2);
    text-align: center;
    color: var(--clr-common-white);
    line-height: 45px;
    padding-top: 5px;
    border-radius: 0 0 15px 15px
}

.style-2 .product-batch {
    width: 60px;
    height: 60px;
    background: var(--clr-common-white);
    text-align: center;
    font-size: 14px;
    line-height: 60px;
    color: var(--clr-theme-1);
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50%
}

.style-2.featured-product-area {
    background: #f8f5f0;
    padding-top: 445px;
    margin-top: -325px;
    overflow: hidden
}

.style-2 .featured-product-active {
    overflow: visible
}

.style-2 .featured-product-active .swiper-slide {
    opacity: 0;
    visibility: hidden
}

.style-2 .featured-product-active .swiper-slide-active,
.style-2 .featured-product-active .swiper-slide-active~.swiper-slide {
    opacity: 1;
    visibility: visible
}

.featured-porduct-nav {
    display: flex;
    gap: 10px;
    justify-content: flex-end
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .featured-porduct-nav {
        justify-content: flex-start
    }
}

.featured-nav-button {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 20px;
    color: var(--clr-theme-2);
    background: var(--clr-common-white);
    line-height: 60px;
    border-radius: 6px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.featured-nav-button:hover {
    background: var(--clr-bg-1);
    color: var(--clr-common-white)
}

.items-showing-text {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-theme-1)
}

.items-showing-text span {
    color: var(--clr-theme-2)
}

.filter-buttons {
    display: flex;
    gap: 25px;
    justify-content: flex-end
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .filter-buttons {
        justify-content: flex-start
    }
}

.filter-buttons .v-line {
    color: #dcdcdc
}

.filter-category-btn .btn {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--clr-theme-1);
    border: 0;
    padding: 0
}

.filter-category-btn .btn:focus {
    box-shadow: none
}

.filter-category-btn .btn i {
    color: var(--clr-theme-2);
    margin-inline-end: 10px
}

.filter-category-btn .dropdown-menu {
    border-color: var(--clr-theme-1)
}

.filter-item-btn .btn {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--clr-theme-1);
    border: 0;
    padding: 0
}

.filter-item-btn .btn:focus {
    box-shadow: none
}

.filter-item-btn .btn i {
    color: var(--clr-theme-2);
    margin-inline-start: 3px
}

.filter-item-btn .dropdown-menu {
    border-color: var(--clr-theme-1)
}

.filter-tab-btn {
    margin-inline-start: 5px
}

.filter-tab-btn .nav-tabs .nav-link {
    padding: 0;
    border-radius: 0;
    border: 0
}

.filter-tab-btn .nav-tabs {
    border: 0;
    display: flex;
    gap: 16px
}

.cart-area .table-content table {
    background: #fff;
    border-color: #edeef2;
    border-radius: 0;
    border-style: solid;
    border-width: 1px 0 0 1px;
    text-align: center;
    width: 100%;
    margin-bottom: 0
}

.cart-area .table-content .product-quantity {
    float: none
}

.cart-area .table-content table td.product-name {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize
}

.cart-area .table>:not(:last-child)>:last-child>* {
    border-bottom-color: #edeef2
}

.cart-area .table-content table td.product-name a:hover {
    color: var(--clr-common-heading)
}

.cart-area .table-content table td {
    border-top: medium;
    padding: 20px 10px;
    vertical-align: middle;
    font-size: 16px
}

.cart-area .table-content table th,
.cart-area .table-content table td {
    border-bottom: 1px solid #edeef2;
    border-right: 1px solid #edeef2
}

.cart-area .table td,
.cart-area .table th {
    border-top: 1px solid #edeef2;
    white-space: nowrap
}

.cart-area .table-content table td.product-subtotal {
    font-size: 16px
}

.cart-area .table-content table td .cart-plus-minus {
    float: none;
    margin: 0 auto
}

.cart-area .coupon-all {
    margin-top: 50px
}

.cart-area .coupon {
    float: left;
    gap: 15px;
    flex-wrap: wrap
}

@media(max-width:767px) {
    .cart-area .coupon {
        float: none
    }
}

.cart-area #coupon_code {
    height: 50px;
    border: 1px solid #edeef2;
    padding: 0 15px;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

.cart-area #coupon_code:focus {
    border-color: var(--clr-common-heading)
}

.cart-area .coupon2 {
    float: right
}

@media(max-width:767px) {
    .cart-area .coupon2 {
        float: none;
        margin-top: 15px
    }
}

.cart-area .cart-page-total {
    padding-top: 50px
}

.cart-area .cart-page-total>h2 {
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: capitalize
}

.cart-area .cart-page-total>ul {
    border: 1px solid #edeef2
}

.cart-area .cart-page-total>ul>li {
    list-style: none;
    font-size: 15px;
    color: #575757;
    padding: 14px 30px;
    border-bottom: 1px solid #edeef2;
    font-weight: 400
}

.cart-area .cart-page-total ul>li>span {
    float: right
}

[dir=rtl] .cart-area .cart-page-total ul>li>span {
    float: left
}

.cart-area .cart-page-total li:last-child {
    border-bottom: 0
}

.cart-area td.product-thumbnail img {
    width: 125px
}

.cart-area .product-quantity-form {
    margin: auto;
    width: 122px;
    height: 58px;
    border: 1px solid var(--clr-common-border);
    text-align: center;
    position: relative;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.cart-area .product-quantity-form:hover {
    border-color: var(--clr-common-heading)
}

.cart-area .cart-plus,
.cart-area .cart-minus {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 45px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 14px;
    background: 0 0;
    border: none;
    outline: none
}

.cart-area .cart-plus:hover,
.cart-area .cart-minus:hover {
    cursor: pointer;
    color: var(--clr-common-heading);
    background: 0 0
}

.cart-area .cart-plus {
    left: auto;
    right: 0
}

.cart-area .cart-input {
    height: 58px;
    width: 32px;
    text-align: center;
    font-size: 14px;
    border: none;
    display: inline-block;
    vertical-align: middle;
    margin: 0 -3px;
    padding-bottom: 4px;
    background: 0 0
}

.cart-area .cart-input:focus {
    outline: none
}

.cart-area .coupon .fill-btn {
    height: 50px;
    line-height: 48px
}

.cart-area .coupon2 .fill-btn {
    height: 50px;
    line-height: 48px
}

.product-quantity a {
    white-space: nowrap
}

.coupon-accordion h3 {
    background-color: #f6f6f6;
    border-top: 3px solid var(--clr-common-heading);
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 25px;
    padding: 1em 2em 1em 3.5em;
    position: relative;
    width: auto
}

.coupon-accordion h3::before {
    content: "\f07b";
    left: 15px;
    top: 13px;
    position: absolute;
    color: #575757;
    font-family: "font awesome 5 pro";
    font-weight: 700
}

.coupon-accordion span {
    color: #575757;
    cursor: pointer;
    transition: .3s;
    font-weight: 500
}

.coupon-accordion span:hover,
p.lost-password a:hover {
    color: var(--clr-common-heading)
}

.coupon-content {
    border: 1px solid var(--clr-common-border);
    display: none;
    margin-bottom: 20px;
    padding: 30px
}

.coupon-info p.coupon-text {
    margin-bottom: 15px
}

.coupon-info p {
    margin-bottom: 0
}

.coupon-info p.form-row-first label,
.coupon-info p.form-row-last label {
    display: block;
    color: var(--clr-common-heading)
}

.coupon-info p.form-row-first label span.required,
.coupon-info p.form-row-last label span.required {
    color: var(--clr-common-heading);
    font-weight: 700
}

.coupon-info p.form-row-first input,
.coupon-info p.form-row-last input {
    border: 1px solid var(--clr-common-border);
    height: 60px;
    line-height: 60px;
    margin: 0 0 14px;
    max-width: 100%;
    padding: 0 0 0 10px;
    width: 100%;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

.coupon-info p.form-row-first input:focus,
.coupon-info p.form-row-last input:focus {
    border-color: var(--clr-common-heading)
}

.coupon-info p.form-row input[type=submit]:hover,
p.checkout-coupon input[type=submit]:hover {
    background: #3e976c none repeat scroll 0 0
}

.coupon-info p.form-row input[type=checkbox] {
    position: relative;
    top: 0
}

.form-row>label {
    margin-top: 15px;
    margin-inline-start: 15px;
    color: #575757
}

.buttons-cart input,
.coupon input[type=submit],
.buttons-cart a,
.coupon-info p.form-row input[type=submit] {
    background: #252525 none repeat scroll 0 0;
    border: medium;
    color: #fff;
    display: inline-block;
    float: left;
    font-size: 12px;
    font-weight: 700;
    height: 40px;
    line-height: 40px;
    margin-inline-end: 15px;
    padding: 0 15px;
    text-transform: uppercase;
    transition: all .3s ease 0s
}

p.lost-password {
    margin-top: 15px
}

p.lost-password a {
    color: #6f6f6f
}

p.checkout-coupon input[type=text] {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    width: 100%;
    border: 1px solid var(--clr-common-border);
    margin-bottom: 15px;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

p.checkout-coupon input[type=text]:focus {
    border-color: var(--clr-common-border)
}

.coupon-checkout-content {
    display: none
}

.checkbox-form .ship-different-title {
    border-bottom: 1px solid var(--clr-common-border);
    margin: 0 0 20px;
    padding-bottom: 10px;
    width: 100%
}

.checkbox-form h3 {
    text-transform: uppercase
}

.country-select {
    margin-bottom: 30px;
    position: relative
}

.country-select select {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--clr-common-border);
    padding: 0 10px;
    height: 50px
}

.country-select label,
.checkout-form-list label {
    color: var(--clr-common-heading);
    display: block;
    margin: 0 0 0
}

.country-select label span.required,
.checkout-form-list label span.required {
    color: var(--clr-common-heading)
}

.country-select .nice-select {
    border: 1px solid var(--clr-common-border);
    height: 60px;
    line-height: 60px;
    padding-inline-start: 20px;
    width: 100%;
    color: #575757;
    margin-bottom: 20px;
    border-radius: 0
}

.country-select .nice-select .list {
    width: 100%
}

.checkout-form-list {
    margin-bottom: 30px
}

.checkout-form-list label {
    color: var(--clr-common-heading)
}

.checkout-form-list input[type=text],
.checkout-form-list input[type=password],
.checkout-form-list input[type=email] {
    background: #fff;
    border: 1px solid var(--clr-common-border);
    border-radius: 0;
    height: 60px;
    line-height: 60px;
    padding: 0 0 0 20px;
    width: 100%;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

[dir=rtl] .checkout-form-list input[type=text],
[dir=rtl] .checkout-form-list input[type=password],
[dir=rtl] .checkout-form-list input[type=email] {
    padding: 0 20px 0 0
}

.checkout-form-list input[type=text]:focus,
.checkout-form-list input[type=password]:focus,
.checkout-form-list input[type=email]:focus {
    border-color: var(--clr-common-border)
}

.checkout-form-list input[type=text]::-moz-placeholder,
.checkout-form-list input[type=password]::-moz-placeholder,
.checkout-form-list input[type=email]::-moz-placeholder {
    color: #575757;
    opacity: 1
}

.checkout-form-list input[type=text]::placeholder,
.checkout-form-list input[type=password]::placeholder,
.checkout-form-list input[type=email]::placeholder {
    color: #575757;
    opacity: 1
}

.checkout-form-list input[type=checkbox] {
    display: inline-block;
    margin-inline-end: 10px;
    position: relative;
    top: 1px
}

.create-acc label {
    color: #575757;
    display: inline-block
}

.create-account {
    display: none
}

.ship-different-title label {
    display: inline-block;
    margin-inline-end: 10px
}

.order-notes textarea {
    border: 1px solid var(--clr-common-border);
    height: 90px;
    padding: 15px;
    width: 100%;
    resize: none;
    padding-inline-start: 20px;
    outline: none
}

.order-notes textarea::-moz-placeholder {
    color: #575757;
    opacity: 1
}

.order-notes textarea::placeholder {
    color: #575757;
    opacity: 1
}

#ship-box-info {
    display: none
}

.panel-group .panel {
    border-radius: 0
}

.panel-default>.panel-heading {
    border-radius: 0
}

.your-order {
    padding: 30px 40px 45px;
    border: 2px solid var(--clr-common-border)
}

@media(max-width:767px) {
    .your-order {
        padding: 15px
    }
}

.your-order h3 {
    border-bottom: 1px solid var(--clr-common-border);
    font-size: 24px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    width: 100%;
    text-transform: uppercase
}

.your-order-table table {
    background: 0 0;
    border: 0;
    width: 100%
}

.your-order-table table th,
.your-order-table table td {
    border-bottom: 1px solid var(--clr-common-border);
    border-right: medium;
    color: #575757;
    font-size: 16px;
    padding: 15px 0;
    text-align: left
}

@media(max-width:767px) {
    .your-order-table table th,
    .your-order-table table td {
        padding-inline-end: 10px
    }
}

.your-order-table table th {
    border-top: medium;
    color: var(--clr-common-heading);
    font-weight: 400;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
    width: 250px
}

.panel-body>p {
    color: #222
}

.your-order-table table .shipping ul li input {
    position: relative;
    top: 0
}

.your-order-table table .shipping ul li label {
    color: #575757
}

.your-order-table table .shipping th {
    vertical-align: top
}

.your-order-table table .order-total th {
    border-bottom: 0
}

.your-order-table table .order-total td {
    border-bottom: medium
}

.your-order-table table tr.cart_item:hover {
    background: #f9f9f9
}

.your-order-table table tr.order-total td span {
    color: var(--clr-common-heading);
    font-size: 18px;
    font-weight: 500
}

.payment-method {
    margin-top: 40px
}

.payment-method .accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.payment-method .accordion-item {
    background-color: #fff;
    border: 0;
    border-bottom: 1px solid var(--clr-common-border)
}

.payment-method .accordion-button {
    font-size: 16px;
    font-weight: 500;
    color: var(--clr-common-heading);
    padding: 23px 0;
    border: none
}

.payment-method .accordion-button:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

.payment-method .accordion-button::after {
    position: absolute;
    content: "\f067";
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "font awesome 5 pro";
    font-size: 16px;
    font-weight: 400;
    margin-inline-start: 0;
    background-image: none
}

[dir=rtl] .payment-method .accordion-button::after {
    left: 0;
    right: auto
}

.payment-method .accordion-button:not(.collapsed) {
    color: var(--clr-common-heading);
    background-color: var(--clr-common-white);
    box-shadow: none
}

.payment-method .accordion-button:not(.collapsed)::after {
    content: "\f068"
}

.payment-method .accordion-body {
    padding: 8px 0;
    padding-bottom: 40px
}

.payment-method .accordion-collapse {
    border: none
}

.panel-title>a {
    display: block
}

.order-button-payment input {
    background: #232323 none repeat scroll 0 0;
    border: medium;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    height: 40px;
    margin: 0 0 0;
    padding: 0;
    text-transform: uppercase;
    transition: all .3s ease 0s;
    width: 100%
}

.order-button-payment input:hover {
    background: #3e976c none repeat scroll 0 0
}

.payment-method .btn-link {
    user-select: none;
    -moz-user-select: none;
    background: no-repeat;
    border: medium;
    border-radius: 0;
    color: #444;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 0;
    padding: 3px 10px;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
    text-decoration: none
}

.payment-method .card {
    background-color: #fff;
    border: 1px solid var(--clr-common-border);
    border-radius: 0;
    margin-bottom: 10px
}

.payment-method .accordion .card:first-of-type {
    border: 1px solid var(--clr-common-border)
}

.card-header:first-child {
    border-radius: 0
}

.payment-method .card-header {
    background-color: #fff;
    border-bottom: 1px solid var(--clr-common-border)
}

.order-button-payment button {
    width: 100%
}

.product-details-img {
    margin-inline-end: 50px
}

@media(max-width:575px) {
    .product-details-img {
        margin-inline-end: 0
    }
}

.product-details-img img {
    width: 100%
}

.product-side-info .product-name {
    font-size: 26px
}

.product-side-info .product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-theme-1)
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-side-info .product-price {
        font-size: 18px
    }
}

.product-side-info p {
    margin-top: 30px;
    margin-bottom: 40px
}

.product-quantity-cart {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.product-quantity-form .cart-minus {
    height: 55px;
    width: 55px;
    border: none
}

.product-quantity-form .cart-plus {
    height: 55px;
    width: 55px;
    border: none
}

.product-quantity-form .cart-input {
    height: 55px;
    width: 55px;
    border: none;
    text-align: center
}

.product-quantity-cart .product-quantity-form {
    border: 2px solid var(--clr-common-border);
    border-radius: 10px;
    padding: 0 7px
}

.sidebar-action {
    background: var(--clr-common-white);
    height: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    width: 390px;
    padding: 30px;
    transition: .6s;
    overflow-y: scroll
}

@media(max-width:575px) {
    .sidebar-action {
        width: 320px
    }
}

.close-sidebar {
    background: var(--clr-bg-1);
    display: flex;
    align-items: center;
    gap: 10px;
    height: 30px;
    padding: 0 10px;
    border-radius: 4px;
    color: var(--clr-common-white);
    position: absolute;
    right: 30px;
    top: 30px
}

[dir=rtl] .close-sidebar {
    left: 30px;
    right: auto
}

.sidebar-cart {
    right: -100%
}

.sidebar-cart.cart-open {
    right: 0
}

.sidebar-wishlist {
    right: -100%
}

.sidebar-wishlist.wishlist-open {
    right: 0
}

.sidebar-filter {
    right: -100%
}

.sidebar-filter.filter-open {
    right: 0
}

.sidebar-filter .product-filters {
    padding: 0
}

.sidebar-filter .filter-widget-title {
    font-size: 18px
}

.sidebar-action-title {
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase
}

.sidebar-list-item {
    display: flex;
    gap: 20px
}

.sidebar-action-btn {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.sidebar-action-btn a {
    width: 100%;
    flex-wrap: wrap;
    white-space: nowrap
}

.sidebar-action-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.product-pricing span {
    font-size: 15px;
    font-weight: 500;
    color: var(--clr-common-heading);
    line-height: 1
}

.sidebar-list-item {
    display: flex;
    gap: 20px;
    border-top: 1px solid var(--clr-common-border);
    padding-top: 20px;
    position: relative;
    padding-inline-end: 20px
}

.sidebar-list-item .product-image {
    min-width: 90px;
    height: 80px
}

.sidebar-list-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sidebar-list-item .product-desc {
    padding: 0 0
}

.sidebar-list-item .product-name {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--clr-theme-1);
    font-weight: 600
}

.sidebar-list-item .remove-item {
    position: absolute;
    right: 0;
    top: 20px;
    color: var(--clr-common-heading)
}

.product-price-total {
    padding-top: 20px;
    border-top: 1px solid var(--clr-common-border);
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px
}

.product-price-total span {
    color: var(--clr-common-heading);
    font-weight: 500
}

.sidebar-action-btn a {
    flex-grow: 1;
    height: 60px;
    line-height: 58px;
    border-radius: 10px
}

.sidebar-action-btn .border-btn:before,
.sidebar-action-btn .border-btn:after {
    background: var(--clr-bg-1)
}

.product__modal {
    max-width: 900px;
    padding: 20px;
    padding-top: 27px
}

.product__modal-close {
    top: 15px;
    right: 15px;
    z-index: 1
}

[dir=rtl] .product__modal-close {
    left: 15px;
    right: auto
}

.product__modal-close button {
    color: var(--clr-common-white);
    display: block;
    line-height: 36px;
    text-align: center;
    background: var(--clr-bg-1);
    width: 38px;
    height: 38px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 1px solid var(--clr-bg-1);
    outline: none
}

.product__modal-close button:hover {
    background: var(--clr-common-white);
    color: var(--clr-theme-1)
}

.product__modal-wrapper {
    padding: 20px
}

.product__modal-content h4 {
    font-size: 24px;
    font-weight: 700;
    text-transform: none;
    padding: 0;
    padding-inline-end: 0;
    margin: 0;
    margin-bottom: 0;
    padding-inline-end: 65px;
    margin-bottom: 15px;
    text-transform: uppercase
}

.product__modal-des p {
    font-size: 14px;
    line-height: 26px
}

.product__modal-box .nav-tabs {
    border-bottom: 0
}

.product__modal-box .nav-link {
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none
}

.product__modal-links ul li {
    display: inline-block;
    margin-inline-end: 4px
}

.product__modal-links ul li a {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: var(--clr-common-white);
    border: 1px solid var(--clr-bg-1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    color: var(--clr-theme-1)
}

.product__modal-links ul li a:hover {
    color: var(--clr-common-white);
    background: var(--clr-bg-1);
    border-color: var(--clr-theme-1)
}

.product__modal .nav-tabs {
    border: none;
    justify-content: space-between
}

.product__modal .nav-link {
    border: 1px solid #f0f0f0;
position:relative;
margin-bottom:20px;
width:100%;
border-radius:5px
}

.product__modal .nav-link::before {
    display: none
}

.product__modal .nav-link.active {
    border-color: var(--clr-theme-1) !important
}

.product__modal .nav-link.active::after {
    position: absolute;
    content: "";
    top: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: transparent;
    border-bottom-color: var(--clr-theme-1)
}

.product__modal-form .product-quantity .cart-plus-minus input {
    height: 60px;
    line-height: 60px;
    border-radius: 0
}

.product__modal-box .tab-content {
    margin-bottom: 20px
}

.product__stock span {
    font-size: 14px;
    color: #777;
    text-transform: uppercase;
    display: inline-block
}

.product__stock span:first-child {
    color: var(--clr-theme-1);
    padding-inline-end: 5px;
    font-weight: 700
}

.product__price span {
    color: var(--clr-theme-1);
    font-size: 24px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 22px
}

.product__add-review span a {
    position: relative;
    padding-inline-end: 10px;
    margin-inline-end: 10px;
    color: var(--clr-theme-1);
    display: inline-block
}

.product__add-review span a::after {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background: var(--clr-bg-1)
}

[dir=rtl] .product__add-review span a::after {
    left: 0;
    right: auto
}

.product__add-review span a:hover {
    color: var(--clr-theme-1)
}

.product__add-review span:last-child a::after {
    display: none
}

.rating__shop ul {
    margin-inline-end: 35px;
    display: flex;
    gap: 4px
}

.product__modal-box .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.product__modal-box .nav-tabs .nav-item {
    width: calc((100% - 60px)/4)
}

.product__modal .nav-link img {
    width: 100%
}

.product__modal-img {
    background: var(--clr-theme-3);
    border-radius: 10px
}

.pricing-area-bg {
    background: var(--clr-bg-1)
}

.pricing-section-title .section-subtitle {
    color: #84a99c
}

.pricing-section-title .section-main-title {
    color: var(--clr-common-white)
}

.pricing-content {
    border: 2px solid #124936;
    border-radius: 10px 10px 0 0;
    border-bottom: 0;
    padding: 53px 38px 43px;
    text-align: center;
    position: relative;
    z-index: 2;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .pricing-content {
        padding: 53px 28px 43px
    }
}

.package-name {
    font-size: 16px;
    text-transform: uppercase;
    color: #84a99c;
    font-weight: 700;
    display: block;
    margin-bottom: 0
}

.package-price {
    font-size: 60px;
    font-weight: 700;
    color: var(--clr-common-white);
    display: block;
    font-family: poppins, sans-serif;
    margin-top: 27px;
    margin-bottom: 58px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
(max-width:450px) {
    .package-price {
        font-size: 50px
    }
}

.package-list li {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-common-white);
    text-transform: uppercase;
    border-bottom: 1px solid #134a37;
    padding-bottom: 16px;
    margin-bottom: 16px
}

.package-list li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0
}

.package-list li.n-inc {
    color: #445b53
}

.pricing-btn {
    border-radius: 0 0 10px 10px;
    overflow: hidden
}

.pricing-btn .fill-btn {
    width: 100%;
    background: #124936;
    border-radius: 0;
    border-color: #124936
}

.pricing-btn .fill-btn:hover {
    color: #124936;
    background: var(--clr-common-white);
    border-color: var(--clr-common-white)
}

.pricing-btn .fill-btn:hover i {
    animation: swing .3s
}

.pricing-btn .fill-btn:before,
.pricing-btn .fill-btn:after {
    display: none
}

.pricing-shape {
    position: absolute;
    z-index: -1;
    top: 20px;
    left: 0;
    right: 0
}

.single-pricing {
    position: relative
}

.single-pricing:hover .pricing-content {
    border-color: var(--clr-theme-2)
}

.single-pricing:hover .pricing-btn .fill-btn {
    background: var(--clr-theme-2);
    color: var(--clr-common-white);
    border-color: var(--clr-theme-2)
}

.bp-tag {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-common-white);
    border: 2px solid var(--clr-theme-2);
    border-radius: 10px 10px 0 0;
    height: 30px;
    text-align: center;
    line-height: 28px;
    border-bottom: 0;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 140px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .best-package {
        margin-top: 30px
    }
}

.best-package:hover .pricing-content {
    border-color: var(--clr-common-white);
    background: var(--clr-common-white)
}

.best-package .pricing-content {
    border-color: var(--clr-common-white);
    background: var(--clr-common-white)
}

.best-package .package-name {
    color: var(--clr-theme-2)
}

.best-package .package-price {
    color: var(--clr-theme-1)
}

.best-package .package-list li {
    color: var(--clr-theme-1);
    border-color: #f1f1f1
}

.best-package .package-list li.n-inc {
    color: #b0c1bb
}

.best-package .pricing-btn .fill-btn {
    background: var(--clr-theme-2);
    border-color: var(--clr-theme-2)
}

.best-package .pricing-shape {
    filter: grayscale(100%) opacity(.1)
}

.process-area-bg {
    background: var(--clr-theme-3)
}

.fact-area {
    position: relative;
    z-index: 2;
    padding-top: 215px;
    padding-bottom: 60px;
    overflow-x: clip
}

.fact-area-bg {
    background: var(--clr-bg-1)
}

.fact-title {
    font-weight: 700;
    color: #84a99c;
    text-transform: uppercase;
    display: block;
    margin-bottom: 32px;
    margin-top: -6px
}

.fact-title .section-subtitle {
    color: #84a99c
}

.fact-title .section-main-title {
    color: var(--clr-common-white)
}

.fact-number {
    font-size: 80px;
    font-weight: 700;
    color: var(--clr-common-white);
    font-family: poppins, sans-serif;
    display: block;
    margin-bottom: 45px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .fact-number {
        font-size: 70px
    }
}

@media(max-width:450px) {
    .fact-number {
        font-size: 60px
    }
}

.fact-single {
    text-align: center;
    margin-bottom: 50px
}

.fact-single p {
    color: #c5d8d1;
    margin-bottom: 0
}

.fact-content {
    padding: 0;
    max-width: 260px;
    margin: 0 auto
}

.fact-icon {
    margin-bottom: 15px
}

.fact-batch {
    position: absolute;
    width: 190px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: -16px 0 32px 0 rgba(0, 0, 0, .04);
    border-radius: 50%
}

.fact-batch img {
    width: 100%
}

.fact-plant-shape {
    position: relative
}

.fact-plant-shape:before {
    position: absolute;
    content: url(../img/shape/plant-shape.png);
    bottom: -117.5px;
    left: 0;
    z-index: -1;
    margin-left: -80px;
    transform-origin: bottom;
    animation: skew3deg 5s linear infinite
}

.fact-plant-shape:after {
    position: absolute;
    content: url(../img/shape/plant-shape-rotated.png);
    bottom: -117.5px;
    right: 0;
    z-index: -1;
    margin-right: -80px;
    transform-origin: bottom;
    animation: skew3deg 5s linear infinite 1s
}

.testimonial-area {
    position: relative;
    z-index: 2
}

.testimonial-video-thumb {
    position: relative;
    max-width: 540px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px) {
    .testimonial-video-thumb {
        margin-inline-end: 45px
    }
}

.testimonial-video-thumb img {
    width: 100%
}

.testimonial-video-thumb .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.testimonial-video-thumb .play-btn {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase
}

.testimonial-slide-wrapper.style-1 {
    margin-inline-start: -40px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .testimonial-slide-wrapper.style-1 {
        margin-inline-start: 0
    }
}

.style-1.testimonial-single {
    position: relative;
    padding-top: 60px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .style-1.testimonial-single {
        padding-top: 20px
    }
}

.style-1 .rating {
    background: var(--clr-theme-2);
    display: inline-flex;
    height: 30px;
    padding: 0 14px;
    line-height: 30px;
    border-radius: 15px;
    margin-bottom: 20px
}

.style-1 .rating a {
    font-size: 14px;
    font-weight: 400;
    color: var(--clr-common-white)
}

.style-1 .author-quote {
    font-size: 40px;
    line-height: 1.25;
    text-transform: uppercase;
    font-family: poppins, sans-serif;
    font-weight: 700;
    color: var(--clr-theme-1);
    letter-spacing: -1.3px;
    margin-bottom: 0
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .style-1 .author-quote {
        font-size: 34px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .style-1 .author-quote {
        font-size: 30px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .style-1 .author-quote {
        font-size: 34px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-1 .author-quote {
        font-size: 28px
    }
}

@media(max-width:450px) {
    .style-1 .author-quote {
        font-size: 22px
    }
}

.style-1 .testimonial-icon {
    font-size: 160px;
    color: #f5f5f5;
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0
}

.style-1.testimonial-author-meta {
    display: flex;
    gap: 20px;
    align-items: center
}

.style-1.testimonial-author-meta .author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden
}

.style-1.testimonial-author-meta .author-designation {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-theme-2);
    text-transform: uppercase;
    line-height: 1;
    display: block;
    margin-bottom: 5px
}

.style-1.testimonial-author-meta .author-name {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 0
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .style-1.testimonial-author-meta .author-name {
        font-size: 22px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-1.testimonial-author-meta .author-name {
        font-size: 20px
    }
}

.style-1 .author-img img {
    width: 100%
}

.testimonial-thumb-wrapper.style-1 {
    padding-top: 40px;
    border-top: 1px solid #ededed;
    margin-top: 30px
}

.swiper-slide .testimonial-author-meta.style-1 {
    opacity: .5;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.swiper-slide.swiper-slide-thumb-active .testimonial-author-meta.style-1 {
    opacity: 1
}

.testimonial-bg-style-2 {
    background: #f8f5f0;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    overflow: hidden
}

.style-2 .testimonial-content {
    padding: 50px 32px;
    background: var(--clr-common-white);
    border-radius: 10px;
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
    transition: .3s
}

@media only screen and (min-width:1200px) and (max-width:1399px),
(max-width:450px) {
    .style-2 .testimonial-content {
        padding: 48px 20px
    }
}

.style-2 .testimonial-content .item-counter {
    content: counter(item-counter, decimal-leading-zero);
    font-size: 200px;
    font-weight: 700;
    color: transparent;
    stroke: 2px #124634;
    font-family: poppins, sans-serif;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #124634;
    line-height: 1;
    transition: .3s;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    z-index: -1
}

@media only screen and (min-width:1200px) and (max-width:1399px),
(max-width:450px) {
    .style-2 .testimonial-content .item-counter {
        font-size: 170px
    }
}

.style-2 .testimonial-icon {
    width: 55px;
    height: 55px;
    background: var(--clr-theme-2);
    border-radius: 50%;
    color: var(--clr-common-white);
    font-size: 18px;
    line-height: 55px;
    position: relative;
    margin-inline-start: auto;
    margin-inline-end: auto;
    margin-bottom: 30px;
    transition: .3s
}

.style-2 .testimonial-icon::before {
    content: "";
    width: 16px;
    height: 16px;
    background: var(--clr-theme-2);
    position: absolute;
    left: 8px;
    bottom: -8px;
    clip-path: polygon(3% 0, 0% 100%, 100% 25%);
    transition: .3s
}

.style-2 .author-quote {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase;
    line-height: 1.5;
    font-family: poppins, sans-serif;
    margin-bottom: 30px;
    transition: .3s
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
(max-width:450px) {
    .style-2 .author-quote {
        font-size: 18px
    }
}

.style-2 .author-designation {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-theme-2);
    text-transform: uppercase;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
    transition: .3s
}

.style-2 .author-name {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 0;
    transition: .3s
}

.style-2 .author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-inline-start: auto;
    margin-inline-end: auto;
    position: relative;
    margin-bottom: -85px;
    z-index: 2
}

.style-2 .author-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    right: -6px;
    bottom: -6px;
    background: var(--clr-theme-2);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.style-2 .author-img img {
    width: 100%;
    border-radius: 50%
}

.style-2 .author-info {
    margin-bottom: 44px
}

.swiper-slide-active .style-2 .testimonial-content {
    background: var(--clr-bg-1)
}

.swiper-slide-active .style-2 .testimonial-content .item-counter {
    opacity: 1;
    visibility: visible
}

.swiper-slide-active .style-2 .author-img::before {
    opacity: 1;
    visibility: visible
}

.swiper-slide-active .style-2 .testimonial-icon {
    background: var(--clr-common-white);
    color: var(--clr-theme-1)
}

.swiper-slide-active .style-2 .testimonial-icon::before {
    background: var(--clr-common-white)
}

.swiper-slide-active .style-2 .author-quote {
    color: var(--clr-common-white)
}

.swiper-slide-active .style-2 .author-name {
    color: var(--clr-common-white)
}

.style-3.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

.style-3.testimonial-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.style-3.testimonial-slide-wrapper {
    width: 650px;
    height: 650px;
    margin-inline-start: auto;
    margin-inline-end: auto;
    background: var(--clr-common-white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    padding: 0 20px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-3.testimonial-slide-wrapper {
        position: relative;
        width: 100%;
        border-radius: 30px;
        height: auto;
        padding: 50px 20px
    }
}

@media(max-width:450px) {
    .style-3.testimonial-slide-wrapper {
        padding: 50px 15px
    }
}

.style-3.testimonial-slide-wrapper .testimonial-icon {
    position: absolute;
    top: 0;
    left: 50%;
    background: var(--clr-bg-1);
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(-50%, -50%)
}

.style-3.testimonial-slide-content-wrapper {
    width: 100%;
    padding-top: 140px;
    position: relative
}

.style-3.testimonial-slide-content-wrapper .wrapper-line-design {
    position: absolute;
    width: 1px;
    height: 60px;
    background: var(--clr-theme-2);
    left: 50%;
    transform: translateX(-50%);
    top: 50px
}

.style-3.testimonial-slide-content-wrapper .wrapper-line-design:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 20px;
    background: var(--clr-theme-2);
    bottom: 0;
    left: -11px
}

.style-3.testimonial-slide-content-wrapper .wrapper-line-design:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 20px;
    background: var(--clr-theme-2);
    bottom: 0;
    right: -11px
}

.style-3.testimonial-content-wrapper {
    text-align: center;
    max-width: 540px;
    margin-inline-start: auto;
    margin-inline-end: auto;
    margin-bottom: 24px
}

.style-3.testimonial-thumb-wrapper {
    width: 230px;
    margin-inline-start: auto;
    margin-inline-end: auto
}

@media(max-width:450px) {
    .style-3.testimonial-thumb-wrapper {
        width: 170px
    }
}

.style-3 .author-quote {
    font-size: 40px;
    line-height: 1.25;
    text-transform: uppercase;
    font-family: poppins, sans-serif;
    font-weight: 700;
    color: var(--clr-theme-1);
    letter-spacing: -1.3px;
    margin-bottom: 27px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .style-3 .author-quote {
        font-size: 36px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .style-3 .author-quote {
        font-size: 32px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-3 .author-quote {
        font-size: 28px
    }
}

@media(max-width:450px) {
    .style-3 .author-quote {
        font-size: 22px
    }
}

.style-3 .author-info .author-designation {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-theme-2);
    text-transform: uppercase;
    line-height: 1;
    display: block;
    margin-bottom: 6px
}

.style-3 .author-info .author-name {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 0
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .style-3 .author-info .author-name {
        font-size: 22px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-3 .author-info .author-name {
        font-size: 20px
    }
}

.style-3.testimonial-author-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: .3
}

.style-3.testimonial-author-meta .author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    cursor: pointer
}

@media(max-width:450px) {
    .style-3.testimonial-author-meta .author-img {
        width: 50px;
        height: 50px
    }
}

.style-3 .author-img img {
    width: 100%
}

.swiper-slide-thumb-active .style-3.testimonial-author-meta {
    opacity: 1
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .testimonial-3-nav {
        display: none
    }
}

.testimonial-3-nav-btn {
    width: 60px;
    height: 60px;
    background: var(--clr-common-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--clr-theme-1);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.testimonial-3-nav-btn:hover {
    background: var(--clr-bg-1);
    color: var(--clr-common-white)
}

.testimonial-3-nav-btn:hover:before {
    opacity: 1;
    visibility: visible
}

.testimonial-3-nav-btn:before {
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    border: 2px solid var(--clr-common-white);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.testimonial-3-nav-btn.testimonial-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -120px
}

.testimonial-3-nav-btn.testimonial-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -120px
}

.testimonial-bg-style-4 {
    position: absolute;
    width: 37%;
    height: 100%;
    right: 0;
    top: 0
}

[dir=rtl] .testimonial-bg-style-4 {
    left: 0;
    right: auto
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .testimonial-bg-style-4 {
        display: none
    }
}

.testimonial-bg-style-4:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--clr-bg-1);
    opacity: .9
}

.testimonial-bg-style-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1
}

.style-4 .testimonial-content {
    border: 2px solid var(--clr-theme-2);
    border-radius: 10px;
    background: var(--clr-common-white);
    position: relative;
    padding: 35px 48px 48px;
    text-align: left;
    z-index: 2
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .style-4 .testimonial-content {
        padding: 35px 38px 48px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-4 .testimonial-content {
        padding: 25px 28px 30px
    }
}

@media only screen and (min-width:992px) and ( max-width:1199px),
(max-width:450px) {
    .style-4 .testimonial-content {
        padding: 25px 18px 28px
    }
}

.style-4 .testimonial-content:hover .testimonial-4-shape {
    opacity: 1;
    transform: translateY(0)
}

.style-4 .testimonial-icon {
    display: none
}

.style-4 .author-quote {
    font-size: 34px;
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase;
    line-height: 1.45;
    font-family: poppins, sans-serif;
    margin-bottom: 30px;
    transition: .3s
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .style-4 .author-quote {
        font-size: 30px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-4 .author-quote {
        font-size: 28px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
(max-width:450px) {
    .style-4 .author-quote {
        font-size: 22px
    }
}

.style-4 .testimonial-author-meta {
    display: flex;
    gap: 20px;
    align-items: center
}

.style-4 .author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;
    z-index: 2
}

.style-4 .author-img img {
    width: 100%
}

.style-4 .author-meta-rating {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eaeaea;
    padding-top: 30px;
    align-items: center;
    gap: 30px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px),
(max-width:450px) {
    .style-4 .author-meta-rating {
        flex-direction: column;
        gap: 0;
        align-items: flex-start
    }
}

.style-4 .author-meta-rating .author-rating {
    margin-inline-start: 0
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px),
(max-width:450px) {
    .style-4 .author-meta-rating .author-rating {
        margin-inline-start: 90px
    }
}

.style-4 .item-counter {
    display: none
}

.style-4 .author-designation {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-theme-2);
    text-transform: uppercase;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
    transition: .3s
}

.style-4 .author-name {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 0;
    transition: .3s
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .style-4 .author-name {
        font-size: 22px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
(max-width:450px) {
    .style-4 .author-name {
        font-size: 20px
    }
}

.style-4 .rating a {
    font-size: 16px;
    color: #e5c21f
}

.testimonial-4-shape {
    position: absolute;
    z-index: -1;
    right: 18px;
    top: 18px;
    opacity: 0;
    transform: translateY(20px)
}

.testimonial-4-nav-button {
    width: 60px;
    height: 60px;
    border: 1px solid var(--clr-common-white);
    text-align: center;
    border-radius: 6px;
    line-height: 58px;
    color: var(--clr-common-white);
    font-size: 20px;
    position: relative;
    z-index: 2;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .testimonial-4-nav-button {
        border-color: var(--clr-theme-1);
        color: var(--clr-theme-1)
    }
}

.testimonial-4-nav-button:hover {
    color: var(--clr-theme-1);
    border-color: var(--clr-common-white);
    background: var(--clr-common-white)
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .testimonial-4-nav-button:hover {
        border-color: var(--clr-theme-2);
        background: var(--clr-theme-2);
        color: var(--clr-common-white)
    }
}

.testimonial-4-nav {
    display: flex;
    gap: 16px;
    justify-content: end
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .testimonial-4-nav {
        justify-content: flex-start
    }
}

.pricing-cta-wrapper {
    background: var(--clr-bg-1);
    border-radius: 10px;
    padding: 60px 0 60px 60px;
    position: relative;
    z-index: 1
}

[dir=rtl] .pricing-cta-wrapper {
    padding: 60px 60px 60px 0
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pricing-cta-wrapper {
        padding: 50px 30px
    }
    [dir=rtl] .pricing-cta-wrapper {
        padding: 50px 30px
    }
}

@media(max-width:450px) {
    .pricing-cta-wrapper {
        padding: 40px 20px
    }
    [dir=rtl] .pricing-cta-wrapper {
        padding: 40px 20px
    }
}

.pricing-cta-form label {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--clr-common-white);
    position: absolute;
    top: -30px;
    left: 0;
    line-height: 1
}

[dir=rtl] .pricing-cta-form label {
    right: 0;
    left: auto
}

.pricing-cta-form .single-input-field {
    margin-top: 30px;
    margin-bottom: 30px
}

.pricing-cta-form .single-input-field input {
    border: 2px solid #1c5240;
    border-radius: 6px;
    padding: 0 28px;
    padding-inline-end: 54px;
    background: var(--clr-bg-1);
    color: var(--clr-common-white)
}

.pricing-cta-form .single-input-field input::placeholder {
    font-size: 16px;
    color: #739589
}

.pricing-cta-form .single-input-field input:focus {
    border-color: var(--clr-theme-2)
}

.pricing-cta-form .single-input-field::after {
    color: var(--clr-common-white);
    right: 30px;
    font-size: 16px
}

[dir=rtl] .pricing-cta-form .single-input-field::after {
    left: 30px;
    right: auto
}

.pricing-cta-form .single-input-field .nice-select {
    border: 2px solid #1c5240;
    border-radius: 6px;
    padding: 0 28px;
    padding-inline-end: 28px;
    padding-inline-end: 54px;
    background: 0 0;
    color: #739589;
    height: 60px;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 56px
}

[dir=rtl] .pricing-cta-form .single-input-field .nice-select {
    text-align: right !important
}

.pricing-cta-form .single-input-field .nice-select::after {
    display: none
}

.pricing-cta-form .single-input-field .nice-select:focus {
    border-color: var(--clr-theme-2)
}

.pricing-cta-form .single-input-field .nice-select .list {
    border: 2px solid #1c5240;
    width: 100%;
    background: var(--clr-bg-1)
}

.pricing-cta-form .single-input-field .nice-select .option {
    font-size: 16px;
    color: #739589;
    text-transform: uppercase;
    font-weight: 700
}

[dir=rtl] .pricing-cta-form .single-input-field .nice-select .option {
    text-align: right !important
}

.pricing-cta-form .fill-btn {
    border-color: var(--clr-common-white);
    background: var(--clr-common-white);
    color: var(--clr-theme-1);
    border-radius: 6px;
    min-width: 200px;
    margin-top: 30px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pricing-cta-form .fill-btn {
        margin-top: 0;
        margin-bottom: 30px
    }
}

.pricing-cta-form .fill-btn:hover {
    border-color: var(--clr-common-white);
    background: var(--clr-bg-1);
    color: var(--clr-common-white)
}

.pricing-cta-form .fill-btn::before,
.pricing-cta-form .fill-btn::after {
    background: var(--clr-bg-1)
}

.pricing-cta-form .select-service-button {
    display: flex;
    gap: 25px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pricing-cta-form .select-service-button {
        flex-direction: column;
        gap: 0
    }
}

.estimated-price-wrapper {
    background: var(--clr-theme-2);
    border-radius: 6px;
    padding: 24px 40px 30px;
    position: relative
}

@media(max-width:450px) {
    .estimated-price-wrapper {
        padding: 24px 20px 30px
    }
}

.estimated-price-wrapper p {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-common-white);
    text-transform: uppercase;
    margin-bottom: 0
}

.estimated-price-wrapper .es-price-value {
    font-size: 60px;
    font-weight: 700;
    color: var(--clr-common-white);
    font-family: poppins, sans-serif;
    line-height: 1;
    display: block
}

@media(max-width:450px) {
    .estimated-price-wrapper .es-price-value {
        font-size: 36px;
        margin-top: 10px
    }
}

.es-price-tag {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%)
}

[dir=rtl] .es-price-tag {
    left: 40px;
    right: auto
}

@media(max-width:450px) {
    .es-price-tag {
        display: none
    }
}

.pricing-cta-img {
    width: 57%;
    position: absolute;
    bottom: 0;
    left: 55.42%;
    z-index: -1
}

[dir=rtl] .pricing-cta-img {
    right: 55.42%;
    left: auto
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pricing-cta-img {
        display: none
    }
}

.pricing-cta-img img {
    width: 100%
}

.newsletter-area {
    margin-bottom: -93px
}

.newsletter-wrapper {
    background: var(--clr-bg-1);
    padding: 53px 60px 17px;
    border-radius: 10px;
    position: relative;
    z-index: 2
}

@media(max-width:575px),
only screen and (min-width:576px) and (max-width:767px) {
    .newsletter-wrapper {
        padding: 53px 30px 17px
    }
}

@media(max-width:450px) {
    .newsletter-wrapper {
        padding: 53px 20px 17px
    }
}

.newsletter-text {
    margin-bottom: 30px
}

.newsletter-text p {
    font-size: 16px;
    font-weight: 700;
    color: #84a99c;
    text-transform: uppercase;
    margin-bottom: 0
}

.newsletter-text h2 {
    font-size: 50px;
    color: var(--clr-common-white);
    text-transform: uppercase;
    margin-bottom: 0
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .newsletter-text h2 {
        font-size: 46px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .newsletter-text h2 {
        font-size: 38px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .newsletter-text h2 {
        font-size: 48px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .newsletter-text h2 {
        font-size: 38px
    }
}

@media(max-width:575px) {
    .newsletter-text h2 {
        font-size: 38px
    }
}

@media(max-width:450px) {
    .newsletter-text h2 {
        font-size: 28px
    }
}

.newsletter-input-wrapper {
    position: relative
}

.newsletter-input-wrapper input {
    width: 100%;
    height: 60px;
    border: 2px solid var(--clr-common-white);
    background: var(--clr-common-white);
    border-radius: 30px;
    padding: 0 50px;
    outline: none;
    padding-inline-end: 200px
}

@media(max-width:450px) {
    .newsletter-input-wrapper input {
        padding-inline-end: 20px
    }
}

.newsletter-input-wrapper input::placeholder {
    color: #aeaeae
}

.newsletter-input-wrapper button {
    position: absolute;
    right: 5px;
    height: 50px;
    top: 5px;
    background: var(--clr-theme-2);
    border-color: var(--clr-theme-2)
}

@media(max-width:450px) {
    .newsletter-input-wrapper button {
        position: static;
        margin-top: 15px
    }
}

.newsletter-input-wrapper:before {
    position: absolute;
    content: "\f2b6";
    font-family: "font awesome 5 pro";
    font-weight: 700;
    color: var(--clr-theme-1);
    left: 30px;
    top: 16px
}

.newsletter-form {
    margin-bottom: 30px
}

.style-4.newsletter-wrapper {
    background: var(--clr-bg-1);
    padding: 53px 60px 21px;
    border-radius: 10px;
    position: relative;
    z-index: 2
}

@media(max-width:575px),
only screen and (min-width:576px) and (max-width:767px) {
    .style-4.newsletter-wrapper {
        padding: 53px 30px 17px
    }
}

@media(max-width:450px) {
    .style-4.newsletter-wrapper {
        padding: 53px 20px 17px
    }
}

.style-4.newsletter-area {
    margin-top: -95px;
    margin-bottom: 0
}

.style-4 .newsletter-input-wrapper input {
    width: 100%;
    height: 60px;
    border: 2px solid var(--clr-common-white);
    background: var(--clr-common-white);
    border-radius: 6px;
    padding: 0 50px;
    outline: none;
    padding-inline-end: 200px
}

@media(max-width:450px) {
    .style-4 .newsletter-input-wrapper input {
        padding-inline-end: 20px
    }
}

.style-4 .newsletter-input-wrapper button {
    position: absolute;
    right: 5px;
    height: 50px;
    top: 5px;
    background: var(--clr-theme-2);
    border-color: var(--clr-theme-2);
    border-radius: 6px
}

@media(max-width:450px) {
    .style-4 .newsletter-input-wrapper button {
        position: static;
        margin-top: 15px
    }
}

.style-4 .newsletter-input-wrapper button:hover,
.style-4 .newsletter-input-wrapper button:focus {
    background: var(--clr-bg-1);
    border-color: var(--clr-theme-1);
    color: var(--clr-common-white)
}

.style-4 .newsletter-input-wrapper button:before,
.style-4 .newsletter-input-wrapper button:after {
    background: var(--clr-bg-1)
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 10px;
    overflow: hidden
}

.newsletter-bg:before {
    background-image: -moz-linear-gradient(0deg, rgb(11, 61, 44) 0%, rgba(11, 61, 44, 0) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(11, 61, 44) 0%, rgba(11, 61, 44, 0) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(11, 61, 44) 0%, rgba(11, 61, 44, 0) 100%);
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

[dir=rtl] .newsletter-bg:before {
    transform: rotateY(180deg)
}

.newsletter-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.counter-area.style-1 {
    background: var(--clr-bg-1);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    margin-top: 40px;
}

.counter-area.style-1 .counter-bg-img-left {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%)
}

.counter-area.style-1 .counter-bg-img-right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotateY(180deg)
}

.style-1.single-counter {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 52px 0
}

.style-1.single-counter .counter-number {
    font-size: 80px;
    color: var(--clr-common-white);
    line-height: 1;
    margin-bottom: 10px
}

@media only screen and (min-width:992px) and (max-width:1199px),
(max-width:450px) {
    .style-1.single-counter .counter-number {
        font-size: 30px
    }
    .style-1.single-counter{
        padding: 20px 0;
    }
}

.style-1.single-counter .counter-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-common-white);
    text-transform: uppercase;
    margin-bottom: 0
}

.style-1.single-counter .counter-serial {
    font-size: 200px;
    color: #144c39;
    font-family: poppins, sans-serif;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: .7;
    z-index: -1;
    background: 0 0;
    stroke: 1px #144c39;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #144c39
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .style-1.single-counter .counter-serial {
        font-size: 160px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
(max-width:450px) {
    .style-1.single-counter .counter-serial {
        font-size: 80px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .style-1.single-counter .counter-serial {
        font-size: 180px
    }
}

.style-4.features-title-area {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--clr-bg-1)
}

.services-wrapper {
    margin-top: -100px;
}

.style-4.features-section-title .section-subtitle {
    color: #629483
}

.style-4.features-section-title .section-main-title {
    color: var(--clr-common-white)
}

.style-4 .single-feature {
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .06);
    border-radius: 6px
}

.style-4 .single-feature:hover .features-thumb img {
    transform: scale(1.05)
}

.style-4 .single-feature-inner {
    display: flex;
    background: var(--clr-common-white);
    border-radius: 6px;
    overflow: hidden
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-4 .single-feature-inner {
        flex-direction: column
    }
}

.style-4 .features-thumb {
    width: 47%;
    overflow: hidden
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .style-4 .features-thumb {
        width: 42%
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-4 .features-thumb {
        width: 100%
    }
}

.style-4 .features-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.style-4 .features-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1
}

.style-4 .feature-title {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 25px
}

.style-4 .feature-offers ul li {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--clr-theme-1);
    font-weight: 700;
    border-bottom: 1px solid #efefef;
    padding-bottom: 6px;
    margin-bottom: 8px
}

.style-4 .feature-offers ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0
}

.style-4 .features-text {
    padding: 45px 50px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .style-4 .features-text {
        padding: 45px 35px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .style-4 .features-text {
        padding: 35px 30px
    }
}

@media(max-width:450px) {
    .style-4 .features-text {
        padding: 45px 30px
    }
}

.style-4 .feature-btn .fill-btn {
    width: 100%;
    border-radius: 0;
    justify-content: space-between;
    padding: 0 50px
}

@media(max-width:450px) {
    .style-4 .feature-btn .fill-btn {
        padding: 0 30px
    }
}

.style-4 .feature-btn .fill-btn:hover {
    border-color: var(--clr-theme-2);
    background: var(--clr-theme-2);
    color: var(--clr-common-white)
}

.style-4 .feature-btn .fill-btn:before,
.style-4 .feature-btn .fill-btn:after {
    display: none
}

.style-4 .features-wrapper {
    margin-top: -80px
}

.style-4.clients-wrapper {
    padding-top: 60px;
    border-top: 1px solid #e8e8e8;
    padding-bottom: 60px;
    margin-top: 90px
}

.style-4 .features-area {
    padding-bottom: 60px
}

.category-basic {
    position: relative;
    border-radius: 10px;
    overflow: hidden
}

.category-basic:hover .category-thumb::before {
    height: 100%
}

.category-basic .category-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 61, 44, 0.05) 0%, rgba(11, 61, 44, 0.7) 100%);
    z-index: 1;
    transition: all .5s
}

.category-basic .category-thumb img {
    width: 100%
}

.category-basic .category-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1
}

.category-basic .in-stock {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--clr-bg-1);
    color: var(--clr-common-white);
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 20px;
    border-radius: 6px 6px 0 0
}

.category-basic .category-name {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--clr-common-white);
    margin-bottom: 0;
    padding: 13px 36px;
    line-height: 34px;
    border-radius: 6px 6px
}

@media(max-width:450px) {
    .category-basic .category-name {
        font-size: 20px;
        padding: 13px 20px
    }
}

.category-area-basic .container,
.category-area-basic .container-lg,
.category-area-basic .container-md,
.category-area-basic .container-sm,
.category-area-basic .container-xl,
.category-area-basic .container-xxl {
    max-width: 1850px
}

@keyframes iconltr {
    49% {
        transform: translateX(30%)
    }
    50% {
        opacity: 0;
        transform: translateX(-30%)
    }
    51% {
        opacity: 1
    }
}

.tp-theme-settings-area {
    position: fixed;
    top: 50%;
    left: 0;
    width: 240px;
    background-color: var(--clr-common-white);
    border: 1px solid #eaeaef;
    -webkit-transform: translateY(-50%) translateX(-100%);
    -moz-transform: translateY(-50%) translateX(-100%);
    -ms-transform: translateY(-50%) translateX(-100%);
    transform: translateY(-50%) translateX(-100%);
    z-index: 991;
    direction: ltr;
    border-bottom-right-radius: 4px
}

.tp-theme-settings-area.settings-opened {
    -webkit-transform: translateY(-50%) translateX(0%);
    -moz-transform: translateY(-50%) translateX(0%);
    -ms-transform: translateY(-50%) translateX(0%);
    transform: translateY(-50%) translateX(0%)
}

.tp-theme-settings-area.settings-opened .tp-theme-settings-gear {
    opacity: 0
}

.tp-theme-settings-area.settings-opened .tp-theme-settings-close {
    opacity: 1
}

.tp-theme-settings-open {
    position: absolute;
    top: -1px;
    left: 100%
}

.tp-theme-settings-open button {
    background-color: var(--clr-common-white);
    border: 1px solid #eaeaef;
    border-left: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 24px;
    color: var(--clr-common-black);
    position: relative;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.tp-theme-settings-gear {
    display: inline-block;
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-ms-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.tp-theme-settings-close {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0
}

.tp-theme-header-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px
}

.tp-theme-wrapper {
    padding: 20px 30px 30px
}

.tp-theme-toggle {
    text-align: center
}

.tp-theme-toggle-main {
    display: inline-block;
    width: 160px;
    margin: auto;
    position: relative;
    z-index: 1;
    background-color: #f0f0f5;
    padding: 4px;
    border-radius: 20px
}

.tp-theme-toggle-light,
.tp-theme-toggle-dark {
    display: inline-block;
    width: 48%;
    height: 26px;
    line-height: 26px
}

.tp-theme-toggle input {
    display: none
}

.tp-theme-toggle:hover {
    cursor: pointer
}

.tp-theme-toggle label {
    color: var(--clr-common-black);
    font-size: 14px;
    font-weight: 500
}

.tp-theme-toggle label:hover {
    cursor: pointer
}

.tp-theme-toggle #tp-theme-toggler {
    display: none
}

.tp-theme-toggle #tp-theme-toggler:checked+i {
    right: calc(50% - 4px)
}

.tp-theme-toggle-slide {
    position: absolute;
    top: 50%;
    right: 4px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50%;
    height: 26px;
    color: var(--clr-common-black);
    background-color: var(--clr-common-white);
    border-radius: 30px;
    -webkit-transform: translate3d(0, 0);
    transform: translate3d(0, 0);
    -webkit-transition: .2s cubic-bezier(.25, 1, .5, 1);
    -o-transition: .2s cubic-bezier(.25, 1, .5, 1);
    transition: .2s cubic-bezier(.25, 1, .5, 1);
    z-index: -1
}

.tp-theme-dir {
    text-align: center
}

.tp-theme-dir-main {
    display: inline-block;
    width: 160px;
    margin: auto;
    position: relative;
    z-index: 1;
    background-color: #f0f0f5;
    padding: 4px;
    border-radius: 20px
}

.tp-theme-dir-ltr,
.tp-theme-dir-rtl {
    display: inline-block;
    width: 48%;
    height: 26px;
    line-height: 26px
}

.tp-theme-dir input {
    display: none
}

.tp-theme-dir:hover {
    cursor: pointer
}

.tp-theme-dir label {
    color: var(--clr-common-black);
    font-size: 14px;
    font-weight: 500
}

.tp-theme-dir label:hover {
    cursor: pointer
}

.tp-theme-dir #tp-dir-toggler {
    display: none
}

.tp-theme-dir #tp-dir-toggler:checked+i {
    right: calc(50% - 4px)
}

.tp-theme-dir-slide {
    position: absolute;
    top: 50%;
    right: 4px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50%;
    height: 26px;
    color: var(--clr-common-black);
    background-color: var(--clr-common-white);
    border-radius: 30px;
    -webkit-transform: translate3d(0, 0);
    transform: translate3d(0, 0);
    -webkit-transition: .2s cubic-bezier(.25, 1, .5, 1);
    -o-transition: .2s cubic-bezier(.25, 1, .5, 1);
    transition: .2s cubic-bezier(.25, 1, .5, 1);
    z-index: -1
}

.tp-theme-color-item.active button::before {
    opacity: 1;
    visibility: visible
}

.tp-theme-color-btn {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: relative
}

.tp-theme-color-btn::before {
    position: absolute;
    content: "\f00c";
    font-weight: 600;
    font-family: "font awesome 5 pro";
    color: var(--clr-common-white);
    font-size: 16px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#4e9f24"] {
    background-color: #4e9f24
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#0d640b"] {
    background-color: #0d640b
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#138c17"] {
    background-color: #138c17
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#73c100"] {
    background-color: #73c100
}

.tp-theme-color-input {
    margin-top: 15px
}

.tp-theme-color-input h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px
}

.tp-theme-color-input label {
    display: inline-block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--clr-bg-1)
}

.tp-theme-color-input label:hover {
    cursor: pointer
}

.tp-theme-color-input input {
    display: none
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem
}

footer {
    overflow: hidden
}

.footer-area {
    background: var(--clr-bg-1);
    position: relative;
    z-index: 2;
    overflow-x: clip;
    overflow-y: clip
}

.footer-bg-shape {
    position: absolute;
    bottom: -25px;
    z-index: -1
}

.footer-widget-title h4 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-common-white);
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 18px
}

.footer-widget-title h4:after {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    background: var(--clr-theme-2);
    bottom: 0;
    left: 0
}

[dir=rtl] .footer-widget-title h4:after {
    right: 0;
    left: auto
}

.footer-widget ul li {
    margin-bottom: 8px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:450px) {
    .footer-widget ul li {
        margin-bottom: 3px
    }
    .whats-app
    {
        top: 48vh;
    }
    .whats-app img
    {
        max-width: 40px;
    }
    .footer-widget-title h4
    {
        font-size: 17px;    margin-bottom: 9px;
    }
    .mb-40 {
    margin-bottom: 20px;
}
}

.footer-widget ul li:last-child {
    margin-bottom: 0
}

.footer-widget ul li a {
    font-weight: 500;
    color: var(--clr-common-white);
    text-transform: capitalize;
    font-size: 16px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .footer-widget ul li a {
        font-size: 15px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:450px) {
    .footer-widget ul li a {
        font-size: 14px
    }
}

.footer-widget ul li a:hover {
    color: var(--clr-theme-2)
}

.footer-widget p {
    color: #8ea89f
}

.single-contact {
    display: flex;
    gap: 0
}

.single-contact .contact-icon {
    font-size: 16px;
    color: #4d7869;
    width: 35px;
    min-width: 35px
}

.single-contact p {
    margin-bottom: 0
}

.single-contact p a:hover {
    color: var(--clr-theme-2)
}

.footer-contact ul li {
    margin-bottom: 10px;
    padding-bottom: 13px;
    border-bottom: 1px solid #164837
}

.footer-contact ul li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 30px
}

.footer-social span {
    font-weight: 700;
    color: var(--clr-common-white);
    text-transform: uppercase
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:450px) {
    .footer-social span {
        font-size: 14px
    }
}

.social-links ul {
    display: flex;
    gap: 16px
}

.social-links ul li {
    margin-bottom: 0
}

.social-links ul li a {
    color: #689082
}

.social-links ul li a:hover {
    color: var(--clr-theme-2)
}

.support-meta {
    display: flex;
    gap: 20px;
    align-items: center
}

.support-meta .irc-item-icon {
    width: 60px;
    height: 60px;
    background: var(--clr-theme-2);
    color: var(--clr-common-white);
    font-size: 30px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%
}

.support-meta .support-number {
    font-size: 20px;
    color: var(--clr-common-white);
    font-weight: 700
}

.support-meta .support-number a:hover {
    color: var(--clr-theme-2)
}

.support-meta .irc-item-content p {
    margin-bottom: 0
}

.footer-widget {
    overflow: hidden
}

.footer1-widget1 {
    margin-inline-end: -30px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .footer1-widget1 {
        margin-inline-start: 0;
        margin-inline-end: -20px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer1-widget1 {
        margin-inline-start: 0;
        margin-inline-end: 0
    }
    .pb-90 {
    padding-bottom: 30px;
}
.pt-120 {
    padding-top:40px;
}

}

.footer1-widget2 {
    margin-inline-start: 80px;
    margin-inline-end: -30px
}

.footer1-widget2 ul {
    width: 50%;
    float: left
}

[dir=rtl] .footer1-widget2 ul {
    float: right
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .footer1-widget2 {
        margin-inline-start: 55px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .footer1-widget2 {
        margin-inline-start: 20px;
        margin-inline-end: -20px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer1-widget2 {
        margin-inline-start: 0;
        margin-inline-end: 0
    }
}
/*
.footer1-widget3 {
    margin-inline-start: 70px
}*/

@media only screen and (min-width:992px) and (max-width:1199px) {
    .footer1-widget3 {
        margin-inline-start: 40px;
        margin-inline-end: -40px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer1-widget3 {
        margin-inline-start: 0;
        margin-inline-end: 0
    }
}

.copyright1-area {
    background: #083626;
    padding: 20px 0
}

.copyright1-text {
    font-weight: 700;
    color: #a0b8b0;
    text-transform: uppercase;
    text-align: center
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .copyright1-text {
        margin: 15px 0
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:450px) {
    .copyright1-text {
        font-size: 14px
    }
}

.copyright1-text a {
    color: var(--clr-common-white)
}

.copyright1-text a:hover {
    color: var(--clr-theme-2)
}

.go-top {
    width: 60px;
    height: 60px;
    text-align: center;
    display: inline-block;
    background: var(--clr-theme-2);
    line-height: 60px;
    font-size: 20px;
    color: var(--clr-common-white);
    border-radius: 50%
}

.go-top:hover,
.go-top:focus {
    background: var(--clr-common-white);
    color: var(--clr-theme-1)
}

.go-top-btn {
    display: flex;
    justify-content: end
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .go-top-btn {
        justify-content: center
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer-logo {
        text-align: center
    }
}

.footer-area2 {
    overflow-y: visible
}

.footer-area2-bg {
    background: #0f3d2d
}

.footer2-widget1 ul {
    width: 50%;
    float: left
}

[dir=rtl] .footer2-widget1 ul {
    float: right
}

.footer2-widget1 {
    margin-inline-end: 55px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .footer2-widget1 {
        margin-inline-end: 30px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .footer2-widget1 {
        margin-inline-end: 0
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer2-widget1 {
        margin-inline-end: 0
    }
}

.footer2-widget2 {
    margin-inline-end: 50px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .footer2-widget2 {
        margin-inline-end: 10px;
        margin-inline-start: 10px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer2-widget2 {
        margin-inline-end: 0
    }
}

.footer2-widget3 {
    margin-inline-start: -50px;
    margin-inline-end: 80px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .footer2-widget3 {
        margin-inline-start: -10px;
        margin-inline-end: 30px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer2-widget3 {
        margin-inline-start: 0;
        margin-inline-end: 0
    }
}

.footer2-widget4 {
    margin-inline-start: -30px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .footer2-widget4 {
        margin-inline-start: -30px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer2-widget4 {
        margin-inline-start: 0
    }
}

.instagam-shots {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 400px
}

.instagam-shots a {
    border-radius: 7px;
    overflow: hidden;
    width: calc((100% - 30px)/3);
    position: relative
}

.instagam-shots a:hover::before {
    opacity: 1
}

.instagam-shots a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 61, 44, 0.5) 0%, rgba(11, 61, 44, 0.5) 100%);
    z-index: 1;
    opacity: 0
}

.instagam-shots a img {
    width: 100%
}

.copyright2-area {
    background: #0f3d2d
}

.copyright2-inner {
    border-top: 1px solid #1b4e3c;
    padding: 24px 0
}

.copyright2-inner .footer-links {
    display: flex;
    gap: 50px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .copyright2-inner .footer-links {
        justify-content: center
    }
}

.copyright2-inner .footer-links a {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-common-white)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:450px) {
    .copyright2-inner .footer-links a {
        font-size: 14px
    }
}

.copyright2-inner .footer-links a:hover {
    color: var(--clr-theme-2)
}

.copyright2-text {
    font-weight: 700;
    color: #a0b8b0;
    text-transform: uppercase;
    text-align: right
}

[dir=rtl] .copyright2-text {
    text-align: left
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .copyright2-text {
        margin-top: 15px;
        text-align: center
    }
    [dir=rtl] .copyright2-text {
        text-align: center
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:450px) {
    .copyright2-text {
        font-size: 14px
    }
}

.copyright2-text a {
    color: var(--clr-common-white)
}

.copyright2-text a:hover {
    color: var(--clr-theme-2)
}

.banner-plant-shape {
    position: relative
}

.banner-plant-shape:before {
    position: absolute;
    content: url(../img/shape/plant-shape-big.png);
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translate(-30%, -50%);
    filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(226deg) brightness(107%) contrast(101%);
    opacity: .3
}

.banner-plant-shape:after {
    position: absolute;
    content: url(../img/shape/plant-shape-big.png);
    top: 50%;
    right: 0;
    z-index: -1;
    transform: translate(30%, -50%) rotateY(180deg);
    filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(226deg) brightness(107%) contrast(101%);
    opacity: .3
}

.style-3.footer-top-area {
    background: var(--clr-bg-1);
    padding: 25px 0
}

.style-3 .footer-top-social {
    display: flex;
    justify-content: end
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-3 .footer-top-social {
        justify-content: center
    }
}

.style-3 .social-links ul {
    display: flex;
    gap: 10px
}

.style-3 .social-links ul li a {
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 58px;
    color: var(--clr-common-white);
    font-size: 18px;
    display: inline-block;
    background: #164a38;
    border-radius: 50%
}

.style-3 .social-links ul li a:hover {
    color: #164a38;
    background: var(--clr-common-white)
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .style-3 .footer-logo {
        margin-bottom: 20px
    }
}

.footer-area3 {
    overflow-y: visible
}

.footer-area3-bg {
    background: var(--clr-theme-3)
}

.copyright3-area {
    background: var(--clr-theme-3)
}

.copyright3-inner {
    border-top: 0;
    padding: 27px 30px;
    background: var(--clr-common-white);
    border-radius: 10px 11px 0 0
}

@media(max-width:450px) {
    .copyright3-inner {
        padding: 27px 20px
    }
}

.footer-links {
    display: flex;
    gap: 50px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer-links {
        justify-content: center
    }
}

.footer-links a {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-theme-1)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:450px) {
    .footer-links a {
        font-size: 14px
    }
}

.footer-links a:hover {
    color: var(--clr-theme-2)
}

.copyright3-text {
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase;
    text-align: right
}

[dir=rtl] .copyright3-text {
    text-align: left
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .copyright3-text {
        margin-top: 5px;
        text-align: center
    }
    [dir=rtl] .copyright3-text {
        text-align: center
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:450px) {
    .copyright3-text {
        font-size: 14px
    }
}

.copyright3-text a {
    color: var(--clr-theme-1)
}

.copyright3-text a:hover {
    color: var(--clr-theme-2)
}

.footer3-widget .footer-widget-title h4 {
    color: var(--clr-theme-1)
}

.footer3-widget.footer-widget ul li a {
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase;
    font-size: 16px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:450px) {
    .footer3-widget.footer-widget ul li a {
        font-size: 14px
    }
}

.footer3-widget.footer-widget ul li a:hover {
    color: var(--clr-theme-2)
}

.footer3-widget1 ul {
    width: 50%;
    float: left
}

[dir=rtl] .footer3-widget1 ul {
    float: right
}

.footer3-inner.footer-plant-shape::before {
    content: url(../img/shape/plant-shape-big-gray.png);
    bottom: -142.5px
}

.footer3-inner.footer-plant-shape::after {
    content: url(../img/shape/plant-shape-big-gray-rotated.png);
    bottom: -142.5px
}

.footer-blog {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.footer-blog .blog-thumb {
    width: 80px;
    height: 80px;
    border-radius: 7px;
    overflow: hidden;
    min-width: 80px;
    position: relative
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .footer-blog .blog-thumb {
        width: 60px;
        height: 70px;
        min-width: 60px
    }
}

.footer-blog .blog-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 61, 44, 0.5) 0%, rgba(11, 61, 44, 0.5) 100%);
    z-index: 1;
    opacity: 0
}

.footer-blog .blog-meta-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-theme-2);
    text-transform: uppercase;
    display: block;
    line-height: 1;
    margin-bottom: 8px
}

.footer-blog .blog-title {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 26px;
    margin-bottom: 0
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:450px) {
    .footer-blog .blog-title {
        font-size: 14px
    }
}

.footer-blog .blog-title a:hover {
    color: var(--clr-theme-2)
}

.footer-blog .blog-single {
    display: flex;
    gap: 20px;
    align-items: center
}

.footer-blog .blog-single:hover .blog-thumb::before {
    opacity: 1
}

.footer3-widget1 {
    margin-inline-end: 40px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .footer3-widget1 {
        margin-inline-end: 0
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer3-widget1 {
        margin-inline-end: 0
    }
}

.footer3-widget2 {
    margin-inline-end: 80px;
    margin-inline-start: 0
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .footer3-widget2 {
        margin-inline-end: 40px;
        margin-inline-start: -10px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer3-widget2 {
        margin-inline-start: 0;
        margin-inline-end: 0
    }
}

.footer3-widget3 {
    margin-inline-start: -80px;
    margin-inline-end: 50px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .footer3-widget3 {
        margin-inline-start: -40px;
        margin-inline-end: 10px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer3-widget3 {
        margin-inline-start: 0;
        margin-inline-end: 0
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .footer3-widget4 {
        margin-inline-start: -10px
    }
}

.footer-4-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1
}

[dir=rtl] .footer-4-bg-img {
    right: 0;
    left: auto
}

.footer-4-bg-img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: -moz-linear-gradient(0deg, rgba(11, 61, 44, 0.705) 0%, rgb(11, 61, 44) 15%, rgb(11, 61, 44) 85%, rgba(11, 61, 44, 0.705) 100%);
    background-image: -webkit-linear-gradient(0deg, rgba(11, 61, 44, 0.705) 0%, rgb(11, 61, 44) 15%, rgb(11, 61, 44) 85%, rgba(11, 61, 44, 0.705) 100%);
    background-image: -ms-linear-gradient(0deg, rgba(11, 61, 44, 0.705) 0%, rgb(11, 61, 44) 15%, rgb(11, 61, 44) 85%, rgba(11, 61, 44, 0.705) 100%)
}

[dir=rtl] .footer-4-bg-img:before {
    right: 0;
    left: auto
}

.footer-4-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.footer4-widget1 {
    text-align: center
}

.footer4-widget1 .footer-logo {
    margin-bottom: 32px
}

.footer4-widget1 .border-btn {
    border-color: #305a4b;
    color: var(--clr-common-white);
    height: 60px;
    font-size: 20px;
    border-width: 2px
}

.footer4-widget1 .border-btn:hover {
    border-color: var(--clr-theme-2);
    background: var(--clr-theme-2)
}

.footer4-widget1 .footer-social {
    justify-content: center;
    gap: 10px 25px;
    align-items: center;
    margin-top: 50px
}

@media(max-width:450px) {
    .footer4-widget1 .footer-social {
        flex-direction: column
    }
}

.footer4-widget1 .social-links ul li a {
    color: var(--clr-common-white);
    font-size: 16px;
    border: 2px solid #164d3a;
    height: 50px;
    width: 50px;
    display: inline-block;
    line-height: 46px;
    border-radius: 6px
}

.footer4-widget1 .social-links ul li a:hover {
    border-color: var(--clr-theme-2);
    background: var(--clr-theme-2)
}

.footer4-widget1 .social-links ul {
    display: flex;
    gap: 10px
}

.footer4-widget1 .footer-social span {
    font-size: 16px
}

.footer4-widget p {
    font-size: 20px;
    color: #f8f5f0;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 32px;
    text-transform: uppercase
}

@media(max-width:450px) {
    .footer4-widget p {
        font-size: 16px
    }
}

.footer4-inner {
    position: relative
}

.footer-4-plant-shape {
    position: relative
}

.footer-4-plant-shape:before {
    position: absolute;
    content: url(../img/shape/plant-shape-4.png);
    top: 50%;
    left: 0;
    z-index: -1;
    transform-origin: bottom;
    margin-top: -131px;
    margin-inline-start: 4%;
    animation: skew3deg 5s linear infinite
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .footer-4-plant-shape:before {
        margin-inline-start: -10%
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer-4-plant-shape:before {
        margin-inline-start: -30%
    }
}

[dir=rtl] .footer-4-plant-shape:before {
    right: 0;
    left: auto
}

.footer-4-plant-shape:after {
    position: absolute;
    content: url(../img/shape/plant-shape-4.png);
    top: 50%;
    right: 0;
    z-index: -1;
    transform-origin: bottom;
    margin-top: -131px;
    margin-inline-end: 4%;
    animation: skew3deg 5s linear infinite 1s
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .footer-4-plant-shape:after {
        margin-inline-end: -10%
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer-4-plant-shape:after {
        margin-inline-end: -30%
    }
}

[dir=rtl] .footer-4-plant-shape:after {
    left: 0;
    right: auto
}

@keyframes skew3deg {
    0% {
        transform: skewX(0deg)
    }
    25% {
        transform: skewX(-3deg)
    }
    50% {
        transform: skewX(0deg)
    }
    75% {
        transform: skewX(3deg)
    }
    100% {
        transform: skewX(0deg)
    }
}

.footer-area5 {
    border-top: 1px solid var(--clr-theme-1)
}

.footer-area5-bg {
    background: var(--clr-common-white)
}

.footer5-widget1 {
    text-align: center;
    max-width: 655px;
    margin: 0 auto
}

.footer5-widget p {
    color: var(--clr-theme-1);
    font-size: 18px
}

.footer5-widget .footer-logo {
    margin-bottom: 45px
}

.footer5-widget .footer-text {
    margin-bottom: 45px
}

.footer5-widget .newsletter-input-wrapper {
    max-width: 570px;
    margin: 0 auto
}

.footer5-widget .newsletter-input-wrapper input {
    border-color: var(--clr-theme-1);
    border-radius: 6px
}

.footer5-widget .fill-btn-rounded {
    border-radius: 6px
}

.copyright5-area {
    border-top: 1px solid var(--clr-theme-1);
    padding: 26px 0
}

.copyright5-text {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-theme-1);
    text-align: center
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .copyright5-text {
        margin-top: 10px
    }
}

@media(max-width:450px) {
    .copyright5-text {
        font-size: 14px
    }
}

.copyright5-text a:hover {
    color: var(--clr-theme-2)
}

@media only screen and (min-width:992px) and (max-width:1199px),
(max-width:450px) {
    .copyright5-inner .footer-links {
        gap: 35px
    }
}

.copyright5-inner .footer-social {
    justify-content: flex-end;
    margin-top: 0
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .copyright5-inner .footer-social {
        justify-content: center;
        margin: 10px 0
    }
}

.copyright5-inner .social-links ul {
    gap: 23px
}

.copyright5-inner .social-links ul li a {
    color: var(--clr-theme-1)
}

.copyright5-inner .social-links ul li a:hover {
    color: var(--clr-theme-2)
}