@import "node_modules/bootstrap/dist/css/bootstrap.min.css";
@import "node_modules/aos/dist/aos.css";
body {
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000;
  font-family: "Open Sans", sans-serif;
  height: 100vh;
  color: #fff;
}

.skip-to-content-link {
  background: #E36733;
  left: 50%;
  padding: 20px;
  position: fixed;
  color: inherit;
  text-decoration: none;
  z-index: 1001;
  transform: translateY(-500%) translateX(-50%);
  transition: transform 0.3s;
}

.skip-to-content-link:focus {
  transform: translateY(20%) translateX(-50%);
}

.subheading {
  text-transform: uppercase;
  font-size: min(
			1.375rem + 0.25
			* ((100vw - 20rem) / 100)
		, 1.625rem);
}
.subheading--small {
  font-size: min(
			1.125rem + 0.25
			* ((100vw - 20rem) / 100)
		, 1.375rem);
}

.text-gradient, .subheading {
  background: -webkit-linear-gradient(#ff9a44, #E36733);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h1 {
  font-size: min(
			1.875rem + 1.875
			* ((100vw - 20rem) / 100)
		, 3.75rem);
}

h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}

p {
  font-size: min(
			1.125rem + 0.375
			* ((100vw - 20rem) / 100)
		, 1.5rem);
  line-height: min(
			1.3125rem + 0.4375
			* ((100vw - 20rem) / 100)
		, 1.75rem);
  font-weight: 300;
}
p.font-big {
  font-size: min(
			1.25rem + 0.75
			* ((100vw - 20rem) / 100)
		, 2rem);
  line-height: min(
			1.5rem + 0.875
			* ((100vw - 20rem) / 100)
		, 2.375rem);
}
p.h2.quote {
  font-size: min(
			0.875rem + 1.125
			* ((100vw - 20rem) / 100)
		, 2rem);
  line-height: min(
			1.5rem + 0.875
			* ((100vw - 20rem) / 100)
		, 2.375rem);
}

.bold {
  font-weight: bold;
}

.main-nav {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: min(
			5rem + 1.25
			* ((100vw - 20rem) / 100)
		, 6.25rem);
  background-color: #000;
}
.main-nav__wrapper {
  position: relative;
  height: min(
			5rem + 1.25
			* ((100vw - 20rem) / 100)
		, 6.25rem);
}
.main-nav__logo {
  width: min(
			7.5rem + 5
			* ((100vw - 20rem) / 100)
		, 12.5rem);
  transition: all 0.3s linear;
}
.main-nav__links {
  display: flex;
  height: min(
			5rem + 1.25
			* ((100vw - 20rem) / 100)
		, 6.25rem);
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  margin: 0;
  transition: all 0.3s linear;
}
@media (max-width: 991px) {
  .main-nav__links {
    position: fixed;
    justify-content: flex-start;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    padding: 20px;
    flex-direction: column;
    left: 0;
    top: min(
			5rem + 1.25
			* ((100vw - 20rem) / 100)
		, 6.25rem);
    background-color: #1E1E1E;
    transform: translateX(-100%);
  }
  .main-nav__links.opened {
    transform: translateX(0);
    transition: all 0.3s linear;
  }
}
.main-nav__link {
  padding: min(
			0.25rem + 0.25
			* ((100vw - 20rem) / 100)
		, 0.5rem) min(
			0.375rem + 0.25
			* ((100vw - 20rem) / 100)
		, 0.625rem);
  transition: all 0.3s linear;
}
.main-nav__link:hover:not(.cta-button__container) {
  background-color: rgba(227, 103, 51, 0.55);
  transition: all 0.3s linear;
}
@media (min-width: 64rem) {
  .main-nav__link.cta-button__container {
    margin-left: 20px;
  }
}
.main-nav__link a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: min(
			0.75rem + 0.5
			* ((100vw - 20rem) / 100)
		, 1.25rem);
  transition: all 0.3s linear;
}
.main-nav__link a.active:not(.cta-button) {
  color: #E36733;
  transition: all 0.3s linear;
}
@media (max-width: 63.9rem) {
  .main-nav__link a {
    font-size: 1.25rem;
  }
}

.mobile-menu-opener {
  display: none;
  transition: all 0.3s ease;
  width: 60px;
  height: 60px;
  border-radius: 40px;
}
@media (max-width: 63.9rem) {
  .mobile-menu-opener {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.mobile-menu-opener .l1, .mobile-menu-opener .l2, .mobile-menu-opener .l3 {
  width: 30px;
  height: 4px;
  margin-bottom: 3px;
  margin-top: 3px;
  opacity: 1;
  transition: all 0.3s ease;
  background-color: #fff;
}
.mobile-menu-opener .l1 {
  transition: all 0.3s ease;
  transform: rotate(0deg);
}
.mobile-menu-opener .l2, .mobile-menu-opener .l3 {
  transition: all 0.3s ease;
  transform: rotate(0deg);
}
.mobile-menu-opener.opened {
  transition: all 0.3s ease;
}
.mobile-menu-opener.opened .l1 {
  transition: all 0.3s ease;
  transform: rotate(45deg);
  margin-bottom: 4px;
}
.mobile-menu-opener.opened .l2 {
  opacity: 0;
  transition: all 0.3s ease;
  transform: rotate(-45deg);
  background-color: #fff;
}
.mobile-menu-opener.opened .l3 {
  transition: all 0.3s ease;
  transform: rotate(-45deg);
  margin-top: -18px;
  background-color: #fff;
}

.video-teaser.video-background {
  background: #000;
  width: 100vw;
  height: 100vh;
}
@media (max-width: 64rem) {
  .video-teaser.video-background {
    height: 56.25vw;
  }
}
.video-teaser .video-foreground, .video-teaser iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .welcome {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .welcome__image {
    max-width: 28.125rem;
  }
}

.partners {
  position: relative;
  width: 100%;
  height: fit-content;
  background-image: url(../img/partners-carousel-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.partners:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}
.partners__swiper img {
  width: min(
			6.25rem + 6.25
			* ((100vw - 20rem) / 100)
		, 12.5rem);
  height: min(
			4.6875rem + 4.6875
			* ((100vw - 20rem) / 100)
		, 9.375rem);
  object-fit: contain;
  object-position: center;
}

.advantages {
  overflow-x: hidden;
}
.advantages .advantage {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: min(
			2.1875rem + 0.9375
			* ((100vw - 20rem) / 100)
		, 3.125rem);
  font-weight: 300;
}
@media (max-width: 991px) {
  .advantages .advantage {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #1E1E1E;
    padding: 20px;
  }
}
.advantages .advantage__img {
  width: 100%;
  flex-grow: 0;
  max-width: 400px;
  margin-right: 20px;
}
@media (max-width: 991px) {
  .advantages .advantage__img {
    margin-bottom: 40px;
  }
}
.advantages .advantage__title {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: min(
			1.625rem + 1.125
			* ((100vw - 20rem) / 100)
		, 2.75rem);
}
@media (min-width: 992px) {
  .advantages .advantage:after {
    position: absolute;
    z-index: -1;
    content: "";
    width: 100vw;
    height: 100%;
    background-color: #1E1E1E;
  }
}
.advantages .advantage.left:after {
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, #1E1E1E 80%);
  left: 0;
}
.advantages .advantage.right {
  text-align: right;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .advantages .advantage.right {
    text-align: center;
    flex-direction: column;
  }
}
.advantages .advantage.right:after {
  background: linear-gradient(90deg, #1E1E1E 20%, rgb(0, 0, 0) 100%);
  right: 0;
}

section.cta {
  background-color: #E36733;
  color: #fff;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.33);
}

.features-slider .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
.features-slider .feature__image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  max-width: 17.5rem;
}
.features-slider .feature__title {
  background-color: #E36733;
  font-size: min(
			1.25rem + 0.9375
			* ((100vw - 20rem) / 100)
		, 2.1875rem);
  color: #fff;
  width: 100%;
  padding: 0.625rem;
  margin: 1.875rem 0;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.33);
}
.features-slider .feature__description {
  width: min(
			17.5rem + 13.75
			* ((100vw - 20rem) / 100)
		, 31.25rem);
  font-size: min(
			1.25rem + 0.3125
			* ((100vw - 20rem) / 100)
		, 1.5625rem);
  line-height: min(
			1.5rem + 0.1875
			* ((100vw - 20rem) / 100)
		, 1.6875rem);
}
@media (max-width: 600px) {
  .features-slider .feature__description {
    width: calc(100% - 40px);
  }
}
@media (min-width: 601px) {
  .features-slider .features__swiper:after, .features-slider .features__swiper:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    height: 100%;
    width: 40%;
    pointer-events: none;
    background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  }
  .features-slider .features__swiper:after {
    left: unset;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    right: 0;
  }
}

.features-list .feature-item {
  position: relative;
  margin-bottom: min(
			2.5rem + 3.75
			* ((100vw - 20rem) / 100)
		, 6.25rem);
}
@media (min-width: 1025px) {
  .features-list .feature-item {
    margin-bottom: 40px;
  }
  .features-list .feature-item:nth-child(even) .feature-item__wrapper {
    flex-direction: row-reverse;
  }
  .features-list .feature-item:nth-child(even) .feature-item__text {
    margin-left: 0;
    margin-right: 50px;
  }
}
@media (max-width: 1024px) {
  .features-list .feature-item__wrapper {
    flex-direction: column;
    padding: 20px;
  }
}
.features-list .feature-item__image {
  width: min(
			17.5rem + 22
			* ((100vw - 20rem) / 100)
		, 39.5rem);
}
.features-list .feature-item__text {
  text-align: center;
  margin-top: 50px;
}
@media (min-width: 1025px) {
  .features-list .feature-item__text {
    text-align: left;
    margin-left: 50px;
    margin-top: 0;
    padding: min(
			1.5rem + 1
			* ((100vw - 20rem) / 100)
		, 2.5rem) 0;
  }
}
.features-list .feature-item__text h2 {
  font-size: min(
			1.375rem + 0.75
			* ((100vw - 20rem) / 100)
		, 2.125rem);
}
.features-list .feature-item__text p {
  font-weight: 300;
  font-size: min(
			1.125rem + 0.375
			* ((100vw - 20rem) / 100)
		, 1.5rem);
  line-height: min(
			1.3125rem + 0.4375
			* ((100vw - 20rem) / 100)
		, 1.75rem);
}
@media (min-width: 1025px) {
  .features-list .feature-item__text p {
    font-size: min(
			0.875rem + 0.5
			* ((100vw - 64rem) / 56)
		, 1.375rem);
    line-height: min(
			1.125rem + 0.5
			* ((100vw - 64rem) / 56)
		, 1.625rem);
  }
}
.features-list .feature-item:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  left: 50%;
  width: 100vw;
  height: 80%;
  transform: translateX(-50%);
  background: #1E1E1E;
  box-shadow: inset 0px -33px 49px -39px rgba(0, 0, 0, 0.75);
  border-bottom: 30px solid #E36733;
}
@media (max-width: 1024px) {
  .features-list .feature-item:before {
    height: 95%;
  }
}

.swiper-pagination {
  position: relative !important;
  margin-top: 4.375rem;
}
.swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  border: 1px solid #E36733;
  opacity: 0.8 !important;
}
.swiper-pagination-bullet-active {
  background-color: #E36733 !important;
  opacity: 1 !important;
}

.team-member {
  position: relative;
}
.team-member__info {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.61);
  opacity: 0;
  transition: all 0.4s linear;
}
.team-member__info:hover {
  opacity: 1;
  transition: all 0.4s linear;
}
@media (max-width: 64rem) {
  .team-member__info {
    opacity: 1;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 28%, rgba(0, 0, 0, 0) 35%);
    justify-content: flex-end;
  }
}
.team-member__name {
  font-weight: bold;
  text-transform: capitalize;
  font-size: min(
			1.375rem + 0.375
			* ((100vw - 20rem) / 100)
		, 1.75rem);
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.33);
}
.team-member__position {
  text-transform: uppercase;
  font-size: min(
			0.875rem + 0.25
			* ((100vw - 20rem) / 100)
		, 1.125rem);
}

.cta-button {
  display: inline-block;
  background-color: #E36733;
  color: #fff;
  border-radius: 10px;
  padding: min(
			0.3125rem + 0.3125
			* ((100vw - 20rem) / 100)
		, 0.625rem) min(
			0.9375rem + 0.9375
			* ((100vw - 20rem) / 100)
		, 1.875rem);
  background-size: 300% 100%;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 15px 0 rgba(227, 103, 51, 0);
  background-image: linear-gradient(to right, #E36733, #ff9a44, #E36733);
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.33);
  text-decoration: none;
  border: none;
  outline: none;
}
.cta-button:hover {
  transition: all 0.4s ease-in-out;
  background-position: 100% 0;
  color: inherit;
}
.cta-button:not(.cta-button--secondary):hover {
  box-shadow: 0 4px 15px 0 rgba(227, 103, 51, 0.9);
}
.cta-button--secondary {
  background-image: linear-gradient(to right, #000, #444444, #000);
  box-shadow: none;
}
.cta-button.big {
  padding: min(
			0.625rem + 0.625
			* ((100vw - 20rem) / 100)
		, 1.25rem) min(
			1.875rem + 1.875
			* ((100vw - 20rem) / 100)
		, 3.75rem);
  font-size: min(
			0.9375rem + 0.9375
			* ((100vw - 20rem) / 100)
		, 1.875rem);
}

.orange-bg {
  background-color: #E36733;
  background-image: linear-gradient(to right, #E36733, #ff9a44, #E36733);
  background-size: 300% 100%;
}

.section-gutter {
  padding: min(
			3.125rem + 3.125
			* ((100vw - 20rem) / 100)
		, 6.25rem) 0;
}
.section-gutter--small {
  padding: min(
			1.5625rem + 1.5625
			* ((100vw - 20rem) / 100)
		, 3.125rem) 0;
}

.footer {
  width: 100%;
  background-color: #1E1E1E;
}
.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .footer__wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.footer__logo {
  width: 100%;
  max-width: 250px;
}
.footer .copyright {
  margin-bottom: 0;
  font-size: min(
			0.875rem + 0.625
			* ((100vw - 20rem) / 100)
		, 1.5rem);
}

.text-left {
  text-align: left;
}

.page-heading {
  position: relative;
  z-index: 1;
  margin-top: min(
			5rem + 1.25
			* ((100vw - 20rem) / 100)
		, 6.25rem);
  background-image: url(../img/abstract_banner.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.page-heading:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.6;
  z-index: -1;
}

.dark-bg {
  background-color: #000;
}

.form-control {
  background-color: #232323;
  color: #fff;
  padding: 1.5625rem 0.625rem 0.625rem 0.625rem;
  outline: none;
  border: 1px solid #6e6e6e;
  min-height: 60px;
  transition: all 0.2s linear;
}
.form-control:focus {
  outline: none;
  box-shadow: 0 4px 15px 0 rgba(227, 103, 51, 0.5) !important;
  background-color: transparent;
  border-color: #E36733;
  color: #fff;
  transition: all 0.2s linear;
}
.form-control::placeholder {
  opacity: 0;
}

.form-group {
  position: relative;
}
.form-group label {
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0.625rem;
  transform: translateY(20px);
  transition: all 0.2s linear;
}
.form-group:has(.form-control:focus) label, .form-group:has(.form-control:not(:placeholder-shown)) label {
  font-size: 0.75rem;
  transform: translateY(10px);
  transition: all 0.2s linear;
}

.contact-info {
  display: flex;
}
.contact-info__icon {
  margin-right: 20px;
}
.contact-info__icon svg {
  width: 30px;
}
.contact-info__icon path {
  fill: #E36733;
}
.contact-info__value {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s linear;
}
.contact-info__value:hover {
  color: #E36733;
  transition: all 0.3s linear;
}

.social-links {
  margin-top: 30px;
  display: flex;
}
.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: 0.875rem;
  transition: all 0.3s linear;
}
.social-links a svg path {
  transition: all 0.3s linear;
}
.social-links a:hover {
  border-color: #E36733;
  box-shadow: 0 4px 15px 0 rgba(227, 103, 51, 0.5);
  transition: all 0.2s linear;
}
.social-links a:hover svg path {
  fill: #E36733;
  transition: all 0.2s linear;
}

.card {
  background-color: #1E1E1E;
  border: none;
}
.card-header {
  border-bottom: none;
}

.accordion {
  background-color: #1E1E1E;
  border: none;
  border-radius: 10px;
}
.accordion-body {
  background-color: transparent;
}
.accordion-item {
  background-color: transparent;
  color: #fff;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.accordion-item:last-of-type {
  border-bottom: none;
}
.accordion-item p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-adjust: 100%;
}
.accordion-header button {
  background-color: transparent;
  color: #fff;
  font-weight: bold;
  font-size: min(
			1.25rem + 0.25
			* ((100vw - 20rem) / 100)
		, 1.5rem);
}
.accordion-header button:not(.collapsed) {
  background-color: transparent;
  border-bottom: none;
  box-shadow: none;
  color: #E36733;
}
.accordion-header button::after {
  display: none;
}

.faq-categories .item {
  display: flex;
  align-items: center;
  font-size: min(
			1.25rem + 0.125
			* ((100vw - 20rem) / 100)
		, 1.375rem);
  cursor: pointer;
  transition: all 0.2s linear;
}
.faq-categories .item.current, .faq-categories .item:hover {
  color: #E36733;
  transition: all 0.2s linear;
}
.faq-categories .item.current .arrow, .faq-categories .item:hover .arrow {
  width: 20px;
  background-color: #E36733;
  transition: all 0.2s linear;
}
.faq-categories .item.current .arrow:before, .faq-categories .item:hover .arrow:before {
  background-color: #E36733;
  transform: rotate(-45deg);
  transition: all 0.2s linear;
}
.faq-categories .item.current .arrow:after, .faq-categories .item:hover .arrow:after {
  background-color: #E36733;
  transform: rotate(45deg);
  transition: all 0.2s linear;
}
.faq-categories .item .arrow {
  position: relative;
  margin-right: 10px;
  width: 15px;
  height: 2px;
  background-color: #fff;
  transition: all 0.2s linear;
}
.faq-categories .item .arrow:after, .faq-categories .item .arrow:before {
  content: "";
  position: absolute;
  right: 0px;
  top: 0;
  width: 10px;
  height: 2px;
  background-color: #fff;
  transform: rotate(0deg);
  transform-origin: center right;
  transition: all 0.2s linear;
}

/*# sourceMappingURL=main.css.map */
