/* 
Theme Name: My Custom Theme
Author: Matt Persell-Thompson
Description: This is a custom build WP Theme
Version: 1.0
*/
* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tone down the animation to avoid vestibular motion triggers like scaling or panning large objects. */
@media (prefers-reduced-motion) {
  * {
    scroll-behavior: none;
  }
}
*:focus {
  border: 1px solid #1D1E33;
}

body {
  font-family: "Barlow", sans-serif;
  line-height: 1.5;
  background: #ffffff;
}

/* Only allow content to be seen by screen-readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only:focus {
  height: auto;
  width: auto;
  padding: 1rem;
  display: block;
  clip: auto;
  z-index: 999;
  background-color: red;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

a {
  text-decoration: none;
}

.color-txt {
  color: #22B292;
}

.navbar__container {
  transition: all 0.4s ease;
  background: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
  position: fixed;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 1360px) {
  .navbar__container {
    justify-content: space-between;
  }
}
@media screen and (max-width: 560px) {
  .navbar__container {
    padding: 0.4rem 1rem !important;
    animation: none !important;
    top: 0;
    left: 0;
  }
}
.navbar__container .nav__logo {
  width: 8rem;
  color: #ffffff;
  font-weight: 900;
}
@media screen and (max-width: 1360px) {
  .navbar__container .nav__logo {
    width: 8rem;
  }
}
@media screen and (max-width: 560px) {
  .navbar__container .nav__logo {
    width: 7rem;
  }
}
.navbar__container .nav__list {
  display: flex;
  justify-content: center;
  gap: 4rem;
  list-style: none;
  font-size: 1rem;
}
@media screen and (max-width: 1360px) {
  .navbar__container .nav__list {
    display: none;
  }
}
.navbar__container .nav__list li {
  list-style: none;
  transition: all 0.3s ease;
  position: relative;
  float: left;
  margin: 0 1.6rem;
}
.navbar__container .nav__list a {
  transition: all 0.3s ease;
  color: white;
  cursor: pointer;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.navbar__container .nav__list a:hover {
  transition: all 0.3s ease;
  color: #22B292;
}
@media screen and (max-width: 1360px) {
  .navbar__container .navbar__btn {
    display: none;
  }
}
.navbar__container .open-dropdown {
  display: none;
}
@media screen and (max-width: 1360px) {
  .navbar__container .open-dropdown {
    display: block;
  }
}
.navbar__container .open-dropdown .material-symbols-outlined {
  color: white;
  font-size: 2.4rem;
  display: none;
}
@media screen and (max-width: 1360px) {
  .navbar__container .open-dropdown .material-symbols-outlined {
    display: block;
  }
}

.changed {
  transition: all 0.4s ease;
  background: rgba(29, 30, 51, 0.8823529412);
  background: #1D1E33;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 0.5rem 2rem;
}

.dropdown-menu__wrapper {
  transition: all 0.5s ease;
  transform: translateX(-100vw);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1D1E33;
  z-index: 998;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
}
.dropdown-menu__wrapper.dropdown--activated {
  transition: 0.5s ease;
  transform: translateX(0);
  pointer-events: all;
}
.dropdown-menu__wrapper .dropdown-menu__content {
  width: 85%;
  margin: 0 auto;
  overflow-y: scroll;
}
.dropdown-menu__wrapper .dropdown-menu__content.dropdown-links--activated {
  opacity: 0;
  animation: dropdownLinksEntrance 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
.dropdown-menu__wrapper .dropdown-menu__content ul {
  color: white;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.dropdown-menu__wrapper .dropdown-menu__content ul a {
  color: white;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 600;
  font-weight: 900;
}
@media screen and (max-width: 560px) {
  .dropdown-menu__wrapper .dropdown-menu__content ul a {
    font-size: 2rem;
  }
}
.dropdown-menu__wrapper .dropdown-menu__content .dropdown-menu-btn__container {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  text-align: center;
}
@media screen and (max-width: 560px) {
  .dropdown-menu__wrapper .dropdown-menu__content .dropdown-menu-btn__container {
    flex-direction: column;
  }
}

@keyframes dropdownLinksEntrance {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.btn {
  transition: all 0.3s ease;
  outline: none;
  border: solid 2px white;
  padding: 0.8rem 1.4rem;
  cursor: pointer;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
.btn.btn--light {
  background: white;
  border-color: white;
  color: black;
}
.btn.btn--light:hover {
  transition: all 0.3s ease;
  box-shadow: 0 0 10px white;
}
.btn.btn--dark {
  background: #22B292;
  border-color: #22B292;
  color: white;
}
.btn.btn--dark:hover {
  transition: all 0.3s ease;
  background: rgba(38, 163, 150, 0.6431372549);
  box-shadow: 0 0 10px rgba(38, 163, 150, 0.6431372549);
  border-color: rgba(38, 163, 150, 0.6431372549);
}
.btn.btn--transparent {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn.btn--transparent:hover {
  transition: all 0.3s ease;
  background: #ffffff;
  color: black;
  box-shadow: 0 0 10px white;
}
.btn.btn--transparent-dark {
  background: none;
  border-color: #22B292;
  color: #22B292;
}
.btn.btn--transparent-dark:hover {
  transition: all 0.3s ease;
  color: #ffffff;
  background: #22B292;
  box-shadow: 0 0 10px #22B292;
}

.search-for-jobs-btn {
  font-size: 1.4rem;
  padding: 0.8rem 2rem;
}

.back-btn {
  display: block;
  font-weight: 1000;
  border-radius: 0;
  font-size: 1.3rem;
  text-align: center;
  background: #1D1E33 !important;
  border: solid 2px #1D1E33 !important;
}
.back-btn:hover {
  transition: all 0.3s ease;
  transform: scale(1);
  background: #22B292 !important;
  border-color: #22B292 !important;
}
.back-btn:hover > i {
  animation: arrowHover 1s infinite;
}
@media screen and (max-width: 560px) {
  .back-btn {
    font-size: 1.1rem;
  }
}

@keyframes arrowHover {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
#hero {
  min-height: 90vh;
  background-size: cover;
  background-position: bottom center;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1700px) {
  #hero {
    min-height: 100vh;
    padding: 2rem 0;
  }
}
@media screen and (max-width: 1360px) {
  #hero {
    min-height: 80vh;
  }
}
@media screen and (max-width: 560px) {
  #hero {
    min-height: 90vh;
    padding: 0;
  }
}
#hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 30, 51, 0.6274509804);
  z-index: 0;
}
#hero .hero__content {
  z-index: 1;
  width: 80vw;
  margin: 0 auto;
}
@media screen and (max-width: 1700px) {
  #hero .hero__content {
    width: 85vw;
  }
}
@media screen and (max-width: 1360px) {
  #hero .hero__content {
    width: 90vw;
  }
}
#hero .hero__content .hero__title {
  font-size: 5.6rem;
  font-weight: 900;
  color: #ffffff;
  width: 50vw;
  opacity: 0;
  animation: successAnimation 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
@media screen and (max-width: 1700px) {
  #hero .hero__content .hero__title {
    font-size: 4.8rem;
    width: 60vw;
  }
}
@media screen and (max-width: 1360px) {
  #hero .hero__content .hero__title {
    font-size: 3.6rem;
    width: 80vw;
  }
}
@media screen and (max-width: 560px) {
  #hero .hero__content .hero__title {
    font-size: 3rem;
    text-align: left;
    width: 90vw;
  }
}
#hero .hero__content .hero__subtitle {
  font-size: 1.6rem;
  width: 50vw;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.639);
  margin: 2rem auto 3rem 0;
  opacity: 0;
  animation: successAnimation 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.75s;
}
@media screen and (max-width: 1700px) {
  #hero .hero__content .hero__subtitle {
    margin: 2rem 0;
    width: 70vw;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 560px) {
  #hero .hero__content .hero__subtitle {
    width: 90vw;
    text-align: left;
    font-size: 1.4rem;
  }
}
#hero .hero__content .hero__btn__container {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation-delay: 0.5s;
  opacity: 0;
  animation: successAnimation 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
@media screen and (max-width: 1360px) {
  #hero .hero__content .hero__btn__container {
    justify-content: flex-start;
    text-align: center;
  }
}
@media screen and (max-width: 560px) {
  #hero .hero__content .hero__btn__container {
    flex-direction: column;
  }
}
@media screen and (max-width: 560px) {
  #hero .hero__content .hero__btn__container .btn {
    display: block;
    width: 100%;
  }
}

footer {
  background: #171728;
  color: rgba(255, 255, 255, 0.539);
  width: 100%;
  text-align: center;
  padding: 1rem 0;
}

.footer__container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  text-align: left;
  background: #1D1E33;
  color: white;
  padding: 3rem 0 2rem 0;
}
@media screen and (max-width: 1360px) {
  .footer__container {
    flex-direction: column;
  }
}
.footer__container .footer__row__one {
  width: 20%;
  margin: 0 auto;
}
@media screen and (max-width: 1360px) {
  .footer__container .footer__row__one {
    width: 90%;
  }
}
.footer__container .footer__row__one .footer__company__description {
  width: 90%;
  margin: 1rem 0 1rem 0;
  font-weight: 300;
  opacity: 0.5;
}
@media screen and (max-width: 1360px) {
  .footer__container .footer__row__one .footer__company__description {
    width: 85%;
  }
}
.footer__container .footer__row__one .social-icons__container {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.footer__container .footer__row__one .social-icons__container .social-icon {
  transition: all 0.4s ease;
  border: solid 2px white;
  background: none;
  color: white;
  border-radius: 100%;
  padding: 0.2rem 0.5rem;
  cursor: pointer;
}
.footer__container .footer__row__one .social-icons__container .social-icon:hover {
  transition: all 0.4s ease;
  background: none;
  color: white;
  background: #22B292;
  border-color: #22B292;
  box-shadow: 0 0 10px #22B292;
}
.footer__container .footer__row__one .social-icons__container .social-icon:nth-child(1) {
  padding: 0.2rem 0.6rem;
}
.footer__container .footer__row__one .website-by {
  margin-top: 0.5rem;
}
.footer__container .footer__row__one .website-by .tdl {
  transition: all 0.4s ease;
  color: #22B292;
}
.footer__container .footer__row__one .website-by .tdl:hover {
  transition: all 0.4s ease;
  color: white;
}
.footer__container .footer__row__two {
  width: 20%;
}
@media screen and (max-width: 1360px) {
  .footer__container .footer__row__two {
    width: 90%;
    margin: 2rem auto;
  }
}
.footer__container .footer__row__two h2 {
  margin-bottom: 0.5rem;
  color: #22B292;
}
.footer__container .footer__row__two ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__container .footer__row__two ul a {
  transition: all 0.4s ease;
  color: white;
  opacity: 0.5;
}
.footer__container .footer__row__two ul a:hover {
  transition: all 0.4s ease;
  opacity: 1;
}
.footer__container .footer__row__three {
  width: 20%;
}
@media screen and (max-width: 1360px) {
  .footer__container .footer__row__three {
    width: 90%;
    margin: 2rem auto;
  }
}
.footer__container .footer__row__three h2 {
  margin-bottom: 0.5rem;
  color: #22B292;
}
.footer__container .footer__row__three ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__container .footer__row__three ul a {
  transition: all 0.4s ease;
  color: white;
  opacity: 0.5;
}
.footer__container .footer__row__three ul a:hover {
  transition: all 0.4s ease;
  opacity: 1;
}
.footer__container .footer__row__four {
  width: 20%;
}
@media screen and (max-width: 1360px) {
  .footer__container .footer__row__four {
    width: 90%;
    margin: 2rem auto;
  }
}
.footer__container .footer__row__four h2 {
  color: #22B292;
}
.footer__container .footer__row__four .contact-detail {
  margin: 1rem 0;
}
.footer__container .footer__row__four .contact-detail a {
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.528);
}
.footer__container .footer__row__four .contact-detail a:hover {
  transition: all 0.3s ease;
  color: white;
}
.footer__container .footer__row__four .contact-detail i {
  color: #22B292;
}
.footer__container .footer__row__four address {
  color: white;
  opacity: 0.6;
  font-style: normal;
}

#cta {
  background: #22B292;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 4rem 0;
  position: relative;
}
@media screen and (max-width: 1360px) {
  #cta {
    flex-direction: column;
    text-align: center;
  }
}
#cta .cta__left {
  z-index: 2;
}
#cta .cta__left .cta__title {
  color: white;
  font-size: 3.5rem;
  font-weight: 1000;
}
@media screen and (max-width: 1360px) {
  #cta .cta__left .cta__title {
    font-size: 2.6rem;
    padding: 0 3rem;
  }
}
@media screen and (max-width: 560px) {
  #cta .cta__left .cta__title {
    font-size: 2.2rem;
  }
}
#cta .cta__left .cta__subtitle {
  color: white;
  opacity: 0.7;
  font-size: 1.6rem;
  font-weight: 300;
}
@media screen and (max-width: 1360px) {
  #cta .cta__left .cta__subtitle {
    font-size: 1rem;
    margin-top: 1rem;
  }
}
#cta .cta__right {
  z-index: 2;
}
@media screen and (max-width: 1360px) {
  #cta .cta__right {
    margin-top: 2rem;
  }
}
#cta .cta__image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
#cta:after {
  content: " ";
  background: rgba(29, 30, 51, 0.6274509804);
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  left: 0;
  z-index: 1;
}

.testimonial__section__container {
  width: 90vw;
  margin: 0 auto;
  padding-top: 4rem;
}
@media screen and (max-width: 1360px) {
  .testimonial__section__container {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 560px) {
  .testimonial__section__container {
    width: 90vw;
    padding: 1rem 0;
  }
}
@media screen and (max-width: 1360px) {
  .testimonial__section__container .section-title {
    text-align: center;
    margin-top: 2rem;
  }
}
.testimonial__section__container .testimonial__section__title {
  font-size: 4rem;
  color: rgb(85, 85, 85);
  width: 80vw;
  font-weight: 1000;
  padding: 1rem 0 0 0;
}
@media screen and (max-width: 1360px) {
  .testimonial__section__container .testimonial__section__title {
    font-size: 2.6rem;
    text-align: center;
    margin: 0 auto;
  }
}
@media screen and (max-width: 560px) {
  .testimonial__section__container .testimonial__section__title {
    font-size: 2.8rem;
    text-align: center;
    margin: 0 auto;
    width: 90vw;
  }
}

#testimonials {
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  background-size: cover !important;
  background-position: center !important;
}
#testimonials .testimonial__wrapper {
  display: flex;
  gap: 2rem;
  overflow-x: scroll;
  position: relative;
  padding: 0 1rem;
  margin: 1rem;
}
@media screen and (max-width: 1360px) {
  #testimonials .testimonial__wrapper {
    padding: 0 0 0 1.2rem;
    margin: 0;
  }
}
#testimonials .testimonial__wrapper .testimonial__container {
  position: relative;
  text-align: center;
  padding: 2rem 2rem 0rem 2em;
  border-radius: 10px;
  background: white;
  box-shadow: 0 0 10px lightgrey;
  margin: 2rem auto;
  display: flex;
  min-width: 22vw;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#testimonials .testimonial__wrapper .testimonial__container .testimonial__text {
  height: 250px;
  overflow: scroll;
  text-align: left;
  margin: 2rem 0 1rem 0;
  padding-right: 1rem;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}
#testimonials .testimonial__wrapper .testimonial__container .testimonial__text::-webkit-scrollbar {
  background: none !important;
  width: 8px !important;
}
#testimonials .testimonial__wrapper .testimonial__container .testimonial__text::-webkit-scrollbar-thumb {
  background: rgba(34, 178, 147, 0.1529411765);
  opacity: 0.2 !important;
  height: 5px !important;
  border-radius: 30px;
}
@media screen and (max-width: 1700px) {
  #testimonials .testimonial__wrapper .testimonial__container {
    min-width: 28vw;
  }
}
@media screen and (max-width: 1360px) {
  #testimonials .testimonial__wrapper .testimonial__container {
    min-width: 50vw;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media screen and (max-width: 560px) {
  #testimonials .testimonial__wrapper .testimonial__container {
    min-width: 80vw;
    margin: 2rem 0 1rem 0;
  }
}
#testimonials .user_type {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 0;
  color: white;
  font-size: 0.8rem;
  text-transform: uppercase;
  background: #22B292;
  letter-spacing: 0.2rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.testimonial__wrapper::-webkit-scrollbar {
  background: none;
}

.testimonial__wrapper::-webkit-scrollbar-thumb {
  background: rgba(38, 163, 150, 0.6431372549);
  border-radius: 30px;
}

.use-scrollbar__container {
  background: #F1F1F1;
  padding: 1rem 0;
}
@media screen and (max-width: 1360px) {
  .use-scrollbar__container {
    display: none;
  }
}
.use-scrollbar__container .use-scrollbar {
  font-weight: 900;
  font-size: 3.6rem;
  width: 90%;
  margin: 0 auto;
  opacity: 0.06;
}
@media screen and (max-width: 1700px) {
  .use-scrollbar__container .use-scrollbar {
    font-size: 3.2rem;
  }
}

#job-listings__wrapper {
  background-color: rgb(255, 255, 255);
  padding: 1rem 0;
}
@media screen and (max-width: 560px) {
  #job-listings__wrapper {
    padding: 1rem 0;
  }
}
#job-listings__wrapper .job-listing__card {
  padding: 2rem;
  border-radius: 10px;
  background: white;
  width: 31vw;
  margin: 2rem auto;
  border: solid 1px rgb(223, 223, 223);
}
@media screen and (max-width: 1700px) {
  #job-listings__wrapper .job-listing__card {
    width: 45vw;
  }
}
@media screen and (max-width: 1360px) {
  #job-listings__wrapper .job-listing__card {
    width: 70vw;
  }
}
@media screen and (max-width: 560px) {
  #job-listings__wrapper .job-listing__card {
    width: 90vw;
    padding: 2rem 1.5rem 2rem 1.5rem;
    margin: 0 auto;
  }
}
#job-listings__wrapper .job-listing__card .job-listing__card__title {
  color: #1D1E33;
  font-size: 2.6rem;
  font-weight: 1000;
  margin: 1rem 0;
}
@media screen and (max-width: 560px) {
  #job-listings__wrapper .job-listing__card .job-listing__card__title {
    margin: 1rem 0 2rem 0;
    font-size: 2rem;
  }
}
#job-listings__wrapper .job-listing__card .job-listing__card__details {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  font-weight: 500;
  margin: 1.6rem 0 1rem 0;
}
#job-listings__wrapper .job-listing__card .job-listing__card__details p {
  transition: all 0.3s ease;
  background: #e6fefc;
  border-radius: 30px;
  padding: 0.4rem 1rem;
  color: #1D1E33;
  cursor: none;
}
#job-listings__wrapper .job-listing__card .job-listing__card__details p:hover {
  transition: all 0.3s ease;
  background: #22B292;
  color: white;
  box-shadow: 0 0 10px #22B292;
}
@media screen and (max-width: 560px) {
  #job-listings__wrapper .job-listing__card .job-listing__card__details p {
    text-align: center;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}
@media screen and (max-width: 560px) {
  #job-listings__wrapper .job-listing__card .job-listing__card__details {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 560px) {
  #job-listings__wrapper .job-listing__card .job-category {
    width: 100%;
    display: block;
    text-align: center;
    padding: 0.4rem;
  }
}
#job-listings__wrapper .job-listing__card .job-listing__card__description {
  font-weight: 300;
  padding: 1rem 0 1rem 0;
  height: 250px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}
#job-listings__wrapper .job-listing__card .job-listing__card__description:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(144, 29, 129, 0) 100%);
}
#job-listings__wrapper .job-listing__card .job-listing__card__description p {
  margin: 1.2rem 0;
}
@media screen and (max-width: 560px) {
  #job-listings__wrapper .job-listing__card .job-listing__card__description {
    font-size: 1rem;
    line-height: 1.4;
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 560px) {
  #job-listings__wrapper .job-listing__card a {
    display: block;
    text-align: center;
  }
}

#job-categories {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: white;
  padding: 6rem 0 4rem 0;
}
@media screen and (max-width: 560px) {
  #job-categories {
    padding: 4rem 0 2rem 0;
  }
}
#job-categories .job-search__container {
  margin: 0.2rem 0 1rem 0;
  font-family: "Barlow", sans-serif;
}
#job-categories .job-search__container input {
  padding: 1rem;
  font-size: 1rem;
  border: solid 2px rgba(0, 0, 0, 0.243);
  border-radius: 10px;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  height: 55px;
  margin: 0;
  width: 350px;
}
@media screen and (max-width: 560px) {
  #job-categories .job-search__container input {
    width: 70vw;
    margin-bottom: 2rem;
  }
}
#job-categories .job-search__container input:focus {
  border-color: #22B292 !important;
  outline: none;
}
#job-categories .job-search__container input[type=submit] {
  transition: all 0.4s ease;
  background: #22B292;
  color: white;
  border: solid 2px rgba(0, 0, 0, 0.143);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  width: auto;
  cursor: pointer;
}
#job-categories .job-search__container input[type=submit]:hover {
  transition: all 0.4s ease;
  background: mediumaquamarine;
  border-color: mediumaquamarine;
}
#job-categories .job-categories__title {
  font-size: 3.5rem;
  color: #1D1E33;
  font-weight: 1000;
}
@media screen and (max-width: 1360px) {
  #job-categories .job-categories__title {
    font-size: 2.6rem;
    text-align: center;
    width: 90vw;
    margin: 0 auto;
  }
}
#job-categories .job-categories__text {
  font-size: 1.2rem;
  width: 40vw;
  text-align: center;
  margin: 0 auto;
  padding: 2rem 0;
  color: rgb(106, 106, 106);
}
@media screen and (max-width: 1700px) {
  #job-categories .job-categories__text {
    width: 75vw;
  }
}
@media screen and (max-width: 1360px) {
  #job-categories .job-categories__text {
    width: 85vw;
  }
}
@media screen and (max-width: 560px) {
  #job-categories .job-categories__text {
    font-size: 1rem;
  }
}
#job-categories .job-categories__options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0 0 0;
  width: 80vw;
  margin: 0 auto;
}
@media screen and (max-width: 1360px) {
  #job-categories .job-categories__options {
    width: 90vw;
    padding: 1rem 0;
  }
}
@media screen and (max-width: 560px) {
  #job-categories .job-categories__options {
    width: 90vw;
    padding: 0rem 0;
    gap: 0.8rem;
  }
}
#job-categories .job-categories__options .job-categories__options__btn {
  transition: all 0.3s ease;
  padding: 0.5rem 2rem;
  color: black;
  border: solid 2px #22B292;
  border-radius: 30px;
  outline: none;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 560px) {
  #job-categories .job-categories__options .job-categories__options__btn {
    font-size: 1rem;
    display: block;
    width: 90vw;
    text-align: center;
    background: #22B292;
    color: white;
    padding: 1rem 0.2rem;
    box-shadow: 0 0 10px #22B292;
    font-weight: 600;
  }
}
#job-categories .job-categories__options .job-categories__options__btn:hover {
  transition: all 0.3s ease;
  background: #22B292;
  color: #ffffff;
  box-shadow: 0 0 10px #22B292;
}

#about-us {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(250, 250, 250);
}
@media screen and (max-width: 1360px) {
  #about-us {
    flex-direction: column;
  }
}
#about-us .about-us__text__container,
#about-us .about-us__img__container {
  width: 50vw;
}
@media screen and (max-width: 1360px) {
  #about-us .about-us__text__container,
  #about-us .about-us__img__container {
    width: 100vw;
    height: auto;
  }
}
#about-us .about-us__text__container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
}
@media screen and (max-width: 1360px) {
  #about-us .about-us__text__container {
    padding: 0;
  }
}
#about-us .about-us__text__container .about-us__text {
  width: 80%;
}
@media screen and (max-width: 1360px) {
  #about-us .about-us__text__container .about-us__text {
    width: 85%;
    margin: 3rem auto;
  }
}
@media screen and (max-width: 560px) {
  #about-us .about-us__text__container .about-us__text {
    width: 90%;
  }
}
#about-us .about-us__text__container .about-us__text .section-title {
  color: #22B292;
  font-weight: 900;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}
#about-us .about-us__text__container .about-us__text .about-us__title {
  font-size: 2.4rem;
  font-weight: 1000;
  color: rgb(85, 85, 85);
  margin: 1rem 0 2rem 0;
}
@media screen and (max-width: 560px) {
  #about-us .about-us__text__container .about-us__text .about-us__title {
    font-size: 1.6rem;
    margin: 1rem auto;
  }
}
#about-us .about-us__text__container .about-us__text .about-us__content {
  line-height: 2;
  font-weight: 300;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: rgb(106, 106, 106);
}
@media screen and (max-width: 560px) {
  #about-us .about-us__text__container .about-us__text .about-us__content {
    font-size: 1rem;
  }
}
@media screen and (max-width: 560px) {
  #about-us .about-us__text__container .about-us__text .btn {
    display: block;
    text-align: center;
  }
}
#about-us .about-us__img__container {
  position: relative;
  height: 90vh;
}
@media screen and (max-width: 1700px) {
  #about-us .about-us__img__container {
    height: 150vh;
  }
}
@media screen and (max-width: 1360px) {
  #about-us .about-us__img__container {
    height: 25vh;
  }
}
#about-us .about-us__img__container .about-us__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.user-type__content__container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
  gap: 3rem;
}
@media screen and (max-width: 1360px) {
  .user-type__content__container {
    flex-direction: column;
    gap: 2rem;
    width: 75vw;
    padding: 3rem 0;
  }
}
@media screen and (max-width: 560px) {
  .user-type__content__container {
    padding: 2rem 0;
    width: 100vw;
  }
}
.user-type__content__container .user-type__content__text__container {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  width: 50vw;
}
@media screen and (max-width: 1360px) {
  .user-type__content__container .user-type__content__text__container {
    align-items: center;
  }
}
@media screen and (max-width: 560px) {
  .user-type__content__container .user-type__content__text__container {
    width: 90vw;
  }
}
.user-type__content__container .user-type__content__text {
  width: 30vw;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1360px) {
  .user-type__content__container .user-type__content__text {
    width: 75vw;
    margin: 0 auto;
    align-items: center;
  }
}
@media screen and (max-width: 560px) {
  .user-type__content__container .user-type__content__text {
    width: 100%;
  }
}
@media screen and (max-width: 1360px) {
  .user-type__content__container .user-type__content__text .btn {
    display: block;
    width: 75vw;
  }
}
.user-type__content__container .user-type__top__text {
  font-size: 2.1rem;
  color: #22B292;
  font-weight: 1000;
}
@media screen and (max-width: 1360px) {
  .user-type__content__container .user-type__top__text {
    font-size: 1.6rem;
  }
}
.user-type__content__container .user-type__content {
  color: grey;
  line-height: 2;
  margin-top: 2rem;
  font-weight: 300;
}
.user-type__content__container .user-type__content__img__container {
  width: 50vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1360px) {
  .user-type__content__container .user-type__content__img__container {
    width: 100vw;
    margin: 0 auto;
    align-items: center;
  }
}
.user-type__content__container .user-type__img {
  width: 30rem;
  height: 40rem;
  margin: 0 auto 0 0;
  box-shadow: 15px 15px 0 #22B292;
}
@media screen and (max-width: 1360px) {
  .user-type__content__container .user-type__img {
    margin: 2rem auto;
    height: 500px;
    width: 75vw;
  }
}
@media screen and (max-width: 560px) {
  .user-type__content__container .user-type__img {
    width: 85vw;
    height: 350px;
  }
}
.user-type__content__container .user-type-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.user-type__column__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
  gap: 3rem;
}
@media screen and (max-width: 1360px) {
  .user-type__column__container {
    gap: 4rem;
  }
}
.user-type__column__container .user-type__column {
  text-align: center;
}
@media screen and (max-width: 1700px) {
  .user-type__column__container .user-type__column {
    margin: 0;
  }
}
.user-type__column__container .user-type__column .column__icon {
  font-size: 4rem;
  color: #22B292;
}
.user-type__column__container .user-type__column .column__title {
  font-size: 2.1rem;
  color: #1D1E33;
  margin: 1rem 0;
}
.user-type__column__container .user-type__column .column__description {
  width: 20rem;
  color: grey;
}

::-webkit-file-upload-button {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #e6fefc;
  outline: none;
  border: none;
  font-family: "Barlow", sans-serif;
  padding: 0.5rem;
  margin-right: 1rem;
  color: #22B292;
  border-radius: 5px;
  cursor: pointer;
}
::-webkit-file-upload-button:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #22B292;
  color: #ffffff;
}

.dont-have-cv__container {
  padding: 1.4rem;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  margin: 2rem auto 1rem auto;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 560px) {
  .dont-have-cv__container {
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 1rem;
  }
}
.dont-have-cv__container h3 {
  color: white;
  font-weight: 300;
  font-size: 1.4rem;
}
.dont-have-cv__container a {
  transition: all 0.4s ease;
  color: white;
  font-weight: 900;
}
.dont-have-cv__container a:hover {
  transition: all 0.4s ease;
  color: #22B292;
}
@media screen and (max-width: 560px) {
  .dont-have-cv__container a {
    display: block;
  }
}

#user-type__container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover !important;
  background-position: center !important;
}
#user-type__container .user-type__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3rem 0 2rem 0;
}
@media screen and (max-width: 560px) {
  #user-type__container .user-type__content {
    padding: 3rem 0;
  }
}
#user-type__container .user-type__content .user-type__title {
  font-size: 3.5rem;
  color: #ffffff;
  font-weight: 900;
  margin: 0.2rem 0 1rem 0;
  color: rgb(85, 85, 85);
  text-align: center;
}
@media screen and (max-width: 560px) {
  #user-type__container .user-type__content .user-type__title {
    font-size: 2.4rem;
  }
}
#user-type__container .user-type__content .user-type__card__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin: 1rem 0 1.5rem 0;
}
@media screen and (max-width: 1360px) {
  #user-type__container .user-type__content .user-type__card__container {
    gap: 1rem;
  }
}
@media screen and (max-width: 560px) {
  #user-type__container .user-type__content .user-type__card__container {
    gap: 2rem;
    flex-direction: column;
    margin: 1rem auto 0 auto;
  }
}
#user-type__container .user-type__content .user-type__card__container .user-type__card {
  transition: all 0.3s ease;
  position: relative;
  width: 300px;
  height: 400px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 1360px) {
  #user-type__container .user-type__content .user-type__card__container .user-type__card {
    width: 33.33vw;
  }
}
@media screen and (max-width: 560px) {
  #user-type__container .user-type__content .user-type__card__container .user-type__card {
    width: 90vw;
    height: 250px;
  }
}
#user-type__container .user-type__content .user-type__card__container .user-type__card:hover > .card__img {
  transition: all 1s ease;
  transform: scale(1.2);
}
#user-type__container .user-type__content .user-type__card__container .user-type__card .card__img {
  transition: all 1s ease;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
#user-type__container .user-type__content .user-type__card__container .user-type__card .card__text__container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(62, 64, 99, 0.6274509804);
}
@media screen and (max-width: 560px) {
  #user-type__container .user-type__content .user-type__card__container .user-type__card .card__text__container {
    gap: 1rem;
  }
}
#user-type__container .user-type__content .user-type__card__container .user-type__card .card__text__container .card__title {
  color: #ffffff;
  font-size: 2.1rem;
  font-weight: 1000;
}

.register-vacancy__container {
  padding: 0 0 2rem 0;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-size: cover !important;
  background-position: center center !important;
}
@media screen and (max-width: 1360px) {
  .register-vacancy__container {
    padding: 1rem 0;
  }
}
.register-vacancy__container form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.register-vacancy__container form .wpcf7-response-output {
  width: 30vw;
  padding: 1rem;
  border-radius: 10px;
  background: #f2f2f2;
  text-align: center;
}
@media screen and (max-width: 1360px) {
  .register-vacancy__container form .wpcf7-response-output {
    width: 75vw;
  }
}
@media screen and (max-width: 560px) {
  .register-vacancy__container form .wpcf7-response-output {
    width: 85vw;
  }
}
.register-vacancy__container form input, .register-vacancy__container form select, .register-vacancy__container form textarea, .register-vacancy__container form button {
  display: block;
  width: 30vw;
  padding: 1rem 0 1rem 1rem;
  font-family: "Barlow", sans-serif;
  border: solid 1px #22B292;
  border-radius: 10px;
  font-size: 1rem;
  background: white;
}
.register-vacancy__container form input:focus, .register-vacancy__container form select:focus, .register-vacancy__container form textarea:focus, .register-vacancy__container form button:focus {
  outline: solid 1px #ffffff;
  box-shadow: 0 0 15px white;
}
@media screen and (max-width: 1360px) {
  .register-vacancy__container form input, .register-vacancy__container form select, .register-vacancy__container form textarea, .register-vacancy__container form button {
    width: 75vw;
  }
}
@media screen and (max-width: 560px) {
  .register-vacancy__container form input, .register-vacancy__container form select, .register-vacancy__container form textarea, .register-vacancy__container form button {
    width: 85vw;
  }
}
.register-vacancy__container form input[type=submit] {
  transition: all 0.4s ease;
  background: #22B292;
  margin: 0 auto;
  width: 30vw;
  color: white;
  font-family: "Barlow", sans-serif;
  cursor: pointer;
  font-weight: 900;
}
.register-vacancy__container form input[type=submit]:hover {
  transition: all 0.4s ease;
  background: mediumaquamarine;
  box-shadow: 0 5px 20px rgba(0, 250, 154, 0.652);
  border-color: mediumaquamarine;
}
@media screen and (max-width: 1360px) {
  .register-vacancy__container form input[type=submit] {
    width: 75vw;
  }
}
@media screen and (max-width: 560px) {
  .register-vacancy__container form input[type=submit] {
    width: 85vw;
  }
}
.register-vacancy__container form textarea {
  height: 150px;
}
.register-vacancy__container form select {
  color: #22B292;
}
.register-vacancy__container form label {
  color: white;
  font-size: 1rem;
}
.register-vacancy__container form button {
  transition: all 0.3s ease;
  background: mediumaquamarine;
  border-radius: 10px;
  color: white;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  border: none;
  margin: 1rem 0;
  font-weight: 1000;
  cursor: pointer;
}
.register-vacancy__container form button:hover {
  transition: all 0.3s ease;
  opacity: 0.6;
}
.register-vacancy__container .register-vacancy__title {
  font-size: 3.5rem;
  color: #ffffff;
  font-weight: 1000;
  text-align: center;
  padding: 4rem 0;
}

.success-page__wrapper {
  min-height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
.success-page__wrapper:after {
  content: "";
  background: rgba(0, 0, 0, 0.684);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.success-page__wrapper .success-page__icon {
  color: mediumaquamarine;
  font-size: 5rem;
  background: white;
  border-radius: 100%;
  position: relative;
  z-index: 1;
}
.success-page__wrapper .success-page__title {
  font-size: 5rem;
  color: #ffffff;
  margin: 1rem 0;
  font-weight: 1000;
  opacity: 0;
  animation: successAnimation 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 560px) {
  .success-page__wrapper .success-page__title {
    font-size: 2.6rem;
    text-align: center;
  }
}
.success-page__wrapper .success-page__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  margin: 1rem 0;
  opacity: 0;
  font-weight: 400;
  animation: successAnimation 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 560px) {
  .success-page__wrapper .success-page__subtitle {
    font-size: 1.6rem;
    text-align: center;
    margin: 0;
  }
}
.success-page__wrapper .btn {
  margin-top: 1.5rem;
  opacity: 0;
  animation: successAnimation 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  position: relative;
  z-index: 1;
}

@keyframes successAnimation {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-details__wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 4rem 1rem;
  text-align: center;
  background: #1D1E33;
}
@media screen and (max-width: 1360px) {
  .contact-details__wrapper {
    flex-direction: column;
    padding: 2rem 0;
  }
}
@media screen and (max-width: 560px) {
  .contact-details__wrapper {
    padding: 2rem 0 0 0;
  }
}
.contact-details__wrapper .icon__container {
  transition: all 0.3s ease;
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-details__wrapper .icon__container i {
  transition: all 0.3s ease;
  font-size: 3rem;
  color: #22B292;
}
@media screen and (max-width: 560px) {
  .contact-details__wrapper .icon__container i {
    font-size: 2.5rem;
  }
}
.contact-details__wrapper h1 {
  transition: all 0.4s ease;
  color: #e6fefc;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.2rem;
  font-size: 6rem;
  text-align: center;
  font-weight: 1000;
  opacity: 0.15;
  margin-top: 1rem;
  position: absolute;
  bottom: 0;
  left: 0%;
  z-index: 0;
  transform: translateY(-5rem);
  opacity: 0;
}
.contact-details__wrapper .contact-detail__container {
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  border: solid 3px #22B292;
  padding: 1rem 2rem;
  border-radius: 10px;
  overflow: hidden;
  background: none;
  cursor: pointer;
}
.contact-details__wrapper .contact-detail__container:hover {
  transition: all 0.3s ease;
  border-color: white;
}
.contact-details__wrapper .contact-detail__container:hover > .icon__container i {
  transition: all 0.3s ease;
  color: white;
}
@media screen and (max-width: 1360px) {
  .contact-details__wrapper .contact-detail__container {
    border: none;
    padding: 1rem 0;
  }
}
@media screen and (max-width: 560px) {
  .contact-details__wrapper .contact-detail__container {
    padding: 0.5rem;
  }
}
.contact-details__wrapper .contact-detail__container:hover {
  transition: all 0.4s ease;
  opacity: 0.8;
}
.contact-details__wrapper .contact-detail__container:hover > h1 {
  transition: all 0.4s ease;
  transform: translateY(0);
  opacity: 0.1;
}
.contact-details__wrapper .contact-detail__container:hover > .contact-detail {
  transition: all 0.4s ease;
  text-shadow: 0 0 5px white;
}
.contact-details__wrapper .contact-detail {
  transition: all 0.4s ease;
  color: #ffffff;
  font-weight: 300;
  font-size: 1.5rem;
  z-index: 1;
}
@media screen and (max-width: 560px) {
  .contact-details__wrapper .contact-detail {
    width: 85vw;
    text-align: center;
    font-size: 1.2rem;
  }
}

.contact-page__ss__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  text-align: center;
  background: #1D1E33;
}
@media screen and (max-width: 1360px) {
  .contact-page__ss__container {
    flex-direction: column;
    margin: 0 0 0 0;
    border-top: solid 2px #1D1E33;
    min-height: 100vh;
  }
}
.contact-page__ss__container .ss__content__left,
.contact-page__ss__container .ss__content__right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50vw;
  flex-direction: column;
}
@media screen and (max-width: 1360px) {
  .contact-page__ss__container .ss__content__left,
  .contact-page__ss__container .ss__content__right {
    width: 100vw;
    height: auto;
  }
}
.contact-page__ss__container .ss__content__left {
  width: 50vw;
}
@media screen and (max-width: 1360px) {
  .contact-page__ss__container .ss__content__left {
    padding: 1rem;
    margin-bottom: 0;
    width: 85vw;
  }
}
@media screen and (max-width: 560px) {
  .contact-page__ss__container .ss__content__left {
    margin-bottom: 0;
    width: 100vw;
  }
}
.contact-page__ss__container .ss__content__left h1 {
  color: white;
  font-size: 3rem;
  font-weight: 1000;
  width: 65%;
  margin: 4rem auto 0 auto;
  text-align: left;
}
@media screen and (max-width: 1700px) {
  .contact-page__ss__container .ss__content__left h1 {
    width: 75%;
    margn: 3rem auto 0 auto;
  }
}
@media screen and (max-width: 1360px) {
  .contact-page__ss__container .ss__content__left h1 {
    width: 100%;
    font-size: 3rem;
    width: 100%;
    margin: 2rem auto 0 auto;
  }
}
@media screen and (max-width: 560px) {
  .contact-page__ss__container .ss__content__left h1 {
    font-size: 2.6rem;
    padding-top: 2rem;
    width: 100%;
  }
}
.contact-page__ss__container .ss__content__left .contact-page__form {
  width: 65%;
  margin: 2rem auto;
}
@media screen and (max-width: 1700px) {
  .contact-page__ss__container .ss__content__left .contact-page__form {
    width: 75%;
  }
}
@media screen and (max-width: 1360px) {
  .contact-page__ss__container .ss__content__left .contact-page__form {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .contact-page__ss__container .ss__content__left .contact-page__form {
    margin: 2rem auto 0 auto;
  }
}
.contact-page__ss__container .ss__content__left .contact-page__form .wpcf7-response-output {
  background: none;
  color: white;
  text-align: center;
  padding: 1rem;
}
.contact-page__ss__container .ss__content__left .contact-page__form form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact-page__ss__container .ss__content__left .contact-page__form form input, .contact-page__ss__container .ss__content__left .contact-page__form form button {
  display: block;
  width: 100%;
  padding: 1rem 0 1rem 1rem;
  font-family: "Barlow", sans-serif;
  border: solid 1px #22B292;
  background: none;
  border-radius: 5px;
  color: white;
  font-size: 1.05rem;
}
.contact-page__ss__container .ss__content__left .contact-page__form form input, .contact-page__ss__container .ss__content__left .contact-page__form form button, .contact-page__ss__container .ss__content__left .contact-page__form form textarea {
  transition: all 0.4s ease;
}
.contact-page__ss__container .ss__content__left .contact-page__form form input:focus, .contact-page__ss__container .ss__content__left .contact-page__form form button:focus, .contact-page__ss__container .ss__content__left .contact-page__form form textarea:focus {
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.546);
  transform: scale(1.01);
}
.contact-page__ss__container .ss__content__left .contact-page__form form textarea {
  display: block;
  width: 100%;
  height: 300px;
  padding: 1rem 0 1rem 1rem;
  font-family: "Barlow", sans-serif;
  border: solid 1px #22B292;
  background: none;
  border-radius: 5px;
  color: white;
  resize: none;
  font-size: 1.05rem;
}
.contact-page__ss__container .ss__content__left .contact-page__form form input[type=submit] {
  transition: all 0.4s ease;
  background: #22B292;
  font-weight: 900;
  cursor: pointer;
}
.contact-page__ss__container .ss__content__left .contact-page__form form input[type=submit]:hover {
  transition: all 0.4s ease;
  background: mediumaquamarine;
  border-color: mediumaquamarine;
  box-shadow: 0 10px 20px rgba(0, 250, 154, 0.277);
}

.ss__content__right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-left: solid 5px #22B292;
  background: #1D1E33;
}
@media screen and (max-width: 1360px) {
  .ss__content__right {
    border: none;
  }
}
.ss__content__right #gmap_canvas {
  background: none !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1360px) {
  .ss__content__right #gmap_canvas {
    height: 50%;
  }
}

.news-article__cards__container {
  min-height: 50vh;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4rem;
  background-size: cover !important;
  background-position: center !important;
  background: #1D1E33 !important;
}
@media screen and (max-width: 1360px) {
  .news-article__cards__container {
    flex-direction: column;
    gap: 2rem;
    height: auto;
    padding: 2rem;
  }
}
@media screen and (max-width: 560px) {
  .news-article__cards__container {
    padding: 2rem 0;
  }
}
.news-article__cards__container .news-article-snippet__card {
  position: relative;
  width: 25vw;
  border-radius: 5px;
  background: #1D1E33;
  border-radius: 10px;
}
@media screen and (max-width: 1700px) {
  .news-article__cards__container .news-article-snippet__card {
    width: 28vw;
  }
}
@media screen and (max-width: 1360px) {
  .news-article__cards__container .news-article-snippet__card {
    width: 90vw;
    display: flex;
  }
}
@media screen and (max-width: 560px) {
  .news-article__cards__container .news-article-snippet__card {
    width: 92vw;
    margin: 0 auto;
    flex-direction: column;
  }
}
.news-article__cards__container .news-article-snippet__card .news-article__img {
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 13px;
}
@media screen and (max-width: 1360px) {
  .news-article__cards__container .news-article-snippet__card .news-article__img {
    width: 40vw;
    display: flex;
    height: 100%;
  }
}
@media screen and (max-width: 560px) {
  .news-article__cards__container .news-article-snippet__card .news-article__img {
    width: 100%;
    flex: none;
    height: 250px;
  }
}
.news-article__cards__container .news-article-snippet__card .news-article-card__content {
  padding: 2rem 0;
  position: relative;
}
@media screen and (max-width: 1360px) {
  .news-article__cards__container .news-article-snippet__card .news-article-card__content {
    padding: 2rem 0 2rem 2rem;
  }
}
@media screen and (max-width: 560px) {
  .news-article__cards__container .news-article-snippet__card .news-article-card__content {
    padding: 1.2rem 0;
  }
}
.news-article__cards__container .news-article-snippet__card .news-article-card__content .news-article-card__title {
  font-weight: 1000;
  color: white;
  font-size: 2rem;
  margin: 0 0 2rem 0;
}
@media screen and (max-width: 1700px) {
  .news-article__cards__container .news-article-snippet__card .news-article-card__content .news-article-card__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 560px) {
  .news-article__cards__container .news-article-snippet__card .news-article-card__content .news-article-card__title {
    margin: 1rem 0 2rem 0;
  }
}
.news-article__cards__container .news-article-snippet__card .news-article-card__content .news-article-card__excerpt {
  transition: all 0.4s ease;
  font-size: 1rem;
  margin: 1rem 0 1.2rem 0;
  border-radius: 10px;
  padding: 0.5rem;
  overflow: hidden;
  height: 160px;
  color: white;
  opacity: 0.7;
  line-height: 1.6rem;
}
.news-article__cards__container .news-article-snippet__card .news-article-card__content .news-article-card__excerpt a {
  color: #22B292;
}
.news-article__cards__container .news-article-snippet__card .news-article-card__content .news-article-card__excerpt:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -2rem;
  background: linear-gradient(transparent 150px, #1D1E33);
}
@media screen and (max-width: 560px) {
  .news-article__cards__container .news-article-snippet__card .news-article-card__content .news-article-card__excerpt:after {
    height: 100%;
    top: 2rem;
  }
}
.news-article__cards__container .news-article-snippet__card .news-article-card__content a {
  position: relative;
  z-index: 1;
}
.news-article__cards__container .news-article-snippet__card .news-article-card__content .news-article-card__details__container {
  display: flex;
  margin: 1rem 0;
  gap: 0.8rem;
}
@media screen and (max-width: 560px) {
  .news-article__cards__container .news-article-snippet__card .news-article-card__content .news-article-card__details__container {
    flex-direction: column;
  }
}
.news-article__cards__container .news-article-snippet__card .news-article-card__content .news-article-card__details__container .news-article-card__details {
  transition: all 0.3s ease;
  border-radius: 30px;
  background: #22B292;
  font-size: 0.8rem;
  padding: 0.2rem 1rem;
  color: white;
  box-shadow: 0 0 10px #22B292;
  cursor: none;
  font-weight: 500;
}
.news-article__cards__container .news-article-snippet__card .news-article-card__content .news-article-card__details__container .news-article-card__details:hover {
  transition: all 0.3s ease;
  background: rgba(38, 163, 150, 0.6431372549);
  color: white;
  text-align: left;
}
@media screen and (max-width: 1360px) {
  .news-article__cards__container .news-article-snippet__card .news-article-card__content .news-article-card__details__container .news-article-card__details {
    padding: 0.5rem 1rem;
    text-align: center;
    font-weight: 500;
  }
}
.news-article__cards__container .news-article-snippet__card .larger-txt-btn {
  transition: all 0.4s ease;
  border-radius: 100%;
  padding: 0.1rem 0.7rem;
  background: none;
  border: solid 2px #22B292;
  display: inline;
  color: #22B292;
  font-weight: 1000;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.news-article__cards__container .news-article-snippet__card .larger-txt-btn-activated {
  transition: all 0.4s ease;
  color: white;
  background: #22B292;
  transform: rotate(45deg);
}

.news-article-title {
  padding: 12rem 0 1.6rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
}
@media screen and (max-width: 1360px) {
  .news-article-title {
    padding: 12rem 0 2rem 0;
    background-attachment: unset;
  }
}
@media screen and (max-width: 560px) {
  .news-article-title {
    padding: 8rem 0.5rem 2rem 0.5rem;
  }
}
.news-article-title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.321);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.news-article-title .news-title {
  font-weight: 900;
  color: white;
  font-size: 3rem;
  z-index: 1;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 1700px) {
  .news-article-title .news-title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1360px) {
  .news-article-title .news-title {
    font-size: 2.4rem;
    text-align: left;
    width: 80%;
  }
}
@media screen and (max-width: 560px) {
  .news-article-title .news-title {
    font-size: 2rem;
    text-align: left;
    width: 95%;
    margin: 0 auto;
  }
}

.single-news__wrapper {
  padding: 2rem 0 2rem 0;
  background-size: cover !important;
  background-position: center !important;
}
.single-news__wrapper .single-news__content {
  width: 40vw;
  margin: 0 auto;
}
@media screen and (max-width: 1700px) {
  .single-news__wrapper .single-news__content {
    width: 50vw;
  }
}
@media screen and (max-width: 1360px) {
  .single-news__wrapper .single-news__content {
    width: 80vw;
  }
}
@media screen and (max-width: 560px) {
  .single-news__wrapper .single-news__content {
    width: 90vw;
  }
}
.single-news__wrapper .single-news__content h1 {
  color: white;
  font-size: 4rem;
  font-weight: 900;
}
@media screen and (max-width: 1360px) {
  .single-news__wrapper .single-news__content h1 {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 560px) {
  .single-news__wrapper .single-news__content h1 {
    font-size: 2.6rem;
  }
}
.single-news__wrapper .single-news__content h2, .single-news__wrapper .single-news__content h3, .single-news__wrapper .single-news__content h4 {
  color: white;
}
.single-news__wrapper .single-news__content p {
  color: rgba(255, 255, 255, 0.489);
  margin: 1rem 0 2rem 0;
  line-height: 1.8;
}
.single-news__wrapper .single-news__content a {
  color: #22B292;
  font-weight: 600;
}
.single-news__wrapper .single-news__content ul {
  position: relative;
  color: white;
  opacity: 0.7;
  left: 1.4rem;
  margin: 2rem 0;
}
.single-news__wrapper .single-news__content hr {
  opacity: 0.5;
  margin-top: 1rem;
}
@media screen and (max-width: 560px) {
  .single-news__wrapper .single-news__content hr {
    margin: 0.5rem;
  }
}
.single-news__wrapper .single-news__content img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
}
.single-news__wrapper .single-news__content .single-news__details {
  color: white;
  display: flex;
  gap: 1rem;
  margin: 2rem 0 3rem 0;
}
@media screen and (max-width: 560px) {
  .single-news__wrapper .single-news__content .single-news__details {
    flex-direction: column;
  }
}
.single-news__wrapper .single-news__content .single-news__details div, .single-news__wrapper .single-news__content .single-news__details a {
  background: #22B292;
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  box-shadow: 0 0 10px #22B292;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border: solid 2px #22B292;
}
@media screen and (max-width: 560px) {
  .single-news__wrapper .single-news__content .single-news__details div, .single-news__wrapper .single-news__content .single-news__details a {
    font-size: 0.8rem;
  }
}
.single-news__wrapper .single-news__content .single-news__details a {
  transition: all 0.3s ease;
  background: none;
  color: white;
  box-shadow: none;
}
.single-news__wrapper .single-news__content .single-news__details a:hover {
  transition: all 0.3s ease;
  background: #22B292;
  color: white !important;
  box-shadow: 0 0 10px #22B292 !important;
  border-color: #22B292;
}
.single-news__wrapper .single-news__content .next-post {
  transition: all 0.3s ease;
  color: #22B292;
  font-size: 1.4rem;
}
.single-news__wrapper .single-news__content .next-post:hover {
  transition: all 0.3s ease;
  opacity: 0.7;
}
.single-news__wrapper .single-news__content .post-title {
  color: white;
  margin-bottom: 2rem;
}

#about-us-page {
  background-size: cover !important;
  background-position: center !important;
}

.about-content h2 {
  opacity: 1;
  color: #1D1E33;
  font-weight: 900;
  font-size: 1.8rem;
}
@media screen and (max-width: 560px) {
  .about-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
  }
}

.about-content p {
  margin: 1rem 0;
}

.founder-cards-title {
  text-align: center;
}
@media screen and (max-width: 1700px) {
  .founder-cards-title {
    margin-bottom: 2rem;
  }
}

#founders {
  padding: 2rem 0 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1360px) {
  #founders {
    flex-direction: column;
    padding: 1rem 0 2rem 0;
  }
}
#founders .founder-cards-title {
  display: block;
  text-align: center;
}
#founders .founder-card {
  transition: all 0.3s ease;
  width: 40vw;
  height: 300px;
  position: relative;
  display: flex;
}
@media screen and (max-width: 1700px) {
  #founders .founder-card {
    width: 45vw;
    height: 325px;
  }
}
@media screen and (max-width: 1360px) {
  #founders .founder-card {
    width: 85vw;
    height: auto;
  }
}
@media screen and (max-width: 560px) {
  #founders .founder-card {
    width: 90vw;
    flex-direction: column;
  }
}
#founders .founder-card:hover {
  transition: all 0.3s ease;
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgb(188, 188, 188);
}
#founders .founder-card:hover > .founder-card__text {
  transition: all 0.3s ease;
  background: white;
}
#founders .founder-card:hover > img {
  transition: all 0.3s ease;
  filter: grayscale(0);
}
#founders .founder-card img {
  transition: all 0.3s ease;
  display: block;
  width: 35%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-right: solid 5px #22B292;
  filter: grayscale(100%);
}
@media screen and (max-width: 1360px) {
  #founders .founder-card img {
    width: 45%;
    height: auto;
    filter: grayscale(0);
  }
}
@media screen and (max-width: 560px) {
  #founders .founder-card img {
    width: 100%;
    border-right: none;
    border-bottom: solid 5px #22B292;
  }
}
#founders .founder-card .founder-card__text {
  transition: all 0.3s ease;
  padding: 1.2rem;
  background: none;
  position: relative;
}
#founders .founder-card .founder-card__text .linkedin-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
#founders .founder-card .founder-card__text .linkedin-icon i {
  transition: all 0.3s ease;
  color: #22B292;
  font-size: 2rem;
}
#founders .founder-card .founder-card__text .linkedin-icon i:hover {
  transition: all 0.3s ease;
  color: #1D1E33;
}
#founders .founder-card .founder-card__text .founder-name {
  color: #1D1E33;
  font-size: 2rem;
  margin: 2rem 0 1rem 0;
  font-weight: 900;
}
@media screen and (max-width: 560px) {
  #founders .founder-card .founder-card__text .founder-name {
    font-size: 1.8rem;
    margin: 1rem 0;
  }
}
#founders .founder-card .founder-card__text hr {
  border: solid 1px #22B292;
  margin-bottom: 1rem;
}
#founders .founder-card .founder-card__text .founder-bio {
  line-height: 1.6;
  font-size: 1.05rem;
  opacity: 0.5;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 560px) {
  #founders .founder-card .founder-card__text .founder-bio {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }
}

#expertise {
  background: #1D1E33;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 560px) {
  #expertise {
    flex-direction: column;
  }
}
#expertise .expertise-column {
  width: 50vw;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1360px) {
  #expertise .expertise-column {
    width: 100vw;
  }
}
@media screen and (max-width: 1360px) {
  #expertise .expertise-column.text-column {
    width: 65vw;
  }
}
@media screen and (max-width: 560px) {
  #expertise .expertise-column.text-column {
    width: 100vw;
  }
}
@media screen and (max-width: 1360px) {
  #expertise .expertise-column.image-column {
    width: 35vw;
  }
}
@media screen and (max-width: 560px) {
  #expertise .expertise-column.image-column {
    width: 100vw;
  }
}
#expertise .expertise-column .expertise-text {
  width: 75%;
  margin: 2rem auto;
  color: white;
  padding: 14rem 0 10rem 0;
}
@media screen and (max-width: 1700px) {
  #expertise .expertise-column .expertise-text {
    padding: 10rem 0 4rem 0;
  }
}
@media screen and (max-width: 1360px) {
  #expertise .expertise-column .expertise-text {
    padding: 8rem 0 1rem 0;
    width: 85%;
  }
}
@media screen and (max-width: 560px) {
  #expertise .expertise-column .expertise-text {
    padding: 2.8rem 0 1rem 0;
    width: 90%;
  }
}
#expertise .expertise-column .expertise-text h4 {
  color: #22B292;
}
#expertise .expertise-column .expertise-text h2 {
  color: white;
  font-size: 3rem;
  margin: 1rem 0 2rem 0;
  font-weight: 900;
}
@media screen and (max-width: 1700px) {
  #expertise .expertise-column .expertise-text h2 {
    font-size: 2.6rem;
  }
}
#expertise .expertise-column .expertise-text p {
  color: white;
  opacity: 0.8;
  margin: 1rem 0;
  font-size: 1.1rem;
  font-weight: 300;
}
@media screen and (max-width: 1700px) {
  #expertise .expertise-column .expertise-text p {
    font-size: 1rem;
  }
}
#expertise .expertise-column .expertise-text .btn {
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
  top: 1rem;
}
#expertise .expertise-column img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*MAIN CONTAINER*/
.sector-section__container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-position: left center;
  background-size: cover;
  /*UNCOMMENT TO REVERSE*/
  flex-direction: row-reverse;
}
@media screen and (max-width: 1360px) {
  .sector-section__container:nth-child(even) {
    flex-direction: column-reverse;
  }
}

/*HALF CONTAINER*/
.sector-section-column {
  width: 50vw;
}

/*TEXT HALF*/
.col-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(241, 241, 241);
  padding: 4rem 0;
}

/*TEXT HALF CONTENT */
.sector-column-content {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 1360px) {
  .sector-column-content {
    margin: 2rem auto 1rem auto;
  }
}

/*TEXT HALF COMPONENTS*/
.sector-small-title {
  color: #22B292;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5rem;
}

.sector-title {
  font-size: 2.6rem;
  margin-bottom: 2rem;
  color: #1D1E33;
}

.sector-paragraph {
  line-height: 1.6;
  margin: 1rem 0;
  color: rgb(108, 108, 108);
  opacity: 0.7;
  font-weight: 300;
}

.sector-contact-container {
  background-size: 180% !important;
  background-position: center !important;
  border-radius: 10px;
  display: flex;
  padding: 1rem 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  width: 50%;
  margin-top: 3rem;
}
@media screen and (max-width: 1700px) {
  .sector-contact-container {
    width: 65%;
  }
}
@media screen and (max-width: 1360px) {
  .sector-contact-container {
    width: 55%;
  }
}
@media screen and (max-width: 560px) {
  .sector-contact-container {
    width: 100%;
    gap: 1.5rem;
  }
}
.sector-contact-container img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}
.sector-contact-container h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  margin: 1rem 0;
}
.sector-contact-container .sector-contact-container__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
}
.sector-contact-container .sector-contact-container__icons a i {
  transition: all 0.4s ease;
  color: white;
  opacity: 0.5;
  font-size: 1.8rem;
}
.sector-contact-container .sector-contact-container__icons a i:hover {
  transition: all 0.4s ease;
  opacity: 1;
}

/**/
/*IMAGE SIDE (TRANSPARENT HALF)*/
.col-2 {
  background: none;
  position: relative;
}

/*TABLET RESPONSIVE*/
@media screen and (max-width: 1200px) {
  .sector-section__container {
    flex-direction: column;
    background: white;
  }
  .col-1 {
    padding: 2rem 0;
  }
  .sector-section-column {
    width: 100vw;
  }
  .sector-column-content {
    width: 80%;
  }
  /*GIVES IMAGE SIDE THE FULL SIZE IMAGE*/
  .col-2 {
    height: 30vh;
    background-size: cover;
    background-position: center center;
  }
}
/**/
/*MOBILE RESPONSIVE*/
@media screen and (max-width: 560px) {
  .sector-column-content {
    width: 85%;
  }
}
/**/
.job-seekers__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  gap: 2rem;
}
.job-seekers__cta:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 30, 51, 0.8549019608);
}
.job-seekers__cta h3 {
  color: white;
  font-size: 3.6rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1360px) {
  .job-seekers__cta h3 {
    width: 90%;
    margin: 0 auto;
    font-size: 2.6rem;
  }
}
.job-seekers__cta a {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  padding: 0.8rem 2rem;
}

.templates-page__wrapper {
  background-size: cover !important;
  background-position: center !important;
  padding: 0;
}
.templates-page__wrapper .templates-title {
  color: white;
  font-weight: 200;
  padding: 1.2rem 0 1.2rem 0;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  background: #22B292;
}
@media screen and (max-width: 1360px) {
  .templates-page__wrapper .templates-title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 560px) {
  .templates-page__wrapper .templates-title {
    font-size: 1rem;
    padding: 1.2rem 3rem;
  }
}
.templates-page__wrapper .template-cards__wrapper {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  margin: 2rem auto 2rem auto;
}
@media screen and (max-width: 560px) {
  .templates-page__wrapper .template-cards__wrapper {
    gap: 3rem;
    margin: 2rem auto 1rem auto;
  }
}
.templates-page__wrapper .template-cards__wrapper .template__container {
  transition: all 0.3s ease;
  position: relative;
  width: 300px;
}
@media screen and (max-width: 560px) {
  .templates-page__wrapper .template-cards__wrapper .template__container {
    width: 90vw;
  }
}
.templates-page__wrapper .template-cards__wrapper .template__container img {
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  height: 400px;
  filter: grayscale(100%);
  border-radius: 5px;
  border: solid 1px grey;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1360px) {
  .templates-page__wrapper .template-cards__wrapper .template__container img {
    filter: grayscale(0);
  }
}
.templates-page__wrapper .template-cards__wrapper .template__container h1 {
  transition: all 0.3s ease;
  color: grey;
  margin-top: 1.8rem;
}
@media screen and (max-width: 560px) {
  .templates-page__wrapper .template-cards__wrapper .template__container h1 {
    margin-top: 1rem;
  }
}
.templates-page__wrapper .template-cards__wrapper .template__container h4 {
  color: #22B292;
  margin: 1rem 0 1rem 0;
}
.templates-page__wrapper .template-cards__wrapper .template__container h4 span {
  color: #222;
  opacity: 0.5;
}
.templates-page__wrapper .template-cards__wrapper .template__container a {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  color: white;
}
.templates-page__wrapper .template-cards__wrapper .template__container:hover > img {
  transition: all 0.3s ease;
  filter: grayscale(0);
  transform: translateY(-12px);
  box-shadow: 0 5px 20px rgb(207, 207, 207);
}
.templates-page__wrapper .template-cards__wrapper .template__container:hover > h1 {
  transition: all 0.3s ease;
  color: #22B292;
}
.templates-page__wrapper .template-cards__wrapper .template__container:hover {
  transition: all 0.3s ease;
  transform: translateY(-5px);
}

.search-page-header {
  background: #1D1E33;
  padding: 12rem 0 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 560px) {
  .search-page-header {
    padding: 10rem 0 4rem 0;
  }
}
.search-page-header .search-page-title {
  font-size: 2.4rem;
  font-weight: 300;
  color: white;
  margin-bottom: 2rem;
}
.search-page-header .search-page-title span {
  color: #22B292;
  font-weight: 400;
}
@media screen and (max-width: 560px) {
  .search-page-header .search-page-title span {
    display: block;
    width: 90vw;
  }
}
@media screen and (max-width: 560px) {
  .search-page-header .search-page-title {
    width: 90%;
    margin: 0 auto 2rem auto;
  }
}
.search-page-header.no-results {
  height: 80vh;
}
.search-page-header input {
  transition: all 0.4s ease;
  padding: 1rem;
  font-size: 1.2rem;
  border: solid 2px rgba(0, 0, 0, 0.243);
  border-radius: 10px;
  height: 55px;
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  width: 350px;
}
@media screen and (max-width: 560px) {
  .search-page-header input {
    width: auto;
    width: 70vw;
  }
}
.search-page-header input:focus {
  transition: all 0.4s ease;
  border-color: #22B292 !important;
  outline: none;
  box-shadow: 0 0 20px #22B292;
}
.search-page-header input[type=submit] {
  transition: all 0.4s ease;
  background: #22B292;
  color: white;
  font-family: "Barlow", sans-serif;
  border: solid 2px rgba(0, 0, 0, 0.143);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  width: auto;
  cursor: pointer;
}
.search-page-header input[type=submit]:hover {
  transition: all 0.4s ease;
  background: mediumaquamarine;
  border-color: mediumaquamarine;
}

.search-page-header__no-results {
  height: 100vh;
}

#single-listing {
  display: flex;
}
@media screen and (max-width: 560px) {
  #single-listing {
    flex-direction: column;
  }
}
#single-listing .single-listing__column.listing-text-side {
  width: 45vw;
  background: #1D1E33;
}
@media screen and (max-width: 1700px) {
  #single-listing .single-listing__column.listing-text-side {
    width: 55vw;
  }
}
@media screen and (max-width: 1360px) {
  #single-listing .single-listing__column.listing-text-side {
    width: 85vw;
  }
}
@media screen and (max-width: 560px) {
  #single-listing .single-listing__column.listing-text-side {
    width: 100vw;
  }
}
#single-listing .single-listing__column.listing-text-side .single-listing__content {
  width: 75%;
  margin: 16rem auto 6rem auto;
}
@media screen and (max-width: 1360px) {
  #single-listing .single-listing__column.listing-text-side .single-listing__content {
    width: 85%;
    margin: 14rem auto 4rem auto;
  }
}
@media screen and (max-width: 560px) {
  #single-listing .single-listing__column.listing-text-side .single-listing__content {
    width: 90%;
    margin: 10rem auto 3rem auto;
  }
}
#single-listing .single-listing__column.listing-text-side .single-listing__content h1 {
  font-size: 3.8rem;
  color: white;
  font-weight: 900;
}
@media screen and (max-width: 560px) {
  #single-listing .single-listing__column.listing-text-side .single-listing__content h1 {
    font-size: 2.8rem;
  }
}
#single-listing .single-listing__column.listing-text-side .single-listing__content .single-listing__details {
  display: flex;
  gap: 0.8rem;
  margin: 1.4rem 0 4rem 0;
}
@media screen and (max-width: 560px) {
  #single-listing .single-listing__column.listing-text-side .single-listing__content .single-listing__details {
    flex-direction: column;
    margin: 2rem 0 2rem 0;
  }
}
#single-listing .single-listing__column.listing-text-side .single-listing__content .single-listing__details .single-listing__detail {
  color: white;
  border-radius: 30px;
  padding: 0.4rem 1rem;
  background: #22B292;
  border: solid 2px #22B292;
  cursor: none;
  text-align: center;
}
@media screen and (max-width: 560px) {
  #single-listing .single-listing__column.listing-text-side .single-listing__content .single-listing__details .single-listing__detail {
    display: block;
    width: 90vw;
  }
}
#single-listing .single-listing__column.listing-text-side .single-listing__content .single-listing__details .single-listing__detail.transparent-detail {
  background: none;
}
#single-listing .single-listing__column.listing-text-side .single-listing__content .single-listing__description {
  margin-bottom: 4rem;
  color: white !important;
}
@media screen and (max-width: 1360px) {
  #single-listing .single-listing__column.listing-text-side .single-listing__content .single-listing__description {
    margin-bottom: 3rem;
  }
}
#single-listing .single-listing__column.listing-text-side .single-listing__content .single-listing__description p {
  color: rgba(255, 255, 255, 0.514);
  margin: 1.2rem 0;
  font-weight: 300;
}
#single-listing .single-listing__column.listing-text-side .single-listing__content .single-listing__description h2 {
  color: white;
  font-size: 1.6rem;
}
#single-listing .single-listing__column.listing-text-side .single-listing__content .single-listing__description h4 {
  color: #22B292;
  margin-top: 2rem;
}
#single-listing .single-listing__column.listing-text-side .single-listing__content .single-listing__description ul {
  color: white;
  opacity: 0.6;
  position: relative;
  left: 1rem;
  margin: 2rem 0;
}
#single-listing .single-listing__column.listing-text-side .single-listing__content .single-listing__description ul li {
  margin: 1rem 0;
}
@media screen and (max-width: 560px) {
  #single-listing .single-listing__column.listing-text-side .single-listing__content a {
    width: 90vw;
    text-align: center;
    display: block;
  }
}
#single-listing .single-listing__column.listing-image-side {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  width: 55vw;
}
@media screen and (max-width: 1700px) {
  #single-listing .single-listing__column.listing-image-side {
    width: 45vw;
  }
}
@media screen and (max-width: 1360px) {
  #single-listing .single-listing__column.listing-image-side {
    width: 15vw;
  }
}
@media screen and (max-width: 560px) {
  #single-listing .single-listing__column.listing-image-side {
    width: 100vw;
    height: 0;
  }
}
#single-listing .single-listing__column.listing-image-side:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 163, 150, 0.6431372549);
}

.page-title__container {
  padding: 8rem 0 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
}
@media screen and (max-width: 1360px) {
  .page-title__container {
    background-attachment: unset !important;
  }
}
@media screen and (max-width: 560px) {
  .page-title__container {
    padding: 8.2rem 0 2rem 0;
    background-size: 100% !important;
  }
}
.page-title__container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.527);
}
.page-title__container h1 {
  color: white;
  font-size: 3.8rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: pageTitleEntrance 1s ease;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 560px) {
  .page-title__container h1 {
    font-size: 3rem;
  }
}

@keyframes pageTitleEntrance {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page__main__wrapper {
  margin: 0 auto;
}
.page__main__wrapper .page-banner__title {
  color: white;
  padding: 10rem 0 4rem 0;
  background: #222;
  -webkit-text-decoration: uppercase;
          text-decoration: uppercase;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 1000;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}
@media screen and (max-width: 560px) {
  .page__main__wrapper .page-banner__title {
    padding: 6rem 2.5rem 2.5rem 2.5rem;
    font-size: 2.6rem;
  }
}
.page__main__wrapper .page__content {
  line-height: 2;
  font-weight: 200;
}

#employees__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  text-align: center;
  padding: 8rem 4rem;
}
#employees__container .employee__card__container {
  transition: all 0.3s ease;
  padding: 2rem;
  border-radius: 10px;
  border: solid 2px rgb(195, 192, 192);
  box-shadow: 0 0 10px rgb(195, 192, 192);
}
#employees__container .employee__card__container:hover {
  transition: all 0.3s ease;
  background: rgba(38, 163, 150, 0.6431372549);
}
#employees__container .employee__card__container:hover > h2 {
  transition: all 0.3s ease;
  color: aqua;
}
#employees__container .employee__card__container .employee__card__start__date {
  color: rgb(195, 192, 192);
}
#employees__container .employee__card__container .employee__card__start__date .color-txt {
  color: #22B292;
}
#employees__container .employee__card__container .employee__card__name {
  transition: all 0.3s ease;
  color: #22B292;
  font-size: 1.6rem;
}
#employees__container .employee__card__container p {
  transition: all 0.3s ease;
  color: rgb(58, 58, 58);
  width: 60%;
  margin: 1rem auto;
}

#error__404__container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 1360px) {
  #error__404__container {
    background-size: contain !important;
  }
}
#error__404__container .error__404__content {
  width: 75vw;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1360px) {
  #error__404__container .error__404__content {
    width: 85vw;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 560px) {
  #error__404__container .error__404__content {
    width: 90vw;
  }
}
#error__404__container .error__404__content .error__404__title {
  font-size: 15rem;
  font-weight: 900;
  color: white;
  position: relative;
  z-index: 1;
  animation: errorNumberAnimation 0.5s ease;
  animation-iteration-count: 2;
}
@media screen and (max-width: 560px) {
  #error__404__container .error__404__content .error__404__title {
    font-size: 9rem;
  }
}
#error__404__container .error__404__content h3 {
  color: #22B292;
  text-transform: uppercase;
  letter-spacing: 0.8rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 560px) {
  #error__404__container .error__404__content h3 {
    font-size: 1rem;
    letter-spacing: 0.6rem;
  }
}
#error__404__container .error__404__content .error__404__subtitle {
  color: rgba(255, 255, 255, 0.517);
  margin: 1rem auto 3rem auto;
  font-size: 1.6rem;
  font-weight: 300;
  width: 45vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1360px) {
  #error__404__container .error__404__content .error__404__subtitle {
    width: 85vw;
    margin: 2rem auto;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 560px) {
  #error__404__container .error__404__content .error__404__subtitle {
    width: 90vw;
  }
}

@keyframes errorNumberAnimation {
  0% {
    color: white;
  }
  50% {
    color: #22B292;
  }
  100% {
    color: white;
  }
}
.section-title {
  color: #22B292;
  font-weight: 900;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}
