@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css");
/* General styles */
* {
  box-sizing: border-box;
  outline: 0;
  padding: 0;
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /*scroll animate*/
  scroll-behavior: smooth;
}

:root {
  --bs-blue: #0d6efd;
  --bs-pale-blue: #e9f8ff;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #e92c22;
  --bs-red-dark: #c6251d;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffd700;
  --bs-green: #198754;
  --bs-green-btn-dark: #34a853;
  --bs-green-btn-light: #36CC1E;
  --bs-teal: #20c997;
  --bs-cyan: #00e0ff;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-label: #a19ca5;
  --bs-gray-input: #BFC3C8;
  --bs-gray-light: #F8F9FA;
  --bs-gray-light-l: #f7f7f7;
  --bs-gray-light-f: #d9d9d9;
  --bs-gray-dark: #425563;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-graylighter: #bbbbbb;
  --bs-graydark: #9B9999;
  --bs-tertiary: #FAFCFD;
  --bs-heading: #002640;
  --bs-body: #66666B;
  --font-poppins: "Poppins", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --font-kumbh: "Kumbh Sans", sans-serif;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-poppins);
  padding: 0;
  margin: 0;
  line-height: 1.25;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  color: #212529;
  text-align: left;
  background-color: var(--white-color);
}
body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: var(--bs-gray-light);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--bs-cyan);
  border-radius: 10px;
}

input,
select,
textarea,
button {
  background-color: transparent;
  border: 0;
}

button,
a {
  cursor: pointer;
  transition: all 0.1s linear;
}

button:active,
a:active {
  transform: translateY(4px);
}

img {
  vertical-align: middle;
  border-style: none;
}

.btn {
  display: inline-block;
  font-weight: 700;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  outline: none;
  text-decoration: none;
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus {
  outline: 0;
}
.btn:disabled {
  opacity: 0.65;
}

.btn--full {
  width: 100%;
  border-radius: 500px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.btn--special {
  font-size: 15px;
  font-weight: 400;
  border: 2px solid var(--bs-white);
  border-radius: 25px;
  padding: 12px 24px;
  color: var(--bs-white);
}
.btn--special:hover {
  background: var(--bs-heading);
  color: var(--bs-white);
}

.btn--dark {
  font-size: 15px;
  font-weight: 400;
  border: 2px solid var(--bs-heading);
  border-radius: 25px;
  padding: 12px 24px;
  background: var(--bs-heading);
  color: var(--bs-white);
}
.btn--dark:hover {
  background: var(--bs-white);
  color: var(--bs-heading);
}

.btn--cyan {
  font-size: 15px;
  font-weight: 400;
  border: 2px solid var(--bs-cyan);
  border-radius: 25px;
  padding: 12px 24px;
  background: var(--bs-cyan);
  color: var(--bs-heading);
}
.btn--cyan:hover {
  background: var(--bs-white);
  color: var(--bs-heading);
  border: 2px solid var(--bs-heading);
}

.btn--success {
  color: var(--bs-white);
  background-color: var(--bs-green-btn-light);
}
.btn--success:hover {
  color: var(--bs-white);
  background-color: var(--bs-green-btn-dark);
}

.btn--danger {
  color: var(--bs-white);
  background-color: var(--bs-red);
}
.btn--danger:hover {
  color: var(--bs-white);
  background-color: var(--bs-red-dark);
}

.btn--mt {
  margin-top: 5px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1200px) {
  .btn {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.layout {
  width: 100%;
  position: relative;
}

/* --- alerts --- */
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  font-size: 15px;
  text-align: left !important;
}
.alert ul {
  padding-left: 15px;
  margin: 0px;
  list-style: disc;
}
.alert ul li {
  margin-bottom: 5px;
}
.alert ul li:last-child {
  margin-bottom: 0px;
}
.alert--fixed {
  width: 100%;
  max-width: 300px;
  height: auto;
  top: 50px;
  right: 30px;
  position: fixed;
  z-index: 1000;
}
@media screen and (max-width: 635px) {
  .alert--fixed {
    max-width: 90%;
    height: auto;
    top: 15px;
    right: 5%;
  }
}

.alert-success {
  color: #fff;
  background-color: #21aa93;
  border-color: #21aa93;
}

.alert-info {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-danger,
.alert-error {
  color: #fff;
  background-color: #ee4540;
  border-color: #c72c41;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-dismissible {
  padding-right: 2.8em;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000 !important;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  cursor: pointer;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

/*------------------------------------------
                    menu
------------------------------------------*/
.menu {
  top: 0px;
  width: 100%;
  height: auto;
  position: sticky;
  background: var(--bs-heading);
  z-index: 20;
  transition: all 300ms ease-in-out;
}
.menu__container {
  width: 100%;
  max-width: 1200px;
  height: auto;
  position: relative;
  margin: 0 auto;
  padding: 15px 15px;
  transition: all 300ms ease-in-out;
}
.menu--special {
  background: rgba(0, 38, 64, 0.92);
  box-shadow: 0px -3px 30px 1px rgba(0, 0, 0, 0.3);
}
.menu--special .menu__container {
  padding: 5px 15px;
}
.menu__desktop {
  display: flex;
  align-items: center;
  z-index: 10;
}
.menu__mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
}
.menu__logo {
  width: 100%;
  max-width: 160px;
  height: auto;
  position: relative;
  transition: all 300ms ease-in-out;
}
.menu__logo-src {
  width: 100%;
  object-fit: cover;
}
.menu__items-container {
  position: relative;
  margin-left: auto;
}
.menu__items {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}
.menu__item {
  margin-right: 12px;
  text-align: center;
}
.menu__item--last {
  margin-right: 0px;
}
.menu__item-link {
  color: var(--bs-white);
  padding: 15px 15px;
  text-decoration: none;
  position: relative;
  font-size: 15px;
  font-weight: 400;
}
.menu__item-link::before {
  content: "";
  left: 0px;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background-color: var(--bs-cyan);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
}
.menu__item-link:hover::before, .menu__item-link--active::before,
.menu__item-link .active::before {
  bottom: 0px;
  opacity: 1;
  visibility: visible;
}
.menu .menu__item-link.active::before {
  bottom: 0px;
  opacity: 1;
  visibility: visible;
}
.menu__button {
  margin-left: 20px;
  text-align: right;
}
.menu__button--btn {
  font-size: 14px;
  font-weight: 500;
  background-color: var(--bs-cyan);
  padding: 12px 24px;
  color: var(--bs-heading);
  transition: all 300ms ease-in-out;
  border-radius: 10px;
  display: inline-block;
}
.menu__button--btn::before {
  display: none;
}
.menu__button--btn:hover {
  color: var(--bs-white);
}
.menu__button--active,
.menu__button .active {
  color: var(--bs-white);
}
.menu__button-close {
  width: 100%;
  height: auto;
  display: none;
}
.menu__button-btn {
  display: flex;
  flex-direction: column;
  height: 23px;
  justify-content: space-between;
  margin-left: auto;
  min-width: 28px;
  z-index: 2;
}
.menu__button-btn--active .menu__button-span--first {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu__button-btn--active .menu__button-span--middle {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}
.menu__button-btn--active .menu__button-span--last {
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu__button-span {
  background: var(--bs-white);
  border-radius: 10px;
  display: block;
  height: 4px;
  width: 100%;
}
.menu__button-span--first {
  webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.menu__button-span--middle {
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.menu__button-span--last {
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.menu__button-call {
  font-size: 20px;
  color: var(--bs-white);
  position: relative;
}

@media screen and (max-width: 990px) {
  .menu__logo {
    max-width: 140px;
  }
  .menu__item {
    margin-right: 10px;
  }
  .menu__button {
    margin-left: 10px;
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .menu {
    top: 0px;
    position: fixed;
  }
  .menu__desktop {
    top: -100%;
    left: 0px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: fixed;
    background-color: var(--bs-heading);
    padding: 15px;
    transition: all 600ms ease-in-out;
  }
  .menu__desktop--active {
    top: 0px;
  }
  .menu__mobile {
    display: flex;
  }
  .menu__logo {
    max-width: 180px;
  }
  .menu__logo--mobile {
    max-width: 150px;
  }
  .menu__items-container {
    position: relative;
    margin: 0px;
  }
  .menu__items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
  }
  .menu__item {
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .menu__item-link {
    padding: 3px 0px;
  }
  .menu__button--btn {
    padding: 12px 24px;
  }
  .menu__button-close {
    width: 100%;
    height: auto;
    display: block;
  }
  .menu__button-close--mobile {
    width: auto;
    display: inline;
  }
}

/*------------------------------------------
                    home
------------------------------------------*/
.banner {
  width: 100%;
  height: auto;
  position: relative;
  background-image: url(../img/bg-banner.webp);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 5% 0% 20% 0%;
}
.banner__container {
  width: 100%;
  max-width: 1200px;
  height: auto;
  position: relative;
  margin: 0 auto;
}
.banner__text {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 10px 15px;
  line-height: 1;
}
.banner__title {
  font-family: var(--font-kumbh);
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--bs-heading);
  margin-bottom: 50px;
}
.banner__subtitle {
  font-family: var(--font-kumbh);
  font-size: 62px;
  font-weight: 900;
  line-height: 1.1em;
  text-transform: uppercase;
  color: var(--bs-cyan);
}
.banner__subtitle .typed-cursor {
  font-size: 70px;
  font-weight: 200;
  color: var(--bs-heading);
}

.shape-buttom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.shape-buttom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 190px;
}

.shape-buttom .shape-fill {
  fill: #FFFFFF;
}

.intro {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: -200px;
  padding: 15px;
  padding-bottom: 40px;
  background-color: transparent;
}
.intro__container {
  width: 100%;
  max-width: 1000px;
  height: auto;
  position: relative;
  margin: 0 auto;
  background-color: var(--bs-pale-blue);
  background-image: url(../img/animated-shape.svg);
  background-position: center center;
  background-size: cover;
}
.intro__text {
  width: 100%;
  height: auto;
  position: relative;
  padding: 72px 50px;
  text-align: center;
}
.intro__title {
  font-family: var(--font-poppins);
  font-size: 50px;
  font-weight: 700;
  color: var(--bs-heading);
  margin-bottom: 30px;
  line-height: 1;
}
.intro__paragraph {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  color: var(--bs-heading);
  margin-bottom: 30px;
  padding: 0px 10em;
}
.intro__button {
  border: 2px solid var(--bs-heading);
  color: var(--bs-heading);
}

.about {
  width: 100%;
  height: auto;
  position: relative;
}
.about__container {
  width: 100%;
  max-width: 1200px;
  height: auto;
  position: relative;
  margin: 0 auto;
  padding: 90px 15px;
  padding-bottom: 90px;
}
.about__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
}
.about__image {
  width: 100%;
  max-width: 50%;
  height: auto;
  padding: 15px;
  padding-right: 25px;
  position: relative;
  order: 1;
}
.about__image-src {
  width: 100%;
  object-fit: cover;
}
.about__text {
  width: 100%;
  max-width: 40%;
  height: auto;
  padding: 15px;
  padding-left: 25px;
  position: relative;
  order: 2;
}
.about__title {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 50px;
  color: var(--bs-heading);
  line-height: 1;
  margin-bottom: 20px;
}
.about__paragraph {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  color: var(--bs-heading);
  margin-bottom: 20px;
}
.about__button {
  margin-top: 20px;
  border: 2px solid var(--bs-heading);
  color: var(--bs-white);
  background-color: var(--bs-heading);
}

.services {
  width: 100%;
  height: auto;
  position: relative;
}
.services__container {
  width: 100%;
  height: auto;
  position: relative;
  background-color: var(--bs-gray-light-l);
  padding: 60px 15px;
  padding-bottom: 60px;
}
.services__text {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}
.services__title {
  font-family: var(--font-poppins);
  font-size: 52px;
  font-weight: 700;
}
.services__content {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.services__menu {
  width: 100%;
  max-width: 30%;
  height: auto;
  position: relative;
  padding-right: 20px;
}
.services__extends {
  width: 100%;
  max-width: 60%;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
}

.service {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: all 400ms ease-in-out;
}
.service--active {
  opacity: 1;
  visibility: visible;
}
.service__image {
  width: 100%;
  max-width: 50%;
  height: auto;
  position: relative;
  padding-right: 20px;
}
.service__image-src {
  width: 100%;
  height: auto;
}
.service__text {
  width: 100%;
  max-width: 50%;
  height: auto;
  position: relative;
  padding-left: 20px;
}
.service__title {
  font-family: var(--font-poppins);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--bs-heading);
}
.service__paragraph {
  font-family: var(--bs-heading);
  font-weight: 400;
  font-size: 16px;
  color: var(--bs-heading);
  margin-bottom: 20px;
}
.service__price-title {
  font-family: var(--bs-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--bs-heading);
}
.service__price {
  font-family: var(--bs-heading);
  font-weight: 700;
  font-size: 25px;
  color: var(--bs-heading);
  margin-bottom: 40px;
}

.services-shape-top {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.services-shape-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 141px;
}

.services-shape-top .shape-fill {
  fill: #F7F7F7;
}

.services-shape-bottom {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.services-shape-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 141px;
}

.services-shape-bottom .shape-fill {
  fill: #F7F7F7;
}

.testimonials {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
}
.testimonials__container {
  width: 100%;
  max-width: 1200px;
  height: auto;
  position: relative;
  margin: 0 auto;
  padding: 90px 15px;
  padding-bottom: 0px;
  margin-top: -60px;
}
.testimonials__content {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.testimonials__text {
  width: 100%;
  max-width: 40%;
  height: auto;
  position: relative;
  padding-right: 25px;
}
.testimonials__image {
  width: 100%;
  max-width: 50%;
  height: auto;
  position: relative;
  padding-left: 25px;
}
.testimonials__image-src {
  width: 100%;
  object-fit: cover;
}
.testimonials__title {
  font-family: var(--font-poppins);
  font-size: 50px;
  font-weight: 700;
  color: var(--bs-heading);
  line-height: 1;
  margin-bottom: 20px;
}
.testimonials__paragraph {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  color: var(--bs-heading);
  margin-bottom: 20px;
}
.testimonials__button {
  margin-top: 20px;
}
.testimonials__lists {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 40px;
}
.testimonials__lists-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.testimonials__lists-item {
  width: 100%;
  max-width: 25%;
  height: auto;
  padding: 15px;
  position: relative;
  display: flex;
}
.testimonials__lists-content {
  width: 100%;
  height: auto;
  position: relative;
  background-color: var(--bs-pale-blue);
  padding: 15px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.testimonials__lists-paragraph {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  color: var(--bs-heading);
}
.testimonials__lists-title {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  color: var(--bs-heading);
}

.testimonials-shape-bottom {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.testimonials-shape-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 141px;
}

.testimonials-shape-bottom .shape-fill {
  fill: #F7F7F7;
}

.maps {
  width: 100%;
  height: auto;
  position: relative;
  padding: 40px 15px;
  padding-top: 120px;
  margin-top: -40px;
}
.maps__container {
  width: 100%;
  max-width: 1200px;
  height: auto;
  position: relative;
  margin: 0 auto;
}
.maps__text {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
.maps__title {
  font-family: var(--font-poppins);
  font-size: 50px;
  font-weight: 700;
  color: var(--bs-heading);
  line-height: 1;
}
.maps__content {
  width: 100%;
  height: auto;
  min-height: 400px;
}

.certificates {
  width: 100%;
  height: auto;
  position: relative;
  padding: 0px 15px;
  padding-bottom: 100px;
}
.certificates__container {
  width: 100%;
  max-width: 1200px;
  height: auto;
  position: relative;
  margin: 0 auto;
}
.certificates__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.certificates__item {
  width: 100%;
  max-width: 20%;
  height: auto;
  position: relative;
}
.certificates__item-image {
  width: 100%;
  height: auto;
  padding: 15px;
  position: relative;
  text-align: center;
}
.certificates__item-src {
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.certificates__item-src--square {
  max-width: 120px;
}
.certificates__item-src--rectangle {
  max-width: 200px;
}

.banner-contact {
  width: 100%;
  height: auto;
  background-color: var(--bs-pale-blue);
  position: relative;
  padding: 60px 15px;
}
.banner-contact__container {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}
.banner-contact__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.banner-contact__text {
  width: 100%;
  max-width: 60%;
  height: auto;
  position: relative;
  text-align: right;
  padding-right: 20px;
}
.banner-contact__button {
  width: 100%;
  max-width: 40%;
  height: auto;
  position: relative;
  text-align: center;
  padding-left: 20px;
}
.banner-contact__title {
  font-family: var(--font-poppins);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--bs-heading);
}
.banner-contact__btn {
  font-family: var(--font-poppins);
  font-size: 24px;
  font-weight: 500;
  border-radius: 25px 25px 25px 25px;
  padding: 15px 45px 15px 45px;
}

.contact {
  width: 100%;
  height: auto;
  position: relative;
  background-color: var(--bs-heading);
  overflow: hidden;
}
.contact__container {
  width: 100%;
  max-width: 1200px;
  height: auto;
  min-height: 200px;
  padding: 60px 15px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}
.contact canvas {
  top: 0px;
  position: absolute;
  height: auto;
  min-height: 100%;
  z-index: 1;
}
.contact__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.contact__content {
  width: 100%;
  max-width: 50%;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.contact__form {
  width: 100%;
  max-width: 50%;
  height: auto;
  position: relative;
}
.contact__image {
  width: 100%;
  max-width: 400px;
  height: auto;
  position: relative;
  margin-bottom: 20px;
}
.contact__image-src {
  width: 100%;
  max-width: 250px;
  object-fit: contain;
  float: left;
}
.contact__text {
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
}
.contact__title {
  font-family: var(--font-poppins);
  font-size: 52px;
  font-weight: 600;
  color: var(--bs-white);
  line-height: 1;
}

.form {
  width: 100%;
  height: auto;
  position: relative;
  padding: 20px 50px;
}
.form__group {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  position: relative;
}
.form__label {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 500;
  display: block;
  color: var(--bs-white);
}
.form__label span {
  color: var(--bs-red);
  margin-left: 3px;
}
.form__input {
  width: 100%;
  height: auto;
  background: var(--bs-white);
  border-radius: 5px;
  padding: 12px 10px;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  color: var(--bs-dark);
}
.form__input::placeholder {
  color: var(--bs-gray-label);
}
.form__button {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}

@media screen and (max-width: 1440px) {
  .banner {
    background-attachment: local;
    padding: 100px 15px 200px 15px;
  }
}
@media screen and (max-width: 1024px) {
  .banner {
    padding: 100px 15px 100px 15px;
  }
  .banner__title {
    font-size: 52px;
  }
  .banner__subtitle {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    background-image: url(../img/bg-banner-r.webp);
    padding: 150px 0px 100px 0px;
    margin-top: 81px;
  }
  .banner__title {
    font-size: 42px;
  }
}

@media screen and (max-width: 990px) {
  .shape-buttom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 90px;
  }
}
@media screen and (max-width: 768px) {
  .shape-buttom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
  }
}

@media screen and (max-width: 1440px) {
  .intro {
    margin-top: -140px;
  }
  .intro__container {
    max-width: 800px;
  }
  .intro__paragraph {
    margin-bottom: 30px;
    padding: 0px 7em;
  }
}
@media screen and (max-width: 1024px) {
  .intro {
    margin-top: -30px;
  }
  .intro__container {
    max-width: 700px;
  }
  .intro__text {
    padding: 52px 25px;
  }
  .intro__title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  .intro__paragraph {
    margin-bottom: 30px;
    padding: 0px 5em;
  }
}
@media screen and (max-width: 768px) {
  .intro {
    margin-top: 0px;
    padding: 0px;
  }
  .intro__container {
    background-position: 5%;
  }
  .intro__text {
    padding: 25px 15px;
  }
  .intro__title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .intro__paragraph {
    margin-bottom: 30px;
    padding: 0px 0px;
  }
}

@media screen and (max-width: 1200px) {
  .about__image {
    width: 100%;
    max-width: 50%;
    height: auto;
    padding: 15px;
    padding-right: 25px;
    position: relative;
  }
  .about__text {
    width: 100%;
    max-width: 40%;
    height: auto;
    padding: 15px;
    padding-left: 25px;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .about__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .about__image {
    width: 100%;
    max-width: 400px;
    padding-right: 15px;
    order: 2;
  }
  .about__text {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    order: 1;
    text-align: center;
  }
  .about__title {
    font-size: 40px;
  }
}

@media screen and (max-width: 990px) {
  .services__container {
    padding: 60px 15px;
    padding-bottom: 60px;
  }
  .services__text {
    width: 100%;
    max-width: 100%;
    padding-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .services__text {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    order: 1;
    text-align: center;
  }
  .services__title {
    font-size: 40px;
  }
  .services__content {
    flex-direction: column;
    align-items: center;
  }
  .services__menu {
    width: 100%;
    max-width: 400px;
    padding-right: 0px;
    padding-bottom: 40px;
  }
  .services__extends {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 990px) {
  .service {
    flex-direction: column;
    align-items: center;
  }
  .service__image {
    width: 100%;
    max-width: 300px;
    padding-right: 0px;
    padding-bottom: 30px;
  }
  .service__text {
    width: 100%;
    max-width: 100%;
    padding-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .service__image {
    width: 100%;
    max-width: 400px;
    padding-right: 0px;
    padding-top: 30px;
    padding-bottom: 0px;
    order: 2;
  }
  .service__text {
    width: 100%;
    max-width: 100%;
    padding-left: 0px;
    order: 1;
    text-align: center;
  }
  .service__title {
    font-size: 40px;
  }
}

@media screen and (max-width: 990px) {
  .services-shape-top svg {
    height: 50px;
  }
}

@media screen and (max-width: 990px) {
  .services-shape-bottom svg {
    height: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .testimonials__container {
    padding: 90px 15px;
    padding-bottom: 0px;
    margin-top: -40px;
  }
  .testimonials__image {
    width: 100%;
    max-width: 50%;
    height: auto;
    padding: 15px;
    padding-left: 25px;
    position: relative;
  }
  .testimonials__text {
    width: 100%;
    max-width: 40%;
    height: auto;
    padding: 15px;
    padding-right: 25px;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .testimonials__container {
    padding: 80px 15px;
    padding-bottom: 0px;
    margin-top: -20px;
  }
  .testimonials__image {
    width: 100%;
    max-width: 400px;
    padding-left: 15px;
    order: 2;
  }
  .testimonials__text {
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    order: 1;
    text-align: center;
  }
  .testimonials__title {
    font-size: 40px;
  }
  .testimonials__lists-item {
    max-width: 50%;
  }
}
@media screen and (max-width: 425px) {
  .testimonials__lists-item {
    max-width: 100%;
  }
}

@media screen and (max-width: 990px) {
  .testimonials-shape-top svg {
    height: 50px;
  }
}

@media screen and (max-width: 990px) {
  .testimonials-shape-bottom svg {
    height: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .maps {
    padding: 20px 15px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .maps {
    padding: 40px 15px;
    padding-top: 100px;
  }
  .maps__title {
    font-size: 40px;
  }
  .maps__content {
    background: var(--bs-gray-light-l);
  }
}

@media screen and (max-width: 1200px) {
  .certificates {
    padding: 0px 15px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .certificates {
    padding: 0px 15px;
    padding-bottom: 60px;
  }
  .certificates__item {
    max-width: 33.33%;
  }
}
@media screen and (max-width: 425px) {
  .certificates__item {
    max-width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .banner-contact {
    padding: 40px 15px;
  }
  .banner-contact__title {
    font-size: 26px;
  }
  .banner-contact__btn {
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 500;
    border-radius: 25px 25px 25px 25px;
    padding: 15px 45px 15px 45px;
  }
}
@media screen and (max-width: 768px) {
  .banner-contact {
    padding: 40px 15px;
  }
  .banner-contact__text {
    max-width: 100%;
    text-align: center;
    padding-right: 0px;
    margin-bottom: 30px;
  }
  .banner-contact__button {
    max-width: 100%;
    text-align: center;
    padding-left: 0px;
  }
  .banner-contact__title {
    font-size: 26px;
  }
  .banner-contact__btn {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px 25px 25px 25px;
    padding: 15px 45px 15px 45px;
  }
}

@media screen and (max-width: 990px) {
  .contact__image-src {
    max-width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .contact__container {
    padding: 40px 15px;
    padding-bottom: 20px;
  }
  .contact__content {
    width: 100%;
    max-width: 100%;
  }
  .contact__form {
    width: 100%;
    max-width: 100%;
  }
  .contact__title {
    font-family: var(--font-poppins);
    font-size: 40px;
    font-weight: 600;
    color: var(--bs-white);
    line-height: 1;
  }
}

@media screen and (max-width: 1200px) {
  .form {
    padding-right: 35px;
  }
}
@media screen and (max-width: 768px) {
  .form {
    padding: 20px 0px;
  }
}

/*------------------------------------------
                   filter
------------------------------------------*/
.accordion {
  width: 100%;
  max-width: 200px;
  font-family: var(--font-poppins);
  font-weight: 500;
  background-color: var(--bs-heading);
  border-radius: 5px;
  overflow: hidden;
}
.accordion__items {
  height: auto;
  background-color: var(--bs-heading);
  transition: all 400ms ease-in-out;
}
.accordion__subitems {
  height: auto;
  max-height: 0px;
  background-color: var(--bs-cyan);
  transition: all 400ms ease-in-out;
  overflow: hidden;
}
.accordion__items, .accordion__subitems {
  list-style: none;
  color: var(--bs-white);
}
.accordion__item, .accordion__subitem {
  position: relative;
  overflow: hidden;
}
.accordion__item::after, .accordion__subitem::after {
  content: "";
  width: 100%;
  left: 0px;
  height: 1px;
  background: var(--bs-white);
  position: absolute;
  bottom: 0px;
}
.accordion__item--last::after, .accordion__subitem--last::after {
  display: none;
}
.accordion__link {
  color: var(--bs-white);
  text-decoration: none;
  display: block;
  font-size: 16px;
  padding: 10px 15px;
  padding-right: 24px;
  transition: all 400ms ease-in-out;
}
.accordion__link:hover, .accordion__link--active {
  background-color: rgba(255, 255, 255, 0.4);
}
.accordion__link i {
  margin-right: 5px;
}
.accordion__item.has-sub > .accordion__link::before {
  position: absolute;
  right: 12px;
  top: 19px;
  display: block;
  width: 10px;
  height: 2px;
  background: var(--bs-white);
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.accordion__item.has-sub > .accordion__link::after {
  position: absolute;
  right: 16px;
  top: 15px;
  z-index: 5;
  display: block;
  height: 10px;
  width: 2px;
  background: var(--bs-white);
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.accordion__item.has-sub.open > .accordion__link::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.accordion__item.has-sub.open > .accordion__link::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.accordion__item.has-sub.open .accordion__subitems {
  max-height: 100vh;
}
.accordion__header {
  display: none;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}
.accordion__title {
  font-family: var(--font-poppins);
  font-size: 20px;
  font-weight: 500;
  color: var(--bs-white);
}
.accordion__button {
  width: 20px;
  display: inline-block;
  z-index: 2;
  cursor: pointer;
  position: relative;
  transition: all 200ms ease-in-out;
}
.accordion__button--active .accordion__button-span--first {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.accordion__button--active .accordion__button-span--middle {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}
.accordion__button--active .accordion__button-span--last {
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.accordion__button-span {
  width: 22px;
  height: 3px;
  background: var(--bs-white);
  display: block;
  margin: 4px 0px;
  border-radius: 2px;
  position: relative;
  transition: all 300ms ease-in-out;
  border-radius: 10px;
}
.accordion__button-span--first {
  webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.accordion__button-span--middle {
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.accordion__button-span--last {
  margin-bottom: 0px;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

@media screen and (max-width: 768px) {
  .accordion {
    width: 100%;
    max-width: 100%;
  }
  .accordion__header {
    display: flex;
  }
  .accordion__items {
    height: auto;
    max-height: 0px;
    overflow: hidden;
  }
  .accordion--active .accordion__header {
    border-bottom: 1px solid var(--bs-white);
  }
  .accordion--active .accordion__items {
    max-height: 100vh;
  }
  .accordion__button--active {
    padding-left: 5px;
  }
}

/*------------------------------------------
                   modal
------------------------------------------*/
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  padding-bottom: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  overflow-y: auto;
}
.modal.hide-md {
  opacity: 0;
  transition: all 300ms ease-in-out;
}
.modal.show-md {
  opacity: 1;
  transition: all 300ms ease-in-out;
}
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px 15px;
  border: 1px solid #888;
  width: 90%;
  overflow-y: auto;
  font-family: var(--font-poppins);
  position: relative;
  z-index: 2;
}
.modal-sm {
  width: 100%;
  max-width: 600px;
  height: auto;
}
.modal-md {
  width: 100%;
  max-width: 700px;
  height: auto;
}
.modal-lg {
  width: 100%;
  max-width: 800px;
  height: auto;
}
.modal-header {
  padding: 15px 0px;
  padding-top: 0px;
  border-bottom-color: #f4f4f4;
}
.modal-header .close {
  float: right;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  color: #000 !important;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  cursor: pointer;
}
.modal-title {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--bs-heading);
  padding-right: 30px;
  margin-bottom: 20px;
}
.modal-paragraph {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--bs-heading);
  padding-right: 30px;
  margin-bottom: 20px;
}
.modal-body {
  position: relative;
  padding: 15px 0px;
  padding-bottom: 0px;
}

@media screen and (max-width: 768px) {
  .modal-content {
    max-width: 800px;
    margin: 30px auto;
  }
}

/*------------------------------------------
            terms and conditions
------------------------------------------*/
.terms {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--bs-gray-light-f);
  padding: 80px 15px;
}
.terms__container {
  width: 100%;
  max-width: 1200px;
  height: auto;
  position: relative;
  margin: 0 auto;
}
.terms__image {
  width: 100%;
  max-width: 500px;
  height: auto;
  position: relative;
  margin: 0 auto;
  margin-bottom: 80px;
}
.terms__image-src {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.terms__text {
  width: 100%;
  height: auto;
  position: relative;
}
.terms__text h1,
.terms__text h2 {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--bs-heading);
  position: relative;
  margin-bottom: 40px;
}
.terms__text h1::after,
.terms__text h2::after {
  content: "";
  bottom: -15px;
  left: 0px;
  width: 60px;
  height: 2px;
  position: absolute;
  background-color: var(--bs-cyan);
}
.terms__text h3,
.terms__text h4,
.terms__text h5 {
  font-family: var(--font-poppins);
  font-size: 26px;
  line-height: 26px;
  font-weight: 600;
  color: var(--bs-heading);
  margin-bottom: 15px;
}
.terms__text h4,
.terms__text h5 {
  font-size: 22px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.terms__text p {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  color: var(--bs-heading);
  position: relative;
  margin-bottom: 30px;
}
.terms__text p a {
  color: var(--bs-heading);
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}
.terms__text p a:hover {
  color: var(--bs-cyan);
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .terms {
    padding: 40px 15px;
    padding-top: 150px;
  }
  .terms__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    position: relative;
    margin-bottom: 80px;
  }
}

/*------------------------------------------
                privacy policy
------------------------------------------*/
.policy {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--bs-gray-light-f);
  padding: 80px 15px;
}
.policy__container {
  width: 100%;
  max-width: 1200px;
  height: auto;
  position: relative;
  margin: 0 auto;
}
.policy__image {
  width: 100%;
  max-width: 500px;
  height: auto;
  position: relative;
  margin: 0 auto;
  margin-bottom: 80px;
}
.policy__image-src {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.policy__text {
  width: 100%;
  height: auto;
  position: relative;
}
.policy__text h1,
.policy__text h2 {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--bs-heading);
  position: relative;
  margin-bottom: 40px;
}
.policy__text h1::after,
.policy__text h2::after {
  content: "";
  bottom: -15px;
  left: 0px;
  width: 60px;
  height: 2px;
  position: absolute;
  background-color: var(--bs-cyan);
}
.policy__text h3,
.policy__text h4,
.policy__text h5 {
  font-family: var(--font-poppins);
  font-size: 26px;
  line-height: 26px;
  font-weight: 600;
  color: var(--bs-heading);
  margin-bottom: 15px;
}
.policy__text h4,
.policy__text h5 {
  font-size: 22px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.policy__text p {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  color: var(--bs-heading);
  position: relative;
  margin-bottom: 30px;
}
.policy__text p a {
  color: var(--bs-heading);
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}
.policy__text p a:hover {
  color: var(--bs-cyan);
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .policy {
    padding: 40px 15px;
    padding-top: 150px;
  }
  .policy__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    position: relative;
    margin-bottom: 80px;
  }
}

/*------------------------------------------
                jobs
------------------------------------------*/
.jobs-about {
  width: 100%;
  height: auto;
  position: relative;
}
.jobs-about__container {
  width: 100%;
  max-width: 1200px;
  height: auto;
  position: relative;
  margin: 0 auto;
  padding: 120px 15px;
  padding-bottom: 50px;
}
.jobs-about__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
}
.jobs-about__image {
  width: 100%;
  max-width: 50%;
  height: auto;
  padding: 15px;
  padding-right: 25px;
  position: relative;
  order: 1;
}
.jobs-about__image-src {
  width: 100%;
  object-fit: cover;
}
.jobs-about__text {
  width: 100%;
  max-width: 40%;
  height: auto;
  padding: 15px;
  padding-left: 25px;
  position: relative;
  order: 2;
}
.jobs-about__title {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 50px;
  color: var(--bs-heading);
  line-height: 1;
  margin-bottom: 20px;
}
.jobs-about__paragraph {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  color: var(--bs-heading);
  margin-bottom: 20px;
}
.jobs-about__button {
  margin-top: 20px;
  border: 2px solid var(--bs-heading);
  color: var(--bs-white);
  background-color: var(--bs-heading);
}

.jobs {
  width: 100%;
}

.jobs-shape-top {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.jobs-shape-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 141px;
}

.jobs-shape-top .shape-fill {
  fill: #F7F7F7;
}

.jobs {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.jobs__container {
  width: 100%;
  height: auto;
  position: relative;
  background: var(--bs-gray-light-l);
}
.jobs__content {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  position: relative;
  padding: 40px 15px;
}
.jobs__item {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.jobs__item::after {
  content: "";
  width: calc(100% - 30px);
  height: 1px;
  position: absolute;
  bottom: 0px;
  background: var(--bs-gray);
  left: 50%;
  transform: translateX(-50%);
}
.jobs__item--left .jobs__image {
  order: 1;
  padding-right: 25px;
}
.jobs__item--left .jobs__text {
  order: 2;
  padding-left: 25px;
}
.jobs__item--right .jobs__image {
  order: 2;
  padding-left: 25px;
}
.jobs__item--right .jobs__text {
  order: 1;
  padding-right: 25px;
}
.jobs__item--last::after {
  display: none;
}
.jobs__image {
  width: 100%;
  max-width: 40%;
  height: auto;
  position: relative;
}
.jobs__image-src {
  width: 100%;
  object-fit: cover;
}
.jobs__text {
  width: 100%;
  max-width: 50%;
  height: auto;
}
.jobs__title {
  font-family: var(--font-poppins);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--bs-heading);
  margin-bottom: 30px;
}
.jobs__paragraph {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  color: var(--bs-heading);
  margin-bottom: 20px;
}
.jobs__see-more {
  margin-top: 10px;
  margin-right: 5px;
}
.jobs__extends {
  width: 100%;
  height: auto;
  max-height: 0;
  position: relative;
  order: 3;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.jobs__extends--fast {
  max-height: 100vh;
}
.jobs__extends--active {
  max-height: 100%;
}
.jobs__extends-content {
  width: 100%;
  height: auto;
  position: relative;
  padding: 20px;
  margin-top: 40px;
  background: var(--bs-heading);
}
.jobs__extends-content::before {
  content: "";
  width: 0px;
  height: 0px;
  border-bottom: 13px solid var(--bs-heading);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  top: -10px;
  right: calc(50% - 20px);
  transform: translateX(-50%);
}
.jobs__extends-title {
  font-family: var(--font-poppins);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--bs-white);
  margin-bottom: 30px;
}
.jobs__extends-paragraph {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  color: var(--bs-white);
  margin-bottom: 20px;
}
.jobs__extends-items {
  width: 100%;
  height: auto;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}
.jobs__extends-item {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  color: var(--bs-white);
}

.form-jobs {
  width: 100%;
  height: auto;
  position: relative;
}
.form-jobs__group {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  position: relative;
}
.form-jobs__group--last {
  margin-bottom: 0px;
}
.form-jobs__label {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 500;
  display: block;
  color: var(--bs-heading);
}
.form-jobs__label span {
  color: var(--bs-red);
  margin-left: 3px;
}
.form-jobs__input {
  width: 100%;
  height: auto;
  background: var(--bs-white);
  border: 1px solid var(--bs-gray-input);
  border-radius: 5px;
  padding: 12px 10px;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  color: var(--bs-dark);
}
.form-jobs__input::placeholder {
  color: var(--bs-gray-label);
}
.form-jobs__input-file {
  display: none;
}
.form-jobs__select {
  width: 100%;
  height: auto;
  background: var(--bs-white);
  border: 1px solid var(--bs-gray-input);
  border-radius: 5px;
  padding: 12px 10px;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  color: var(--bs-dark);
}
.form-jobs__select::placeholder {
  color: var(--bs-gray-label);
}
.form-jobs__button {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}
.form-jobs__file {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.form-jobs__file-icon {
  width: 100%;
  max-width: 80px;
  height: auto;
  background: var(--bs-heading);
  color: var(--bs-white);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 12px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-jobs__file-text {
  width: 100%;
  height: auto;
  position: relative;
  padding: 12px 10px;
  border: 1px solid var(--bs-heading);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: 400;
  color: var(--bs-heading);
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1200px) {
  .jobs-about__image {
    width: 100%;
    max-width: 50%;
    height: auto;
    padding: 15px;
    padding-right: 25px;
    position: relative;
  }
  .jobs-about__text {
    width: 100%;
    max-width: 40%;
    height: auto;
    padding: 15px;
    padding-left: 25px;
    position: relative;
  }
}
@media screen and (max-width: 990px) {
  .jobs-about__container {
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .jobs-about__container {
    padding-top: 120px;
    padding-bottom: 40px;
  }
  .jobs-about__image {
    width: 100%;
    max-width: 400px;
    padding-right: 15px;
    order: 2;
  }
  .jobs-about__text {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    order: 1;
    text-align: center;
  }
  .jobs-about__title {
    font-size: 40px;
  }
}

@media screen and (max-width: 1200px) {
  .jobs__image {
    width: 100%;
    max-width: 50%;
    height: auto;
    position: relative;
  }
  .jobs__text {
    width: 100%;
    max-width: 50%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .jobs__content {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    position: relative;
    padding: 20px 0px;
  }
  .jobs__item {
    padding-top: 40px;
    padding-bottom: 40px;
    flex-direction: column;
  }
  .jobs__item--left .jobs__image {
    order: 1;
    padding-right: 0px;
  }
  .jobs__item--left .jobs__text {
    order: 2;
    padding-left: 0px;
  }
  .jobs__item--right .jobs__image {
    order: 1;
    padding-left: 0px;
  }
  .jobs__item--right .jobs__text {
    order: 2;
    padding-right: 0px;
  }
  .jobs__item--last::after {
    display: none;
  }
  .jobs__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    position: relative;
    margin-bottom: 40px;
  }
  .jobs__text {
    width: 100%;
    max-width: 100%;
    height: auto;
    text-align: center;
  }
}

@media screen and (max-width: 990px) {
  .jobs-shape-top svg {
    height: 50px;
  }
}

/*------------------------------------------
                    footer
------------------------------------------*/
.footer {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.footer__container {
  width: 100%;
  max-width: 1200px;
  height: auto;
  position: relative;
  margin: 0 auto;
  padding: 80px 15px;
}
.footer__row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-left: -15px;
  margin-right: -15px;
}
.footer__item {
  width: 100%;
  max-width: 25%;
  height: auto;
  position: relative;
  padding: 15px 15px;
}
.footer__item--logo {
  max-width: 25%;
}
.footer__item--menu {
  max-width: 20%;
}
.footer__item--info {
  max-width: 30%;
}
.footer__logo {
  width: 100%;
  height: auto;
  position: relative;
}
.footer__logo-src {
  width: 100%;
  max-width: 200px;
  object-fit: cover;
}
.footer__content {
  width: 100%;
  height: auto;
  position: relative;
}
.footer__title {
  font-family: var(--font-poppins);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--bs-heading);
}
.footer__form {
  width: 100%;
  height: auto;
  position: relative;
}
.footer__form-group {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 20px;
}
.footer__form-label {
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: 700;
  color: var(--bs-heading);
  display: block;
  line-height: 1.3;
}
.footer__form-label span {
  color: var(--bs-red);
  margin-left: 3px;
}
.footer__form-input {
  width: 100%;
  padding: 6px 10px;
  height: 38px;
  border: none;
  border-bottom: 1px solid #00e0ff;
  background-color: var(--bs-white);
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: 400;
  color: var(--bs-dark);
}
.footer__form-input::placeholder {
  color: var(--bs-gray-label);
}
.footer__form-button {
  padding: 10px 40px 10px 40px;
  border-radius: 25px;
  font-size: 15px;
}
.footer__menu {
  width: 100%;
  height: auto;
  position: relative;
}
.footer__menu-items {
  list-style: none;
}
.footer__menu-item {
  margin-bottom: 12px;
  display: block;
}
.footer__menu-link {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  padding-bottom: 10px;
  color: var(--bs-heading);
  transition: all 300ms ease-in-out;
  position: relative;
}
.footer__menu-link::after {
  content: "";
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background-color: var(--bs-cyan);
  position: absolute;
  transition: all 300ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.footer__menu-link:hover, .footer__menu-link--active {
  color: var(--bs-cyan);
}
.footer__menu-link:hover::after, .footer__menu-link--active::after {
  bottom: 5px;
  opacity: 1;
  visibility: visible;
}
.footer__info-item {
  margin-bottom: 20px;
}
.footer__info-link {
  text-decoration: none;
}
.footer__info-text {
  font-family: var(--font-poppins);
  font-weight: 400;
  position: relative;
  padding-left: 25px;
  color: var(--bs-heading);
  display: inline-block;
}
.footer__info-text i {
  top: 3px;
  left: 0px;
  position: absolute;
}
.footer__info-text:hover {
  text-decoration: underline;
}
.footer__button-up {
  width: 50px;
  height: 50px;
  border: 2px solid var(--bs-cyan);
  display: flex;
  margin-left: auto;
  margin-top: 30px;
}
.footer__button-link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--bs-cyan);
  position: relative;
}
.footer__copyright {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  position: relative;
  padding: 60px 0px;
}
.footer__copyright::before {
  content: "";
  top: 0px;
  width: 100%;
  height: 1px;
  background: var(--bs-gray-light-f);
  position: absolute;
}
.footer__networks {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 20px;
}
.footer__networks-item {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0px 10px;
  display: flex;
}
.footer__networks-link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--bs-heading);
  background: var(--bs-white);
  border: 2px solid var(--bs-heading);
  transition: all 300ms ease-in-out;
  font-size: 20px;
}
.footer__networks-link:hover {
  background: var(--bs-heading);
  color: var(--bs-white);
}
.footer__text-copy {
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
}
.footer__paragraph {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
}
.footer__paragraph a {
  color: var(--bs-cyan);
  text-decoration: none;
}
.footer__paragraph a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .footer__item--logo {
    max-width: 20%;
  }
  .footer__item--menu {
    max-width: 20%;
  }
  .footer__item--info {
    max-width: 35%;
  }
  .footer__logo {
    max-width: 170px;
    margin: 0 auto;
  }
  .footer__form-button {
    padding: 10px 30px 10px 30px;
    border-radius: 25px;
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .footer__container {
    padding: 40px 15px;
  }
  .footer__row {
    flex-direction: column;
    align-items: center;
  }
  .footer__item {
    max-width: 400px;
    text-align: center;
  }
  .footer__item--logo {
    max-width: 400px;
  }
  .footer__item--menu {
    max-width: 400px;
  }
  .footer__item--info {
    max-width: 400px;
  }
  .footer__info-text {
    padding-left: 0px;
  }
  .footer__info-text i {
    top: 0px;
    left: 0px;
    position: relative;
    margin-right: 5px;
  }
  .footer__button-up {
    width: 50px;
    height: 50px;
    border: 2px solid var(--bs-cyan);
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
  .footer__copyright {
    padding: 40px 15px;
  }
}

/*# sourceMappingURL=styles.css.map */
