@import url("https://fonts.cdnfonts.com/css/helvetica-255");
body {
  font-family: "Helvetica", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica", sans-serif;
}
/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.8s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.btn {
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-dark);
  border: 1px solid var(--bs-dark) !important;
}

.btn.btn-primary:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-dark) !important;
  color: var(--bs-primary) !important;
  border: 1px solid var(--bs-primary) !important;
}

.btn.btn-dark {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-dark:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-primary);
  color: var(--bs-dark) !important;
}

/*** Topbar Start ***/

.search-btn {
  position: relative;
  width: 32%;
  padding: 0 0 0 25px;
}

.search-btn .form-group {
  width: 100%;
}

.search-btn button {
  position: absolute;
  right: 25px;
}

@media (max-width: 992px) {
  .search-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
  }
  .search-btn {
    display: none;
  }
  .topbar-info {
    flex-direction: column;
  }
  .topbar-info a {
    padding: 0 0 10px 0;
  }
  .topbar-icon {
    padding: 0 0 10px 0;
  }
}

@media (max-width: 576px) {
  .topbar-top {
    display: none;
  }
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav {
  /* padding: 15px 0; */
  /* padding: 7px 0; */
  padding-bottom: 0;
}

.navbar .navbar-nav .nav-link {
  padding: 15px 10px;
  color: #000;
  font-weight: 700;
  font-size: 13px;
  outline: none;
  transition: 0.5s;
  opacity: 0.9;
  font-family: "Helvetica", sans-serif;
  height: 90px;
  padding-bottom: 0;
  line-height: 62px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary);
  transition: 0.5s;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover,
.dropdown .dropdown-menu a.active {
  background: #ffbd59;
  color: #fff;
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  transition: 0.5s;
  opacity: 1;
  right: 0;
}

.navbar-toggler {
  background: var(--bs-secondary);
  color: var(--bs-light) !important;
  padding: 5px 12px;
  border: 2px solid var(--bs-primary) !important;
}

/*** Navbar End ***/

/*** Carousel Start ***/

.carousel-item {
  position: relative;
}

.carousel-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  /* background: rgba(0, 0, 0, 0.7); */
}

.carousel-caption {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: start;
  z-index: 1;
}

.carousel-control-prev {
  width: 80px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--bs-primary);
  border-radius: 0 30px 30px 0;
  transition: 0.5s;
  opacity: 1;
}

.carousel-control-next {
  width: 80px;
  height: 60px;
  position: absolute;
  top: 50%;
  right: 0;
  background: var(--bs-primary);
  border-radius: 30px 0 0 30px;
  transition: 0.5s;
  opacity: 1;
}

#carouselId .carousel-indicators li,
#carouselId .carousel-indicators li {
  width: 24px;
  height: 24px;
  background: var(--bs-dark);
  border: 2px solid var(--bs-primary);
  border-radius: 24px;
  margin: 0 10px 30px 10px;
}

#carouselId .carousel-indicators li.active {
  background: var(--bs-primary) !important;
}

@media (max-width: 768px) {
  .carousel-item {
    width: 100%;
    height: 210px !important;
  }

  .carousel-item img {
    height: 210px !important;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

 /*background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),*/
  /*  url(../img/carousel-2.jpg) center center no-repeat;*/
  
/*.page-header {*/
/*  background-size: cover;*/
/*  margin-bottom: 6rem;*/
/*}*/

/*** Carousel End ***/

/*** About Start ***/

.about-img {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 30px 30px 30px 30px;
  overflow: hidden;
}

.about-img::before {
  content: "";
  width: 100%;
  height: 40%;
  background: var(--bs-dark);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.about-img::after {
  content: "";
  width: 100%;
  height: 60%;
  background: var(--bs-primary);
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.rotate-left {
  width: 150px;
  height: 100px;
  position: absolute;
  top: 28%;
  left: -10%;
  rotate: 25deg;
  z-index: 2;
}

.rotate-right {
  width: 150px;
  height: 100px;
  position: absolute;
  top: 28%;
  right: -10%;
  rotate: -25deg;
  z-index: 2;
}

.about-img img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
}

.experiences {
  width: 160px;
  height: 200px;
  position: absolute;
  top: -0;
  right: 0;
  padding: 35px 35px;
  text-align: center;
  border-radius: 10px;
  z-index: 3;
  animation: mymove 5s infinite;
  animation-timing-function: ease-in-out;
}

@keyframes mymove {
  from {
    top: -202px;
  }
  to {
    top: 102%;
  }
}

/*** About End ***/

/*** Services Start ***/
.services-inner-icon {
  width: 130px;
  height: 130px;
  background: var(--bs-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  position: relative;
}

.services-inner-icon::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 62px;
  top: 50%;
  left: 50%;
  transition: 0.5s;
}

.services-item:hover .services-inner-icon::after {
  width: 100%;
  height: 100%;
  margin-top: -50%;
  margin-left: -50%;
  background: var(--bs-primary);
  color: var(--bs-dark);
}

.services-item i {
  text-align: center;
  transition: 0.5s;
}

.services-item:hover i {
  color: var(--bs-dark) !important;
  z-index: 1;
  rotate: 360deg;
}

.services-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*** Services Start ***/

/*** Project Start ***/
.project-item {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 10px;
  overflow: hidden;
}

.project-item::before {
  content: "";
  width: 100%;
  height: 40%;
  background: var(--bs-dark);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.project-item::after {
  content: "";
  width: 100%;
  height: 60%;
  background: var(--bs-primary);
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.project-left {
  width: 180px;
  height: 70px;
  position: absolute;
  top: 22%;
  left: -18%;
  rotate: 30deg;
  z-index: 2;
}

.project-right {
  width: 180px;
  height: 70px;
  position: absolute;
  top: 22%;
  right: -18%;
  rotate: -30deg;
  z-index: 2;
}

.project-item img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-item a {
  position: absolute;
  padding: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0) rotate(-360deg);
  border-radius: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  opacity: 0;
  font-size: 20px !important;
  color: #fff !important;
}
.project-item:hover a {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  background: var(--bs-primary);
  opacity: 1;
}

/*** prohect Start ***/

/*** Blog Start ***/

.blog-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.blog-carousel .owl-nav .owl-prev {
  position: absolute;
  width: 80px;
  height: 50px;
  background: var(--bs-primary);
  top: -51px;
  left: 0;
  border: 0;
  border-radius: 10px 30px 30px 10px;
}

.blog-carousel .owl-nav .owl-prev {
  box-shadow: inset 0 0 0 0 var(--bs-dark);
  transition: 0.5s;
}

.blog-carousel .owl-nav .owl-prev:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-dark);
  color: var(--bs-primary) !important;
}

.blog-carousel .owl-prev,
.blog-carousel .owl-next {
  color: var(--bs-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-carousel .owl-nav .owl-next {
  position: absolute;
  width: 80px;
  height: 50px;
  background: var(--bs-primary);
  top: -51px;
  right: 0;
  border-radius: 30px 10px 10px 30px;
}

.blog-carousel .owl-nav .owl-next {
  box-shadow: inset 0 0 0 0 #000000;
  transition: 0.5s;
}

.blog-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 200px 0 0 0 #000000;
  color: var(--bs-primary) !important;
}

/*** Blog End ***/

/*** Pricing Start ***/
.pricing-item {
  transition: 0.5s;
}

.pricing-item:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  margin: -20px 0 20px 0;
}

.pricing-label {
  border-bottom: 20px solid var(--bs-light);
  border-radius: 0 0 300px 300px;
  transition: 0.5s;
}

.pricing-item:hover .pricing-label {
  border-color: rgba(0, 0, 0, 0.5);
}

.pricing-item:hover .pricing-label.pricing-featured {
  border-color: rgba(255, 255, 255, 0.5);
}

/*** Pricing End ***/

/*** Call To Action start ***/

.call-to-action {
  /*background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),*/
  /*  url(../img/carousel-1.jpg) center center no-repeat;*/
  background-size: cover;
}

/*** Call To Action End ***/

/*** Team Start ***/
.team-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.team-item .team-icon {
  position: absolute;
  top: 35px;
  right: -80px;
  rotate: -30deg;
  transition: 0.5s;
  visibility: hidden;
}

.team-item:hover .team-icon {
  visibility: visible;
  margin-right: 105px;
  rotate: 0deg;
}

.team-item .team-icon .btn {
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
}

.team-item .team-content {
  box-shadow: inset 0 0 0 0 var(--bs-dark);
  transition: 1s;
}

/*.team-item:hover .team-content {
  box-shadow: inset 550px 0 0 0 var(--bs-dark);
  color: var(--bs-primary) !important;
}*/
/*** Team End ***/

/*** testimonial Start ***/
.testimonial-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bs-light);
  z-index: 1;
}

.testimonial-content::before {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50px;
  bottom: -15px;
  rotate: 45deg;
  z-index: -5;
  background: var(--bs-light);
}

.testimonial-carousel {
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60px;
  height: 40px;
  background: var(--bs-primary);
  color: var(--bs-dark);
  font-size: 22px;
  top: 14%;
  left: 0px;
  border-radius: 30px 0 0 30px;
  box-shadow: inset 0 0 0 0 var(--bs-dark);
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-dark);
  color: var(--bs-primary) !important;
}

.testimonial-carousel .owl-nav .owl-next {
  left: auto;
  right: 0px;
  border-radius: 0 30px 30px 0;
}

.testimonial-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-dark);
  color: var(--bs-primary) !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.patner_right .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--bs-secondary);
  border-radius: 15px;
  transition: 0.5s;
}
.patner_right .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--bs-secondary);
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--bs-primary);
}
.patner_right .owl-dot.active {
  width: 30px;
  background: var(--bs-primary);
}

/*** testimonial End ***/

/*** Contact Start ***/
.contact-link a i,
.contact-link a h5,
.contact-link a.h5 {
  transition: 0.5s;
}

.contact-link a i:hover,
.contact-link a h5:hover,
.contact-link a.h5:hover {
  color: var(--bs-primary) !important;
}

/*** Contact End ***/

/*** Footer Start ***/
.footer {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-2.jpg) center center no-repeat;
  background-size: cover;
  color: rgba(255, 255, 255, 0.7);
  /* margin-top: 30px; */
}

.footer-item,
.footer-item a {
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
}

/*** Footer End ***/

/*** Copywright Start ***/

.copyright .copyright-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*** Copywright End ***/
.nav_logo {
  width: auto;
}
.content_media p {
  font-size: large;
  letter-spacing: 0.5px;
  text-align: justify;
}
.patner_section {
  padding: 10px;
  border-radius: 5px;
}
.patner_section_right .patner_img img {
  height: 260px;
}
@media (max-width: 767px) {
  .title_com {
    width: 100% !important;
    font-size: 18px;
    margin-top: 20px;
  }
  .patner_section_right .patner_img img {
    height: 120px;
  }
}
.nav_logo {
  width: auto;
  height: 80px;
}
.footer_logo {
  height: 50px;
}
.language_section {
  background: transparent;
  border: 0;
  margin-left: 40px;
  font-size: 13px;
  color: #fff !important;
}
.language_section option {
  color: #000;
  padding: 5px 10px;
}
select:focus-visible {
  outline: 0;
}
.topbar-info a {
  font-size: 13px;
  color: #fff !important;
}
.topbar-info i {
  color: #fff !important;
}
.topbar-icon i {
  color: #fff !important;
  font-size: 14px;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 0.5rem;
  clear: both;
  font-weight: bold;
  color: #fff;
  text-align: inherit;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  font-size: 13px;
  letter-spacing: 1px;
  font-family: 'Helvetica' !important;
}
.navbar {
  border-bottom: 2px solid #00bf63;
}
.common_btn {
  align-items: center;
  background-image: linear-gradient(144deg, #edbb31, #00bf62 50%, #f9c43a);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}
@media (min-width: 768px) {
  .common_btn {
    font-size: 16px;
    min-width: 140px;
  }
}
.common_btn span {
  background-color: rgb(5, 6, 45);
  padding: 11px 24px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: 300ms;
}
.services-item {
  border: 3px solid #00bf63;
}
.common_btn:hover span {
  background: none;
}
.common_btn_service {
  align-items: center;
  background-image: linear-gradient(144deg, #fff, #00bf63 50%, #fff);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}
.common_btn_service span {
  background-color: rgb(5, 6, 45);
  padding: 11px 8px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: 300ms;
  text-align: center;
}
@media (min-width: 768px) {
  .common_btn_service {
    font-size: 12px;
    min-width: 100px;
  }
}
.common_btn_service:hover span {
  background: none;
  color: #fff !important;
}
.blog-btn {
  background: #ffbd59;
}
.search {
  border-radius: 5px;
}
.btn_search {
  position: absolute;
  right: 23px !important;
  border-radius: 0px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  height: 100%;
  color: #fff !important;
  background: #ffbd59;
}
@media (min-width: 768px) {
  .Meeting {
    font-size: 15px;
    min-width: 155px;
  }
}

.footer_btn {
  align-items: center;
  background-image: linear-gradient(144deg, #edbb31, #00bf62 50%, #f9c43a);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer_btn {
    font-size: 12px;
    min-width: 120px;
  }
}
.copy_btn {
  border-radius: 30px;
}
.copy_btn span {
  border-radius: 30px !important;
}
@media (min-width: 768px) {
  .copy_btn {
    font-size: 15px;
    min-width: 120px;
  }
}
.footer_btn span {
  background-color: rgb(5, 6, 45);
  padding: 11px 10px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: 300ms;
}
.footer_btn:hover span {
  background: none;
  color: #fff !important;
}

@media (max-width: 767px) {
  .footer_last {
    display: block !important;
  }
  .footer_last a {
    margin-bottom: 10px;
  }
  .copy_btn {
    font-size: 10px !important;
  }
}
.card {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.card-image img {
  width: 100%;
}
.card .card-content {
  padding: 20px 24px;
  border-radius: 0 0 2px 2px;
}
.card .card-content .card-title {
  display: block;
  line-height: 32px;
  margin-bottom: 8px;
}
.card .card-title {
  font-size: 24px;
  font-weight: 300;
}
.card-action.blog-action a i {
  font-size: 12px;
  margin-right: 3px;
}
.card-action.blog-action {
  padding: 12px;
}

.card .card-action {
  background-color: inherit;
  border-top: 1px solid rgba(160, 160, 160, 0.2);
  position: relative;
  padding: 10px 24px;
}
.card-action.blog-action a {
  margin-right: 12px !important;
  font-size: 12px;
  padding: 0;
}
.card .card-action:last-child {
  border-radius: 0px 0px 12px 12px;
}
.card .card-image img {
  display: block;
  border-radius: 8px 8px 0 0;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}
.collection .collection-item {
  background-color: #fff;
  line-height: 1.5rem;
  padding: 10px 20px;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
}
ul:not(.browser-default) > li {
  list-style-type: none;
}
.collection {
  border-radius: 0;
}

.collection {
  margin: 0.5rem 0 1rem 0;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  padding: 0;
}
.category-bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 80px !important;
  margin-bottom: 8px !important;
  background-color: #00bf63;
}
ul:not(.browser-default) {
  padding-left: 0;
  list-style-type: none;
}
.category-bg-image > a {
  background-color: #00bf63;
  color: white;
  padding: 6px 8px 4px;
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  overflow: hidden;
}
.category-bg-image > a > span.right {
  font-size: 12px;
  border: 2px groove #00bf63;
  padding-left: 6px;
  padding-right: 6px;
  float: right !important;
}
.sales_content {
  margin: 0 auto;
  padding: 10px 13%;
  text-align: justify;
  font-weight: 600;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .sales_content {
    padding: 0;
  }
}
.wow_section {
  display: flex;
  justify-content: space-between;
}
.multi_content_img img {
  width: 100%;
  padding: 20px;
}
.multi_content_img {
  width: 50%;
}
.multi_content {
  width: 50%;
  text-align: left;
  padding: 22px;
}
.multi_content p {
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 18px;
  padding: 10px 0;
}
.wow_section h2 {
  font-size: 30px;
  line-height: 1.25;
  margin-top: 20px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 767px) {
  .multi_content {
    width: 100%;
    text-align: left;
    padding: 0;
  }
  .multi_content_img {
    width: 100%;
    padding: 0;
  }
  .multi_content_img img {
    width: 100%;
    padding: 0;
  }
  .wow_section {
    display: block;
  }
  .wow_section h2 {
    font-size: 18px;
  }
  .multi_content p {
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 13px;
    padding: 10px 0;
    text-align: justify;
  }
}
.section-heading {
  text-align: center;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 40px;
  color: #464646;
}
.material-placeholder img {
  width: 100%;
  cursor: pointer;
}
.material-placeholder {
  margin-bottom: 25px;
  box-shadow: 0 0px 27px rgb(40 42 53 / 20%);
  position: relative;
}
.card-galariers-image {
  background: #ffffff;
}
.material-placeholder:hover .overly {
  background: #00bf6342;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50%;
  pointer-events: auto;
  background-color: #211f1f;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  outline: 0;
  margin: auto;
  top: 50px;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  background: #000000ad;
}
.close {
  color: #fff;
  background: #19c90f;
  border-radius: 50%;
  top: 60px;
  z-index: 999999999;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  margin: auto;
  left: 45%;
  right: 0px;
  padding-top: 7px;
}
@media (max-width: 767px) {
  .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .close {
    color: #fff;
    background: #19c90f;
    border-radius: 50%;
    top: 60px;
    z-index: 999999999;
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    margin: 0;
    left: 0;
    right: 0px;
    padding-top: 7px;
  }
}

@media (max-width: 819px) {
  .topbar {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .call-to-action {
    padding-bottom: 40px;
  }
}


/* ============================== */
/* Antora */
