:root {
  --h2s-primary-gradient: linear-gradient(90deg, rgba(19, 75, 187, 1) 0%, rgba(76, 23, 107, 1) 100%);
  --h2s-gradient-blue: #2F36A1;
  --h2s-primary: #F2C034;
  --h2s-primary-light: #F2C0347c;
  --h2s-primary-hover: #e0af28;
  --h2s-gray: #5a5a5a;
  --h2s-light-bg: #F5F6FA;
  --h2s-white: #fff;
  --h2s-dark: #0a0a0a;
  --h2s-footer-color: #F2F2F2;
}

* {
  scroll-behavior: smooth;
}

.navbar-nav .nav-link {
  color: #fff;
  font-size: 1rem;
}

.navbar-nav .nav-item {
  padding: 0.5rem 0.75rem;
}

.navbar-nav .active > .nav-link {
  color: var(--h2s-gradient-blue) !important;
  font-weight: 600;
}

.btn-signup {
  background-color: var(--h2s-gradient-blue);
  border: 1px solid var(--h2s-gradient-blue);
  padding: 0.5rem 1rem;
  border-radius: 12px;
}

.btn-login {
  color: var(--h2s-gradient-blue);
  border: 1px solid var(--h2s-gradient-blue);
  padding: 0.5rem 1rem;
  border-radius: 12px;
}

.btn-login:hover {
  color: var(--h2s-gradient-blue);
}

.second-nav {
  position: -webkit-sticky;
  position: sticky;
  top: -500px;
  background: var(--h2s-white);
  padding: 1rem;
  z-index: 999;
  display: none;
  opacity: 0;
  -webkit-transition: all 3s linear;
  transition: all 3s linear;
}

.second-nav h6 {
  margin: 0;
  display: inline-block;
}

.second-nav .btn-theme {
  background: var(--h2s-primary-gradient);
  margin: 0 0.25rem;
  color: var(--h2s-white);
  border-radius: 12px;
}

.second-nav .btn-theme.active {
  background: var(--h2s-primary-gradient);
}

@media (max-width: 575.98px) {
  .second-nav .btn-theme {
    display: block;
    margin: 1rem 0.25rem;
  }
}

.second-nav .contact-btn {
  float: right;
  border-radius: 12px;
}

@media (max-width: 575.98px) {
  .second-nav .contact-btn {
    display: none;
  }
}

.second-nav.show {
  top: 72px;
  display: block;
  opacity: 1;
}

@media (max-width: 575.98px) {
  .second-nav.show {
    top: 65px;
  }
}

.second-nav.is-open {
  opacity: 100;
}

.orgd-wrapper {
  margin-top: 75px;
  padding: 3rem 5rem;
  background: url(/hackdetails/home/img/org-hack-hero.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.orgd-wrapper h1 {
  font-size: 3rem;
}

.orgd-wrapper p {
  font-size: 1.5rem;
}

.orgd-wrapper .btn {
  margin: 1rem;
  border-radius: 12px;
}

.orgd-wrapper .btn-theme {
  background: var(--h2s-primary-gradient);
  color: var(--h2s-white);
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
}

.orgd-wrapper .btn-demo {
  padding: 0.75rem 1.75rem;
  font-size: 1.15rem;
  background: var(--h2s-primary-gradient);
  color: var(--h2s-white);
  font-weight: 500;
  border-radius: 12px;
}

.orgd-wrapper .btn-demo:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.orgd-wrapper .btn-outline-theme {
  background-color: transparent;
  padding: 0.75rem 1.75rem;
  border: 1.2px solid var(--h2s-gradient-blue);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
}

.orgd-wrapper .btn-outline-theme:hover {
  background: var(--h2s-primary-gradient);
  color: var(--h2s-white);
}

@media (max-width: 540px) {
  .orgd-wrapper {
    padding: 0rem 1rem;
    background-position: bottom;
  }
}

.sti_container {
  position: fixed;
  right: 33px;
  bottom: 90px;
}

.btn-sticky {
  position: relative;
  display: inline-block;
  padding: 14px 15px 14px 18px;
  background-color: var(--h2s-gradient-blue);
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  color: #fff;
  border-radius: 25px;
  transition: width 0.2s;
  -webkit-transition: width 0.2s;
  -moz-transition: width 0.2s;
  -ms-transition: width 0.2s;
  -o-transition: width 0.2s;
}

.btn-sticky i {
  color: #fff;
}

.btn-sticky .btn-text {
  max-width: 0;
  display: inline-block;
  -webkit-transition: color .25s 1.5s, max-width 2s;
  transition: color .25s 1.5s, max-width 2s;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  color: #fff;
}

.btn-sticky:hover .btn-text {
  max-width: 300px;
  color: white;
}

.orgd-hack-type {
  padding: 3.5rem 0 1rem;
}

.orgd-hack-type .link {
  position: absolute;
  top: -90px;
  left: 0;
}

.orgd-hack-type .card {
  cursor: pointer;
  padding: 1.5rem 0.5rem;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.orgd-hack-type .card h6 {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--h2s-gradient-blue);
}

.orgd-hack-type .card h4 {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
}

.orgd-hack-type .card p {
  font-size: 0.9rem;
}

.orgd-hack-type .card .decor {
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 45%;
  opacity: 0.8;
}

.orgd-hack-type .card .yellow-dots {
  display: none;
}

.orgd-hack-type .card .grey-dots {
  display: block;
}

.orgd-hack-type .active {
  border: 1.37852px solid #2F80ED;
  -webkit-box-shadow: 0 6.89258px 20.6777px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6.89258px 20.6777px rgba(0, 0, 0, 0.1);
}

.orgd-hack-type .active h4 {
  color: var(--h2s-gradient-blue);
}

.orgd-hack-type .active h6 {
  color: #000;
}

.orgd-hack-type .active .yellow-dots {
  display: block;
}

.orgd-hack-type .active .grey-dots {
  display: none;
}

.orgd-common-hack h5 {
  margin-bottom: 0;
  color: var(--h2s-gradient-blue);
}

.orgd-common-hack h3 {
  font-size: 2.5rem;
  font-weight: 600;
}

.orgd-common-hack .bg-theme {
  background: var(--h2s-primary-gradient);
}

@media (max-width: 767.98px) {
  .orgd-common-hack {
    padding: 2rem;
  }
}

.orgd-common-hack .decor-img {
  width: 100%;
}

@media (max-width: 991.98px) {
  .orgd-common-hack .decor-img {
    width: 200px;
  }
}

.orgd-common-hack .details {
  background-color: #D1DCE7;
  padding-top: 2rem;
  margin-top: 2rem;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.orgd-common-hack .details .col-md-4 {
  position: relative;
  padding: 2.5rem 1.5rem;
}

.orgd-common-hack .details .col-md-4 h4 {
  font-size: 1.5rem;
}

.orgd-common-hack .details .col-md-4 p {
  font-size: 0.9rem;
}

.orgd-common-hack .details .col-md-4 .decor {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  opacity: 0.6;
  width: 110px;
}

.interest-content h3 {
  margin-bottom: 0.5rem;
  padding-top: 2rem;
}

.interest-content .interest-content-p:nth-of-type(1) {
  width: 80%;
  border-bottom: 3px solid #8676FF;
}

.interest-content .interest-content-p:nth-of-type(1) span {
  display: block;
  width: 70%;
}

.interest-content p {
  display: inline-block;
  text-transform: capitalize;
  padding-bottom: 0.5rem;
}

.interest-content p:nth-of-type(1) {
  width: 120px;
  border-bottom: 3px solid #8676FF;
}

.interest-content p:nth-of-type(1) span {
  display: block;
  width: 50%;
}

.interest-content p:nth-of-type(2) {
  width: 150px;
  border-bottom: 3px solid #FF708B;
}

.interest-content p:nth-of-type(2) span {
  display: block;
  width: 50%;
}

.interest-content p:nth-of-type(3) {
  width: 250px;
  border-bottom: 3px solid #FFBA69;
}

.interest-content p:nth-of-type(3) span {
  display: block;
  width: 70%;
}

@media (max-width: 991.98px) {
  .interest-content p:nth-of-type(3) {
    width: 180px;
  }
  .interest-content p:nth-of-type(3) span {
    width: 100%;
  }
}

.orgd-solution-path {
  padding: 8rem 0;
}

.orgd-solution-path .form-group {
  width: 50%;
}

.orgd-solution-path h3 {
  font-size: 2rem;
  font-weight: 600;
}

.orgd-solution-path .bg-theme {
  background-color: var(--h2s-gradient-blue);
}

.orgd-solution-path .pathway {
  position: relative;
  margin: 5rem 0;
}

.orgd-solution-path .pathway .spot {
  width: 200px;
}

.orgd-solution-path .pathway .spot .ex-spot-3 {
  width: 32%;
}

.orgd-solution-path .pathway .spot img {
  width: 80%;
}

.orgd-solution-path .pathway .spot h5 {
  font-size: 1rem;
}

.orgd-solution-path .pathway .spot p {
  font-size: 0.9rem;
}

.orgd-solution-path .pathway .spot .btn-outline-secondary {
  background-color: #fff !important;
  border-radius: 12px;
}

.orgd-solution-path .pathway .spot .btn-outline-secondary:hover {
  color: #6C757D !important;
}

@media (max-width: 991.98px) {
  .orgd-solution-path .pathway .spot {
    width: 100%;
    margin-bottom: 3rem;
    text-align: center;
  }
  .orgd-solution-path .pathway .spot img {
    width: 30%;
    margin-bottom: 1rem;
  }
}

@media (min-width: 991.98px) {
  .orgd-solution-path .pathway .spot {
    position: absolute;
  }
  .orgd-solution-path .pathway .spot2,
  .orgd-solution-path .pathway .spot3,
  .orgd-solution-path .pathway .spot4,
  .orgd-solution-path .pathway .spot5,
  .orgd-solution-path .pathway .spot6 {
    width: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .orgd-solution-path .pathway .spot2 .content,
  .orgd-solution-path .pathway .spot3 .content,
  .orgd-solution-path .pathway .spot4 .content,
  .orgd-solution-path .pathway .spot5 .content,
  .orgd-solution-path .pathway .spot6 .content {
    margin-left: 2rem;
  }
  .orgd-solution-path .pathway .spot1 {
    left: 0;
    top: 0;
  }
  .orgd-solution-path .pathway .spot2 {
    top: 6rem;
    left: 30%;
  }
  .orgd-solution-path .pathway .spot3 {
    right: -1rem;
    top: 20rem;
  }
  .orgd-solution-path .pathway .spot4 {
    left: 26%;
    top: 26rem;
  }
  .orgd-solution-path .pathway .spot5 {
    left: 0;
    top: 45rem;
  }
  .orgd-solution-path .pathway .spot6 {
    left: 30%;
    top: 56rem;
  }
  .orgd-solution-path .pathway .spot7 {
    right: 0;
    top: 55rem;
  }
  .orgd-solution-path .pathway .line-1 {
    position: absolute;
    height: 400px;
    width: 63%;
    left: 15%;
    top: 14rem;
    border: 1px solid #6C757D;
    border-left: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    z-index: -1;
  }
  .orgd-solution-path .pathway .line-2 {
    position: absolute;
    height: 400px;
    width: 63%;
    left: 14%;
    top: 622px;
    border: 1px solid #6C757D;
    border-right: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    z-index: -1;
  }
}

#external_hack .pathway {
  height: 1000px;
}

@media (max-width: 991.98px) {
  #external_hack .pathway {
    height: auto;
  }
}

#internal_hack .pathway {
  height: 800px;
}

@media (max-width: 991.98px) {
  #internal_hack .pathway {
    height: auto;
  }
}

@media (min-width: 991.98px) {
  #internal_hack .line-2 {
    height: 280px;
    border-bottom: 0;
    border-bottom-left-radius: 0;
  }
  #internal_hack .spot2 {
    top: 5rem;
    left: 30%;
  }
  #internal_hack .spot4 {
    left: 30%;
    top: 30rem;
  }
  #internal_hack .spot5 {
    left: 1%;
  }
}

.why-us-section h3 {
  font-size: 2rem;
  font-weight: 600;
}

.why-us-section .bg-theme {
  background-color: var(--h2s-gradient-blue);
}

.why-us-section .row {
  margin: 2rem 0;
}

.why-us-section .card {
  border: none;
}

.why-us-section .card img {
  width: 50%;
  min-height: 118px;
  margin-bottom: 1rem;
}

footer {
  padding: 3rem 1rem;
  background: var(--h2s-footer-color);
}

footer .accordion div {
  color: var(--h2s-dark);
}

footer ul {
  list-style: none;
}

footer ul li {
  position: relative;
  display: inline-block;
  color: var(--h2s-dark);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
}

footer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50%;
  height: 1px;
  background: var(--h2s-dark);
}

footer ul a {
  display: block;
  color: var(--h2s-dark);
  margin-bottom: 0.5rem;
}

footer ul a:hover {
  color: var(--h2s-dark);
  text-decoration: none;
}

.end-footer p,
.end-footer i {
  color: var(--h2s-dark);
  margin: 0;
  padding: 1rem 0;
}

.end-footer a:hover {
  color: var(--h2s-dark);
  text-decoration: none;
}

.end-footer .social {
  text-align: right;
}

.end-footer i {
  margin: 0 0.5rem;
}

@media (max-width: 767px) {
  .end-footer .copy_right {
    margin-top: 1rem;
  }
  .end-footer .copy_right,
  .end-footer .social {
    text-align: center;
  }
}
/*# sourceMappingURL=hack-details.css.map */