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

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

@font-face {
  font-family: "Inter";
  src: url("inter.woff2") format("woff2");
  font-display: swap;
}


body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background-color: #f8f9fa;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: #f5f7fa;
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  width: 100%;
}
/********** Template CSS **********/
:root {
  --primary: #348e38;
  --secondary: #525368;
  --light: #e8f5e9;
  --dark: #0f4229;
}

/* Video Container Responsive Styles */
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
  margin: 0;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#header-carousel,
#header-carousel .carousel-inner,
#header-carousel .carousel-item {
  width: 100%;
  margin: 0;
  padding: 0;
}

.navbar,
.container-fluid.p-0 {
  margin-left: 0;
  margin-right: 0;
}


/* Mobile - Extra small screens */
@media (max-width: 575.98px) {
  .video-container {
    aspect-ratio: 9/16;
    min-height: 300px;
  }

  .carousel-caption {
    width: 100% !important;
    padding: 0 10px !important;
  }

  .carousel-caption h1 {
    font-size: 1.5rem !important;
  }
}

/* Tablet - Small to medium screens */
@media (min-width: 576px) and (max-width: 991.98px) {
  .video-container {
    aspect-ratio: 16/10;
    min-height: 400px;
  }

  .carousel-caption h1 {
    font-size: 2rem !important;
  }
}

/* Desktop - Large screens and up */
@media (min-width: 992px) {
  .video-container {
    aspect-ratio: 16/9;
    min-height: 500px;
  }

  .carousel-caption h1 {
    font-size: 3.5rem !important;
  }
}

@media only screen and (min-width: 960px) {
  .back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
  }

  h1,
  .h1,
  h2,
  .h2,
  .fw-bold {
    font-weight: 700 !important;
  }

  h3,
  .h3,
  h4,
  .h4,
  .fw-medium {
    font-weight: 600 !important;
  }

  h5,
  .h5,
  h6,
  .h6,
  .fw-semi-bold {
    font-weight: 500 !important;
  }

  /*** Spinner ***/
  #spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
  }

  #spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
  }

  /*** Button ***/
  .btn {
    transition: 0.5s;
    font-weight: 500;
  }

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

  .btn-square {
    width: 38px;
    height: 38px;
  }

  .btn-sm-square {
    width: 32px;
    height: 32px;
  }

  .btn-lg-square {
    width: 48px;
    height: 48px;
  }

  .btn-square,
  .btn-sm-square,
  .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
  }

  /*** Navbar ***/
  .navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
  }

  .navbar .navbar-brand,
  .navbar a.btn {
    height: 80px;
  }

  .navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
  }

  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
  }

  .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
  }

  @media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
      margin-right: 0;
      padding: 10px 0;
    }

    .navbar .navbar-nav {
      border-top: 1px solid #eeeeee;
    }
  }

  @media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      opacity: 0;
      visibility: hidden;
      transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: 0.5s;
      opacity: 1;
    }
  }

  /*** Header ***/
  .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, 0.6);
    z-index: 1;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
  }

  @media (max-width: 768px) {
    #header-carousel .carousel-item {
      position: relative;
      min-height: 450px;
    }

    #header-carousel .carousel-item img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .page-header {
    background: url(./img/Coriander.jpg) center center no-repeat;
    background-size: cover;
  }

  .page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
  }

  .page-header .breadcrumb-item,
  .page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
  }

  /*** Top Feature ***/
  @media (min-width: 991.98px) {
    .top-feature {
      position: relative;
      margin-top: -80px;
      z-index: 1;
    }
  }

  /*** Facts & Quote ***/
  .facts,
  .quote {
    background: url(/img/Liz\ 2.jpg) var(--primary);
  }

  /*** Service ***/
  .service-item {
    position: relative;
    text-align: center;
  }

  .service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
  }

  .service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: 0.3s;
    z-index: -1;
  }

  .service-item:hover .service-img img {
    transform: scale(1);
  }

  .service-item .service-text {
    background: #ffffff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
  }

  .service-item:hover .service-text {
    background: rgba(15, 66, 41, 0.6);
  }

  .service-item .service-text h4,
  .service-item .service-text p {
    transition: 0.3;
  }

  .service-item:hover .service-text h4 {
    color: #ffffff;
  }

  .service-item:hover .service-text p {
    color: var(--light);
  }

  .service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: 0.5s;
  }

  .service-item:hover .service-text .btn-square {
    background: var(--light);
  }

  .service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: 0.3s;
  }

  .service-item:hover .service-text .btn {
    width: 112px;
  }

  /*** Project Portfolio ***/
  #portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
  }

  #portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: 0.5s;
    border-bottom: 2px solid transparent;
  }

  #portfolio-flters li:hover,
  #portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
  }

  .portfolio-inner {
    position: relative;
    overflow: hidden;
  }

  .portfolio-inner::before,
  .portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, 0.6);
    transition: 0.5s;
  }

  .portfolio-inner::after {
    left: auto;
    right: 0;
  }

  .portfolio-inner:hover::before,
  .portfolio-inner:hover::after {
    width: 50%;
  }

  .portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
  }

  .portfolio-inner:hover .portfolio-text {
    transition-delay: 0.3s;
    opacity: 1;
  }

  .portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
  }

  .portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
  }

  /*** Team ***/
  .team-item {
    position: relative;
    overflow: hidden;
    height: 360px;
  }

  .team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: 0.5s;
  }

  .team-item:hover .team-text {
    left: 0;
    opacity: 1;
  }

  .team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
  }

  .team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
  }

  .team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
  }

  .team-item:hover .team-img .team-social {
    transition-delay: 0.3s;
    opacity: 1;
  }

  /*** Testimonial ***/

  .testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
  }

  .testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
  }

  .testimonial-carousel .owl-nav .owl-prev,
  .testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: 0.5s;
  }

  .testimonial-carousel .owl-nav .owl-prev:hover,
  .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
  }

  /*** Footer ***/
  .footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
  }

  .footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
  }

  .footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
  }

  .copyright {
    color: var(--light);
    background: #072a19;
  }

  .copyright a {
    color: #ffffff;
  }

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

  #logo-img {
    position: absolute;
    top: 0;
    left: 65px;
    width: 90%;
    height: 50px;
  }

  /** animations**/
  .ball {
    position: absolute;
    border-radius: 100%;
    opacity: 0.7;
    top: -200;
    z-index: -2;
  }

  .background {
    position: absolute;
    width: 100vw;
    height: 35vh;
    z-index: -2;
  }
  .background span {
    width: 20vmin;
    height: 20vmin;
    border-radius: 20vmin;
    backface-visibility: hidden;
    position: absolute;
    animation-name: move;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  .background span:nth-child(1) {
    color: #e45a84;
    top: 43%;
    left: 70%;
    animation-duration: 15.3s;
    animation-delay: -7.3s;
    transform-origin: 4vw -24vh;
    box-shadow: -40vmin 0 11128741525vmin currentColor;
  }
  .background span:nth-child(2) {
    color: #583c87;
    top: 7%;
    left: 64%;
    animation-duration: 11.1s;
    animation-delay: -14.7s;
    transform-origin: 10vw -3vh;
    box-shadow: -40vmin 0 12113294165vmin currentColor;
  }
  .background span:nth-child(3) {
    color: #ffacac;
    top: 82%;
    left: 28%;
    animation-duration: 13.9s;
    animation-delay: -2.3s;
    transform-origin: 25vw -19vh;
    box-shadow: -40vmin 0 8304624205vmin currentColor;
  }
  .background span:nth-child(4) {
    color: #583c87;
    top: 18%;
    left: 61%;
    animation-duration: 11.6s;
    animation-delay: -10.6s;
    transform-origin: -16vw -20vh;
    box-shadow: -40vmin 0 18577070915vmin currentColor;
  }
  .background span:nth-child(5) {
    color: #ffacac;
    top: 82%;
    left: 46%;
    animation-duration: 14.8s;
    animation-delay: -8.7s;
    transform-origin: 3vw 2vh;
    box-shadow: -40vmin 0 13927835535vmin currentColor;
  }
  .background span:nth-child(6) {
    color: #e45a84;
    top: 90%;
    left: 66%;
    animation-duration: 11.5s;
    animation-delay: -1.7s;
    transform-origin: -2vw -8vh;
    box-shadow: -40vmin 0 21197195025vmin currentColor;
  }
  .background span:nth-child(7) {
    color: #e45a84;
    top: 5%;
    left: 20%;
    animation-duration: 11.3s;
    animation-delay: -13s;
    transform-origin: 4vw -22vh;
    box-shadow: -40vmin 0 5232057435vmin currentColor;
  }
  .background span:nth-child(8) {
    color: #ffacac;
    top: 42%;
    left: 38%;
    animation-duration: 10.1s;
    animation-delay: -7s;
    transform-origin: -12vw 9vh;
    box-shadow: -40vmin 0 17121931465vmin currentColor;
  }
  .background span:nth-child(9) {
    color: #583c87;
    top: 39%;
    left: 51%;
    animation-duration: 12s;
    animation-delay: -3.9s;
    transform-origin: 5vw 22vh;
    box-shadow: -40vmin 0 11091633415vmin currentColor;
  }
  .background span:nth-child(10) {
    color: #ffacac;
    top: 16%;
    left: 91%;
    animation-duration: 16s;
    animation-delay: -6.2s;
    transform-origin: 7vw 22vh;
    box-shadow: -40vmin 0 12730611615vmin currentColor;
  }
  .background span:nth-child(11) {
    color: #e45a84;
    top: 46%;
    left: 11%;
    animation-duration: 11.1s;
    animation-delay: -15.7s;
    transform-origin: -20vw 3vh;
    box-shadow: -40vmin 0 890385925vmin currentColor;
  }
  .background span:nth-child(12) {
    color: #ffacac;
    top: 43%;
    left: 1%;
    animation-duration: 15s;
    animation-delay: -3.3s;
    transform-origin: 16vw 23vh;
    box-shadow: -40vmin 0 3380321185vmin currentColor;
  }
  .background span:nth-child(13) {
    color: #e45a84;
    top: 15%;
    left: 81%;
    animation-duration: 15.8s;
    animation-delay: -13.3s;
    transform-origin: -18vw 17vh;
    box-shadow: -40vmin 0 6661628235vmin currentColor;
  }
  .background span:nth-child(14) {
    color: #583c87;
    top: 68%;
    left: 89%;
    animation-duration: 11.8s;
    animation-delay: -4s;
    transform-origin: 16vw -2vh;
    box-shadow: -40vmin 0 15571965725vmin currentColor;
  }
  .background span:nth-child(15) {
    color: #583c87;
    top: 71%;
    left: 30%;
    animation-duration: 12.9s;
    animation-delay: -7.3s;
    transform-origin: -18vw -1vh;
    box-shadow: -40vmin 0 20497927275vmin currentColor;
  }
  .background span:nth-child(16) {
    color: #ffacac;
    top: 85%;
    left: 42%;
    animation-duration: 15.6s;
    animation-delay: -8.7s;
    transform-origin: 15vw -15vh;
    box-shadow: -40vmin 0 17580118485vmin currentColor;
  }
  .background span:nth-child(17) {
    color: #ffacac;
    top: 14%;
    left: 46%;
    animation-duration: 11.6s;
    animation-delay: -2.8s;
    transform-origin: -20vw 4vh;
    box-shadow: -40vmin 0 16879045755vmin currentColor;
  }
  .background span:nth-child(18) {
    color: #ffacac;
    top: 59%;
    left: 75%;
    animation-duration: 16s;
    animation-delay: -6.8s;
    transform-origin: 19vw 20vh;
    box-shadow: -40vmin 0 13197673365vmin currentColor;
  }
  .background span:nth-child(19) {
    color: #583c87;
    top: 77%;
    left: 17%;
    animation-duration: 11.3s;
    animation-delay: -3s;
    transform-origin: -12vw -3vh;
    box-shadow: -40vmin 0 20695218565vmin currentColor;
  }
  .background span:nth-child(20) {
    color: #583c87;
    top: 56%;
    left: 89%;
    animation-duration: 12.7s;
    animation-delay: -13s;
    transform-origin: -22vw 13vh;
    box-shadow: -40vmin 0 8955926755vmin currentColor;
  }
  @keyframes move {
    100% {
      transform: translate3d(0, 0, 1px) rotate(360deg);
    }
  }

  /***Aboutohomeage***/
  .about_section {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .about_img {
    height: 100%;
    display: flex;
    align-items: stretch;
  }
  .about_img img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
  }
  @media (max-width: 768px) {
    .about_section .row {
      flex-direction: column;
      text-align: center;
    }
    .about_img img {
      height: auto;
      max-height: none;
    }
  }

  /***about us small section***/

  .abt-01 {
    padding: 3.125rem 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 9;
    overflow: hidden;
  }
  .abt-01::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;

    opacity: 0.6;
    left: 0;
    top: 0;
    z-index: -1;
  }
  .abt-01 .seting {
    padding: 20px 0px;
    text-align: center;
  }
  .abt-01 .seting h3 {
    font-size: 70px;
    color: black;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.3px;
    margin: 10px 0px;
  }
  .abt-01 .seting ol li {
    display: inline-block;
    padding: 20px 0px;
    font-size: 16px;
    color: black;
  }
  .abt-01 .seting ol li i {
    color: black;
    margin: 0 10px;
  }

  .bg-02::before {
    position: absolute;
    content: "";
    right: 0;
    width: 80%;
    height: 100%;
    top: 0;
    z-index: -3;
  }
  .bg-02 .image {
    position: relative;
    z-index: 2;
  }
  .bg-02 .heading {
    display: block;
    width: 100%;
    text-align: center;
    margin: 1.25rem 0;
    position: relative;
    z-index: 2;
    transition: all ease-in 0.5s;
    text-align: left;
  }
  .bg-02 .heading span {
    display: block;
    margin: 0 0 0.625rem 0;
    color: #095710;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .bg-02 .heading h2 {
    font-size: 1.5625rem;
    font-weight: 8;
    display: inline-block;
    color: #0c692b;
  }
  .bg-02 .heading p {
    font-size: 0.8125rem;
    display: block;
    margin: 0.625rem 0;
    text-transform: capitalize;
    color: #666666;
  }
  .bg-02 .wrapper {
    position: relative;
    z-index: 2;
    margin: 1.25rem 0;
  }
  .bg-02 .wrapper .icon {
    display: flex;
    flex-direction: column;
    margin: 0.9375rem 0;
    position: relative;
    align-items: center;
  }
  .bg-02 .wrapper .icon i {
    display: block;
    height: 3.75rem;
    width: 3.75rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    color: hsl(145, 81%, 51%);
    margin: 0 0 0.625rem 0;
    box-shadow: 0 2px 19px 8px rgba(12, 225, 76, 0.07),
      0 1px 19px rgba(20, 255, 51, 0.1);
  }
  .bg-02 .wrapper .icon h4 {
    display: inline-block;
    font-size: 1.5625rem;
    color: #fd4a36;
    font-weight: 600;
    margin: 0 0 0.625rem 0;
  }
  .bg-02 .wrapper .icon h5 {
    font-size: 1.125rem;
    color: #0c2957;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
  }

  /****Iframe styling***/
  .iframe {
    max-width: 560px !important;
    width: 100% !important;
  }

  .b-example-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.1);
    border: solid rgba(0, 0, 0, 0.15);
    border-width: 1px 0;
    box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
      inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
  }

  /******drop design*****/
  .c {
    position: relative;
    display: grid;
    margin: 0;
    place-items: center;
    background: linear-gradient(to right, #d6ddcc, #71ed82, #8cf64f);
    font-family: "Montserrat", sans-serif;
    z-index: -2;
  }

  .text-c {
    display: grid;
    place-items: center;
    position: relative;
    font-family: "Poppins", sans-serif;
  }

  .drop {
    position: absolute;
    height: 200px;
    width: 200px;
    background: #54fb54;
    border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
    opacity: 0.8;
    border: 2px solid #3d93ff;
  }

  .drop::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #31fe8d;
    border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
    box-shadow: -20px 30px 16px #1b6cfb, -40px 60px 32px #1b6cfb,
      inset -6px 6px 10px #1b6cfb, inset 2px 6px 10px #1a74e5,
      inset 20px -20px 22px white, inset 40px -40px 44px #a8ceff;
  }

  .drop::after {
    content: "";
    position: absolute;
    height: 40px;
    width: 40px;
    background: #e6fdfb;
    border-radius: 44% 56% 46% 54% / 36% 50% 50% 64%;
    left: 130px;
    top: 40px;
    box-shadow: 16px 40px 0 -10px white;
    opacity: 0.8;
  }

  .drop1 {
    left: -65px;
    top: -50px;
  }

  .drop2 {
    right: -10px;
    bottom: -50px;
    z-index: -1;
    border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
  }

  .drop2::before {
    border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
  }

  /**Mission and vision***/
  .mission {
    top: 5;
  }
  .bi {
    vertical-align: -0.125em;
    fill: currentColor;
  }

  .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #fff;
    border-radius: 0.75rem;
  }

  .icon-link {
    display: inline-flex;
    align-items: center;
  }
  .icon-link > .bi {
    margin-top: 0.125rem;
    margin-left: 0.125rem;
    transition: transform 0.25s ease-in-out;
    fill: currentColor;
  }
  .icon-link:hover > .bi {
    transform: translate(0.25rem);
  }

  .icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    border-radius: 0.75rem;
  }
}
@media only screen and (min-width: 1440px) {
  .back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
  }

  h1,
  .h1,
  h2,
  .h2,
  .fw-bold {
    font-weight: 700 !important;
  }

  h3,
  .h3,
  h4,
  .h4,
  .fw-medium {
    font-weight: 600 !important;
  }

  h5,
  .h5,
  h6,
  .h6,
  .fw-semi-bold {
    font-weight: 500 !important;
  }

  /*** Spinner ***/
  #spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
  }

  #spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
  }

  /*** Button ***/
  .btn {
    transition: 0.5s;
    font-weight: 500;
  }

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

  .btn-square {
    width: 38px;
    height: 38px;
  }

  .btn-sm-square {
    width: 32px;
    height: 32px;
  }

  .btn-lg-square {
    width: 48px;
    height: 48px;
  }

  .btn-square,
  .btn-sm-square,
  .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
  }

  /*** Navbar ***/
  .navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
  }

  .navbar .navbar-brand,
  .navbar a.btn {
    height: 80px;
  }

  .navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
  }

  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
  }

  .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
  }

  @media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
      margin-right: 0;
      padding: 10px 0;
    }

    .navbar .navbar-nav {
      border-top: 1px solid #eeeeee;
    }
  }

  @media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      opacity: 0;
      visibility: hidden;
      transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: 0.5s;
      opacity: 1;
    }
  }

  /*** Header ***/
  .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, 0.6);
    z-index: 1;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
  }

  @media (max-width: 768px) {
    #header-carousel .carousel-item {
      position: relative;
      min-height: 450px;
    }

    #header-carousel .carousel-item img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .page-header {
    background: url(img/Coriander.jpg) center center no-repeat;
    background-size: cover;
  }

  .page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
  }

  .page-header .breadcrumb-item,
  .page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
  }

  /*** Top Feature ***/
  @media (min-width: 991.98px) {
    .top-feature {
      position: relative;
      margin-top: -80px;
      z-index: 1;
    }
  }

  /*** Facts & Quote ***/
  .facts,
  .quote {
    background: var(--primary);
  }

  /***Products***/
  /* Product Section Styles */
  /* Animation for cards appearing */
  @keyframes slideUpScale {
    from {
      opacity: 0;
      transform: translateY(50px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  /* Animation for hover effect */
  @keyframes bounceRotate {
    0% {
      transform: scale(1) rotate(0);
    }
    50% {
      transform: scale(1.08) rotate(2deg);
    }
    100% {
      transform: scale(1) rotate(0);
    }
  }

  /* Apply animations */
  .fruite-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0; /* Initially hidden */
    animation: slideUpScale 0.6s ease-out forwards; /* Run on page load */
  }

  /* Stagger effect for multiple cards */
  .fruite-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  .fruite-item:nth-child(2) {
    animation-delay: 0.2s;
  }
  .fruite-item:nth-child(3) {
    animation-delay: 0.3s;
  }
  .fruite-item:nth-child(4) {
    animation-delay: 0.4s;
  }
  .fruite-item:nth-child(5) {
    animation-delay: 0.5s;
  }
  .fruite-item:nth-child(6) {
    animation-delay: 0.6s;
  }
  .fruite-item:nth-child(7) {
    animation-delay: 0.7s;
  }
  .fruite-item:nth-child(8) {
    animation-delay: 0.8s;
  }

  /* Hover animation */
  .fruite-item:hover {
    animation: bounceRotate 0.4s ease-out;
  }
  /***New Projects*/

  /*** Service ***/
  .service-item {
    position: relative;
    text-align: center;
  }

  .service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
  }

  .service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: 0.3s;
    z-index: -1;
  }

  .service-item:hover .service-img img {
    transform: scale(1);
  }

  .service-item .service-text {
    background: #ffffff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
  }

  .service-item:hover .service-text {
    background: rgba(15, 66, 41, 0.6);
  }

  .service-item .service-text h4,
  .service-item .service-text p {
    transition: 0.3;
  }

  .service-item:hover .service-text h4 {
    color: #ffffff;
  }

  .service-item:hover .service-text p {
    color: var(--light);
  }

  .service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: 0.5s;
  }

  .service-item:hover .service-text .btn-square {
    background: var(--light);
  }

  .service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: 0.3s;
  }

  .service-item:hover .service-text .btn {
    width: 112px;
  }

  /*** Project Portfolio ***/
  #portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
  }

  #portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: 0.5s;
    border-bottom: 2px solid transparent;
  }

  #portfolio-flters li:hover,
  #portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
  }

  .portfolio-inner {
    position: relative;
    overflow: hidden;
  }

  .portfolio-inner::before,
  .portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, 0.6);
    transition: 0.5s;
  }

  .portfolio-inner::after {
    left: auto;
    right: 0;
  }

  .portfolio-inner:hover::before,
  .portfolio-inner:hover::after {
    width: 50%;
  }

  .portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
  }

  .portfolio-inner:hover .portfolio-text {
    transition-delay: 0.3s;
    opacity: 1;
  }

  .portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
  }

  .portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
  }

  /*** Team ***/
  .team-item {
    position: relative;
    overflow: hidden;
  }

  .team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: 0.5s;
  }

  .team-item:hover .team-text {
    left: 0;
    opacity: 1;
  }

  .team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
  }

  .team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
  }

  .team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
  }

  .team-item:hover .team-img .team-social {
    transition-delay: 0.3s;
    opacity: 1;
  }

  /*** Testimonial ***/

  .testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
  }

  .testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
  }

  .testimonial-carousel .owl-nav .owl-prev,
  .testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: 0.5s;
  }

  .testimonial-carousel .owl-nav .owl-prev:hover,
  .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
  }

  /*** Footer ***/
  .footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
  }

  .footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
  }

  .footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
  }

  .copyright {
    color: var(--light);
    background: #072a19;
  }

  .copyright a {
    color: #ffffff;
  }

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

  #logo-img {
    position: absolute;
    top: 0;
    left: 65px;
    width: 90%;
    height: 50px;
  }

  /**About animations**/
  .ball {
    position: absolute;
    border-radius: 100%;
    opacity: 0.7;
    top: -200;
    z-index: -2;
  }

  .background {
    position: absolute;
    width: 100vw;
    height: 35vh;
    z-index: -2;
  }
  .background span {
    width: 20vmin;
    height: 20vmin;
    border-radius: 20vmin;
    backface-visibility: hidden;
    position: absolute;
    animation-name: move;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  .background span:nth-child(1) {
    color: #e45a84;
    top: 43%;
    left: 70%;
    animation-duration: 15.3s;
    animation-delay: -7.3s;
    transform-origin: 4vw -24vh;
    box-shadow: -40vmin 0 11128741525vmin currentColor;
  }
  .background span:nth-child(2) {
    color: #583c87;
    top: 7%;
    left: 64%;
    animation-duration: 11.1s;
    animation-delay: -14.7s;
    transform-origin: 10vw -3vh;
    box-shadow: -40vmin 0 12113294165vmin currentColor;
  }
  .background span:nth-child(3) {
    color: #ffacac;
    top: 82%;
    left: 28%;
    animation-duration: 13.9s;
    animation-delay: -2.3s;
    transform-origin: 25vw -19vh;
    box-shadow: -40vmin 0 8304624205vmin currentColor;
  }
  .background span:nth-child(4) {
    color: #583c87;
    top: 18%;
    left: 61%;
    animation-duration: 11.6s;
    animation-delay: -10.6s;
    transform-origin: -16vw -20vh;
    box-shadow: -40vmin 0 18577070915vmin currentColor;
  }
  .background span:nth-child(5) {
    color: #ffacac;
    top: 82%;
    left: 46%;
    animation-duration: 14.8s;
    animation-delay: -8.7s;
    transform-origin: 3vw 2vh;
    box-shadow: -40vmin 0 13927835535vmin currentColor;
  }
  .background span:nth-child(6) {
    color: #e45a84;
    top: 90%;
    left: 66%;
    animation-duration: 11.5s;
    animation-delay: -1.7s;
    transform-origin: -2vw -8vh;
    box-shadow: -40vmin 0 21197195025vmin currentColor;
  }
  .background span:nth-child(7) {
    color: #e45a84;
    top: 5%;
    left: 20%;
    animation-duration: 11.3s;
    animation-delay: -13s;
    transform-origin: 4vw -22vh;
    box-shadow: -40vmin 0 5232057435vmin currentColor;
  }
  .background span:nth-child(8) {
    color: #ffacac;
    top: 42%;
    left: 38%;
    animation-duration: 10.1s;
    animation-delay: -7s;
    transform-origin: -12vw 9vh;
    box-shadow: -40vmin 0 17121931465vmin currentColor;
  }
  .background span:nth-child(9) {
    color: #583c87;
    top: 39%;
    left: 51%;
    animation-duration: 12s;
    animation-delay: -3.9s;
    transform-origin: 5vw 22vh;
    box-shadow: -40vmin 0 11091633415vmin currentColor;
  }
  .background span:nth-child(10) {
    color: #ffacac;
    top: 16%;
    left: 91%;
    animation-duration: 16s;
    animation-delay: -6.2s;
    transform-origin: 7vw 22vh;
    box-shadow: -40vmin 0 12730611615vmin currentColor;
  }
  .background span:nth-child(11) {
    color: #e45a84;
    top: 46%;
    left: 11%;
    animation-duration: 11.1s;
    animation-delay: -15.7s;
    transform-origin: -20vw 3vh;
    box-shadow: -40vmin 0 890385925vmin currentColor;
  }
  .background span:nth-child(12) {
    color: #ffacac;
    top: 43%;
    left: 1%;
    animation-duration: 15s;
    animation-delay: -3.3s;
    transform-origin: 16vw 23vh;
    box-shadow: -40vmin 0 3380321185vmin currentColor;
  }
  .background span:nth-child(13) {
    color: #e45a84;
    top: 15%;
    left: 81%;
    animation-duration: 15.8s;
    animation-delay: -13.3s;
    transform-origin: -18vw 17vh;
    box-shadow: -40vmin 0 6661628235vmin currentColor;
  }
  .background span:nth-child(14) {
    color: #583c87;
    top: 68%;
    left: 89%;
    animation-duration: 11.8s;
    animation-delay: -4s;
    transform-origin: 16vw -2vh;
    box-shadow: -40vmin 0 15571965725vmin currentColor;
  }
  .background span:nth-child(15) {
    color: #583c87;
    top: 71%;
    left: 30%;
    animation-duration: 12.9s;
    animation-delay: -7.3s;
    transform-origin: -18vw -1vh;
    box-shadow: -40vmin 0 20497927275vmin currentColor;
  }
  .background span:nth-child(16) {
    color: #ffacac;
    top: 85%;
    left: 42%;
    animation-duration: 15.6s;
    animation-delay: -8.7s;
    transform-origin: 15vw -15vh;
    box-shadow: -40vmin 0 17580118485vmin currentColor;
  }
  .background span:nth-child(17) {
    color: #ffacac;
    top: 14%;
    left: 46%;
    animation-duration: 11.6s;
    animation-delay: -2.8s;
    transform-origin: -20vw 4vh;
    box-shadow: -40vmin 0 16879045755vmin currentColor;
  }
  .background span:nth-child(18) {
    color: #ffacac;
    top: 59%;
    left: 75%;
    animation-duration: 16s;
    animation-delay: -6.8s;
    transform-origin: 19vw 20vh;
    box-shadow: -40vmin 0 13197673365vmin currentColor;
  }
  .background span:nth-child(19) {
    color: #583c87;
    top: 77%;
    left: 17%;
    animation-duration: 11.3s;
    animation-delay: -3s;
    transform-origin: -12vw -3vh;
    box-shadow: -40vmin 0 20695218565vmin currentColor;
  }
  .background span:nth-child(20) {
    color: #583c87;
    top: 56%;
    left: 89%;
    animation-duration: 12.7s;
    animation-delay: -13s;
    transform-origin: -22vw 13vh;
    box-shadow: -40vmin 0 8955926755vmin currentColor;
  }
  @keyframes move {
    100% {
      transform: translate3d(0, 0, 1px) rotate(360deg);
    }
  }

  /***about us small section***/
  .abt-01 {
    padding: 3.125rem 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 9;
    overflow: hidden;
  }
  .abt-01::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;

    opacity: 0.6;
    left: 0;
    top: 0;
    z-index: -1;
  }
  .abt-01 .seting {
    padding: 20px 0px;
    text-align: center;
  }
  .abt-01 .seting h3 {
    font-size: 70px;
    color: black;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.3px;
    margin: 10px 0px;
  }
  .abt-01 .seting ol li {
    display: inline-block;
    padding: 20px 0px;
    font-size: 16px;
    color: black;
  }
  .abt-01 .seting ol li i {
    color: black;
    margin: 0 10px;
  }

  .bg-02::before {
    position: absolute;
    content: "";
    right: 0;
    width: 80%;
    height: 100%;
    top: 0;
    z-index: -3;
  }
  .bg-02 .image {
    position: relative;
    z-index: 2;
  }
  .bg-02 .heading {
    display: block;
    width: 100%;
    text-align: center;
    margin: 1.25rem 0;
    position: relative;
    z-index: 2;
    transition: all ease-in 0.5s;
    text-align: left;
  }
  .bg-02 .heading span {
    display: block;
    margin: 0 0 0.625rem 0;
    color: #095710;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .bg-02 .heading h2 {
    font-size: 1.5625rem;
    font-weight: 8;
    display: inline-block;
    color: #0c692b;
  }
  .bg-02 .heading p {
    font-size: 0.8125rem;
    display: block;
    margin: 0.625rem 0;
    text-transform: capitalize;
    color: #666666;
  }
  .bg-02 .wrapper {
    position: relative;
    z-index: 2;
    margin: 1.25rem 0;
  }
  .bg-02 .wrapper .icon {
    display: flex;
    flex-direction: column;
    margin: 0.9375rem 0;
    position: relative;
    align-items: center;
  }
  .bg-02 .wrapper .icon i {
    display: block;
    height: 3.75rem;
    width: 3.75rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    color: hsl(145, 81%, 51%);
    margin: 0 0 0.625rem 0;
    box-shadow: 0 2px 19px 8px rgba(12, 225, 76, 0.07),
      0 1px 19px rgba(20, 255, 51, 0.1);
  }
  .bg-02 .wrapper .icon h4 {
    display: inline-block;
    font-size: 1.5625rem;
    color: #fd4a36;
    font-weight: 600;
    margin: 0 0 0.625rem 0;
  }
  .bg-02 .wrapper .icon h5 {
    font-size: 1.125rem;
    color: #0c2957;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
  }

  /****Iframe styling***/
  .iframe {
    width: 500px !important;
    height: 305px !important;
  }
  .b-example-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.1);
    border: solid rgba(0, 0, 0, 0.15);
    border-width: 1px 0;
    box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
      inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
  }

  /******drop design*****/
  .c {
    position: relative;
    display: grid;
    margin: 0;
    place-items: center;
    background: linear-gradient(to right, #d6ddcc, #71ed82, #8cf64f);
    font-family: "Montserrat", sans-serif;
    z-index: -2;
  }

  .text-c {
    display: grid;
    place-items: center;
    position: relative;
    font-family: "Poppins", sans-serif;
  }

  .drop {
    position: absolute;
    height: 200px;
    width: 200px;
    background: #54fb54;
    border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
    opacity: 0.8;
    border: 2px solid #3d93ff;
  }

  .drop::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #31fe8d;
    border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
    box-shadow: -20px 30px 16px #1b6cfb, -40px 60px 32px #1b6cfb,
      inset -6px 6px 10px #1b6cfb, inset 2px 6px 10px #1a74e5,
      inset 20px -20px 22px white, inset 40px -40px 44px #a8ceff;
  }

  .drop::after {
    content: "";
    position: absolute;
    height: 40px;
    width: 40px;
    background: #e6fdfb;
    border-radius: 44% 56% 46% 54% / 36% 50% 50% 64%;
    left: 130px;
    top: 40px;
    box-shadow: 16px 40px 0 -10px white;
    opacity: 0.8;
  }

  .drop1 {
    left: -65px;
    top: -50px;
  }

  .drop2 {
    right: -10px;
    bottom: -50px;
    z-index: -1;
    border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
  }

  .drop2::before {
    border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
  }

  /**Mission and vision***/
  .mission {
    top: 5;
  }
  .bi {
    vertical-align: -0.125em;
    fill: currentColor;
  }

  .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #fff;
    border-radius: 0.75rem;
  }

  .icon-link {
    display: inline-flex;
    align-items: center;
  }
  .icon-link > .bi {
    margin-top: 0.125rem;
    margin-left: 0.125rem;
    transition: transform 0.25s ease-in-out;
    fill: currentColor;
  }
  .icon-link:hover > .bi {
    transform: translate(0.25rem);
  }

  .icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    border-radius: 0.75rem;
  }
}
@media only screen and (min-width: 2000px) {
  .back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
  }

  h1,
  .h1,
  h2,
  .h2,
  .fw-bold {
    font-weight: 700 !important;
  }

  h3,
  .h3,
  h4,
  .h4,
  .fw-medium {
    font-weight: 600 !important;
  }

  h5,
  .h5,
  h6,
  .h6,
  .fw-semi-bold {
    font-weight: 500 !important;
  }

  /*** Spinner ***/
  #spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
  }

  #spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
  }

  /*** Button ***/
  .btn {
    transition: 0.5s;
    font-weight: 500;
  }

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

  .btn-square {
    width: 38px;
    height: 38px;
  }

  .btn-sm-square {
    width: 32px;
    height: 32px;
  }

  .btn-lg-square {
    width: 48px;
    height: 48px;
  }

  .btn-square,
  .btn-sm-square,
  .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
  }

  /*** Navbar ***/
  .navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
  }

  .navbar .navbar-brand,
  .navbar a.btn {
    height: 80px;
  }

  .navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
  }

  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
  }

  .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
  }

  @media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
      margin-right: 0;
      padding: 10px 0;
    }

    .navbar .navbar-nav {
      border-top: 1px solid #eeeeee;
    }
  }

  @media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      opacity: 0;
      visibility: hidden;
      transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: 0.5s;
      opacity: 1;
    }
  }

  /*** Header ***/
  .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, 0.6);
    z-index: 1;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
  }

  @media (max-width: 768px) {
    #header-carousel .carousel-item {
      position: relative;
      min-height: 450px;
    }

    #header-carousel .carousel-item img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .page-header {
    background: url(../img/Coriander.jpg) center center no-repeat;
    background-size: cover;
  }

  .page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
  }

  .page-header .breadcrumb-item,
  .page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
  }

  /*** Top Feature ***/
  @media (min-width: 991.98px) {
    .top-feature {
      position: relative;
      margin-top: -80px;
      z-index: 1;
    }
  }

  /*** Facts & Quote ***/
  .facts,
  .quote {
    background: var(--primary);
  }

  /*** Service ***/
  .service-item {
    position: relative;
    text-align: center;
  }

  .service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
  }

  .service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: 0.3s;
    z-index: -1;
  }

  .service-item:hover .service-img img {
    transform: scale(1);
  }

  .service-item .service-text {
    background: #ffffff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
  }

  .service-item:hover .service-text {
    background: rgba(15, 66, 41, 0.6);
  }

  .service-item .service-text h4,
  .service-item .service-text p {
    transition: 0.3;
  }

  .service-item:hover .service-text h4 {
    color: #ffffff;
  }

  .service-item:hover .service-text p {
    color: var(--light);
  }

  .service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: 0.5s;
  }

  .service-item:hover .service-text .btn-square {
    background: var(--light);
  }

  .service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: 0.3s;
  }

  .service-item:hover .service-text .btn {
    width: 112px;
  }

  /*** Project Portfolio ***/
  #portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
  }

  #portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: 0.5s;
    border-bottom: 2px solid transparent;
  }

  #portfolio-flters li:hover,
  #portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
  }

  .portfolio-inner {
    position: relative;
    overflow: hidden;
  }

  .portfolio-inner::before,
  .portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, 0.6);
    transition: 0.5s;
  }

  .portfolio-inner::after {
    left: auto;
    right: 0;
  }

  .portfolio-inner:hover::before,
  .portfolio-inner:hover::after {
    width: 50%;
  }

  .portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
  }

  .portfolio-inner:hover .portfolio-text {
    transition-delay: 0.3s;
    opacity: 1;
  }

  .portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
  }

  .portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
  }

  /*** Team ***/
  .team-item {
    position: relative;
    overflow: hidden;
  }

  .team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: 0.5s;
  }

  .team-item:hover .team-text {
    left: 0;
    opacity: 1;
  }

  .team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
  }

  .team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
  }

  .team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
  }

  .team-item:hover .team-img .team-social {
    transition-delay: 0.3s;
    opacity: 1;
  }

  /*** Testimonial ***/

  .testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
  }

  .testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
  }

  .testimonial-carousel .owl-nav .owl-prev,
  .testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: 0.5s;
  }

  .testimonial-carousel .owl-nav .owl-prev:hover,
  .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
  }

  /*** Footer ***/
  .footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
  }

  .footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
  }

  .footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
  }

  .copyright {
    color: var(--light);
    background: #072a19;
  }

  .copyright a {
    color: #ffffff;
  }

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

  #logo-img {
    position: absolute;
    top: 0;
    left: 65px;
    width: 90%;
    height: 50px;
  }

  /**About animations**/
  .ball {
    position: absolute;
    border-radius: 100%;
    opacity: 0.7;
    top: -200;
    z-index: -2;
  }

  .background {
    position: absolute;
    width: 100vw;
    height: 35vh;
    z-index: -2;
  }
  .background span {
    width: 20vmin;
    height: 20vmin;
    border-radius: 20vmin;
    backface-visibility: hidden;
    position: absolute;
    animation-name: move;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  .background span:nth-child(1) {
    color: #e45a84;
    top: 43%;
    left: 70%;
    animation-duration: 15.3s;
    animation-delay: -7.3s;
    transform-origin: 4vw -24vh;
    box-shadow: -40vmin 0 11128741525vmin currentColor;
  }
  .background span:nth-child(2) {
    color: #583c87;
    top: 7%;
    left: 64%;
    animation-duration: 11.1s;
    animation-delay: -14.7s;
    transform-origin: 10vw -3vh;
    box-shadow: -40vmin 0 12113294165vmin currentColor;
  }
  .background span:nth-child(3) {
    color: #ffacac;
    top: 82%;
    left: 28%;
    animation-duration: 13.9s;
    animation-delay: -2.3s;
    transform-origin: 25vw -19vh;
    box-shadow: -40vmin 0 8304624205vmin currentColor;
  }
  .background span:nth-child(4) {
    color: #583c87;
    top: 18%;
    left: 61%;
    animation-duration: 11.6s;
    animation-delay: -10.6s;
    transform-origin: -16vw -20vh;
    box-shadow: -40vmin 0 18577070915vmin currentColor;
  }
  .background span:nth-child(5) {
    color: #ffacac;
    top: 82%;
    left: 46%;
    animation-duration: 14.8s;
    animation-delay: -8.7s;
    transform-origin: 3vw 2vh;
    box-shadow: -40vmin 0 13927835535vmin currentColor;
  }
  .background span:nth-child(6) {
    color: #e45a84;
    top: 90%;
    left: 66%;
    animation-duration: 11.5s;
    animation-delay: -1.7s;
    transform-origin: -2vw -8vh;
    box-shadow: -40vmin 0 21197195025vmin currentColor;
  }
  .background span:nth-child(7) {
    color: #e45a84;
    top: 5%;
    left: 20%;
    animation-duration: 11.3s;
    animation-delay: -13s;
    transform-origin: 4vw -22vh;
    box-shadow: -40vmin 0 5232057435vmin currentColor;
  }
  .background span:nth-child(8) {
    color: #ffacac;
    top: 42%;
    left: 38%;
    animation-duration: 10.1s;
    animation-delay: -7s;
    transform-origin: -12vw 9vh;
    box-shadow: -40vmin 0 17121931465vmin currentColor;
  }
  .background span:nth-child(9) {
    color: #583c87;
    top: 39%;
    left: 51%;
    animation-duration: 12s;
    animation-delay: -3.9s;
    transform-origin: 5vw 22vh;
    box-shadow: -40vmin 0 11091633415vmin currentColor;
  }
  .background span:nth-child(10) {
    color: #ffacac;
    top: 16%;
    left: 91%;
    animation-duration: 16s;
    animation-delay: -6.2s;
    transform-origin: 7vw 22vh;
    box-shadow: -40vmin 0 12730611615vmin currentColor;
  }
  .background span:nth-child(11) {
    color: #e45a84;
    top: 46%;
    left: 11%;
    animation-duration: 11.1s;
    animation-delay: -15.7s;
    transform-origin: -20vw 3vh;
    box-shadow: -40vmin 0 890385925vmin currentColor;
  }
  .background span:nth-child(12) {
    color: #ffacac;
    top: 43%;
    left: 1%;
    animation-duration: 15s;
    animation-delay: -3.3s;
    transform-origin: 16vw 23vh;
    box-shadow: -40vmin 0 3380321185vmin currentColor;
  }
  .background span:nth-child(13) {
    color: #e45a84;
    top: 15%;
    left: 81%;
    animation-duration: 15.8s;
    animation-delay: -13.3s;
    transform-origin: -18vw 17vh;
    box-shadow: -40vmin 0 6661628235vmin currentColor;
  }
  .background span:nth-child(14) {
    color: #583c87;
    top: 68%;
    left: 89%;
    animation-duration: 11.8s;
    animation-delay: -4s;
    transform-origin: 16vw -2vh;
    box-shadow: -40vmin 0 15571965725vmin currentColor;
  }
  .background span:nth-child(15) {
    color: #583c87;
    top: 71%;
    left: 30%;
    animation-duration: 12.9s;
    animation-delay: -7.3s;
    transform-origin: -18vw -1vh;
    box-shadow: -40vmin 0 20497927275vmin currentColor;
  }
  .background span:nth-child(16) {
    color: #ffacac;
    top: 85%;
    left: 42%;
    animation-duration: 15.6s;
    animation-delay: -8.7s;
    transform-origin: 15vw -15vh;
    box-shadow: -40vmin 0 17580118485vmin currentColor;
  }
  .background span:nth-child(17) {
    color: #ffacac;
    top: 14%;
    left: 46%;
    animation-duration: 11.6s;
    animation-delay: -2.8s;
    transform-origin: -20vw 4vh;
    box-shadow: -40vmin 0 16879045755vmin currentColor;
  }
  .background span:nth-child(18) {
    color: #ffacac;
    top: 59%;
    left: 75%;
    animation-duration: 16s;
    animation-delay: -6.8s;
    transform-origin: 19vw 20vh;
    box-shadow: -40vmin 0 13197673365vmin currentColor;
  }
  .background span:nth-child(19) {
    color: #583c87;
    top: 77%;
    left: 17%;
    animation-duration: 11.3s;
    animation-delay: -3s;
    transform-origin: -12vw -3vh;
    box-shadow: -40vmin 0 20695218565vmin currentColor;
  }
  .background span:nth-child(20) {
    color: #583c87;
    top: 56%;
    left: 89%;
    animation-duration: 12.7s;
    animation-delay: -13s;
    transform-origin: -22vw 13vh;
    box-shadow: -40vmin 0 8955926755vmin currentColor;
  }
  @keyframes move {
    100% {
      transform: translate3d(0, 0, 1px) rotate(360deg);
    }
  }

  /***about us small section***/
  .abt-01 {
    padding: 3.125rem 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 9;
    overflow: hidden;
  }
  .abt-01::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;

    opacity: 0.6;
    left: 0;
    top: 0;
    z-index: -1;
  }
  .abt-01 .seting {
    padding: 20px 0px;
    text-align: center;
  }
  .abt-01 .seting h3 {
    font-size: 70px;
    color: black;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.3px;
    margin: 10px 0px;
  }
  .abt-01 .seting ol li {
    display: inline-block;
    padding: 20px 0px;
    font-size: 16px;
    color: black;
  }
  .abt-01 .seting ol li i {
    color: black;
    margin: 0 10px;
  }

  .bg-02::before {
    position: absolute;
    content: "";
    right: 0;
    width: 80%;
    height: 100%;
    top: 0;
    z-index: -3;
  }
  .bg-02 .image {
    position: relative;
    z-index: 2;
  }
  .bg-02 .heading {
    display: block;
    width: 100%;
    text-align: center;
    margin: 1.25rem 0;
    position: relative;
    z-index: 2;
    transition: all ease-in 0.5s;
    text-align: left;
  }
  .bg-02 .heading span {
    display: block;
    margin: 0 0 0.625rem 0;
    color: #095710;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .bg-02 .heading h2 {
    font-size: 1.5625rem;
    font-weight: 8;
    display: inline-block;
    color: #0c692b;
  }
  .bg-02 .heading p {
    font-size: 0.8125rem;
    display: block;
    margin: 0.625rem 0;
    text-transform: capitalize;
    color: #666666;
  }
  .bg-02 .wrapper {
    position: relative;
    z-index: 2;
    margin: 1.25rem 0;
  }
  .bg-02 .wrapper .icon {
    display: flex;
    flex-direction: column;
    margin: 0.9375rem 0;
    position: relative;
    align-items: center;
  }
  .bg-02 .wrapper .icon i {
    display: block;
    height: 3.75rem;
    width: 3.75rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    color: hsl(145, 81%, 51%);
    margin: 0 0 0.625rem 0;
    box-shadow: 0 2px 19px 8px rgba(12, 225, 76, 0.07),
      0 1px 19px rgba(20, 255, 51, 0.1);
  }
  .bg-02 .wrapper .icon h4 {
    display: inline-block;
    font-size: 1.5625rem;
    color: #fd4a36;
    font-weight: 600;
    margin: 0 0 0.625rem 0;
  }
  .bg-02 .wrapper .icon h5 {
    font-size: 1.125rem;
    color: #0c2957;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
  }

  /****Iframe styling***/
  .iframe {
    width: 500px !important;
    height: 305px !important;
  }
  .b-example-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.1);
    border: solid rgba(0, 0, 0, 0.15);
    border-width: 1px 0;
    box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
      inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
  }

  /******drop design*****/
  .c {
    position: relative;
    display: grid;
    margin: 0;
    place-items: center;
    background: linear-gradient(to right, #d6ddcc, #71ed82, #8cf64f);
    font-family: "Montserrat", sans-serif;
    z-index: -2;
  }

  .text-c {
    display: grid;
    place-items: center;
    position: relative;
    font-family: "Poppins", sans-serif;
  }

  .drop {
    position: absolute;
    height: 200px;
    width: 200px;
    background: #54fb54;
    border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
    opacity: 0.8;
    border: 2px solid #3d93ff;
  }

  .drop::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #31fe8d;
    border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
    box-shadow: -20px 30px 16px #1b6cfb, -40px 60px 32px #1b6cfb,
      inset -6px 6px 10px #1b6cfb, inset 2px 6px 10px #1a74e5,
      inset 20px -20px 22px white, inset 40px -40px 44px #a8ceff;
  }

  .drop::after {
    content: "";
    position: absolute;
    height: 40px;
    width: 40px;
    background: #e6fdfb;
    border-radius: 44% 56% 46% 54% / 36% 50% 50% 64%;
    left: 130px;
    top: 40px;
    box-shadow: 16px 40px 0 -10px white;
    opacity: 0.8;
  }

  .drop1 {
    left: -65px;
    top: -50px;
  }

  .drop2 {
    right: -10px;
    bottom: -50px;
    z-index: -1;
    border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
  }

  .drop2::before {
    border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
  }

  /**Mission and vision***/
  .mission {
    top: 5;
  }
  .bi {
    vertical-align: -0.125em;
    fill: currentColor;
  }

  .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #fff;
    border-radius: 0.75rem;
  }

  .icon-link {
    display: inline-flex;
    align-items: center;
  }
  .icon-link > .bi {
    margin-top: 0.125rem;
    margin-left: 0.125rem;
    transition: transform 0.25s ease-in-out;
    fill: currentColor;
  }
  .icon-link:hover > .bi {
    transform: translate(0.25rem);
  }

  .icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    border-radius: 0.75rem;
  }

}
@media only screen and (max-device-width: 480px) {
  .back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
  }

  h1,
  .h1,
  h2,
  .h2,
  .fw-bold {
    font-weight: 700 !important;
  }

  h3,
  .h3,
  h4,
  .h4,
  .fw-medium {
    font-weight: 600 !important;
  }

  h5,
  .h5,
  h6,
  .h6,
  .fw-semi-bold {
    font-weight: 500 !important;
  }

  /*** Spinner ***/
  #spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
  }

  #spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
  }

  /*** Button ***/
  .btn {
    transition: 0.5s;
    font-weight: 500;
  }

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

  .btn-square {
    width: 38px;
    height: 38px;
  }

  .btn-sm-square {
    width: 32px;
    height: 32px;
  }

  .btn-lg-square {
    width: 48px;
    height: 48px;
  }

  .btn-square,
  .btn-sm-square,
  .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
  }

  /*** Navbar ***/
  .navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
  }

  .navbar .navbar-brand,
  .navbar a.btn {
    height: 80px;
  }

  .navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
  }

  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
  }

  .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
  }

  @media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
      margin-right: 0;
      padding: 10px 0;
    }

    .navbar .navbar-nav {
      border-top: 1px solid #eeeeee;
    }
  }

  @media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      opacity: 0;
      visibility: hidden;
      transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: 0.5s;
      opacity: 1;
    }
  }

  /*** Header ***/
  .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, 0.6);
    z-index: 1;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
  }

  @media (max-width: 768px) {
    #header-carousel .carousel-item {
      position: relative;
      min-height: 450px;
    }

    #header-carousel .carousel-item img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .page-header {
    background: url(/img/Coriander.jpg) center center no-repeat;
    background-size: cover;
  }

  .page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
  }

  .page-header .breadcrumb-item,
  .page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
  }

  /*** Top Feature ***/
  @media (min-width: 991.98px) {
    .top-feature {
      position: relative;
      margin-top: -80px;
      z-index: 1;
    }
  }

  /*** Facts & Quote ***/
  .facts,
  .quote {
    background: var(--primary);
  }

  /*** Service ***/
  .service-item {
    position: relative;
    text-align: center;
  }

  .service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
  }

  .service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: 0.3s;
    z-index: -1;
  }

  .service-item:hover .service-img img {
    transform: scale(1);
  }

  .service-item .service-text {
    background: #ffffff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
  }

  .service-item:hover .service-text {
    background: rgba(15, 66, 41, 0.6);
  }

  .service-item .service-text h4,
  .service-item .service-text p {
    transition: 0.3;
  }

  .service-item:hover .service-text h4 {
    color: #ffffff;
  }

  .service-item:hover .service-text p {
    color: var(--light);
  }

  .service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: 0.5s;
  }

  .service-item:hover .service-text .btn-square {
    background: var(--light);
  }

  .service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: 0.3s;
  }

  .service-item:hover .service-text .btn {
    width: 112px;
  }

  /*** Project Portfolio ***/
  #portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
  }

  #portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: 0.5s;
    border-bottom: 2px solid transparent;
  }

  #portfolio-flters li:hover,
  #portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
  }

  .portfolio-inner {
    position: relative;
    overflow: hidden;
  }

  .portfolio-inner::before,
  .portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, 0.6);
    transition: 0.5s;
  }

  .portfolio-inner::after {
    left: auto;
    right: 0;
  }

  .portfolio-inner:hover::before,
  .portfolio-inner:hover::after {
    width: 50%;
  }

  .portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
  }

  .portfolio-inner:hover .portfolio-text {
    transition-delay: 0.3s;
    opacity: 1;
  }

  .portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
  }

  .portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
  }

  /*** Team ***/
  .team-item {
    position: relative;
    overflow: hidden;
  }

  .team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: 0.5s;
  }

  .team-item:hover .team-text {
    left: 0;
    opacity: 1;
  }

  .team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
  }

  .team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
  }

  .team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
  }

  .team-item:hover .team-img .team-social {
    transition-delay: 0.3s;
    opacity: 1;
  }

  /*** Testimonial ***/

  .testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
  }

  .testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
  }

  .testimonial-carousel .owl-nav .owl-prev,
  .testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: 0.5s;
  }

  .testimonial-carousel .owl-nav .owl-prev:hover,
  .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
  }

  /*** Footer ***/
  .footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
  }

  .footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
  }

  .footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
  }

  .copyright {
    color: var(--light);
    background: #072a19;
  }

  .copyright a {
    color: #ffffff;
  }

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

  #logo-img {
    position: absolute;
    top: 0;
    left: 65px;
    width: 90%;
    height: 50px;
  }

  /**About animations**/
  .ball {
    position: absolute;
    border-radius: 100%;
    opacity: 0.7;
    top: -200;
    z-index: -2;
  }

  .background {
    position: absolute;
    width: 100vw;
    height: 35vh;
    z-index: -2;
  }
  .background span {
    width: 20vmin;
    height: 20vmin;
    border-radius: 20vmin;
    backface-visibility: hidden;
    position: absolute;
    animation-name: move;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  .background span:nth-child(1) {
    color: #e45a84;
    top: 43%;
    left: 70%;
    animation-duration: 15.3s;
    animation-delay: -7.3s;
    transform-origin: 4vw -24vh;
    box-shadow: -40vmin 0 11128741525vmin currentColor;
  }
  .background span:nth-child(2) {
    color: #583c87;
    top: 7%;
    left: 64%;
    animation-duration: 11.1s;
    animation-delay: -14.7s;
    transform-origin: 10vw -3vh;
    box-shadow: -40vmin 0 12113294165vmin currentColor;
  }
  .background span:nth-child(3) {
    color: #ffacac;
    top: 82%;
    left: 28%;
    animation-duration: 13.9s;
    animation-delay: -2.3s;
    transform-origin: 25vw -19vh;
    box-shadow: -40vmin 0 8304624205vmin currentColor;
  }
  .background span:nth-child(4) {
    color: #583c87;
    top: 18%;
    left: 61%;
    animation-duration: 11.6s;
    animation-delay: -10.6s;
    transform-origin: -16vw -20vh;
    box-shadow: -40vmin 0 18577070915vmin currentColor;
  }
  .background span:nth-child(5) {
    color: #ffacac;
    top: 82%;
    left: 46%;
    animation-duration: 14.8s;
    animation-delay: -8.7s;
    transform-origin: 3vw 2vh;
    box-shadow: -40vmin 0 13927835535vmin currentColor;
  }
  .background span:nth-child(6) {
    color: #e45a84;
    top: 90%;
    left: 66%;
    animation-duration: 11.5s;
    animation-delay: -1.7s;
    transform-origin: -2vw -8vh;
    box-shadow: -40vmin 0 21197195025vmin currentColor;
  }
  .background span:nth-child(7) {
    color: #e45a84;
    top: 5%;
    left: 20%;
    animation-duration: 11.3s;
    animation-delay: -13s;
    transform-origin: 4vw -22vh;
    box-shadow: -40vmin 0 5232057435vmin currentColor;
  }
  .background span:nth-child(8) {
    color: #ffacac;
    top: 42%;
    left: 38%;
    animation-duration: 10.1s;
    animation-delay: -7s;
    transform-origin: -12vw 9vh;
    box-shadow: -40vmin 0 17121931465vmin currentColor;
  }
  .background span:nth-child(9) {
    color: #583c87;
    top: 39%;
    left: 51%;
    animation-duration: 12s;
    animation-delay: -3.9s;
    transform-origin: 5vw 22vh;
    box-shadow: -40vmin 0 11091633415vmin currentColor;
  }
  .background span:nth-child(10) {
    color: #ffacac;
    top: 16%;
    left: 91%;
    animation-duration: 16s;
    animation-delay: -6.2s;
    transform-origin: 7vw 22vh;
    box-shadow: -40vmin 0 12730611615vmin currentColor;
  }
  .background span:nth-child(11) {
    color: #e45a84;
    top: 46%;
    left: 11%;
    animation-duration: 11.1s;
    animation-delay: -15.7s;
    transform-origin: -20vw 3vh;
    box-shadow: -40vmin 0 890385925vmin currentColor;
  }
  .background span:nth-child(12) {
    color: #ffacac;
    top: 43%;
    left: 1%;
    animation-duration: 15s;
    animation-delay: -3.3s;
    transform-origin: 16vw 23vh;
    box-shadow: -40vmin 0 3380321185vmin currentColor;
  }
  .background span:nth-child(13) {
    color: #e45a84;
    top: 15%;
    left: 81%;
    animation-duration: 15.8s;
    animation-delay: -13.3s;
    transform-origin: -18vw 17vh;
    box-shadow: -40vmin 0 6661628235vmin currentColor;
  }
  .background span:nth-child(14) {
    color: #583c87;
    top: 68%;
    left: 89%;
    animation-duration: 11.8s;
    animation-delay: -4s;
    transform-origin: 16vw -2vh;
    box-shadow: -40vmin 0 15571965725vmin currentColor;
  }
  .background span:nth-child(15) {
    color: #583c87;
    top: 71%;
    left: 30%;
    animation-duration: 12.9s;
    animation-delay: -7.3s;
    transform-origin: -18vw -1vh;
    box-shadow: -40vmin 0 20497927275vmin currentColor;
  }
  .background span:nth-child(16) {
    color: #ffacac;
    top: 85%;
    left: 42%;
    animation-duration: 15.6s;
    animation-delay: -8.7s;
    transform-origin: 15vw -15vh;
    box-shadow: -40vmin 0 17580118485vmin currentColor;
  }
  .background span:nth-child(17) {
    color: #ffacac;
    top: 14%;
    left: 46%;
    animation-duration: 11.6s;
    animation-delay: -2.8s;
    transform-origin: -20vw 4vh;
    box-shadow: -40vmin 0 16879045755vmin currentColor;
  }
  .background span:nth-child(18) {
    color: #ffacac;
    top: 59%;
    left: 75%;
    animation-duration: 16s;
    animation-delay: -6.8s;
    transform-origin: 19vw 20vh;
    box-shadow: -40vmin 0 13197673365vmin currentColor;
  }
  .background span:nth-child(19) {
    color: #583c87;
    top: 77%;
    left: 17%;
    animation-duration: 11.3s;
    animation-delay: -3s;
    transform-origin: -12vw -3vh;
    box-shadow: -40vmin 0 20695218565vmin currentColor;
  }
  .background span:nth-child(20) {
    color: #583c87;
    top: 56%;
    left: 89%;
    animation-duration: 12.7s;
    animation-delay: -13s;
    transform-origin: -22vw 13vh;
    box-shadow: -40vmin 0 8955926755vmin currentColor;
  }
  @keyframes move {
    100% {
      transform: translate3d(0, 0, 1px) rotate(360deg);
    }
  }

  /***about us small section***/
  .abt-01 {
    padding: 3.125rem 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 9;
    overflow: hidden;
  }
  .abt-01::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;

    opacity: 0.6;
    left: 0;
    top: 0;
    z-index: -1;
  }
  .abt-01 .seting {
    padding: 20px 0px;
    text-align: center;
  }
  .abt-01 .seting h3 {
    font-size: 70px;
    color: black;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.3px;
    margin: 10px 0px;
  }
  .abt-01 .seting ol li {
    display: inline-block;
    padding: 20px 0px;
    font-size: 16px;
    color: black;
  }
  .abt-01 .seting ol li i {
    color: black;
    margin: 0 10px;
  }

  .bg-02::before {
    position: absolute;
    content: "";
    right: 0;
    width: 80%;
    height: 100%;
    top: 0;
    z-index: -3;
  }
  .bg-02 .image {
    position: relative;
    z-index: 2;
  }
  .bg-02 .heading {
    display: block;
    width: 100%;
    text-align: center;
    margin: 1.25rem 0;
    position: relative;
    z-index: 2;
    transition: all ease-in 0.5s;
    text-align: left;
  }
  .bg-02 .heading span {
    display: block;
    margin: 0 0 0.625rem 0;
    color: #095710;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .bg-02 .heading h2 {
    font-size: 1.5625rem;
    font-weight: 8;
    display: inline-block;
    color: #0c692b;
  }
  .bg-02 .heading p {
    font-size: 0.8125rem;
    display: block;
    margin: 0.625rem 0;
    text-transform: capitalize;
    color: #666666;
  }
  .bg-02 .wrapper {
    position: relative;
    z-index: 2;
    margin: 1.25rem 0;
  }
  .bg-02 .wrapper .icon {
    display: flex;
    flex-direction: column;
    margin: 0.9375rem 0;
    position: relative;
    align-items: center;
  }
  .bg-02 .wrapper .icon i {
    display: block;
    height: 3.75rem;
    width: 3.75rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    color: hsl(145, 81%, 51%);
    margin: 0 0 0.625rem 0;
    box-shadow: 0 2px 19px 8px rgba(12, 225, 76, 0.07),
      0 1px 19px rgba(20, 255, 51, 0.1);
  }
  .bg-02 .wrapper .icon h4 {
    display: inline-block;
    font-size: 1.5625rem;
    color: #fd4a36;
    font-weight: 600;
    margin: 0 0 0.625rem 0;
  }
  .bg-02 .wrapper .icon h5 {
    font-size: 1.125rem;
    color: #0c2957;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
  }

  /****Iframe styling***/
  .iframe {
    width: 500px !important;
    height: 305px !important;
  }
  .b-example-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.1);
    border: solid rgba(0, 0, 0, 0.15);
    border-width: 1px 0;
    box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
      inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
  }

  /******drop design*****/
  .c {
    position: relative;
    display: grid;
    margin: 0;
    place-items: center;
    background: linear-gradient(to right, #d6ddcc, #71ed82, #8cf64f);
    font-family: "Montserrat", sans-serif;
    z-index: -2;
  }

  .text-c {
    display: grid;
    place-items: center;
    position: relative;
    font-family: "Poppins", sans-serif;
  }

  .drop {
    position: absolute;
    height: 200px;
    width: 200px;
    background: #54fb54;
    border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
    opacity: 0.8;
    border: 2px solid #3d93ff;
  }

  .drop::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #31fe8d;
    border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
    box-shadow: -20px 30px 16px #1b6cfb, -40px 60px 32px #1b6cfb,
      inset -6px 6px 10px #1b6cfb, inset 2px 6px 10px #1a74e5,
      inset 20px -20px 22px white, inset 40px -40px 44px #a8ceff;
  }

  .drop::after {
    content: "";
    position: absolute;
    height: 40px;
    width: 40px;
    background: #e6fdfb;
    border-radius: 44% 56% 46% 54% / 36% 50% 50% 64%;
    left: 130px;
    top: 40px;
    box-shadow: 16px 40px 0 -10px white;
    opacity: 0.8;
  }

  .drop1 {
    left: -65px;
    top: -50px;
  }

  .drop2 {
    right: -10px;
    bottom: -50px;
    z-index: -1;
    border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
  }

  .drop2::before {
    border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
  }

  /**Mission and vision***/
  .mission {
    top: 5;
  }
  .bi {
    vertical-align: -0.125em;
    fill: currentColor;
  }

  .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #fff;
    border-radius: 0.75rem;
  }

  .icon-link {
    display: inline-flex;
    align-items: center;
  }
  .icon-link > .bi {
    margin-top: 0.125rem;
    margin-left: 0.125rem;
    transition: transform 0.25s ease-in-out;
    fill: currentColor;
  }
  .icon-link:hover > .bi {
    transform: translate(0.25rem);
  }

  .icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    border-radius: 0.75rem;
  }

  /*****About us****/
  /* .wrapper {
    margin-top: 50px;
    display: flex;
    width: 97%;
    justify-content: space-around;
  }

  .card {
    width: 280px;
    height: 360px;
    border-radius: 15px;
    padding: 1.5rem;
    background: white;
    position: relative;
    display: flex;
    align-items: flex-end;
    transition: 0.4s ease-out;
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
  }
  .card:hover {
    transform: translateY(20px);
  }
  .card:hover:before {
    opacity: 1;
  }
  .card:hover .info {
    opacity: 1;
    transform: translateY(0px);
  }
  .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    transition: 0.5s;
    opacity: 0;
  }
  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
  }
  .card .info {
    position: relative;
    z-index: 3;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s;
  }
  .card .info h1 {
    margin: 0px;
    color: white;
  }
  .card .info p {
    letter-spacing: 1px;
    font-size: 15px;
    margin-top: 8px;
  }

  #Intiatives {
    display: flex;
    flex-direction: column;
    height: 600px;
  }
  #Intiatives h1 {
    margin: 60px;
    color: #348e38;
    font-size: 3rem;
    text-align: center;
    font-family: "Times New Roman", Times, serif;
  }
  .columns {
    display: grid;
    grid-template-columns: auto auto;
    padding-left: 160px;
  }
  .box {
    height: 300px;
    width: 500px;
    background-color: #348e38;
    border-radius: 20px;
    margin: 10px;
    padding: 20px;
    align-content: center;
  }
  .box h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .box p {
    color: white;
    font-size: 1.1rem;
  }

  .row {
    margin: 0px 5px 0px 5px;
    perspective: 600px;
    transition: transform 1s;
    transform-style: preserve-3d;
  }

  html {
    scroll-behavior: smooth;
  } */

  /*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
  .why-us .content {
    padding: 60px 100px 0 100px;
  }

  .why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #37517e;
  }

  .why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
  }

  .why-us .content p {
    font-size: 15px;
    color: #848484;
  }

  .why-us .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .why-us .accordion-list {
    padding: 0 100px 20px 100px;
  }

  .why-us .accordion-list ul {
    padding: 0;
    list-style: none;
  }

  .why-us .accordion-list li + li {
    margin-top: 15px;
  }

  .why-us .accordion-list li {
    padding: 20px;
    background: rgb(210, 255, 210);
    border-radius: 4px;
  }

  .why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
  }

  .why-us .accordion-list span {
    color: var(--dark);
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
  }

  .why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
  }

  .why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
  }

  .why-us .accordion-list .icon-show {
    display: none;
  }

  .why-us .accordion-list a.collapsed {
    color: #343a40;
  }

  .why-us .accordion-list a.collapsed:hover {
    color: var(--dark);
  }

  .why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
  }

  .why-us .accordion-list a.collapsed .icon-close {
    display: none;
  }

  @media (max-width: 1024px) {
    .why-us .content,
    .why-us .accordion-list {
      padding-left: 0;
      padding-right: 0;
    }
  }

  @media (max-width: 992px) {
    .why-us .img {
      min-height: 400px;
    }

    .why-us .content {
      padding-top: 30px;
    }

    .why-us .accordion-list {
      padding-bottom: 30px;
    }
  }

  @media (max-width: 575px) {
    .why-us .img {
      min-height: 200px;
    }
  }
}
@media only screen and (device-width: 768px) {
  .back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
  }

  h1,
  .h1,
  h2,
  .h2,
  .fw-bold {
    font-weight: 700 !important;
  }

  h3,
  .h3,
  h4,
  .h4,
  .fw-medium {
    font-weight: 600 !important;
  }

  h5,
  .h5,
  h6,
  .h6,
  .fw-semi-bold {
    font-weight: 500 !important;
  }

  /*** Spinner ***/
  #spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
  }

  #spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
  }

  /*** Button ***/
  .btn {
    transition: 0.5s;
    font-weight: 500;
  }

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

  .btn-square {
    width: 38px;
    height: 38px;
  }

  .btn-sm-square {
    width: 32px;
    height: 32px;
  }

  .btn-lg-square {
    width: 48px;
    height: 48px;
  }

  .btn-square,
  .btn-sm-square,
  .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
  }

  /*** Navbar ***/
  .navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
  }

  .navbar .navbar-brand,
  .navbar a.btn {
    height: 80px;
  }

  .navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
  }

  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
  }

  .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
  }

  @media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
      margin-right: 0;
      padding: 10px 0;
    }

    .navbar .navbar-nav {
      border-top: 1px solid #eeeeee;
    }
  }

  @media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      opacity: 0;
      visibility: hidden;
      transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: 0.5s;
      opacity: 1;
    }
  }

  /*** Header ***/
  .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, 0.6);
    z-index: 1;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
  }

  @media (max-width: 768px) {
    #header-carousel .carousel-item {
      position: relative;
      min-height: 450px;
    }

    #header-carousel .carousel-item img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .page-header {
    background: url(/img/Coriander.jpg) center center no-repeat;
    background-size: cover;
  }

  .page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
  }

  .page-header .breadcrumb-item,
  .page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
  }

  /*** Top Feature ***/
  @media (min-width: 991.98px) {
    .top-feature {
      position: relative;
      margin-top: -80px;
      z-index: 1;
    }
  }

  /*** Facts & Quote ***/
  .facts,
  .quote {
    background: var(--primary);
  }

  /*** Service ***/
  .service-item {
    position: relative;
    text-align: center;
  }

  .service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
  }

  .service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: 0.3s;
    z-index: -1;
  }

  .service-item:hover .service-img img {
    transform: scale(1);
  }

  .service-item .service-text {
    background: #ffffff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
  }

  .service-item:hover .service-text {
    background: rgba(15, 66, 41, 0.6);
  }

  .service-item .service-text h4,
  .service-item .service-text p {
    transition: 0.3;
  }

  .service-item:hover .service-text h4 {
    color: #ffffff;
  }

  .service-item:hover .service-text p {
    color: var(--light);
  }

  .service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: 0.5s;
  }

  .service-item:hover .service-text .btn-square {
    background: var(--light);
  }

  .service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: 0.3s;
  }

  .service-item:hover .service-text .btn {
    width: 112px;
  }

  /*** Project Portfolio ***/
  #portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
  }

  #portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: 0.5s;
    border-bottom: 2px solid transparent;
  }

  #portfolio-flters li:hover,
  #portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
  }

  .portfolio-inner {
    position: relative;
    overflow: hidden;
  }

  .portfolio-inner::before,
  .portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, 0.6);
    transition: 0.5s;
  }

  .portfolio-inner::after {
    left: auto;
    right: 0;
  }

  .portfolio-inner:hover::before,
  .portfolio-inner:hover::after {
    width: 50%;
  }

  .portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
  }

  .portfolio-inner:hover .portfolio-text {
    transition-delay: 0.3s;
    opacity: 1;
  }

  .portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
  }

  .portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
  }

  /*** Team ***/
  .team-item {
    position: relative;
    overflow: hidden;
  }

  .team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: 0.5s;
  }

  .team-item:hover .team-text {
    left: 0;
    opacity: 1;
  }

  .team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
  }

  .team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
  }

  .team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
  }

  .team-item:hover .team-img .team-social {
    transition-delay: 0.3s;
    opacity: 1;
  }

  /*** Testimonial ***/

  .testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
  }

  .testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
  }

  .testimonial-carousel .owl-nav .owl-prev,
  .testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: 0.5s;
  }

  .testimonial-carousel .owl-nav .owl-prev:hover,
  .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
  }

  /*** Footer ***/
  .footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
  }

  .footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
  }

  .footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
  }

  .copyright {
    color: var(--light);
    background: #072a19;
  }

  .copyright a {
    color: #ffffff;
  }

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

  #logo-img {
    position: absolute;
    top: 0;
    left: 65px;
    width: 90%;
    height: 50px;
  }

  /**About animations**/
  .ball {
    position: absolute;
    border-radius: 100%;
    opacity: 0.7;
    top: -200;
    z-index: -2;
  }

  .background {
    position: absolute;
    width: 100vw;
    height: 35vh;
    z-index: -2;
  }
  .background span {
    width: 20vmin;
    height: 20vmin;
    border-radius: 20vmin;
    backface-visibility: hidden;
    position: absolute;
    animation-name: move;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  .background span:nth-child(1) {
    color: #e45a84;
    top: 43%;
    left: 70%;
    animation-duration: 15.3s;
    animation-delay: -7.3s;
    transform-origin: 4vw -24vh;
    box-shadow: -40vmin 0 11128741525vmin currentColor;
  }
  .background span:nth-child(2) {
    color: #583c87;
    top: 7%;
    left: 64%;
    animation-duration: 11.1s;
    animation-delay: -14.7s;
    transform-origin: 10vw -3vh;
    box-shadow: -40vmin 0 12113294165vmin currentColor;
  }
  .background span:nth-child(3) {
    color: #ffacac;
    top: 82%;
    left: 28%;
    animation-duration: 13.9s;
    animation-delay: -2.3s;
    transform-origin: 25vw -19vh;
    box-shadow: -40vmin 0 8304624205vmin currentColor;
  }
  .background span:nth-child(4) {
    color: #583c87;
    top: 18%;
    left: 61%;
    animation-duration: 11.6s;
    animation-delay: -10.6s;
    transform-origin: -16vw -20vh;
    box-shadow: -40vmin 0 18577070915vmin currentColor;
  }
  .background span:nth-child(5) {
    color: #ffacac;
    top: 82%;
    left: 46%;
    animation-duration: 14.8s;
    animation-delay: -8.7s;
    transform-origin: 3vw 2vh;
    box-shadow: -40vmin 0 13927835535vmin currentColor;
  }
  .background span:nth-child(6) {
    color: #e45a84;
    top: 90%;
    left: 66%;
    animation-duration: 11.5s;
    animation-delay: -1.7s;
    transform-origin: -2vw -8vh;
    box-shadow: -40vmin 0 21197195025vmin currentColor;
  }
  .background span:nth-child(7) {
    color: #e45a84;
    top: 5%;
    left: 20%;
    animation-duration: 11.3s;
    animation-delay: -13s;
    transform-origin: 4vw -22vh;
    box-shadow: -40vmin 0 5232057435vmin currentColor;
  }
  .background span:nth-child(8) {
    color: #ffacac;
    top: 42%;
    left: 38%;
    animation-duration: 10.1s;
    animation-delay: -7s;
    transform-origin: -12vw 9vh;
    box-shadow: -40vmin 0 17121931465vmin currentColor;
  }
  .background span:nth-child(9) {
    color: #583c87;
    top: 39%;
    left: 51%;
    animation-duration: 12s;
    animation-delay: -3.9s;
    transform-origin: 5vw 22vh;
    box-shadow: -40vmin 0 11091633415vmin currentColor;
  }
  .background span:nth-child(10) {
    color: #ffacac;
    top: 16%;
    left: 91%;
    animation-duration: 16s;
    animation-delay: -6.2s;
    transform-origin: 7vw 22vh;
    box-shadow: -40vmin 0 12730611615vmin currentColor;
  }
  .background span:nth-child(11) {
    color: #e45a84;
    top: 46%;
    left: 11%;
    animation-duration: 11.1s;
    animation-delay: -15.7s;
    transform-origin: -20vw 3vh;
    box-shadow: -40vmin 0 890385925vmin currentColor;
  }
  .background span:nth-child(12) {
    color: #ffacac;
    top: 43%;
    left: 1%;
    animation-duration: 15s;
    animation-delay: -3.3s;
    transform-origin: 16vw 23vh;
    box-shadow: -40vmin 0 3380321185vmin currentColor;
  }
  .background span:nth-child(13) {
    color: #e45a84;
    top: 15%;
    left: 81%;
    animation-duration: 15.8s;
    animation-delay: -13.3s;
    transform-origin: -18vw 17vh;
    box-shadow: -40vmin 0 6661628235vmin currentColor;
  }
  .background span:nth-child(14) {
    color: #583c87;
    top: 68%;
    left: 89%;
    animation-duration: 11.8s;
    animation-delay: -4s;
    transform-origin: 16vw -2vh;
    box-shadow: -40vmin 0 15571965725vmin currentColor;
  }
  .background span:nth-child(15) {
    color: #583c87;
    top: 71%;
    left: 30%;
    animation-duration: 12.9s;
    animation-delay: -7.3s;
    transform-origin: -18vw -1vh;
    box-shadow: -40vmin 0 20497927275vmin currentColor;
  }
  .background span:nth-child(16) {
    color: #ffacac;
    top: 85%;
    left: 42%;
    animation-duration: 15.6s;
    animation-delay: -8.7s;
    transform-origin: 15vw -15vh;
    box-shadow: -40vmin 0 17580118485vmin currentColor;
  }
  .background span:nth-child(17) {
    color: #ffacac;
    top: 14%;
    left: 46%;
    animation-duration: 11.6s;
    animation-delay: -2.8s;
    transform-origin: -20vw 4vh;
    box-shadow: -40vmin 0 16879045755vmin currentColor;
  }
  .background span:nth-child(18) {
    color: #ffacac;
    top: 59%;
    left: 75%;
    animation-duration: 16s;
    animation-delay: -6.8s;
    transform-origin: 19vw 20vh;
    box-shadow: -40vmin 0 13197673365vmin currentColor;
  }
  .background span:nth-child(19) {
    color: #583c87;
    top: 77%;
    left: 17%;
    animation-duration: 11.3s;
    animation-delay: -3s;
    transform-origin: -12vw -3vh;
    box-shadow: -40vmin 0 20695218565vmin currentColor;
  }
  .background span:nth-child(20) {
    color: #583c87;
    top: 56%;
    left: 89%;
    animation-duration: 12.7s;
    animation-delay: -13s;
    transform-origin: -22vw 13vh;
    box-shadow: -40vmin 0 8955926755vmin currentColor;
  }
  @keyframes move {
    100% {
      transform: translate3d(0, 0, 1px) rotate(360deg);
    }
  }

  /***about us small section***/
  .abt-01 {
    padding: 3.125rem 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 9;
    overflow: hidden;
  }
  .abt-01::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;

    opacity: 0.6;
    left: 0;
    top: 0;
    z-index: -1;
  }
  .abt-01 .seting {
    padding: 20px 0px;
    text-align: center;
  }
  .abt-01 .seting h3 {
    font-size: 70px;
    color: black;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.3px;
    margin: 10px 0px;
  }
  .abt-01 .seting ol li {
    display: inline-block;
    padding: 20px 0px;
    font-size: 16px;
    color: black;
  }
  .abt-01 .seting ol li i {
    color: black;
    margin: 0 10px;
  }

  .bg-02::before {
    position: absolute;
    content: "";
    right: 0;
    width: 80%;
    height: 100%;
    top: 0;
    z-index: -3;
  }
  .bg-02 .image {
    position: relative;
    z-index: 2;
  }
  .bg-02 .heading {
    display: block;
    width: 100%;
    text-align: center;
    margin: 1.25rem 0;
    position: relative;
    z-index: 2;
    transition: all ease-in 0.5s;
    text-align: left;
  }
  .bg-02 .heading span {
    display: block;
    margin: 0 0 0.625rem 0;
    color: #095710;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .bg-02 .heading h2 {
    font-size: 1.5625rem;
    font-weight: 8;
    display: inline-block;
    color: #0c692b;
  }
  .bg-02 .heading p {
    font-size: 0.8125rem;
    display: block;
    margin: 0.625rem 0;
    text-transform: capitalize;
    color: #666666;
  }
  .bg-02 .wrapper {
    position: relative;
    z-index: 2;
    margin: 1.25rem 0;
  }
  .bg-02 .wrapper .icon {
    display: flex;
    flex-direction: column;
    margin: 0.9375rem 0;
    position: relative;
    align-items: center;
  }
  .bg-02 .wrapper .icon i {
    display: block;
    height: 3.75rem;
    width: 3.75rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    color: hsl(145, 81%, 51%);
    margin: 0 0 0.625rem 0;
    box-shadow: 0 2px 19px 8px rgba(12, 225, 76, 0.07),
      0 1px 19px rgba(20, 255, 51, 0.1);
  }
  .bg-02 .wrapper .icon h4 {
    display: inline-block;
    font-size: 1.5625rem;
    color: #fd4a36;
    font-weight: 600;
    margin: 0 0 0.625rem 0;
  }
  .bg-02 .wrapper .icon h5 {
    font-size: 1.125rem;
    color: #0c2957;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
  }

  /****Iframe styling***/
  .iframe {
    width: 500px !important;
    height: 305px !important;
  }
  .b-example-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.1);
    border: solid rgba(0, 0, 0, 0.15);
    border-width: 1px 0;
    box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
      inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
  }

  /******drop design*****/
  .c {
    position: relative;
    display: grid;
    margin: 0;
    place-items: center;
    background: linear-gradient(to right, #d6ddcc, #71ed82, #8cf64f);
    font-family: "Montserrat", sans-serif;
    z-index: -2;
  }

  .text-c {
    display: grid;
    place-items: center;
    position: relative;
    font-family: "Poppins", sans-serif;
  }

  .drop {
    position: absolute;
    height: 200px;
    width: 200px;
    background: #54fb54;
    border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
    opacity: 0.8;
    border: 2px solid #3d93ff;
  }

  .drop::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #31fe8d;
    border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
    box-shadow: -20px 30px 16px #1b6cfb, -40px 60px 32px #1b6cfb,
      inset -6px 6px 10px #1b6cfb, inset 2px 6px 10px #1a74e5,
      inset 20px -20px 22px white, inset 40px -40px 44px #a8ceff;
  }

  .drop::after {
    content: "";
    position: absolute;
    height: 40px;
    width: 40px;
    background: #e6fdfb;
    border-radius: 44% 56% 46% 54% / 36% 50% 50% 64%;
    left: 130px;
    top: 40px;
    box-shadow: 16px 40px 0 -10px white;
    opacity: 0.8;
  }

  .drop1 {
    left: -65px;
    top: -50px;
  }

  .drop2 {
    right: -10px;
    bottom: -50px;
    z-index: -1;
    border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
  }

  .drop2::before {
    border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
  }

  /**Mission and vision***/
  .mission {
    top: 5;
  }
  .bi {
    vertical-align: -0.125em;
    fill: currentColor;
  }

  .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #fff;
    border-radius: 0.75rem;
  }

  .icon-link {
    display: inline-flex;
    align-items: center;
  }
  .icon-link > .bi {
    margin-top: 0.125rem;
    margin-left: 0.125rem;
    transition: transform 0.25s ease-in-out;
    fill: currentColor;
  }
  .icon-link:hover > .bi {
    transform: translate(0.25rem);
  }

  .icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    border-radius: 0.75rem;
  }

  /*****About us****/
  /* .wrapper {
    margin-top: 50px;
    display: flex;
    width: 97%;
    justify-content: space-around;
  }

  .card {
    width: 280px;
    height: 360px;
    border-radius: 15px;
    padding: 1.5rem;
    background: white;
    position: relative;
    display: flex;
    align-items: flex-end;
    transition: 0.4s ease-out;
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
  }
  .card:hover {
    transform: translateY(20px);
  }
  .card:hover:before {
    opacity: 1;
  }
  .card:hover .info {
    opacity: 1;
    transform: translateY(0px);
  }
  .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    transition: 0.5s;
    opacity: 0;
  }
  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
  }
  .card .info {
    position: relative;
    z-index: 3;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s;
  }
  .card .info h1 {
    margin: 0px;
    color: white;
  }
  .card .info p {
    letter-spacing: 1px;
    font-size: 15px;
    margin-top: 8px;
  }

  #Intiatives {
    display: flex;
    flex-direction: column;
    height: 600px;
  }
  #Intiatives h1 {
    margin: 60px;
    color: #348e38;
    font-size: 3rem;
    text-align: center;
    font-family: "Times New Roman", Times, serif;
  }
  .columns {
    display: grid;
    grid-template-columns: auto auto;
    padding-left: 160px;
  }
  .box {
    height: 300px;
    width: 500px;
    background-color: #348e38;
    border-radius: 20px;
    margin: 10px;
    padding: 20px;
    align-content: center;
  }
  .box h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .box p {
    color: white;
    font-size: 1.1rem;
  }

  .row {
    margin: 0px 5px 0px 5px;
    perspective: 600px;
    transition: transform 1s;
    transform-style: preserve-3d;
  }

  html {
    scroll-behavior: smooth;
  } */

  /*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
  /* .why-us .content {
    padding: 60px 100px 0 100px;
  }

  .why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #37517e;
  }

  .why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
  }

  .why-us .content p {
    font-size: 15px;
    color: #848484;
  }

  .why-us .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .why-us .accordion-list {
    padding: 0 100px 20px 100px;
  }

  .why-us .accordion-list ul {
    padding: 0;
    list-style: none;
  }

  .why-us .accordion-list li + li {
    margin-top: 15px;
  }

  .why-us .accordion-list li {
    padding: 20px;
    background: rgb(210, 255, 210);
    border-radius: 4px;
  }

  .why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
  }

  .why-us .accordion-list span {
    color: var(--dark);
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
  }

  .why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
  }

  .why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
  }

  .why-us .accordion-list .icon-show {
    display: none;
  }

  .why-us .accordion-list a.collapsed {
    color: #343a40;
  }

  .why-us .accordion-list a.collapsed:hover {
    color: var(--dark);
  }

  .why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
  }

  .why-us .accordion-list a.collapsed .icon-close {
    display: none;
  }

  @media (max-width: 1024px) {
    .why-us .content,
    .why-us .accordion-list {
      padding-left: 0;
      padding-right: 0;
    }
  }

  @media (max-width: 992px) {
    .why-us .img {
      min-height: 400px;
    }

    .why-us .content {
      padding-top: 30px;
    }

    .why-us .accordion-list {
      padding-bottom: 30px;
    }
  }

  @media (max-width: 575px) {
    .why-us .img {
      min-height: 200px;
    }
  }
} */
}
/* different techniques for iPad screening */
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: portrait) {
  .back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
  }

  h1,
  .h1,
  h2,
  .h2,
  .fw-bold {
    font-weight: 700 !important;
  }

  h3,
  .h3,
  h4,
  .h4,
  .fw-medium {
    font-weight: 600 !important;
  }

  h5,
  .h5,
  h6,
  .h6,
  .fw-semi-bold {
    font-weight: 500 !important;
  }

  /*** Spinner ***/
  #spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
  }

  #spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
  }

  /*** Button ***/
  .btn {
    transition: 0.5s;
    font-weight: 500;
  }

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

  .btn-square {
    width: 38px;
    height: 38px;
  }

  .btn-sm-square {
    width: 32px;
    height: 32px;
  }

  .btn-lg-square {
    width: 48px;
    height: 48px;
  }

  .btn-square,
  .btn-sm-square,
  .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
  }

  /*** Navbar ***/
  .navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
  }

  .navbar .navbar-brand,
  .navbar a.btn {
    height: 80px;
  }

  .navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
  }

  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
  }

  .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
  }

  @media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
      margin-right: 0;
      padding: 10px 0;
    }

    .navbar .navbar-nav {
      border-top: 1px solid #eeeeee;
    }
  }

  @media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      opacity: 0;
      visibility: hidden;
      transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: 0.5s;
      opacity: 1;
    }
  }

  /*** Header ***/
  .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, 0.6);
    z-index: 1;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
  }

  @media (max-width: 768px) {
    #header-carousel .carousel-item {
      position: relative;
      min-height: 450px;
    }

    #header-carousel .carousel-item img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .page-header {
    background: url(/img/Coriander.jpg) center center no-repeat;
    background-size: cover;
  }

  .page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
  }

  .page-header .breadcrumb-item,
  .page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
  }

  /*** Top Feature ***/
  @media (min-width: 991.98px) {
    .top-feature {
      position: relative;
      margin-top: -80px;
      z-index: 1;
    }
  }

  /*** Facts & Quote ***/
  .facts,
  .quote {
    background: var(--primary);
  }

  /*** Service ***/
  .service-item {
    position: relative;
    text-align: center;
  }

  .service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
  }

  .service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: 0.3s;
    z-index: -1;
  }

  .service-item:hover .service-img img {
    transform: scale(1);
  }

  .service-item .service-text {
    background: #ffffff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
  }

  .service-item:hover .service-text {
    background: rgba(15, 66, 41, 0.6);
  }

  .service-item .service-text h4,
  .service-item .service-text p {
    transition: 0.3;
  }

  .service-item:hover .service-text h4 {
    color: #ffffff;
  }

  .service-item:hover .service-text p {
    color: var(--light);
  }

  .service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: 0.5s;
  }

  .service-item:hover .service-text .btn-square {
    background: var(--light);
  }

  .service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: 0.3s;
  }

  .service-item:hover .service-text .btn {
    width: 112px;
  }

  /*** Project Portfolio ***/
  #portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
  }

  #portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: 0.5s;
    border-bottom: 2px solid transparent;
  }

  #portfolio-flters li:hover,
  #portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
  }

  .portfolio-inner {
    position: relative;
    overflow: hidden;
  }

  .portfolio-inner::before,
  .portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, 0.6);
    transition: 0.5s;
  }

  .portfolio-inner::after {
    left: auto;
    right: 0;
  }

  .portfolio-inner:hover::before,
  .portfolio-inner:hover::after {
    width: 50%;
  }

  .portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
  }

  .portfolio-inner:hover .portfolio-text {
    transition-delay: 0.3s;
    opacity: 1;
  }

  .portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
  }

  .portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
  }

  /*** Team ***/
  .team-item {
    position: relative;
    overflow: hidden;
  }

  .team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: 0.5s;
  }

  .team-item:hover .team-text {
    left: 0;
    opacity: 1;
  }

  .team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
  }

  .team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
  }

  .team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
  }

  .team-item:hover .team-img .team-social {
    transition-delay: 0.3s;
    opacity: 1;
  }

  /*** Testimonial ***/

  .testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
  }

  .testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
  }

  .testimonial-carousel .owl-nav .owl-prev,
  .testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: 0.5s;
  }

  .testimonial-carousel .owl-nav .owl-prev:hover,
  .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
  }

  /*** Footer ***/
  .footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
  }

  .footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
  }

  .footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
  }

  .copyright {
    color: var(--light);
    background: #072a19;
  }

  .copyright a {
    color: #ffffff;
  }

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

  #logo-img {
    position: absolute;
    top: 0;
    left: 65px;
    width: 90%;
    height: 50px;
  }

  /**About animations**/
  .ball {
    position: absolute;
    border-radius: 100%;
    opacity: 0.7;
    top: -200;
    z-index: -2;
  }

  .background {
    position: absolute;
    width: 100vw;
    height: 35vh;
    z-index: -2;
  }
  .background span {
    width: 20vmin;
    height: 20vmin;
    border-radius: 20vmin;
    backface-visibility: hidden;
    position: absolute;
    animation-name: move;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  .background span:nth-child(1) {
    color: #e45a84;
    top: 43%;
    left: 70%;
    animation-duration: 15.3s;
    animation-delay: -7.3s;
    transform-origin: 4vw -24vh;
    box-shadow: -40vmin 0 11128741525vmin currentColor;
  }
  .background span:nth-child(2) {
    color: #583c87;
    top: 7%;
    left: 64%;
    animation-duration: 11.1s;
    animation-delay: -14.7s;
    transform-origin: 10vw -3vh;
    box-shadow: -40vmin 0 12113294165vmin currentColor;
  }
  .background span:nth-child(3) {
    color: #ffacac;
    top: 82%;
    left: 28%;
    animation-duration: 13.9s;
    animation-delay: -2.3s;
    transform-origin: 25vw -19vh;
    box-shadow: -40vmin 0 8304624205vmin currentColor;
  }
  .background span:nth-child(4) {
    color: #583c87;
    top: 18%;
    left: 61%;
    animation-duration: 11.6s;
    animation-delay: -10.6s;
    transform-origin: -16vw -20vh;
    box-shadow: -40vmin 0 18577070915vmin currentColor;
  }
  .background span:nth-child(5) {
    color: #ffacac;
    top: 82%;
    left: 46%;
    animation-duration: 14.8s;
    animation-delay: -8.7s;
    transform-origin: 3vw 2vh;
    box-shadow: -40vmin 0 13927835535vmin currentColor;
  }
  .background span:nth-child(6) {
    color: #e45a84;
    top: 90%;
    left: 66%;
    animation-duration: 11.5s;
    animation-delay: -1.7s;
    transform-origin: -2vw -8vh;
    box-shadow: -40vmin 0 21197195025vmin currentColor;
  }
  .background span:nth-child(7) {
    color: #e45a84;
    top: 5%;
    left: 20%;
    animation-duration: 11.3s;
    animation-delay: -13s;
    transform-origin: 4vw -22vh;
    box-shadow: -40vmin 0 5232057435vmin currentColor;
  }
  .background span:nth-child(8) {
    color: #ffacac;
    top: 42%;
    left: 38%;
    animation-duration: 10.1s;
    animation-delay: -7s;
    transform-origin: -12vw 9vh;
    box-shadow: -40vmin 0 17121931465vmin currentColor;
  }
  .background span:nth-child(9) {
    color: #583c87;
    top: 39%;
    left: 51%;
    animation-duration: 12s;
    animation-delay: -3.9s;
    transform-origin: 5vw 22vh;
    box-shadow: -40vmin 0 11091633415vmin currentColor;
  }
  .background span:nth-child(10) {
    color: #ffacac;
    top: 16%;
    left: 91%;
    animation-duration: 16s;
    animation-delay: -6.2s;
    transform-origin: 7vw 22vh;
    box-shadow: -40vmin 0 12730611615vmin currentColor;
  }
  .background span:nth-child(11) {
    color: #e45a84;
    top: 46%;
    left: 11%;
    animation-duration: 11.1s;
    animation-delay: -15.7s;
    transform-origin: -20vw 3vh;
    box-shadow: -40vmin 0 890385925vmin currentColor;
  }
  .background span:nth-child(12) {
    color: #ffacac;
    top: 43%;
    left: 1%;
    animation-duration: 15s;
    animation-delay: -3.3s;
    transform-origin: 16vw 23vh;
    box-shadow: -40vmin 0 3380321185vmin currentColor;
  }
  .background span:nth-child(13) {
    color: #e45a84;
    top: 15%;
    left: 81%;
    animation-duration: 15.8s;
    animation-delay: -13.3s;
    transform-origin: -18vw 17vh;
    box-shadow: -40vmin 0 6661628235vmin currentColor;
  }
  .background span:nth-child(14) {
    color: #583c87;
    top: 68%;
    left: 89%;
    animation-duration: 11.8s;
    animation-delay: -4s;
    transform-origin: 16vw -2vh;
    box-shadow: -40vmin 0 15571965725vmin currentColor;
  }
  .background span:nth-child(15) {
    color: #583c87;
    top: 71%;
    left: 30%;
    animation-duration: 12.9s;
    animation-delay: -7.3s;
    transform-origin: -18vw -1vh;
    box-shadow: -40vmin 0 20497927275vmin currentColor;
  }
  .background span:nth-child(16) {
    color: #ffacac;
    top: 85%;
    left: 42%;
    animation-duration: 15.6s;
    animation-delay: -8.7s;
    transform-origin: 15vw -15vh;
    box-shadow: -40vmin 0 17580118485vmin currentColor;
  }
  .background span:nth-child(17) {
    color: #ffacac;
    top: 14%;
    left: 46%;
    animation-duration: 11.6s;
    animation-delay: -2.8s;
    transform-origin: -20vw 4vh;
    box-shadow: -40vmin 0 16879045755vmin currentColor;
  }
  .background span:nth-child(18) {
    color: #ffacac;
    top: 59%;
    left: 75%;
    animation-duration: 16s;
    animation-delay: -6.8s;
    transform-origin: 19vw 20vh;
    box-shadow: -40vmin 0 13197673365vmin currentColor;
  }
  .background span:nth-child(19) {
    color: #583c87;
    top: 77%;
    left: 17%;
    animation-duration: 11.3s;
    animation-delay: -3s;
    transform-origin: -12vw -3vh;
    box-shadow: -40vmin 0 20695218565vmin currentColor;
  }
  .background span:nth-child(20) {
    color: #583c87;
    top: 56%;
    left: 89%;
    animation-duration: 12.7s;
    animation-delay: -13s;
    transform-origin: -22vw 13vh;
    box-shadow: -40vmin 0 8955926755vmin currentColor;
  }
  @keyframes move {
    100% {
      transform: translate3d(0, 0, 1px) rotate(360deg);
    }
  }

  /***about us small section***/
  .abt-01 {
    padding: 3.125rem 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 9;
    overflow: hidden;
  }
  .abt-01::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;

    opacity: 0.6;
    left: 0;
    top: 0;
    z-index: -1;
  }
  .abt-01 .seting {
    padding: 20px 0px;
    text-align: center;
  }
  .abt-01 .seting h3 {
    font-size: 70px;
    color: black;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.3px;
    margin: 10px 0px;
  }
  .abt-01 .seting ol li {
    display: inline-block;
    padding: 20px 0px;
    font-size: 16px;
    color: black;
  }
  .abt-01 .seting ol li i {
    color: black;
    margin: 0 10px;
  }

  .bg-02::before {
    position: absolute;
    content: "";
    right: 0;
    width: 80%;
    height: 100%;
    top: 0;
    z-index: -3;
  }
  .bg-02 .image {
    position: relative;
    z-index: 2;
  }
  .bg-02 .heading {
    display: block;
    width: 100%;
    text-align: center;
    margin: 1.25rem 0;
    position: relative;
    z-index: 2;
    transition: all ease-in 0.5s;
    text-align: left;
  }
  .bg-02 .heading span {
    display: block;
    margin: 0 0 0.625rem 0;
    color: #095710;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .bg-02 .heading h2 {
    font-size: 1.5625rem;
    font-weight: 8;
    display: inline-block;
    color: #0c692b;
  }
  .bg-02 .heading p {
    font-size: 0.8125rem;
    display: block;
    margin: 0.625rem 0;
    text-transform: capitalize;
    color: #666666;
  }
  .bg-02 .wrapper {
    position: relative;
    z-index: 2;
    margin: 1.25rem 0;
  }
  .bg-02 .wrapper .icon {
    display: flex;
    flex-direction: column;
    margin: 0.9375rem 0;
    position: relative;
    align-items: center;
  }
  .bg-02 .wrapper .icon i {
    display: block;
    height: 3.75rem;
    width: 3.75rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    color: hsl(145, 81%, 51%);
    margin: 0 0 0.625rem 0;
    box-shadow: 0 2px 19px 8px rgba(12, 225, 76, 0.07),
      0 1px 19px rgba(20, 255, 51, 0.1);
  }
  .bg-02 .wrapper .icon h4 {
    display: inline-block;
    font-size: 1.5625rem;
    color: #fd4a36;
    font-weight: 600;
    margin: 0 0 0.625rem 0;
  }
  .bg-02 .wrapper .icon h5 {
    font-size: 1.125rem;
    color: #0c2957;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
  }

  /****Iframe styling***/
  .iframe {
    width: 500px !important;
    height: 305px !important;
  }
  .b-example-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.1);
    border: solid rgba(0, 0, 0, 0.15);
    border-width: 1px 0;
    box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
      inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
  }

  /******drop design*****/
  .c {
    position: relative;
    display: grid;
    margin: 0;
    place-items: center;
    background: linear-gradient(to right, #d6ddcc, #71ed82, #8cf64f);
    font-family: "Montserrat", sans-serif;
    z-index: -2;
  }

  .text-c {
    display: grid;
    place-items: center;
    position: relative;
    font-family: "Poppins", sans-serif;
  }

  .drop {
    position: absolute;
    height: 200px;
    width: 200px;
    background: #54fb54;
    border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
    opacity: 0.8;
    border: 2px solid #3d93ff;
  }

  .drop::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #31fe8d;
    border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
    box-shadow: -20px 30px 16px #1b6cfb, -40px 60px 32px #1b6cfb,
      inset -6px 6px 10px #1b6cfb, inset 2px 6px 10px #1a74e5,
      inset 20px -20px 22px white, inset 40px -40px 44px #a8ceff;
  }

  .drop::after {
    content: "";
    position: absolute;
    height: 40px;
    width: 40px;
    background: #e6fdfb;
    border-radius: 44% 56% 46% 54% / 36% 50% 50% 64%;
    left: 130px;
    top: 40px;
    box-shadow: 16px 40px 0 -10px white;
    opacity: 0.8;
  }

  .drop1 {
    left: -65px;
    top: -50px;
  }

  .drop2 {
    right: -10px;
    bottom: -50px;
    z-index: -1;
    border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
  }

  .drop2::before {
    border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
  }

  /**Mission and vision***/
  .mission {
    top: 5;
  }
  .bi {
    vertical-align: -0.125em;
    fill: currentColor;
  }

  .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #fff;
    border-radius: 0.75rem;
  }

  .icon-link {
    display: inline-flex;
    align-items: center;
  }
  .icon-link > .bi {
    margin-top: 0.125rem;
    margin-left: 0.125rem;
    transition: transform 0.25s ease-in-out;
    fill: currentColor;
  }
  .icon-link:hover > .bi {
    transform: translate(0.25rem);
  }

  .icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    border-radius: 0.75rem;
  }
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: landscape) {
  .back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
  }

  h1,
  .h1,
  h2,
  .h2,
  .fw-bold {
    font-weight: 700 !important;
  }

  h3,
  .h3,
  h4,
  .h4,
  .fw-medium {
    font-weight: 600 !important;
  }

  h5,
  .h5,
  h6,
  .h6,
  .fw-semi-bold {
    font-weight: 500 !important;
  }

  /*** Spinner ***/
  #spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
  }

  #spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
  }

  /*** Button ***/
  .btn {
    transition: 0.5s;
    font-weight: 500;
  }

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

  .btn-square {
    width: 38px;
    height: 38px;
  }

  .btn-sm-square {
    width: 32px;
    height: 32px;
  }

  .btn-lg-square {
    width: 48px;
    height: 48px;
  }

  .btn-square,
  .btn-sm-square,
  .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
  }

  /*** Navbar ***/
  .navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
  }

  .navbar .navbar-brand,
  .navbar a.btn {
    height: 80px;
  }

  .navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
  }

  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
  }

  .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
  }

  @media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
      margin-right: 0;
      padding: 10px 0;
    }

    .navbar .navbar-nav {
      border-top: 1px solid #eeeeee;
    }
  }

  @media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      opacity: 0;
      visibility: hidden;
      transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: 0.5s;
      opacity: 1;
    }
  }

  /*** Header ***/
  .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, 0.6);
    z-index: 1;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
  }

  @media (max-width: 768px) {
    #header-carousel .carousel-item {
      position: relative;
      min-height: 450px;
    }

    #header-carousel .carousel-item img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .page-header {
    background: url(/img/Coriander.jpg) center center no-repeat;
    background-size: cover;
  }

  .page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
  }

  .page-header .breadcrumb-item,
  .page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
  }

  /*** Top Feature ***/
  @media (min-width: 991.98px) {
    .top-feature {
      position: relative;
      margin-top: -80px;
      z-index: 1;
    }
  }

  /*** Facts & Quote ***/
  .facts,
  .quote {
    background: var(--primary);
  }

  /*** Service ***/
  .service-item {
    position: relative;
    text-align: center;
  }

  .service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
  }

  .service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: 0.3s;
    z-index: -1;
  }

  .service-item:hover .service-img img {
    transform: scale(1);
  }

  .service-item .service-text {
    background: #ffffff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
  }

  .service-item:hover .service-text {
    background: rgba(15, 66, 41, 0.6);
  }

  .service-item .service-text h4,
  .service-item .service-text p {
    transition: 0.3;
  }

  .service-item:hover .service-text h4 {
    color: #ffffff;
  }

  .service-item:hover .service-text p {
    color: var(--light);
  }

  .service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: 0.5s;
  }

  .service-item:hover .service-text .btn-square {
    background: var(--light);
  }

  .service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: 0.3s;
  }

  .service-item:hover .service-text .btn {
    width: 112px;
  }

  /*** Project Portfolio ***/
  #portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
  }

  #portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: 0.5s;
    border-bottom: 2px solid transparent;
  }

  #portfolio-flters li:hover,
  #portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
  }

  .portfolio-inner {
    position: relative;
    overflow: hidden;
  }

  .portfolio-inner::before,
  .portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, 0.6);
    transition: 0.5s;
  }

  .portfolio-inner::after {
    left: auto;
    right: 0;
  }

  .portfolio-inner:hover::before,
  .portfolio-inner:hover::after {
    width: 50%;
  }

  .portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
  }

  .portfolio-inner:hover .portfolio-text {
    transition-delay: 0.3s;
    opacity: 1;
  }

  .portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
  }

  .portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
  }

  /*** Team ***/
  .team-item {
    position: relative;
    overflow: hidden;
  }

  .team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: 0.5s;
  }

  .team-item:hover .team-text {
    left: 0;
    opacity: 1;
  }

  .team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
  }

  .team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
  }

  .team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
  }

  .team-item:hover .team-img .team-social {
    transition-delay: 0.3s;
    opacity: 1;
  }

  /*** Testimonial ***/

  .testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
  }

  .testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
  }

  .testimonial-carousel .owl-nav .owl-prev,
  .testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: 0.5s;
  }

  .testimonial-carousel .owl-nav .owl-prev:hover,
  .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
  }

  /*** Footer ***/
  .footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
  }

  .footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
  }

  .footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
  }

  .copyright {
    color: var(--light);
    background: #072a19;
  }

  .copyright a {
    color: #ffffff;
  }

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

  #logo-img {
    position: absolute;
    top: 0;
    left: 65px;
    width: 90%;
    height: 50px;
  }

  /**About animations**/
  .ball {
    position: absolute;
    border-radius: 100%;
    opacity: 0.7;
    top: -200;
    z-index: -2;
  }

  .background {
    position: absolute;
    width: 100vw;
    height: 35vh;
    z-index: -2;
  }
  .background span {
    width: 20vmin;
    height: 20vmin;
    border-radius: 20vmin;
    backface-visibility: hidden;
    position: absolute;
    animation-name: move;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  .background span:nth-child(1) {
    color: #e45a84;
    top: 43%;
    left: 70%;
    animation-duration: 15.3s;
    animation-delay: -7.3s;
    transform-origin: 4vw -24vh;
    box-shadow: -40vmin 0 11128741525vmin currentColor;
  }
  .background span:nth-child(2) {
    color: #583c87;
    top: 7%;
    left: 64%;
    animation-duration: 11.1s;
    animation-delay: -14.7s;
    transform-origin: 10vw -3vh;
    box-shadow: -40vmin 0 12113294165vmin currentColor;
  }
  .background span:nth-child(3) {
    color: #ffacac;
    top: 82%;
    left: 28%;
    animation-duration: 13.9s;
    animation-delay: -2.3s;
    transform-origin: 25vw -19vh;
    box-shadow: -40vmin 0 8304624205vmin currentColor;
  }
  .background span:nth-child(4) {
    color: #583c87;
    top: 18%;
    left: 61%;
    animation-duration: 11.6s;
    animation-delay: -10.6s;
    transform-origin: -16vw -20vh;
    box-shadow: -40vmin 0 18577070915vmin currentColor;
  }
  .background span:nth-child(5) {
    color: #ffacac;
    top: 82%;
    left: 46%;
    animation-duration: 14.8s;
    animation-delay: -8.7s;
    transform-origin: 3vw 2vh;
    box-shadow: -40vmin 0 13927835535vmin currentColor;
  }
  .background span:nth-child(6) {
    color: #e45a84;
    top: 90%;
    left: 66%;
    animation-duration: 11.5s;
    animation-delay: -1.7s;
    transform-origin: -2vw -8vh;
    box-shadow: -40vmin 0 21197195025vmin currentColor;
  }
  .background span:nth-child(7) {
    color: #e45a84;
    top: 5%;
    left: 20%;
    animation-duration: 11.3s;
    animation-delay: -13s;
    transform-origin: 4vw -22vh;
    box-shadow: -40vmin 0 5232057435vmin currentColor;
  }
  .background span:nth-child(8) {
    color: #ffacac;
    top: 42%;
    left: 38%;
    animation-duration: 10.1s;
    animation-delay: -7s;
    transform-origin: -12vw 9vh;
    box-shadow: -40vmin 0 17121931465vmin currentColor;
  }
  .background span:nth-child(9) {
    color: #583c87;
    top: 39%;
    left: 51%;
    animation-duration: 12s;
    animation-delay: -3.9s;
    transform-origin: 5vw 22vh;
    box-shadow: -40vmin 0 11091633415vmin currentColor;
  }
  .background span:nth-child(10) {
    color: #ffacac;
    top: 16%;
    left: 91%;
    animation-duration: 16s;
    animation-delay: -6.2s;
    transform-origin: 7vw 22vh;
    box-shadow: -40vmin 0 12730611615vmin currentColor;
  }
  .background span:nth-child(11) {
    color: #e45a84;
    top: 46%;
    left: 11%;
    animation-duration: 11.1s;
    animation-delay: -15.7s;
    transform-origin: -20vw 3vh;
    box-shadow: -40vmin 0 890385925vmin currentColor;
  }
  .background span:nth-child(12) {
    color: #ffacac;
    top: 43%;
    left: 1%;
    animation-duration: 15s;
    animation-delay: -3.3s;
    transform-origin: 16vw 23vh;
    box-shadow: -40vmin 0 3380321185vmin currentColor;
  }
  .background span:nth-child(13) {
    color: #e45a84;
    top: 15%;
    left: 81%;
    animation-duration: 15.8s;
    animation-delay: -13.3s;
    transform-origin: -18vw 17vh;
    box-shadow: -40vmin 0 6661628235vmin currentColor;
  }
  .background span:nth-child(14) {
    color: #583c87;
    top: 68%;
    left: 89%;
    animation-duration: 11.8s;
    animation-delay: -4s;
    transform-origin: 16vw -2vh;
    box-shadow: -40vmin 0 15571965725vmin currentColor;
  }
  .background span:nth-child(15) {
    color: #583c87;
    top: 71%;
    left: 30%;
    animation-duration: 12.9s;
    animation-delay: -7.3s;
    transform-origin: -18vw -1vh;
    box-shadow: -40vmin 0 20497927275vmin currentColor;
  }
  .background span:nth-child(16) {
    color: #ffacac;
    top: 85%;
    left: 42%;
    animation-duration: 15.6s;
    animation-delay: -8.7s;
    transform-origin: 15vw -15vh;
    box-shadow: -40vmin 0 17580118485vmin currentColor;
  }
  .background span:nth-child(17) {
    color: #ffacac;
    top: 14%;
    left: 46%;
    animation-duration: 11.6s;
    animation-delay: -2.8s;
    transform-origin: -20vw 4vh;
    box-shadow: -40vmin 0 16879045755vmin currentColor;
  }
  .background span:nth-child(18) {
    color: #ffacac;
    top: 59%;
    left: 75%;
    animation-duration: 16s;
    animation-delay: -6.8s;
    transform-origin: 19vw 20vh;
    box-shadow: -40vmin 0 13197673365vmin currentColor;
  }
  .background span:nth-child(19) {
    color: #583c87;
    top: 77%;
    left: 17%;
    animation-duration: 11.3s;
    animation-delay: -3s;
    transform-origin: -12vw -3vh;
    box-shadow: -40vmin 0 20695218565vmin currentColor;
  }
  .background span:nth-child(20) {
    color: #583c87;
    top: 56%;
    left: 89%;
    animation-duration: 12.7s;
    animation-delay: -13s;
    transform-origin: -22vw 13vh;
    box-shadow: -40vmin 0 8955926755vmin currentColor;
  }
  @keyframes move {
    100% {
      transform: translate3d(0, 0, 1px) rotate(360deg);
    }
  }

  /***about us small section***/
  .abt-01 {
    padding: 3.125rem 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 9;
    overflow: hidden;
  }
  .abt-01::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;

    opacity: 0.6;
    left: 0;
    top: 0;
    z-index: -1;
  }
  .abt-01 .seting {
    padding: 20px 0px;
    text-align: center;
  }
  .abt-01 .seting h3 {
    font-size: 70px;
    color: black;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.3px;
    margin: 10px 0px;
  }
  .abt-01 .seting ol li {
    display: inline-block;
    padding: 20px 0px;
    font-size: 16px;
    color: black;
  }
  .abt-01 .seting ol li i {
    color: black;
    margin: 0 10px;
  }

  .bg-02::before {
    position: absolute;
    content: "";
    right: 0;
    width: 80%;
    height: 100%;
    top: 0;
    z-index: -3;
  }
  .bg-02 .image {
    position: relative;
    z-index: 2;
  }
  .bg-02 .heading {
    display: block;
    width: 100%;
    text-align: center;
    margin: 1.25rem 0;
    position: relative;
    z-index: 2;
    transition: all ease-in 0.5s;
    text-align: left;
  }
  .bg-02 .heading span {
    display: block;
    margin: 0 0 0.625rem 0;
    color: #095710;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .bg-02 .heading h2 {
    font-size: 1.5625rem;
    font-weight: 8;
    display: inline-block;
    color: #0c692b;
  }
  .bg-02 .heading p {
    font-size: 0.8125rem;
    display: block;
    margin: 0.625rem 0;
    text-transform: capitalize;
    color: #666666;
  }
  .bg-02 .wrapper {
    position: relative;
    z-index: 2;
    margin: 1.25rem 0;
  }
  .bg-02 .wrapper .icon {
    display: flex;
    flex-direction: column;
    margin: 0.9375rem 0;
    position: relative;
    align-items: center;
  }
  .bg-02 .wrapper .icon i {
    display: block;
    height: 3.75rem;
    width: 3.75rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    color: hsl(145, 81%, 51%);
    margin: 0 0 0.625rem 0;
    box-shadow: 0 2px 19px 8px rgba(12, 225, 76, 0.07),
      0 1px 19px rgba(20, 255, 51, 0.1);
  }
  .bg-02 .wrapper .icon h4 {
    display: inline-block;
    font-size: 1.5625rem;
    color: #fd4a36;
    font-weight: 600;
    margin: 0 0 0.625rem 0;
  }
  .bg-02 .wrapper .icon h5 {
    font-size: 1.125rem;
    color: #0c2957;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
  }

  /****Iframe styling***/
  .iframe {
    width: 500px !important;
    height: 305px !important;
  }
  .b-example-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.1);
    border: solid rgba(0, 0, 0, 0.15);
    border-width: 1px 0;
    box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
      inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
  }

  /******drop design*****/
  .c {
    position: relative;
    display: grid;
    margin: 0;
    place-items: center;
    background: linear-gradient(to right, #d6ddcc, #71ed82, #8cf64f);
    font-family: "Montserrat", sans-serif;
    z-index: -2;
  }

  .text-c {
    display: grid;
    place-items: center;
    position: relative;
    font-family: "Poppins", sans-serif;
  }

  .drop {
    position: absolute;
    height: 200px;
    width: 200px;
    background: #54fb54;
    border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
    opacity: 0.8;
    border: 2px solid #3d93ff;
  }

  .drop::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #31fe8d;
    border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
    box-shadow: -20px 30px 16px #1b6cfb, -40px 60px 32px #1b6cfb,
      inset -6px 6px 10px #1b6cfb, inset 2px 6px 10px #1a74e5,
      inset 20px -20px 22px white, inset 40px -40px 44px #a8ceff;
  }

  .drop::after {
    content: "";
    position: absolute;
    height: 40px;
    width: 40px;
    background: #e6fdfb;
    border-radius: 44% 56% 46% 54% / 36% 50% 50% 64%;
    left: 130px;
    top: 40px;
    box-shadow: 16px 40px 0 -10px white;
    opacity: 0.8;
  }

  .drop1 {
    left: -65px;
    top: -50px;
  }

  .drop2 {
    right: -10px;
    bottom: -50px;
    z-index: -1;
    border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
  }

  .drop2::before {
    border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
  }

  /**Mission and vision***/
  .mission {
    top: 5;
  }
  .bi {
    vertical-align: -0.125em;
    fill: currentColor;
  }

  .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #fff;
    border-radius: 0.75rem;
  }

  .icon-link {
    display: inline-flex;
    align-items: center;
  }
  .icon-link > .bi {
    margin-top: 0.125rem;
    margin-left: 0.125rem;
    transition: transform 0.25s ease-in-out;
    fill: currentColor;
  }
  .icon-link:hover > .bi {
    transform: translate(0.25rem);
  }

  .icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    border-radius: 0.75rem;
  }

  /*****About us****/
  .wrapper {
    margin-top: 50px;
    display: flex;
    width: 97%;
    justify-content: space-around;
  }

  .card {
    width: 280px;
    height: 360px;
    border-radius: 15px;
    padding: 1.5rem;
    background: white;
    position: relative;
    display: flex;
    align-items: flex-end;
    transition: 0.4s ease-out;
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
  }
  .card:hover {
    transform: translateY(20px);
  }
  .card:hover:before {
    opacity: 1;
  }
  .card:hover .info {
    opacity: 1;
    transform: translateY(0px);
  }
  .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    transition: 0.5s;
    opacity: 0;
  }
  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
  }
  .card .info {
    position: relative;
    z-index: 3;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s;
  }
  .card .info h1 {
    margin: 0px;
    color: white;
  }
  .card .info p {
    letter-spacing: 1px;
    font-size: 15px;
    margin-top: 8px;
  }

  #Intiatives {
    display: flex;
    flex-direction: column;
    height: 600px;
  }
  #Intiatives h1 {
    margin: 60px;
    color: #348e38;
    font-size: 3rem;
    text-align: center;
    font-family: "Times New Roman", Times, serif;
  }
  .columns {
    display: grid;
    grid-template-columns: auto auto;
    padding-left: 160px;
  }
  .box {
    height: 300px;
    width: 500px;
    background-color: #348e38;
    border-radius: 20px;
    margin: 10px;
    padding: 20px;
    align-content: center;
  }
  .box h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .box p {
    color: white;
    font-size: 1.1rem;
  }

  .row {
    margin: 0px 5px 0px 5px;
    perspective: 600px;
    transition: transform 1s;
    transform-style: preserve-3d;
  }

  html {
    scroll-behavior: smooth;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
  font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

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

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand,
.navbar a.btn {
  height: 80px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 25px 0;
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(15, 66, 41, 0.6);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  background-color: var(--primary);
  border: 10px solid var(--primary);
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background: url(/img/Coriander.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}

/*** Top Feature ***/
@media (min-width: 991.98px) {
  .top-feature {
    position: relative;
    margin-top: -80px;
    z-index: 1;
  }
}

/*** Facts & Quote ***/
.facts,
.quote {
  background: var(--primary);
}

/*** Service ***/
.service-item {
  position: relative;
  text-align: center;
}

.service-item .service-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.service-item .service-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  transform: scale(1.2);
  transition: 0.3s;
  z-index: -1;
}

.service-item:hover .service-img img {
  transform: scale(1);
}

.service-item .service-text {
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.service-item:hover .service-text {
  background: rgba(15, 66, 41, 0.6);
}

.service-item .service-text h4,
.service-item .service-text p {
  transition: 0.3;
}

.service-item:hover .service-text h4 {
  color: #ffffff;
}

.service-item:hover .service-text p {
  color: var(--light);
}

.service-item .service-text .btn-square {
  width: 100px;
  height: 100px;
  background: transparent;
  transition: 0.5s;
}

.service-item:hover .service-text .btn-square {
  background: var(--light);
}

.service-item .service-text .btn {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  background: var(--light);
  white-space: nowrap;
  overflow: hidden;
  transition: 0.3s;
}

.service-item:hover .service-text .btn {
  width: 112px;
}

/*** Project Portfolio ***/
#portfolio-flters {
  display: inline-block;
  background: var(--light);
  padding: 10px 15px;
}

#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--dark);
  border-color: var(--dark);
}

.portfolio-inner {
  position: relative;
  overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(15, 66, 41, 0.6);
  transition: 0.5s;
}

.portfolio-inner::after {
  left: auto;
  right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
  width: 50%;
}

.portfolio-inner .portfolio-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
  transition-delay: 0.3s;
  opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
  background: var(--light);
  color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
  background: var(--primary);
  color: var(--light);
}

/*** Team ***/
.team-item {
  position: relative;
  overflow: hidden;
}

.team-item .team-text {
  position: absolute;
  width: calc(100% - 45px);
  left: -100%;
  bottom: 45px;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  left: 0;
  opacity: 1;
}

.team-item .team-social .btn {
  background: var(--light);
  color: var(--primary);
}

.team-item .team-social .btn:hover {
  background: var(--primary);
  color: var(--light);
}

.team-item .team-img .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.team-item:hover .team-img .team-social {
  transition-delay: 0.3s;
  opacity: 1;
}

/*** Testimonial ***/

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-right: 15px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--light);
  border-radius: 4px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  color: var(--light);
}

/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  color: var(--light);
  background: #072a19;
}

.copyright a {
  color: #ffffff;
}

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

#logo-img {
  position: absolute;
  top: 0;
  left: 65px;
  width: 90%;
  height: 50px;
}

/**About animations**/
.ball {
  position: absolute;
  border-radius: 100%;
  opacity: 0.7;
  top: -200;
  z-index: -2;
}

.background {
  position: absolute;
  width: 100vw;
  height: 35vh;
  z-index: -2;
}
.background span {
  width: 20vmin;
  height: 20vmin;
  border-radius: 20vmin;
  backface-visibility: hidden;
  position: absolute;
  animation-name: move;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.background span:nth-child(1) {
  color: #e45a84;
  top: 43%;
  left: 70%;
  animation-duration: 15.3s;
  animation-delay: -7.3s;
  transform-origin: 4vw -24vh;
  box-shadow: -40vmin 0 11128741525vmin currentColor;
}
.background span:nth-child(2) {
  color: #583c87;
  top: 7%;
  left: 64%;
  animation-duration: 11.1s;
  animation-delay: -14.7s;
  transform-origin: 10vw -3vh;
  box-shadow: -40vmin 0 12113294165vmin currentColor;
}
.background span:nth-child(3) {
  color: #ffacac;
  top: 82%;
  left: 28%;
  animation-duration: 13.9s;
  animation-delay: -2.3s;
  transform-origin: 25vw -19vh;
  box-shadow: -40vmin 0 8304624205vmin currentColor;
}
.background span:nth-child(4) {
  color: #583c87;
  top: 18%;
  left: 61%;
  animation-duration: 11.6s;
  animation-delay: -10.6s;
  transform-origin: -16vw -20vh;
  box-shadow: -40vmin 0 18577070915vmin currentColor;
}
.background span:nth-child(5) {
  color: #ffacac;
  top: 82%;
  left: 46%;
  animation-duration: 14.8s;
  animation-delay: -8.7s;
  transform-origin: 3vw 2vh;
  box-shadow: -40vmin 0 13927835535vmin currentColor;
}
.background span:nth-child(6) {
  color: #e45a84;
  top: 90%;
  left: 66%;
  animation-duration: 11.5s;
  animation-delay: -1.7s;
  transform-origin: -2vw -8vh;
  box-shadow: -40vmin 0 21197195025vmin currentColor;
}
.background span:nth-child(7) {
  color: #e45a84;
  top: 5%;
  left: 20%;
  animation-duration: 11.3s;
  animation-delay: -13s;
  transform-origin: 4vw -22vh;
  box-shadow: -40vmin 0 5232057435vmin currentColor;
}
.background span:nth-child(8) {
  color: #ffacac;
  top: 42%;
  left: 38%;
  animation-duration: 10.1s;
  animation-delay: -7s;
  transform-origin: -12vw 9vh;
  box-shadow: -40vmin 0 17121931465vmin currentColor;
}
.background span:nth-child(9) {
  color: #583c87;
  top: 39%;
  left: 51%;
  animation-duration: 12s;
  animation-delay: -3.9s;
  transform-origin: 5vw 22vh;
  box-shadow: -40vmin 0 11091633415vmin currentColor;
}
.background span:nth-child(10) {
  color: #ffacac;
  top: 16%;
  left: 91%;
  animation-duration: 16s;
  animation-delay: -6.2s;
  transform-origin: 7vw 22vh;
  box-shadow: -40vmin 0 12730611615vmin currentColor;
}
.background span:nth-child(11) {
  color: #e45a84;
  top: 46%;
  left: 11%;
  animation-duration: 11.1s;
  animation-delay: -15.7s;
  transform-origin: -20vw 3vh;
  box-shadow: -40vmin 0 890385925vmin currentColor;
}
.background span:nth-child(12) {
  color: #ffacac;
  top: 43%;
  left: 1%;
  animation-duration: 15s;
  animation-delay: -3.3s;
  transform-origin: 16vw 23vh;
  box-shadow: -40vmin 0 3380321185vmin currentColor;
}
.background span:nth-child(13) {
  color: #e45a84;
  top: 15%;
  left: 81%;
  animation-duration: 15.8s;
  animation-delay: -13.3s;
  transform-origin: -18vw 17vh;
  box-shadow: -40vmin 0 6661628235vmin currentColor;
}
.background span:nth-child(14) {
  color: #583c87;
  top: 68%;
  left: 89%;
  animation-duration: 11.8s;
  animation-delay: -4s;
  transform-origin: 16vw -2vh;
  box-shadow: -40vmin 0 15571965725vmin currentColor;
}
.background span:nth-child(15) {
  color: #583c87;
  top: 71%;
  left: 30%;
  animation-duration: 12.9s;
  animation-delay: -7.3s;
  transform-origin: -18vw -1vh;
  box-shadow: -40vmin 0 20497927275vmin currentColor;
}
.background span:nth-child(16) {
  color: #ffacac;
  top: 85%;
  left: 42%;
  animation-duration: 15.6s;
  animation-delay: -8.7s;
  transform-origin: 15vw -15vh;
  box-shadow: -40vmin 0 17580118485vmin currentColor;
}
.background span:nth-child(17) {
  color: #ffacac;
  top: 14%;
  left: 46%;
  animation-duration: 11.6s;
  animation-delay: -2.8s;
  transform-origin: -20vw 4vh;
  box-shadow: -40vmin 0 16879045755vmin currentColor;
}
.background span:nth-child(18) {
  color: #ffacac;
  top: 59%;
  left: 75%;
  animation-duration: 16s;
  animation-delay: -6.8s;
  transform-origin: 19vw 20vh;
  box-shadow: -40vmin 0 13197673365vmin currentColor;
}
.background span:nth-child(19) {
  color: #583c87;
  top: 77%;
  left: 17%;
  animation-duration: 11.3s;
  animation-delay: -3s;
  transform-origin: -12vw -3vh;
  box-shadow: -40vmin 0 20695218565vmin currentColor;
}
.background span:nth-child(20) {
  color: #583c87;
  top: 56%;
  left: 89%;
  animation-duration: 12.7s;
  animation-delay: -13s;
  transform-origin: -22vw 13vh;
  box-shadow: -40vmin 0 8955926755vmin currentColor;
}
@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}

/***about us small section***/
.abt-01 {
  padding: 3.125rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.abt-01::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;

  opacity: 0.6;
  left: 0;
  top: 0;
  z-index: -1;
}
.abt-01 .seting {
  padding: 20px 0px;
  text-align: center;
}
.abt-01 .seting h3 {
  font-size: 70px;
  color: black;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.3px;
  margin: 10px 0px;
}
.abt-01 .seting ol li {
  display: inline-block;
  padding: 20px 0px;
  font-size: 16px;
  color: black;
}
.abt-01 .seting ol li i {
  color: black;
  margin: 0 10px;
}

.bg-02::before {
  position: absolute;
  content: "";
  right: 0;
  width: 80%;
  height: 100%;
  top: 0;
  z-index: -3;
}
.bg-02 .image {
  position: relative;
  z-index: 2;
}
.bg-02 .heading {
  display: block;
  width: 100%;
  text-align: center;
  margin: 1.25rem 0;
  position: relative;
  z-index: 2;
  transition: all ease-in 0.5s;
  text-align: left;
}
.bg-02 .heading span {
  display: block;
  margin: 0 0 0.625rem 0;
  color: #095710;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.bg-02 .heading h2 {
  font-size: 1.5625rem;
  font-weight: 8;
  display: inline-block;
  color: #0c692b;
}
.bg-02 .heading p {
  font-size: 0.8125rem;
  display: block;
  margin: 0.625rem 0;
  text-transform: capitalize;
  color: #666666;
}
.bg-02 .wrapper {
  position: relative;
  z-index: 2;
  margin: 1.25rem 0;
}
.bg-02 .wrapper .icon {
  display: flex;
  flex-direction: column;
  margin: 0.9375rem 0;
  position: relative;
  align-items: center;
}
.bg-02 .wrapper .icon i {
  display: block;
  height: 3.75rem;
  width: 3.75rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  color: hsl(145, 81%, 51%);
  margin: 0 0 0.625rem 0;
  box-shadow: 0 2px 19px 8px rgba(12, 225, 76, 0.07),
    0 1px 19px rgba(20, 255, 51, 0.1);
}
.bg-02 .wrapper .icon h4 {
  display: inline-block;
  font-size: 1.5625rem;
  color: #fd4a36;
  font-weight: 600;
  margin: 0 0 0.625rem 0;
}
.bg-02 .wrapper .icon h5 {
  font-size: 1.125rem;
  color: #0c2957;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
}

/****Iframe styling***/
.iframe {
  width: 500px !important;
  height: 305px !important;
}
.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid rgba(0, 0, 0, 0.15);
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
    inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

/******drop design*****/
.c {
  position: relative;
  display: grid;
  margin: 0;
  place-items: center;
  background: linear-gradient(to right, #d6ddcc, #71ed82, #8cf64f);
  font-family: "Montserrat", sans-serif;
  z-index: -2;
}

.text-c {
  display: grid;
  place-items: center;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.drop {
  position: absolute;
  height: 200px;
  width: 200px;
  background: #54fb54;
  border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
  opacity: 0.8;
  border: 2px solid #3d93ff;
}

.drop::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: #31fe8d;
  border-radius: 51% 49% 48% 52% / 62% 44% 56% 38%;
  box-shadow: -20px 30px 16px #1b6cfb, -40px 60px 32px #1b6cfb,
    inset -6px 6px 10px #1b6cfb, inset 2px 6px 10px #1a74e5,
    inset 20px -20px 22px white, inset 40px -40px 44px #a8ceff;
}

.drop::after {
  content: "";
  position: absolute;
  height: 40px;
  width: 40px;
  background: #e6fdfb;
  border-radius: 44% 56% 46% 54% / 36% 50% 50% 64%;
  left: 130px;
  top: 40px;
  box-shadow: 16px 40px 0 -10px white;
  opacity: 0.8;
}

.drop1 {
  left: -65px;
  top: -50px;
}

.drop2 {
  right: -10px;
  bottom: -50px;
  z-index: -1;
  border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
}

.drop2::before {
  border-radius: 46% 50% 39% 54% / 56% 57% 50% 50%;
}

/**Mission and vision***/
.mission {
  top: 5;
}
.bi {
  vertical-align: -0.125em;
  fill: currentColor;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #fff;
  border-radius: 0.75rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
}
.icon-link > .bi {
  margin-top: 0.125rem;
  margin-left: 0.125rem;
  transition: transform 0.25s ease-in-out;
  fill: currentColor;
}
.icon-link:hover > .bi {
  transform: translate(0.25rem);
}

.icon-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  border-radius: 0.75rem;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 20px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: rgb(210, 255, 210);
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: var(--dark);
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: var(--dark);
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/***PRICING***/
#title {
  text-align: center;
  color: var(--primary);
  font-size: 30px;
  text-transform: uppercase;
  margin-top: 100px;
}
.hover-table-layout {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.listing-item {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  float: left;
  background: #fff;
  border-radius: 10px;
  z-index: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
}
.listing-item:hover,
.listing-item.active {
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
}
.listing-item .listing {
  padding: 20px;
  position: relative;
}
.listing-item .listing:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -o-calc(50% - 15px);
  left: -moz-calc(50% - 15px);
  left: -webkit-calc(50% - 15px);
  left: calc(50% - 15px);
  border-bottom: 20px solid #fff;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}
figure.image img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
figure.image {
  position: relative;
  margin: 0;
  padding: 0;
}
figure.image figcaption {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  bottom: 4px;
  background: rgba(0, 0, 0, 0.6);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
figcaption .caption {
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
figcaption h1 {
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}
figcaption p {
  color: white;
  font-size: 12px;
}
.listing h4 {
  font-size: 13px;
  text-align: center;
  padding: 5px 10px;
  font-weight: bold;
}
.listing h4:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.listing-item:hover figure.image figcaption {
  background: var(--primary);
}
@media only screen and (min-width: 540px) {
  .listing-item {
    display: block;
    width: -webkit-calc(100%/3);
    width: -moz-calc(100%/3);
    width: calc(100% / 3);
  }
}
@media only screen and (min-width: 1024px) {
  .hover-table-layout {
    padding: 30px;
  }
}

/***New Pricing Site***/
#generic_price_table {
  background-color: #f0eded;
  padding-top: 20px;
}

/*PRICE COLOR CODE START*/
#generic_price_table .generic_content {
  background-color: #fff;
}

#generic_price_table .generic_content .generic_head_price {
  background-color: #f6f6f6;
}

#generic_price_table
  .generic_content
  .generic_head_price
  .generic_head_content
  .head_bg {
  border-color: #e4e4e4 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e4e4e4;
}

#generic_price_table
  .generic_content
  .generic_head_price
  .generic_head_content
  .head
  span {
  color: #525252;
}

#generic_price_table
  .generic_content
  .generic_head_price
  .generic_price_tag
  .price
  .sign {
  color: #414141;
}

#generic_price_table
  .generic_content
  .generic_head_price
  .generic_price_tag
  .price
  .currency {
  color: #414141;
}

#generic_price_table
  .generic_content
  .generic_head_price
  .generic_price_tag
  .price
  .cent {
  color: #414141;
}

#generic_price_table
  .generic_content
  .generic_head_price
  .generic_price_tag
  .month {
  color: #414141;
}

#generic_price_table .generic_content .generic_feature_list ul li {
  color: #a7a7a7;
}

#generic_price_table .generic_content .generic_feature_list ul li span {
  color: #414141;
}
#generic_price_table .generic_content .generic_feature_list ul li:hover {
  background-color: #e4e4e4;
  border-left: 5px solid #2ecc71;
}

#generic_price_table .generic_content .generic_price_btn a {
  border: 1px solid #2ecc71;
  color: #2ecc71;
}

#generic_price_table
  .generic_content.active
  .generic_head_price
  .generic_head_content
  .head_bg,
#generic_price_table
  .generic_content:hover
  .generic_head_price
  .generic_head_content
  .head_bg {
  border-color: #2ecc71 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #2ecc71;
  color: #fff;
}

#generic_price_table
  .generic_content:hover
  .generic_head_price
  .generic_head_content
  .head
  span,
#generic_price_table
  .generic_content.active
  .generic_head_price
  .generic_head_content
  .head
  span {
  color: #fff;
}

#generic_price_table .generic_content:hover .generic_price_btn a,
#generic_price_table .generic_content.active .generic_price_btn a {
  background-color: #2ecc71;
  color: #fff;
}
#generic_price_table {
  margin: 50px 0 50px 0;
  font-family: "Raleway", sans-serif;
}
.row .table {
  padding: 28px 0;
}

/*PRICE BODY CODE START*/

#generic_price_table .generic_content {
  overflow: hidden;
  position: relative;
  text-align: center;
}

#generic_price_table .generic_content .generic_head_price {
  margin: 0 0 20px 0;
}

#generic_price_table
  .generic_content
  .generic_head_price
  .generic_head_content {
  margin: 0 0 50px 0;
}

#generic_price_table
  .generic_content
  .generic_head_price
  .generic_head_content
  .head_bg {
  border-style: solid;
  border-width: 90px 1411px 23px 399px;
  position: absolute;
}

#generic_price_table
  .generic_content
  .generic_head_price
  .generic_head_content
  .head {
  padding-top: 40px;
  position: relative;
  z-index: 1;
}

#generic_price_table
  .generic_content
  .generic_head_price
  .generic_head_content
  .head
  span {
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag {
  padding: 0 0 20px;
}

#generic_price_table
  .generic_content
  .generic_head_price
  .generic_price_tag
  .price {
  display: block;
}

#generic_price_table
  .generic_content
  .generic_head_price
  .generic_price_tag
  .price
  .sign {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 28px;
  font-weight: 400;
  vertical-align: middle;
}

#generic_price_table
  .generic_content
  .generic_head_price
  .generic_price_tag
  .price
  .currency {
  font-family: "Lato", sans-serif;
  font-size: 60px;
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 60px;
  padding: 0;
  vertical-align: middle;
}

#generic_price_table
  .generic_content
  .generic_head_price
  .generic_price_tag
  .price
  .cent {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  vertical-align: bottom;
}

#generic_price_table
  .generic_content
  .generic_head_price
  .generic_price_tag
  .month {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3px;
  vertical-align: bottom;
}

#generic_price_table .generic_content .generic_feature_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#generic_price_table .generic_content .generic_feature_list ul li {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  padding: 15px 0;
  transition: all 0.3s ease-in-out 0s;
}
#generic_price_table .generic_content .generic_feature_list ul li:hover {
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
}
#generic_price_table .generic_content .generic_feature_list ul li .fa {
  padding: 0 10px;
}
#generic_price_table .generic_content .generic_price_btn {
  margin: 20px 0 32px;
}

#generic_price_table .generic_content .generic_price_btn a {
  border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -webkit-border-radius: 50px;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  outline: medium none;
  padding: 12px 30px;
  text-decoration: none;
  text-transform: uppercase;
}

#generic_price_table .generic_content,
#generic_price_table .generic_content:hover,
#generic_price_table
  .generic_content
  .generic_head_price
  .generic_head_content
  .head_bg,
#generic_price_table
  .generic_content:hover
  .generic_head_price
  .generic_head_content
  .head_bg,
#generic_price_table
  .generic_content
  .generic_head_price
  .generic_head_content
  .head
  h2,
#generic_price_table
  .generic_content:hover
  .generic_head_price
  .generic_head_content
  .head
  h2,
#generic_price_table .generic_content .price,
#generic_price_table .generic_content:hover .price,
#generic_price_table .generic_content .generic_price_btn a,
#generic_price_table .generic_content:hover .generic_price_btn a {
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
}
@media (max-width: 320px) {
}

@media (max-width: 767px) {
  #generic_price_table .generic_content {
    margin-bottom: 75px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #generic_price_table .col-md-3 {
    float: left;
    width: 50%;
  }

  #generic_price_table .col-md-4 {
    float: left;
    width: 50%;
  }

  #generic_price_table .generic_content {
    margin-bottom: 75px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
#generic_price_table_home {
  font-family: "Raleway", sans-serif;
}

.text-center h1,
.text-center h1 a {
  color: #7885cb;
  font-size: 30px;
  font-weight: 300;
  text-decoration: none;
}
.demo-pic {
  margin: 0 auto;
}
.demo-pic:hover {
  opacity: 0.7;
}

#generic_price_table_home ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: table;
}
#generic_price_table_home li {
  float: left;
}
#generic_price_table_home li + li {
  margin-left: 10px;
  padding-bottom: 10px;
}
#generic_price_table_home li a {
  display: block;
  width: 50px;
  height: 50px;
  font-size: 0px;
}
#generic_price_table_home .blue {
  background: #3498db;
  transition: all 0.3s ease-in-out 0s;
}
#generic_price_table_home .emerald {
  background: #2ecc71;
  transition: all 0.3s ease-in-out 0s;
}
#generic_price_table_home .grey {
  background: #7f8c8d;
  transition: all 0.3s ease-in-out 0s;
}
#generic_price_table_home .midnight {
  background: #34495e;
  transition: all 0.3s ease-in-out 0s;
}
#generic_price_table_home .orange {
  background: #e67e22;
  transition: all 0.3s ease-in-out 0s;
}
#generic_price_table_home .purple {
  background: #9b59b6;
  transition: all 0.3s ease-in-out 0s;
}
#generic_price_table_home .red {
  background: #e74c3c;
  transition: all 0.3s ease-in-out 0s;
}
#generic_price_table_home .turquoise {
  background: #1abc9c;
  transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .blue:hover,
#generic_price_table_home .emerald:hover,
#generic_price_table_home .grey:hover,
#generic_price_table_home .midnight:hover,
#generic_price_table_home .orange:hover,
#generic_price_table_home .purple:hover,
#generic_price_table_home .red:hover,
#generic_price_table_home .turquoise:hover {
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  transition: all 0.3s ease-in-out 0s;
}
#generic_price_table_home .divider {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 20px;
}
#generic_price_table_home .divider span {
  width: 100%;
  display: table;
  height: 2px;
  background: #ddd;
  margin: 50px auto;
  line-height: 2px;
}
#generic_price_table_home .itemname {
  text-align: center;
  font-size: 50px;
  padding: 50px 0 20px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 40px;
  text-decoration: none;
  font-weight: 300;
}
#generic_price_table_home .itemnametext {
  text-align: center;
  font-size: 20px;
  padding-top: 5px;
  text-transform: uppercase;
  display: inline-block;
}
#generic_price_table_home .footer {
  padding: 40px 0;
}

.price-heading {
  text-align: center;
  margin-top: 25px;
}
.price-heading h1 {
  color: #666;
  margin: 0;
  padding: 0 0 50px 0;
}
.demo-button {
  background-color: #333333;
  color: #ffffff;
  display: table;
  font-size: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 50px;
  outline-color: -moz-use-text-color;
  outline-style: none;
  outline-width: medium;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
}
.bottom_btn {
  background-color: #333333;
  color: #ffffff;
  display: table;
  font-size: 28px;
  margin: 60px auto 20px;
  padding: 10px 25px;
  text-align: center;
  text-transform: uppercase;
}
.demo-button:hover {
  background-color: #666;
  color: #fff;
  text-decoration: none;
}
.bottom_btn:hover {
  background-color: #666;
  color: #fff;
  text-decoration: none;
}

/*******New accordion**********/
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
  display: flex;
  justify-content: center;

  left: 50%;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: var(--primary);
}

.why-us .accordion-list a.collapsed .icon-show {
  display: flex;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*****CTA*******/
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(#233329, #63d471),
    url("/img/project7.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
  z-index: 1;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: var(--primary);
  border: 2px solid var(--primary);
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/***********Contact Section************/

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.contact .info i {
  font-size: 20px;
  color: var(--primary);
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: var(--primary);
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--primary);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--primary);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--primary);
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type="submit"] a {
  background: var(--primary);
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--dark);
}

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

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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