@charset "UTF-8";
/*-------------------------------------------------------------------
top-header.scss
-------------------------------------------------------------------*/
/*Start Theme Basic*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --clr-primary: #114388;
  --clr-primary-2: #114388;
  --clr-white: #fff;
  --clr-black: #1C222B;
  --clr-black-2:#333A51;
  --clr-border: #EBEFF5;
  --clr-from-border: #D6DDEB;
  --clr-red: #FF3B3B;
  --clr-ylw: #FEA412;
  --clr-green:#06C270;
  --clr-body-text:#6A7381;
  --clr-fill:#cecece;
  --clr-background:#F6F8FC;
  --clr-background-1:#F7F5F1;
  --font-1: "Poppins", sans-serif;
  --font-2: "Inter", sans-serif;
  --clr-rgb:rgba(13, 110, 253, 0.06);
  --clr-gradient: linear-gradient(90deg, rgba(253, 60, 61, 0.24) 0%, rgba(13, 110, 253, 0.24) 100%);
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  font-family: var(--font-1);
  font-optical-sizing: auto;
  box-sizing: border-box;
  overflow-x: hidden;
}

body .container {
  max-width: 1304px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-28 {
  margin-bottom: 28px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.section-margin-top {
  margin-top: 100px;
}

.section-padding {
  padding: 100px 0;
}

.section-padding-top {
  padding-top: 100px;
}

.section-padding-bottom {
  padding-bottom: 100px;
}

.ps-22 {
  padding-left: 22px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-10 {
  padding-left: 10px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.pt-60 {
  padding-top: 60px;
}

.bg-rgb {
  background: var(--clr-rgb);
}

.bg-color {
  background: var(--clr-background);
}

.bg-color-1 {
  background: var(--clr-background-1);
}

.bg-pr {
  background: var(--clr-primary-2);
}

.bg-gr {
  background: var(--clr-green) !important;
}

.bg-red {
  background: var(--clr-red);
}

.bg-ylw {
  background: var(--clr-ylw);
}

.bg-fill {
  background: var(--clr-fill);
}

.tx-pr {
  color: var(--clr-primary-2);
}

.tx-gr {
  color: var(--clr-green);
}

.tx-red {
  color: var(--clr-red);
}

.tx-ylw {
  color: var(--clr-ylw);
}

.tx-blk {
  color: var(--clr--black);
}

.tx-body {
  color: var(--clr-body-text) !important;
}

.tx-border {
  color: var(--clr-border);
}

.fn-semi-b {
  font-weight: 600;
}

.fn-12 {
  font-size: 12px;
}

.fn-14 {
  font-size: 14px;
}

.fn-16 {
  font-size: 16px !important;
}

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

.font-md {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.font-bold {
  font-weight: 700 !important;
}

.font-400 {
  font-weight: 400 !important;
}

h3 {
  color: var(--clr-black);
  font-weight: 600;
}

h1 {
  line-height: 1.5;
}

p {
  line-height: 1.75;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-90 {
  gap: 90px;
}

.border-10 {
  border: 1px solid var(--clr-border);
  border-radius: 10px;
}

.border-rd-10 {
  border-radius: 10px;
}

.bg-color-pricing {
  background: #F7F5F1;
}

p, span {
  color: var(--clr-body-text);
}

hr {
  color: var(--clr-border);
  opacity: 1;
}

.main-header .custom-btn {
  padding: 12px;
}

.rtl-mode {
  top: 60%;
  right: -55px;
  margin-top: -115px;
  z-index: 7777;
  line-height: 1;
  position: fixed;
  text-align: left;
  display: inline-block;
  transition: all 0.4s ease;
  transform: translateY(-50%);
  background: var(--clr-red);
  padding: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.rtl-mode button {
  width: 50px;
  padding: 12px;
  font-size: 16px;
  background: var(--clr-white);
  color: var(--clr-primary-2);
  border: none;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.custom-btn {
  text-decoration: none;
  color: var(--clr-white);
  background: var(--clr-primary-2);
  border-radius: 5px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  border: none;
}
.custom-btn img {
  margin-left: 10px;
  margin-bottom: 2px;
}

.custom-btn:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0px 5px 20px rgba(13, 109, 253, 0.4862745098);
}

.cus-box-shadow {
  box-shadow: 0px 5px 20px rgba(13, 109, 253, 0.4862745098);
}

.custom-btn-1 {
  text-decoration: none;
  color: var(--clr-white);
  background: var(--clr-primary-2);
  border-radius: 5px;
  padding: 12px;
  font-weight: 500;
  border: none;
}
.custom-btn-1 i {
  margin-right: 5px;
}

.custom-btn-1:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.custom-btn-signin {
  text-decoration: none;
  color: var(--clr-white);
  background: var(--clr-primary-2);
  border-radius: 5px;
  padding: 8px 12px;
  font-weight: 500;
  border: none;
}
.custom-btn-signin i {
  margin-right: 5px;
}

.custom-btn-signin:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.bg-image-slider {
  background-image: url("../../image/Slider.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.bg-image {
  background-image: url("../../image/Grow-your-career.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.box-info {
  padding-top: 88px;
}
.box-info .box {
  padding: 5px;
  border-radius: 10px;
}
.box-info .box .box-img {
  border-radius: 10px;
}
.box-info .box .box-img img {
  width: 100%;
}

.count {
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.articles .bg-color-gradient {
  margin: 0px 14px;
}
.articles .article-card {
  border-radius: 10px;
  background: var(--clr-white);
}
.articles .article-card .card-image img {
  width: 100%;
}
.articles .article-card span {
  font-size: 14px;
  font-weight: 500;
}
.articles .article-card span img {
  margin-bottom: 2px;
}
.articles .article-card h5 {
  font-size: 20px;
  font-weight: 600;
}
.articles .article-card:hover {
  box-shadow: 0px 0px 15px rgba(13, 109, 253, 0.315);
}

.btn-read-more {
  text-decoration: none;
  font-weight: 500;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-radius: 5px;
}

.nav-right-items .input-group .form-control:focus {
  box-shadow: none;
  border: 1px solid #114388;
}

.box-style {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.0588235294);
  padding: 24px;
  border-radius: 10px;
  margin-top: 20px;
}
.box-style .title-box {
  border-radius: 5px;
}
.box-style .title-box .row {
  padding: 5px;
}
.box-style h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-black);
}

.span-blue {
  background: var(--clr-rgb);
  color: var(--clr-primary-2);
  border-radius: 5px;
  padding: 12px 10px;
  font-size: 14px;
}

.span-blue-2 {
  background: var(--clr-rgb);
  color: var(--clr-primary-2);
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
}

ul li {
  color: var(--clr-body-text);
}

.pagination .page-link {
  padding: 7px 16px;
  color: var(--clr-body-text);
  border: 1px solid transparent;
}

.pagination .page-link:hover {
  z-index: 2;
  color: #ffffff;
  background-color: var(--clr-primary-2);
  border-radius: 5px;
}
.pagination .page-link:hover span i {
  color: #ffffff;
}

.pagination .page-link.active {
  z-index: 2;
  color: #ffffff;
  background-color: var(--clr-primary-2);
  border-radius: 5px;
}
.pagination .page-link.active span i {
  color: #ffffff;
}

.pagination .page-link:focus {
  z-index: 2;
  color: #ffffff;
  background-color: var(--clr-primary-2);
  border-radius: 5px;
  box-shadow: none;
}
.pagination .page-link:focus span i {
  color: #ffffff;
}

.dropdown-toggle::after {
  border-top: none !important;
}

.sort a {
  text-decoration: none;
  color: var(--clr-black);
  font-weight: 500;
}

.equal-btn {
  background: var(--clr-rgb);
  border: none;
  border-radius: 5px;
  padding: 10px;
  color: var(--clr-primary-2);
}

.equal-btn:hover {
  background: rgba(184, 212, 255, 0.4196078431);
}

.features-included ul {
  padding: 0;
}
.features-included ul li {
  list-style: none;
  margin: 10px 0;
}
.features-included ul li i.fa-check {
  background: var(--clr-rgb);
  border-radius: 50%;
  color: var(--clr-primary-2);
  padding: 5px;
  font-size: 12px;
  margin-right: 16px;
}
.features-included ul li i.fa-close {
  background: var(--clr-rgb);
  border-radius: 50%;
  color: var(--clr-red);
  padding: 5px;
  font-size: 12px;
  margin-right: 16px;
}

.bg-color-pricing .form-switch .form-check-input {
  border: none;
  background-color: #959191;
  width: 3em;
  height: 1.5em;
  background-image: url(../../image/white-circle.svg);
}

.bg-color-pricing .form-check-input:checked[type=checkbox] {
  background-color: var(--clr-primary-2);
  background-image: url(../../image/white-circle.svg);
}

.bg-color-pricing .form-switch {
  padding-left: 3.5em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bg-color-pricing .form-switch label {
  margin-top: 5px;
}

.about-title {
  font-size: 44px;
}

.apply-img {
  width: 50px;
  height: 50px;
}
.apply-img img {
  width: 100%;
}

.logo-slider h6 {
  color: var(--clr-body-text);
}
.logo-slider .bg-color-gradient:hover {
  background: #000000;
}

.contact .box-contact-icon {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-body-text);
  border-radius: 10px;
  font-size: 20px;
  color: var(--clr-white);
}
.contact .box-contact-icon img {
  width: 24px;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  margin-bottom: 16px;
  margin-top: 24px;
}

.user-img img {
  width: 150px;
  height: 150px;
}

.user-Qualification ul li {
  font-size: 14px;
  color: var(--clr-black);
  list-style: none;
  display: flex;
}

.user-Qualification > ul > li::before {
  content: " ";
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin: 10px;
  background: #1C222B;
}

.user-Personal table tr > td {
  padding-right: 20px;
}

.badge-gray {
  background: var(--clr-from-border);
  border-radius: 16px;
  padding: 6px 10px;
  font-size: 14px;
  color: var(--clr-black-2);
}

.box-video {
  height: 400px;
}

iframe {
  border: 0;
  border-radius: 10px;
}

.form-control:focus {
  box-shadow: none;
}

.text-dark h5:hover {
  color: var(--clr-primary-2) !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid var(--clr-primary) 1px !important;
  outline: 0;
}

.top-header {
  padding: 10px 0;
  background-color: #114388;
}
.top-header .top-header-info {
  font-size: 14px;
  color: #ffffff;
}
.top-header .top-header-info a {
  text-decoration: none;
  color: #ffffff;
}

.drop-box .dropdown-toggle {
  text-decoration: none;
  color: #ffffff;
}
.drop-box .dropdown-toggle::after {
  border-top: none !important;
}
.drop-box .dropdown-item a {
  color: #1C222B;
}

.top-social {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.top-social li {
  height: 26px;
  width: 26px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-social li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
}
.top-social li:hover {
  background-color: #ffffff;
}
.top-social li:hover i {
  color: #114388;
}

.main-header {
  padding: 10px 0;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.0588235294);
}

.nav-right-items .input-group {
  width: 90%;
  border-radius: 5px;
  overflow: hidden;
}
.nav-right-items .input-group img {
  position: relative;
  z-index: 99;
  left: 23px;
}
.nav-right-items .input-group .form-control {
  border: 1px solid transparent;
  padding: 8px 10px 7px 26px;
}
.nav-right-items .input-group ::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #1C222B;
  opacity: 1; /* Firefox */
}
.nav-right-items .input-group ::placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #1C222B;
  opacity: 1; /* Firefox */
}
.nav-right-items .btn-primary {
  padding-bottom: 10px;
}

.nav .navbar-light .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #1C222B;
  padding: 10px;
}

.nav .navbar-light .navbar-nav .nav-item:first-child .nav-link:after {
  font-family: "FontAwesome";
  font-size: 12px;
  margin-left: 4px;
  margin-top: 0;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  background: #ffffff;
  transition: all 0.5s;
}

.sticky + .content {
  padding-top: 102px;
}

.navbar-toggler i {
  padding: 5px;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  border-color: var(--clr-primary-2);
  box-shadow: none;
}
.navbar-toggler:focus i {
  color: var(--clr-primary-2);
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem;
  margin: 0;
  font-size: 1rem;
  color: var(--clr-body-text);
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  box-shadow: 0px 0px 20px 0.25px rgba(0, 0, 0, 0.1882352941);
  border-radius: 0.25rem;
}

.dropdown-item {
  border-radius: 5px;
  padding: 0.5rem;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: var(--clr-primary-2);
  background-color: var(--clr-rgb);
  transition: 0.5s linear;
}

.dropdown-menu li:focus, .dropdown-menu li:hover .dropdown-item::before {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s;
}

a.dropdown-item::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-bottom: 0;
  border-left: 0;
  border-top: 2px solid var(--clr-primary-2);
  border-right: 2px solid var(--clr-primary-2);
  transform: rotate(45deg);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}

.navbar .navbar-nav .nav-item .nav-link img {
  margin-top: 10px;
  position: absolute;
}

.navbar-nav .nav-item .nav-link.dropdown-toggle.show img {
  margin-top: 10px;
  position: absolute;
  transform: translateY(0%) rotate(180deg);
  transition: 0.2s linear;
}

.dropdown-toggle img.d-down {
  margin-top: 10px;
  position: absolute;
}

.dropdown-toggle.show img.d-down {
  margin-top: 10px;
  position: absolute;
  transform: translateY(0%) rotate(180deg);
  transition: 0.2s linear;
}

.navbar-nav .nav-item:hover a {
  color: var(--clr-primary-2) !important;
}

.slide .container {
  gap: 100px;
}
.slide .slide-info {
  margin-top: 180px;
}
.slide .slide-info .ti-minus {
  font-weight: bolder;
  font-size: 30px;
}
.slide .slide-info a.slide-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.slide .slide-info p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 85%;
}
.slide .slide-info .color-green {
  color: #06C270;
}
.slide .slide-info .custom-btn {
  font-size: 16px;
}
.slide .show-slide-info {
  padding: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 5px 20px rgba(13, 109, 253, 0.4862745098);
}
.slide .job {
  position: absolute;
  top: 12%;
  left: 55%;
  animation-name: live-job;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes live-job {
  0% {
    top: 12%;
  }
  25% {
    top: 14%;
  }
  50% {
    top: 12%;
  }
  75% {
    top: 14%;
  }
  100% {
    top: 12%;
  }
}
.slide .resume {
  position: absolute;
  top: 80%;
  left: 45%;
  animation-name: resume;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes resume {
  0% {
    top: 80%;
  }
  25% {
    top: 82%;
  }
  50% {
    top: 80%;
  }
  75% {
    top: 82%;
  }
  100% {
    top: 80%;
  }
}
.slide .employers {
  position: absolute;
  top: 12%;
  left: 85%;
  animation-name: employers;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes employers {
  0% {
    top: 12%;
  }
  25% {
    top: 14%;
  }
  50% {
    top: 12%;
  }
  75% {
    top: 14%;
  }
  100% {
    top: 12%;
  }
}
.slide .companies {
  position: absolute;
  top: 60%;
  left: 88%;
  animation-name: companies;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes companies {
  0% {
    top: 62%;
  }
  25% {
    top: 60%;
  }
  50% {
    top: 62%;
  }
  75% {
    top: 60%;
  }
  100% {
    top: 62%;
  }
}

.bg-color-gradient {
  border: double 1px transparent;
  background-image: linear-gradient(white, white), linear-gradient(to left, #33ccff 0%, #ff99cc 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  border-radius: 10px;
  margin: 0 19px;
}


/* Contenedor del logo (ya lo tienes) */
.bg-color-gradient .companies-logo {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 18.5px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18dvh; 
}

.bg-color-gradient .companies-logo img {
  max-width: 100%; /* Ajuste al ancho del contenedor */
  max-height: 100%; /* Ajuste a la altura del contenedor */
  width: auto; /* Mantiene proporciones */
  height: auto; /* Mantiene proporciones */
  
}

.company-profile {
  /* Arrows */
}
.company-profile .slick-prev,
.company-profile .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  border-radius: 50%;
  outline: none;
  background: transparent;
}
.company-profile .slick-prev:hover,
.company-profile .slick-prev:focus,
.company-profile .slick-next:hover,
.company-profile .slick-next:focus {
  color: transparent;
  outline: none;
  background: #285aff;
}
.company-profile .slick-prev:hover:before,
.company-profile .slick-prev:focus:before,
.company-profile .slick-next:hover:before,
.company-profile .slick-next:focus:before {
  opacity: 1;
  color: white;
}
.company-profile .slick-prev.slick-disabled:before,
.company-profile .slick-next.slick-disabled:before {
  opacity: 0.25;
}
.company-profile .slick-prev:before {
  margin-right: 3px;
  position: absolute;
  top: -1px;
  right: 5px;
}
.company-profile .slick-next:before {
  margin-left: 3px;
  position: absolute;
  top: -1px;
  left: 6px;
}
.company-profile .slick-prev:before,
.company-profile .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.company-profile .slick-prev {
  left: 20px;
  z-index: 99;
}
.company-profile [dir=rtl] .slick-prev {
  right: 18px;
  left: auto;
}
.company-profile .slick-prev:before {
  content: "🢐";
}
.company-profile [dir=rtl] .slick-prev:before {
  content: "🢒";
}
.company-profile .slick-next {
  right: 18px;
  z-index: 99;
}
.company-profile [dir=rtl] .slick-next {
  right: auto;
  left: 18px;
}
.company-profile .slick-next:before {
  content: "🢒";
}
.company-profile [dir=rtl] .slick-next:before {
  content: "🢐";
}

.cateogrys .col-xl-3 {
  padding: 0 10.5px;
}
.cateogrys .bg-color-gra {
  border: double 1px transparent;
  background-image: linear-gradient(white, white), linear-gradient(to left, #33ccff 0%, #ff99cc 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  border-radius: 5px;
  margin-bottom: 24px;
}
.cateogrys .bg-color-gra .cateogry-items {
  background: #ffffff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  padding: 23px 10px;
}
.cateogrys .bg-color-gra .cateogry-items .cateogry-name {
  text-align: left;
}
.cateogrys .bg-color-gra .cateogry-items .cateogry-name h5 {
  color: var(--clr-black);
  font-size: 18px;
  font-weight: 600;
}
.cateogrys .bg-color-gra .cateogry-items .cateogry-name p {
  margin-bottom: 0;
}
.cateogrys .bg-color-gra .cateogry-items i {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.06);
  border-radius: 5px;
}
.cateogrys .bg-color-gra .cateogry-items i svg {
  fill: #114388;
}
.cateogrys .bg-color-gra :hover {
  background: #114388;
  color: #ffffff;
  box-shadow: 0px 5px 20px rgba(13, 109, 253, 0.4862745098);
}
.cateogrys .bg-color-gra :hover i {
  background: rgba(255, 255, 255, 0.062);
}
.cateogrys .bg-color-gra :hover i svg {
  fill: #ffffff;
}
.cateogrys .bg-color-gra :hover * {
  color: var(--clr-white);
}
.cateogrys .bg-color-gra :hover .cateogry-name h5 {
  color: var(--clr-white);
}
.cateogrys :hover {
  background: #ffffff;
}

.circular .bg-color-gradient {
  margin: 12px 0px;
}
.circular .bg-color-gradient:hover {
  background: var(--clr-white);
}
.circular .circular-item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--clr-white);
}
.circular .circular-item .title-box {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.circular .circular-item .title-box img {
  height: 40px;
  border-radius: 10px;
}
.circular .circular-item .title-box .circular-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.circular .circular-item .title-box .circular-title h5 {
  font-size: 18px;
  font-weight: 600;
}
.circular .circular-item .title-box .circular-title span {
  font-size: 14px;
  color: var(--clr-green);
}
.circular .circular-item .time-location {
  color: var(--clr-body-text);
  font-size: 14px;
  margin-bottom: 16px;
}
.circular .circular-item .job-type {
  margin-top: 8px;
}
.circular .circular-item .job-type span {
  font-size: 12px;
  font-weight: 500;
  background-color: var(--clr-rgb);
  color: var(--clr-primary-2);
  padding: 7px 10px;
  border-radius: 5px;
  margin-right: 5px;
}
.circular .circular-item .salary-range {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.circular .circular-item .salary-range span {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-primary-2);
}
.circular .circular-item .salary-range .btn-apply {
  background: var(--clr-primary-2);
  text-decoration: none;
  color: var(--clr-white);
  font-size: 14px;
  border-radius: 5px;
  padding: 8.5px 20.5px;
}
.circular .circular-item:hover {
  border: 1px solid var(--clr-primary-2);
  box-shadow: 0px 0px 10px 1px rgba(13, 109, 253, 0.16);
}

.job-type-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.job-type-list .bg-color-grad {
  border: double 1px transparent;
  background-image: linear-gradient(white, white), linear-gradient(to left, #33ccff 0%, #ff99cc 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  border-radius: 5px;
  position: relative;
}
.job-type-list .bg-color-grad .job-item {
  padding: 11px 17px;
}
.job-type-list .bg-color-grad .job-item .job-items {
  text-decoration: none;
  color: var(--clr-black);
  background: var(--clr-white);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}
.job-type-list .bg-color-grad:hover {
  background: var(--clr-primary-2);
}
.job-type-list .bg-color-grad:hover .job-items {
  background: var(--clr-primary-2);
  color: var(--clr-white);
}

.details-top .title-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
.details-top .title-box span.tx-red {
  font-size: 14px;
}
.details-top .title-box .circular-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.details h6 {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-black);
}
.details .procedure {
  padding: 34px;
}
.details .procedure iframe {
  border-radius: 10px;
}
.details a {
  text-decoration: none;
  font-weight: 500;
}

.clear-all {
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
}

.filter-types .form-check-input:checked[type=checkbox] {
  background-image: url(../../image/check.png) !important;
  background-size: auto;
}
.filter-types a {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-black);
  text-decoration: none;
}
.filter-types .card {
  border: none;
}
.filter-types .card .form-check {
  padding-bottom: 20px;
}
.filter-types .card .form-check:last-child {
  padding-bottom: 0px;
}
.filter-types .form-check-input[type=checkbox] {
  height: 24px;
  border-radius: 5px;
  width: 24px;
  border: 1px solid var(--clr-from-border);
}
.filter-types .form-check-label {
  font-size: 16px;
  color: var(--clr-body-text);
  padding-left: 16px;
  padding-top: 5px;
}

.btn-nav-accordion[aria-expanded=true] svg {
  transform: rotate(180deg);
}

svg {
  transition: all 0.3s ease;
}

.btn-nav-accordion.collapsed svg {
  transform: rotate(180deg);
}

.btn-nav-accordion[aria-expanded=false] svg {
  transform: rotate(0deg);
}

.title-box .input-group {
  display: flex;
  justify-content: start;
  align-items: center;
}
.title-box .input-group .form-control {
  border: none;
}
.title-box .custom-btn {
  padding: 12px 26px;
}

.find-job .circular .circular-item {
  gap: 0;
}
.find-job .circular .circular-item hr {
  margin: 20px 0;
}
.find-job .box .box-img img {
  width: 95%;
}
.find-job .career-info .col-sm-6 {
  width: 270px;
  margin-right: 20px;
  padding: 0;
}
.find-job .career-info .col-sm-6 .image-bg img {
  padding: 12px;
}

.form-check-input:focus {
  box-shadow: none;
}

.employers-list .circular .circular-item .title-box .time-location img {
  width: auto;
  height: auto;
}
.employers-list .circular .circular-item .time-location .location {
  gap: 6px;
}

.btn-bottom .custom-btn {
  padding: 17px 24px;
}

.company-profile ul {
  padding: 0;
}
.company-profile ul li {
  list-style: none;
}
.company-profile ul li i {
  padding-right: 16px;
}
.company-profile .gallery img {
  width: 100%;
  border-radius: 5px;
}
.company-profile .social-m a {
  color: var(--clr-body-text);
  background: #f6f8fc;
  border-radius: 5px;
  font-size: 16px;
  padding: 12px;
}
.company-profile .social-m a:hover {
  background: #e9ecef;
}

.box-contact-icon {
  height: 46px;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 10px;
  font-size: 20px;
}
.box-contact-icon img {
  width: 20px;
}

.margin-minus {
  margin-top: -100px;
  z-index: 99;
  background: #ffffff;
}

.bg-image-2 {
  background-image: url("../../../images/default/banner.png");
  height: 30vh;
}

.candidate-details .title-box h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0;
}
.candidate-details .title-box span {
  font-size: 14px;
}
.candidate-details ul li {
  margin-bottom: 20px;
}
.candidate-details .box-contact-icon {
  height: 46px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-body-text);
  border-radius: 10px;
  font-size: 20px;
}
.candidate-details .box-contact-icon img {
  width: 18px;
}

.blog-details .list-style-decimal {
  padding-left: 1.5rem;
}
.blog-details .list-style-decimal li {
  list-style: decimal;
}
.blog-details .blog-social {
  padding: 0;
}
.blog-details .blog-social li {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid var(--clr-border);
}
.blog-details .blog-social li a {
  color: var(--clr-body-text);
  text-decoration: none;
}
.blog-details .blog-social li:hover {
  border: 1px solid var(--clr-primary-2);
  background: var(--clr-primary-2);
}
.blog-details .blog-social li:hover a {
  color: var(--clr-white);
}
.blog-details .populer-tags {
  font-size: 14px;
  text-decoration: none;
  border-radius: 30px;
  padding: 10px 16px;
  background: var(--clr-rgb);
  color: var(--clr-body-text);
}
.blog-details .populer-tags:hover {
  background: var(--clr-primary-2);
  color: var(--clr-white);
}

.form-style .btn-user-sw {
  border: none;
  background: none;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
}
.form-style .btn-user-sw.active {
  background: var(--clr-rgb);
  color: var(--clr-primary-2);
}
.form-style .btn-user-sw:hover {
  background: var(--clr-rgb);
  color: var(--clr-primary-2);
}
.form-style .sign-content {
  width: 408px;
}
.form-style .google-signup {
  width: 100%;
  padding: 11px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border);
  text-decoration: none;
  border-radius: 5px;
}
.form-style .google-signup img {
  margin-right: 10px;
}
.form-style .or-sign-email {
  height: 1px;
  width: 27%;
  background: var(--clr-border);
}
.form-style .form-label {
  color: var(--clr-body-text);
  font-weight: 500;
  margin-bottom: 12px;
}
.form-style label {
  color: var(--clr-body-text);
  font-weight: 500;
  display: flex;
}
.form-style .form-control {
  padding: 11px 0.75rem;
  border: 1px solid var(--clr-from-border);
  color: var(--clr-body-text);
}
.form-style .form-control:focus {
  border: 1px solid var(--clr-primary-2);
  box-shadow: none;
}
.form-style .input-password {
  position: relative;
}
.form-style .password-toggle-icon {
  position: absolute;
  top: 70%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}
.form-style .password-toggle-icon i {
  font-size: 18px;
  line-height: 1;
  color: var(--clr-body-text);
  transition: color 0.3s ease-in-out;
}
.form-style .password-toggle-icon i:hover {
  color: var(--clr-body-text);
}
.form-style .submit {
  padding: 12px 0;
  border: none;
  color: var(--clr-white);
  border-radius: 5px;
  background: var(--clr-primary-2);
}
.form-style .checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.form-style .checkbox input {
  position: absolute;
  width: 0;
  left: 50px;
  height: 0;
  opacity: 0;
  cursor: pointer;
}
.form-style .checkbox .checkmark {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 3px;
  outline: 1px solid var(--clr-from-border);
  transition: all 0.2s ease;
}
.form-style .checkbox:hover .checkmark {
  background: #ffffff;
  transition: all 0.2s ease;
}
.form-style .checkbox input:checked ~ .checkmark {
  background: var(--clr-primary-2);
  outline: 1px solid var(--clr-primary-2);
}
.form-style .checkbox .checkmark::after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  top: 40%;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 1px 1px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
}
.form-style .checkbox input:checked ~ .checkmark::after {
  opacity: 1;
  transition: all 0.2s ease;
}

.edit-resume .color-tx-1 .form-label {
  color: var(--clr-black);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}
.edit-resume .color-tx-1 label {
  color: var(--clr-black);
  font-weight: 600;
  font-size: 14px;
  display: flex;
}
.edit-resume .color-tx-1 .form-control {
  color: var(--clr-black) !important;
  font-size: 14px;
  border-radius: 6px;
}
.edit-resume .color-tx-1 .form-control::-moz-placeholder {
  color: var(--clr-black) !important;
  font-size: 14px;
}
.edit-resume .color-tx-1 .form-control::placeholder {
  color: var(--clr-black) !important;
  font-size: 14px;
}
.edit-resume .color-tx-2 .form-label {
  color: var(--clr-black-2);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}
.edit-resume .color-tx-2 label {
  color: var(--clr-black-2);
  font-weight: 600;
  font-size: 14px;
  display: flex;
}
.edit-resume .color-tx-2 .form-control {
  color: var(--clr-black-2) !important;
  font-size: 14px;
  border-radius: 6px;
}
.edit-resume .color-tx-2 .form-control::-moz-placeholder {
  color: var(--clr-black-2) !important;
  font-size: 14px;
}
.edit-resume .color-tx-2 .form-control::placeholder {
  color: var(--clr-black-2) !important;
  font-size: 14px;
}

.dashboard .box-style h6 {
  font-size: 18px;
}
.dashboard .side-nav {
  height: 100vh;
  padding: 20px 14px;
}
.dashboard .side-menu {
  padding: 10px 16px;
  border-radius: 5px;
  color: var(--clr-body-text);
  font-weight: 500;
}
.dashboard .side-menu.active {
  color: #fff;
  background: var(--clr-primary-2);
}
.dashboard .side-menu.active span {
  color: #fff;
}
.dashboard .side-menu:hover {
  color: #fff;
  background: var(--clr-primary-2);
}
.dashboard .side-menu:hover span {
  color: #fff;
}
.dashboard .custom-btn {
  padding: 10px 12px;
}
.dashboard .box-contact-icon {
  height: 50px;
  width: 50px;
  color: var(--clr-primary-2);
}
.dashboard .border-top-bottom {
  border-top: 1px solid var(--clr-border);
}
.dashboard .border-top-bottom:last-child {
  border-bottom: 1px solid var(--clr-border);
}
.dashboard .height-75 {
  height: 75px;
}
.dashboard .box-padding {
  padding: 26px 20px;
}
.dashboard .custom-btn-1 {
  padding: 10px 12px;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.notification-list .box-contact-icon {
  height: 50px;
  width: 50px;
}
.notification-list .box-contact-icon i {
  color: var(--clr-black);
  font-size: 26px;
}
.notification-list .notification-item i {
  color: var(--clr-black);
}
.notification-list .notification-item .date-time-w {
  width: 145px;
}
.notification-list .notification-item .options-vertical {
  background: none;
  border: none;
}

.notification-delete {
  display: none;
  position: absolute;
  right: 30px;
}

.cust-tn-white {
  border-radius: 5px;
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.0588235294);
  padding: 10px;
  color: var(--clr-body-text);
}

.cust-tn-white.show {
  display: block;
}

label {
  color: var(--clr-body-text);
}

.edit-resume .table > :not(caption) > * > * {
  border-bottom-width: 0px;
}
.edit-resume .btn-nav-accordion[aria-expanded=true] {
  color: var(--clr-primary-2);
  border: 1px solid var(--clr-primary-2);
}
.edit-resume .collapse.show {
  border-radius: 10px;
  box-shadow: none;
}
.edit-resume .card {
  border: none;
  border-radius: 10px;
  box-shadow: 0px 0px 3px #c9c9c9;
}
.edit-resume .view {
  margin-bottom: 24px;
}
.edit-resume .view h6 {
  color: var(--clr-body-text);
}
.edit-resume .btn-check:focus + .btn, .edit-resume .btn:focus {
  outline: 0;
  box-shadow: none;
}

.edit-resume a {
  font-size: 18px;
  font-weight: 500;
  color: #6a7381;
  text-decoration: none;
}

/* resume view */
.tab-group {
  width: 100%;
  border-radius: 4px;
  background-color: #f5faf0;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  margin: 0 0 10px 0;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.tab-group form {
  margin: 0;
}

.tab-group .btn.active {
  background-color: #595959;
  color: #ffffff;
  position: relative;
}

.btn.active,
.btn:active {
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.tab-group .btn {
  background-color: #f7f7f7;
  color: #595959;
  border: none;
  box-shadow: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 15px 0;
  text-transform: none;
  border-radius: 4px;
  width: 25%;
  margin-left: -4px !important;
}

.tab-group {
  width: 100%;
  border-radius: 4px;
  background-color: #f5faf0;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  margin: 0 0 10px 0;
}

.tab-group form {
  margin: 0;
}

.tab-group .btn i {
  display: block;
}

.tab-group .btn i {
  font-size: 18px;
}

.tab-group .btn:hover {
  box-shadow: none;
  color: #424242;
  outline: none;
}

.tab-group .btn.active {
  background-color: #595959;
  color: #ffffff;
  position: relative;
}

.tab-group .btn.active:after {
  content: "";
  bottom: 0;
  position: absolute;
  bottom: -10px;
  left: 40% !important;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #595959;
}

.tab-group.assessment {
  background-color: #f7f7f7;
}

.tab-group.assessment .btn {
  width: 25%;
  margin: 0 !important;
}

.tab-group.assessment.b2c .btn {
  width: 33.33%;
  margin: 0 !important;
  border-radius: 4px !important;
}

@media only screen and (min-width: 0) and (max-width: 991px) {
  .tab-group .btn,
  .tab-group.assessment .btn {
    width: 100%;
    margin: 0 !important;
    text-align: left;
    padding: 10px 0 10px 15px;
    box-shadow: none;
  }
  .tab-group.assessment .btn i {
    margin-right: 10px;
  }
  .tab-group .btn i {
    display: inline-block;
  }
  .tab-group .btn.active:after {
    display: none;
  }
  .tab-group .btn,
  .tab-group.assessment.b2c .btn {
    width: 100%;
    margin: 0 !important;
    text-align: left;
    padding: 10px 0 10px 15px;
    box-shadow: none;
  }
}
.tab-group .btn.active {
  background-color: #114388;
  color: #ffffff;
  position: relative;
}

.tab-group .btn.active:after {
  content: "";
  bottom: 0;
  position: absolute;
  bottom: -10px;
  left: 45% !important;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #114388;
  transition-delay: 1s;
}

.hide {
  display: none;
}

.btn-update {
  border: 1px solid rgba(13, 109, 253, 0.337254902);
  color: var(--clr-white) !important;
  background: #0d6dfd;
  font-size: 18px !important;
  font-weight: 600 !important;
  margin: 10px;
  padding: 8px 15px;
  border-radius: 5px;
}

.btn-default {
  border: 1px solid var(--clr-from-border);
  color: var(--clr-body-text);
  background: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 10px;
  padding: 8px 12px;
  border-radius: 5px;
}

.btn-update:hover {
  background: #0154d1;
}

.btn-default:hover {
  background: var(--clr-from-border);
}

.edit-btn {
  text-decoration: none;
  color: var(--clr-primary-2) !important;
  font-size: 18px;
  font-weight: 700;
  padding: 5px 12px;
  background: rgba(156, 162, 173, 0.3960784314);
  border-radius: 5px;
}

.edit-btn:hover {
  background: rgba(156, 162, 173, 0.5764705882);
}

.delete-btn {
  text-decoration: none;
  color: var(--clr-red) !important;
  font-size: 18px;
  font-weight: 700;
  padding: 5px 12px;
  background: rgba(156, 162, 173, 0.3960784314);
  border-radius: 5px;
  margin-left: 5px;
}

.delete-btn:hover {
  background: rgba(156, 162, 173, 0.5764705882);
}

[dir=rtl] .dropdown-toggle::after {
  margin-right: 0.255em;
}

[dir=rtl] .circular .circular-item .time-location {
  text-align: right;
}

[dir=rtl] .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: 0;
}

[dir=rtl] .nav-right-items .input-group .fa.fa-search {
  right: 20px;
}

[dir=rtl] .me-2 {
  margin-left: 0.5rem !important;
}

[dir=rtl] .text-start {
  text-align: right !important;
}

[dir=rtl] .dropdown-menu {
  text-align: right !important;
}

[dir=rtl] a.dropdown-item::before {
  margin-left: 10px;
}

[dir=rtl] .nav-right-items .input-group .form-control {
  padding: 10px 26px 10px 10px;
}

[dir=rtl] .form-style .form-control {
  padding: 11px 1.75rem;
}

[dir=rtl] .form-check .form-check-input {
  margin-left: 0.5em;
}

[dir=rtl] .form-style .password-toggle-icon {
  right: 90%;
  left: 10px;
}

[dir=rtl] .nav-right-items .input-group img {
  right: 23px;
}

[dir=rtl] .form-style .google-signup img {
  margin-left: 10px;
}

[dir=rtl] .slide .job {
  right: 50%;
  left: auto;
}

[dir=rtl] .slide .employers {
  right: 85%;
  left: auto;
}

[dir=rtl] .slide .companies {
  right: 88%;
  left: auto;
}

[dir=rtl] .custom-btn {
  position: relative;
  padding-right: 53px;
}

[dir=rtl] .custom-btn img {
  position: absolute;
  right: 24px;
  top: 32%;
}

[dir=rtl] .cateogrys .bg-color-gra .cateogry-items .cateogry-name {
  text-align: right;
}

@media only screen and (max-width: 991px) {
  [dir=rtl] .custom-btn {
    padding-right: 27px;
  }
  [dir=rtl] .custom-btn img {
    right: 10px;
    top: 35%;
  }
}
[dir=rtl] .title-box .custom-btn {
  padding: 12px 26px;
}

[dir=rtl] .form-check .form-check-input {
  float: right;
}

[dir=rtl] .title-link {
  display: flex;
  flex-direction: row-reverse;
}

footer .footer-logo-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: -10px;
}
footer hr {
  opacity: 0.5;
}
footer h6 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
}
footer span {
  font-size: 14px;
}
footer ul {
  padding: 0;
  margin: 0;
}
footer ul li {
  list-style: none;
  margin-bottom: 9.5px;
}
footer ul li a {
  text-decoration: none;
  font-size: 14px;
  color: var(--clr-body-text);
}
footer .contact i {
  color: var(--clr-primary-2);
}
footer .top-social li {
  height: 36px;
  width: 36px;
  margin-bottom: 0;
}
footer .top-social li a {
  font-size: 16px;
}
footer .copy-right {
  padding-top: 12px;
  padding-bottom: 28px;
}
footer .copy-right a {
  text-decoration: none;
}

@media only screen and (max-width: 1400px) {
  .gap-90 {
    gap: 30px;
  }
  .nav-right-items .input-group {
    width: 175px;
    overflow: hidden;
  }
  .slide .show-slide-info {
    display: none;
  }
  .slide .slide-info {
    margin-top: 80px;
  }
  .slide-image img {
    width: 400px;
  }
}
@media only screen and (max-width: 1050px) {
  .main-header .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
  }
}
@media only screen and (max-width: 991px) {
  .main-header .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between !important;
  }
  .title-box .custom-btn {
    padding: 8px 10px;
  }
  .top-header {
    padding: 0;
  }
  .custom-btn {
    padding: 10px;
    font-size: 14px;
  }
  .custom-btn img {
    width: 10px;
  }
  .slide-image img {
    width: 300px;
  }
  footer ul li {
    margin-top: 0;
  }
  footer .container div div {
    margin-bottom: 0.75rem;
  }
  .box-style .title-box .row div div {
    margin-right: 0px !important;
  }
}
@media only screen and (max-width: 768px) {
  .slide .container {
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .slide .container .slide-info {
    text-align: center;
    margin-top: 3rem;
  }
  .slide .container .slide-info a.slide-link {
    justify-content: center;
  }
  .slide .container .slide-info p {
    max-width: 100%;
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
  }
  .mb-40 {
    margin-bottom: 20px;
  }
  .mb-60 {
    margin-bottom: 30px;
  }
  .mb-70 {
    margin-bottom: 40px;
  }
  .mb-80 {
    margin-bottom: 50px;
  }
  .mt-40 {
    margin-top: 20px;
  }
  .mt-50 {
    margin-top: 30px;
  }
  .mt-60 {
    margin-top: 30px;
  }
  .pt-60 {
    padding-top: 30px;
  }
  .pb-80 {
    padding-bottom: 40px;
  }
  .section-margin-top {
    margin-top: 60px;
  }
  .section-padding {
    padding: 60px 0;
  }
  .section-padding-top {
    padding-top: 60px;
  }
  .section-padding-bottom {
    padding-bottom: 60px;
  }
  p, a {
    font-size: 12px;
  }
  ul li {
    font-size: 12px;
  }
  .top-header {
    padding: 0;
  }
  .custom-btn {
    padding: 10px;
    font-size: 12px;
  }
  .custom-btn i {
    margin-left: 0px;
  }
  .slide .container {
    gap: 10px;
  }
  .slide .slide-info {
    margin-top: 20px;
  }
  .box-info {
    padding-top: 30px;
  }
  .dashboard .side-nav {
    height: 100%;
  }
  .form-style .sign-content {
    width: 350px;
  }
  .box-style .title-box .row div div {
    border-bottom: 1px solid #ddd;
  }
  .box-style .title-box .row div.border-start {
    border: 0 !important;
  }
  .box-style .title-box .row div:last-child button {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 580px) {
  .slide .slide-info {
    margin-top: 10px;
  }
}/*# sourceMappingURL=style.css.map */