@font-face {
  font-family: 'GothamMedium';
  src: url(../fonts/Gotham-Font/GothamMedium.ttf);
}

@font-face {
  font-family: 'GothamLight'; /*a name to be used later*/
  src: url(../fonts/Gotham-Font/GothamLight.ttf); /*URL to font*/
}

/* CSS reset */

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

input {
  border: 1px solid #b0b0b0;
  padding: 3px 5px 4px;
  color: #979797;
  width: 190px;
}

address,
caption,
cite,
code,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
}

/* General Demo Style */

body {
  font-family: 'GothamLight', Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: normal;
  overflow-x: hidden;
  overflow-y: scroll;
  overflow-x: hidden;
  color: #000;
  background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%);
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 99%;
}

.logoLinks {
  position: relative;
  z-index: 99999;
}

button {
  transition: all 0.3s ease;
  color: #ffffff;
}

button:focus {
  outline: none;
}

.ie7 body {
  overflow: hidden;
}

a {
  text-decoration: none;
}

a:hover {
  color: #fff;
}

a:focus {
  text-decoration: none;
  outline: none;
}

.container {
  position: relative;
}

.sc-1 {
  background-image: url(../img/header-bg.jpg);
  background-size: cover;
}

#mission {
  background: linear-gradient(rgba(46, 46, 46, 0.6), rgba(46, 46, 46, 0.6)),
    url(../img/mission_bg.jpg) right;
  position: relative;
}

.hw-m1 {
  background: linear-gradient(rgba(46, 46, 46, 0.6), rgba(46, 46, 46, 0.6)),
    url(../img/step-1.jpg) center;
}

.hw-m2 {
  background: content-box
      linear-gradient(rgba(46, 46, 46, 0.6), rgba(46, 46, 46, 0.6)),
    url(../img/step-2.jpg);
}

.nav-item > a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 576px) {
  .navbar-brand {
    height: 4rem;
  }
  .navbar-toggler {
    background-color: #fff;
  }
  .navbar-toggler-icon {
    color: black;
  }
}

.hw-works-sc {
  position: relative;
}

.verticle-bar {
  position: absolute;
  left: 30rem;
  height: 82%;
  width: 1rem;
  background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%);
  z-index: 10;
}

.st-1,
.st-2,
.st-3 {
  position: absolute;
  top: 8rem;
  left: 17rem;
  opacity: 0;
}

.st-2 {
  top: 26rem;
  /* top: 20rem; */
}

.st-3 {
  top: 44rem;
  /* top: 32rem; */
}

.st-1 > .hw-step-content,
.st-2 > .hw-step-content,
.st-3 > .hw-step-content {
  padding: 2rem;
  left: 16rem;
  max-width: 55rem;
}

.circle-icon-1,
.circle-icon-2,
.circle-icon-3 {
  position: absolute;
  top: 3rem;
  left: 12rem;
  height: 3rem;
  width: 3rem;
  border: 1rem solid blanchedalmond;
  background-color: #fbc2eb;
  border-radius: 50%;
  z-index: 50;
}

.active > .st-1 {
  animation: slideFromTop 0.5s linear;
  opacity: 1;
}

.active > .st-2 {
  animation: slideFromTop 1s linear;
  opacity: 1;
}

.active > .st-3 {
  animation: slideFromTop 1.5s linear;
  opacity: 1;
}

@keyframes slideFromTop {
  0% {
    transform: translateY(-50rem);
  }
  100% {
    transform: translateY(0);
  }
}

.section-title > h1 {
  font-family: 'GothamMedium', Georgia, 'Times New Roman', Times, serif;
  text-align: center;
  font-size: 2rem;
  margin: 2rem 0;
  color: #000;
  position: relative;
  margin-bottom: 45px;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
}

.section-title h1::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 60px;
  height: 3px;
  background: #e91e63;
  bottom: -25px;
  margin-left: -30px;
}

.card-text {
  color: #000;
}

#particles-js canvas {
  pointer-events: all;
}

.logoLinks {
  position: relative;
  z-index: 99999;
  vertical-align: center;
}

@media only screen and (max-width: 800px) {
  .faq {
    margin-bottom: 30px;
  }
  .faq .card .card-header .faq-title {
    line-height: 26px;
    margin-top: 10px;
  }
}

.animateLogo {
  animation: bounce 1s infinite alternate;
  -webkit-animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}

@-webkit-keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}
/* Current Openings Card Styles */
#CurrentOpenings .accordion-item {
  background-color: #fff;
  border: none;
}

#CurrentOpenings .accordion-body ul {
  padding-left: 1rem;
  text-align: justify;
  list-style: disc;
}

#CurrentOpenings .accordion-body li {
  line-height: 2rem !important;
}

#CurrentOpenings .accordion-button {
  background-color: #f2f2f2;
  box-shadow: none;
  border: none;
}

#CurrentOpenings .accordion-button:not(.collapsed) {
  border-bottom: 4px solid var(--bs-primary);
  color: #000;
  font-weight: bold;
  background-color: #f2f2f2;
}

#CurrentOpenings .accordion-button:focus {
  z-index: 3;
  border-color: none;
  outline: 0;
  box-shadow: none;
}

/* Footer */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background-color: #333;
  text-align: center;
}

.footer .fa,
.footer a {
  color: #ffffff;
}

.footer a:hover {
  color: #e09562;
}

.footer-link p {
  font-size: 14px;
  color: white;
  text-align: center;
  margin: 0rem;
  padding: 0rem;
}

.faq-section {
  min-height: 100vh;
}
.faq-title h2 {
  position: relative;
  margin-bottom: 45px;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
}
.faq-title h2::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 60px;
  height: 2px;
  background: #e91e63;
  bottom: -25px;
  margin-left: -30px;
}
.faq-title p {
  padding: 0 190px;
  margin-bottom: 10px;
}

.faq {
  background: #ffffff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.faq .card {
  border: none;
  background: none;
  border-bottom: 1px dashed #cee1f8;
  padding: 1rem;
}

.faq .card .card-header {
  padding: 0px;
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
  background: rgba(233, 30, 99, 0.1);
  padding-left: 10px;
}
.faq .card .card-header .faq-title {
  width: 100%;
  text-align: left;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  color: #3b566e;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq .card .card-header .faq-title .badge {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 14px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  background: #e91e63;
  color: #fff;
  font-size: 14px;
  margin-right: 20px;
  padding: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq .card .card-body {
  padding: 30px;
  padding-left: 35px;
  padding-bottom: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1px;
  border-top: 1px solid #f3f8ff;
}

.faq .card .card-body p {
  margin-bottom: 14px;
  color: #6f8ba4;
}
