.index.main {
  display: flex;
  flex-direction: column;
  background-color: white;
  overflow: hidden;
}
.index .heroSection {
  display: flex;
  flex-direction: column;
  background: var(--src) center center/cover no-repeat;
  background-color: #1B1A57;
  background-image:
	radial-gradient(
      circle at center,
      #1B1A57, 
      transparent 100%
    ),
	radial-gradient(
      circle at top left,
      #0389FF, 
      transparent 600px
    ),
    radial-gradient(
      circle at bottom right,
      #00D4FF, 
      transparent 600px
    );
}
.index .flexColContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 57px 0;
  margin: 57px auto 64px;
  width: 1065.0234375px;
  max-width: 85%;
}
@media (max-width: 383px) {
  .index .flexColContainer {
    gap: 50px 0;
    margin: 50px auto;
  }
}
.index .flexRowLayout {
  display: flex;
  justify-content: space-between;
  gap: 0 10px;
  width: 100%;
}
@media (max-width: 1199px) {
  .index .flexRowLayout {
    flex-direction: column;
    align-items: center;
    gap: 30px 10px;
  }
}
.index .leaderName {
  font: 700 20px/1.37 Outfit, Helvetica, Arial, serif;
  color: white;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .index .leaderName {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .index .leaderName {
    align-items: flex-start;
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .index .leaderName {
    font-size: 16px;
  }
}
.index .flexRowSkills {
  display: flex;
  justify-content: space-between;
  gap: 0 10px;
  width: 775px;
  min-width: 0;
}
@media (max-width: 1199px) {
  .index .flexRowSkills {
       display: none;

  }
}

@media (max-width: 767px) {
  .index .flexRowSkills {
    /*flex-direction: column;
    align-items: center;
    gap: 30px 10px;*/
  }
}
.index .skillAutomation {
  font: 400 20px/1.37 Outfit, Helvetica, Arial, serif;
  color: white;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: color;
}
@media (max-width: 991px) {
  .index .skillAutomation {
    align-items: flex-start;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .index .skillAutomation {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .index .skillAutomation {
    font-size: 16px;
  }
}
.index .skillAutomation:hover {
  color: #2685ffff;
}
.index .skillDesignThinking {
  font: 400 20px/1.37 Outfit, Helvetica, Arial, serif;
  color: white;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: color;
}
@media (max-width: 991px) {
  .index .skillDesignThinking {
    align-items: flex-start;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .index .skillDesignThinking {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .index .skillDesignThinking {
    font-size: 16px;
  }
}
.index .skillDesignThinking:hover {
  color: #2685ffff;
}
.index .skillStrategy {
  font: 400 20px/1.37 Outfit, Helvetica, Arial, serif;
  color: white;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: color;
}
@media (max-width: 991px) {
  .index .skillStrategy {
    align-items: flex-start;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .index .skillStrategy {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .index .skillStrategy {
    font-size: 16px;
  }
}
.index .skillStrategy:hover {
  color: #2685ffff;
}
.index .skillEfficiency {
  font: 400 20px/1.37 Outfit, Helvetica, Arial, serif;
  color: white;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: color;
}
@media (max-width: 991px) {
  .index .skillEfficiency {
    align-items: flex-start;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .index .skillEfficiency {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .index .skillEfficiency {
    font-size: 16px;
  }
}
.index .skillEfficiency:hover {
  color: #2685ffff;
}
.index .skillPersonalization {
  font: 400 20px/1.37 Outfit, Helvetica, Arial, serif;
  color: white;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: color;
}
@media (max-width: 991px) {
  .index .skillPersonalization {
    align-items: flex-start;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .index .skillPersonalization {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .index .skillPersonalization {
    font-size: 16px;
  }
}
.index .skillPersonalization:hover {
  color: #2685ffff;
}

/* start Hamburger Nav */

@media (max-width: 1199px) {
.index .hamburger{
  		display: block !important;
	}
}

#menuToggle
{
  display: block;
  position: absolute;
  top: 60px;
  right: 50px;
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}
#menuToggle a
{
  text-decoration: none;  
}
#menuToggle a:hover
{
  color: #11104A;
}
#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #ffffff;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease; 
}
#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #00D4FF;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}
#menuToggle input:checked ~ #menu{
   display: block;
}

#menu
{
  position: absolute;
  width: 298px;
  margin: -100px 0 0 -215px;
  padding: 50px;
  padding-top: 125px;
  
  background: #11104A;
  border-radius: 0 0 0 20px;

  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  
  transition: display transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  display: none;

  -webkit-box-shadow: 
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
   -moz-box-shadow:
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
   box-shadow:
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
}
#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}

/* end Hamburger Nav */

.index .flexRowContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 10px;
  width: 100%;
}
@media (max-width: 991px) {
  .index .flexRowContent {
    flex-direction: column;
    gap: 30px 10px;
  }
}
.index .flexCol1 {
  display: flex;
  flex-direction: column;
  width: 578px;
  min-width: 0;
}
@media (max-width: 991px) {
  .index .flexCol1 {
    width: 100%;
    min-width: unset;
  }
}
.index .heroTitle {
  margin: 0 3px 0 0;
  font: 700 70px/1 Outfit, Helvetica, Arial, serif;
  color: white;
}
@media (max-width: 991px) {
  .index .heroTitle {
    align-items: flex-start;
    font-size: 52px;
  }
}
@media (max-width: 479px) {
  .index .heroTitle {
    font-size: 36px;
  }
}
.index .highlightedExperience {
  font-size: 16px;  
  margin: 16px 0 0;
  font: 400 18px/1.52 Roboto, Helvetica, Arial, serif;
  color: white;
}
@media (max-width: 991px) {
  .index .highlightedExperience {
    align-items: flex-start;
    font-size: 16px;
  }
}

.index .projectLink {
  font: 400 18px/1.52 Roboto, Helvetica, Arial, serif;
  color: #00d4ff;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: color;
  text-decoration: none;
}
@media (max-width: 991px) {
  .index .projectLink {
    align-items: flex-start;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .index .projectLink {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .index .projectLink {
    font-size: 16px;
  }
}
.index .projectLink:hover {
  color: #0389ff;
}

.index .flexRowButtons {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  align-content: flex-start;
  gap: 16px;
  margin: 24px 0 0;
}
@media (max-width: 1199px) {
  .index .flexRowButtons {
    justify-content: stretch;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
}
.index .btnContact {
  display: flex;
  justify-content: center;
  min-width: 213px;
  font: 600 20px/1.37 Outfit, Helvetica, Arial, serif;
  color: #1b1a57;
  text-align: center;
  background-color: #00d4ff;
  border-radius: 33px;
  padding: 19px 8px;
  cursor: pointer;
  letter-spacing: 2px;
  outline: 1px solid #0389ff;
  transition-duration: 0.4s;
}
.btnContact:hover {
  background-color: transparent;
  color: #00d4ff;
}

@media (max-width: 1199px) {
  .index .btnContact {
    align-items: flex-start;
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .index .btnContact {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .index .btnContact {
    width: 100%;
    min-width: unset;
  }
}
@media (max-width: 479px) {
  .index .btnContact {
    font-size: 16px;
  }
}
.index .btnResume {
  display: flex;
  justify-content: center;
  flex: 0 1 213;
  min-width: 213px;
  font: 600 20px/1.37 Outfit, Helvetica, Arial, serif;
  color: #0389ff;
  text-align: center;
  border-radius: 33px;
  padding: 19px 8px;
  outline: 1px solid #0389ff;
  outline-offset: -1px;
  cursor: pointer;
  letter-spacing: 2px;
  transition-duration: 0.4s;
}

.btnResume:hover{
  background-color: #00d4ff; 
  color: #1b1a57;
}

@media (max-width: 1199px) {
  .index .btnResume {
    align-items: flex-start;
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .index .btnResume {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .index .btnResume {
    width: 86%;
    min-width: unset;
  }
}
@media (max-width: 479px) {
  .index .btnResume {
    font-size: 16px;
  }
}
.index .btnLinkedIn {
  width: 66px;
  height: 66px;
  border: 1px solid #0389FF;
  border-radius: 100px;
  cursor: pointer;
  transition-duration: 0.4s;
}
.btnLinkedIn:hover{
  background-color: #00d4ff; 
  color: #1b1a57;
}
@media (max-width: 767px) {
  .index .imageContact {
    width: 100%;
    min-width: unset;
    max-width: 66px;
  }
}
.index .imageProfile {
  width: 396px;
  min-width: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 991px) {
  .index .imageProfile {
    height: auto;
    min-width: unset;
    max-width: 50%;
  }
}
.index .projectsSection {
  display: flex;
  flex-direction: column;
}
.index .flexColumnWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px 0;
  margin: 64px auto 69px;
  width: 1065.0234375px;
  max-width: 85%;
}
@media (max-width: 383px) {
  .index .flexColumnWrapper {
    gap: 50px 0;
    margin: 50px auto;
  }
}
.index .projectsSubtitle {
  width: 112.9921875px;
  max-width: 85%;
  font: 600 20px/1.37 Outfit, Helvetica, Arial, serif;
  color: #1b1a57;
  letter-spacing: 2px;
}
@media (max-width: 991px) {
  .index .projectsSubtitle {
    align-items: flex-start;
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .index .projectsSubtitle {
    font-size: 16px;
  }
}
.index .projectCard1 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.index .projectImage1 {
  width: 100%;
  border: double 1px transparent;
  border-radius: 20px;
  background-image: linear-gradient(white, white), 
                    linear-gradient(80deg, #0389FF, #00D4FF);
  background-origin: border-box;
  background-clip: content-box, border-box;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.projectImage1:hover {
   transform: scale(1.05);
   -webkit-box-shadow: 
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
   -moz-box-shadow:
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
   box-shadow:
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
}

.index .projectTitle1 {
  width: fit-content;  
  margin: 24px 0 0;
  font: 700 40px Outfit, Helvetica, Arial, serif;
  line-height: 120%;
  background-image: linear-gradient(80deg, #0389FF, #00D4FF);
  background-clip: text;
  color: transparent; 
}
@media (max-width: 991px) {
  .index .projectTitle1 {
    align-items: flex-start;
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .index .projectTitle1 {
    font-size: 30px;
  }
}
@media (max-width: 479px) {
  .index .projectTitle1 {
    font-size: 24px;
  }
}
.index .projectDetail1_box {
  margin: 11px 0 0;
}
@media (max-width: 991px) {
  .index .projectDetail1_box {
    align-items: flex-start;
  }
}
.index .projectDetail1 {
  font: 700 25px/1.1 Roboto, Helvetica, Arial, serif;
  color: #0389ff;
}
@media (max-width: 991px) {
  .index .projectDetail1 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .index .projectDetail1 {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .index .projectDetail1 {
    font-size: 14px;
  }
}
.index .projectDetail1_span0 {
  font: 700 1em/1.1 Roboto, Helvetica, Arial, serif;
}
.index .projectDetail1_span1 {
  font: 1em/1.1 Roboto, Helvetica, Arial, serif;
}
.index .projectCard2 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.index .projectImage2 {
  width: 100%;
  border: double 1px transparent;
  border-radius: 20px;
  background-image: linear-gradient(white, white), 
                    linear-gradient(80deg, #0389FF, #00D4FF);
  background-origin: border-box;
  background-clip: content-box, border-box;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  transition: all .2s ease-in-out;
}
.projectImage2:hover {
   transform: scale(1.05);
   -webkit-box-shadow: 
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
   -moz-box-shadow:
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
   box-shadow:
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
}

.index .projectTitle2 {
  width: fit-content;
  margin: 24px 0 0;
  font: 700 40px Outfit, Helvetica, Arial, serif;
  line-height: 120%;
  background-image: linear-gradient(80deg, #0389FF, #00D4FF);
  background-clip: text;
  color: transparent; 
}
@media (max-width: 991px) {
  .index .projectTitle2 {
    align-items: flex-start;
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .index .projectTitle2 {
    font-size: 30px;
  }
}
@media (max-width: 479px) {
  .index .projectTitle2 {
    font-size: 24px;
  }
}
.index .projectDetail2_box {
  margin: 11px 0 0;
}
@media (max-width: 991px) {
  .index .projectDetail2_box {
    align-items: flex-start;
  }
}
.index .projectDetail2 {
  font: 400 25px/1.1 Roboto, Helvetica, Arial, serif;
  color: #0389ff;
}
@media (max-width: 991px) {
  .index .projectDetail2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .index .projectDetail2 {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .index .projectDetail2 {
    font-size: 14px;
  }
}
.index .projectDetail2_span0 {
  font: 1em/1.1 Roboto, Helvetica, Arial, serif;
}
.index .projectDetail2_span1 {
  font: 700 1em/1.1 Roboto, Helvetica, Arial, serif;
}
.index .projectDetail2_span2 {
  font: 1em/1.1 Roboto, Helvetica, Arial, serif;
}
.index .projectCard3 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.index .projectImage3 {
  width: 100%;
  border: double 1px transparent;
  border-radius: 20px;
  background-image: linear-gradient(white, white), 
                    linear-gradient(80deg, #0389FF, #00D4FF);
  background-origin: border-box;
  background-clip: content-box, border-box;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  transition: all .2s ease-in-out;
}
.projectImage3:hover {
   transform: scale(1.05);
   -webkit-box-shadow: 
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px gba(17,16,74,0.3);
   -moz-box-shadow:
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
   box-shadow:
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
}
.index .projectTitle3 {
  width: fit-content;
  margin: 24px 0 0;
  font: 700 40px Outfit, Helvetica, Arial, serif;
  line-height: 120%;
  background-image: linear-gradient(80deg, #0389FF, #00D4FF);
  background-clip: text;
  color: transparent; 
}
@media (max-width: 991px) {
  .index .projectTitle3 {
    align-items: flex-start;
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .index .projectTitle3 {
    font-size: 30px;
  }
}
@media (max-width: 479px) {
  .index .projectTitle3 {
    font-size: 24px;
  }
}
.index .projectDetail3 {
  margin: 11px 0 0;
  font: 400 25px/1.1 Roboto, Helvetica, Arial, serif;
  color: #0389ff;
}
@media (max-width: 991px) {
  .index .projectDetail3 {
    align-items: flex-start;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .index .projectDetail3 {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .index .projectDetail3 {
    font-size: 14px;
  }
}
.index .projectCard4 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.index .projectImage4 {
  width: 100%;
  border: double 1px transparent;
  border-radius: 20px;
  background-image: linear-gradient(white, white), 
                    linear-gradient(80deg, #0389FF, #00D4FF);
  background-origin: border-box;
  background-clip: content-box, border-box;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  transition: all .2s ease-in-out;
}
.projectImage4:hover {
   transform: scale(1.05);
   -webkit-box-shadow: 
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
   -moz-box-shadow:
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
   box-shadow:
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
}
.index .projectTitle4 {
  width: fit-content;
  margin: 24px 0 0;
  font: 700 40px Outfit, Helvetica, Arial, serif;
  line-height: 120%;
  background-image: linear-gradient(80deg, #0389FF, #00D4FF);
  background-clip: text;
  color: transparent; 
}
@media (max-width: 991px) {
  .index .projectTitle4 {
    align-items: flex-start;
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .index .projectTitle4 {
    font-size: 30px;
  }
}
@media (max-width: 479px) {
  .index .projectTitle4 {
    font-size: 24px;
  }
}
.index .projectDetail4_box {
  margin: 11px 0 0;
}
@media (max-width: 991px) {
  .index .projectDetail4_box {
    align-items: flex-start;
  }
}
.index .projectDetail4 {
  font: 400 25px/1.1 Roboto, Helvetica, Arial, serif;
  color: #0389ff;
}
@media (max-width: 991px) {
  .index .projectDetail4 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .index .projectDetail4 {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .index .projectDetail4 {
    font-size: 14px;
  }
}
.index .projectDetail4_span0 {
  font: 1em/1.1 Roboto, Helvetica, Arial, serif;
}
.index .projectDetail4_span1 {
  font: 700 1em/1.1 Roboto, Helvetica, Arial, serif;
}
.index .projectDetail4_span2 {
  font: 1em/1.1 Roboto, Helvetica, Arial, serif;
}
.index .projectDetail4_span3 {
  font: 700 1em/1.1 Roboto, Helvetica, Arial, serif;
}
.index .projectCard5 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.index .projectImage5 {
  width: 100%;
  border: double 1px transparent;
  border-radius: 20px;
  background-image: linear-gradient(white, white), 
                    linear-gradient(80deg, #0389FF, #00D4FF);
  background-origin: border-box;
  background-clip: content-box, border-box;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  transition: all .2s ease-in-out;
}
.projectImage5:hover {
   transform: scale(1.05);
   -webkit-box-shadow: 
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
   -moz-box-shadow:
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
   box-shadow:
				0px -10px 52px -6px rgba(0,213,255,0.3), 
				0px  5px  52px  0px rgba(3,137,255,0.3);
				5px  0px  52px  0px rgba(17,16,74,0.3);
}
.index .projectTitle5 {
  width: fit-content;
  margin: 24px 0 0;
  font: 700 40px Outfit, Helvetica, Arial, serif;
  line-height: 120%;
  background-image: linear-gradient(80deg, #0389FF, #00D4FF);
  background-clip: text;
  color: transparent; 
}
@media (max-width: 991px) {
  .index .projectTitle5 {
    align-items: flex-start;
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .index .projectTitle5 {
    font-size: 30px;
  }
}
@media (max-width: 479px) {
  .index .projectTitle5 {
    font-size: 24px;
  }
}
.index .projectDetail5_box {
  margin: 11px 0 0;
}
@media (max-width: 991px) {
  .index .projectDetail5_box {
    align-items: flex-start;
  }
}
.index .projectDetail5 {
  font: 400 25px/1.1 Roboto, Helvetica, Arial, serif;
  color: #0389ff;
}
@media (max-width: 991px) {
  .index .projectDetail5 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .index .projectDetail5 {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .index .projectDetail5 {
    font-size: 14px;
  }
}
.index .projectDetail5_span0 {
  font: 1em/1.1 Roboto, Helvetica, Arial, serif;
}
.index .projectDetail5_span1 {
  font: 700 1em/1.1 Roboto, Helvetica, Arial, serif;
}
.index .projectDetail5_span2 {
  font: 1em/1.1 Roboto, Helvetica, Arial, serif;
}
.index .testimonialsSection {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
/*@media (max-width: 1199px) {
  .index .testimonialsSection {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .index .testimonialsSection {
    height: 100%;
  }
}*/
.index .testimonialsGroup {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 87px 0 0 0;
  width: 100%;
  background-color: #1B1A57;
  background-image:
	radial-gradient(
      circle at center,
      #1B1A57, 
      transparent 100%
    ),
	radial-gradient(
      circle at top left,
      #0389FF, 
      transparent 600px
    ),
    radial-gradient(
      circle at bottom right,
      #00D4FF, 
      transparent 600px
    );

}
/*@media (max-width: 1199px) {
  .index .testimonialsGroup {
    min-width: 100%;
    min-height: 1000px;
  }
}
@media (max-width: 575px) {
  .index .testimonialsGroup {
    margin: 80px auto 0;
  }
}
@media (max-width: 383px) {
  .index .testimonialsGroup {
    margin: 50px auto 0;
  }
}*/
.index .testimonialsFlexCol {
  position: relative;
  top: 64px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px 0;
  width: 100%;
  transform: translate(-50%, 0);
  margin: 0 0 200px 0;

}
@media (max-width: 1199px) {
  .index .testimonialsFlexCol {
    width: 85%;
  }
}

@media (max-width: 575px) {
  .index .testimonialsFlexCol {
    gap: 80px 0;
  }
}
@media (max-width: 383px) {
  .index .testimonialsFlexCol {
    gap: 50px 0;
  }
}
.index .recommendationsTitle {
  display: flex;
  width: 228.96875px;
  max-width: 85%;
  font: 600 20px/1.37 Outfit, Helvetica, Arial, serif;
  color: #00d4ff;
  letter-spacing: 2px;
}
@media (max-width: 1919px) {
  .index .recommendationsTitle {
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .index .recommendationsTitle {
    margin-top: unset;
    margin-right: unset;
    margin-bottom: unset;
    margin-left: unset;
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .index .recommendationsTitle {
    font-size: 16px;
  }
}
.index .testimonialRow {
  display: flex;
  gap: 0 15px;
}
@media (max-width: 991px) {
  .index .testimonialRow {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px 15px;
  }
}
@media (max-width: 383px) {
  .index .testimonialRow {
    gap: 80px 8px;
  }
}
.index .testimonialBox1 {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 345px;
  min-width: 0;
  background-color: rgba(17, 16, 74, 0.8);
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .index .testimonialBox1 {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .index .testimonialBox1 {
    width: 80%;
  }
}

.index .testimonialContent1 {
  position: absolute;
  top: -56px;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: 137px;
  background: var(--src) center center/100% 100% no-repeat;
  transform: translate(-50%, 0);
}
.index .testimonialImage1 {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  mix-blend-mode: luminosity;
}
.index .testimonialDetails1 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 109px 16px 71px;
  width: 90.72%;
}
@media (max-width: 1199px) {
  .index .testimonialDetails1 {
    margin: 109px auto 71px;
  }
}
@media (max-width: 575px) {
  .index .testimonialDetails1 {
    margin: 80px auto 71px;
  }
}
@media (max-width: 383px) {
  .index .testimonialDetails1 {
    margin: 50px 8px;
  }
}
.index .testimonialAuthor1 {
  display: flex;
  justify-content: center;
  width: 217px;
  max-width: 85%;
  font: 600 20px/1.37 Outfit, Helvetica, Arial, serif;
  color: #0389ff;
  text-align: center;
  letter-spacing: 2px;
}
@media (max-width: 991px) {
  .index .testimonialAuthor1 {
    align-items: flex-start;
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .index .testimonialAuthor1 {
    font-size: 16px;
  }
}
.index .testimonialRole1 {
  display: flex;
  justify-content: center;
  margin: 13px 0 0;
  font: 400 14px/1.14 Roboto, Helvetica, Arial, serif;
  color: #0389ff;
  text-align: center;
}
.index .testimonialDivider1 {
  margin: 25px 0 0;
  width: 74px;
  max-width: 85%;
  height: 1px;
  min-height: 1px;
  background-color: #00d4ff;
}
.index .testimonialQuote1 {
  display: flex;
  justify-content: center;
  margin: 23px 0 0;
  width: 92.65%;
  font: 400 16px/1.14 Roboto, Helvetica, Arial, serif;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.index .testimonialBox2 {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 345px;
  min-width: 0;
  background-color: rgba(17, 16, 74, 0.8);
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .index .testimonialBox2 {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .index .testimonialBox2 {
    width: 80%;
  }
}
.index .testimonialContent2 {
  position: absolute;
  top: -56px;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: 137px;
  background: var(--src) center center/100% 100% no-repeat;
  transform: translate(-50%, 0);
}
.index .testimonialImage2 {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  mix-blend-mode: luminosity;
}
.index .testimonialDetails2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 109px 16px 34px;
  width: 90.72%;
}
@media (max-width: 1199px) {
  .index .testimonialDetails2 {
    margin: 109px auto 34px;
  }
}
@media (max-width: 575px) {
  .index .testimonialDetails2 {
    margin: 80px auto 34px;
  }
}
@media (max-width: 383px) {
  .index .testimonialDetails2 {
    margin: 50px 8px 34px;
  }
}
.index .testimonialAuthor2 {
  display: flex;
  justify-content: center;
  width: 197px;
  max-width: 85%;
  font: 600 20px/1.37 Outfit, Helvetica, Arial, serif;
  color: #0389ff;
  text-align: center;
  letter-spacing: 2px;
}
@media (max-width: 991px) {
  .index .testimonialAuthor2 {
    align-items: flex-start;
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .index .testimonialAuthor2 {
    font-size: 16px;
  }
}
.index .testimonialRole2 {
  display: flex;
  justify-content: center;
  margin: 13px 0 0;
  font: 400 14px/1.14 Roboto, Helvetica, Arial, serif;
  color: #0389ff;
  text-align: center;
}
.index .testimonialDivider2 {
  margin: 25px 0 0;
  width: 74px;
  max-width: 85%;
  height: 1px;
  min-height: 1px;
  background-color: #00d4ff;
}
.index .testimonialQuote2 {
  display: flex;
  justify-content: center;
  margin: 23px 0 0;
  width: 92.65%;
  font: 400 16px/1.14 Roboto, Helvetica, Arial, serif;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.index .testimonialBox3 {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 345px;
  min-width: 0;
  background-color: rgba(17, 16, 74, 0.8);
  border-radius: 20px;
}

@media (max-width: 1199px) {
  .index .testimonialBox3 {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .index .testimonialBox3 {
    width: 80%;
  }
}
.index .testimonialContent3 {
  position: absolute;
  top: -56px;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: 137px;
  background: var(--src) center center/100% 100% no-repeat;
  transform: translate(-50%, 0);
}
.index .testimonialImage3 {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  mix-blend-mode: luminosity;
}
.index .testimonialDetails3 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 109px 16px 52px;
  width: 90.72%;
}
@media (max-width: 1199px) {
  .index .testimonialDetails3 {
    margin: 109px auto 52px;
  }
}
@media (max-width: 575px) {
  .index .testimonialDetails3 {
    margin: 80px auto 52px;
  }
}
@media (max-width: 383px) {
  .index .testimonialDetails3 {
    margin: 50px 8px;
  }
}
.index .testimonialAuthor3 {
  display: flex;
  justify-content: center;
  width: 217px;
  max-width: 85%;
  font: 600 20px/1.37 Outfit, Helvetica, Arial, serif;
  color: #0389ff;
  text-align: center;
  letter-spacing: 2px;
}
@media (max-width: 991px) {
  .index .testimonialAuthor3 {
    align-items: flex-start;
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .index .testimonialAuthor3 {
    font-size: 16px;
  }
}
.index .testimonialRole3 {
  display: flex;
  justify-content: center;
  margin: 13px 0 0;
  font: 400 14px/1.14 Roboto, Helvetica, Arial, serif;
  color: #0389ff;
  text-align: center;
}
.index .testimonialDivider3 {
  margin: 25px 0 0;
  width: 74px;
  max-width: 85%;
  height: 1px;
  min-height: 1px;
  background-color: #00d4ff;
}
.index .testimonialQuote3 {
  display: flex;
  justify-content: center;
  margin: 23px 0 0;
  width: 92.65%;
  font: 400 16px/1.14 Roboto, Helvetica, Arial, serif;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}