/* Colors */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  margin: 0;
  padding: 0;
  line-height: 150%;
  color: #000000;
}
.email-form {
    background-color: #000000b0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
	width: 600px;
    margin: auto;
	margin-top: 30px;
}

.email-form h3 {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.contact-form .form-row {
    margin-bottom: 15px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form input[type="message"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="email"]:focus
.contact-form input[type="message"]:focus {
    outline: none;
    border-color: #f85a40;
}

.captcha{
        width: 100%;
    padding: 10px 10px 10px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    box-sizing: border-box;
        transition: all 0.3s ease 0s;
    background:#fff;
    margin-bottom:20px;
}


.contact-form .submit-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #f85a40;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form .submit-button:hover {
    background-color: #0056b3;
}
.button {
  background-color: #f85a40;
  color: #ffffff;
  border: 0px;
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  border-radius: 50px;
}

.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: transparent;
  transition: all ease-out 0.5s;
}

.headeractive {
  background-color: #008374;
}

.navbar {
  background-color: #000000b0;
  color: #ffffff;
}
.navbar .navbar-brand {
  font-size: 1.125rem;
  color: #ffffff;
}
.navbar .nav-link {
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #ffffff;
}
.navbar .nav-link:hover {
  color: #f85a40;
}
.navbar .callbtn {
  background-color: #f85a40;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  border: 0px;
  padding: 0.5rem 1.125rem;
  border-radius: 50px;
}
.navbar a.callus {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  color: #f85a40;
  border: 2px solid #f85a40;
  padding: 0.5rem 1.125rem;
  border-radius: 50px;
}
.navbar .navbar-toggler {
  background-color: #f85a40;
  border-radius: 0px;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  color: #ffffff !important;
}

.hero {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 160px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero h2 {
  font-size: 44px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 2px #000000;
}
.hero p {
  color: #ffffff;
  margin: 5px 0 0 0;
  font-size: 18px;
  text-shadow: 2px 2px 2px #000000;
  font-weight: 600;
}

.about-section {
  padding: 4rem 0;
}
.about-section h2 {
  font-size: 2.875rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000000;
  margin-bottom: 1.875rem;
}
.about-section h3 {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 1.875rem;
}
.about-section img {
  border-radius: 30px;
}
.about-section ul {
  list-style: none;
  padding: 0;
}
.about-section ul li {
  padding: 0 0 10px 30px;
  position: relative;
}
.about-section ul li i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #008374;
}

.gallery-section {
  padding: 4rem 0;
  text-align: center;
  position: relative;
}
.gallery-section h2 {
  font-size: 2.875rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000000;
  margin-bottom: 2rem;
}
.gallery-section .img-boxes .img-box {
  padding: 0px;
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  height: 300px;
}
.gallery-section .img-boxes .img-box img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  border-radius: 30px;
}
.gallery-section .img-boxes .img-box img:hover {
  transform: scale(0.9);
}

.service-section {
  padding: 4rem 0;
  background-color: #f6f6f6;
}
.service-section h2 {
  font-size: 2.875rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000000;
  margin-bottom: 1.875rem;
  text-align: center;
}
.service-section .service-item {
  position: relative;
  padding: 40px;
  background-color: #ffffff;
  height: 100%;
  border-radius: 10px;
}
.service-section .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 70px;
}
.service-section .service-item .icon::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f1f1f1;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}
.service-section .service-item .icon i {
  color: #000000;
  font-size: 56px;
  z-index: 2;
  position: relative;
}
.service-section .service-item h3 {
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #eeeeee;
}
.service-section .service-item:hover .icon::before {
  background: #008374;
}
.service-section .service-item:hover h3 {
  border-bottom: 4px solid #008374;
}

.feature-section {
  padding: 4rem 0;
}
.feature-section h2 {
  font-size: 2.875rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000000;
  margin-bottom: 1.875rem;
}
.feature-section .list-item {
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-section .list-item li {
  margin: 10px 0;
  padding: 0;
  display: block;
  list-style: none;
}
.feature-section .list-item li i {
  margin-right: 5px;
}
.feature-section img {
  border-radius: 30px;
}

.testimonial-section {
  padding: 4rem 0;
  text-align: center;
}
.testimonial-section h2 {
  font-size: 2.875rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000000;
  margin-bottom: 1.875rem;
  text-align: center;
}
.testimonial-section .carousel-control-prev-icon {
  background-image: none;
  color: #777777;
}
.testimonial-section .carousel-control-next-icon {
  background-image: none;
  color: #777777;
}
.testimonial-section .carousel-control-next {
  position: inherit;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
.testimonial-section .carousel-control-prev {
  position: inherit;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

.footer {
  background-color: #008374;
  color: #ffffff;
  text-align: center;
  padding: 2rem 0;
}
.footer .social-icons {
  margin: 0;
  padding: 0;
  text-align: center;
}
.footer .social-icons li {
  margin: 0 0.5rem;
  padding: 0;
  list-style: none;
  display: inline-block;
}
.footer .social-icons li a {
  color: #ffffff;
  font-size: 1.5rem;
}/*# sourceMappingURL=main.css.map */



/* BADGES STYLE */
.badges-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.badge-holder {
	background: #002924;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: calc(50% - 10px);
	max-width: 180px;
	padding: 15px 5px 22px 5px;
	margin-top: 10px;
	margin-bottom: 30px;
	border-radius: 8px;
	position: relative;
	text-shadow: 0px 15px 15px rgb(0 0 0 / 4%);
	font-family: 'Nunito', sans-serif;
	border: 1px solid #fff;
}

.badge-holder:hover {
	box-shadow: 0px 0px 8px 0px #fcfffc99;
}


.badge-holder .icon {
  margin-bottom: 10px;
}
.badge-holder .icon i {
  font-size: 65px;
  color: #fff;
}

p.badge-content {
	color: #fcfffc;
	text-align: center;
	line-height: 1;
	text-transform: capitalize;
	font-size: 17px;
	min-height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Oswald', sans-serif;
}

.badge-title {
	background: #f6f6f6;
	font-size: 15px;
	width: 85%;
	text-align: center;
	line-height: 1.2;
	padding: 5px;
	position: absolute;
	bottom: -15px;
	color: #000000;
	font-weight: bold;
	border-radius: 8px;
}

.badge-title span {
	font-size: 17px;
}
