@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
}

::-moz-selection {
  color: #fff;
  background: #008aa6;
}

::selection {
  color: #fff;
  background: #008aa6;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-color: #2b2b2b;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: #2b2b2b;
}
body::-webkit-scrollbar-thumb {
  background: #008aa6;
}

@media (max-width: 900px) {
  body::-webkit-scrollbar {
    width: 0px;
  }
}
html {
  width: 100%;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #000;
}

button {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the ‘X’ from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.js-scroll {
  opacity: 0;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-left {
  animation: fadeleft 800ms ease forwards;
}

.scrolled.fade-right {
  animation: faderight 800ms ease forwards;
}

.scrolled.fade-top {
  animation: fadetop 800ms ease forwards;
}

.scrolled.fade-btm {
  animation: fadebtm 800ms ease forwards;
}

@keyframes fadeleft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes faderight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadetop {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadebtm {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.opacity {
  opacity: 0;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  transition: 0.2s;
  z-index: 5;
}

nav.color {
  background-color: #2b2b2b;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.251);
}

.box {
  max-width: 1300px;
  width: 100%;
  padding: 0 20px;
}

.f-s {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 125px;
}

.links {
  display: flex;
}

.mainLinks {
  display: flex;
  list-style: none;
}

.link,
.btn {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.1em;
}

.link,
.lk {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  color: #fff;
  padding: 7px 20px;
  transition: 0.2s;
}

.lk {
  font-size: 1.4em;
}

.link.active {
  border-radius: 5px;
  background-color: #008aa6;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 20px;
  background-color: #008aa6;
  color: #fff;
}

.btnC {
  display: flex;
  align-items: center;
}

.menu {
  display: none;
  flex-direction: column;
  position: relative;
  height: 80px;
  width: 35px;
  border: none;
  outline: none;
  background-color: transparent;
}
.menu span {
  height: 2px;
  width: 30px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  transition: 0.3s;
}
.menu span:nth-child(1) {
  top: 28px;
}
.menu span:nth-child(2) {
  top: 40px;
}
.menu span:nth-child(3) {
  top: 52px;
}

.activeMenu .box .menu span:nth-child(1) {
  transform: rotate(45deg);
  top: 40px;
}

.activeMenu .box .menu span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.activeMenu .box .menu span:nth-child(3) {
  transform: rotate(-45deg);
  top: 40px;
}

@media (max-width: 1000px) {
  .menu {
    display: flex;
  }
  .ls {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: calc(100vh - 90px);
    overflow-y: scroll;
    top: 90px;
    left: -100%;
    transition: 0.4s;
    background-color: #2b2b2b;
    padding: 30px 0 50px 0;
  }
  .ls::-webkit-scrollbar {
    width: 0px;
  }
  .mainLinks {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    width: 100%;
    gap: 20px;
  }
  .link,
  .btn {
    margin-left: 5%;
  }
  .link {
    height: 50px;
  }
  .link::after {
    bottom: 0;
  }
  .activeMenu .f-s .links .ls {
    left: 0;
  }
}
.home {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
}
.home header {
  position: absolute;
}
.home video, .home .img {
  top: 0;
  width: 100%;
  height: 100vh;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.sb {
  height: 70vh;
  background-image: url(../media/pages/cats.jpg);
}

.hd {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.hd::before {
  content: "";
  position: absolute;
  height: 80%;
  width: 3px;
  background-color: #008aa6;
}
.hd h2 {
  font-size: 4em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  padding-left: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (max-width: 901px) {
  .hd .sbt {
    font-size: 3em;
  }
}
@media (max-width: 601px) {
  .hd .sbt {
    font-size: 2em;
  }
}
@media (max-width: 431px) {
  .hd .sbt {
    font-size: 1.7em;
  }
}
.w {
  color: #fff;
}

@media (max-width: 500px) {
  .home header h2 {
    font-size: 3.5em;
  }
}
@media (max-width: 451px) {
  .home header h2 {
    font-size: 3em;
  }
}
.m {
  color: #008aa6;
}

.rm {
  position: absolute;
  padding: 9px 25px;
  background-color: #008aa6;
  border-radius: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  bottom: 50px;
  font-size: 0.9em;
}
.rm img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #2b2b2b;
  gap: 40px;
  padding: 50px 0 0 0;
  border-top: 4px solid #008aa6;
}

.flex {
  display: flex;
  flex-direction: column;
}
.flex h4,
.flex p {
  display: flex;
  align-items: center;
  color: #fff;
}
.flex h4 {
  text-transform: uppercase;
  font-size: 2em;
  line-height: 1;
}
.flex p {
  width: 100%;
  font-size: 1.1em;
  line-height: 2;
  margin-top: 20px;
  font-weight: 300;
}

.pl5 {
  padding-left: 5px;
}

.before {
  position: relative;
  padding-left: 15px;
}
.before::before {
  content: "";
  position: absolute;
  height: 95%;
  width: 5px;
  background-color: #008aa6;
  left: 0;
}

.projectsInner {
  display: flex;
  align-items: center;
  background-color: #2b2b2b;
  flex-direction: column;
  border-top: 3px solid #008aa6;
}

.ti {
  display: flex;
  justify-content: left;
  padding-top: 50px;
}
.ti h1 {
  color: #fff;
  text-transform: uppercase;
}

@media (max-width: 411px) {
  .ti h1 {
    font-size: 1.7em;
  }
}
@media (max-width: 351px) {
  .ti h1 {
    font-size: 1.5em;
  }
}
.projects {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 50px;
  -moz-column-gap: 50px;
       column-gap: 50px;
  padding: 50px 20px;
}

@media (max-width: 1180px) {
  .projects {
    justify-content: center;
  }
}
.project {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 350px;
}
.project .proImg {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 7px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project .proImg img {
  position: absolute;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
  transition: 0.3s;
}
.project .proImg img:hover {
  width: 110%;
  height: 105%;
}
.project h2 {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
.project span {
  width: 100%;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  font-size: 0.9em;
  opacity: 0.8;
}
.project a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 30px;
  background-color: #008aa6;
  color: #fff;
  margin-top: 15px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 0.9em;
}
.project a i {
  color: #fff;
}
.project a img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 450px) {
  .project {
    width: 100%;
  }
  .flex h4 {
    font-size: 1.8em;
  }
  .flex p {
    font-size: 0.9em;
  }
}
@media (max-width: 380px) {
  .flex h4 {
    font-size: 1.5em;
  }
  .flex p {
    font-size: 0.8em;
  }
}
@media (max-width: 330px) {
  .flex h4 {
    font-size: 1.2em;
  }
}
footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #2b2b2b;
  border-top: 2px solid #008aa6;
  padding: 50px 0;
  gap: 50px;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.foot-links {
  display: flex;
  gap: 50px;
}

.secOne,
.secTwo {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}
.secOne a,
.secTwo a {
  color: #fff;
  transition: 0.2s;
}
.secOne a:hover,
.secTwo a:hover {
  color: #008aa6;
}
.secOne h1,
.secTwo h1 {
  color: #008aa6;
  font-size: 1.1em;
  padding-bottom: 10px;
}

.footerMedia h1 {
  color: #008aa6;
  font-size: 1.1em;
  padding-bottom: 10px;
}

.call {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mail {
  color: #fff;
  transition: 0.2s;
}
.mail:hover {
  color: #008aa6;
}

.footerLogo {
  display: flex;
  flex-direction: column;
  width: 200px;
}
.footerLogo img {
  width: 175px;
}

.media {
  display: flex;
  gap: 10px;
  padding: 10px 0 20px 0;
}
.media a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.media a i {
  color: #2b2b2b;
  transition: 0.2s;
}
.media a:hover i {
  color: #008aa6;
}

.copy {
  width: 100%;
  text-align: center;
  color: #fff;
  padding-top: 30px;
}

@media (max-width: 551px) {
  .footer {
    flex-direction: column;
  }
}
@media (max-width: 545px) {
  .copy {
    text-align: left;
    padding-left: 20px;
  }
}
.arrow {
  width: 10px;
}

.search {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.search img {
  width: 25px;
  cursor: pointer;
}

.searchInner {
  max-width: 800px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding: 50px 20px 0 20px;
  margin: 0 auto;
}
.searchInner form {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.searchInner form input {
  width: 80%;
  font-size: 1em;
  font-weight: 400;
  height: 50px;
  border-radius: 10px;
  border: none;
  outline: none;
  background-color: transparent;
  border: 1px solid white;
  padding-left: 15px;
  color: #fff;
}
.searchInner form input::-moz-placeholder {
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
}
.searchInner form input::placeholder {
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
}
.searchInner form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  background-color: #008aa6;
  height: 50px;
  color: #fff;
  font-size: 1.1em;
  border-radius: 10px;
}

.si {
  display: none;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 421px) {
  .searchInner form button {
    font-size: 0;
  }
  .si {
    display: block;
  }
}
.rs {
  display: flex;
  flex-direction: column;
  width: 270px;
  padding: 20px;
  height: calc(100vh - 90px);
  background-color: #2b2b2b;
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.251);
  overflow-y: scroll;
}
.rs::-webkit-scrollbar {
  width: 0px;
}
.rs input {
  display: block;
  width: 100%;
  font-size: 1em;
  font-weight: 400;
  height: 40px;
  border-radius: 10px;
  border: none;
  outline: none;
  background-color: transparent;
  border: 1px solid white;
  padding-left: 15px;
  color: #fff;
}
.rs input::-moz-placeholder {
  color: #fff;
}
.rs input::placeholder {
  color: #fff;
}

@media (max-width: 901px) {
  .search {
    margin-left: 6%;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.searchResult {
  display: none;
}

.flex-sli {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  background-color: #2b2b2b;
  padding: 0 0 100px 20px;
}

.sw2 {
  width: 1200px;
  padding-top: 20px !important;
}

.sw2 .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.sw2 .swiper-slide {
  display: flex;
  position: relative;
  align-items: stretch; /* Ensures child elements stretch */
  height: auto !important; /* Override Swiper default height */
}

@media (max-width: 1201px) {
  .sw2 {
    width: 100%;
  }
}
.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 100%;
}
.service .servImg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 85%;
  height: 185px;
  position: relative;
  border-radius: 10px;
  top: -20px;
  overflow: hidden;
}
.service img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  transition: 0.3s;
  height: 185px;
  border-radius: 10px;
}
.service img:hover {
  width: 110%;
  height: 105%;
}

.pb0 {
  padding-bottom: 0;
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  height: auto;
  border-radius: 10px;
  padding-bottom: 20px;
}
.card span {
  display: block;
  width: 90%;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9em;
}
.card h1 {
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #008aa6;
  font-size: 1.5em;
  padding-bottom: 10px;
}

@media (max-width: 451px) {
  .service {
    width: 100%;
  }
  .flex-sli {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    background-color: #2b2b2b;
    padding: 0 20px 100px 20px;
  }
}
.div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.img-con {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 60vh;
}
.img-con::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.img-con h1 {
  font-size: 3em;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  z-index: 3;
}
.img-con span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  gap: 10px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  font-size: 1.7em;
  z-index: 3;
}
.img-con span .location {
  display: block;
  position: relative;
  width: 23px;
  height: 23px;
  border-radius: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.img-con img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 570px) {
  .img-con h1 {
    font-size: 2em;
  }
}
@media (max-width: 381px) {
  .img-con h1 {
    font-size: 1.7em;
  }
}
.aboutImg {
  background-image: url(../media/about.jpg);
  background-position: center;
  background-size: cover;
}

.p30 {
  padding-bottom: 30px;
}

.aboutServices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 0 20px 100px 20px;
  background-color: #2b2b2b;
  position: relative;
  border-top: 3px solid #008aa6;
}

.as {
  display: block;
  position: relative;
  transition: 0.4s all;
  top: -100px;
}
.as:hover {
  transform: scale(1.1);
}

.aboutServ {
  width: 270px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #008aa6;
  border-radius: 20px;
  gap: 10px;
  cursor: pointer;
}
.aboutServ img {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
.aboutServ h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: 600;
}

@media (max-width: 355px) {
  .as {
    width: 100%;
  }
  .aboutServ {
    width: 100%;
  }
}
.catTitle {
  width: 100%;
  padding: 15px 20px;
  background-color: #008aa6;
  position: relative;
  top: -10px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  font-size: 1.2em;
  border-radius: 0 0 10px 10px;
}

.g0 {
  gap: 0;
}

.pd {
  width: 100%;
  display: flex;
  justify-content: center;
  border-top: 3px solid #008aa6;
}

.projectDetails {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
}

.p0 {
  padding: 0;
}

.mySwiper {
  width: 100%;
  height: 500px;
}
.mySwiper .close {
  display: none;
}

@media (max-width: 601px) {
  .mySwiper {
    height: 250px;
  }
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #fff;
  opacity: 1;
  background: #fff;
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: #008aa6;
}

.next {
  position: absolute;
  right: 20px;
  top: 44%;
  z-index: 2;
  cursor: pointer;
}
.next img {
  width: 50px;
}

.prev {
  position: absolute;
  left: 20px;
  top: 44%;
  z-index: 2;
  cursor: pointer;
}
.prev img {
  width: 50px;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  cursor: pointer;
}
.close img {
  width: 40px;
}

@media (max-width: 976px) {
  .prev,
  .next {
    display: none;
  }
}
.nb {
  border: none;
}

.apiData {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 30px;
}

.data {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1.2em;
  color: #fff;
  text-transform: uppercase;
}
.data .m {
  display: block;
  white-space: nowrap;
  color: #008aa6;
}

@media (max-width: 551px) {
  .data {
    font-size: 1em;
  }
}
.showSlider {
  display: none;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: rgba(43, 43, 43, 0.8901960784);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7;
  padding: 0;
}
.showSlider .sliderInner {
  padding: 0;
  display: flex;
  width: 100%;
}
.showSlider .sliderInner .vert {
  width: 5%;
  height: 100vh;
}

.hor1 {
  position: absolute;
  width: 100%;
  height: 10%;
  bottom: 0;
  left: 0;
}

.hor2 {
  position: absolute;
  width: 100%;
  height: 10%;
  top: 0;
  left: 0;
}

.sliderCont {
  display: flex;
  align-items: center;
  width: 90%;
}
.sliderCont .mySwiper {
  height: 80vh;
}
.sliderCont .mySwiper .close {
  display: block;
}

@media (max-width: 601px) {
  .sliderCont .mySwiper {
    height: 250px;
  }
  .sliderCont .mySwiper .close img {
    width: 25px;
  }
  .hor1 {
    height: 32%;
  }
  .hor2 {
    height: 32%;
  }
}
.methodsCont {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 50px;
}

.method {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
}
.method::before {
  content: "";
  position: absolute;
  height: 90%;
  width: 4px;
  background-color: #008aa6;
  left: 0;
}
.method span:nth-child(1) {
  color: #008aa6;
  font-size: 1.4em;
  text-transform: uppercase;
  font-weight: 700;
}
.method span:nth-child(2) {
  color: #fff;
  font-size: 1.2em;
  font-weight: 300;
}

@media (max-width: 451px) {
  .method span:nth-child(1) {
    font-size: 1.2em;
  }
  .method span:nth-child(2) {
    font-size: 1em;
  }
}
.counters {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 70px;
  padding: 100px 0 50px 0;
}

.headCounters {
  display: flex;
  gap: 30px;
}

.counter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 270px;
  height: 170px;
  border-radius: 15px;
  background-color: #008aa6;
  position: relative;
}
.counter::before {
  content: attr(data-title);
  position: absolute;
  top: -37px;
  text-transform: uppercase;
  padding: 10px 20px;
  background-color: #006f88;
  font-size: 0.8em;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-weight: 600;
}
.counter span {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.counter span:nth-child(1) {
  font-size: 4em;
  font-weight: 800;
  color: #fff;
}

.center {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 50px 0;
  border-top: 3px solid #008aa6;
}

.membersInner {
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 50px;
  -moz-column-gap: 100px;
       column-gap: 100px;
  flex-wrap: wrap;
}

.member {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 350px;
  height: auto;
}
.member .memberImg {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 70%;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}
.member .memberImg img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
}
.member .memberImg img:hover {
  width: 110%;
  height: 110%;
}

.memberData {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
}
.memberData a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
}
.memberData a img {
  width: 60%;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.memberData span {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
.memberData span:nth-child(1) {
  font-weight: 700;
  color: #008aa6;
  font-size: 1.7em;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 500px) {
  .memberData span:nth-child(1) {
    white-space: wrap;
  }
}
.memberData span:nth-child(2) {
  font-weight: 300;
  color: #fff;
  font-size: 1.1em;
  white-space: nowrap;
  text-align: center;
}
.memberData span:nth-child(3) {
  font-weight: 500;
  color: #008aa6;
  font-size: 1.1em;
}

.forms {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 20px;
}

.form {
  width: 450px;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 50px 50px 30px 50px;
  gap: 15px;
}
.form header {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.form header h1 {
  color: #fff;
  font-size: 1.7em;
  text-transform: uppercase;
}
.form header span {
  text-transform: uppercase;
  font-size: 0.8em;
  color: #fff;
  font-weight: 300;
}
.form header .hcen {
  text-align: center;
  padding-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.send {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.input {
  width: 100%;
  display: flex;
  gap: 5px;
  flex-direction: column;
  position: relative;
}
.input i {
  position: absolute;
  right: 10px;
  bottom: 13px;
  color: #008aa6;
  cursor: pointer;
}
.input label {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 10px;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.1em;
}
.input label::before {
  content: "";
  position: absolute;
  height: 80%;
  width: 4px;
  left: 0;
  background-color: #008aa6;
}
.input input,
.input .in {
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 10px;
  color: #fff;
  font-size: 1em;
  border: none;
  outline: none;
  background-color: transparent;
  height: 40px;
  background-color: rgba(2, 136, 166, 0.14);
}
.input textarea {
  border: none;
  outline: none;
  background-color: transparent;
  width: 100%;
  height: 115px;
  padding: 10px;
  resize: none;
  background-color: rgba(2, 136, 166, 0.14);
  color: #fff;
  font-size: 1.1em;
}
.input .send .login {
  margin: 0 auto;
}
.input span {
  position: absolute;
  height: 40px;
  width: 4px;
  left: 0;
  background-color: #008aa6;
  bottom: 0;
}

.input.ta span {
  height: 115px;
}

.fileInput {
  width: 100%;
  display: flex;
  gap: 5px;
  flex-direction: column;
  position: relative;
}
.fileInput .label {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 10px;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.1em;
}
.fileInput .label::before {
  content: "";
  position: absolute;
  height: 80%;
  width: 4px;
  left: 0;
  background-color: #008aa6;
}

.file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.file::before {
  content: "";
  position: absolute;
  height: 40px;
  width: 4px;
  left: 0;
  background-color: #008aa6;
}
.file #fileData {
  display: flex;
  align-items: center;
  text-align: left;
  padding-left: 10px;
  width: 200px;
  height: 40px;
  background-color: rgba(2, 136, 166, 0.14);
  color: #fff;
}
.file #label {
  background-color: #008aa6;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  height: 38px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
}

.send input, .send button {
  width: 150px;
  height: 40px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  border: none;
  outline: none;
  background-color: transparent;
  background-color: #008aa6;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
}

.jop {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 50px 30px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.06);
}
.jop p {
  width: 100%;
  color: #fff;
}

.jopTitle {
  display: flex;
  align-items: center;
  gap: 10px;
}
.jopTitle img {
  width: 30px;
}
.jopTitle h2 {
  color: #fff;
  font-size: 1.5em;
}

.al {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: column;
}
.al span, .al button, .al a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 10px;
  background-color: #008aa6;
  border-radius: 5px;
  color: #fff;
  font-weight: 300;
  font-size: 0.9em;
  text-transform: capitalize;
}

.h40 {
  height: 40vh;
}

.dataCard {
  width: 450px;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 50px;
  gap: 30px;
}

.dashboard {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: url(../media/Home.jpg);
  background-size: cover;
  background-position: center;
  background-color: #2b2b2b;
}

.form2 {
  height: auto;
  padding-top: 120px;
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
}
.form2 .form {
  width: 500px;
}
@media (max-width: 600px) {
  .form2 .form {
    width: 100%;
  }
  .form2 .form .twoInputs {
    flex-direction: column !important;
  }
  .form2 .form .twoInputs .input {
    width: 100% !important;
  }
}

.bac {
  background-color: #333333;
}

@media (max-width: 501px) {
  .file #fileData {
    width: 60%;
  }
  .forms {
    padding: 50px 10px;
  }
  .form,
  .dataCard {
    width: 100%;
    padding: 30px 20px;
  }
  .bac {
    width: calc(100% - 40px);
  }
}
.dataRow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.dataRow select {
  display: flex;
  gap: 10px;
  border: none;
  outline: none;
  background-color: transparent;
  background-color: #008aa6;
  padding: 5px;
  border-radius: 5px;
  color: #fff;
  font-weight: 400;
  font-size: 1em;
  text-transform: uppercase;
}
.dataRow select option {
  font-weight: 400;
  font-size: 1em;
}
.dataRow .media {
  padding: 0;
  margin: 0;
}
.dataRow iframe {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  -o-object-fit: cover;
     object-fit: cover;
}
.dataRow span {
  text-transform: uppercase;
}
.dataRow span:nth-child(1) {
  color: #008aa6;
  font-size: 1.2em;
  font-weight: 700;
}
.dataRow span:nth-child(2) {
  color: #fff;
  font-size: 1.2em;
}
.dataRow span:nth-child(2) a {
  color: #fff;
}

@media (max-width: 421px) {
  .dataRow {
    flex-direction: column;
    align-items: flex-start;
  }
}
.pb50 {
  padding-bottom: 50px;
}

.tabelInner {
  padding: 20px 50px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  width: 100%;
}

.tg {
  width: 100%;
  border-spacing: 0;
}

.tg td {
  overflow: hidden;
  padding: 15px 0;
  text-align: center;
  font-weight: 600;
}

.tg th {
  overflow: hidden;
  text-align: center;
}

.tg .tg-0pky {
  text-align: center;
  color: #fff;
}

.tg-0pky.th {
  padding: 30px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 1.2em;
  color: #fff;
  border-bottom: 1px solid #fff;
  vertical-align: center;
  text-transform: uppercase;
}

.tg-0pky#counter {
  color: #008aa6;
  font-weight: 700;
}

.box2 {
  max-width: 1000px;
  width: 100%;
  padding: 0 20px;
}

@media (max-width: 851px) {
  .tabelInner {
    width: 100%;
    padding: 20px 10px;
  }
  .tg-0pky.th {
    padding: 20px 10px;
    font-size: 1em;
  }
}
@media (max-width: 641px) {
  .headCounters {
    flex-direction: column;
    gap: 100px;
  }
  .tg-0pky.th {
    padding: 10px;
    font-size: 1em;
  }
}
@media (max-width: 371px) {
  .box2 {
    padding: 0 5px;
  }
}
.br5 {
  border-radius: 5px;
  gap: 7px;
  background-color: #006f88;
}

.mmedia {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
}
.mmedia a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #008aa6;
  color: #fff;
  padding: 0 10px;
  height: 40px;
  border-radius: 4px;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}
.mmedia a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.3s all ease;
}
.mmedia a:hover::after {
  background-color: rgba(0, 0, 0, 0.1254901961);
}

.dont {
  width: 100%;
  text-align: center;
  color: #fff;
}
.dont a {
  color: #008aa6;
  font-weight: 600;
}

.twoInputs {
  width: 100%;
  display: flex;
  gap: 20px;
}
.twoInputs .input {
  width: 50%;
}

.jobs {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  gap: 20px;
  width: calc(100% - 400px);
}
.jobs .jop {
  max-width: 100% !important;
  width: 100% !important;
}
.jobs .jop .al {
  flex-direction: row;
}

.m0a {
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .jobs {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .jop {
    max-width: 100% !important;
  }
}/*# sourceMappingURL=style.css.map */