@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #222;
  transition: 0.3s all ease-in-out;
}

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

:focus, button:focus {
  outline: none;
  box-shadow: none !important;
}

::-moz-selection {
  color: #fff;
  background: #7FBF28;
}

::selection {
  color: #fff;
  background: #7FBF28;
}

body {
  background: #F6F6F6;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 26px;
  text-align: justify;
}

.header-sec {
  width: 100%;
  position: relative;
}
.header-sec .navbar-brand img {
  width: 230px;
}
.header-sec .header {
  width: 100%;
  position: absolute;
  background-color: #000;
  z-index: 1;
  top: 1;
}
.header-sec .header .nav-white {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: inherit;
  align-items: center;
  border-radius: 200px;
}
.header-sec .header .nav-link {
  padding: 8px 13px;
  transition: 0.3s all ease-in-out;
  font-size: 20px;
  font-weight: 600;
  color: #FFF;
}
.header-sec .header .nav-link:hover {
  color: #7FBF28;
  font-weight: 600;
}
.header-sec .header .active {
  color: #7FBF28;
  font-weight: 600;
}
.header-sec .header .mobile {
  display: none;
}
.header-sec .header .phone-sec a {
  display: flex;
  align-items: center;
}
.header-sec .header .phone-sec a .icon {
  width: 55px;
  height: 55px;
  background: #8dc63f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}
.header-sec .header .phone-sec a .number h6 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #FFF;
}
.header-sec .header .phone-sec a .number h5 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #FFF;
}

.banner-section {
  width: 100%;
  height: 640px;
  position: relative;
  overflow: hidden;
}
.banner-section video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-section .banner-title {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-section .banner-title .container {
  text-align: center;
}
.banner-section .banner-title .container h3 {
  font-size: 73px;
  font-weight: 700;
  text-align: center;
  color: #FFF;
}
.banner-section .banner-title .container h2 {
  font-size: 33px;
  font-weight: 700;
  text-align: center;
  color: #FFF;
}
.banner-section .banner-title .container p {
  font-size: 20px;
  color: #FFF;
}
.banner-section .banner-title .container a {
  padding: 15px 30px;
  border-radius: 50px;
  background-color: #7FBF28;
  color: #FFF;
  display: inline-block;
  transition: 0.3s all ease-in-out;
}

.main-slider {
  overflow: hidden;
  position: relative;
}

.more {
  width: 100%;
  display: flex;
  padding-top: 25px;
  opacity: 0;
  transform: translateY(120px);
  transition-delay: 0;
  transition: transform 2000ms ease, opacity 2000ms ease;
  z-index: 3;
}
.more .more-btn {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.more .more-btn a {
  padding: 15px 20px;
  border-radius: 25px;
  background-color: #7FBF28;
  color: #FFF;
  display: inline-block;
  background-size: 300%;
  background-position: left;
  transition: 0.3s all ease-in-out;
}
.more .more-btn a:hover {
  background-color: #5a8f12;
}
.more .video {
  display: flex;
  align-items: center;
  color: #FFF;
  cursor: pointer;
}
.more .video .play {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #7FBF28;
  transition: 0.3s all ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border: 3px solid #FFF;
}
.more .video:hover .play {
  background-color: #5a8f12;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: #151414;
}
.main-slider .swiper-slide::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  z-index: 2;
  opacity: 0.2;
}

.main-slider .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform-origin: top center;
  transform: scale(1);
  transition: transform 7000ms ease;
  z-index: -1;
}

.main-slider .image-layer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #000;
  opacity: 0.4;
}

.main-slider .swiper-slide-inner {
  position: relative;
  display: block;
  text-align: center;
  padding-top: 210px;
  padding-bottom: 165px;
  z-index: 4;
}

.main-slider h3 {
  font-size: 48px;
  color: #FFF;
  font-weight: 700;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-90px);
  transition-delay: 1000ms;
  transition: transform 2000ms ease, opacity 2000ms ease;
  z-index: 2;
  text-align: left;
}

.main-slider h2 {
  position: relative;
  margin: 0;
  color: #FFF;
  font-size: 33px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-90px);
  transition-delay: 1000ms;
  transition: transform 2000ms ease, opacity 2000ms ease;
  z-index: 2;
  text-align: left;
}
.main-slider h2 span {
  color: #FFF;
}

.main-slider p {
  position: relative;
  margin: 0;
  text-align: left;
  color: #FFF;
  opacity: 0;
  transform: translateY(120px);
  transition-delay: 0;
  transition: transform 2000ms ease, opacity 2000ms ease;
  z-index: 3;
}
.main-slider p span {
  width: 10px;
  height: 10px;
  background: #FFF;
  border-radius: 50%;
  display: inline-block;
  margin: 0 12px;
}

.main-slider .swiper-slide-active .image-layer {
  transform: scale(1.15);
}

.main-slider .swiper-slide-active h2, .swiper-slide-active h3,
.main-slider .swiper-slide-active p, .main-slider .swiper-slide-active .more {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.main-slider-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column wrap;
  align-content: flex-end;
  padding-right: 50px;
}

.main-slider-button-next {
  position: relative;
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  cursor: pointer;
  z-index: 9;
  font-size: 25px;
  border: 2px solid #fff;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.main-slider-button-next .icon-right-arrow {
  width: 65px;
  height: 65px;
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center center;
}

.main-slider-button-prev {
  position: relative;
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 50%;
  text-align: center;
  color: white;
  cursor: pointer;
  z-index: 9;
  font-size: 25px;
  border: 2px solid #fff;
  background-color: #FFF;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.main-slider-button-prev .icon-left-arrow {
  width: 65px;
  height: 65px;
  background-image: url(../images/arrow-left.svg);
  background-repeat: no-repeat;
  background-position: center center;
}

.main-slider-button-prev,
.main-slider-button-next:focus {
  outline: none;
}

.main-slider-button-prev:hover,
.main-slider-button-next:hover {
  opacity: 1;
}

.about-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 60px 0px 80px 0px;
}
.about-section::before {
  content: "VTECH TRADING COMPANY";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  font-size: 113px;
  color: #ededed;
  width: 100%;
  text-align: center;
  height: 60px;
  font-weight: 700;
}
.about-section .about-image {
  float: left;
  position: relative;
  margin-right: 90px;
}
.about-section .about-image::after {
  width: 22px;
  height: 17px;
  content: "";
  position: absolute;
  right: -40px;
  top: 80px;
  background: url(../images/dots.svg) no-repeat;
}
.about-section .about-image img {
  width: 100%;
  border-radius: 20px;
}
.about-section .about-image .about-image2 {
  width: 120px;
  position: absolute;
  right: -50px;
  bottom: 20px;
  z-index: 99;
}
.about-section .about-image .about-image2 img {
  width: 100%;
  border-radius: 10px;
}
.about-section .about-video {
  width: 100%;
  height: 510px;
  padding-right: 44px;
}
.about-section .about-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.about-section h3 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-left: 25px;
  margin: 0px;
}
.about-section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 3px;
  background-color: #7FBF28;
}
.about-section h4 {
  font-size: 34px;
  font-weight: 700;
  margin: 0px;
  text-align: left;
}
.about-section a {
  padding: 15px 30px;
  border-radius: 50px;
  background-color: #7FBF28;
  color: #FFF;
  display: inline-block;
  transition: 0.3s all ease-in-out;
}
.about-section a:hover {
  background-color: #5a8f12;
}
.about-section ul li {
  position: relative;
  background-image: url(../images/arrow-right-circle.svg);
  background-repeat: no-repeat;
  padding-left: 20px;
  background-position: 0px 2px;
  margin-bottom: 5px;
}

.why-choose {
  width: 100%;
  padding: 60px 0px;
  position: relative;
  background-image: url(../images/why-choose.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
.why-choose::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.6;
  z-index: 1;
}
.why-choose .why-choose-img {
  width: 100%;
  position: relative;
  z-index: 2;
}
.why-choose .why-choose-img img {
  width: 100%;
}
.why-choose .content {
  width: 100%;
  position: relative;
  z-index: 2;
  color: #FFF;
  padding-right: 80px;
}
.why-choose .content h3 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-left: 25px;
  color: #FFF;
  margin: 0px;
}
.why-choose .content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 3px;
  background-color: #FFF;
}
.why-choose .content h4 {
  font-size: 34px;
  font-weight: 700;
  color: #FFF;
  margin: 0px;
}
.why-choose .content p {
  color: #FFF;
}
.why-choose .content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.why-choose .content ul li {
  width: 100%;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}
.why-choose .content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/right-circle.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
}

.hm-products {
  width: 100%;
  padding: 60px 0px;
  background-color: #FFF;
}
.hm-products h3 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-left: 25px;
  color: #000;
  margin: 0px;
}
.hm-products h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 3px;
  background-color: #7FBF28;
}
.hm-products h4 {
  font-size: 34px;
  font-weight: 700;
  color: #000;
  margin: 0px;
}
.hm-products .item {
  padding: 15px 10px;
}
.hm-products .owl-dots {
  display: none;
}
.hm-products .owl-prev {
  width: 46px;
  height: 46px;
  background: url(../images/previous-arrow.svg) no-repeat center !important;
  margin-right: 0px;
  transition: 0.2s all ease-in-out;
}
.hm-products .owl-prev:hover {
  background: url(../images/previous-arrow-hover.svg) no-repeat center !important;
}
.hm-products .owl-next {
  width: 46px;
  height: 46px;
  background: url(../images/next-arrow.svg) no-repeat center !important;
  margin-left: 0px;
  transition: 0.2s all ease-in-out;
}
.hm-products .owl-next:hover {
  background: url(../images/next-arrow-hover.svg) no-repeat center !important;
}
.hm-products .owl-carousel .owl-nav {
  display: block !important;
  top: -52px;
  position: absolute;
  right: 7px;
}

.p-box {
  width: 100%;
  box-shadow: 2px 3px 11px #d3d3d3;
  border-radius: 10px;
}
.p-box .p-img {
  width: 100%;
  overflow: hidden;
}
.p-box .p-img img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transform: scale(1);
  transition: all 500ms ease;
}
.p-box .p-name {
  width: 100%;
  padding: 20px 20px;
  text-align: center;
}
.p-box .p-name h4 {
  font-weight: 600;
  font-size: 18px;
}
.p-box:hover .p-img img {
  transform: scale(1.05);
}

.get-in-touch {
  width: 100%;
  padding: 50px 0px;
  background: #7FBF28;
}
.get-in-touch .touch-sec {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.get-in-touch .touch-sec .text h5 {
  font-size: 30px;
  font-weight: 700;
  color: #FFF;
  margin: 0;
}
.get-in-touch .touch-sec .text p {
  margin: 0;
  color: #FFF;
}
.get-in-touch .touch-sec .btn-area a {
  padding: 15px 30px;
  border-radius: 50px;
  background: #000;
  color: #FFF;
  display: inline-block;
  transition: 0.3s all ease-in-out;
}
.get-in-touch .touch-sec .btn-area a:hover {
  background: #3d3d3d;
}

.testimonials-sec {
  width: 100%;
  background: #FFF;
  padding: 60px 0px;
}
.testimonials-sec h3 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-left: 25px;
  color: #000;
  margin: 0px;
}
.testimonials-sec h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 3px;
  background-color: #7FBF28;
}
.testimonials-sec h4 {
  font-size: 34px;
  font-weight: 700;
  color: #000;
  margin: 0px;
  text-align: left;
}
.testimonials-sec .owl-dots {
  display: none;
}
.testimonials-sec .owl-prev {
  width: 46px;
  height: 46px;
  background: url(../images/previous-arrow.svg) no-repeat center !important;
  margin-right: 0px;
  transition: 0.2s all ease-in-out;
}
.testimonials-sec .owl-prev:hover {
  background: url(../images/previous-arrow-hover.svg) no-repeat center !important;
}
.testimonials-sec .owl-next {
  width: 46px;
  height: 46px;
  background: url(../images/next-arrow.svg) no-repeat center !important;
  margin-left: 0px;
  transition: 0.2s all ease-in-out;
}
.testimonials-sec .owl-next:hover {
  background: url(../images/next-arrow-hover.svg) no-repeat center !important;
}
.testimonials-sec .owl-carousel .owl-nav {
  display: block !important;
  top: -52px;
  position: absolute;
  right: 7px;
}
.testimonials-sec .item {
  padding: 15px 10px;
}
.testimonials-sec .box-sec {
  width: 100%;
}
.testimonials-sec .box-sec .text-box {
  width: 100%;
  min-height: 180px;
  background-color: #FFF;
  border-radius: 10px;
  padding: 20px 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}
.testimonials-sec .box-sec .text-box::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  left: 15px;
  bottom: -16px;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 16px solid #FFF;
}
.testimonials-sec .box-sec .text-box .quote-icon {
  width: 100%;
  margin-bottom: 10px;
}
.testimonials-sec .pic-details {
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 25px;
}
.testimonials-sec .pic-details .pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #7FBF28;
  overflow: hidden;
}
.testimonials-sec .pic-details .pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #FFF;
  border-radius: 50%;
}
.testimonials-sec .pic-details .text {
  padding-left: 10px;
}
.testimonials-sec .pic-details .text h6 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}
.testimonials-sec .pic-details .text p {
  margin: 0;
}
.testimonials-sec .pic-details .text p span {
  color: #7FBF28;
}

.inner-banner {
  width: 100%;
  padding: 180px 0px 120px 0px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.inner-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  left: 0;
  top: 0;
}
.inner-banner h1 {
  font-size: 35px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  color: #FFF;
}
.inner-banner nav {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.inner-banner nav .breadcrumb-item {
  color: #81F134;
}
.inner-banner nav .breadcrumb-item::before {
  color: #FFF;
}
.inner-banner nav .breadcrumb-item a {
  color: #FFF;
}

.mission-sec {
  width: 100%;
  background-image: url(../images/bg5.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 100px 0px 60px 0px;
}
.mission-sec::before {
  content: "";
  position: absolute;
  background-color: #000;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
}
.mission-sec .container {
  position: relative;
  z-index: 1;
}
.mission-sec .box-sec {
  width: 100%;
  background-color: #FFF;
  border-radius: 20px;
  padding: 20px;
}
.mission-sec .box-sec .icon {
  width: 100px;
  height: 100px;
  background-color: #FFF;
  border-radius: 50%;
  border: 4px solid #7FBF28;
  margin: auto;
  position: relative;
  margin-top: -70px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-sec .box-sec h4 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}

.bod-section {
  width: 100%;
  padding: 60px 0px;
}
.bod-section h3 {
  font-size: 34px;
  font-weight: 700;
  color: #000;
  margin: 0px;
  text-align: center;
  margin-bottom: 20px;
}
.bod-section .item {
  padding: 15px 10px;
}
.bod-section .owl-nav, .bod-section .owl-dots {
  display: none;
}
.bod-section .director-sec {
  width: 100%;
  display: flex;
  justify-content: center;
}
.bod-section .box-sec {
  width: 290px;
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.bod-section .box-sec .directors-pic {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.bod-section .box-sec .directors-pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bod-section .box-sec .designation {
  width: 100%;
  padding: 20px;
  text-align: center;
}
.bod-section .box-sec .designation h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}
.bod-section .box-sec .designation p {
  color: #7FBF28;
  margin: 0;
}
.bod-section .box-sec .link {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.bod-section .box-sec .link::before {
  background-color: #FFF;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
  border-radius: 50%;
}
.bod-section .box-sec .link a {
  width: 40px;
  height: 40px;
  background-color: #7FBF28;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  text-align: center;
  line-height: 37px;
  cursor: pointer;
}
.bod-section .box-sec:hover .link {
  top: 198px;
  opacity: 1;
}

.bod-popup {
  padding: 30px;
}
.bod-popup .btn-close {
  width: 18px;
  height: 18px;
  right: 10px;
  top: 10px;
  position: absolute;
  background-image: url(../images/close.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.bod-popup .pic-outer {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
}
.bod-popup .pic-outer .pic {
  width: 230px;
  position: absolute;
  bottom: 0;
  background: #FFF;
  padding: 12px;
  border-radius: 10px;
}
.bod-popup .pic-outer .pic img {
  width: 100%;
  border-radius: 10px;
}
.bod-popup h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}
.bod-popup h6 {
  text-align: center;
  color: #7FBF28;
  margin: 0;
}

.products-list {
  width: 100%;
}
.products-list .p-details {
  width: 100%;
}
.products-list .p-details .pimg {
  width: 100%;
  height: 490px;
  overflow: hidden;
}
.products-list .p-details .pimg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products-list .p-details h5 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}
.products-list .p-details ul li {
  position: relative;
  background-image: url(../images/right-circle2.svg);
  background-repeat: no-repeat;
  background-position: 0px 3px;
  padding-left: 22px;
  margin-bottom: 10px;
}
.products-list .p-nav {
  width: 100%;
}
.products-list .p-nav ul li {
  margin-bottom: 5px;
}
.products-list .p-nav ul li a {
  width: 100%;
  background-color: #D3D5D3;
  padding: 20px;
  display: block;
  font-weight: 700;
  color: #000;
  transition: 0.3s all ease-in-out;
}
.products-list .p-nav ul li a:hover {
  background-color: #7FBF28;
  color: #FFF;
}
.products-list .p-nav ul li a.active {
  background-color: #7FBF28;
  color: #FFF;
}
.products-list .help-sec {
  width: 100%;
  background-image: url(../images/help-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px;
  position: relative;
  text-align: center;
  color: #FFF;
}
.products-list .help-sec::before {
  content: "";
  width: 133px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/shape-1.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.products-list .help-sec::after {
  content: "";
  width: 83px;
  height: 63px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../images/shape-2.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.products-list .help-sec p {
  color: #FFF;
  margin: 0;
}
.products-list .help-sec h5 {
  font-size: 34px;
  font-weight: 500;
  margin: 0;
}
.products-list .help-sec h6 {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
}
.products-list .help-sec a {
  padding: 10px 20px;
  background-color: #FFF;
  display: inline-block;
  border-radius: 25px;
  color: #000;
  margin-top: 10px;
  transition: 0.3s all ease-in-out;
}
.products-list .help-sec a:hover {
  background-color: #7FBF28;
  color: #FFF;
}

.p-60 {
  padding: 60px 0px;
}

.contact-sec {
  width: 100%;
}
.contact-sec .main-box {
  width: 100%;
  display: flex;
}
.contact-sec .main-box .box {
  width: 100%;
  display: flex;
}
.contact-sec .main-box .box .map {
  width: 100%;
}
.contact-sec .main-box .box .map iframe {
  width: 100%;
  height: 570px;
}
.contact-sec .main-box .box .form-area {
  width: 100%;
  height: 100%;
  background-color: #7FBF28;
  padding: 30px;
}
.contact-sec .main-box .box .form-area h5 {
  color: #FFF;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  padding-top: 9px;
  margin-bottom: 15px;
}
.contact-sec .main-box .box .form-area h5::before {
  content: "";
  position: absolute;
  width: 45px;
  height: 5px;
  background-color: #EFFF0E;
  left: 0;
  top: 0;
}
.contact-sec .main-box .box .form-area input {
  width: 100%;
  height: 50px;
  background: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #FFF;
  padding-left: 0px;
  color: #FFF;
  margin-bottom: 10px;
  transition: 0.3s all ease-in-out;
}
.contact-sec .main-box .box .form-area input::-moz-placeholder {
  color: #FFF;
}
.contact-sec .main-box .box .form-area input::placeholder {
  color: #FFF;
}
.contact-sec .main-box .box .form-area input:focus {
  border-color: #EFFF0E;
}
.contact-sec .main-box .box .form-area textarea {
  width: 100%;
  background: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #FFF;
  padding-left: 0px;
  color: #FFF;
  margin-bottom: 20px;
  transition: 0.3s all ease-in-out;
}
.contact-sec .main-box .box .form-area textarea::-moz-placeholder {
  color: #FFF;
}
.contact-sec .main-box .box .form-area textarea::placeholder {
  color: #FFF;
}
.contact-sec .main-box .box .form-area textarea:focus {
  border-color: #EFFF0E;
}
.contact-sec .main-box .box .form-area .submit {
  background: #FFF;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s all ease-in-out;
}
.contact-sec .main-box .box .form-area .submit:hover {
  background-color: #000;
  color: #FFF;
}
.contact-sec .main-box .box .c-image {
  width: 100%;
  height: 100%;
}
.contact-sec .main-box .box .c-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-sec .contact-box-sec .box {
  width: 100%;
  height: 100%;
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0px 3px 15px #e5e5e5;
  padding: 20px;
  text-align: center;
}
.contact-sec .contact-box-sec .box img {
  margin-bottom: 10px;
}
.contact-sec .contact-box-sec .box h6 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}
.contact-sec .contact-box-sec .box p {
  margin: 0;
}
.contact-sec .contact-box-sec .box p a {
  color: #000;
  transition: 0.3s all ease-in-out;
}
.contact-sec .contact-box-sec .box p a:hover {
  color: #7FBF28;
}

.certified-sec {
  width: 100%;
  padding: 60px 0px;
  background-color: #f1f7e8;
}
.certified-sec h5 {
  font-size: 34px;
  font-weight: 600;
  text-align: left;
}
.certified-sec h6 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: left;
}
.certified-sec ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.certified-sec ul li {
  width: 31.3%;
  background-color: #FFF;
  padding: 15px;
  border-radius: 6px;
  margin-right: 10px;
  margin-bottom: 10px;
  box-shadow: 2px 3px 11px #d3d3d3;
  font-weight: 600;
}

footer {
  width: 100%;
  background: #7FBF28;
}
footer .f-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 15px;
}
footer .f-logo .logo-sec {
  background-color: #000;
  border-bottom-right-radius: 37px;
  border-bottom-left-radius: 37px;
  padding: 15px;
}
footer .f-logo .logo-sec img {
  width: 260px;
}
footer .f-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}
footer .f-nav a {
  color: #000;
  padding: 10px 15px;
}
footer .f-nav a.active {
  color: #FFE607;
}
footer .f-nav a:hover {
  color: #FFE607;
}
footer .f-mid {
  width: 100%;
  display: flex;
  justify-content: center;
}
footer .f-contact {
  background-color: #FFF;
  padding: 24px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 200px;
  font-size: 18px;
  font-weight: 600;
}
footer .f-contact .f-location {
  display: flex;
  align-items: center;
  padding: 0px 15px;
}
footer .f-contact .f-location .icon {
  margin-right: 5px;
}
footer .f-contact .txt {
  display: flex;
  align-items: center;
}
footer .f-contact .txt p {
  margin: 0px;
}
footer .f-contact .f-phone {
  display: flex;
  align-items: center;
  padding: 0px 15px;
}
footer .f-contact .f-phone .icon {
  margin-right: 5px;
}
footer .f-contact .f-mail {
  display: flex;
  align-items: center;
  padding: 0px 15px;
}
footer .f-contact .f-mail .icon {
  margin-right: 5px;
}
footer .social-media {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
}
footer .social-media a {
  width: 34px;
  height: 34px;
  border: 1px solid #FFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin: 5px;
}
footer .copyright {
  width: 100%;
  border-top: 1px solid #97d346;
  padding: 20px 0px;
}
footer .copyright p {
  margin: 0;
  text-align: center;
  color: #FFF;
}

.gallery-sec {
  width: 100%;
  padding: 60px 0px 60px 0px;
}
.gallery-sec .photo-sec {
  width: 100%;
  height: 320px;
}
.gallery-sec .photo-sec img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.download {
  position: fixed;
  right: 0;
  bottom: 30px;
  z-index: 999;
  background-color: #000;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  display: flex;
  padding: 15px;
}
.download .icon {
  padding-right: 15px;
  padding-top: 8px;
}
.download .dwn-txt h5 {
  color: #7FBF28;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.download .dwn-txt h6 {
  color: #7FBF28;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 500;
}

@media (max-width: 1400px) {
  .about-section::before {
    font-size: 93px;
  }
}
@media (max-width: 1200px) {
  .about-section::before {
    display: none;
  }
  .about-section {
    padding: 60px 0px 60px 0px;
  }
}
@media (max-width: 991px) {
  .desktop {
    display: none;
  }
  .header-sec .header .mobile {
    display: block;
  }
  .header-sec .header .nav-white {
    border-radius: 10px;
  }
  .header-sec .header .nav-link {
    text-align: center;
    border-top: 1px solid #e9e9e9;
    padding: 13px 13px;
  }
  .header-sec .header .mobile {
    padding-right: 0px;
    border: 1px solid #7FBF28;
    border-radius: 100px;
    padding: 6px;
  }
  .navbar-toggler {
    border: none;
  }
  .navbar-toggler-icon {
    background: url(../images/nav-button.svg) no-repeat center center;
  }
  footer .f-contact {
    border-radius: 10px;
    display: block;
    width: 100%;
  }
  footer .f-contact .f-location {
    padding: 0;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
  }
  footer .f-contact .f-phone {
    padding: 0;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
  }
  footer .f-contact .f-mail {
    padding: 0;
    width: 100%;
  }
  .main-slider .swiper-slide-inner {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .header-sec .header {
    position: relative;
    top: 0;
  }
  .header-sec {
    background-color: #FFF;
  }
  .about-section .about-image {
    position: relative;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .about-section .about-image .about-image2 {
    right: 19px;
  }
  .about-section .about-image::after {
    display: none;
  }
  .about-section, .why-choose, .hm-products, .get-in-touch, .testimonials-sec {
    padding: 20px 0px 20px 0px;
  }
  .why-choose .content {
    padding-right: 0px;
    margin-bottom: 20px;
  }
  .inner-banner {
    padding: 35px 0px;
  }
  .inner-banner h1 {
    font-size: 31px;
  }
  .mission-sec {
    padding: 28px 0px 60px 0px;
  }
  .mission-sec .box-sec {
    margin-top: 65px;
  }
  .p-60 {
    padding: 30px 0px;
  }
  .contact-sec .main-box {
    display: block;
  }
  .contact-sec .main-box .box .map iframe {
    height: 230px;
  }
  .contact-sec .main-box .box .c-image {
    display: none;
  }
  .bod-section, .certified-sec {
    padding: 20px 0px;
  }
  .banner-section {
    height: 320px;
  }
  .banner-section .banner-title .container h3 {
    font-size: 33px;
  }
  .banner-section .banner-title .container h2 {
    font-size: 23px;
  }
  .banner-section video {
    width: 110%;
  }
  .about-section .about-video {
    display: none;
  }
}
@media (max-width: 768px) {
  footer .f-nav {
    display: block;
  }
  footer .f-nav a {
    width: 100%;
    text-align: center;
    display: block;
  }
  .main-slider-nav {
    display: none;
  }
  .main-slider h3 {
    font-size: 30px;
  }
  .main-slider h2 {
    font-size: 25px;
  }
  .about-section h4, .why-choose .content h4, .hm-products h4, .testimonials-sec h4, .bod-section h3, .mission-sec .box-sec h4, .products-list .help-sec h5, .products-list .help-sec h6, .contact-sec .main-box .box .form-area h5, .certified-sec h5 {
    font-size: 28px;
  }
  .certified-sec ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 10px;
  }
  .get-in-touch .touch-sec {
    display: block;
    text-align: center;
  }
  .get-in-touch .touch-sec .text h5 {
    font-size: 23px;
    margin-bottom: 5px;
  }
  .get-in-touch .touch-sec .text p {
    margin-bottom: 10px;
  }
  .bod-popup .pic-outer .pic {
    position: relative;
  }
  .bod-popup .pic-outer {
    padding-bottom: 0px;
  }
  .p-60 {
    padding: 20px 0px;
  }
  .products-list .p-details .pimg {
    height: auto;
  }
  .products-list .p-details h5 {
    font-size: 25px;
  }
  .banner-section video {
    width: 120%;
  }
}
@media (max-width: 418px) {
  .navbar-brand img {
    width: 191px;
  }
  .main-slider p, .more .video, .testimonials-sec .owl-carousel .owl-nav {
    display: none !important;
  }
  .more {
    padding-top: 0px;
    justify-content: center;
  }
  .more .more-btn {
    padding-right: 0px;
    margin-right: 0px;
    border-right: none;
  }
  .main-slider h2 {
    font-size: 19px;
  }
  .main-slider h3, .main-slider h2 {
    text-align: center;
  }
}/*# sourceMappingURL=main.css.map */