@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  text-decoration: none;
}

html {
  font-size: 62.5%;
}

::-webkit-scrollbar {
  width: 0.5rem;
}

::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: #33204C;
  transition: all 0.5s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background: #9161D0;
}

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

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.green-txt {
  color: #8bbf41;
  text-align: left;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.section-title p {
  margin-bottom: 0;
}

.section-title h4 {
  margin: 0;
}

.btn-get-started {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px 12px 32px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  text-decoration: none;
  text-transform: uppercase;
  background: #33204C;
  border-radius: 50px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.btn-get-started:hover {
  background: #9161d0;
  color: #fff;
}

.btn-get-started:hover svg {
  fill: #777;
}

.btn-get-started svg {
  margin: 0 0 0 5px;
}

.btn-get-started-wb {
  background: #fff;
  color: #33204C;
}

.section-title h4 {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  margin-bottom: 20px;
}

.section-title .title-h3 {
  color: #33204C;
  text-align: justify;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

p {
  margin-bottom: 0;
  color: #000;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.view-more-link {
  color: #33204C;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: right;
  text-decoration: none;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s ease;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #33204C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #9161D0;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 80px;
  width: 100%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.logo img {
  width: 250px;
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 20px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: capitalize;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  background-color: #33204C;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #33204C;
  font-weight: 800;
}

.navbar .getstarted:hover:before,
.navbar li:hover>.getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 22px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #2a2a2a;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #5c9f24;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.white-txt {
  color: #fff;
}

.green-bg {
  background: #d2e2bb;
}

.mobile-nav-toggle {
  color: #33204C;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #5c9f24;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2a2a2a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #5c9f24;
}

.navbar-mobile>ul>li {
  white-space: nowrap;
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #5c9f24;
  padding-left: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #5c9f24;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.8);
  overflow: hidden;
  padding: 0;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.3;
}

#hero .carousel-item::before {
  content: "";
  background: linear-gradient(99deg, #FFF 24.29%, rgba(255, 255, 255, 0.00) 85.82%);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  text-align: left;
  margin: 0 auto 0 6%;
}

#hero h2 {
  color: #33204C;
  font-size: 64px;
  font-weight: 900;
  line-height: 70px;
  margin-bottom: 15px;
}

#hero p {
  animation-delay: 0.4s;
  color: #000;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: normal;
}

#hero h2 span {
  color: #33204C;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #00000055;
  overflow: hidden;
  border: 0;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #33204C;
}

@media (min-width: 1024px) {
  #hero p {
    width: 48%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

.mini-hero {
  height: 450px;
  background: #33204C;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-mini-banner {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: url("../img/HEADER\ WEBSITE\ FOURNITOUT.png");
}

.mini-hero h2 {
  color: #fff;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  z-index: 1;
}

.counts {
  background: linear-gradient(105deg, #33204C 15.35%, #9161D0 99.84%);
  width: 100%;
  height: 172px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.counts .count-box span {
  color: #FFF;
  text-align: center;
  font-size: 8em;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

.counts .count-box p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.ours_products {
  background: #f5f5f5;
  width: 100%;
  padding: 30px 0 0 0;
}

.text-section {
  margin-bottom: 20px;
}

.text {
  color: #8bbf41;
  font-size: 15px;
  font-weight: 700;
  padding: 0 30px 0 0;
  cursor: pointer;
  text-transform: uppercase;
}

.slider-content {
  padding: 20px 10px;
}

.slider-content img {
  padding: 10px;
}

.slider-content h4 {
  font-weight: 600;
  text-align: center;
}

.slider-content p {
  font-size: 12px;
  text-align: center;
}

.about {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
}

.about .content {
  padding: 30px 0;
}

.gray-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 530px;
  height: 561px;
  flex-shrink: 0;
  border-radius: 0px 0px 100px 0px;
  background: #dadada;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.green-circle {
  border-radius: 50%;
  background: #d2e2bb;
  width: 500px;
  height: 500px;
  flex-shrink: 0;
  position: absolute;
  top: 20px;
  left: 20px;
}

.img-about-pos {
  position: absolute;
  top: 10%;
  left: 20px;
  z-index: 2;
  width: 726px;
}

.img-about-pos img {
  width: 100%;
}

@media (max-width: 991px) {
  .about .image {
    text-align: center;
  }

  .about .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

.left-text-container {
  padding: 0 40px;
}

.right-img {
  height: 978px;
  background: #33204C;
  transform: rotate(-1deg);
}

.right-img .txt-bloc {
  padding: 0 20px;
  position: relative;
  top: 800px;
  width: 100%;
}

.right-img .txt-bloc h3 {
  color: #8bbf41;
  font-size: 36px;
  font-weight: 700;
}

.right-img .txt-bloc p {
  color: #fff;
  font-weight: 400;
}

.services {
  width: 100%;
  height: 100vh;
}

.img-box {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 160px;
  color: #fff;
  border-radius: 20px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  z-index: 1;
  inset: 0;
}

.img-box::before {
  content: "";
  background-image: rgba(0, 33, 57, 0.6);
  position: absolute;
  inset: 0;
}

.img-box h1 {
  position: relative;
  z-index: 1;
}

.quality-products {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  background: linear-gradient(267deg, #33204C -20.42%, rgba(25, 16, 38, 1) 30.8%, rgba(17, 11, 26, 1) 73.07%, #33204C 96.57%);
}

.mar-center {
  margin: 30px 0;
}

.quality-swipper {
  height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.quality-slide-img {
  width: 100%;
  position: relative;
}

.quality-slide-img img {
  width: 90%;
  position: relative;
  z-index: 9;
  padding: 30px;
}

.engagement-section {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 30px 0;
}

.engagement-elts {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.engagement-elts h2 {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 20px;
}

.clients {
  padding: 15px 0;
  text-align: center;
  width: 100%;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

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

#tranding {
  padding: 4rem 0;
}


#tranding .tranding-slider {
  height: 52rem;
  padding: 2rem 0;
  position: relative;
}

.trading-service {
  height: auto !important;
}

.tranding-slide {
  width: 50rem;
  height: 36rem;
  position: relative;
  filter: blur(3px);
}

@media (max-width:500px) {
  .tranding-slide {
    width: 28rem !important;
    height: 36rem !important;
  }

  .tranding-slide .tranding-slide-img img {
    width: 28rem !important;
    height: 36rem !important;
  }
}

.swiper-slide-active {
  filter: blur(0px);
}

.tranding-slide .tranding-slide-img img {
  width: 50rem;
  height: 36rem;
  border-radius: 2rem;
  object-fit: cover;
}

.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  display: none;
}

.tranding-slider-control {
  position: relative;
  bottom: 8rem;
  left: 6%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tranding-slider-control .swiper-button-next {
  left: 48% !important;
  transform: translateX(-58%) !important;
}

.tranding-slider-control .slider-arrow {
  background: #fff;
  border: 2px solid #2a2a2a;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  left: 42%;
  transform: translateX(-42%);
  filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}

.tranding-slider-control .slider-arrow ion-icon {
  font-size: 2rem;
  color: #33204C;
}

.tranding-slider-control .slider-arrow::after {
  content: '';
}

.tranding-slider-control .swiper-pagination {
  position: relative;
  width: 15rem;
  bottom: 1rem;
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet {
  filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet-active {
  background: #33204C;
}


@media (max-width:990px) {
  .tranding-slider-control .swiper-button-next {
    left: 70% !important;
    transform: translateX(-70%) !important;
  }
}

@media (max-width:450px) {
  .tranding-slider-control .swiper-button-next {
    left: 80% !important;
    transform: translateX(-80%) !important;
  }
}

@media (max-width:990px) {
  .tranding-slider-control .swiper-button-prev {
    left: 30% !important;
    transform: translateX(-30%) !important;
  }
}

@media (max-width:450px) {
  .tranding-slider-control .swiper-button-prev {
    left: 20% !important;
    transform: translateX(-20%) !important;
  }
}

.contact {
  background: #d2e2bb;
  height: 580px;
  width: 100%;
}

.call-information {
  padding: 30px 0;
  background: #fff;
}

.call-information .info-item {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 20px 0 30px 0;
  background: #fff;
}

.call-information .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #33204C;
  border-radius: 50%;
  border: 2px dotted #33204C;
}

.call-information .info-item h3 {
  font-size: 20px;
  color: #33204C;
  font-weight: 700;
  margin: 10px 0;
}

.call-information .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: center;
}

.form-txt {
  color: #000;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form-txt-h3 {
  color: #000;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.animation-container {
  width: 40rem;
  position: relative;
  top: -60px;
}

.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;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 15px 15px;
  outline: none;
  border: none;
  border-radius: 4px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #f5f5f5;
}

.contact .php-email-form textarea {
  height: 238px;
}


@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

@media (min-width: 768px) {
  .contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }

  .contact .contact-address,
  .contact .contact-phone,
  .contact .contact-email {
    padding: 20px 0;
  }
}

.projects .portfolio-flters {
  padding: 0;
  margin: 0 auto 40px auto;
  list-style: none;
  text-align: center;
}

.projects .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
  color: #fff;
  background-color: #5c9f24;
  font-weight: 500;
  border-radius: 20px;
  padding: 5px 15px;
}

.projects .portfolio-flters li:first-child {
  margin-left: 0;
}

.projects .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .projects .portfolio-flters li {
    font-size: 20px;
    margin: 10px;
}
.counts .count-box p {
  text-align: center;
}
}

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}

.projects .portfolio-content img {
  transition: 0.3s;
}

.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  background-color: #5c9f24;
  border-radius: 20px;
}

.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  color: #5c9f24;
}

.projects .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.projects .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.projects .portfolio-content:hover img {
  transform: scale(1.1);
}

.project-details .portfolio-details-slider img {
  width: 100%;
  height: 100vh;
  border-radius: 20px;
}

.portfolio-description-1 {
  padding: 0 30px 0 0;
}

.portfolio-description-2 {
  padding: 0 0 0 30px;
}

.donwload-btn-content {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.p-section {
  text-align: center;
  margin-bottom: 90px;
}

.ul-service {
  font-size: 16px;
  margin: 0;
}

.donwload-btn-content P {
  line-height: 18px;
  margin-right: 10px;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5c9f24;
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {

  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5c9f24;
  left: 0;
  bottom: 0;
}

.project-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #838893;
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: #5c9f24;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: #ffc019;
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.project-details .portfolio-description p {
  padding: 0;
}

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: #f5f6f7;
  height: 100%;
  margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

.presentation-work-banner {
  width: 100%;
  height: 100%;
  background: #fff;
}

.block-lotties-txt {
  width: 100%;
  height: 100vh;
}

.lottie-block {
  width: 40rem;
}
.lottie-block-echec{
  width: 30rem;
}

.block-lotties-txt h1 {
  font-size: 3rem;
  color: #33204C;
  font-style: normal;
  text-align: center;
  font-weight: 800;
}

.block-lotties-txt p {
  font-size: 1.6em;
  font-weight: 400;
  text-align: center;
}

@media only screen and (max-width: 769px) {

  .block-lotties-txt h1 {
      font-size: 1em;
      line-height: 1.5rem;
      margin-bottom: 0;
  }

  .block-lotties-txt p {
      font-size: 0.7em;
  }

}

@media only screen and (max-width: 426px) {
  .block-lotties-txt h1 {
      font-size: 0.8em;
      line-height: 1rem;
  }

  .block-lotties-txt p {
      width: 80%;
  }
}

#footer {
  background: linear-gradient(360deg, #33204C 40.35%, #0a0018 99.84%), url(../img/footer.webp);
  padding: 0 0 30px 0;
  width: 100%;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  border-bottom: 2px solid #9161D0;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info p {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #33204C;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #5c9f24;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #8ed851;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #81d33d;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #5c9f24;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #6ab82a;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media only screen and (max-width: 1201px) {
  .logo img {
    width: 200px;
  }

  .img-about-pos {
    width: 680px;
  }

  .img-box {
    height: 180px;
  }

  .services {
    margin-bottom: 40px;
  }

  .quality-products {
    height: 70vh;
    padding: 24px 0;
  }

  .clients {
    padding: 31px 0;
  }

  .clients img {
    max-width: 55%;
  }

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

@media only screen and (max-width: 1025px) {
  .about {
    margin: 0 0 50px 0;
  }

  .gray-box {
    height: 590px;
    width: 410px;
  }

  .green-circle {
    width: 400px;
    height: 400px;
  }

  .img-about-pos {
    width: 500px;
  }

  .next-about-content {
    margin-top: 40px;
  }

  .box-text {
    margin-bottom: 20px;
  }

  .section-title {
    padding-bottom: 12px;
  }

  .pos-right {
    width: 50%;
    padding: 0 0 0 1rem !important;
  }

  .green-txt {
    line-height: 47px;
  }

  .services {
    margin-bottom: 85px;
  }

  .quality-slide-img img {
    width: 100%;
    padding: 0;
  }

  .quality-products {
    margin: 0 0 50px 0;
  }

  .tranding-slider-control {
    bottom: 6rem;
  }

  .contact .php-email-form input,
  .contact .php-email-form textarea {
    padding: 20px 20px;
  }

  .submit {
    padding: 15px 32px 15px 32px;
  }

  .portfolio-description .section-title .title-h3 {
    text-align: left;
  }

  .portfolio-description .section-title .title-h3 br {
    display: none;
  }

}

@media only screen and (max-width: 992px) {
  .navbar .btn-get-started {
    color: #fff;
  }
  .section-title .title-h3 {
    text-align: left;
}
  #hero .carousel-item::before {
    content: "";
    background: linear-gradient(180deg, #fff 34.29%, rgba(255, 255, 255, 0.2) 85.82%);
}

  .carousel-indicators {
    margin-bottom: 3rem;
  }

  #hero .carousel-indicators li {
    width: 20px;
    height: 20px;
    background: #d1d1d1;
  }

  #hero p {
    width: 70%;
  }

  .text {
    font-size: 12px;
    padding: 0 13px 0 0;
  }

  .services {
    height: 100%;
  }

  .gray-box {
    height: 100vh;
    width: 100%;
    border-radius: 0;
  }

  .green-circle {
    width: 620px;
    height: 620px;
    top: 20px;
    left: 200px;
  }

  .img-about-pos {
    top: 0;
    left: 70px;
    width: 800PX;
  }

  .right-img .txt-bloc {
    top: 730px;
  }

  .pos-right {
    width: 100%;
    padding: 0 0 0 0rem !important;
  }

  section {
    padding: 40px 0;
  }

  .img-box {
    margin: 40px 0 0 0;
  }

  .quality-products {
    height: 20%;
  }

  .container {
    max-width: 900px;
  }

  .contact {
    height: 100%;
  }

  .animation-container {
    width: 45rem;
    top: 0;
  }

  .footer-newsletter {
    display: none;
  }

  .project-details .portfolio-details-slider img {
    height: 118vh;
    object-fit: cover;
  }
}


@media only screen and (max-width: 769px) {

  .navbar a,
  .navbar a:focus {
    justify-content: flex-start;
  }

  .mobile-nav-toggle {
    font-size: 35px;
  }

  /*#hero {*/
  /*  margin: 40px 0 0 0;*/
  /*}*/

  #hero h2 {
    font-size: 40px;
    line-height: 45px;
  }

  .carousel-indicators {
    margin-bottom: 3rem;
  }

  #hero .carousel-indicators li {
    width: 15px;
    height: 15px;
  }

  .counts {
    height: 100%;
  }

  .counts .count-box {
    margin-bottom: 40px;
  }

  .text-section {
    display: none !important;
  }

  .about {
    margin: 0;
    padding: 0;
  }

  .right-img {
    height: 493px;
    width: 100%;
  }

  .right-img .txt-bloc {
    top: 300px;
  }

  .pg-abt {
    margin-bottom: 40px;
  }

  .about .content {
    padding: 30px 0 0 0;
    margin-top: 50px;
  }

  .gray-box {
    height: 500px;
    width: 60%;
    border-radius: 0px 0px 200px 0px;
  }

  .green-circle {
    top: 20px;
    left: 50px;
    width: 450px;
    height: 450px;
  }

  .img-about-pos {
    top: 0;
    left: 40px;
    width: 90%;
  }

  .left-text-container {
    padding: 0;
  }

  .pos-right {
    position: relative;
    top: -100px;
  }

  .container {
    max-width: 700px;
  }

  .services {
    height: 100%;
    padding: 0 0 40px 0;
  }

  .quality-products {
    height: 100vh;
  }

  .green-txt {
    font-size: 30px;
    line-height: 35px;
  }

  .engagement-elts h2 {
    font-size: 14px;
    margin: 10px;
  }

  .engagement-elts img {
    width: 100px;
  }

  .tranding-slider-control {
    left: 14%;
  }

  .tranding-slider-control .swiper-button-next {
    left: 44% !important;
  }

  #footer .footer-top .social-links a {
    font-size: 15px;
    width: 30px;
    height: 30px;
  }

  .change-sens {
    flex-direction: column-reverse;
  }

  .pos-top {
    margin: 0 0 54px 0;
  }

  .portfolio-description {
    padding: 0;
  }

  .mar-btm {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 650px) {
  .container {
    max-width: 540px;
  }

  .img-about-pos {
    left: 0;
    width: 600px;
  }

  .quality-products {
    height: 100%;
  }

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

  .green-txt {
    text-align: center;
    line-height: 50px;
    font-size: 48px;
    margin-bottom: 15px;
  }

  .next-about-content {
    margin-top: 20px;
  }

  .mar-center p {
    text-align: center;
    margin-bottom: 15px;
  }

  .engagement-elts {
    margin-top: 20PX;
  }

  .footer-newsletter {
    display: block;
  }

  .p-section {
    margin-bottom: 39px;
  }

  .portfolio-description .section-title .title-h3 {
    text-align: center;
  }

  #tranding .container {
    max-width: 656px;
  }

  .green-bg .section-title {
    padding: 30px 40px;
    margin: 0 0 30px 0 !important;
  }

  .section-title .title-h3 {
    text-align: center;
    line-height: 48px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 500px) {
  .gray-box {
    height: 394px;
    width: 80%;
    border-radius: 0px 0px 100px 0px;
  }

  .about .content {
    padding: 0;
    margin-top: 0;
  }

  .ours_products {
    padding: 10px 0 0 0;
  }

  .portfolio-info h4 {
    font-size: 14px;
    line-height: 15px;
  }

  .portfolio-info p {
    font-size: 10px;
    line-height: 12px;
  }

  .slider-content img {
    padding: 5px;
  }

  .img-about-pos {
    width: 450px;
  }

  .green-circle {
    width: 350px;
    height: 350px;
  }

  .container {
    max-width: 435px;
  }

  #footer .footer-top .footer-info p {
    padding: 0;
  }

  .section-title p {
    margin-bottom: 0;
    text-align: justify !important;
  }
}

@media only screen and (max-width: 428px) {
  .img-about-pos {
    width: 370px;
  }

  .right-img .txt-bloc h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .right-img .txt-bloc p {
    font-size: 14px;
  }

  .container {
    max-width: 345px;
  }

  /*#hero {*/
  /*  margin: 75px 0 0 0;*/
  /*  height: 120vh;*/
  /*}*/

  /*#hero .carousel-item {*/
  /*  height: 120vh;*/
  /*}*/

  #hero .carousel-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin:0;
  }

  #hero h2 {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }

  #hero p {
    width: 100%;
    text-align: center;
    padding: 0 20px;
  }

  .slide-btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .section-title .title-h3 {
    font-size: 30px;
    text-align: left;
    line-height: 33px;
  }

  .section-title {
    padding-bottom: 10px;
  }

  .green-txt {
    line-height: 45px;
    font-size: 35px;
  }

  .gray-box {
    height: 400px;
    width: 70%;
  }

  .green-circle {
    left: 0;
    width: 325px;
    height: 325px;
  }

  .clients img {
    max-width: 80%;
  }

  .animation-container {
    width: 100%;
  }

  .form-txt {
    font-size: 32px;
  }

  .form-txt-h3 {
    font-size: 28px;
    line-height: 33px;
  }

  ::-webkit-scrollbar {
    width: 0;
  }

  .project-details .portfolio-details-slider img {
    height: 70vh;
    object-fit: cover;
  }

  .project-details .portfolio-details-slider img {
    height: 70vh;
    object-fit: cover;
  }

  .donwload-btn-content .btn-get-started {
    margin: 0;
    font-size: 14px;
    padding: 12px 28px 12px 28px;
  }

}

@media only screen and (max-width: 376px) {
  #hero h2 {
    font-size: 28px;
  }

  .about .content {
    margin-top: 0;
  }

  .next-about-content {
    margin-top: 0px;
  }

  #tranding {
    padding: 2rem 0;
  }

  .engagement-elts img {
    width: 60px;
  }

  .container {
    max-width: 320px;
  }

  .section-title .title-h3 {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .img-box {
    margin: 20px 0 0 0;
  }

  .green-txt {
    line-height: 38px;
    font-size: 32px;
  }

  .form-txt {
    font-size: 25px;
  }

  .form-txt-h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .contact .php-email-form input,
  .contact .php-email-form textarea {
    padding: 15px 15px;
  }

  .btn-get-started {
    padding: 12px 32px 12px 32px;
  }

  .green-bg .section-title {
    padding: 11px 22px;
  }

  .donwload-btn-content P {
    font-size: 14px;
  }

  .donwload-btn-content .btn-get-started {
    font-size: 10px;
    text-align: center;
    line-height: 14px;
    font-weight: 500;
  }
}

@media only screen and (max-width: 321px) {
  .mini-hero {
    height: 100VH;
  }

  .container {
    max-width: 270px;
  }

  .left-about-content {
    height: 400px !important;
  }

  .gray-box {
    height: 280px;
    width: 80%;
  }

  .green-circle {
    width: 250px;
    height: 250px;
  }

  .img-about-pos {
    width: 300px;
  }

  .right-img .txt-bloc {
    top: 240px;
  }

  .green-txt {
    line-height: 29px;
    font-size: 26px;
  }
}