/* menubar */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
html {
  overflow-x: hidden!important;
}
body {
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
  overflow-y: hidden;
}

* {
  margin: 0;
  box-sizing: border-box;
}

:before,
:after {
  box-sizing: border-box;
}

.menus-header {
  max-width: 1200px;
  margin: auto;
}

.rowsplit {
  display: flex;
  flex-wrap: wrap;
}

.split-center {
  align-items: center;
}

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

a {
  text-decoration: none;
}

/* preheader */



.pre-header {
  background-color: #1f272b;
  position: relative;
  height: 50px;
  margin-bottom: 10px;
  padding: 6px 0;
}

.prelink {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pro {
  display: flex;
  gap: 10px;
}

.pro p {
  color: white;
  font-size: 16px;
}

.pro p a {
  color: #EC7A21;
}

.pro a {
  text-decoration-line: none;
  margin: 10px 0;
}

.pro a i {
  color: #EC7A21;
  background-color: white;
  padding: 10px;
  border-radius: 15px;
  font-size: 10px;

}

/* preheader */


/* header */
.header {
  display: block;
  width: 100%;
  position: relative;
  margin: 10px 0px;
  /* z-index: 99; */

}

.header .menu-left {
  flex: 0 0 17%;
}

.header .logo a {
  font-size: 30px;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}

.header .logo a img {
  height: 50px;
}

.header .menu-center {
  flex: 0 0 66%;
}

.header .menu-right {
  flex: 0 0 17%;
  display: flex;
  justify-content: flex-end;
}

.header .menu-right a {
  text-decoration: none;
  font-size: 16px;
  color: white;
  display: inline-block;
  margin-left: 10px;
  background-color: #ec7a21;
  padding: 8px 15px;
  transition: color 0.3s ease;
}

.fa-angle-down {
  color: #000 !important;
  padding: 5px !important;
}

.header .menu>ul>li {
  display: inline-block;
  line-height: 50px;
  margin-left: 25px;
}

.header .menu>ul>li>a {
  font-size:20px;
  color: #000000;
  font-weight: 500;
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
  text-decoration-line: none;
}

.header .menu>ul>li .menu-sub {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}

@media(min-width: 992px) {
  .header .menu>ul>li.menu-item-has-children:hover .menu-sub {
    margin-top: 10px;
    visibility: visible;
    opacity: 1;
  }
}

.header .menu>ul>li .menu-sub>ul>li {
  line-height: 1;
}

.header .menu>ul>li .menu-sub>ul>li>a {
  display: inline-block;
  padding: 10px 0;
  font-size: 18px;
  color:black;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}

.header .menu>ul>li .single-column-menu {
  min-width: 280px;
  max-width: 350px;
}

.header .menu>ul>li .menu-sub.mega-menu>.menu-items>ul>li {
  line-height: 1;
  display: block;
}

.header .menu>ul>li .menu-sub.mega-menu>.menu-items>ul>li>a {
  padding: 10px 0;
  display: inline-block;
  font-size: 18px;
  color:black;
  transition: color 0.3s ease;
  text-decoration-line: none;
}

.header .menu>ul>li .menu-sub.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}

.header .menu>ul>li .menu-sub.mega-menu-column-4 {
  max-width: 1208px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}

.header .menu>ul>li .menu-sub.mega-menu-column-4>.menu-items {
  flex: 0 0 25%;
  padding: 0 15px;
}

.header .menu>ul>li .menu-sub.mega-menu-column-4>.menu-items .titles {
  font-size: 20px;
  color: #ec7a21;
  font-weight: 500;
  line-height: 1;
  padding: 10px 29px;
  text-align: start;
}

.header .menu>ul>li .menu-sub.mega-menu-column-4>.menu-items.text-center .titles {
  text-align: center;
}

.header .menu>ul>li .menu-sub.mega-menu-column-4>.menu-items img {
  max-width: 100%;
  width: 100%;
  height: 47vh;
  vertical-align: middle;
  margin-top: 10px;
}

.header .menu>ul>li .menu-sub.mega-menu>.menu-items>ul>li>a:hover,
.header .menu>ul>li .menu-sub>ul>li>a:hover,
.header .menu>ul>li:hover>a {
  color: #ec7a21;
}

/* banner section */
.banner-section {
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

/*responsive*/
@media(max-width: 991px) {

  .header .menu-center {
    order: 3;
    flex: 0 0 100%;
  }

  .header .menu-leftt,
  .header .menu-right {
    flex: 0 0 auto;
  }

  .split-center {
    justify-content: space-between;
  }

  .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #333333;
    width: 24px;
    position: relative;
  }

  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
  }

  .header .mobile-menu-trigger span:before {
    top: -6px;
  }

  .header .mobile-menu-trigger span:after {
    top: 6px;
  }

  .header .menu-right {
    align-items: center;
  }

  .header .menu {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }

  .header .menu.active {
    transform: translate(0%);
  }

  .header .menu>ul>li {
    line-height: 1;
    margin: 0;
    display: block;
  }

  .header .menu>ul>li>a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header .menu>ul>li>a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }

  .header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }

  .header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }

  .header .menu .mobile-menu-head.active .go-back {
    display: block;
  }

  .header .menu .mobile-menu-head .current-menu-titles {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
  }

  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }

  .header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .header .menu>ul>li .menu-sub.mega-menu,
  .header .menu>ul>li .menu-sub {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }

  .header .menu>ul>li .menu-sub.active {
    display: block;
  }

  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }

    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }

  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }

    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }

  .header .menu>ul>li .menu-sub.mega-menu-column-4>.menu-items img {
    margin-top: 0;
  }

  .header .menu>ul>li .menu-sub.mega-menu-column-4>.menu-items.text-center .titles {
    margin-bottom: 20px;
  }

  .header .menu>ul>li .menu-sub.mega-menu-column-4>.menu-items.text-center:last-child .titles {
    margin-bottom: 0px;
  }

  .header .menu>ul>li .menu-sub.mega-menu-column-4>.menu-items {
    flex: 0 0 100%;
    padding: 0px;
  }

  .header .menu>ul>li .menu-sub>ul>li>a,
  .header .menu>ul>li .menu-sub.mega-menu>.menu-items>ul>li>a {
    display: block;
  }

  .header .menu>ul>li .menu-sub.mega-menu>.menu-items>ul {
    margin-bottom: 15px;
  }

  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }

  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}


/* home page */

/* slide header */
.slider {
  overflow: hidden;
  position: relative;
}

.slider-info {
  display: none;
  background-image: url('../Images/secure\ 2.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 50vh;
  width: 100%;
}

.slider-info:nth-child(2) {
  display: none;
  background-image: url('../Images/secure\ 1.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 50vh;
  width: 100%;
}

.slider-info:nth-child(3) {
  display: none;
  background-image: url('../Images/Secure\ 3.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 50vh;
  width: 100%;
}

.slider-info.active {
  display: block;
}

.tablet {
  display: none !important;
}

.ipad {
  display: none !important;
}

.mob-pro {
  display: none !important;
}

.services-box {
  background: white;
  transition: .5s;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.students-para {
  font-size: 16px;
  text-align: center;
  color: black;
}

.app {
  position: fixed;
  top: 550px;
  left: 0;
  z-index: 1;
}

.blog-info {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

.blog-info-1 {
  margin-top: 94px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

.blog-img {
  height: 390px !important;
  border-top-right-radius: 20%;
  border-bottom-left-radius: 20%;
}


.skills-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.choose-details {
  padding: 2rem 2rem;
  height: 100%;
}

.choose-details img {
  height: 65px;
  margin-bottom: 25px;
}

.inetz-img {
  padding-left: 125px;
}

.choose-details h5 {
  color: black;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 15px;
  text-align: center;
}

.choose-details p {
  color: black;
  font-size: 16px;
  text-align: center;

}

.choose-details:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-bottom: 4px solid #EC7A21;
}
.work{
  background-color:#FCFFF7;
  padding: 25px;
  border: 5px solid #EC7A21;
}
.candi h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 25px;
  font-weight: 500;
  color: black;
}

.icon-box {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
  transition: 0.3s;
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.supply {
  height: 40px;
}

.icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box img {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.icon-box img {
  color: #37423b;
  transition: 0.3s;
}


.lead {
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  border: 1px solid dimgrey;
  box-shadow: 10px 10px 0px black;
}

.lead p {
  color: #000000;
  font-weight: 500; 
  font-size: 25px;
}

.lead div button {
  border: none;
  background-color: #EC7A21;
  color: white;
  padding: 8px 15px;
  border-radius:5px;
}

.lead a {
  text-decoration-line: none;
  color: white;
  font-weight: 500;
  font-size: 18px;
}

.lead div {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* footer */
.footer {
  --color-background: #f4f4f4;
  --color-box-background: #eaeaea;
  color: var(--color-default);
  background-color: var(--color-background);
  font-size: 14px;
  padding-bottom: 50px;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--color-secondary);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--font-primary);
}

.footer .footer-about p {
  font-size: 16px;
  color: black;
  text-align: justify;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-default-rgb), 0.5);
  font-size: 18px;
  font-weight: 500;
  color: black;
  margin-right: 10px;
  transition: 0.3s;
}

.footer h4 {
  color: black;
  font-size: 18px;
  font-weight: 500;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 18px;
  font-weight: 600;
  line-height: 0;
}

.footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 16px;

}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer-links ul a {
  color: black !important;
  display: inline-block;
  line-height: 1;
  text-decoration-line: none;
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: black;
  font-size: 16px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: var(--color-box-background);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}


/* 

/* footer */

/* ////////////////////////////////////////////////////// */

/* contact */
.contact {
  background-image: url('../Images/contact.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info p {
  color: black;
  font-size: 16px;
  text-align: justify;
}

main {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: whitesmoke;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box {
  position: relative;
  width: 100%;
  max-width: 1020px;
  height: 640px;
  background-color: #fff;
  border-radius: 3.3rem;
  box-shadow: 0 60px 40px -30px rgba(0, 0, 0, 0.27);
}

.inner-box {
  position: absolute;
  width: calc(100% - 4.1rem);
  height: calc(100% - 4.1rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.forms-wrap {
  position: absolute;
  height: 100%;
  width: 45%;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  transition: 0.8s ease-in-out;
}

.sign-in-forms {
  max-width: 260px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  transition: opacity 0.02s 0.4s;
}

form.sign-up-form {
  opacity: 0;
  pointer-events: none;
}

.contact-logo {
  display: flex;
  align-items: center;
}

.contact-logo img {
  height: 80px;
  margin-right: 0.3rem;
}

.contact-logo h4 {
  font-size: 34px;
  font-weight: 600;
  margin-top: -9px;
  letter-spacing: -0.5px;
  color: darkgray;
}


.input-wrap {
  position: relative;
  height: 37px;
  margin-bottom: 50px;
}

.input-wrap select option {
  font-size: 18px;
  font-weight: 600;
}

.input-field {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  background: none;
  border: none;
  outline: none;
  border-bottom: 1px solid #bbb;
  padding: 0;
  font-size: 0.95rem;
  color: dimgrey;
  transition: 0.4s;
  font-size: 14px;
  font-weight: 600;
}

label {
  font-size: 16px;
  font-weight: 600;
  color: #bbb;
  pointer-events: none;
  transition: 0.4s;
}

.error-message {
  margin-bottom: 30px;
}

.input-field.active {
  border-bottom-color: #151111;
}

.input-field.active+label {
  font-size: 0.75rem;
  top: -2px;
}


.sign-btn {
  display: inline-block;
  width: 100%;
  height: 43px;
  background-color: darkslategray;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 0.8rem;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: 0.3s;
}

.sign-btn:hover {
  background-color: #EC7A21;
}

main.sign-up-mode form.sign-in-form {
  opacity: 0;
  pointer-events: none;
}

main.sign-up-mode form.sign-up-form {
  opacity: 1;
  pointer-events: all;
}

main.sign-up-mode .forms-wrap {
  left: 55%;
}

main.sign-up-mode .carousel {
  left: 0%;
}

.carousel {
  position: absolute;
  height: 100%;
  width: 55%;
  left: 45%;
  top: 0;
  background-color: #FFF5B2;
  border-radius: 2rem;
  display: grid;
  grid-template-rows: auto 1fr;
  padding-bottom: 2rem;
  overflow: hidden;
  transition: 0.8s ease-in-out;
}

.images-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.image {
  width: 100%;
  grid-column: 1/2;
  grid-row: 1/2;
  opacity: 0;
  transition: opacity 0.3s, transform 0.5s;
}

.img-1 {
  transform: translate(0, -50px);
}

.img-2 {
  transform: scale(0.4, 0.5);
}

.img-3 {
  transform: scale(0.3) rotate(-20deg);
}

.image.show {
  opacity: 1;
  transform: none;
}

.text-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.text-wrap {
  max-height: 2.6rem;
  overflow: hidden;
  margin-bottom: 3.7rem;
}

.text-group {
  display: flex;
  flex-direction: column;
  text-align: center;
  transform: translateY(0);
  transition: 0.5s;
}

.text-group h2 {
  line-height: 2.2rem;
  font-weight: 600;
  font-size: 13px;
}

.bullets {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bullets span {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #aaa;
  margin: 0 0.25rem;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.bullets span.active {
  width: 1.1rem;
  background-color: #151111;
  border-radius: 1rem;
}

@media (max-width: 850px) {
  .box {
    height: auto;
    max-width: 550px;
    overflow: hidden;
  }

  .inner-box {
    position: static;
    transform: none;
    width: revert;
    height: revert;
    padding: 2rem;
  }

  .forms-wrap {
    position: revert;
    width: 100%;
    height: auto;
  }

  form {
    max-width: revert;
    padding: 1.5rem 2.5rem 2rem;
    transition: transform 0.8s ease-in-out, opacity 0.45s linear;
  }

  .heading {
    margin: 2rem 0;
  }

  form.sign-up-form {
    transform: translateX(100%);
  }

  main.sign-up-mode form.sign-in-form {
    transform: translateX(-100%);
  }

  main.sign-up-mode form.sign-up-form {
    transform: translateX(0%);
  }

  .carousel {
    position: revert;
    height: auto;
    width: 100%;
    padding: 3rem 2rem;
    display: flex;
  }

  .images-wrapper {
    display: none;
  }

  .text-slider {
    width: 100%;
  }
}

@media (max-width: 530px) {
  main {
    padding: 1rem;
  }

  .box {
    border-radius: 2rem;
  }

  .inner-box {
    padding: 1rem;
  }

  .carousel {
    padding: 1.5rem 1rem;
    border-radius: 1.6rem;
  }

  .text-wrap {
    margin-bottom: 1rem;
  }

  .text-group h2 {
    font-size: 1.2rem;
  }

  form {
    padding: 1rem 2rem 1.5rem;
  }
}

.location h5 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 20px;
}

.location-info {
  display: flex;
  gap: 20px;
}

.location-info {
  padding: 1rem 2rem;
  display: flex;
  gap: 15px;
  border-radius: 4px;
  box-shadow: -3px 0px 0px 0px#ec7a21;
}

.location-info i {
  color: #ec7a21;
  font-size: 18px;
  font-weight: 600;
}

.location-info h5 {
  color: #ec7a21;
  font-size: 18px;
  font-weight: 500;
}

.location-info small {
  color: black;
  font-size: 16px;
}

.frame iframe {
  width: 100%;
  height: 45vh;
}

/* recruit */


.hire-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.hire-info h2 {
  font-weight: 500;
  color: black;
  font-size: 20px;
}

.hire-info p {
  color: black;
  font-size: 16px !important;
  text-align: justify;
}

.hire-me-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hire-me-info img {
  width: 620px;
  height: 355px;
}

.open-info {
  margin-top: -40px;
  background-color: #37423b;
  color: whitesmoke;
  padding: 25px 10px;
  border-radius: 20px;
  text-align: center;
}

.open-info h2 {
  font-size: 20px;
  font-weight: 500;
}

.row.g-3 {
  margin-top: 5%;
}

.job-hgh {
  height: 50vh;
  width: 100%;
}

.job h3 {
  color: black;
  font-weight: 500;
  font-size: 20px;
}

.job-info {
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.job-info h4 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin: 4%;
}

.job-info p {
  color: black;
  font-size: 16px;
  text-align: center;
}

.mentor h3 {
  color: black;
  font-weight: 500;
  font-size: 25px;
  text-align: center;
}

.mentor-info {
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 2em;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mentor-info span {
  color: black;
  font-size: 16px;
  text-align: center;
}

.hire-marq h3 {
  text-align: center;
  font-weight: 500;
  color: black;
  font-size: 25px;
}

.hire-faq {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #FAFAFF;
}

.hire-faq h2 {
  text-align: start;
  font-weight: 500;
  color: black;
  font-size: 25px;
}

.faq-container {
  width: 800px !important;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-item {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  color: black;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 3px;
  padding-top: 3px;
}

.faq-answer {
  color: black;
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  text-align: justify;
  padding-left: 10px;
  padding-right: 10px;
}

.faq-answer.active {
  border-bottom: 1px solid #e0e0e0;
}

.icon-container i {
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.icon-container i.active {
  transform: rotate(90deg);
}

/* job */

.img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 4%);
  height: 500px;
  width: auto;
  z-index: -1;
}

.avatar {
  height: 250px;
  width: auto;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-10%, 50%);
  z-index: -1;
}

.login-content {
  display: flex;
  justify-content: center;
  align-items: center;

}

.formddd {
  width: 360px;
}

.login-content img {
  height: 100px;
}

.login-content h2 {
  margin: 15px 0;
  color: black;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  text-align: center;
}

.login-content .input-div {
  position: relative;
  display: grid;
  grid-template-columns: 7% 93%;
  margin: 25px 0;
  padding: 5px 0;
  border-bottom: 2px solid #d9d9d9;
}

.login-content .input-div.one {
  margin-top: 0;
}

.i {
  color: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.i i {
  transition: .3s;
}

.input-div>div {
  position: relative;
  height: 45px;
}

.input-div>div>h5 {
  position: absolute;
  left: 10px;
  top: 5%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
  transition: .3s;
}

.input-div:before,
.input-div:after {
  content: '';
  position: absolute;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #ec7a21;
  transition: .4s;
}

.input-div:before {
  right: 50%;
}

.input-div:after {
  left: 50%;
}

.input-div.focus:before,
.input-div.focus:after {
  width: 50%;
}

.input-div.focus>div>h5 {
  top: -5px;
  font-size: 15px;
}

.input-div.focus>.i>i {
  color: #ec7a21;
}

.input-div>div>input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: none;
  padding: 0.5rem 0.7rem;
  font-size: 16px;
  font-weight: 600;
  color: #555;
}

.input-div.pass {
  margin-bottom: 4px;
}


.job-btn {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  outline: none;
  border: none;
  background-color: #ec7a21;
  background-size: 200%;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: .5s;
}

.job-btn:hover {
  background-position: right;
}

.input-div>div>select {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: none;
  padding: 0.5rem 0.7rem;
  font-size: 18px;
  font-weight: 600;
  color: #999;
}

.input-div>div>select>option {
  font-size: 18px;
  font-weight: 600;
}

.job-card {
  border: none;
  background-image: url('../photos/job-ssekers.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 80vh;
  border-radius: 20px;
}

a,
a:hover {
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

#pageHeaderTitle {
  margin: 2rem 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 20px;
  color: black;
}

.postcard {
  flex-wrap: wrap;
  display: flex;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
  border-radius: 10px;
  margin: 0 0 2rem 0;
  overflow: hidden;
  position: relative;
  color: #ffffff;

  &.dark {
    background-color: #18151f;
  }

  &.light {
    background-color: #e1e5ea;
  }

  .t-dark {
    color: #18151f;
  }

  a {
    color: inherit;
  }

  h1,
  .h1 {
    margin-left: 40px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    font-family: "Poppins";
  }

  .small {
    font-size: 80%;
  }

  .postcard__title {
    font-size: 1.75rem;
  }

  .postcard__img {
    max-height: 180px;
    width: 100%;
    object-fit: cover;
    position: relative;
  }

  .postcard__img_link {
    display: contents;
  }

  .job-link {
    text-decoration-line: none;
    color: #EC7A21;
  }

  .postcard__text {
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }

  .postcard__preview-txt {
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    height: 100%;
    font-size: 16px;
    margin-left: 40px;
  }

  .postcard__tagbox {
    display: flex;
    flex-flow: row wrap;
    font-size: 14px;
    margin: 20px 0 0 0;
    padding: 0;
    justify-content: center;

    .tag__item {
      display: inline-block;
      background: rgba(83, 83, 83, 0.4);
      border-radius: 3px;
      padding: 2.5px 10px;
      margin: 0 5px 5px 0;
      cursor: default;
      user-select: none;
      transition: background-color 0.3s;

      &:hover {
        background: rgba(83, 83, 83, 0.8);
      }
    }
  }

  &:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(-70deg, #424242, transparent 50%);
    opacity: 1;
    border-radius: 10px;
  }

}

@media screen and (min-width: 769px) {
  .postcard {
    flex-wrap: inherit;

    .postcard__title {
      font-size: 2rem;
    }

    .postcard__tagbox {
      justify-content: start;
    }

    .postcard__img {
      max-width: 300px;
      max-height: 100%;
      transition: transform 0.3s ease;
    }

    .postcard__text {
      padding: 3rem;
      width: 100%;
    }

    .media.postcard__text:before {
      content: "";
      position: absolute;
      display: block;
      background: #18151f;
      top: -20%;
      height: 130%;
      width: 55px;
    }

    &:hover .postcard__img {
      transform: scale(1.1);
    }

    &:nth-child(2n+1) {
      flex-direction: row;
    }

    &:nth-child(2n+0) {
      flex-direction: row-reverse;
    }

    &:nth-child(2n+1) .postcard__text::before {
      left: -12px !important;
      transform: rotate(4deg);
    }

    &:nth-child(2n+0) .postcard__text::before {
      right: -12px !important;
      transform: rotate(-4deg);
    }
  }
}

@media screen and (min-width: 1024px) {
  .postcard__text {
    padding: 2rem 3.5rem;
  }

  .postcard__text:before {
    content: "";
    position: absolute;
    display: block;
    top: -20%;
    height: 130%;
    width: 55px;
  }
}


/* job */
#snackbarss {
  visibility: hidden;
  min-width: 250px;
  background-color: #ec7a21;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
}

#snackbarss.showdd {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* contact */


#snackbars {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
}

#snackbars.showd {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 50px;
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    bottom: 50px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

/* Your CSS styles here */
.shows,
.dashess {
  position: fixed;
  top: -10%;
  bottom: 0;
  left: 0;
  right: 0;
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}

.showed,
.dashed {
  z-index: 999;
  margin: 70px auto;
  padding: 20px;
  background-color: rgba(221, 221, 222, 0.518) ;
  border-radius: 5px;
  width: 100%;
  height: 100vh;
  position: relative;
  transition: all 5s ease-in-out;
}

.close,
.close-dash {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.content,
.contents {
  max-height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}

.content img,
.contents img {
  height: 558px !important;
}





/* fees structure */
.fees-structures {
  margin-top:10rem;
}
.fees-details{
     background-color: white;
     box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
     padding: 20px;
     border-radius: 10px;
     margin-bottom: 20px;
     height: 100%;
   
}
.fees-details:hover{
  border: 3px solid #EC7A21;
}
.fees-parts{
  display: flex;
}
.fees-parts span{
  color: darkgray;
  margin: 0px 10px;
  font-size: 14px;
  font-weight: 400;
}
.fees-details h2{
  font-size: 16px;
  color: #000;
  font-weight: 600;
  margin: 20px 0px;
}
.fees-details p{
  font-size: 16px;
  color: #000;
  margin: 10px 0px;
  text-align: justify;
}
.fees-amount{
  display: flex;
  gap: 10px;
}
.fees-amount h2{
  font-size: 18px;
  color: #000;
  font-weight: 600;
  margin: 20px 0px;
}
.fees-amount span{
  font-size: 22px;
  color:#EC7A21;
  font-weight: 600;
  margin: 20px 0px;
}
.fees-amount small{
text-decoration-line:line-through;
color: dimgrey;
font-size: 15px;
padding: 0 8px;
}
.fees-details button{
  background-color: #EC7A21;
 border: none;
 border-radius: 5px;
  margin: 8px 0;
  padding: 5px 12px;
  font-size: 18px;
  font-weight: 600;
}
.fees-details button a{
text-decoration-line: none;
color: white;
}

.fees-heading h2{
     font-size: 24px;
     font-weight: 500;
     text-align: center;
}
.fees-heading p{
  font-size: 18px;
  text-align: center;
}



/* review */

.review-head h2{
  font-size: 24px;
  text-align: center;
}
.front-review{
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 2px solid black;
}
.front-details {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   padding: 25px;
}
.front-details img{
  height: 500px!important;
  box-shadow: 10px 10px 0px black;
}
.front-details div{
align-self: start;
}
.front-details span{
  font-size: 18px!important;
align-self: start;
margin-bottom: 20px;
}
.front-details p{
    font-size: 24px!important;
  align-self: start;
}
.front-details h5{
  font-size: 20px!important;
align-self: start;
}
.front-details small{
  font-size: 18px!important;
align-self: start;
}
.arrow-details{
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
.arrow-details i {
     font-size: 35px;
     color: #333;
     cursor: pointer;
}
.reviews {
  display: none!important;
}

.reviews.actives {
  display: flex!important;
}

