/**
 * * ----------------------------------------
 * * animation tracking-in-contract-bck
 * * ----------------------------------------
 * */
@keyframes tracking-in-contract-bck {
  0% {
    visibility: visible;
    letter-spacing: 1em;
    transform: translateZ(400px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation tracking-out-expand-fwd
 * * ----------------------------------------
 * */
@keyframes tracking-out-expand-fwd {
  0% {
    transform: translateZ(0);
    opacity: 1;
  }
  60% {
    opacity: 0.8;
  }
  100% {
    letter-spacing: 1em;
    transform: translateZ(300px);
    opacity: 0;
  }
}
/**
 * * ----------------------------------------
 * * animation move-up
 * * ----------------------------------------
 * */
@keyframes move-up {
  0% {
    transform: translateY(20px);
    opacity: 0;
    visibility: visible;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation move-down
 * * ----------------------------------------
 * */
@keyframes move-down {
  0% {
    transform: translateY(-20px);
    opacity: 0;
    visibility: visible;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation focus-in-expand
 * * ----------------------------------------
 * */
@keyframes focus-in-expand {
  0% {
    visibility: visible;
    letter-spacing: -0.5em;
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation focus-in-contract-bck
 * * ----------------------------------------
 * */
@keyframes focus-in-contract-bck {
  0% {
    visibility: visible;
    letter-spacing: 1em;
    transform: translateZ(300px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    visibility: visible;
    transform: translateZ(0);
    filter: blur(0);
    opacity: 1;
  }
}
/**
 * * ----------------------------------------
 * * animation text-focus-in
 * * ----------------------------------------
 * */
@keyframes text-focus-in {
  0% {
    visibility: visible;
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
    visibility: visible;
  }
}
.text-anim-in {
  animation: focus-in-expand 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.title {
  font-weight: 100;
  font-size: 3.5rem;
  text-transform: uppercase;
  color: white;
  line-height: 100%;
  font-family: Din Pro;
}

.sub-title {
  font-weight: 100;
  font-size: 1.5rem;
  color: white;
  margin: 0;
  line-height: 1.2;
}

#main-app {
  min-height: 100vh;
}

.btn-wrap {
  display: table;
}

.btn-primary {
  display: table;
  padding: 0.3rem 1rem;
  background-color: #671c90;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  transition: background-color 0.22s cubic-bezier(0, 0, 0.2, 1);
}
.btn-primary:hover {
  background-color: #7f24b4;
}

.btn-secondary {
  display: table;
  padding: 3px 5px;
  background-color: #f5d000;
  border-radius: 5px;
  color: #000000;
  cursor: pointer;
}

.link-white {
  color: #FFFFFF;
}

.logo-deep__text {
  width: 45px;
  height: auto;
}

@media only screen and (max-width: 1200px) {
  .title {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 1000px) {
  .title {
    font-size: 2.8rem;
  }
}
/*=========================================  600  ============================================*/
@media only screen and (max-width: 600px) {
  .title {
    font-size: 2rem;
  }
}
/*=========================================  450  ============================================*/
@media only screen and (max-width: 450px) {
  .title {
    font-size: 1.8rem;
  }
  .sub-title {
    font-size: 1.2rem;
  }
}
/*=========================================  350  ============================================*/
@media only screen and (max-width: 350px) {
  .title {
    font-size: 1.5rem;
  }
}
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.mt-4 {
  margin-top: 4rem;
}

.pt-4 {
  padding-top: 4rem !important;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-2 {
  margin-top: 2rem;
}

.img-responsive {
  width: 100%;
  height: auto;
}

.img-responsive2 {
  height: 350px;
  width: auto;
}

.color-black {
  color: #000000;
}

.layout {
  width: 100%;
  padding-top: 170px;
  overflow-x: hidden;
  position: relative;
}
.layout__container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
.layout__container__title {
  font-size: 2.8rem;
  font-weight: lighter;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 10px 0;
}
.layout__container__subtitle {
  font-size: 1.5rem;
  font-weight: normal;
}
.layout .content__container {
  width: 100%;
  max-width: 1300px;
  padding: 0 30px;
  color: #FFFFFF;
}
.layout .row {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}

/*=========================================  MEDIA  ============================================*/
@media only screen and (max-width: 1100px) {
  .layout__container__title {
    font-size: 30px;
  }
  .layout__container__subtitle {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) {
  .layout__container__title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 500px) {
  .layout .layout__container__title {
    font-size: 30px;
  }
  .layout .content__container {
    padding: 0 10px;
  }
}
.slider-wrap {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.slider-wrap .nav {
  width: 60px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border-radius: 6px;
}
.slider-wrap .nav:hover {
  background-color: rgba(255, 255, 255, 0.1490196078);
}
.slider-wrap .nav img {
  width: auto;
  height: 70%;
}
.slider-wrap .nav-left {
  left: 0;
}
.slider-wrap .nav-right {
  right: 0;
}
.slider-wrap .embla {
  width: 100%;
  max-width: 900px;
  overflow: hidden;
}
.slider-wrap .embla__container {
  display: flex;
  align-items: center;
}
.slider-wrap .embla__slide {
  min-width: 200px;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 1rem 0;
}
.slider-wrap .embla__slide__icon {
  width: 80px;
  height: auto;
  transition: transform 0.5s ease, opacity 0.5s ease;
  aspect-ratio: 1;
}

.embla__slide__title {
  text-align: center;
}

.embla__slide__text {
  max-width: 500px;
  text-align: center;
}

.slider-programs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slider-programs .link {
  display: table;
  margin: 0 auto;
}

@media only screen and (max-width: 900px) {
  .slider-wrap .nav {
    display: none;
  }
}
@media only screen and (max-width: 500px) {
  .slider-wrap .embla__slide {
    min-width: 150px;
  }
}
.faq-container {
  padding: 2rem 0;
}
.faq-container .layout__title {
  margin-bottom: 1.5rem;
}
.faq-container .dropdown {
  user-select: none;
  overflow: hidden;
  cursor: pointer;
}
.faq-container .dropdown.closed .dropdown-menu-container {
  height: 0;
}
.faq-container .dropdown-icon {
  width: 30px;
  display: inline-block;
  padding: 0 10px;
  font-size: 25px;
  font-weight: bold;
}
.faq-container .dropdown-menu-container {
  padding-left: 40px;
  margin-top: 10px;
  transition: all 0.2s ease-in-out;
}
.faq-container .dropdown-menu .link {
  text-decoration: underline;
  color: #FFFFFF;
}
.faq-container .dropdown-title {
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}

body {
  background-color: #000000;
}

a {
  display: table;
}

.main-section {
  width: 100%;
  max-width: 1300px;
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 1rem;
  padding: 0 30px;
  position: relative;
  bottom: 2rem;
}
.main-section .deep-mind-logo {
  min-width: 280px;
  width: 60%;
  height: auto;
  position: relative;
  margin-top: 3rem;
}
.main-section .btn-primary {
  padding: 0.5rem 1rem;
  border: none;
}
.main-section .col-title {
  width: 100%;
  max-width: 500px;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.main-section .col-text {
  width: 100%;
  max-width: 400px;
  grid-column: 1;
  grid-row: 2;
  color: #b4afcf;
}
.main-section .col-img {
  grid-column: 2;
  grid-row: 1/span 2;
  display: flex;
  flex-flow: column wrap;
  position: relative;
}
.main-section .store-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
  bottom: 80px;
  transform: translateX(-10%);
}
.main-section .store-img {
  width: 100%;
  height: auto;
}
.main-section picture {
  display: flex;
  justify-content: flex-end;
}
.main-section .phone-img {
  width: 90%;
  height: auto;
}

.step-wrap {
  padding: 2rem 0;
  gap: 0;
}
.step-wrap .step-container__wrap {
  width: 100%;
  max-width: 158px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.step-wrap .col {
  width: 50%;
  display: flex;
  flex-flow: row wrap;
}
.step-wrap .col .step-container {
  border-right: 1px solid #FFFFFF;
}
.step-wrap .col-2 .step-container:last-child {
  border-right: none;
}
.step-wrap .step-container {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.step-wrap .step-container .number {
  font-size: 3.5rem;
}
.step-wrap .step-container .text {
  font-size: 13px;
}

.features-section {
  overflow: hidden;
}
.features-section .img-container {
  width: 100%;
  position: relative;
}
.features-section__picture {
  width: 100%;
  height: 600px;
  display: block;
}
.features-section__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.features-section .text-container {
  width: 100%;
  max-width: 600px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.features-section .text-container__row {
  justify-content: space-between;
}
.features-section .text-container__col {
  display: flex;
  flex-flow: column;
}
.features-section .text-container__title {
  font-weight: normal;
  margin-bottom: 10px;
}
.features-section .text-container__text {
  width: 120px;
  font-size: 14px;
}
.features-section__description {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 4rem auto 1rem auto;
}

.about-section .row {
  justify-content: center;
  flex-wrap: nowrap;
  gap: 1rem;
}
.about-section .row .col:last-child {
  align-items: flex-end;
}
.about-section .col {
  flex: 1;
  display: flex;
  flex-flow: column wrap;
  align-items: flex-start;
}
.about-section__picture {
  display: block;
  width: 100%;
  max-width: 550px;
  min-height: 370px;
  height: 40vw;
  max-height: 500px;
}
.about-section__picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}
.about-section .brain-picture {
  width: 100%;
  max-width: 600px;
  height: 40vw;
  max-height: 500px;
  overflow: hidden;
}
.about-section .brain-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-section .layout__container__title, .about-section .layout__container__subtitle {
  width: 100%;
  max-width: 450px;
}
.about-section .small-text {
  max-width: 300px;
  font-size: 15px;
  color: #757575;
}
.about-section .items-end {
  justify-content: flex-end;
}
.about-section .picture-layout-container {
  width: 100%;
  max-height: 750px;
  height: 130vw;
  position: relative;
}
.about-section .picture-layout-container .col {
  padding-top: 5rem;
}
.about-section .picture-layout {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.about-section .picture-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-section .gradient {
  display: none;
}

.background-layout {
  min-height: 600px;
  margin-top: 2rem;
  background: url("../images/dest/helix.jpg") center/cover no-repeat;
}

.deep-one-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.deep-one-section .row-center {
  justify-content: center;
  align-items: center;
}
.deep-one-section .title-container {
  opacity: 0.8;
}
.deep-one-section .logo-container {
  width: 100%;
  height: 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 70px;
  left: -30px;
}
.deep-one-section .list-container {
  opacity: 0.6;
  padding: 3rem 0 1rem 0;
}
.deep-one-section .list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 2rem;
  border-left: 1px solid #FFFFFF;
}
.deep-one-section .list-item:last-child {
  border-right: 1px solid #FFFFFF;
}

/*=========================================  MEDIA  ============================================*/
@media only screen and (max-width: 1300px) {
  .main-section {
    grid-template-rows: 60% 40%;
    grid-template-columns: 40% 60%;
  }
}
@media only screen and (max-width: 1100px) {
  .main-section {
    grid-template-columns: 50% 50%;
    bottom: 0;
  }
  .main-section .store-container {
    bottom: 50px;
  }
}
@media only screen and (max-width: 900px) {
  .main-section {
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    justify-items: center;
    gap: 0;
  }
  .main-section .col-title {
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .main-section .col-img {
    grid-column: 1;
    grid-row: 2;
    justify-content: center;
    margin: 1rem 0;
  }
  .main-section .col-text {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    grid-column: 1;
    grid-row: 3;
    text-align: center;
  }
  .main-section .phone-img {
    min-width: 300px;
    width: 80%;
    height: auto;
  }
  .main-section .store-container {
    bottom: 0;
    transform: translateX(0);
    justify-content: center;
  }
  .step-wrap {
    gap: 20px;
  }
  .step-wrap .col {
    position: relative;
    width: 100%;
  }
  .step-wrap .col .step-container {
    border-right: 1px solid #FFFFFF;
  }
  .step-wrap .col .step-container:last-child {
    border-right: none;
  }
  .step-wrap .col-1:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-top: 1px solid #FFFFFF;
  }
  .features-section__picture {
    height: 400px;
  }
  .deep-one-section .list-container {
    gap: 10px;
  }
  .deep-one-section .list-item {
    padding: 5px 10px;
  }
  .about-section .layout__container__title, .about-section .layout__container__subtitle {
    max-width: unset;
    text-align: center;
  }
  .about-section .small-text {
    max-width: unset;
  }
  .about-section .row {
    flex-wrap: wrap;
  }
  .about-section .row .col:last-child {
    align-items: center;
  }
  .about-section .col {
    width: 100%;
    flex: auto;
    align-items: center;
  }
  .about-section__picture {
    height: 55vw;
    min-height: 200px;
  }
  .about-section .brain-picture {
    height: auto;
  }
  .about-section .picture-layout-container {
    height: 110vw;
  }
  .about-section .picture-layout-container .col {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
  }
  .about-section .gradient {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(161deg, rgb(0, 0, 0) 0%, rgb(75, 61, 52) 100%);
    opacity: 0.5;
  }
  .about-section .layout__container__subtitle {
    padding-right: 10px;
  }
  .about-section__picture img {
    max-width: 400px;
  }
}
@media only screen and (max-width: 500px) {
  .deep-one-section .list-item {
    font-size: 13px;
    padding: 5px;
  }
}
@media only screen and (max-width: 450px) {
  .main-section .store-container {
    bottom: 0;
  }
  .step-wrap .step-container {
    padding: 0 5px;
    gap: 5px;
  }
  .step-wrap .step-container .number {
    font-size: 3rem;
  }
  .step-wrap .step-container__wrap {
    gap: 5px;
  }
  .features-section__picture {
    height: 350px;
  }
  .features-section .text-container__title {
    width: 100px;
    font-size: 16px;
  }
  .features-section .text-container__text {
    width: 100px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 400px) {
  .features-section .text-container {
    position: relative;
  }
  .features-section .text-container__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 10px;
  }
  .features-section .text-container__col {
    align-items: center;
  }
  .features-section .text-container__title {
    width: 120px;
    font-size: 16px;
  }
  .features-section .text-container__text {
    width: 120px;
    font-size: 13px;
  }
  .deep-one-section .list-container {
    gap: 5px;
  }
  .deep-one-section .list-item {
    padding: 2px;
  }
  .deep-one-section .logo-container {
    top: 80px;
  }
}