/* Varialbes */
:root {
  --font-default: "Nunito", serif;
  --font-secondary: "Poppins", serif;
  --fontawesome: "Font Awesome 5 Pro";
  --black: #000000;
  --dark: #468b40;
  --dark-secondary: #1f1e17;
  --white: #ffffff;
  --color-secondary: #468b40;
  --color-primary: #f6b01b;
  --color-heading: #020202;
  --color-paragraph: #666666;
  --box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
  --box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
  --bg-gray: #e9f1ee;
  --bg-gradient: linear-gradient(
    97deg,
    #468b40 50%,
    rgba(252, 197, 27, 1) 100%
  );
}

/* ============================================================== 
     # Reset Browsers
=================================================================== */

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

body,
html {
  height: 100%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
table,
th,
td,
tr,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

.wrapper {
  height: 100%;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 5px;
  max-width: 100%;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a img {
  border: none;
}

a:active {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
  opacity: 1;
}

a:focus {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a:hover {
  outline: none;
  text-decoration: none;
  color: var(--color-secondary);
  opacity: 1;
}

.secondary a:hover {
  color: var(--color-secondary);
}

button {
  outline: medium none;
}

iframe {
  border: none;
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #eeeeee;
}

pre {
  display: block;
  margin: 0 0 30px;
  padding: 9.5px;
  word-wrap: break-word;
  word-break: break-all;
  color: #333333;
  border: 1px solid #ededed;
  border-radius: inherit;
  background-color: #f9f9f9;
  font-size: 13px;
  line-height: 1.42857143;
}

input {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  min-height: 50px;
}

input:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

textarea:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

select:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

ul {
  list-style-type: none;
}

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

b {
  font-weight: 600;
}

strong {
  font-weight: 600;
}

.row {
  --bs-gutter-x: 30px;
}

/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  overflow-x: hidden;
  background-color: var(--white);
  color: var(--color-paragraph);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.2;
  font-family: var(--font-default);
  letter-spacing: 0;
  margin: 0;
  margin-bottom: 15px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

a,
.btn,
button {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  outline: medium none;
  text-decoration: none;
  font-weight: 600;
}

p {
  color: var(--color-paragraph);
  margin: 0 0 25px;
  text-transform: none;
  font-weight: 500;
  font-family: var(--font-default);
  text-align: justify;
}

/* ============================================================== 
    # Helper CSS
=================================================================== */

.container-full {
  padding: 0 15px;
  margin: auto;
  max-width: 1400px;
}

@media (min-width: 576px) {
  .container-full {
    max-width: 540px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container-full {
    max-width: 720px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container-full {
    max-width: 960px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container-full {
    max-width: 100%;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }

  .box-layout {
    width: 94%;
    margin: auto;
    border-radius: 30px;
  }
}

.container-fill {
  padding: 0 15px;
  margin: auto;
  max-width: 100%;
}

@media (min-width: 576px) {
  .container-fill {
    max-width: 540px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container-fill {
    max-width: 720px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container-fill {
    max-width: 960px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container-fill {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

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

.bg-cover {
  background-position: center center !important;
  background-size: cover !important;
}

.bg-fixed {
  background-attachment: fixed !important;
  background-position: center center !important;
  background-size: cover !important;
}

.bg-fit {
  background-size: 100% 100% !important;
  background-position: center !important;
}

.bg-gray {
  background: var(--bg-gray);
}

.bg-dark .bg-gray {
  background: var(--dark-secondary);
}

.bg-gray-secondary {
  background: var(--bg-gray-secondary);
}

.bg-light {
  background-color: var(--white) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-dark-secondary {
  background-color: var(--dark-secondary) !important;
}

.bg-theme {
  background-color: var(--color-primary);
}

.bg-theme-secondary {
  background-color: var(--color-secondary);
}

.bg-gradient {
  background-color: var(--color-primary);
  background: var(--bg-gradient) !important;
}

.bg-gradient-secondary {
  background-color: var(--color-secondary);
  background: var(--bg-gradient-reverse) !important;
}

.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  display: inline-block;
}

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

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
  color: var(--white);
}

.shadow {
  -webkit-box-shadow: inherit !important;
  box-shadow: inherit !important;
}

.shadow.dark {
  position: relative;
  z-index: 1;
}

.shadow.dark:after {
  background: var(--black);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.dark-hard {
  position: relative;
  z-index: 1;
}

.shadow.dark-hard:after {
  background: var(--black) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.theme {
  position: relative;
  z-index: 1;
}

.shadow.theme:after {
  background: var(--color-primary) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.light {
  position: relative;
  z-index: 1;
}

.shadow.light:after {
  background: var(--white) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
  position: relative;
}

.default-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.default-padding-big {
  padding: 250px 0;
}

@media only screen and (max-width: 767px) {
  .default-padding-big {
    padding: 60px 0;
  }
}

.default-padding-top {
  padding-top: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding-top {
    padding-top: 60px;
  }
}

.default-padding-bottom {
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding-bottom {
    padding-bottom: 60px;
  }
}

.default-padding.bottom-less {
  padding-top: 120px;
  padding-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .default-padding.bottom-less {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}

.default-padding-bottom.bottom-less {
  margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
  .default-padding-bottom.bottom-less {
    margin-bottom: 0;
    padding-bottom: 20px;
  }
}

.default-padding-top.bottom-less {
  margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
  .default-padding-top.bottom-less {
    margin-bottom: -20px;
  }
}

@media only screen and (min-width: 1200px) {
  .align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.border-top {
  border-top: 1px solid #e7e7e7;
}

.border-bottom {
  border-bottom: 1px solid #e7e7e7;
}

.border-left {
  border-left: 1px solid #e7e7e7;
}

.border-right {
  border-right: 1px solid #e7e7e7;
}

.heading {
  font-weight: 600;
  margin-bottom: 25px;
  margin-top: -5px;
  font-size: 50px;
  line-height: 1.2;
}

.heading span {
  font-weight: 400;
}

.site-heading {
  margin-bottom: 50px;
}

.site-heading strong {
  display: inline-block;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.site-heading strong::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/35.html);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -1;
}

.title {
  font-weight: 600;
  font-size: 40px !important;
  margin-top: -10px;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .title {
    font-size: 36px !important;
    margin-top: 0;
  }
}

.bg-dark .title {
  color: var(--white);
}

.site-heading .title {
  margin-bottom: 0;
}

.bg-dark .site-heading .title {
  color: var(--white);
}

.sub-title {
  text-transform: capitalize;
  color: var(--color-secondary);
  font-weight: 600;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  font-family: var(--font-default);
  font-size: 24px;
  letter-spacing: 1px;
}

.text-center .sub-title {
  margin-bottom: 20px;
}

.bg-gradient .sub-title,
.bg-theme .sub-title {
  color: var(--white);
  -webkit-background-clip: inherit;
  background-clip: inherit;
  -webkit-text-fill-color: inherit;
  background: transparent;
}

@media (max-width: 767px) {
  .sub-title {
    margin-bottom: 15px;
  }
}

.site-heading p {
  margin-bottom: 0;
  margin-top: 25px;
  padding: 0 10%;
}

.site-heading .devider {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  position: relative;
  z-index: 1;
  left: 10px;
}

.site-heading.light .devider,
.bg-theme .site-heading .devider,
.bg-gradient .site-heading .devider,
.shadow .site-heading .devider,
.bg-dark .site-heading .devider {
  background: var(--white);
}

@media (max-width: 767px) {
  .site-heading p {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .site-heading {
    margin-bottom: 40px;
  }
}

.heading-left {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.heading-left .heading {
  font-weight: 600;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading-left .heading {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .heading-left .heading {
    margin-bottom: 15px;
    font-size: 36px;
    line-height: 1.2;
  }
}

.heading-left p {
  margin-bottom: 0;
}

.heading-left .btn {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .heading-left {
    margin-bottom: 30px;
  }
}

.sub-heading {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  background: var(--bg-gradient-reverse);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.shadow .sub-heading {
  -webkit-text-fill-color: var(--white);
  font-weight: 600;
}

.bg-gradient .sub-heading {
  color: var(--white);
  background: transparent;
  -webkit-background-clip: inherit;
  background-clip: inherit;
  -webkit-text-fill-color: inherit;
  opacity: 0.9;
}

.site-heading.text-light .sub-title,
.site-heading.text-light .sub-heading {
  -webkit-text-fill-color: inherit;
  color: var(--white);
}

/* ============================================================== 
    # Video Play Button 
=================================================================== */
.video-play-button i {
  display: inline-block;
  background: var(--color-primary);
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  position: relative;
}

.video-play-button i {
  font-weight: 100;
  font-size: 35px;
  position: relative;
  left: 3px;
  top: 2px;
}

.video-play-button .effect {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #07071e;
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  z-index: -1;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
}

.video-play-button .effect::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.video-play-button .effect::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background: #07071e;
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.text-play-button {
  width: auto;
  background: transparent;
  position: relative;
  line-height: 60px;
}

.text-play-button span {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 500;
}

.text-play-button span i {
  margin-left: 25px;
  margin-right: 40px;
  color: var(--white);
  left: -1px;
}

.text-play-button .effect {
  height: 60px;
  width: 60px;
  left: 0;
  -webkit-animation: inherit;
  animation: inherit;
  background: var(--color-secondary);
  opacity: 1;
  z-index: 1;
  position: absolute;
  border-radius: 50%;
}

.text-play-button .effect::after {
  content: "";
  background: var(--color-secondary);
  height: 100%;
  width: 100%;
  z-index: inherit;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  position: absolute;
  border-radius: 50%;
  animation: video-play 1500ms ease-out infinite;
  left: 50%;
  top: 50%;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.mfp-container button::after {
  display: none;
}

.mfp-container button {
  opacity: 1;
  visibility: visible;
}

.mfp-arrow-left:before {
  border-right: 27px solid var(--white);
}

.mfp-arrow-right:before {
  border-left: 27px solid var(--white);
}

/* ============================================================== 
    # Template Animation
=================================================================== */

/* Video Paly */
@-webkit-keyframes video-play {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes video-play {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/*Zoom Animation */
.zoom-animation {
  -webkit-animation: zoom 2000ms ease-out infinite;
  animation: zoom 2000ms ease-out infinite;
}

/* Slider Zoom Effect */
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
}

/* Spiner Animation */
.spiner-animation {
  -webkit-animation: spinner 20s infinite linear;
  animation: spinner 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

/* Spiner Animation */
.spiner-reverse-animation {
  -webkit-animation: spinnerReverse 20s infinite linear;
  animation: spinnerReverse 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinnerReverse {
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@keyframes spinnerReverse {
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

/* Infinite Up Down Animation */
@keyframes UpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

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

/* Animation UpDown */
.updown-animation {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  -webkit-animation-name: UpDown;
  animation-name: UpDown;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes UpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

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

/* Animation Left Right */
.leftRight-animation {
  -webkit-animation: fadeLeftRight 10s ease-out infinite;
  animation: fadeLeftRight 10s ease-out infinite;
}

/* Fade Left Right */
@keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

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

@-webkit-keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

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

/* Animation Right Left */
.rightLeft-animation {
  -webkit-animation: fadeRightLeft 10s ease-out infinite;
  animation: fadeRightLeft 10s ease-out infinite;
}

@keyframes fadeRightLeft {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

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

@-webkit-keyframes fadeRightLeft {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

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

/* Animation Zoom Up Down */
.zoomUpDown-animation {
  -webkit-animation: zoomUpDown 10s ease-out infinite;
  animation: zoomUpDown 10s ease-out infinite;
}

/* Zoom Up Down */
@keyframes zoomUpDown {
  0%,
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@-webkit-keyframes zoomUpDown {
  0%,
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

/* Animation Moving */
.moving-animation {
  -webkit-animation: moving 10s ease-out infinite;
  animation: moving 10s ease-out infinite;
}

/* Mooving Animation */
@-webkit-keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
  }

  50% {
    -webkit-transform: translate(-100px, -30px);
    transform: translate(-100px, -30px);
  }

  70% {
    -webkit-transform: translate(-100px, 0px);
    transform: translate(-100px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
  }

  50% {
    -webkit-transform: translate(-100px, -30px);
    transform: translate(-100px, -30px);
  }

  70% {
    -webkit-transform: translate(-100px, 0px);
    transform: translate(-100px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

/* Animation Rotation */
@keyframes infinite-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes infinite-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Button Border Animation */
@-webkit-keyframes open {
  0% {
    width: 0;
    height: 0;
  }

  50% {
    width: 100px;
    height: 0;
  }

  100% {
    width: 100px;
    height: 55px;
  }
}

@keyframes open {
  0% {
    width: 0;
    height: 0;
  }

  50% {
    width: 100px;
    height: 0;
  }

  100% {
    width: 100px;
    height: 55px;
  }
}

@-webkit-keyframes openB {
  0% {
    width: 0px;
  }

  100% {
    width: 100px;
  }
}

@keyframes openB {
  0% {
    width: 0px;
  }

  100% {
    width: 100px;
  }
}

/* Animation Shine (A shine color will move inside the text) */

@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@-webkit-keyframes infiniteMove {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@keyframes infiniteMove {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@-webkit-keyframes infiniteMove2 {
  0% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }

  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }

  100% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }
}

@keyframes infiniteMove2 {
  0% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }

  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }

  100% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }
}

/* ============================================================== 
    # Button Styles
=================================================================== */
.btn {
  display: inline-block;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 7px;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: none !important;
  font-size: 16px;
  letter-spacing: 0;
  padding: 13px 30px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
}

.btn:focus,
.btn.active {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  border: 2px solid transparent;
}

.btn:hover {
  background-color: var(--color-primary);
  color: var(--white);
}

.btn.radius {
  border-radius: 6px;
}

.btn.btn-border {
  border: 2px solid #dddddd;
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 600;
}

.btn.btn-border::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-border:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-border:hover {
  border-color: var(--dark);
}

.btn.btn-border.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: #e7e7e7;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border.animation:hover {
  border-color: #e7e7e7;
  color: var(--dark);
}

.btn.btn-border.animation:hover::after {
  width: 100%;
}

.btn.btn-border-dark {
  border: 2px solid var(--dark);
  background: transparent;
}

.btn-md.btn-border-dark {
  padding: 15px 35px;
}

.btn.btn-border-dark:hover {
  background: var(--dark);
  border-color: var(--dark);
}

.btn.btn-border-dark.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-dark.animation:hover {
  border-color: var(--dark);
  color: var(--white);
}

.btn.btn-border-dark.animation:hover::after {
  width: 100%;
}

.btn.btn-border-theme {
  border: 2px solid var(--color-primary);
  background: transparent;
}

.btn.btn-border-theme:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.btn.btn-border-theme.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-theme.animation:hover {
  border-color: var(--color-primary);
  color: var(--white);
}

.btn.btn-border-theme.animation:hover::after {
  width: 100%;
}

.btn.btn-border-light {
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
}

.btn.btn-border-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
}

.btn.btn-border-light.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--white);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-light.animation:hover {
  border-color: var(--white);
  color: var(--dark);
}

.btn.btn-border-light.animation:hover::after {
  width: 100%;
}

.btn-md.btn-border-light {
  border: 1px solid var(--white);
  padding: 15px 35px;
}

.btn.btn-border.light {
  color: var(--white);
  border-color: var(--white);
}

.btn.btn-border.light::after {
  background: var(--color-primary);
}

.btn.btn-border.light:hover {
  border-color: var(--color-primary);
}

.btn.btn-gradient {
  border: none;
  color: var(--white);
}

.btn.btn-gradient::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
  background-image: linear-gradient(
    to left,
    var(--color-primary),
    var(--color-secondary),
    var(--color-primary)
  );
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background-size: 250%;
}

.btn.btn-gradient:hover::after {
  background-position: -70% 0;
}

.btn.btn-gradient.active {
  background-position: -70% 0;
}

.btn.btn-theme {
  color: var(--white);
  border: none;
  background: var(--color-secondary);
}

.btn.btn-theme::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.bg-dark .btn.btn-theme::after {
  background-color: var(--color-secondary);
}

.btn.btn-theme:hover {
  color: var(--white);
}

.banner-style-three .btn.btn-theme::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background: var(--white) !important;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-theme:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.banner-style-three .btn.btn-theme:hover {
  color: var(--color-heading) !important;
}

button {
  display: inline-block;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 7px;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  font-size: 16px;
  letter-spacing: 0;
  padding: 14px 40px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
  color: var(--white);
  border: none;
  background: var(--color-primary);
}

button::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

button:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

button i {
  margin-right: 4px;
}

.btn.btn-theme.secondary {
  color: var(--white);
  border: none;
  background: var(--color-secondary);
}

.btn.btn-theme.secondary::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.text-light .btn.btn-theme.secondary::after {
  background-color: var(--white);
}

.text-light .btn.btn-theme.secondary:hover {
  color: var(--color-heading);
}

.btn.btn-theme.secondary:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-theme.hover-light::after {
  background-color: var(--white);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover {
  color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-light {
  color: var(--color-heading);
  border: none;
  background: var(--white);
  border: 2px solid transparent;
}

.btn.btn-light.btn-md {
  padding: 13px 52px;
}

.btn.btn-light:hover {
  color: var(--white);
  background: transparent;
  border: 2px solid var(--white);
}

.btn.btn-dark {
  color: var(--white);
  border: none;
  background: var(--dark);
}

.btn.btn-dark::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--color-secondary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-dark:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-dark:hover {
  color: var(--white);
}

.btn i {
  position: relative;
  top: 1px;
  margin-left: 5px;
}
.swiper-button-next,
.swiper-button-prev {
  text-rendering: auto;
}

.h-300 {
  height: 300px;
}

.btn-md i {
  font-weight: 1;
  font-size: 24px;
  margin: 0;
  /* float: left; */
  position: relative;
  top: 1px;
  margin-right: 10px;
}

.btn.text-slide {
  min-width: 150px;
  height: 55px;
  line-height: 55px;
}

.btn.text-slide span {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
}

.btn.animate-border {
  overflow: inherit;
  z-index: inherit;
  width: 200px;
  height: 55px;
  line-height: 55px;
  padding: 0;
}

.btn.animate-border:hover {
  background: transparent;
  color: var(--dark);
}

.btn.animate-border:hover .hover-border::after,
.btn.animate-border:hover .hover-border::before {
  opacity: 1;
  -webkit-animation: open 0.4s;
  /* Chrome, Safari, Opera */
  animation: open 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

.btn.animate-border:hover .hover-border-bottom::after,
.btn.animate-border:hover .hover-border-bottom::before {
  opacity: 1;
  -webkit-animation: openB 0.4s;
  /* Chrome, Safari, Opera */
  animation: openB 0.4s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

.btn.animate-border .hover-border {
  position: absolute;
  left: 0;
  top: -1px;
  height: 100%;
  width: 100%;
}

.btn.animate-border .hover-border::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  display: block;
  opacity: 0;
  border-top: solid 2px var(--color-primary);
  border-left: solid 2px var(--color-primary);
  right: 98px;
  top: -1px;
}

.btn.animate-border .hover-border::after {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  display: block;
  opacity: 0;
  border-top: solid 2px var(--color-primary);
  border-right: solid 2px var(--color-primary);
  left: 98px;
  top: -1px;
}

.btn.animate-border .hover-border-bottom {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.btn.animate-border .hover-border-bottom::before {
  position: absolute;
  content: "";
  width: 0;
  display: block;
  opacity: 0;
  height: 55px;
  border-bottom: solid 2px var(--color-primary);
  right: -1px;
  bottom: -2px;
}

.btn.animate-border .hover-border-bottom::after {
  position: absolute;
  content: "";
  width: 0;
  display: block;
  opacity: 0;
  height: 100%;
  border-bottom: solid 2px var(--color-primary);
  left: 0;
  bottom: -2px;
}

.btn.animated-arrow {
  border: none;
  background: transparent;
  min-width: 14rem;
  height: auto;
  padding: 0;
}

.btn.animated-arrow .circle {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-primary);
  border-radius: 2rem;
}

.btn.animated-arrow .circle .icon {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 15px;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.btn.animated-arrow .circle .icon::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid var(--white);
  border-right: 0.125rem solid var(--white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn.animated-arrow .button-text {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px 0;
  margin: 0 0 0 70px;
  color: var(--dark);
  line-height: 2;
  text-align: left;
  width: 100%;
  font-size: 14px;
}

.btn.animated-arrow:hover {
  color: var(--white);
}

.btn.animated-arrow:hover .circle {
  width: 100%;
}

.btn.animated-arrow:hover .circle .icon.arrow {
  background: var(--white);
  -webkit-transform: translate(1.5rem, 0);
  transform: translate(1.5rem, 0);
}

.btn.animated-arrow:hover .button-text {
  color: var(--white);
}

.btn.circle {
  border-radius: 30px !important;
}

.btn-simple {
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  color: var(--color-paragraph);
}

.btn-simple i {
  transform: rotate(-45deg);
  display: inline-block;
  margin-left: 2px;
}

.btn-simple:hover {
  color: var(--color-primary);
}

.video-btn i {
  display: inline-block;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--color-primary);
  border-radius: 50%;
  position: relative;
  margin-right: 20px;
  color: var(--white);
}

.text-light .video-btn i {
  background: var(--white);
  color: var(--color-primary);
}

.video-btn i::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--color-primary) repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}

.text-light .video-btn i::after {
  background: var(--white) repeat scroll 0 0;
}

.text-shine {
  background: linear-gradient(
    to right,
    var(--dark) 0,
    var(--white) 10%,
    var(--color-primary) 20%
  );
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: shine 3s infinite linear;
  animation: shine 3s infinite linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 48px;
}

.animate-inout {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#8a6552),
    to(#472d20)
  );
  background: linear-gradient(90deg, #8a6552 0%, #472d20 100%);
  color: var(--white);
  font-size: 12px;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: solid 2px var(--color-primary);
  cursor: pointer;
}

.btn-icon {
  position: relative;
  padding-left: 20px;
}

.btn-icon:hover {
  color: var(--color-primary);
}

.btn-icon::after {
  position: absolute;
  right: 10px;
  top: 50%;
  content: "";
  height: 2px;
  left: 0;
  background: var(--color-heading);
  transform: translateY(-50%);
  margin-top: -1px;
  transition: all 0.35s ease-in-out;
}

.btn-icon:hover::after {
  background: var(--color-primary);
}

.btn-icon i {
  font-weight: 600;
}

.btn-icon:hover {
  padding-left: 40px;
}

.animate-inout span {
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  line-height: 20px;
}

.animate-inout::before,
.animate-inout::after {
  width: 0%;
  height: 0%;
  position: absolute;
  content: "";
  border-radius: 100%;
}

.animate-inout:after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: var(--white);
}

.animate-inout:before {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background: var(--color-primary);
}

.animate-inout.animate-inout-borde {
  background: transparent;
  color: var(--dark);
}

.animate-inout.animate-inout-borde::after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#8a6552),
    to(#472d20)
  );
  background: linear-gradient(90deg, #8a6552 0%, #472d20 100%);
}

.animate-inout.animate-inout-borde:hover {
  color: var(--white);
}

.animate-inout.animate-inout-borde:hover::before {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.animate-inout.animate-inout-borde:hover::after {
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.animate-inout:hover {
  color: var(--dark);
}

.animate-inout:hover::before,
.animate-inout:hover::after {
  width: 200px;
  height: 200px;
  border-radius: 4px;
}

.animate-inout:hover::before {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.animate-inout:hover::after {
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.btn-md {
  padding: 17px 45px;
  font-size: 18px;
}

.btn-md.btn-border {
  padding: 14px 52px;
}

.btn-sm {
  padding: 16px 45px;
  font-size: 14px;
}

.btn-sm.btn-border,
.btn-sm.btn-light {
  padding: 14px 45px;
}

.mfp-close-btn-in .mfp-close::after {
  display: none;
}

/* Btn Animation */

.btn-animation {
  z-index: 1;
  position: relative;
  font-size: 18px;
  display: inline-block;
}

.bg-dark .btn-animation {
  color: var(--white);
}

.btn-animation i {
  display: inline-block;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--white);
  color: var(--color-heading);
  border-radius: 50%;
  font-weight: 400;
  margin-right: 10px;
  transition: all 0.35s ease-in-out;
  transform: scale(0);
}

.btn-animation:hover {
  margin-left: 0;
  color: var(--color-heading);
}

.bg-dark .btn-animation:hover {
  color: var(--white);
}

.btn-animation:hover i {
  transform: scale(1);
}

.btn-animation::after {
  position: absolute;
  left: -13px;
  top: 0;
  content: "";
  height: 60px;
  width: 60px;
  border: 1px solid #c2bfbf;
  border-radius: 50%;
  transition: all 0.35s ease-in-out;
  transform: scale(1);
  z-index: -1;
}

.bg-dark .btn-animation::after {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-animation:hover::after {
  transform: scale(0);
}

.btn-animation span {
  transition: all 0.35s ease-in-out;
  left: -50px;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-animation:hover span {
  left: 0;
}

.btn-animation.dark::after {
  border-color: #c5c5c5;
  z-index: -1;
}

.btn-animation.dark i {
  background: var(--color-primary);
  color: var(--white);
}

.btn-animation.dark:hover {
  color: var(--color-heading);
}

@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

a.btn-round-animation {
  display: inline-block;
  height: 180px;
  width: 180px;
  text-align: center;
  line-height: 180px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

a.btn-round-animation i {
  display: inline-block;
  transform: rotate(-45deg);
  font-weight: 400;
  margin-left: 5px;
}

a.btn-round-animation::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 0;
  width: 100%;
  background: var(--color-primary);
  z-index: -1;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

a.btn-round-animation::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 0;
  width: 100%;
  background: var(--bg-gradient);
  z-index: -1;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

a.btn-round-animation:hover {
  color: var(--white);
}

a.btn-round-animation:hover::before {
  height: 100%;
}

a.btn-round-animation:hover::after {
  opacity: 0.4;
  height: 80%;
}

a.btn-round-animation.dark {
  border-color: rgba(255, 255, 255, 0.2);
}

.cart-btn {
  display: inline-flex;
  border: 2px solid var(--color-secondary);
  padding: 12px 25px;
  border-radius: 30px;
  text-transform: uppercase;
  align-items: center;
  font-size: 13px;
}

.cart-btn i {
  display: inline;
  font-weight: 100;
  font-size: 20px;
  margin-right: 10px;
}

.cart-btn:hover {
  background: var(--color-primary);
  color: var(--color-heading);
}

.bg-dark,
.bg-dark-secondary,
.bg-dark p,
.bg-dark-secondary p {
  color: #cccccc;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
  color: var(--white);
}

.curve-text svg {
  fill: var(--white);
  height: 170px;
  width: 170px;
  overflow: inherit;
  animation: spinner 20s infinite linear;
}

.curve-text svg {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 40px;
  position: relative;
  z-index: 1;
  font-size: 25px;
  height: 240px;
  width: 240px;
  text-transform: uppercase;
  font-weight: 700;
}

.curve-text svg a {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
}

.curve-text {
  display: inline-block;
  position: relative;
}

.curve-text a {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 9;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 52px;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.curve-text svg path {
  fill: none;
}

.curve-text svg text {
  fill: var(--white);
  letter-spacing: 7px;
  font-size: 21px;
  font-family: var(--font-secondary);
}

/* ============================================================== 
    # Topbar Styles
=================================================================== */

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

.item-flex li {
  margin-left: 30px;
}

.item-flex li:first-child {
  margin: 0;
}

.item-flex li i {
  margin-right: 10px;
  font-weight: 100;
  font-size: 20px;
  color: var(--color-primary);
}

.top-bar-area li {
  display: flex;
  align-items: center;
}

.top-bar-area li a {
  font-weight: 400;
}

.top-bar-area .social li {
  display: inline-block;
  margin-right: 30px;
}

.top-bar-area .social li:first-child {
  margin-right: 0;
}

.top-bar-area .text-end .social li {
  margin-right: 0;
  margin-left: 30px;
}

.top-bar-area .text-end .social li:first-child {
  margin-left: 0;
}

.top-bar-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.top-style-two .info li {
  font-weight: 500;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}

.top-style-two .text-end li {
  justify-content: right;
  text-align: left;
}

.top-style-two .info li i {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  margin-right: 20px;
  font-size: 40px;
}

.top-style-two .logo img {
  height: 60px;
}

.top-style-two .logo {
  text-align: center;
  border-left: 1px solid #e7e7e7;
  border-right: 1px solid #e7e7e7;
  padding: 15px 0;
}

.top-style-two.bg-dark .logo {
  border-color: rgba(255, 255, 255, 0.2);
}

.top-style-two .info li span {
  display: block;
  font-weight: 500;
  line-height: 1.1;
  font-size: 15px;
}

.top-style-two .info li a {
  font-size: 18px;
  text-transform: lowercase;
}

.top-bar .align-center {
  align-items: center;
}

/* ============================================================== 
    # Navbar Styles
=================================================================== */
@media (min-width: 1024px) {
  nav.navbar.navbar-style-one {
    padding: 0;
  }
}

@media (min-width: 1200px) {
  nav.navbar.navbar-style-one a.navbar-brand {
    position: relative;
    z-index: 1;
    padding: 0 55px;
    top: 15px;
  }

  nav.navbar.navbar-style-one a.navbar-brand::after {
    position: absolute;
    left: 0;
    top: -55px;
    content: "";
    height: 160px;
    width: 100%;
    background: var(--color-secondary);
    z-index: -1;
    box-shadow: 0 8px 25px 0 rgb(0 0 0 / 10%);
    border-radius: 0 0 0 10px;
  }

  nav.navbar.navbar-style-one a.navbar-brand::before {
    position: absolute;
    right: -25px;
    bottom: -45px;
    content: "";
    border-bottom: 35px solid transparent;
    border-left: 25px solid var(--color-secondary);
    opacity: 0.9;
  }

  nav.navbar.navbar-style-one::after {
    position: absolute;
    left: 10%;
    content: "";
    height: 100%;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    z-index: -1;
  }

  nav.navbar.validnavs.navbar-style-one .logo-scrolled {
    display: none;
  }

  nav.navbar.validnavs.navbar-style-one .logo-display {
    display: inline-block;
  }

  nav.navbar.navbar-style-one.no-background::before {
    position: absolute;
    left: 10%;
    content: "";
    height: 100%;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(10px);
    width: 100%;
    z-index: -1;
  }
}

/* ============================================================== 
    # Nice Select Styles
=================================================================== */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: var(--white);
  border: solid 1px #e8e8e8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  height: 50px;
  line-height: 50px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  margin-bottom: 15px;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999999;
}

.nice-select::after {
  border-bottom: 2px solid #999999;
  border-right: 2px solid #999999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  overflow-y: auto !important;
  height: auto;
}

.nice-select.open ::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999999;
  pointer-events: none;
}

.nice-select.disabled::after {
  border-color: #96aac1;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small::after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: var(--white);
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 100%;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: 600;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

.mfp-iframe-holder .mfp-close {
  color: transparent;
  background: transparent;
}

.mfp-iframe-holder .mfp-close::before {
  position: absolute;
  right: 0;
  top: 0;
  height: 20px;
  width: 20px;
  z-index: 1;
  display: block;
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  font-weight: 100;
  color: var(--white);
}

/* ============================================================== 
    # Banner Styles
=================================================================== */
.banner-area {
  height: 100%;
  width: 100%;
  position: relative;
}

@media (max-width: 1023px) {
  .banner-area,
  .banner-area div {
    height: auto;
  }
}

.banner-area div {
  height: 100%;
}

.banner-area div.swiper-slide .row div {
  height: auto;
}

.banner-area.top-pad-80 .content {
  padding-top: 80px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-80 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-80 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-90 .content {
  padding-top: 90px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-90 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-90 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-100 .content {
  padding-top: 100px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-100 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-100 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-110 .content {
  padding-top: 110px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-110 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-110 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-120 .content {
  padding-top: 120px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-120 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-120 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-130 .content {
  padding-top: 130px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-130 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-130 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-150 .content {
  padding-top: 150px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-150 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-150 .content {
    padding-top: 140px;
  }
}

.banner-area.auto-height {
  height: auto;
}

.banner-area.auto-height div {
  height: auto;
}

.banner-area.auto-height .content {
  padding: 200px 0;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height .content {
    padding: 60px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height .content {
    padding: 120px 0;
  }
}

.banner-area.auto-height .content .thumb {
  padding-left: 35px;
}

@media (max-width: 991px) {
  .banner-area.auto-height .content .thumb {
    padding-left: 0;
    margin-top: 50px;
  }
}

.banner-area.auto-height.inc-header-transparent .content {
  padding-top: 250px;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height.inc-header-transparent .content {
    padding-top: 140px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height.inc-header-transparent .content {
    padding-top: 220px;
  }
}

.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
  .content
  .info {
  padding-top: 80px;
}

.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
  .content
  .thumb {
  margin-top: 250px;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
    .content
    .thumb {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
    .content
    .thumb {
    margin-top: 50px;
  }
}

.banner-area .content {
  position: relative;
  z-index: 9;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 1023px) {
  .banner-area .content {
    padding: 120px 0;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area .content {
    padding: 60px 0;
  }
}

.banner-area h4 {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translate3d(-15%, 0, 0);
  transform: translate3d(-15%, 0, 0);
  opacity: 0;
  visibility: hidden;
}

.banner-area h2 {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

.banner-area p,
.banner-area ul {
  -webkit-transition: all 500ms ease;
  text-align: justify;
  transition: all 500ms ease;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  /* padding-right: 25%; */
  margin: 0;
  visibility: hidden;
}

@media (max-width: 1023px) {
  .banner-area p {
    padding-right: 0;
    text-align: justify;
  }
}

.banner-area.text-center p {
  padding-left: 13%;
  padding-right: 13%;
}

@media (max-width: 1023px) {
  .banner-area.text-center p {
    padding: 0;
  }
}

.banner-area .thumb {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.banner-area .button {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
  margin-top: 30px;
}

.banner-area .banner-slide h4 {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide h2 {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide p,
.banner-area .banner-slide ul {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide .button {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active h4 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active p,
.banner-area .banner-slide .swiper-slide.swiper-slide-active ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.banner-area.double-items .thumb {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area.double-items .swiper-slide.swiper-slide-active .thumb {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
  visibility: visible;
  opacity: 1;
}

.banner-area.double-items.bottom-thumb .content {
  padding: 0;
}

.banner-area.double-items.bottom-thumb .content .thumb {
  margin-top: 120px;
}

@media only screen and (max-width: 767px) {
  .banner-area.double-items.bottom-thumb .content {
    padding: 50px 0;
  }

  .banner-area.double-items.bottom-thumb .content .thumb {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.double-items.bottom-thumb .content {
    padding: 120px 0;
  }

  .banner-area.double-items.bottom-thumb .content .thumb {
    margin-top: 50px;
  }
}

.banner-area.zoom-effect .banner-thumb {
  -webkit-transition: 10s ease-out;
  transition: 10s ease-out;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
}

.banner-area.zoom-effect .swiper-slide.swiper-slide-active .banner-thumb {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.banner-area .swiper-notification {
  display: none;
}

.banner-area .swiper-slide.swiper-slide-active h4 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}

.banner-area .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.banner-area .swiper-slide.swiper-slide-active p,
.banner-area .swiper-slide.swiper-slide-active ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 2400ms;
  transition-delay: 2400ms;
}

.banner-area .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 3200ms;
  transition-delay: 3200ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active .button {
  -webkit-transition-delay: 2400ms;
  transition-delay: 2400ms;
}

.banner-area .banner-items {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.banner-area:hover .swiper-button-prev,
.banner-area:hover .swiper-button-next {
  opacity: 1;
}

.banner-area:hover .swiper-button-prev {
  left: 30px;
  right: auto;
}

.banner-area:hover .swiper-button-next {
  right: 30px;
  left: auto;
}

.banner-area .swiper-button-prev,
.banner-area .swiper-button-next {
  height: auto;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  opacity: 0;
}

.banner-area .swiper-button-prev::after,
.banner-area .swiper-button-next::after {
  font-size: 28px;
  color: var(--white);
}

.banner-area.navigation-circle .swiper-button-prev,
.banner-area.navigation-circle .swiper-button-next {
  height: 60px;
  width: 60px;
  line-height: 60px;
  background: transparent !important;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.banner-area.navigation-circle .swiper-button-prev::after,
.banner-area.navigation-circle .swiper-button-next::after {
  font-size: 16px;
}

.banner-area.navigation-right-bottom .swiper-button-prev,
.banner-area.navigation-right-bottom .swiper-button-next {
  left: auto;
  right: 30px;
  opacity: 1;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  bottom: 50px;
  border-radius: inherit;
}

.banner-area.navigation-right-bottom .swiper-button-prev {
  right: 92px;
}

.banner-area.navigation-between-bottom .content {
  padding-bottom: 105px;
}

@media only screen and (min-width: 829px) and (max-width: 1023px) {
  .banner-area.navigation-between-bottom .content {
    padding-bottom: 220px;
  }
}

.banner-area.navigation-between-bottom .swiper-button-prev,
.banner-area.navigation-between-bottom .swiper-button-next {
  left: auto;
  right: 30px;
  opacity: 1;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  bottom: 30px;
  border-radius: inherit;
}

.banner-area.navigation-between-bottom .swiper-button-prev {
  left: 30px;
  right: auto;
}

@media only screen and (max-width: 830px) {
  .banner-area .swiper-button-prev,
  .banner-area .swiper-button-next {
    display: none;
  }
}

.banner-area.navigation-custom .swiper-button-prev::after {
  font-family: "ElegantIcons";
  content: "\23";
  font-size: 22px;
}

.banner-area.navigation-custom .swiper-button-next::after {
  font-family: "ElegantIcons";
  content: "\24";
  font-size: 22px;
}

.banner-area.navigation-text .swiper-button-prev,
.banner-area.navigation-text .swiper-button-next {
  opacity: 1;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  left: auto;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: 150px;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  height: 100px;
  line-height: 100px;
}

@media only screen and (max-width: 830px) {
  .banner-area.navigation-text .swiper-button-prev,
  .banner-area.navigation-text .swiper-button-next {
    display: block;
  }
}

.banner-area.navigation-text .swiper-button-prev {
  right: 151px;
}

.banner-area.navigation-text .swiper-button-prev::after {
  font-family: var(--font-default);
  content: "Prev";
  text-transform: uppercase !important;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.banner-area.navigation-text .swiper-button-next::after {
  font-family: var(--font-default);
  content: "Next";
  text-transform: uppercase !important;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.banner-area.navigation-icon-solid .swiper-button-prev::after,
.banner-area.navigation-icon-solid .swiper-button-next::after {
  font-size: 30px;
}

.banner-area.navigation-custom-large .swiper-button-prev,
.banner-area.navigation-custom-large .swiper-button-next {
  min-width: 65px;
  height: 30px;
  margin: 0;
}

.banner-area.navigation-custom-large .swiper-button-prev::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f104";
  font-weight: 100;
  font-size: 30px;
  position: absolute;
  left: 8px;
}

.banner-area.navigation-custom-large .swiper-button-prev::before {
  position: absolute;
  top: 50%;
  right: inherit;
  bottom: inherit;
  left: 12px;
  content: "";
  height: 2px;
  width: 50px;
  z-index: -1;
  background-color: var(--white);
  margin-top: -1px;
}

.banner-area.navigation-custom-large .swiper-button-next::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f105";
  font-weight: 100;
  font-size: 30px;
  position: absolute;
  right: 8px;
}

.banner-area.navigation-custom-large .swiper-button-next::before {
  position: absolute;
  top: 50%;
  right: 12px;
  bottom: inherit;
  left: inherit;
  content: "";
  height: 2px;
  width: 50px;
  z-index: -1;
  background-color: var(--white);
  margin-top: -1px;
}

.banner-area.navigation-right-botom .swiper-button-prev,
.banner-area.navigation-right-botom .swiper-button-next {
  position: absolute;
  left: auto;
  right: 30px;
  top: auto;
  bottom: 40px;
  opacity: 1;
  -webkit-transform: inherit;
  transform: inherit;
}

.banner-area.navigation-right-botom .swiper-button-prev {
  right: 60px;
}

.banner-area.navigation-right-botom.navigation-custom-large .swiper-button-prev,
.banner-area.navigation-right-botom.navigation-custom-large
  .swiper-button-next {
  bottom: 30px;
}

.banner-area.navigation-right-botom.navigation-custom-large
  .swiper-button-prev {
  right: 100px;
}

.banner-area .swiper-pagination {
  height: auto;
  bottom: 35px;
}

.banner-area .swiper-pagination span.swiper-pagination-bullet {
  height: 4px;
  width: 50px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: inherit;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.banner-area
  .swiper-pagination
  span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: white;
  height: 7px;
}

@media only screen and (max-width: 767px) {
  .banner-area.include-pagination .content {
    padding-bottom: 100px;
  }
}

.banner-area .swiper-pagination-fraction span {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.banner-area .swiper-pagination-fraction span.swiper-pagination-current {
  font-size: 30px;
  font-family: var(--font-default);
  font-weight: 600;
}

/* ============================================================== 
    # Banner Custom Style
=================================================================== */

/* Banner One */
.banner-area.banner-style-one .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active p {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.banner-style-one .content {
  display: flex;
}

.banner-style-one .content .badge img {
  background: var(--color-secondary);
  border-radius: 50%;
  padding: 15px;
  animation: spinner 30s infinite linear;
  max-width: 200px;
}

/* .banner-style-one .content .badge {
	margin-right: 50px;
} */

.banner-style-one .content h4 {
  text-transform: uppercase;
  font-weight: 500;
}
.bannerinfo {
  margin-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 914px;
  margin: 0 auto;
}

.banner-style-one .content h2 {
  font-size: 64px;
  font-family: var(--font-default);
  letter-spacing: 0px;
  margin-bottom: 24px;
  font-weight: 800;
}

.banner-style-one .content h2 strong {
  display: block;
}

.banner-style-one .content p {
  font-size: 18px;
  text-align: center !important;
}

.banner-style-one .shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  height: 50%;
  width: auto;
  transition: all 0.55s ease-in-out;
}

.banner-style-one .shape img {
  height: 100%;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active .shape {
  height: 40%;
}

/* Banner Two */

.banner-area.banner-style-two .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active p {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.banner-style-two h2 {
  text-transform: uppercase;
  font-size: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-style-two h2 strong {
  display: inline-block;
  background: var(--color-primary);
  padding: 0 15px;
  border-radius: 10px;
  font-size: 80px;
  margin-left: 15px;
  color: var(--color-heading);
  position: relative;
  z-index: 1;
}

.banner-style-two h2 strong::after {
  position: absolute;
  right: -5px;
  top: -65px;
  content: "";
  height: 80px;
  width: 80px;
  background: url(../img/shape/4.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  z-index: -1;
}

.banner-style-two p {
  padding: 0 15%;
  font-size: 18px;
}

.banner-style-two .content .animated-btn {
  text-transform: uppercase;
}

.banner-style-two .content .animated-btn i {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--color-heading);
  margin-right: 10px;
}

.banner-style-two .content {
  padding-top: 120px;
}

.banner-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 9;
  height: auto;
}

.banner-pagination.swiper-pagination-clickable.swiper-pagination-bullets
  span.swiper-pagination-bullet {
  height: 20px;
  width: 20px;
  background: transparent;
  border: 2px solid;
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

.banner-pagination.swiper-pagination-clickable.swiper-pagination-bullets
  span.swiper-pagination-bullet::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  background: var(--white);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
}

.banner-pagination.swiper-pagination-clickable.swiper-pagination-bullets
  span.swiper-pagination-bullet.swiper-pagination-bullet-active,
.banner-pagination.swiper-pagination-clickable.swiper-pagination-bullets
  span.swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  opacity: 1;
}

/* Banner Three  */

.banner-area .swiper-slide.swiper-slide-active h4 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
}

.banner-area.banner-style-three .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 900ms;
  transition-delay: 900ms;
}

.banner-area.banner-style-three .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.banner-style-three h4 {
  font-family: var(--font-secondary);
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.banner-style-three h2 {
  font-size: 80px;
  line-height: 1.1;
  text-transform: capitalize;
}

.banner-style-three .content {
  position: relative;
  z-index: 1;
}

/* Banner Four */
.banner-style-four .shape {
  position: absolute;
  z-index: 1;
  width: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  transition: all 0.85s ease-in-out;
}

.banner-style-four h2 {
  font-size: 120px;
  font-weight: 700;
  text-transform: uppercase;
}

.banner-style-four h2 strong {
  color: transparent;
  -webkit-text-stroke: 1px var(--color-heading);
}

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

.banner-style-four ul li {
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-weight: 900;
  margin: 0 14px;
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--color-heading);
  position: relative;
  z-index: 1;
}

.banner-style-four ul li::after {
  position: absolute;
  right: -20px;
  top: 50%;
  content: "";
  height: 10px;
  width: 10px;
  background: var(--color-secondary);
  border-radius: 50%;
  transform: translateY(-50%);
}

.banner-style-four ul li:last-child::after {
  display: none;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active .shape {
  width: 35%;
}

.banner-area.banner-style-four .swiper-button-prev::after,
.banner-area.banner-style-four .swiper-button-next::after {
  color: var(--color-heading);
}

.banner-area.banner-style-four.navigation-circle .swiper-button-prev,
.banner-area.banner-style-four.navigation-circle .swiper-button-next {
  border: 2px solid var(--color-heading);
}

/* ============================================================== 
    # About
===================rgba(30, 25, 25, 0.5)======================== */
ul.top-feature {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  margin-left: -45%;
  margin-top: 30px;
  position: relative;
}

ul.top-feature li {
  display: block;
  background: var(--color-primary);
  padding: 30px;
}

ul.top-feature li:nth-child(2) {
  background: var(--color-secondary);
}

ul.top-feature li img {
  height: 50px;
  margin-bottom: 30px;
}

ul.top-feature li p {
  margin: 0;
  color: var(--color-heading);
}

.fun-fact-style-flex {
  display: flex;
  align-items: center;
}

.fun-fact-style-flex .counter {
  display: flex;
  font-size: 76px;
  align-items: center;
  line-height: 70px;
  margin-right: 20px;
  font-weight: 700;
  border-right: 1px solid #dddddd;
  padding-right: 20px;
  color: var(--color-secondary);
}

.fun-fact-style-flex .medium {
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-heading);
}

ul.top-feature li:nth-child(2) h4 {
  color: var(--white);
}

ul.top-feature li:nth-child(2) p {
  color: var(--white);
  opacity: 0.9;
}

.about-style-one-thumb {
  position: relative;
}

.about-style-one-thumb .animation-shape {
  position: absolute;
  left: -130px;
  bottom: 0;
  max-width: 230px;
}

.about-style-one-thumb .animation-shape img {
  transform: rotate(7deg);
}

/* ============================================================== 
    # Services
=================================================================== */

.service-one-single {
  margin-bottom: 30px;
}

.service-style-one-item {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 50px;
  background: var(--white);
  height: 100%;
  border-radius: 30px;
}

.service-style-one-item .top {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.service-style-one-item .top img {
  height: 60px;
  margin-right: 25px;
}

.service-style-one-item .top .icon {
  min-width: 90px;
}

.service-style-one-item .top h4 {
  text-transform: uppercase;
  margin: 0;
}

.service-style-one-item .top span {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-secondary);
  display: block;
  margin-top: 8px;
}

.service-style-one-item p {
  margin-bottom: 0;
}

/* .services-style-one-area .row {
	--bs-gutter-x: 3px;
} */

.service-style-one-item img {
  height: 200px;
  margin-bottom: 30px;
  max-width: 100%;
  object-fit: contain;
}

.service-style-one-item a.btn-angle {
  display: inline-block;
  /* height: 58px;
	width: 58px; */
  text-align: center;
  line-height: 58px;
  background: var(--color-primary);
  color: var(--color-heading);
  margin-top: 30px;
  border-radius: 10px;
  padding: 7px 30px;
}

.service-style-one-item a.btn-angle:hover {
  background: var(--color-secondary);
  color: var(--white);
}

.shape-right-top {
  position: absolute;
  right: 0;
  top: 50px;
  height: 100%;
  width: 28%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
}

/* ============================================================== 
    # Services
=================================================================== */

.service-style-two-area {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
}

.service-style-two .thumb {
  overflow: hidden;
  border-radius: 8px;
}

.service-style-two .thumb img {
  transition: all 0.65s ease-in-out;
  transform: scale(1);
}

.service-style-two:hover .thumb img {
  transform: scale(1.2);
}

.half-bg-dark-bottom {
  position: relative;
  z-index: 1;
}

.half-bg-dark-bottom::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 30%;
  width: 100%;
  background: var(--white);
  z-index: -1;
}

.half-bg-dark-bottom::before {
  position: absolute;
  left: 0;
  bottom: 30%;
  content: "";
  height: 100px;
  width: 100%;
  background: url(../img/shape/20.png);
  z-index: -1;
  background-size: cover;
  background-position: center top;
}

h2.mask-text.large {
  font-size: 120px;
  display: inline-block;
  background-position: top;
}

.service-style-two {
  position: relative;
}

.service-style-two {
  position: relative;
  border-radius: 10px;
}

.service-style-two .overlay {
  display: flex;
  position: absolute;
  left: 30px;
  bottom: -30px;
  right: 30px;
  z-index: 1;
}

.service-style-two .overlay .icon {
  width: 80px;
  padding: 15px;
  background: var(--color-secondary);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 80px;
}

.service-style-two .overlay .info {
  background: var(--white);
  width: 100%;
  margin-left: 15px;
  padding: 20px 30px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  text-align: center;
  box-shadow: 0px 15px 23px -10px rgb(109 117 143 / 30%);
}

.service-style-two .overlay .info::after {
  position: absolute;
  right: 15px;
  bottom: 33px;
  content: "";
  height: 1px;
  left: 15px;
  background: var(--color-secondary);
  z-index: -1;
}

.service-style-two .overlay .info h4 {
  margin-bottom: 5px;
  font-family: var(--font-secondary);
  letter-spacing: 2px;
  font-weight: 900;
}

.service-style-two .overlay .info span {
  color: var(--color-secondary);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--white);
  padding: 0 15px;
}

.service-style-two-carousel .swiper-wrapper {
  padding-bottom: 60px;
}

.service-style-two img {
  border-radius: 8px;
}

.service-style-two-carousel.swiper .swiper-button-prev,
.service-style-two-carousel.swiper .swiper-button-next {
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.service-style-two-carousel.swiper .swiper-button-prev::after,
.service-style-two-carousel.swiper .swiper-button-next::after {
  color: var(--white);
  font-size: 30px;
}

.service-style-two-carousel.swiper:hover .swiper-button-prev {
  left: 50px;
  opacity: 1;
  visibility: visible;
}

.service-style-two-carousel.swiper:hover .swiper-button-next {
  right: 50px;
  opacity: 1;
  visibility: visible;
}

/* ============================================================== 
    # Services Details
=================================================================== */
.services-details-area .thumb img {
  margin-bottom: 40px;
}

.services-details-area h1,
.services-details-area h2,
.services-details-area h3,
.services-details-area h4,
.services-details-area h5,
.services-details-area h6 {
  font-weight: 600;
}

.feature-list-item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list-item li {
  position: relative;
  z-index: 1;
  padding-left: 27px;
  margin-top: 8px;
}

.feature-list-item li::after {
  position: absolute;
  left: 0;
  top: 1px;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  color: var(--color-secondary);
  font-weight: 500;
}

.quick-contact-widget {
  padding: 60px 37px;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.quick-contact-widget h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 25px;
}

.quick-contact-widget h4 a {
  font-weight: 400;
  border-bottom: 2px solid;
}

.quick-contact-widget i {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  font-weight: 100;
  background: #ffffff;
  color: var(--color-primary);
  font-size: 22px;
  border-radius: 50%;
  margin-bottom: 40px;
  position: relative;
}

.quick-contact-widget i::after {
  position: absolute;
  left: -10px;
  top: -10px;
  content: "";
  height: 80px;
  width: 80px;
  background: #ffffff;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.8;
}

.quick-contact-widget::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: var(--black);
  z-index: -1;
  opacity: 0.6;
}

.quick-contact-widget .btn-sm {
  font-size: 16px;
}

.services-sidebar .single-widget {
  margin-top: 50px;
}

.services-sidebar .single-widget .widget-title {
  display: block;
  font-weight: 800;
  margin-bottom: 30px;
  margin-top: -5px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
  display: inline-block;
  padding-bottom: 15px;
}

.services-sidebar .single-widget .widget-title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 2px;
  width: 50px;
  border-bottom: 2px solid var(--color-primary);
}

.services-sidebar .single-widget h4.widget-title {
  font-size: 22px;
}

.services-sidebar .single-widget:first-child {
  margin-top: 0;
}

.widget-brochure ul {
  padding-left: 0;
  list-style: none;
}

.widget-brochure ul li a {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 5px;
  border: 2px solid #cddff7;
  color: var(--color-heading);
}

.widget-brochure ul li a:hover {
  color: var(--color-primary);
}

.widget-brochure ul li:first-child a {
  margin-top: 0;
}

.widget-brochure ul li:first-child a,
.widget-brochure ul li a:hover {
  background: var(--color-primary);
  border-color: transparent;
  color: var(--white);
}

.widget-brochure ul li i {
  font-size: 35px;
  font-weight: 100;
  margin-right: 16px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.widget-brochure ul li:hover i,
.widget-brochure ul li:first-child i {
  color: var(--white);
}

.services-list-widget {
  background: var(--bg-gray);
  padding: 30px;
}

.services-list-widget ul li:last-child a {
  border: none;
}

.services-list-widget ul {
  list-style: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.services-list-widget ul li {
  display: block;
}

.services-list-widget ul li a {
  display: block;
  padding: 18px 25px;
  border-bottom: 1px solid #c8e0ff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--color-heading);
}

.services-list-widget ul li a::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 0;
  background: var(--bg-gradient);
  background-size: 220% 150%;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  z-index: -1;
}

.services-list-widget ul li a:hover {
  color: #ffffff;
}

.services-list-widget ul li a:hover::before {
  width: 100%;
}

.services-list-widget ul li.current-item a {
  color: #ffffff;
}

.services-list-widget ul li.current-item a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  content: "\f061";
  border-radius: 50%;
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 17px;
}

.services-list-widget ul li.current-item a::before {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .services-more .row {
    margin-top: -20px;
  }
}

.services-more .item {
  padding: 35px;
  background: var(--bg-gray);
  margin-top: 15px;
  border-radius: 10px;
}

@media only screen and (max-width: 767px) {
  .services-more .item {
    margin-top: 30px;
    text-align: center;
  }

  .services-details-items blockquote {
    font-size: 28px;
    padding: 50px 37px;
    margin: 30px 0;
    margin-top: 0;
  }
}

.services-more .item i {
  display: inline-block;
  font-size: 40px;
  margin-bottom: 30px;
  background: var(--color-primary);
  color: var(--white);
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 70px;
  border-radius: 50%;
}

.services-more .item a {
  color: var(--color-heading);
}

.services-more .item a:hover {
  color: var(--color-primary);
}

.services-more .item p {
  margin: 0;
}

.accordion-style-two-items .accordion-style-two {
  margin-top: 15px;
  border: none;
  background: #ffffff;
  box-shadow: 0 25px 70px rgb(0 0 0 / 7%);
  border-radius: 8px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.accordion-style-two-items .accordion-style-two .accordion-body {
  padding: 30px;
}

.accordion-style-two-items button.accordion-button:not(.collapsed) {
  background: var(--color-primary);
  border-radius: 10px 10px 0 0;
}

.accordion-style-two-items .accordion-style-two::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 5px;
  border-radius: 0 10px 10px 0;
}

.accordion-style-two-items .accordion-style-two .accordion-body p {
  margin: 0;
}

.accordion-style-two-items button.accordion-button {
  background: #ffffff;
  padding: 20px 25px !important;
  box-shadow: inherit !important;
  color: var(--color-heading);
  border-radius: 10px;
}

.accordion-style-two-items button.accordion-button::after {
  filter: grayscale(100%);
  left: auto;
  right: 20px;
  background-color: transparent;
  transform: none;
}

.services-details-items blockquote {
  background: var(--color-secondary);
  color: var(--white);
  padding: 45px 60px;
  border-radius: 6px;
  margin: 40px 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
}

.accordion-button {
  text-transform: none;
}

/* ============================================================== 
    # Our Benifits
=================================================================== */
.fun-fact .medium {
  display: block;
}

.fun-fact .counter {
  display: flex;
  align-items: center;
  font-size: 65px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 5px;
}

.shape-top-center {
  position: absolute;
  left: 0;
  top: 0;
  height: 100px;
  width: 100%;
  background-size: cover;
}

.benifits-area {
  position: relative;
  padding-top: 250px;
}

.benifit-items {
  padding: 80px;
  position: relative;
  bottom: 0;
  background: var(--color-secondary);
  margin-right: -15px;
}

.benifit-items .sub-title {
  margin-bottom: 30px;
}

.product-count {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding-top: 35px;
  margin-top: 35px;
}

.product-count img {
  width: 100px;
  margin-right: 30px;
}

.benifit-items p {
  opacity: 0.9;
}

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

.list-standard li {
  position: relative;
  font-size: 17px;
  padding-left: 25px;
  line-height: 2;
  font-weight: 500;
}

.list-standard li::after {
  position: absolute;
  left: 0;
  top: 7px;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  line-height: 20px;
  color: var(--white);
  border-radius: 5px;
}

/* ============================================================== 
    # Video Area
=================================================================== */
.video-content {
  padding: 280px 0;
  position: relative;
  z-index: 1;
}

.video-content .video-play-button {
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
}

.video-content .video-play-button i {
  top: 0;
  left: 0;
}

.video-content .video-play-button i::before {
  left: 5px;
  position: relative;
}

.video-content h2 {
  margin: 0;
}

/* ============================================================== 
    # Product list
=================================================================== */
.product-cat-area {
  position: relative;
  z-index: 1;
}

.product-list-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 60px;
  grid-column-gap: 30px;
}

.product-cat-lists {
  padding-left: 80px;
}

.product-cat-items {
  overflow: hidden;
}

.product-cat-lists .top-info {
  position: relative;
  z-index: 1;
  margin-bottom: 35px;
}

.product-list-item a {
  display: block;
  position: relative;
  z-index: 1;
}

.product-list-item a img {
  height: 70px;
  margin-bottom: 15px;
}

.product-list-item h5 {
  font-family: var(--font-secondary);
  letter-spacing: 1px;
  font-weight: 900;
  margin-bottom: 0;
}

.mask-text {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  background-position: center;
  font-size: 100px;
  font-weight: 900;
  margin: 0;
  line-height: 1.1;
  text-transform: capitalize;
  font-family: var(--font-secondary);
  display: inline-block;
}

.product-cat-area::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 50%;
  background: var(--dark);
  z-index: -1;
}

.shape-right-bottom-mini {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20%;
}

.benifit-items .shape {
  position: absolute;
  left: -80px;
  bottom: -60px;
  width: 200px;
  animation: UpDown 6s linear infinite;
}

/* ============================================================== 
    # Testimonial
=================================================================== */

.testimonial-area {
  background-size: 30%;
  background-repeat: repeat-x;
  background-position: bottom center;
}

.testimonial-style-one p {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.6;
}

.testimonial-style-one {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 50px;
  overflow: hidden;
}

.testimonial-style-one .info {
  background: var(--white);
  padding: 60px;
  padding-left: 220px;
  margin-left: -200px;
  margin-top: 120px;
  position: relative;
  z-index: 1;
}

.testimonial-style-one .info img {
  height: 100px;
  position: absolute;
  z-index: -1;
  margin-top: -28px;
  opacity: 0.07;
  margin-left: -25px;
}

.testimonial-style-one .thumb {
  position: relative;
  z-index: 2;
}

.testimonial-heading {
  position: relative;
}

.testimonial-heading h2 {
  position: absolute;
  top: 0;
  left: 38%;
  font-size: 50px;
  z-index: 1;
}

.testimonial-heading h2::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/5.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  z-index: -1;
}

.testimonial-style-one .provider {
  display: flex;
  justify-content: space-between;
}

.testimonial-style-one .provider i {
  color: #ffc204;
}

.testimonial-style-one .provider {
  margin-top: 30px;
  border-top: 2px solid;
  padding-top: 35px;
}

.testimonial-style-one .provider h4 {
  margin-bottom: 5px;
}

.testimonial-style-one .provider span {
  color: var(--color-secondary);
  text-transform: uppercase;
}

/* ============================================================== 
    # Testimonial Style Two
=================================================================== */
.testimonial-style-two-area {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.testimonial-style-two {
  border-radius: 10px;
  overflow: hidden;
  padding-top: 20px;
}

.testimonial-style-two .thumb {
  position: relative;
  height: 150px;
  width: 150px;
  margin: auto auto 30px;
}

.testimonial-style-two .thumb > img {
  border-radius: 50%;
  border: 12px solid var(--white);
}

.testimonial-style-two .thumb img:nth-child(2) {
  border-radius: inherit;
  position: absolute;
  height: 51px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  padding: 10px;
  border-radius: 50%;
}

.testimonial-style-two p {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-heading);
}

.testimonial-style-two .provider {
  position: relative;
  z-index: 1;
  margin-top: -80px;
}

.testimonial-style-two .item-info {
  padding: 120px;
  position: relative;
  background: var(--white);
  border-radius: 20px;
}

.testimonial-style-two .item-info::after {
  position: absolute;
  left: 30px;
  right: 30px;
  content: "";
  height: 60px;
  background: var(--white);
  z-index: -1;
  top: -20px;
  border-radius: 10px;
  opacity: 0.6;
}

.testimonial-style-two .thumb .quote {
  background: var(--color-secondary);
  height: 50px;
  width: 50px;
  padding: 11px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -7px;
}

.testimonial-style-two .thumb .quote img {
  border-radius: 0;
}

.testimonial-style-two .provider h4 {
  margin-bottom: 5px;
  font-size: 28px;
}

.testimonial-style-two .provider span {
  color: var(--color-secondary);
  text-transform: uppercase;
  font-size: 18px;
}

.testimonial-style-two i {
  display: inline-block;
  font-size: 24px;
  margin-bottom: 25px;
  color: #ffc100;
}

.testimonial-style-two-carousel .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.testimonial-style-two-carousel .swiper-pagination .swiper-pagination-bullet {
  height: 20px;
  width: 20px;
  border: 1px solid var(--color-heading);
  background: transparent;
  position: relative;
  z-index: 1;
}

.testimonial-style-two-carousel
  .swiper-pagination
  .swiper-pagination-bullet::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  background: var(--color-heading);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* ============================================================== 
    # Gallery
=================================================================== */
.gallery-style-one {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.gallery-style-one img {
  transition: all 0.75s ease-in-out;
  transform: scale(1);
}

.gallery-style-one:hover img {
  transform: scale(1.3);
}

.gallery-style-one .overlay {
  position: absolute;
  left: 30px;
  bottom: 15px;
  z-index: 1;
  right: 0px;
  margin: 0px;
  padding: 50px;
}

.gallery-style-one .overlay::after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.75;
  background: url(../img/shape/14.png) left center / 50% no-repeat;
  background-position: left center;
}

.gallery-style-one .overlay h4 {
  margin: 0;
  font-family: var(--font-secondary);
  letter-spacing: 1px;
  font-size: 28px;
}

.gallery-style-one::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 40%;
  width: 100%;
  background: rgba(0, 0, 0, 0)
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%)
    repeat scroll 0 0;
}

.gallery-style-one-carousel .swiper-wrapper {
  padding-bottom: 70px;
}

.gallery-style-one-carousel .swiper-pagination {
  margin-bottom: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-style-one-carousel .swiper-pagination span.swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background: var(--dark);
}

.gallery-style-one-carousel
  .swiper-pagination
  span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  height: 17px;
  width: 17px;
  background: var(--color-secondary);
  opacity: 1;
}

.gallery-style-one .overlay a {
  color: var(--white);
}

.gallery-style-one .overlay p {
  color: var(--color-primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
  font-size: 18px;
}

/* ============================================================== 
    # Gallery 
=================================================================== */

.magnific-mix-gallery {
  margin: -15px;
  overflow: hidden;
}

.gallery-items.colums-3 .gallery-item {
  float: left;
  padding: 15px;
  width: 33.3333%;
}

.gallery-items.colums-2 .gallery-item {
  float: left;
  padding: 15px;
  width: 50%;
}

.gallery-items.colums-4 .gallery-item {
  float: left;
  padding: 15px;
  width: 25%;
}

.gallery-items .gallery-item.width {
  width: 66.6666%;
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  .gallery-items.colums-2 .gallery-item,
  .gallery-items.colums-3 .gallery-item,
  .gallery-items.colums-4 .gallery-item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Max Wide Mobile Layout: 600px. */
@media only screen and (min-width: 600px) and (max-width: 1200px) {
  /* Portfolio */
  .gallery-items.colums-4 .gallery-item {
    width: 50%;
  }
}

/* ============================================================== 
    # Project Details
=================================================================== */

.project-details-style-one img {
  border-radius: 10px;
}

.project-details-thumb img {
  margin-bottom: 60px;
}

.project-single-tags a {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-right: 10px;
  text-transform: uppercase;
  color: var(--color-paragraph);
}

.project-single-tags a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: ",";
}

.project-single-tags a:last-child::after {
  display: none;
}

.project-single-tags {
  margin-bottom: 15px;
}

.project-single-tags a:hover {
  color: var(--color-primary);
}

.project-details-thumb h2 {
  font-weight: 700;
  margin: 0;
  padding-right: 15%;
}

.project-author-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-row-gap: 30px;
}

.project-author-details ul li {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-column-gap: 60px;
  position: relative;
  z-index: 1;
  border-top: 1px solid #dddddd;
  padding-top: 30px;
}

.project-author-details ul li:first-child {
  border: none;
  padding: 0;
}

.project-author-details ul li h3 {
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}

.project-author-details ul li p {
  margin: 0;
}

.project-author-details ul li .right-info h3 {
  color: var(--color-paragraph);
  font-weight: 600;
}

p.project-inner-tag {
  font-weight: 700;
  line-height: 2.3;
  text-transform: uppercase;
}

.item-grid-container img {
  margin-top: 50px;
}

.item-grid-colum h1,
.item-grid-colum h2,
.item-grid-colum h3,
.item-grid-colum h4,
.item-grid-colum h5,
.item-grid-colum h6 {
  font-weight: 700;
}

ul.list-disc {
  list-style: disc;
  margin-left: 20px;
  padding: 0;
}

ul.list-disc li {
  list-style: disc;
  margin-top: 7px;
}

.project-details-style-one img {
  margin-bottom: 35px;
}

.project-details-style-one .project-details-top img {
  margin-bottom: 60px;
}

.project-detail-content {
  position: relative;
}

.project-detail-content ul.project-info {
  padding: 60px;
  border-radius: 8px;
}

@media (min-width: 992px) {
  .project-detail-content ul.project-info {
    position: sticky;
    top: 200px;
  }
}

ul.project-info li h4 {
  margin: 0;
  margin-bottom: 4px;
}

ul.project-info li {
  margin-top: 25px;
}

ul.project-info li:first-child {
  margin-top: 0;
}

.project-static-gallery img {
  margin-bottom: 0;
  margin-top: 20px;
}

/* ============================================================== 
	 # Why Choose Us
=================================================================== */
.choose-us-thumb {
  text-align: center;
  position: relative;
  z-index: 1;
}

.choose-us-thumb::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 120%;
  width: 66%;
  transform: translate(-50%, -50%);
  border: 15px solid var(--color-primary);
  z-index: -1;
}

.choose-us-thumb img {
  max-width: 120%;
}

.achivement-items {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-column-gap: 80px;
  align-items: center;
}

.achivement-content {
  text-align: center;
}

.achivement-content .progressbar {
  position: relative;
  margin-bottom: 5px;
}

.achivement-content .progressbar strong {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 24px;
  color: var(--color-primary);
}

.achivement-content .item {
  margin-top: 50px;
}

.achivement-content .item:first-child {
  margin-top: 0;
}

.achivement-content .item h4 {
  font-size: 20px;
}

ul.list-details h4 {
  font-weight: 700;
}

ul.list-details li {
  margin-top: 40px;
}

ul.list-details li:first-child {
  margin-top: 0;
}

ul.list-details li p {
  margin: 0;
}

/* ============================================================== 
    # Choose us Style Two
=================================================================== */
.choose-us-style-two-area {
  position: relative;
  z-index: 1;
}

.choose-us-style-two-area::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 50%;
  background: var(--dark);
  z-index: -1;
}

.choose-us-style-two-area::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 50%;
  background: url(../img/shape/12.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
  z-index: -1;
}

ul.list-simple li {
  margin-top: 40px;
  position: relative;
  z-index: 1;
  padding-left: 45px;
}

ul.list-simple li:first-child {
  margin-top: 0;
}

ul.list-simple li::after {
  position: absolute;
  left: 0;
  top: 3px;
  height: 26px;
  width: 26px;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--white);
  line-height: 27px;
}

ul.list-simple li p {
  margin: 0;
}

ul.list-simple.text-light li p {
  opacity: 0.9;
}

.fun-fact-thumb {
  position: relative;
  margin-left: -35%;
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  bottom: -120px;
  margin-top: -120px;
}

.fun-fact-thumb .fun-fact {
  margin-left: 25%;
}

.choose-us-style-two-info {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-column-gap: 50px;
  margin-top: 50px;
}

.choose-us-style-two-info .thumb {
  margin-right: -140%;
  margin-left: 30px;
}

.choose-us-style-two-info .fun-fact {
  margin-top: 20px;
  color: var(--color-heading);
  border-top: 2px solid;
  padding-top: 20px;
}

.choose-us-style-two-info .fun-fact:first-child {
  margin-top: -10px;
  padding-top: 0;
  border: none;
}

.choose-us-style-two-info .fun-fact .counter {
  color: var(--color-primary);
  font-size: 70px;
  font-weight: 600;
}

.choose-us-style-two-info .thumb {
  position: relative;
  z-index: 1;
}

.choose-us-style-two-info .thumb .video-play-button {
  z-index: 999;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.choose-us-style-two-info .thumb .video-play-button i {
  font-size: 30px;
  left: 0;
}

.choose-us-style-two-info .thumb .video-play-button .effect {
  background: var(--color-primary);
  height: 150px;
  width: 150px;
}

.choose-us-style-two-info .thumb .video-play-button .effect::after {
  background: var(--color-primary);
  height: 100px;
  width: 100px;
}

.choose-us-style-two-info .thumb .video-play-button i::before {
  position: relative;
  left: 3px;
}

/* ============================================================== 
    # Choose Us Style Three
=================================================================== */
.choose-us-style-three-area .shape {
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 45%;
}

.choose-us-style-three-badge {
  position: absolute;
  top: 50%;
  right: 0;
  height: 200px;
  width: 200px;
  display: inline-block;
  transform: translateY(-50%);
  margin-right: -60px;
}

.choose-us-style-three-badge img {
  background: var(--white);
  border-radius: 50%;
  padding: 17px;
  box-shadow: 0 25px 70px rgb(0 0 0 / 7%);
  position: absolute;
  right: -30px;
  animation: spinner 30s infinite linear;
  height: 200px;
}

.choose-us-style-three-badge img:nth-child(2) {
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  padding: 0;
  background: transparent;
  border-radius: inherit;
  animation: inherit;
  box-shadow: none;
}

.illustration-bottom {
  position: absolute;
  right: 0;
  bottom: -80px;
  z-index: 9;
  width: 20%;
}

.list-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-column-gap: 50px;
  margin-top: 35px;
  align-items: center;
}

.list-grid h4 {
  margin: 0;
  text-transform: capitalize;
  font-size: 30px;
}

ul.list-item li {
  position: relative;
  z-index: 1;
  padding-left: 35px;
  font-size: 18px;
  margin-top: 5px;
}

ul.list-item li::after {
  position: absolute;
  left: 0;
  top: 7px;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  height: 23px;
  width: 23px;
  text-align: center;
  line-height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  font-size: 11px;
}

.list-grid .achivement-content {
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.list-grid .achivement-content .progressbar {
  display: inline-block;
}

/* ============================================================== 
    # Farmers
=================================================================== */

.farmer-area {
  background-repeat: repeat-x;
  background-position: bottom center;
}

.farmer-stye-one {
  margin-bottom: 30px;
}

.farmer-style-one-item .thumb {
  position: relative;
}

.farmer-style-one-item .thumb .social {
  position: absolute;
  left: 0;
  bottom: 0;
}

.farmer-style-one-item .info {
  display: inline-block;
  /* float: right; */
  margin-top: 24px;
}

.farmer-style-one-item .info h4 {
  margin: 0;
}

.farmer-style-one-item .info span {
  font-size: 14px;
  font-weight: 600;
}

.farmer-style-one-item .thumb .social > i {
  display: inline-block;
  height: 50px;
  width: 50px;
  background: var(--color-primary);
  text-align: center;
  line-height: 50px;
  color: var(--color-heading);
  position: absolute;
  bottom: 0;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}

.farmer-style-one-item .thumb .social ul {
  position: absolute;
  bottom: 50px;
}

.farmer-style-one-item .thumb .social ul a {
  color: var(--white);
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  opacity: 0;
  visibility: hidden;
}

.farmer-style-one-item .thumb .shape {
  position: absolute;
  left: 0;
  bottom: -15px;
}

.farmer-style-one-item .thumb:hover .social ul a {
  opacity: 1;
  visibility: visible;
}

.farmer-style-one-item .thumb .social ul li:first-child a {
  transform: translateY(30px) rotate(0);
}

.farmer-style-one-item .thumb .social ul li:nth-child(2) a {
  transform: translateY(30px) rotate(0);
}

.farmer-style-one-item .thumb .social ul li:nth-child(3) a {
  transform: translateY(30px) rotate(0);
}

.farmer-style-one-item .thumb .social ul li:nth-child(4) {
  transform: translateY(30px) rotate(0);
}

/* Hover */
.farmer-style-one-item .thumb:hover .social ul li:first-child a {
  transform: translateY(0) rotate(0);
}

.farmer-style-one-item .thumb:hover .social ul li:nth-child(2) a {
  transform: translateY(0) rotate(0);
}

.farmer-style-one-item .thumb:hover .social ul li:nth-child(3) a {
  transform: translateY(0) rotate(0);
}

.farmer-style-one-item .thumb:hover .social ul li:nth-child(4) {
  transform: translateY(0) rotate(0);
}

.farmer-style-one-item .thumb .social li.facebook a {
  background: #3b5998 none repeat scroll 0 0;
}

.farmer-style-one-item .thumb .social li.twitter a {
  background: #1da1f2 none repeat scroll 0 0;
}

.farmer-style-one-item .thumb .social li.pinterest a {
  background: #bd081c none repeat scroll 0 0;
}

.farmer-style-one-item .thumb .social li.g-plus a {
  background: #db4437 none repeat scroll 0 0;
}

.farmer-style-one-item .thumb .social li.linkedin a {
  background: #0077b5 none repeat scroll 0 0;
}

.farmer-style-one-item .thumb .social li.instagram a {
  background: #3f729b none repeat scroll 0 0;
}

/* ============================================================== 
     # Team Single  
=================================================================== */

.team-single-area .team-content-top .right-info h2 {
  font-weight: 600;
}

.team-single-area .team-content-top .right-info span {
  display: block;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 25px;
}

.team-single-area .right-info ul {
  margin-top: 25px;
  border-top: 1px solid #e7e7e7;
  padding-top: 17px;
}

.team-single-area .right-info ul li {
  margin-top: 10px;
  color: var(--color-heading);
}

.team-single-area .right-info ul li strong {
  font-weight: 600;
}

.team-single-area .right-info ul li a {
  font-weight: 400;
}

.team-single-area .right-info ul li a:hover {
  color: var(--color-primary);
}

.team-single-area .right-info .social {
  display: flex;
  margin-top: 25px;
  font-weight: 600;
  align-items: center;
}

.team-single-area .right-info .social h4 {
  font-weight: 600;
  margin-bottom: 0;
  margin-right: 25px;
}

.team-single-area .right-info .social ul {
  margin: 0;
  padding: 0;
  border: none;
}

.team-single-area .right-info .social .share-link {
  position: relative;
  z-index: 1;
  margin-left: 15px;
  padding-right: 20px;
}

.team-single-area .right-info .social .share-link > i {
  display: inline-block;
  height: 45px;
  background: var(--white);
  box-shadow: 0 0 10px #cccccc;
  line-height: 45px;
  width: 45px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-secondary);
}

.team-single-area .right-info .social ul {
  display: flex;
  list-style-type: none;
  grid-gap: 10px;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out 0s;
}

.team-single-area .right-info .social .share-link:hover ul {
  left: 58px;
  opacity: 1;
  pointer-events: auto;
}

.team-single-area .right-info .social ul li {
  display: inline-block;
  margin: 0;
}

.team-single-area .right-info .social ul li a {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 47px;
  background: #f1f1f1;
  text-align: center;
  border-radius: 50%;
}

.team-single-area .bottom-info h2 {
  font-weight: 600;
  margin-bottom: 25px;
}

.team-single-area .bottom-info p:last-child {
  margin-bottom: 0;
}

.team-single-area .bottom-info .skill-items {
  padding-left: 35px;
}

.skill-items .progress-box {
  margin-bottom: 35px;
}

.team-single-area .team-content-top img {
  border-radius: 50%;
}

.skill-items .progress-box:last-child {
  margin-bottom: 0;
}

.skill-items .progress-box h5 {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: left;
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.skill-items .progress-box h5 span {
  position: absolute;
  font-size: 50px;
  line-height: 1;
  top: -21px;
  left: 0;
  z-index: -1;
  opacity: 0.05;
  font-weight: 600;
}

.skill-items .skill-items {
  margin-top: 40px;
}

.skill-items .progress-box .progress {
  background: transparent;
  border-bottom: none;
  box-shadow: inherit;
  border-radius: inherit;
  overflow: inherit;
}

.skill-items .progress-box .progress .progress-bar {
  height: 6px;
  border-radius: 30px;
  background: var(--bg-gradient);
  top: 12px;
  position: relative;
  overflow: inherit;
}

.skill-items .progress-box .progress .progress-bar span {
  position: absolute;
  right: 0;
  top: -40px;
  display: block;
  font-size: 17px;
  color: var(--color-heading);
  font-weight: 600;
}

.team-single-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
}

.team-list-item h4 {
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 28px;
}

.team-list-item h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.team-list-item span {
  text-transform: none;
  margin-bottom: 5px;
  color: var(--color-heading);
  display: block;
}

.team-list-item li {
  margin-top: 30px;
}

.team-list-item li:first-child {
  margin-top: 0;
}

.team-single-list ul {
  border: none;
  margin-top: 0;
  padding: 0;
}

.skill-items h3 {
  font-weight: 600;
  margin-bottom: 30px;
}

.team-list-item ul {
  border-left: 1px solid;
  padding-left: 25px;
}

.team-list-item ul li {
  position: relative;
  z-index: 1;
}

.team-list-item ul li::after {
  position: absolute;
  left: -33px;
  top: 3px;
  content: "";
  height: 15px;
  width: 15px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: var(--bg-gray);
}

/* ============================================================== 
    # Faq
=================================================================== */

.faq-style-one {
  position: relative;
}

.faq-style-one button.accordion-button {
  color: var(--color-heading);
  font-size: 18px;
  font-weight: 600;
  padding: 20px;
  padding-right: 0;
  background: transparent;
  padding-left: 35px;
  position: relative;
  box-shadow: inherit;
  border: none;
  border-radius: inherit;
  text-transform: none;
}

.faq-style-one button.accordion-button::after {
  background: transparent;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 100;
  font-size: 17px;
  position: absolute;
  top: 22px;
  left: 0;
  opacity: 1;
  height: 100%;
  transform: inherit;
}

.faq-style-one button.accordion-button:not(.collapsed)::after {
  -webkit-transform: inherit;
  transform: inherit;
  content: "\f068";
}

.faq-style-one button.accordion-button:focus {
  background: transparent;
  color: var(--color-heading);
  border: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

.faq-style-one .accordion-body {
  padding: 0;
  margin-top: 15px;
}

.faq-style-one .accordion-header {
  border-bottom: 1px solid;
}

.thumb-style-two {
  position: relative;
  z-index: 1;
}

.thumb-style-two img:nth-child(2) {
  position: absolute;
  bottom: -2px;
  z-index: -1;
  height: 300px;
  left: 100%;
  transform: rotate(2deg);
  margin-left: -25px;
}

.thumb-style-two h2 {
  margin: 0;
  position: absolute;
  font-size: 200px;
  bottom: 0;
  left: -80px;
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
  font-family: sans-serif;
}

.thumb-style-two h2 strong {
  display: inline-block;
  color: var(--color-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  background-position: center;
  background-image: url(../img/banner/7.jpg);
  font-size: 250px;
}

/* ============================================================== 
    # Contact Us
=================================================================== */

.contact-area {
  background-size: 20%;
  background-repeat: no-repeat;
  background-position: right bottom;
  position: relative;
  z-index: 1;
}

.contact-area::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 55%;
  background: var(--dark);
  z-index: -1;
}

.contact-page.contact-area::after {
  display: none;
}

.contact-area .shape-left-top {
  max-width: 30%;
  top: 60px;
  opacity: 0.1;
}

.contact-style-one-info li {
  display: flex;
  margin-top: 30px;
}

.contact-style-one-info li i {
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background: var(--color-primary);
  border-radius: 50%;
  color: var(--white);
  font-size: 25px;
  margin-right: 20px;
}

.contact-style-one-info li:nth-child(2) i {
  background: var(--color-secondary);
}

.contact-style-one-info li:nth-child(3) i {
  background: #068685;
}

.contact-style-one-info li p {
  margin: 0;
}

.contact-style-one-info li h5 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 20px !important;
  margin-top: 0;
}

.contact-style-one-info li a {
  font-weight: 400;
}

.contact-style-one-info h2 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1;
}

.contact-style-one-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 50px;
}

.contact-form-style-one {
  padding: 80px 100px;
  position: relative;
  background: var(--white);
}

.contact-form-style-one img {
  position: absolute;
  left: -230px;
  bottom: -50px;
  width: 300px;
}

.contact-form-style-one .illustration {
  position: absolute;
  left: -130px;
  bottom: -60px;
  z-index: -1;
}

.contact-form-style-one .sub-heading {
  margin-bottom: 15px;
}

.contact-form-style-one .heading {
  margin-bottom: 40px;
}

.contact-form-style-one input,
.contact-form-style-one textarea {
  margin-bottom: 15px;
  padding: 15px 20px;
  border: none;
  background: #f8f8f8;
  font-size: 14px;
}

.contact-form-style-one textarea {
  min-height: 180px;
}

.contact-form-style-one button {
  display: inline-block;
  font-weight: 700;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 6px;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  font-size: 17px;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  color: var(--color-heading);
  border: none;
  background: var(--color-primary);
  padding: 16px 52px;
}

.contact-form-style-one button::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--color-secondary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.contact-form-style-one button:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.contact-form-style-one button:hover {
  color: var(--white);
}

img.loader {
  margin-left: 8px;
}

.contact-style-one-info h2 span {
  position: relative;
  z-index: 1;
}

.contact-style-one-info h2 span svg {
  position: absolute;
  top: auto;
  left: 50%;
  width: 80%;
  height: 100%;
  transform: translate(-50%);
  overflow: visible;
  bottom: 0;
  z-index: -1;
}

.contact-style-one-info h2 span path {
  stroke: var(--color-primary);
  stroke-width: 10;
  stroke-dasharray: 1500;
  fill: none;
}

.contact-form-style-one .sub-title {
  margin-bottom: 10px;
  font-family: var(--font-default);
}

.sahpe-right-bottom {
  position: absolute;
  right: 0;
  bottom: -50px;
  max-width: 15%;
}

/* ============================================================== 
    # Feature
=================================================================== */

.feature-style-one-area {
  background-size: 15%;
  background-repeat: no-repeat;
  background-position: right bottom;
}

.shape-left-top {
  position: absolute;
  left: 0;
  top: 50px;
  z-index: -1;
  width: 25%;
}

.quality-card ul {
  display: flex;
  align-items: center;
  margin: 0;
  list-style: none;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 30px;
  padding-bottom: 25px;
  margin-top: -40px;
}

.quality-card img {
  height: 120px;
  margin: 0 15px;
}

.quality-card ul li {
  font-size: 50px;
  text-transform: uppercase;
  color: var(--color-heading);
  font-weight: 700;
}

.feature-style-one-info .mask-text {
  text-align: center;
}

.feature-style-one-item {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.feature-style-one-item h2 {
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-secondary);
  font-weight: 900;
  color: var(--white);
}

.item-list li {
  font-weight: 600;
  color: var(--color-heading);
  line-height: 32px;
  padding-left: 25px;
  position: relative;
  z-index: 1;
}

.item-list li::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Pro";
  color: var(--color-secondary);
  font-weight: 100;
}

.featured-product {
  background: var(--white);
  box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
  overflow: hidden;
  border-radius: 10px;
  margin-right: -50px;
  padding: 25px 0;
}

.featured-product .product-list-item a {
  display: flex;
  align-items: center;
  padding: 17px 50px;
}

.featured-product .product-list-item img {
  width: 70px;
  height: auto;
  margin-right: 20px;
  margin-bottom: 0;
}

.featured-product .product-list-item {
  position: relative;
  z-index: 1;
}

.featured-product .product-list-item a h5 {
  margin: 0;
}

/* ============================================================== 
    # Featuer Style Two
=================================================================== */

.feature-style-two-area {
  background-size: 55%;
  background-position: left bottom;
  background-repeat: no-repeat;
}

.feature-style-two-items {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  align-items: center;
}

.feature-style-two {
  padding: 50px;
}

.feature-style-two.info {
  padding: 100px 80px;
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: right bottom;
  box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
  background-color: var(--white);
}

.product-feature-item {
  text-align: center;
  margin-top: 80px;
}

.product-feature-item h4 {
  margin: 0;
}

.product-feature-item:first-child {
  margin-top: 0;
}

.product-feature-item img {
  height: 120px;
  margin-bottom: 15px;
}

.product-feature-item .thumb {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.product-feature-item .thumb::after {
  position: absolute;
  left: 50%;
  top: -30px;
  content: "";
  height: 150px;
  width: 150px;
  transform: translateX(-50%);
  background: linear-gradient(0deg, transparent, rgba(237, 245, 255, 0.9));
  z-index: -1;
  border-radius: 50%;
}

/* ============================================================== 
    # Feature Style Three
=================================================================== */

.thumb-style-three {
  position: relative;
  z-index: 1;
}

.thumb-style-three img {
  padding: 80px;
}

.thumb-style-three::after {
  position: absolute;
  height: 580px;
  width: 580px;
  content: "";
  border: 100px solid var(--color-primary);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.feature-style-three-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-style-three-item p {
  margin: 0;
}

.feature-style-three-item h4 {
  font-weight: 700;
}

.feature-style-three-item li {
  margin-top: 30px;
  display: flex;
  border-top: 1px solid var(--color-secondary);
  padding-top: 30px;
}

.feature-style-three-item li:first-child {
  margin-top: 0;
  padding-top: 0;
  border: none;
}

.ex-badge {
  position: absolute;
  left: 30px;
  bottom: 0;
  height: 280px;
  width: 280px;
}

.ex-badge .fun-fact {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
}

.ex-badge img {
  padding: 0;
}

.ex-badge .fun-fact .counter {
  line-height: 1;
  margin: 0;
  font-weight: 600;
  justify-content: center;
  align-items: center;
}

.feature-style-three-item li img {
  min-width: 60px;
  width: 60px;
}

.feature-style-three-item li .icon {
  margin-right: 25px;
}

.feature-style-three-item.text-end li {
  flex-direction: row-reverse;
}

.feature-style-three-item.text-end li .icon {
  margin-right: 0;
  margin-left: 30px;
}

/* ============================================================== 
    # Timeline
=================================================================== */

.timeline-area {
  background-size: 45%;
  background-repeat: no-repeat;
  background-position: left bottom;
}

.timeline-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 50px;
  border-top: 2px solid var(--dark);
  padding-top: 50px;
}

.timeline-item h2 {
  color: var(--dark);
  font-weight: 800;
  font-size: 65px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.timeline-item h4 {
  margin-bottom: 0;
}

.timeline-item {
  position: relative;
  z-index: 1;
}

.timeline-item::after {
  position: absolute;
  left: 40px;
  top: -61px;
  content: "";
  height: 20px;
  width: 20px;
  background: var(--white);
  border-radius: 50%;
  border: 2px solid var(--dark);
}

.timeline-item::before {
  position: absolute;
  left: 49px;
  top: -42px;
  content: "";
  height: 30px;
  width: 2px;
  border-left: 2px solid var(--dark);
}

.timeline-item h2::after {
  position: absolute;
  left: 46px;
  top: -55px;
  content: "";
  height: 8px;
  width: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
}

/* ============================================================== 
     # History 
=================================================================== */

.history-area {
  position: relative;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  overflow: hidden;
}

.history-area .fixed-shape-center {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.04;
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}

.history-area .fixed-shape {
  position: absolute;
  bottom: -11px;
  width: 100%;
}

.history-area .fixed-shape img {
  width: 100%;
}

/* Indicator */

.history-area .carousel-indicators {
  bottom: auto;
  top: 0;
  justify-content: center;
  text-align: center;
  margin: 0 10%;
}

.history-area .carousel-indicators li {
  text-indent: 0;
  border: none;
  color: #ffffff;
  background: transparent;
  transition: all 0.25s ease;
  line-height: 1;
  opacity: 1;
  height: 60px;
  text-align: center;
  display: block;
  flex: inherit;
  float: none;
  width: auto;
}

.history-area .carousel-indicators li h4 {
  font-weight: 700;
  color: var(--color-heading);
  transition: all 0.35s ease-in-out;
  text-align: center;
}

.history-area .carousel-inner {
  padding-top: 120px;
  padding-left: 15%;
  padding-right: 15%;
}

.history-area .carousel-indicators::after {
  position: absolute;
  left: 0;
  top: 50px;
  content: "";
  height: 2px;
  width: 100%;
  background: var(--color-secondary);
  z-index: -1;
}

.history-area .carousel-indicators li {
  position: relative;
  z-index: 1;
}

.history-area .carousel-indicators li::after {
  position: absolute;
  left: 50%;
  bottom: 4px;
  content: "";
  height: 10px;
  width: 10px;
  border: 5px solid var(--dark);
  border-radius: 50%;
  margin-left: -5px;
}

.history-area .history-items {
  position: relative;
}

.timeline-navigation {
  position: absolute;
  right: -7%;
  top: 29px;
  display: flex;
  width: 114%;
  justify-content: space-between;
  align-items: center;
}

.timeline-navigation > div {
  height: 40px;
  width: 40px;
  background: var(--color-primary);
  z-index: 9;
  position: relative;
  border-radius: 50%;
}

.timeline-navigation > div::after {
  position: absolute;
  top: 50%;
  content: "";
  left: 50%;
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  color: var(--color-heading);
  transform: translate(-50%, -50%);
  font-size: 25px;
}

.timeline-navigation .timeline-button-next::after {
  content: "\f105";
}

.timeline-navigation .timeline-button-prev::after {
  content: "\f104";
}

.history-items .carousel-item h3 {
  font-size: 36px;
  margin-bottom: 25px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.history-items .animated-btn {
  text-transform: uppercase;
}

.history-items .animated-btn i {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--color-secondary);
  border-radius: 50%;
  color: var(--white);
  margin-right: 10px;
}

/* ============================================================== 
    # Call to action
=================================================================== */
.call-to-action-area {
  background-size: 35%;
  background-position: center top;
}

.callto-action {
  background: var(--color-secondary);
  padding: 80px;
  position: relative;
  z-index: 2;
}

.callto-action p {
  opacity: 0.9;
}

.call-to-action-area .row {
  align-items: end;
}

.call-to-action-area .brand {
  padding: 50px;
  position: relative;
  z-index: 1;
}

.call-to-action-area .brand::after {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 600%;
  left: -200%;
  right: -200%;
  background: var(--white);
  z-index: -1;
}

.callto-action a {
  text-transform: uppercase;
  border-bottom: 2px solid;
  padding-bottom: 3px;
}

.call-to-action-area .shape {
  position: absolute;
  right: 0;
  z-index: 2;
  bottom: 160px;
  max-width: 26%;
}

/* ============================================================== 
    # Brand
=================================================================== */
.brand-style-one-carousel img {
  height: 100px;
}

/* ============================================================== 
    # Product Speciality
=================================================================== */
.product-badge {
  position: relative;
  left: 0;
  background: var(--color-primary);
  text-align: center;
  padding: 40px;
  display: inline-block;
  top: -35px;
  margin-bottom: 0;
}

.product-speciality-info {
  position: relative;
  z-index: 1;
}

.product-badge h1 {
  margin: 0;
  font-size: 60px;
}

.product-badge h1 strong {
  display: block;
  font-size: 36px;
  font-family: var(--font-secondary);
  text-transform: uppercase;
}

.product-badge::after {
  position: absolute;
  right: -29px;
  top: 0;
  content: "";
  border-right: 30px solid transparent;
  border-bottom: 35px solid var(--color-primary);
  opacity: 0.6;
}

.product-speciality-info h2 {
  font-size: 60px;
  font-weight: 300;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.product-speciality-info h2 strong {
  display: block;
  color: var(--color-secondary);
  font-weight: 600;
}

/* ============================================================== 
    # Product Type
=================================================================== */

.product-type-area {
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.product-type-item .thumb {
  box-shadow: 0px 15px 10px -10px rgb(109 117 143 / 33%);
  padding: 35px;
  border-radius: 50%;
  height: 250px;
  width: 250px;
  margin: auto auto 30px;
  position: relative;
  z-index: 1;
  background: var(--white);
}

.product-type-item .thumb img {
  border-radius: 50%;
}

.product-type-item .thumb span {
  display: inline-block;
  height: 50px;
  width: 50px;
  background: var(--color-primary);
  text-align: center;
  line-height: 50px;
  color: var(--color-heading);
  font-weight: 800;
  font-size: 20px;
  border-radius: 50%;
  position: absolute;
  right: 32px;
  bottom: 50px;
}

.product-type-single:nth-child(2n) .product-type-item .thumb span {
  right: 32px;
  bottom: auto;
  top: 50px;
}

/* ============================================================== 
    # Category Product
=================================================================== */
.product-cat-highlight-info {
  padding: 80px;
  background: var(--color-secondary);
}

.product-cat-highlight-info h2 {
  text-transform: uppercase;
  margin-bottom: 25px;
}

.product-cat-highlight-info h2 strong {
  display: block;
}

.product-cat-highlight-info h6 {
  text-transform: uppercase;
  font-size: 18px;
  background: var(--white);
  display: inline-block;
  color: var(--color-heading);
  padding: 10px;
  position: relative;
  z-index: 1;
}

.product-cat-highlight-info .btn {
  margin-top: 25px;
}

.product-cat-highlight-info .btn::after {
  background: var(--dark);
}

.product-cat-highlight-info img {
  margin-top: -80px;
}

.product-cat-highlight-info h6::after {
  position: absolute;
  right: -15px;
  top: 0px;
  content: "";
  height: 101%;
  width: 40px;
  background: var(--white);
  clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
  z-index: -1;
}

.product-cat-highlight-info h6::before {
  position: absolute;
  left: -15px;
  top: 0px;
  content: "";
  height: 101%;
  width: 40px;
  background: var(--white);
  clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 25% 50%, 0% 0%);
  z-index: -1;
}

.pro-cat-carousel .product {
  margin-bottom: 0;
  padding: 0;
}

.pro-cat-carousel .product .product-contents {
  box-shadow: none;
  border: 1px solid #e7e7e7;
}

ul.product-features {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  width: 100%;
}

ul.product-features li {
  float: left;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  margin-right: 50px;
}

ul.product-features li img {
  height: 60px;
  margin-right: 15px;
}

ul.product-features li p {
  margin: 0;
}

ul.product-features li h4 {
  margin-bottom: 5px;
  font-weight: 600;
}

ul.product-features li:last-child {
  margin: 0;
}

.product-swiper-nav {
  position: absolute;
  right: 0;
  top: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
  width: 100%;
  padding: 0 50px;
  transform: translateY(-50%);
  margin-top: -20px;
}

.product-swiper-nav > div {
  height: 40px;
  width: 40px;
  background: var(--color-primary);
  z-index: 9;
  position: relative;
  border-radius: 50%;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.product-swiper-nav > div::after {
  position: absolute;
  top: 7px;
  content: "";
  height: 100%;
  width: 100%;
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  color: var(--white);
}

.product-swiper-nav .product-button-next::after {
  content: "\f105";
}

.product-swiper-nav .product-button-prev::after {
  content: "\f104";
}

.pro-cat-carousel:hover .product-swiper-nav > div {
  opacity: 1;
  visibility: visible;
}

/* Brand */
.brand-style-two img {
  max-height: 90px;
}

/* ============================================================== 
    # Footer
=================================================================== */
footer {
  background-size: 15%;
  background-position: left bottom;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.shape-right-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
  opacity: 0.4;
  z-index: -1;
}

.footer-item {
  margin-top: 50px;
}

.f-items.default-padding {
  padding-top: 70px;
}

.footer-item .logo,
.footer-item .widget-title {
  margin-bottom: 30px;
}

.footer-item .logo {
  height: 60px;
}

.footer-item .widget-title {
  font-weight: 600;
}

.footer-item.link li {
  margin-top: 12px;
}

.footer-item.link li:first-child {
  margin: 0;
}

.footer-item.link li a {
  font-weight: 500;
  color: #dedede;
}

.footer-item.link li a:hover {
  color: var(--white);
}

.footer-item.recent-post li {
  display: flex;
  margin-top: 30px;
}

.footer-item.recent-post li img {
  width: 80px;
  max-width: 80px;
  margin-right: 20px;
  border-radius: 10px;
}

.footer-item.recent-post li:first-child {
  margin: 0;
}

.footer-item.recent-post li .meta-title span {
  color: var(--color-primary);
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 400;
}

.footer-item.recent-post li a {
  line-height: 1;
  font-weight: 600;
  color: #dedede;
  font-size: 18px;
}

.footer-item.recent-post li a:hover {
  color: var(--white);
}

.footer-item.recent-post li h5 {
  margin: 0;
  line-height: 1.3;
}

.footer-item.about {
  padding-right: 50px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 20px;
}

.footer-item.about p {
  color: #dedede;
}

.footer-item.about form {
  margin-top: 30px;
  position: relative;
}

.footer-item.about form button {
  position: absolute;
  right: 8px;
  top: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  border: none;
  height: 50px;
  width: 50px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0;
  color: var(--color-heading);
}

.footer-item.about form button:hover {
  color: var(--white);
}

.footer-item.about form input {
  min-height: 66px;
  padding-left: 30px;
  border-radius: 50px;
  border: none;
}

.footer-item.contact li {
  display: flex;
  margin-top: 20px;
}

.footer-item.contact li strong {
  display: block;
  text-transform: uppercase;
  color: var(--white);
  font-size: 14px;
}

.footer-item.contact li i {
  display: inline-block;
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  margin-right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  font-weight: 300;
  font-size: 18px;
}

.footer-item.contact li {
  color: #dedede;
}

.footer-item.contact li p {
  margin: 0;
  color: #dedede;
}

.footer-item.contact li a {
  color: #dedede;
  font-weight: 500;
}

.footer-item.contact li a:hover {
  color: var(--white);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom {
  padding-bottom: 50px;
}

/* ============================================================== 
    # 404 page
=================================================================== */

.error-page-area {
  position: relative;
  z-index: 1;
}

.error-page-area .shape-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 20%;
  background-position: left !important;
  background-repeat: no-repeat !important;
  z-index: -1;
  opacity: 0.3;
  background-size: contain !important;
}

.error-page-area .shape-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 20%;
  background-position: right !important;
  background-repeat: no-repeat !important;
  z-index: -1;
  opacity: 0.3;
  background-size: contain !important;
}

.error-box h1 {
  font-size: 150px;
  line-height: 110px;
  font-weight: 800;
  margin-bottom: 40px;
  text-shadow: 3px 3px #c0c0c0;
}

.error-box h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.error-box p {
  padding: 0 10%;
}

/* ============================================================== 
     # Responsive CSS  
=================================================================== */

/* Custom Layout */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-area .align-center {
    align-items: center;
  }

  /* Banner Two */
  .banner-style-three h2 {
    font-size: 60px;
  }

  .banner-style-two .content {
    padding-top: 160px;
    padding-bottom: 120px;
  }

  ul.top-feature {
    margin-left: -100%;
  }

  .mask-text {
    font-size: 80px;
    margin-right: -10%;
  }

  .product-list-box {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 40px;
  }

  .product-cat-items .align-center {
    align-items: center;
  }

  .choose-us-thumb img {
    max-width: 100%;
  }

  .achivement-items {
    align-items: start;
  }

  .contact-style-one-info {
    padding-left: 50px;
  }

  .contact-page .contact-style-one-info {
    padding-left: 0;
  }

  .contact-form-style-one {
    padding: 70px;
  }

  .contact-form-style-one .heading {
    font-size: 44px;
  }

  .contact-style-one-info h2 {
    font-size: 44px;
    margin-top: 65px;
  }

  .blog-area.home-blog .thumb img {
    width: 100%;
  }

  .blog-img a {
    overflow: hidden;
    display: block;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
  }
  .home-blog .thumb > a {
    overflow: hidden;
    display: block;
    height: 350px !important;
    border-radius: 20px !important;
  }

  /* feature product */
  .feature-style-one-area .align-center {
    align-items: center;
  }

  .featured-product {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-right: 0;
    grid-column-gap: 30px;
  }

  .featured-product .product-list-item a {
    display: block;
    padding: 50px;
  }

  .featured-product .product-list-item {
    margin: 0;
    text-align: center;
  }

  .featured-product .product-list-item img {
    margin: 0;
    margin-bottom: 15px;
    height: 60px;
    width: auto;
  }

  .feature-style-two.info {
    padding: 80px 50px;
  }

  .feature-style-two.info .title {
    font-size: 40px !important;
  }

  .product-feature-item img {
    height: 100px;
  }

  .product-feature-item .thumb::after {
    height: 120px;
    width: 120px;
  }

  .product-feature-item h4 {
    font-size: 20px;
  }

  .product-cat-highlight-info img {
    display: none;
  }

  .product-cat-highlight-info h2 {
    font-size: 80px;
  }

  .cat-pro-area .pr-80 {
    padding-right: 15px;
  }

  .product-cat-highlight-info {
    margin-bottom: 60px;
  }

  .grid .product .product-contents {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Choose us style two */
  .choose-us-style-two-area::after {
    width: 45%;
  }

  .choose-us-style-two-info .thumb {
    margin-right: -35%;
  }

  .choose-us-style-two-info .fun-fact .counter {
    font-size: 50px;
  }

  .choose-us-style-two-info {
    grid-template-columns: 1fr 2fr;
  }

  /* Brand */
  .brand-style-one-carousel img {
    height: auto;
    max-height: 80px;
  }

  .callto-action {
    padding: 120px;
  }

  .call-to-action-area .shape {
    z-index: 9;
  }

  .brand-style-one-carousel {
    text-align: center;
  }

  .call-to-action-area .brand {
    border-bottom: 1px solid;
  }

  /* Faq */
  .thumb-style-two h2 {
    font-size: 150px;
    left: -40px;
  }

  .thumb-style-two h2 strong {
    font-size: 200px;
  }

  .list-grid {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 25px;
  }

  .list-grid .achivement-content {
    border: none;
  }

  ul.list-item li {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
  }

  ul.list-item li::after {
    top: 3px;
  }

  .illustration-bottom {
    display: none;
  }

  .services-details-items .features .mt-xs-30 {
    margin-top: 30px;
  }

  /* Home Dairy */

  .feature-style-three-item ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
  }

  .feature-style-three-item li {
    margin: 0;
    padding: 0;
    border: none;
  }

  .thumb-style-three img {
    width: 45%;
    padding: 0;
  }

  .thumb-style-three {
    text-align: center;
    margin: 120px 0;
  }

  .history-area .carousel-inner {
    padding: 0;
    padding-top: 120px;
  }

  .carousel.slide .carousel-item img {
    margin-bottom: 50px;
    width: 100%;
  }
  .feature-style-three-item.text-end li {
    flex-direction: inherit;
    text-align: left;
  }

  .feature-style-three-item.text-end li .icon {
    margin: 0;
    margin-right: 30px;
  }

  .ex-badge {
    display: none;
  }

  .carousel-item .align-center {
    align-items: center;
  }
}

/* Tablet Layout: 768px.*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar .attr-right .attr-nav li.button {
    display: none;
  }

  .navbar.navbar-fixed .attr-right .attr-nav li.button {
    display: inline-block;
  }

  /* Topbar */
  .top-bar-area .item-flex {
    justify-content: center;
    align-items: center;
  }

  .top-bar-area li {
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 20px;
    margin: 0;
  }

  .top-bar-area li:last-child {
    border: none;
  }

  .top-bar-area .text-end {
    text-align: center !important;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    display: none;
  }

  .top-bar-area .text-end .social li {
    margin: 0 15px;
  }

  .top-bar-area {
    padding: 20px 0;
  }

  .top-style-two .logo {
    display: none !important;
  }

  .top-style-two .row {
    display: block;
    text-align: center;
  }

  .top-style-two {
    padding: 20px 0;
  }

  .top-style-two .row > div {
    width: auto;
    display: inline-block;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 30px;
  }

  .top-style-two .info li {
    text-align: left;
  }

  .top-style-two .row > div:last-child {
    border: none;
  }

  /* Banner Style One */
  .banner-style-one .content h2 {
    font-size: 55px;
  }

  .banner-style-one .curve-text svg {
    height: 180px;
    width: 180px;
  }

  /* Banner Style Two */
  .banner-style-two h2 {
    font-size: 80px;
    margin-bottom: 30px;
  }

  .banner-style-two h2 strong {
    font-size: 65px;
  }

  /* Banner Style Three */

  .banner-style-two .content {
    padding-top: 120px;
    padding-bottom: 130px;
  }

  .banner-style-three h2 {
    font-size: 65px;
    line-height: 1.2;
  }

  .banner-style-three .content::after {
    display: none;
  }

  /* About */
  .about-style-one-thumb img {
    margin-bottom: 50px;
    width: 100%;
  }

  .about-style-one-thumb .animation-shape {
    display: none;
  }

  ul.top-feature {
    margin: 0;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 30px;
    margin-top: 40px;
  }

  .fun-fact-style-flex .counter {
    font-size: 80px;
  }

  /* Why Choose Us */
  .choose-us-style-two-area::after {
    width: 100%;
  }

  .choose-us-style-two-area .title {
    color: var(--white);
  }

  .choose-us-style-two-area ul.list-simple {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 65px;
  }

  .choose-us-style-two-info .fun-fact {
    color: var(--white);
  }

  .choose-us-style-two-info .thumb {
    margin-right: 0;
  }

  .choose-us-style-two-info {
    grid-template-columns: 1fr 1fr;
  }

  .choose-us-style-two-area.overflow-hidden.default-padding-top {
    padding-bottom: 115px;
  }

  /* Faq */
  .thumb-style-two h2 {
    left: 30px;
    bottom: 0;
    line-height: 1;
    display: none;
  }

  .thumb-style-two img {
    margin-bottom: 50px;
  }

  /* Service */
  .services-style-one-area .row {
    --bs-gutter-x: 30px;
  }

  .shape-right-top {
    top: auto;
    bottom: 0;
    background-position: right bottom;
    display: none;
  }

  /* Services Two */
  h2.mask-text.large {
    font-size: 90px;
  }

  .service-style-two .overlay {
    left: 15px;
    right: 15px;
  }

  .service-style-two .overlay .icon {
    min-width: 75px;
    width: 75px;
  }

  /* Timelime */
  .timeline-area {
    background-color: var(--bg-gray);
    padding: 120px 0;
  }

  .timeline-area .site-heading p {
    padding: 0;
  }

  .timeline-item h2 {
    font-size: 36px;
  }

  .timeline-item h4 {
    font-size: 18px;
    margin: 0;
  }

  /* Farmer */
  .farmer-style-one-item .info {
    float: left;
  }

  .team-style-one-carousel {
    margin-top: 50px;
  }

  /* Product Cat */
  .product-cat-lists {
    padding: 0;
  }

  .product-cat-area::after {
    width: 100%;
  }

  .mask-text {
    font-size: 80px;
    margin-bottom: 40px;
  }

  .product-cat-items {
    text-align: center;
  }

  .product-list-item a {
    background: rgba(255, 255, 255, 0.07);
    padding: 30px;
    border-radius: 8px;
  }

  .product-list-box {
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 30px;
  }

  /* Benifits */
  .benifits-area .shape-top-center {
    display: none;
  }

  .benifits-area {
    margin: 0;
    padding-top: 0;
    background-image: none !important;
    background-color: var(--bg-gray) !important;
  }

  .benifits-area .mbYTP_wrapper {
    display: none;
  }

  .benifit-items {
    margin: 0;
    border-radius: 10px;
    padding: 100px;
    margin-bottom: 120px;
  }

  .benifit-items .shape {
    display: none;
  }

  /* Feature */
  .feature-style-one-item img {
    margin-bottom: 50px;
  }

  .featured-product {
    margin: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
  }

  .feature-style-one-area {
    background-size: 30%;
    overflow: hidden;
  }

  /* Feature */
  .feature-style-two-items {
    grid-template-columns: 1fr;
    grid-column-gap: 60px;
    grid-row-gap: 80px;
  }

  .feature-style-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .product-feature-item {
    margin: 0;
  }

  .feature-style-two.info {
    grid-template-columns: 1fr;
  }

  /* Product Feature */
  .product-speciality-info h2 {
    font-size: 50px;
  }

  /* Product Highlight */
  .product-cat-highlight-info img {
    max-width: 70%;
  }

  .product-cat-highlight-info {
    margin-bottom: 50px;
  }

  /* Choose Us Style Three */
  .choose-us-style-three-area .shape {
    position: relative;
    height: 400px;
    width: 100%;
    margin-bottom: 50px;
  }

  .choose-us-style-three-area {
    padding-top: 0;
  }

  .list-grid .achivement-content {
    text-align: center;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .list-grid .achivement-content .item {
    width: 100%;
    text-align: left;
  }

  .list-grid {
    justify-content: center;
    align-items: center;
  }

  .illustration-bottom {
    width: 30%;
    bottom: -40px;
  }

  /* Mix Product */
  .product-mix-menu {
    top: 0;
    text-align: left !important;
    margin: 0;
    margin-bottom: 50px;
  }

  ul#shop-masonary {
    margin: 0 -15px;
  }

  .grid .product .product-contents {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Farmer Details */

  .team-single-list {
    margin-bottom: 50px;
  }

  .team-single-area .team-content-top img {
    border-radius: 0;
  }

  /* Testimonial */
  .testimonial-style-one {
    display: block;
    background: var(--white);
  }

  .testimonial-heading h2 {
    position: inherit;
    right: auto;
    left: auto;
    margin: 0;
    text-align: center;
    margin-bottom: 50px;
    display: inline-block;
  }

  .testimonial-heading {
    text-align: center;
    margin-top: -10px;
  }

  .testimonial-style-one .info {
    margin: 0;
    padding: 0;
    padding-top: 30px;
  }

  .testimonial-style-one .thumb img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    margin-bottom: 30px;
  }

  .swiper .testimonial-style-one {
    padding: 100px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
  }

  .testimonial-style-one p {
    font-size: 24px;
  }

  .testimonial-style-one .info img {
    top: 0;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .testimonial-style-one .provider {
    display: block;
  }

  .testimonial-style-one .provider .rating {
    margin-top: 15px;
  }

  /* Call To Action */
  .call-to-action-area .shape {
    z-index: 9;
  }

  .brand-style-one-carousel {
    text-align: center;
  }

  .brand-style-one-carousel img {
    height: 80px;
  }

  .call-to-action-area .brand {
    border-bottom: 1px solid;
  }

  /* Testimonial Two */
  .testimonial-style-two .item-info {
    padding: 50px 37px;
    padding-bottom: 90px;
  }

  .testimonial-style-two p {
    font-size: 24px;
    line-height: 1.7;
  }

  /* Why Choose Us */
  .choose-us-thumb img {
    max-width: 100%;
  }

  .choose-us-thumb {
    margin-bottom: 90px;
    text-align: center;
    margin-top: 30px;
  }

  .achivement-items {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .achivement-content {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .achivement-content .item {
    margin: 0;
  }

  ul.list-details li {
    padding: 0 10%;
  }

  /* Gallery Details */
  .project-detail-content ul.project-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    padding: 70px;
  }

  ul.project-info li {
    margin: 0;
  }

  /* Contact */
  .contact-area::after {
    display: none;
  }

  .heading {
    font-size: 36px;
    line-height: 1.1;
    margin-top: 0;
  }

  .contact-form-style-one img {
    display: none;
  }

  .contact-style-one-info h2 {
    color: var(--color-heading);
  }

  .contact-style-one-info h2 span {
    color: var(--color-heading);
  }

  .contact-style-one-info p {
    color: var(--color-paragraph);
  }

  .contact-style-one-info li h5 {
    color: var(--color-heading);
  }

  .contact-style-one-info a {
    color: var(--color-heading);
  }

  .contact-area .sahpe-right-bottom {
    max-width: 25%;
  }

  /* Home Dairy */
  .banner-style-four h2 {
    font-size: 100px;
  }

  .feature-style-three-item ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
  }

  .feature-style-three-item li {
    margin: 0;
    padding: 0;
    border: none;
  }

  .thumb-style-three::after {
    height: 500px;
    width: 500px;
  }

  .thumb-style-three img {
    padding: 0 160px;
  }

  .thumb-style-three {
    text-align: center;
    margin: 90px 0;
  }

  .history-area .carousel-inner {
    padding: 0;
    padding-top: 120px;
  }

  .carousel.slide .carousel-item img {
    margin-bottom: 50px;
    width: 100%;
  }
  .feature-style-three-item.text-end li {
    flex-direction: inherit;
    text-align: left;
  }

  .feature-style-three-item.text-end li .icon {
    margin: 0;
    margin-right: 30px;
  }

  .ex-badge {
    display: none;
  }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  /* Topbar */
  .top-bar-area .item-flex {
    display: block;
    text-align: center;
  }

  .top-bar-area li {
    justify-content: center;
    margin-top: 10px;
  }

  .top-bar-area .text-end {
    text-align: center !important;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
  }

  .top-bar-area .text-end .social li {
    margin: 0 15px;
  }

  .top-bar-area {
    padding: 20px 0;
    display: none;
  }

  .top-style-two .logo {
    display: none !important;
  }

  .top-style-two .row {
    display: block;
    text-align: center;
  }

  .top-style-two {
    padding: 20px 0;
    display: none;
  }

  .top-style-two .row > div {
    width: auto;
    display: inline-block;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 30px;
  }

  .top-style-two .info li {
    text-align: left;
  }

  .top-style-two .row > div:last-child {
    border: none;
    padding-right: 0;
    margin-right: 0;
  }

  /* Banner */
  .banner-style-one {
    text-align: center;
  }

  .banner-style-one .content {
    display: block;
  }

  .banner-style-one .content .badge {
    margin: 0;
    margin-bottom: 30px;
  }

  .banner-style-one .content h2 {
    font-size: 42px;
  }

  .banner-area.banner-style-one .swiper-slide.swiper-slide-active .shape {
    height: 25%;
  }

  /* Banner Two */

  .banner-style-two .content {
    padding-top: 60px;
  }

  .banner-style-two h2 {
    font-size: 42px;
    display: block;
  }

  .banner-style-two h2 strong {
    font-size: 42px;
    background: transparent;
    color: var(--white);
    padding: 0;
    margin: 0;
  }

  .banner-style-two h2 strong::after {
    display: none;
  }

  .banner-style-three .content::after {
    display: none;
  }

  /* Banner Three */
  .banner-style-three h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .banner-style-three h4 {
    font-size: 20px;
  }

  /* About */
  .about-style-one-thumb img {
    margin-bottom: 30px;
  }

  .about-style-one-thumb .animation-shape {
    display: none;
  }

  ul.top-feature {
    margin: 0;
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
    margin-top: 40px;
  }

  .fun-fact-style-flex .counter {
    font-size: 80px;
  }

  /* Feature */
  .feature-style-one-item img {
    margin-bottom: 30px;
  }

  .featured-product {
    margin: 0;
    margin-top: 30px;
  }

  .feature-style-one-area {
    background-size: 30%;
    overflow: hidden;
  }

  /* Product Cat */
  .product-cat-lists {
    padding: 0;
  }

  .product-cat-area::after {
    width: 100%;
  }

  .mask-text {
    font-size: 42px;
    margin-bottom: 40px;
    line-height: 1.3;
    -webkit-text-fill-color: var(--color-primary);
  }

  .product-cat-items {
    text-align: center;
  }

  .product-list-item a {
    background: rgba(255, 255, 255, 0.07);
    padding: 30px;
    border-radius: 8px;
  }

  .product-list-box {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 30px;
  }

  /* Benifits */
  .benifits-area .shape-top-center {
    display: none;
  }

  .benifits-area {
    margin: 0;
    padding-top: 0;
    background-image: none !important;
    background-color: var(--bg-gray) !important;
  }

  .benifits-area .mbYTP_wrapper {
    display: none;
  }

  .benifit-items {
    padding: 60px 37px;
    margin: 0;
    border-radius: 10px;
    padding: 60px 37px;
    margin-bottom: 60px;
  }

  .benifit-items .shape {
    display: none;
  }

  /* Services */
  .shape-right-top {
    display: none;
  }

  /* Services Two */
  h2.mask-text.large {
    font-size: 42px;
    line-height: 1.2;
    -webkit-text-fill-color: transparent;
    margin: 0;
  }

  /* Testimonial */
  .testimonial-style-one {
    display: block;
    background: var(--white);
  }

  .testimonial-heading h2 {
    position: inherit;
    right: auto;
    left: auto;
    margin: 0;
    text-align: center;
    margin-bottom: 50px;
    display: inline-block;
  }

  .testimonial-heading {
    text-align: center;
    margin-top: -10px;
  }

  .testimonial-style-one .info {
    margin: 0;
    padding: 0;
    padding-top: 30px;
  }

  .testimonial-style-one .thumb img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    margin-bottom: 30px;
  }

  .swiper .testimonial-style-one {
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
  }

  .testimonial-style-one p {
    font-size: 24px;
  }

  .testimonial-style-one .info img {
    top: 0;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .testimonial-style-one .provider {
    display: block;
  }

  .testimonial-style-one .provider .rating {
    margin-top: 15px;
  }

  /* Testimonial Two */
  .testimonial-style-two .item-info {
    padding: 50px 37px;
    padding-bottom: 90px;
  }

  .testimonial-style-two p {
    font-size: 24px;
    line-height: 1.7;
  }

  /* Why Choose Us */
  .choose-us-thumb img {
    max-width: 100%;
  }

  .choose-us-thumb {
    margin-bottom: 60px;
    text-align: center;
    margin-top: 30px;
  }

  .achivement-items {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .achivement-content {
    margin-top: 40px;
  }

  /* Choose Us Style Two */
  .feature-style-one-item img {
    margin-bottom: 30px;
  }

  .featured-product {
    margin: 0;
    margin-top: 30px;
  }

  .feature-style-one-area {
    background-size: 30%;
    overflow: hidden;
  }

  .choose-us-style-two-info {
    grid-template-columns: 1fr;
  }

  .choose-us-style-two-info .thumb {
    margin: 0;
    margin-top: 40px;
    margin-bottom: 60px;
  }

  .choose-us-style-two-area::after {
    width: 100%;
  }

  .choose-us-style-two-area .title {
    color: var(--white);
  }

  .choose-us-style-two-info span.medium {
    color: var(--white);
  }

  .choose-us-style-two-info .fun-fact {
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .choose-us-style-two-area .sub-title {
    color: var(--color-primary);
  }

  /* Choose Us Three */
  .choose-us-style-three-area .shape {
    position: relative;
    min-height: 350px;
    width: 100%;
    background-position: center;
    margin-bottom: 40px;
  }

  .choose-us-style-three-area {
    padding-top: 0;
  }

  .list-grid {
    grid-template-columns: 1fr;
  }

  .list-grid .achivement-content {
    border: none;
    margin-bottom: 30px;
    margin-top: 0;
    display: none;
  }

  .illustration-bottom {
    bottom: -30px;
    width: 40%;
    display: none;
  }

  /* Feature Two */
  .feature-style-two-items {
    grid-template-columns: 1fr;
  }

  .feature-style-two.info {
    padding: 50px 37px;
  }

  /* Timeline */
  .timeline-items {
    border: none;
    border-left: 2px solid var(--dark);
    padding-top: 0;
    padding-left: 50px;
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 40px;
  }

  .timeline-item::before {
    left: -42px;
    top: 50px;
    border: none;
    border-top: 2px solid var(--dark);
    width: 30px;
    height: 2px;
  }

  .timeline-item::after {
    left: -61px;
    top: 40px;
  }

  .timeline-item h2::after {
    left: -55px;
    top: 46px;
  }

  .timeline-item h4 {
    margin: 0;
  }

  /* Farmer */
  .farmer-style-one-item .info {
    float: left;
  }

  .farmer-style-one-item img {
    width: 100%;
  }

  /* Farmer Details */
  .team-single-area .right-info .social .share-link {
    display: none;
  }

  .team-single-list {
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
    margin-bottom: 30px;
  }

  .team-single-area .team-content-top img {
    border-radius: 0;
  }

  .team-style-one-carousel {
    margin-top: 50px;
  }

  /* Faq */
  .thumb-style-two h2 {
    left: 30px;
    font-size: 100px;
    line-height: 1;
    bottom: 0;
    -webkit-text-stroke: 1px var(--color-primary);
    display: none;
  }

  .thumb-style-two h2 strong {
    font-size: 200px;
  }

  .thumb-style-two img {
    margin-bottom: 40px;
  }

  .faq-style-one-info .title {
    margin-bottom: 0;
  }

  /* Call to Action */
  .call-to-action-area .shape {
    display: none;
  }

  .brand-style-one-carousel {
    text-align: center;
  }

  .call-to-action-area .brand {
    padding-bottom: 60px;
    border-bottom: 2px solid;
  }

  /* Product Speciality */
  .feature-style-two-items {
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }

  .feature-style-two.info {
    padding: 50px 37px;
    margin-top: 0;
  }

  .product-speciality-arae {
    background-image: none !important;
    background-color: var(--bg-gray);
    padding-top: 55px;
  }

  .product-badge {
    display: none;
  }

  .product-speciality-info h2 {
    font-size: 36px;
  }

  .feature-style-two {
    padding: 0;
    margin-top: 30px;
  }

  /* Product Cat Feature */
  .product-cat-highlight-info h2 {
    font-size: 36px;
  }

  .product-cat-highlight-info {
    padding: 50px 37px;
    margin-bottom: 40px;
  }

  ul.product-features li {
    display: block;
    text-align: center;
    margin-right: 0;
    padding: 0;
    float: none;
  }

  ul.product-features li img {
    margin-right: 0;
    margin-bottom: 15px;
  }

  ul.product-features {
    margin-bottom: 40px;
  }

  .pro-cat-carousel .product {
    text-align: center;
  }

  /* Product Grid */

  .mix-product-area {
    text-align: center;
  }

  .product-mix-menu {
    top: 0;
    margin: 0;
    margin-bottom: 40px;
    text-align: center !important;
  }

  .product-mix-menu button {
    margin: 0 5px;
    margin-bottom: 15px;
  }

  .grid .product .product-contents {
    grid-template-columns: 1fr;
    text-align: center;
  }

  ul#shop-masonary .product {
    padding: 0;
  }

  /* Gallery */
  .magnific-mix-gallery {
    margin: 0;
  }

  .gallery-style-one-carousel {
    padding: 0 10px;
  }

  .gallery-style-one .overlay {
    left: 0;
    bottom: 0;
  }

  .project-details-style-one .project-details-top img {
    margin-bottom: 40px;
  }

  ul.project-info li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
  }

  ul.project-info li:first-child {
    padding-top: 0;
    border: none;
  }

  /* Contact */
  .contact-area::after {
    display: none;
  }

  .contact-form-style-one {
    margin-bottom: 30px;
    padding: 80px;
    border-radius: 10px;
  }

  .heading {
    font-size: 36px;
    line-height: 1.1;
    margin-top: 0;
  }

  .contact-form-style-one img {
    display: none;
  }

  .contact-style-one-info h2 {
    color: var(--color-heading);
    font-size: 36px;
  }

  .contact-style-one-info h2 span {
    color: var(--color-heading);
  }

  .contact-style-one-info p {
    color: var(--color-paragraph);
  }

  .contact-style-one-info li h5 {
    color: var(--color-heading);
  }

  .contact-style-one-info a {
    color: var(--color-heading);
  }

  .contact-area .sahpe-right-bottom {
    max-width: 25%;
  }

  /* Blog */
  .blog-area .overlay .post-title {
    font-size: 24px;
  }

  /* Footer */
  .f-items.default-padding {
    padding-top: 0;
  }

  .footer-item.about {
    padding-right: 0;
    border-right: none;
    margin-right: 0;
  }

  /* Home Dairy */
  .banner-style-four h2 {
    font-size: 42px;
  }

  .banner-style-four ul li {
    font-size: 20px;
  }

  .feature-style-three-item li {
    display: block;
    text-align: center;
  }

  .feature-style-three-item li .icon {
    margin: 0 !important;
    margin-bottom: 25px !important;
  }

  .ex-badge {
    display: none;
  }

  .thumb-style-three::after {
    height: 320px;
    width: 320px;
    border-width: 50px;
  }

  .thumb-style-three img {
    width: 320px;
    margin: 40px auto;
    padding: 53px;
  }

  .thumb-style-three {
    text-align: center;
  }

  .history-area .carousel-inner {
    padding: 0;
    padding-top: 120px;
  }

  .carousel.slide .carousel-item img {
    margin-bottom: 30px;
  }

  .video-content {
    padding: 120px 0;
    padding-bottom: 100px;
  }
}

/* Max Wide Mobile Layout: 600px. */
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  /* Portfolio */
  .gallery-items.colums-2 .gallery-item,
  .gallery-items.colums-3 .gallery-item {
    width: 50%;
  }

  .gallery-style-one .overlay {
    left: 0;
    bottom: 0;
  }
}

/* Custom Layout */
@media only screen and (max-width: 480px) {
  nav.navbar.validnavs.inc-shape::before {
    bottom: -5px;
  }

  .fun-fact-style-flex .counter {
    font-size: 60px;
  }

  .fun-fact-style-flex .medium {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Service */
  .service-style-one-item {
    padding: 50px 37px;
  }

  .service-style-two .overlay {
    left: 15px;
    right: 15px;
  }

  /* Product Cat */
  .product-list-box {
    grid-template-columns: 1fr;
  }

  .callto-action {
    padding: 50px 37px;
  }

  .brand-style-one-carousel img {
    height: auto;
    max-height: 80px;
  }

  /* Contact */

  .contact-form-style-one {
    padding: 60px 40px;
  }

  /* Blog */

  .blog-area .overlay {
    padding: 30px;
  }

  .blog-area .overlay .post-title {
    font-size: 20px;
  }

  .blog-area .overlay p {
    margin-bottom: 0;
    font-size: 14px;
  }

  .blog-area .overlay .button-regular {
    display: none;
  }
}

/* Custom Layout */
@media only screen and (max-width: 1199px) {
}

/* Desktop Mini */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
}

/* ============================================================== 
     # Preloader 
=================================================================== */

.agrica-preloader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9000;
}

.agrica-preloader .animation-preloader {
  z-index: 1000;
  position: relative;
}

.agrica-preloader .animation-preloader::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/logo-icon.png);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
}

.bg-dark .agrica-preloader .animation-preloader::after {
  background: url(../img/logo-icon-light.png);
  background-repeat: no-repeat;
  background-position: center;
}

.agrica-preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 2px solid rgba(2, 109, 255, 0.3);
  border-top-color: var(--color-primary);
  height: 110px;
  margin: auto;
  width: 110px;
}

.bg-dark .agrica-preloader .animation-preloader .spinner {
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: rgba(255, 255, 255, 1);
}

.agrica-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.agrica-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.agrica-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.agrica-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.agrica-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.agrica-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.agrica-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.agrica-preloader.dark .animation-preloader .spinner {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
}

.agrica-preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.agrica-preloader .loader .row {
  height: 100%;
}

.agrica-preloader .loader .loader-section {
  padding: 0px;
}

.agrica-preloader .loader .loader-section .bg {
  background-color: var(--white);
  height: 100%;
  left: 0;
  width: 100%;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.bg-dark .agrica-preloader .loader .loader-section .bg {
  background-color: var(--dark);
}

.agrica-preloader .loader.dark_bg .loader-section .bg {
  background: #111339;
}

.agrica-preloader.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.agrica-preloader.loaded .loader-section .bg {
  width: 0;
  -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  -o-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@media screen and (max-width: 767px) {
  .agrica-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}

@media screen and (max-width: 500px) {
  .agrica-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
}
.product-title {
  font-size: 28px !important;
  margin: 0;
}
.product-title a {
  color: #468b40;
}
.farmer-style-one-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.award-style-one-carousel img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/**************
Farhan css
**************/

.home-blog .thumb > a {
  overflow: hidden;
  display: block;
  height: 350px !important;
  border-radius: 20px !important;
}

.farmer-style-one-item .thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about-style-one-info {
  margin-left: 36px;
}
.video-bg-live {
  background-attachment: scroll !important;
}
.team-style-one-area {
  background: #fff;
}
.ceo_message {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
}
.about-style-one-info {
  margin-left: 0;
}
ul.top-feature {
  margin-left: 0;
}
.home-blog .blog-style-one .post-title {
  font-size: 22px;
  margin-bottom: 25px;
}
.pro-cat-carousel .product .product-contents {
  border: 1px solid #c7c7c7;
}
.product .product-contents {
  padding: 25px 30px;
  min-height: 555px;
}
.price {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
  /* height: 50px; */
}
.service-style-one-item p {
  height: 146px;
  /* overflow-y: scroll; */
}
.product .product-contents .cart-btn {
  margin-top: 20px;
}

.available {
  color: var(--color-paragraph);
  font-size: 14px !important;
}
.available strong {
  color: var(--color-paragraph);
}
button br {
  display: none !important;
}
.team-style-one-carousel p {
  margin-bottom: 5px !important;
}
