@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

/* ===================== LIGHT THEME ===================== */
:root {
  --main: #009640;
  --main20: #00964033;
  --main5: #0096400d;
  --second: #006633;
  --text: #666b88;
  --white: #ffffff;
  --dark: #1d1d1d;
  --gray: #777777;
  --lightGray: #eeeeee;
  --inputHint: #aaaaaa;
  --inputBg: #f8f8f8;
  --inputStroke: #e9e9e9;
  --shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  --shadow-lg: rgba(0, 0, 0, 0.1019607843);
  --dark-gray: #0d0d0d59;
  --whiteGrayBg: #fff;
}

/* ===================== DARK THEME ===================== */
body.dark-mode {
  --main: #00c853;
  --main20: #00c85333;
  --main5: #00c8530d;
  --second: #006633;
  --text: #666b88;
  --white: #121212;
  --dark: #ffffff;
  --gray: #b0b3b8;
  --lightGray: #1e1e1e;
  --inputHint: #888888;
  --inputBg: #1f1f1f;
  --inputStroke: #333333;
  --shadow: rgba(0, 0, 0, 0.6) 0px 2px 8px;
  --shadow-lg: rgba(136, 136, 136, 0.219);

  --dark-gray: #0d0d0d59;
  --whiteGrayBg: #1f1f1f;
}

* {
  margin: 0;
  padding: 0;
  line-height: 30px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Rubik", sans-serif;
  -webkit-tap-highlight-color: transparent;
  direction: rtl;
}

body {
  overflow-x: hidden;
  position: relative;
  background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  margin: 0;
  color: var(--dark);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
}

button,
a,
select {
  color: var(--dark);
}
.form-control {
  background: var(--whiteGrayBg);
  color: var(--dark);
}
input::placeholder,
textarea::placeholder {
  color: var(--dark);
}

.fancybox__container {
  z-index: 9999999999;
}

.fancybox__track,
.fancybox__content,
.carousel__track {
  direction: ltr !important;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--inputHint);
}

.preloader {
  background-color: var(--white);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999999;
}
.preloader .preloaderImg {
  width: 100px;
  height: 100px;
  -webkit-mask-image: url("../images/fav.svg");
  mask-image: url("../images/fav.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .preloader .preloaderImg {
    width: 80px;
    height: 80px;
  }
}
.preloader .preloaderImg::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100px;
  z-index: 2;
  background-color: var(--main);
  transform: translateY(100%);
  animation: slide-up 0.5s forwards;
}
@media screen and (max-width: 1024px) {
  .preloader .preloaderImg::after {
    width: 80px;
    height: 80px;
  }
}
.preloader .preloaderImg::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  background-image: url("../images/fav.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(1) opacity(0.2);
}
@keyframes slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}

.layer {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-image: linear-gradient(rgba(0, 0, 0, 0.231372549), rgba(0, 0, 0, 0.1176470588));
  z-index: -1;
  opacity: 0;
  transition: none;
}
.layer.show {
  opacity: 1;
  z-index: 9;
}

.promoteModal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(29, 29, 27, 0.4);
  overflow-y: auto;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.promoteModal.show {
  opacity: 1;
  visibility: visible;
}
.promoteModal::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.promoteModal .modalBody {
  width: min(100% - 24px, 600px);
  border-radius: 12px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1019607843);
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  background-color: var(--white);
}
.promoteModal .modalBody .closeBtn {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  position: absolute;
  top: -15px;
  left: -15px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px;
  background-color: var(--dark);
  color: var(--white);
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  z-index: 999;
}
.promoteModal .modalBody .modalImgBox {
  width: 100%;
  aspect-ratio: 3/2;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 20px;
}
.promoteModal .modalBody .modalImgBox img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  padding: 0;
}

.search-container {
  position: fixed;
  top: -50vh;
  width: 100%;
  height: 50vh;
  transition: all 0.4s ease-in-out;
  right: 0;
  z-index: 999999999999;
}
.search-container.show {
  top: 0;
}
.search-container .inner-contianer {
  height: 100%;
  width: 100%;
  background: var(--white);
}
.search-container .inner-contianer .closeSearch {
  height: 70px;
  width: 70px;
  background: none;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-container .inner-contianer .closeSearch i {
  color: #000;
  font-size: 30px;
}
.search-container .inner-contianer .input-field {
  height: calc(50vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-container .inner-contianer .input-field .form {
  border-bottom: 1px solid #ccc;
  height: 70px;
  display: flex;
  width: 100%;
}
.search-container .inner-contianer .input-field input {
  width: calc(100% - 70px);
  height: 70px;
  border: none;
  outline: none;
  font-size: 32px;
  font-weight: bold;
  background: none;
}
.search-container .inner-contianer .input-field input::-moz-placeholder {
  color: #ccc;
}
.search-container .inner-contianer .input-field input::placeholder {
  color: #ccc;
}
.search-container .inner-contianer .input-field input:focus::-moz-placeholder {
  color: #000;
}
.search-container .inner-contianer .input-field input:focus::placeholder {
  color: #000;
}
.search-container .inner-contianer .input-field button {
  height: 70px;
  width: 70px;
  background: none;
  outline: none;
  border: none;
  color: #ccc;
  transition: 0.2s ease-in-out;
}
.search-container .inner-contianer .input-field button i {
  font-size: 32px;
}
.search-container .inner-contianer .input-field button:hover {
  color: #000;
}

header {
  transition: all 0.4s ease-in-out;
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1024;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
}
header nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--inputBg);
}
header nav .logo {
  height: 40px;
  flex: 1;
}
header nav .nav-links {
  display: flex;
  justify-content: center;
  flex: 3;
  height: 100%;
}
@media screen and (max-width: 992px) {
  header nav .nav-links {
    position: absolute;
    top: 80px;
    height: calc(100vh - 80px);
    background: var(--white);
    z-index: 99;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 32px;
    width: 50%;
    right: 0;
    transform: translateX(100%);
    transition: all 0.4s ease-in-out;
  }
  header nav .nav-links.show {
    transform: translateX(0);
  }
  header nav .nav-links li {
    justify-content: flex-start !important;
    height: 54px !important;
  }
}
header nav .nav-links li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 24px;
}
header nav .nav-links li a {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
header nav .nav-links li a:hover,
header nav .nav-links li a.active {
  color: var(--main);
}
header nav .util {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
header nav .util li {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
  background: var(--inputBg);
  cursor: pointer;
}
header nav .util li a,
header nav .util li span {
  font-size: 16px;
  color: var(--main);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .util li .count {
  position: absolute;
  top: 0px;
  left: 2px;
  background: var(--main);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
}
header nav .util li .notification_dropDown {
  width: 300px;
  height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  background: var(--white);
  position: absolute;
  top: 48px;
  left: -12px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  z-index: 9;
}
header nav .util li .notification_dropDown.show {
  height: 300px;
}
header nav .util li .notification_dropDown .inner {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
header nav .util li .notification_dropDown h6 {
  color: var(--main);
  font-size: 14px;
  margin: 0;
}
header nav .util li .notification_dropDown ul {
  width: 100%;
  overflow-y: scroll;
}
header nav .util li .notification_dropDown ul::-webkit-scrollbar {
  display: none;
}
header nav .util li .notification_dropDown ul li {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  gap: 8px;
  margin-bottom: 8px;
  padding: 0;
  background: none;
  border-radius: none;
  height: auto;
}
header nav .util li .notification_dropDown ul li.promoteNotification {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
header nav .util li .notification_dropDown ul li.promoteNotification a {
  width: 100%;
  display: flex;
}
header nav .util li .notification_dropDown ul li.promoteNotification a img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
  object-fit: cover;
}
header nav .util li .notification_dropDown ul li .img img {
  height: 48px;
  -o-object-fit: contain;
  object-fit: contain;
}
header nav .util li .notification_dropDown ul li .content {
  display: flex;
  flex-direction: column;
}
header nav .util li .notification_dropDown ul li .content h6 {
  margin-bottom: 2px;
  font-size: 14px;
}
header nav .util li .notification_dropDown ul li .content p {
  color: var(--text);
  font-size: 10px;
  line-height: 16px;
  margin-bottom: 2px;
}
header nav .util li .notification_dropDown ul li .content small {
  font-size: 10px;
  line-height: 16px;
  color: var(--gray);
}
header nav .util li .lang span {
  font-weight: bold;
}
header nav .util li.toggler {
  display: none;
}
@media screen and (max-width: 992px) {
  header nav .util li.toggler {
    display: flex;
  }
  header nav .util li.toggler span {
    flex-direction: column;
    gap: 5px;
    padding: 0 8px;
    align-items: flex-end;
  }
  header nav .util li.toggler span small {
    width: 24px;
    height: 2px;
    background: var(--gray);
    display: block;
    transition: all 0.4s ease-in-out;
  }
  header nav .util li.toggler span small:last-child {
    width: 18px;
  }
}
header nav .util li.toggler.hihglight span small {
  background: var(--main) !important;
}
header .search_wrapper {
  transition: all 0.4s ease-in-out;
  height: 80px;
  background-image: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0.8)), url("../images/search.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 0 0 24px 24px;
  background-repeat: no-repeat;
}
header .search_wrapper form {
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  transform: translateY(52px);
  background: var(--white);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1607843137);
  padding: 4px;
  width: 100%;
  border-radius: 200px;
}
header .search_wrapper form .search_field {
  height: 48px;
  background: var(--inputBg);
  border-radius: 100px;
  display: flex;
  gap: 8px;
}
header .search_wrapper form .search_field input {
  border: none;
  background: none;
  outline: none;
  height: 100%;
  width: 100%;
}
header .search_wrapper form .search_field button {
  border: none;
  background: none;
  outline: none;
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--main);
}
header.sticky {
  width: 100%;
  background: var(--white);
}
header.sticky .search_wrapper {
  display: none;
}

main .hero_section {
  padding: 60px 0 20px;
  background-image: linear-gradient(rgba(0, 150, 64, 0.0509803922), #fff);
}
@media screen and (max-width: 576px) {
  main .hero_section {
    padding: 60px 0 0;
  }
}
main .hero_section .hero_content {
  display: flex;
  flex-direction: column;
}
main .hero_section .hero_content .hint {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
}
main .hero_section .hero_content .hint h6 {
  color: var(--main);
  font-size: 14px;
  margin: 0;
}
main .hero_section .hero_content .hint h6 a {
  color: var(--white);
}
main .hero_section .hero_content .hint span {
  background: var(--main);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  color: var(--white);
}
main .hero_section .hero_content h1 {
  font-size: 54px;
  font-weight: 700;
  color: var(--dark);
  margin: 16px 0 24px;
}
@media screen and (max-width: 768px) {
  main .hero_section .hero_content h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 576px) {
  main .hero_section .hero_content h1 {
    font-size: 36px;
    margin: 20px 0 32px;
  }
}
main .hero_section .hero_content h1 span {
  color: var(--main);
}
main .hero_section .hero_content p {
  margin-bottom: 16px;
}
main .hero_section .hero_content .buttons {
  display: flex;
  gap: 16px;
}
main .hero_section .hero_content .buttons .btn1 {
  border: none;
  background: none;
  outline: none;
  padding: 8px 32px;
  background: var(--main);
  border-radius: 8px;
  color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.05) 0 1em 2em;
}
main .hero_section .hero_content .buttons .btn2 {
  border: none;
  background: none;
  outline: none;
  padding: 8px 32px;
  border-radius: 8px;
  color: var(--main);
  border: 1px solid var(--main);
}
main .hero_section .banner-imgs {
  padding: 0px 0px 0px 140px;
  position: relative;
}
main .hero_section .banner-imgs .union-icon {
  position: absolute;
  top: 20px;
  right: 55px;
}
main .hero_section .banner-imgs .congratulation-icon {
  position: absolute;
  top: 30%;
  right: 0;
}
main .hero_section .banner-imgs .docs-icon {
  position: absolute;
  top: 85%;
  right: 40px;
}
main .hero_section .banner-imgs .course-icon {
  position: absolute;
  top: 14%;
  left: -60px;
}
main .hero_section .banner-imgs .tick-icon {
  position: absolute;
  top: 80%;
  left: -60px;
}
main .hero_section .banner-imgs .web-dev-icon {
  position: absolute;
  top: 50%;
  left: -60px;
}
main .hero_section .banner-imgs .shape-1 {
  animation: hero-thumb-animation 2s linear infinite alternate;
}
main .hero_section .banner-imgs .shape-2 {
  animation: hero-thumb-sm-animation 4s linear infinite alternate;
}
main .hero_section .banner-imgs .shape-3 {
  animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
}
main .hero_section .banner-imgs .img-responsive {
  max-width: 100%;
}
main .home_section {
  padding: 30px 0;
}
main .home_section .filter {
  width: 100%;
  padding-bottom: 8px;
  overflow-x: scroll;
}
main .home_section .filter::-webkit-scrollbar {
  height: 2px;
}
main .home_section .filter::-webkit-scrollbar-thumb {
  background: var(--inputStroke);
  border-radius: 12px;
}
main .home_section .filter ul {
  display: flex;
  align-items: center;
  gap: 12px;
}
main .home_section .filter ul li {
  flex: 1 0 0;
}
main .home_section .filter ul select {
  min-width: 120px;
}
main .home_section .filter .content {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  gap: 8px;
  border-radius: 12px;
}
main .home_section .filter .content h6 {
  margin: 0;
  white-space: nowrap;
  transition: all 0.4s ease-in-out;
}
main .home_section .filter .content .img img {
  height: 32px;
  aspect-ratio: 1;
  border-radius: 100px;
  -o-object-fit: cover;
  object-fit: cover;
}
main .home_section .filter .content.active,
main .home_section .filter .content:hover {
  background: rgba(0, 150, 64, 0.2);
}
main .home_section .filter .content.active h6,
main .home_section .filter .content:hover h6 {
  color: var(--main);
}
main .home_section .filter .select_type {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
main .home_section .filter .select_type input {
  display: none;
}
main .home_section .filter .select_type input:checked + .content {
  background: rgba(0, 150, 64, 0.0509803922);
  border: 1px solid var(--main);
}
main .home_section .filter .select_type input:checked + .content img {
  filter: brightness(1) invert(0);
}
main .home_section .filter .select_type .content {
  border: 1px solid var(--inputBg);
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--inputBg);
  height: 54px;
  padding: 0 24px;
  border-radius: 12px;
}
main .home_section .filter .select_type .content h6 {
  margin: 0;
  white-space: nowrap;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
}
main .home_section .filter .select_type .content p {
  font-size: 14px;
  color: var(--text);
  line-height: 24px;
}
main .home_section .filter .select_type .content img {
  transition: all 0.4s ease-in-out;
  margin-bottom: 16px;
  filter: brightness(0) invert(0);
}
main .home_section .filter.bg_light {
  background: var(--inputBg);
  border-radius: 12px;
  padding: 8px;
}
main .home_section .filter .job-link .content {
  background-color: var(--inputBg);
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 12px;
}
main .home_section .filter .job-link .content .image {
  width: 100px;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}
main .home_section .filter .job-link .content.active {
  background-color: rgba(0, 150, 64, 0.2);
}
main .home_section .profile_card {
  border: 1px solid var(--inputStroke);
  padding: 4px;
  gap: 8px;
  border-radius: 0 100px 100px 0;
  display: flex;
  position: relative;
}
main .home_section .profile_card .img {
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 50%;
}
main .home_section .profile_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
main .home_section .profile_card .owner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
main .home_section .profile_card .owner h6 {
  color: var(--dark);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
main .home_section .profile_card .owner .title_age {
  display: flex;
  gap: 2px 12px;
  align-items: center;
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  flex-wrap: wrap;
}
main .home_section .profile_card .owner .title_age span {
  line-height: 1.3;
}
main .home_section .profile_card .owner .label {
  height: 32px;
  background: rgba(0, 150, 64, 0.0509803922);
  padding: 4px 8px;
  gap: 4px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
main .home_section .profile_card .owner .label img {
  height: 26px;
}
main .home_section .profile_card .owner .label h6 {
  color: var(--main);
  margin: 0;
  font-size: 12px;
}
main .home_section .profile_card .buttons {
  position: absolute;
  top: 12px;
  left: 8px;
  display: flex;
  align-items: center;
}
main .home_section .profile_card .buttons button,
main .home_section .profile_card .buttons a {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  outline: none;
}
main .home_section .profile_card .buttons button img,
main .home_section .profile_card .buttons a img {
  height: 16px;
}
main .home_section .swiper.heroSection {
  border-radius: 12px;
}
main .home_section .swiper.heroSection .img {
  width: 100%;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  height: 100%;
  aspect-ratio: 12/1;
}
main .home_section .swiper.heroSection .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
main .home_section .swiper.heroSection .img .content {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.5019607843);
}
main .home_section .swiper.heroSection .img .content h6 {
  font-size: 24px;
  margin: 0;
}
main .home_section .swiper.heroSection .img .content h6 a {
  color: var(--white);
}
main .viewMore {
  padding: 4px 16px;
  background: var(--main);
  color: var(--white);
  border-radius: 100px;
  display: inline-block;
  font-size: 14px;
  margin-top: 12px;
}
main .auth_section {
  padding: 32px 4px;
}
main .auth_section .img {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}
main .auth_section .img img {
  max-width: 90%;
}
main .explore {
  padding: 40px 0;
}
main .explore .asideFilter {
  width: 100%;
  border-radius: 12px;
  padding: 24px;
  background: var(--inputBg);
}
main .explore .asideFilter .accordion {
  display: flex;
  gap: 12px;
}
main .explore .asideFilter .accordion-item {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 8px;
}
main .explore .asideFilter .accordion-item .accordion-body {
  max-height: 187px;
  overflow-y: scroll;
}
main .explore .asideFilter .accordion-item .accordion-body::-webkit-scrollbar {
  display: none;
}
main .explore .asideFilter .accordion-item .categories {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
main .explore .asideFilter .accordion-item .checkBoxField {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main .explore .asideFilter .accordion-item .checkBoxField label {
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
}
main .explore .asideFilter .accordion-item .checkBoxField label img {
  margin-left: 4px;
  height: 20px;
  width: 30px;
  border-radius: 2px;
  -o-object-fit: contain;
  object-fit: contain;
}
main .explore .profile_card {
  border: 1px solid var(--inputStroke);
  padding: 4px;
  gap: 8px;
  border-radius: 100px 0 0 100px;
  display: flex;
}
main .explore .profile_card .img {
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 50%;
}
main .explore .profile_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
main .explore .profile_card .owner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
main .explore .profile_card .owner h6 {
  color: var(--dark);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
main .explore .profile_card .owner .title_age {
  display: flex;
  gap: 2px 12px;
  align-items: center;
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  flex-wrap: wrap;
}
main .explore .profile_card .owner .title_age span {
  line-height: 1.3;
}
main .explore .profile_card .owner .label {
  height: 32px;
  background: rgba(0, 150, 64, 0.0509803922);
  padding: 4px 8px;
  gap: 4px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
main .explore .profile_card .owner .label img {
  height: 26px;
}
main .explore .profile_card .owner .label h6 {
  color: var(--main);
  margin: 0;
  font-size: 12px;
}
main .explore .sortBy {
  cursor: pointer;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  display: none;
}
@media screen and (max-width: 768px) {
  main .explore .sortBy {
    display: block;
  }
}
main .explore .closeFilter {
  display: none;
  border: none;
  background: none;
  outline: none;
  align-self: flex-end;
  color: var(--dark);
  font-size: 18px;
  padding: 0 8px;
}
@media screen and (max-width: 768px) {
  main .explore .closeFilter {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  main .explore .filter {
    position: fixed;
    bottom: -100vh;
    z-index: 9999;
    background: var(--inputBg);
    display: flex;
    gap: 12px;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    right: 0;
    transition: all 0.4s ease-in-out;
  }
}
main .explore .filter.active {
  bottom: 0;
}
main .profile_section {
  padding: 24px 0;
}
main .profile_section .profile_card {
  box-shadow: 0px 4px 16px 0px var(--shadow-lg);
  border-radius:  16px 100px 100px 16px;
  padding: 8px;
  display: flex;
  gap: 12px;
}
main .profile_section .profile_card .img {
  height: 120px;
  width: 120px;
  min-width: 120px;
  overflow: hidden;
  border-radius: 50%;
}
@media screen and (max-width: 576px) {
  main .profile_section .profile_card .img {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }
}
main .profile_section .profile_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
main .profile_section .profile_card .owner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
main .profile_section .profile_card .owner h5 {
  color: var(--dark);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 576px) {
  main .profile_section .profile_card .owner h5 {
    font-size: 20px;
  }
}
main .profile_section .profile_card .owner .title_age {
  display: flex;
  gap: 2px 12px;
  align-items: center;
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  flex-wrap: wrap;
}
main .profile_section .profile_card .owner .title_age span {
  line-height: 1.3;
}
main .profile_section .profile_card .owner .social {
  margin-top: 4px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
}
main .profile_section .profile_card .owner .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 576px) {
  main .profile_section .profile_card .owner .social a {
    width: 26px;
    height: 26px;
  }
}
main .profile_section .profile_card .owner .social a:hover {
  background: var(--main);
}
main .profile_section .bio {
  margin-top: 12px;
  background: var(--inputBg);
  padding: 16px 12px;
  border-radius: 12px;
}
main .profile_section .bio h6 {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}
main .profile_section .bio p {
  color: var(--dark);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
main .profile_section .bio .info {
  gap: 24px;
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}
main .profile_section .bio .info .info_place h6 {
  margin-bottom: 4px;
}
main .profile_section .bio .info .info_place .titles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
main .profile_section .bio .info .info_place .titles .title {
  background: var(--white);
  color: var(--dark);
  padding: 4px 12px;
  gap: 8px;
  border-radius: 8px;
}
main .profile_section .bio.career .info {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
main .profile_section .bio.education h6 {
  margin-bottom: 8px;
}
main .profile_section .bio.education .edu_card {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--inputStroke);
  padding: 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
main .profile_section .bio.education .edu_card h5 {
  font-size: 14px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 4px;
}
main .profile_section .bio.education .edu_card p {
  color: var(--text);
}
main .profile_section .bio.education .edu_card .image img {
  height: 64px;
}
main .profile_section .bio .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}
@media screen and (max-width: 576px) {
  main .profile_section .bio .gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
main .profile_section .bio .gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}
main .profile_section .float_call {
  width: 400px;
  position: fixed;
  bottom: 16px;
  right: 50%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.3764705882);
  padding: 12px;
  border-radius: 8px;
  transform: translateX(50%);
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 576px) {
  main .profile_section .float_call {
    width: 100%;
    bottom: 0;
  }
}
main .profile_section .float_call form {
  flex: 1;
}
main .profile_section .float_call .flotBtn {
  width: 100%;
  flex: 1;
  gap: 6px;
  background: #bde0fc;
  border-radius: 100px;
  padding: 8px;
  color: var(--dark);
  font-weight: 500;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .profile_section .float_call .flotBtn.whatsapp {
  background: #c4e7c0;
}
main .profile_section .float_call .flotBtn:hover {
  color: var(--dark);
}
main .sec_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main .sec_title h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
main .sec_title a {
  font-size: 14px;
  font-weight: 400;
  color: var(--main);
}
main .companies {
  padding: 60px 0;
}
main .companies .company_card {
  background: var(--inputBg);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
  border-radius: 12px;
  flex-direction: column;
}
main .companies .company_card .img {
  height: 70px;
  width: 100%;
}
main .companies .company_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
main .companies .company_card h6 {
  color: var(--dark);
  font-weight: 600;
  margin: 0;
}
main .companies .company_card.company {
  width: 100%;
  min-width: auto !important;
  max-width: auto !important;
}
main .companies .company_card.company img {
  height: 54px !important;
}
main .about_us {
  padding: 80px 0 0px;
}
@media screen and (max-width: 576px) {
  main .about_us .row {
    gap: 40px;
  }
}
main .about_us .pl-200 {
  padding-right: 200px !important;
}
@media screen and (max-width: 576px) {
  main .about_us .pl-200 {
    padding: 0 30px !important;
  }
}
main .about_us .text-lg {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.5px;
}
main .about_us .text-brand {
  color: var(--main);
}
main .about_us h3 {
  font-size: 44px;
  line-height: 54px;
  margin: 20px 0 30px;
}
main .about_us p {
  line-height: 28px;
  margin-bottom: 12px;
}
main .about_us .banner-imgs-about {
  position: relative;
}
main .about_us .banner-imgs-about img {
  max-width: 100%;
  max-height: 480px;
  animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
main .about_us .banner-imgs-about .banner-sm-4 {
  position: absolute;
  top: 15%;
  right: -110px;
}
@media screen and (max-width: 576px) {
  main .about_us .banner-imgs-about .banner-sm-4 {
    right: -30px;
  }
}
main .about_us .banner-imgs-about .banner-sm-4 img {
  border-radius: 0;
  animation: hero-thumb-sm-animation 4s linear infinite alternate;
}
main .about_us .banner-imgs-about .banner-sm-5 {
  position: absolute;
  top: 65%;
  right: -90px;
}
main .about_us .banner-imgs-about .banner-sm-5 img {
  border-radius: 0;
}
@media screen and (max-width: 576px) {
  main .about_us .banner-imgs-about .banner-sm-5 {
    right: -45px;
  }
  main .about_us .banner-imgs-about .banner-sm-5 img {
    height: 120px;
  }
}
main .about_us .btn-wrapper a {
  background: var(--main);
  color: var(--white);
}
main .about_us .testmonials {
  padding-top: 40px;
}
main .about_us .testmonials .title {
  color: var(--dark);
  text-align: center;
  font-size: 25px;
  line-height: 40px;
  margin-bottom: 0;
}
main .about_us .testmonials .desc {
  width: min(100% - 24px, 600px);
  margin: 0 auto 24px;
  text-align: center;
}
main .about_us .testmonials .swiper {
  display: flex;
  flex-direction: column;
  padding: 0 0 60px;
}
main .about_us .testmonials .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
main .about_us .testmonials .swiper .swiper-slide .testmional-card {
  width: 100%;
  border: 1px solid var(--inputBg);
  padding: 24px 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
  position: relative;
}
main .about_us .testmonials .swiper .swiper-slide .testmional-card img {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 100px;
  height: 100px;
  filter: grayscale(1);
  z-index: -1;
}
main .about_us .testmonials .swiper .swiper-slide .testmional-card .rate ul {
  display: flex;
  gap: 4px;
}
main .about_us .testmonials .swiper .swiper-slide .testmional-card .rate ul li {
  font-size: 16px;
}
main .about_us .testmonials .swiper .swiper-slide .testmional-card .rate ul li i {
  color: #ffca40 !important;
}
main .about_us .testmonials .swiper .swiper-slide .testmional-card .opinion {
  font-size: 14px;
  font-style: italic;
  line-height: 22px;
  color: var(--text);
}
main .about_us .testmonials .swiper .swiper-slide .testmional-card .owner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
main .about_us .testmonials .swiper .swiper-slide .testmional-card .owner h6 {
  color: var(--main);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
main .about_us .testmonials .swiper .swiper-slide .testmional-card .owner a {
  color: var(--dark);
  font-size: 14px;
}
main .about_us .testmonials .swiper .swiper-slide .testmional-card .owner span {
  color: var(--dark);
  font-size: 12px;
}
main .about_us .testmonials .swiper .testimonialsSwiperPagination {
  padding: 40px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
main .about_us .testmonials .swiper .testimonialsSwiperPagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 0;
  border: 1px solid var(--gray);
  background: none;
  border-radius: 50%;
}
main
  .about_us
  .testmonials
  .swiper
  .testimonialsSwiperPagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--main);
  position: relative;
}
main
  .about_us
  .testmonials
  .swiper
  .testimonialsSwiperPagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--main);
}
main .terms {
  padding: 80px 0 30px;
}
main .terms h1 {
  font-size: 26px;
  color: var(--dark);
}
main .terms p {
  font-size: 12px;
  color: var(--text);
  line-height: 24px;
}
main .terms ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
main .terms ul li h2 {
  font-size: 18px;
  color: var(--main);
}
main .faqs {
  padding: 80px 0 30px;
}
main .faqs .faqs-content {
  padding-top: 60px;
}
main .faqs .faqs-content h3 {
  font-size: 20px;
  color: var(--main);
  font-weight: 600;
  margin-bottom: 28px;
}
main .faqs .faqs-content h3 i {
  transform: scaleX(-1);
}
main .faqs .accordion-button {
  text-align: inherit;
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  padding: 16px 0;
}
main .faqs .accordion {
  background: var(--inputBg);
  padding:0 16px;
}
main .faqs .accordion-button:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
main .faqs .accordion-button::after {
  content: "\f107";
  font-family: "Font Awesome 6 pro";
  background: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transform: none;
}
main .faqs .accordion-button:not(.collapsed) {
  background: none !important;
  box-shadow: none !important;
  color: var(--main);
  background: none !important;
}
main .faqs .accordion-button:not(.collapsed)::after {
  content: "\f106";
}
main .faqs .accordion-body {
  padding: 16px 0 !important;
}
main .faqs .accordion-item {
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid #eee !important;
  border-radius: 0 !important;
}
main .faqs .accordion-item p {
  font-size: 12px;
  color: var(--text);
}
main .faqs .accordion-item:last-child {
  border-bottom: 0 !important;
}
main .downloadApp {
  padding: 60px 0;
  width: 100%;
  background-size: cover;
  background-image: url("../images/banner_resumes.jpg");
}
main .downloadApp .container {
  position: relative;
}
main .downloadApp .container h2 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 16px;
  text-align: center;
}
main .downloadApp .container p {
  text-align: center;
  width: min(100%, 600px);
  margin: 0 auto;
  font-size: 12px;
  color: #ffffff;
  line-height: 26px;
  margin-bottom: 24px;
}
main .downloadApp .container .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
main .downloadApp .container .btns img {
  height: 42px;
}
main .categories_section .categories_grid .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
}
main .categories_section .categories_grid .category_card {
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}
main .categories_section .categories_grid .category_card .img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
main .categories_section .categories_grid .category_card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 20%;
  object-position: 50% 20%;
}
main .categories_section .categories_grid .category_card .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 61.5%, #000000 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
main .categories_section .categories_grid .category_card .overlay h6 {
  color: var(--white);
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
main .latest_cvs {
  padding: 40px 0;
}
main .latest_cvs .profile_card {
  border: 1px solid var(--inputStroke);
  padding: 4px;
  gap: 8px;
  border-radius: 16px 100px 100px 16px ;
  display: flex;
  position: relative;
}
main .latest_cvs .profile_card .img {
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 50%;
}
main .latest_cvs .profile_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
main .latest_cvs .profile_card .owner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
main .latest_cvs .profile_card .owner h6 {
  color: var(--dark);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
main .latest_cvs .profile_card .owner .title_age {
  display: flex;
  gap: 2px 12px;
  align-items: center;
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  flex-wrap: wrap;
}
main .latest_cvs .profile_card .owner .title_age span {
  line-height: 1.3;
}
main .latest_cvs .profile_card .owner .label {
  height: 32px;
  background: rgba(0, 150, 64, 0.0509803922);
  padding: 4px 8px;
  gap: 4px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
main .latest_cvs .profile_card .owner .label img {
  height: 26px;
}
main .latest_cvs .profile_card .owner .label h6 {
  color: var(--main);
  margin: 0;
  font-size: 12px;
}
main .latest_cvs .profile_card .buttons {
  position: absolute;
  top: 12px;
  left: 8px;
  display: flex;
  align-items: center;
}
main .latest_cvs .profile_card .buttons button,
main .latest_cvs .profile_card .buttons a {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  outline: none;
}
main .latest_cvs .profile_card .buttons button img,
main .latest_cvs .profile_card .buttons a img {
  height: 16px;
}
main .banner_section {
  padding: 32px 0;
  background-image: linear-gradient(rgba(0, 150, 64, 0.2), var(--white));
  background-size: cover;
  background-position: center;
}
main .banner_section .content {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
main .banner_section .content h3 {
  font-size: 32px;
  margin: 0;
}
main .banner_section .content p {
  color: var(--gray);
  font-size: 16px;
  margin: 0;
}
main .contact {
  padding: 60px 0;
}
main .contact .send_btn {
  padding: 8px 32px;
  border: none;
  background: none;
  outline: none;
  background: var(--main);
  color: var(--white);
  border-radius: 8px;
}
main .contact form {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .contact form .form {
  width: 100%;
}
main .contact h4 {
  font-size: 40px;
  color: var(--main);
  margin: 0;
  font-weight: 600;
}
main .contact p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 24px;
}
main .contact .animatedMap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .contact .worldMap {
  width: 500px;
  height: 500px;
  order: 2;
  position: relative;
}
main .contact .worldMap .earth {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 80%;
  height: 80%;
  margin: -40%;
  background: #fff url(../images/map.png) 0 50% repeat-x;
  background-size: auto 90%;
  box-shadow: rgba(0, 0, 0, 0.05) 0 1em 2em;
  border-radius: 100%;
  overflow: hidden;
  animation: map linear 90s infinite;
}
main .contact .worldMap .orbic {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
main .contact .worldMap .orbic svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
main .contact .worldMap #orbic_path {
  fill: none;
  stroke: rgba(0, 0, 0, 0.1);
  stroke-linecap: round;
  stroke-width: 4px;
  stroke-dasharray: 1 9;
  animation: orbic linear 2s infinite;
}
main .contact .worldMap #orbic_dots use {
  fill: #fff;
  stroke: rgba(30, 144, 255, 0.25);
  stroke-width: 4;
  animation: dots ease 1s infinite alternate;
}
main .contact .worldMap #orbic_dot1 {
  transform: translate(50.4%, 29.6%);
}
main .contact .worldMap #orbic_dot2 {
  transform: translate(5%, 62.8%);
  animation-delay: 0.2s !important;
}
main .contact .worldMap #orbic_dot3 {
  transform: translate(97%, 41%);
  animation-delay: 0.3s !important;
}
main .contact .worldMap #orbic_dot4 {
  transform: translate(50%, 70.2%);
  animation-delay: 0.5s !important;
}
main .contact .worldMap #orbic_dot5 {
  transform: translate(31.5%, 51.5%);
  animation-delay: 0.7s !important;
}
main .contact .worldMap #orbic_user1 {
  transform: translate(1%, 40%) scale(0.666667);
}
main .contact .worldMap #orbic_user2 {
  transform: translate(18%, 64%) scale(0.666667);
}
main .contact .worldMap #orbic_user3 {
  transform: translate(39.5%, 31%) scale(0.666667);
}
main .contact .worldMap #orbic_user4 {
  transform: translate(69%, 22%) scale(0.666667);
}
main .contact .worldMap #orbic_user5 {
  transform: translate(75%, 53%) scale(0.666667);
}
@keyframes map {
  100% {
    background-position: 220% 50%;
  }
}
@keyframes orbic {
  100% {
    stroke-dashoffset: 10;
  }
}
@keyframes dots {
  100%,
  80% {
    stroke: #1e90ff;
  }
}
@media only screen and (max-width: 1000px) {
  main .contact .worldMap {
    width: 100%;
    order: 2;
    position: relative;
  }
  main .contact .worldMap .earth {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: transparent;
    background-size: 100% auto;
    box-shadow: none;
    border-radius: 0;
    animation: none;
  }
}
@media (max-width: 600px) {
  main .contact .worldMap {
    height: 300px;
  }
}
main .features {
  padding: 40px 0;
  background-image: linear-gradient(rgba(0, 150, 64, 0.2), #fff);
  border-radius: 30px 30px 0 0;
}
main .features .sec_title {
  width: min(100% - 24px, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
}
main .features .sec_title h3 {
  text-align: center;
  font-size: 32px;
  color: var(--dark);
}
main .features .service_single_content {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 1em 2em;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 15px;
}
main .features .service_single_content .service_icon {
  width: 88px;
  height: 88px;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 16px;
  line-height: 88px;
  background: rgba(0, 150, 64, 0.0509803922);
  position: relative;
  display: inline-block;
}
main .features .service_single_content h6 {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 17px;
  line-height: 30px;
  color: var(--main);
}
main .features .service_single_content p {
  font-size: 14px;
  line-height: 24px;
  color: var(--dark);
}
.float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.float-btn i {
  color: white;
  font-size: 22px;
}

.modal .modal-content .modal-body {
  padding: 8px;
}
.modal .modal-content .modal-body input {
  border: none;
  background: none;
  outline: none;
  width: 100%;
  height: 48px;
  border: 1px solid var(--inputStroke);
  background: var(--inputBg);
  border-radius: 8px;
  padding: 0 12px;
  margin-bottom: 12px;
}
.modal .modal-content .modal-footer {
  padding: 0 8px 8px;
}
.modal .modal-content .modal-footer button {
  width: 100%;
  background: var(--main);
  color: var(--white);
  height: 48px;
}

input[type="checkbox"] {
  width: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  cursor: pointer;
}
input[type="checkbox"]::after {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  content: "";
  font-family: "FontAwesome";
  width: 16px;
  height: 16px;
  border: 1px solid var(--inputStroke);
  border-radius: 2px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main);
}
input[type="checkbox"]:checked::after {
  content: "\f00c";
  background: var(--main);
  color: #fff;
  border-color: var(--main);
}

input[type="radio"] {
  width: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  cursor: pointer;
}
input[type="radio"]::after {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid var(--inputStroke);
  border-radius: 50%;
}
input[type="radio"]:checked::after {
  background: var(--main);
  border-color: var(--main);
}

.stars ul {
  display: flex;
  line-height: 16px;
  gap: 4px;
}
.stars ul li {
  line-height: 16px;
}
.stars i {
  color: #ffd500;
  font-size: 12px;
}

.explore_inCompany {
  padding-top: 20px !important;
}

.company_profile {
  padding-top: 60px;
}
.company_profile .profile_card {
  padding: 8px;
  border-radius: 8px;
  background: var(--inputBg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.company_profile .profile_card .img {
  height: 104px;
  width: 104px;
  padding: 12px;
  border-radius: 8px;
  background: var(--white);
}
.company_profile .profile_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.company_profile .profile_card .content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 104px;
}
.company_profile .profile_card .content h6 {
  margin: 0;
}
.company_profile .profile_card .content p {
  margin: 0;
}
.company_profile .profile_card .content p img {
  height: 16px;
}
.company_profile .profile_card .content .call {
  display: flex;
  gap: 12px;
}
.company_profile .profile_card .content .call a {
  gap: 6px;
  background: #bde0fc;
  border-radius: 8px;
  padding: 4px 16px;
  color: var(--dark);
  font-weight: 500;
}
.company_profile .profile_card .content .call a:last-child {
  background: #c4e7c0;
}
.company_profile .profile_card .content .call a:hover {
  color: var(--dark);
}
.company_profile .bio_card {
  padding: 16px;
  border-radius: 8px;
  background: var(--inputBg);
}
.company_profile .bio_card p {
  line-height: 24px;
  margin: 0;
}

.create_resume {
  padding-top: 30px;
}
.create_resume .wrapper {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  padding: 10px 20px;
  border-radius: 12px;
  display: flex;
  background: radial-gradient(60.11% 241.83% at 90.6% 28.57%, rgba(0, 150, 64, 0.35) 0%, var(--main) 100%);
}
.create_resume .wrapper .content {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.create_resume .wrapper .content h1 {
  margin: 0;
  font-size: 32px;
  color: var(--white);
}
@media screen and (max-width: 576px) {
  .create_resume .wrapper .content h1 {
    font-size: 24px;
  }
}
.create_resume .wrapper .content p {
  margin: 0;
  font-size: 16px;
  color: var(--white);
}
@media screen and (max-width: 576px) {
  .create_resume .wrapper .content p {
    font-size: 12px;
    line-height: 22px;
  }
}
.create_resume .wrapper .content .avatar {
  height: 100%;
  width: 140px;
}
.create_resume .wrapper .thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 100px;
  background-position: top left;
  background-repeat: no-repeat;
  background-image: url(../images/thumb.png);
}

.create_resume_form {
  padding: 60px 0;
}
.create_resume_form .nav_wrapper {
  position: relative;
}
.create_resume_form .nav_wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  z-index: -1;
  transform: translateY(-50%);
  right: 0;
  width: 100%;
  height: 1px;
  background: var(--inputStroke);
}
.create_resume_form .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: scroll;
  flex-wrap: nowrap;
  gap: 60px;
  z-index: 9999;
}
.create_resume_form .nav::-webkit-scrollbar {
  display: none;
}
.create_resume_form .nav-link {
  white-space: nowrap;
  display: flex;
  padding: 8px 4px;
  gap: 8px;
  background: var(--white);
  transition: all 0.4s ease-in-out;
}
.create_resume_form .nav-link .step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dark);
  color: var(--dark);
}
.create_resume_form .nav-link.active,
.create_resume_form .nav-link:hover {
  background: var(--white);
  box-shadow: none;
  color: var(--main) !important;
}
.create_resume_form .nav-link.active .step,
.create_resume_form .nav-link:hover .step {
  border: 1px solid var(--main);
  color: var(--white);
  background: var(--main);
}
.create_resume_form .nav-item {
  background: var(--white);
}

.card_form {
  border: 1px dashed var(--inputStroke);
  border-radius: 8px;
  padding: 8px;
  background: var(--white);
}
.card_form h5 {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.save_changes {
  border: 1px solid var(--dark) !important;
  color: var(--dark) !important;
  height: 44px;
  transition: all 0.4s ease-in-out;
  white-space: nowrap;
  border-radius: 8px;
}
.save_changes:hover {
  background: var(--dark) !important;
  color: var(--white) !important;
}

.save_changes_publish {
  background: var(--main);
  color: var(--white);
  white-space: nowrap;
  height: 44px;
  border-radius: 8px;
  min-width: 216px;
}
.save_changes_publish:hover {
  background: var(--main) !important;
  color: var(--white) !important;
}
@media screen and (max-width: 576px) {
  .save_changes_publish {
    min-width: 0;
  }
}

.levels_grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.levels_grid .level_label {
  cursor: pointer;
}
.levels_grid .level_label input {
  display: none;
}
.levels_grid .level_label input:checked + .content {
  border: 1px solid var(--main);
  color: var(--main);
  background: rgba(0, 150, 64, 0.0509803922);
}
.levels_grid .level_label .content {
  transition: all 0.4s ease-in-out;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--inputStroke);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  display: none;
}

.add_btn {
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--white) !important;
  cursor: pointer;
  background: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.actitvity_card {
  border-radius: 8px;
  border: 1px solid var(--inputStroke);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.actitvity_card .content {
  gap: 16px;
  display: flex;
}
@media screen and (max-width: 576px) {
  .actitvity_card .content {
    gap: 12px;
  }
}
.actitvity_card .content .img {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.actitvity_card .content .img img {
  height: 64px;
}
@media screen and (max-width: 576px) {
  .actitvity_card .content .img img {
    height: 48px;
  }
}
.actitvity_card .content .name_time {
  display: flex;
  flex-direction: column;
}
.actitvity_card .content .name_time h6 {
  margin: 0;
  font-size: 18px !important;
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
}
.actitvity_card .content .name_time p {
  line-height: 24px;
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
}
.actitvity_card .content .name_time p span {
  line-height: inherit;
}

.actions {
  gap: 12px;
  display: flex;
}
.actions span {
  padding: 4px;
  border: none;
  background: none;
  outline: none;
}
.actions span i {
  font-size: 18px;
}
.actions span.edit {
  color: #6c757d;
}
.actions span.delete {
  color: red;
}

.image_change {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image_change .image_upload {
  width: 148px;
  height: 148px;
  padding: 8px;
  position: relative;
  border-radius: 50%;
  border: 1.5px solid var(--inputStroke);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.image_change .image_upload img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}
.image_change .image_upload h4 {
  font-size: 28px;
  margin: 0;
  font-weight: 900;
  color: var(--inputHint);
}
.image_change .image_upload input {
  display: none;
}
.image_change .image_upload label {
  position: absolute;
  background: var(--main);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 6px;
  bottom: 12px;
}
.image_change .image_upload label i {
  font-size: 16px;
  color: var(--white);
}

.addPromomte .image_change .image_upload {
  width: 168px;
  border-radius: 12px;
}
.addPromomte .image_change .image_upload img {
  width: 148px;
  height: 100%;
  border-radius: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.input_field {
  display: flex;
  gap: 8px;
  position: relative;
  flex-direction: column;
}
.input_field label {
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
  position: absolute;
  transition: 0.2s ease-in-out;
  top: 12px;
  right: 12px;
  padding: 0 32px 0 4px;
  background: var(--white);
  white-space: nowrap;
  min-width: 90px;
  z-index: 2;
}
.input_field label.h {
  padding: 0 4px;
  top: -14px;
  min-width: unset;
}
.input_field input,
.input_field select,
.input_field textarea {
  outline: none !important;
  border: none !important;
  background: var(--white) !important;
  width: 100% !important;
  height: 54px !important;
  border-radius: 12px !important;
  border: 1px solid var(--inputStroke) !important;
  padding: 0 24px !important;
  font-size: 14px !important;
  margin: 0 !important;
  color: var(--dark);
}
.input_field textarea {
  padding-top: 16px !important;
  min-height: 148px !important;
}
.input_field .location {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.input_field .country_code_select {
  width: 160px;
  height: 54px;
  border-radius: 12px;
  border: 1px solid var(--inputStroke);
  padding: 0 16px;
  font-size: 14px;
  position: relative;
}
.input_field .country_code_select label {
  position: absolute;
  top: -15px;
  right: 12px;
  background: var(--white);
}
.input_field .country_code_select .country-picker {
  pointer-events: none;
  visibility: hidden;
  border: none !important;
}

.skills_card {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--inputStroke);
}
.skills_card .name_actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.skills_card .name_actions h6 {
  color: var(--dark);
  font-weight: 600;
  margin: 0;
  font-size: 18px !important;
}

.star-rating-proficiency,
.star-rating-interest {
  display: flex;
  gap: 4px;
}
.star-rating-proficiency label,
.star-rating-interest label {
  cursor: pointer;
  color: #eee;
}
.star-rating-proficiency label.active,
.star-rating-interest label.active {
  color: gold;
}
.star-rating-proficiency input,
.star-rating-interest input {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.rating_field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.rating_field h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.work_samples_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.work_samples_grid .img_upload {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  border: 1px solid var(--inputStroke);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.work_samples_grid .img_upload input {
  display: none;
}
.work_samples_grid .img_upload img {
  height: 48px;
}
.work_samples_grid .uploadedImage {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  border: 1px solid transparent;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.work_samples_grid .uploadedImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.work_samples_grid .uploadedImage .delete {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--white);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work_samples_grid .uploadedImage .delete img {
  height: 16px;
  width: 16px;
}

footer {
  border-top: 1px solid var(--inputStroke);
  padding: 40px 0 0;
}
footer .about_company {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .about_company .logo {
  height: 40px;
}
footer .about_company .logo img {
  height: 40px;
}
footer .about_company .text p {
  color: var(--text);
  line-height: 26px;
}
footer .col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 30px;
}
@media screen and (max-width: 576px) {
  footer .col {
    padding: 0;
  }
}
footer .col:last-child {
  padding-right: 0;
}
footer .col h3 {
  color: var(--dark);
  font-weight: 600;
  margin: 0;
  font-size: 18px !important;
}
footer .col ul li {
  line-height: 24px;
}
footer .col ul li a {
  display: flex;
  gap: 4px;
  color: var(--text);
  transition: 0.2s ease-in-out;
}
footer .col ul li a:hover {
  color: var(--main);
}
footer .col ul li a:hover span {
  width: 16px;
}
footer .col ul li a span {
  transition: all 0.4s ease-in-out;
  width: 0;
  overflow: hidden;
}
footer .copy_rights {
  border-top: 1px solid var(--inputStroke);
  padding: 28px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 576px) {
  footer .copy_rights {
    flex-direction: column-reverse;
    gap: 12px;
  }
}
footer .copy_rights p a {
  color: var(--main);
}
footer .copy_rights p {
  text-align: center;
}
@media screen and (max-width: 576px) {
  footer .copy_rights p {
    font-size: 12px;
  }
}
footer .copy_rights .social_media ul {
  display: flex;
  gap: 8px;
}
footer .copy_rights .social_media ul a {
  border: 1px solid var(--inputStroke);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  transition: 0.2s ease-in-out;
  color: var(--inputHint);
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .copy_rights .social_media ul a i {
  font-size: 14px;
}
footer .copy_rights .social_media ul a:hover {
  background: var(--main);
  border-color: var(--main);
  transform: translateY(-2px);
}
footer .copy_rights .social_media ul a:hover i {
  color: var(--white);
}
footer .copy_rights .social_media ul a:hover svg path {
  fill: var(--white);
}

.download-app {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}
@media (max-width: 576px) {
  .download-app {
    flex-direction: row !important;
  }
}
.download-app li {
  width: 150px !important;
  padding: 10px !important;
  background: var(--inputBg) !important;
  border-radius: 50px !important;
  transition: all 0.3s ease-in-out !important;
}
.download-app li:hover {
  background: var(--main) !important;
}
.download-app li:hover a .icon i,
.download-app li:hover a p {
  color: #fff;
}
.download-app li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.download-app li a .icon {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-app li a .icon i {
  font-size: 18px;
  color: var(--dark);
}
.download-app li a p {
  font-size: 12px;
  text-align: end;
  line-height: 18px;
  color: var(--dark);
}

.profile_menu {
  width: 330px;
 height: calc(100dvh - 79px);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: fixed;
  top: 80px;
  left: -330px;
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 4px;
  z-index: 100;
  overflow-y: scroll;
}
.profile_menu::-webkit-scrollbar {
  display: none;
}
.profile_menu.show {
  left: 0;
}
.profile_menu .profile_wrapper {
  padding: 16px 12px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--inputBg);
}
.profile_menu .profile_wrapper .profile {
  display: flex;
  align-items: center;
  gap: 12px;
}
.profile_menu .profile_wrapper .profile .img {
  width: 66px;
  height: 66px;
  background: var(--white);
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile_menu .profile_wrapper .profile .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.profile_menu .profile_wrapper .profile .img img.logo_contain {
  -o-object-fit: contain;
  object-fit: contain;
  height: 56%;
}
.profile_menu .profile_wrapper .profile .text h6 {
  font-size: 16px;
  margin: 0;
}
.profile_menu .profile_wrapper .profile .text p {
  font-size: 14px;
  line-height: 26px;
}
.profile_menu .profile_wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.profile_menu .profile_wrapper ul li {
  width: 100% !important;
  display: block !important;
  border-radius: 0 !important;
  background: none !important;
}
.profile_menu .profile_wrapper ul li a {
  justify-content: space-between !important;
  color: var(--dark) !important;
}
.profile_menu .profile_wrapper ul li a div {
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.profile_menu .profile_wrapper ul li span {
  width: 36px !important;
  height: 36px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile_menu .profile_wrapper ul li span img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
  object-fit: contain;
}

.modal-body {
  padding: 24px !important;
}
.modal-body .buttons {
  margin-top: 12px;
  display: flex;
  gap: 16px;
}
.modal-body .buttons .delete_btn {
  padding: 8px;
  border: none;
  background: none;
  outline: none;
  color: var(--white);
  border-radius: 8px;
  width: 100%;
  background: red;
}
.modal-body .buttons .cancel_btn {
  padding: 8px;
  border: none;
  background: none;
  outline: none;
  color: var(--dark);
  border-radius: 8px;
  width: 100%;
  border: 1px solid var(--dark);
}

@keyframes hero-thumb-sm-2-animation {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes hero-thumb-sm-animation {
  0% {
    transform: translateY(-20px) translateX(-50px);
  }
  100% {
    transform: translateY(-20px) translateX(0px);
  }
}
@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes hero-thumb-animation {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media screen and (max-width: 576px) {
  .hide-sm {
    display: none !important;
  }
}

.applyNow {
  width: 240px;
  height: 54px;
  margin: 0 0 0 auto;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--main);
  color: var(--white);
}
@media screen and (max-width: 576px) {
  .applyNow {
    width: 100%;
  }
}
.applyNow:hover {
  color: var(--white);
}

.profileImage {
  position: relative;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profileImage .profileImageLabel {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.profileImage .profileImageLabel img {
  display: block;
  width: 150px;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100%;
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
}
.profileImage span {
  position: absolute;
  bottom: 4px;
  right: 12px;
  background-color: var(--whiteColor);
  border-radius: 100%;
  pointer-events: none;
}
.profileImage span img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
}
.profileImage input {
  display: none;
}
.profileImage.wide {
  margin: unset;
}
.profileImage.wide .profileImageLabel {
  cursor: pointer;
}
.profileImage.wide .profileImageLabel img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 3/2;
  max-height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}
.profileImage.wide span {
  bottom: -4px;
  right: -4px;
}

.sideReseumes {
  background-color: rgba(0, 150, 64, 0.0509803922);
  padding: 16px;
  border-radius: 16px;
  min-height: 100%;
  align-content: flex-start;
}

.form-error {
  font-size: 12px;
  color: red;
  line-height: normal;
}

.swal2-title {
  font-size: 18px !important;
}

.select2 {
  width: 100% !important;
  min-width: 100px;
}
.select2 .select2-selection {
  background: var(--white);
  width: 100%;
  height: 54px;
  border-radius: 12px;
  border: 1px solid var(--inputStroke);
  padding: 0 12px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.select2 .select2-selection .select2-selection__arrow {
  position: unset;
  order: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.select2 .select2-selection .select2-selection__arrow b {
  margin: 0;
  position: unset;
}
.select2 .select2-selection .select2-selection__rendered {
  width: -moz-fit-content;
  width: fit-content;
  order: 2;
  flex: 1;
}
.select2 .select2-selection .select2-selection__clear {
  margin: 0;
  order: 1;
}

.favorite_btn {
  width: 42px;
  height: 42px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  background-color: var(--inputBg);
  border: none;
}
.favorite_btn i {
  color: gray;
}
.favorite_btn.active i {
  font-weight: 900;
  color: red;
}

.verifyPhone {
  height: 54px;
  border-radius: 12px;
  padding: 0px 16px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  outline: none;
  cursor: pointer;
  background: var(--main);
  color: var(--white);
}
.verifyPhone:hover {
  color: var(--white);
}

.auth_form .title {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .auth_form .title {
    align-items: center;
    justify-content: center;
  }
}
.auth_form .title h4 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 8px;
}
.auth_form .title p {
  color: var(--text);
}
@media screen and (max-width: 768px) {
  .auth_form .title p {
    text-align: center;
  }
}
.auth_form .title p span {
  color: var(--main);
  font-weight: 500;
}
.auth_form .title.force_center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth_form .nav {
  border-bottom: 2px solid var(--inputStroke);
}
.auth_form .nav .nav-link {
  position: relative;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px !important;
}
.auth_form .nav .nav-link:hover {
  color: var(--dark);
}
.auth_form .nav .nav-link::after {
  background: var(--main);
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  transform: translateX(50%);
  right: 50%;
  height: 2px;
  transition: all 0.4s ease-in-out;
}
.auth_form .nav .nav-link.active {
  background: none;
  color: var(--main);
}
.auth_form .nav .nav-link.active::after {
  width: 100%;
}
.auth_form .tab-content {
  padding: 16px 0 0;
}
.auth_form .back_btn {
  border: none;
  background: none;
  outline: none;
  border-radius: 12px;
  height: 48px;
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 4px 16px;
}
.auth_form .save_btn {
  border: none;
  background: none;
  outline: none;
  width: 100%;
  border-radius: 12px;
  height: 48px;
  background: var(--main);
  color: var(--white);
}
.auth_form .continue {
  padding: 16px 0 12px;
  color: var(--text);
}
.auth_form .continue a {
  color: var(--main);
}
.auth_form .orSignwith {
  padding: 16px 0 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth_form .orSignwith::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--inputStroke);
  top: 50%;
  right: 0;
  z-index: -1;
  transform: translateY(-50%);
}
.auth_form .orSignwith span {
  color: var(--text);
  background: var(--white);
  padding: 0 16px;
}
.auth_form .otp-container {
  direction: ltr !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 24px;
  width: 100%;
  gap: 12px;
}
.auth_form .otp-container .otp-input {
  width: 100%;
  height: 80px;
  flex: 1;
  border-radius: 4px;
  text-align: center;
  background: #f4f4f4;
  font-size: 24px;
  font-weight: 700;
  color: var(--main);
  outline: none;
  border: none;
}
@media (max-width: 576px) {
  .auth_form .otp-container .otp-input {
    height: 60px;
  }
}
.auth_form .otp-container .otp-input::-webkit-inner-spin-button {
  display: none;
}
.auth_form .resend {
  padding-bottom: 12px;
}
.auth_form .platForms {
  display: flex;
  gap: 12px;
}
.auth_form .platForms a {
  height: 54px;
  border-radius: 12px;
  background: var(--inputBg);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.auth_form .platForms a:hover {
  color: var(--dark);
}
@media (max-width: 576px) {
  .auth_form .platForms a p {
    font-size: 12px;
  }
  .auth_form .platForms a img {
    height: 16px;
  }
}
.auth_form .select_type {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.auth_form .select_type input {
  display: none;
}
.auth_form .select_type input:checked + .content {
  background: rgba(0, 150, 64, 0.0509803922);
  border: 1px solid var(--main);
}
.auth_form .select_type input:checked + .content img {
  filter: brightness(1) invert(0);
}
.auth_form .select_type .content {
  border: 1px solid var(--inputBg);
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--inputBg);
  height: 100%;
  padding: 24px 16px;
  border-radius: 12px;
}
.auth_form .select_type .content h6 {
  margin: 0;
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
}
.auth_form .select_type .content p {
  font-size: 14px;
  color: var(--text);
  line-height: 24px;
}
.auth_form .select_type .content img {
  transition: all 0.4s ease-in-out;
  margin-bottom: 16px;
  filter: brightness(0) invert(0);
}
.auth_form .plans {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.auth_form .plans::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 576px) {
  .auth_form .plans {
    flex-direction: column;
  }
}
.auth_form .plans .plan {
  min-width: 300px;
  padding: 16px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 1em 2em;
}
.auth_form .plans .plan .img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-direction: column;
  border-bottom: 1px solid var(--inputStroke);
}
.auth_form .plans .plan .img img {
  height: 80px;
}
.auth_form .plans .plan .img h5 {
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
}
.auth_form .plans .plan ul {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--inputStroke);
}
.auth_form .plans .plan ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: baseline;
}
.auth_form .plans .plan ul li .benefit {
  display: flex;
  align-items: baseline;
  gap: 6px;
  max-width: 245px;
  line-height: 24px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}
.auth_form .plans .plan ul li .benefit i {
  font-size: 14px;
  color: var(--main);
}
.auth_form .plans .plan ul li span {
  color: var(--dark);
  font-weight: 600;
}
.auth_form .plans .plan ul li.dashed .benefit {
  text-decoration: line-through;
  color: var(--text);
}
.auth_form .plans .plan ul li.dashed .benefit i {
  visibility: hidden;
}
.auth_form .plans .plan ul li.dashed span {
  display: none;
}
.auth_form .plans .plan .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 0;
}
.auth_form .plans .plan .price h5 {
  font-size: 22px;
  font-weight: 700;
  color: var(--main);
  margin: 0;
}
.auth_form .plans .plan .price h5 span {
  color: var(--dark);
  margin-right: 4px;
  font-size: 16px;
  font-weight: 700;
}
.auth_form .plans .plan .price h5 span:nth-child(2) {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.41px;
  margin: 4px;
}
.auth_form .plans .plan .price button {
  border: none;
  background: none;
  outline: none;
  width: 100px;
  height: 36px !important;
  border-radius: 100px;
  background: var(--main);
  color: var(--white);
  height: 48px;
}

.profile_card {
  height: 100%;
}
.profile_card .owner h6 {
  font-size: 18px !important;
  margin-bottom: 2px;
}
.profile_card .nationality_gender {
  line-height: normal;
  margin-bottom: 2px;
}
.profile_card .nationality_gender span {
  font-size: 14px !important;
  line-height: normal !important;
}

.swiper-slide {
  height: auto !important;
} /*# sourceMappingURL=style.css.map */

.share_btn {
  background-color: var(--inputBg);
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 0;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 50%;

  i {
    color: var(--main);
  }
}
.select2-dropdown {
  background: var(--white) !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  background-color: var(--inputBg);
  color: var(--dark);
}
i.fa-search {
  color: var(--dark);
}
.topSearch input::placeholder{
  color: var(--dark);
}
main .home_section .profile_card,
.AECard {
  border-radius: 16px 100px 100px 16px ;
}
