/* culori logo:
    -#0073FF
    -#7D03DB
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.5s ease-out;
}

/*animation //////////////////*/
@keyframes backgroundMove {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -1620px;
  }
}

/*////////////////////////////*/
html {
  background-color: #fff;
  font-family: Arial;
  font-size: 22px;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 7px;
  background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-track {
  background: linear-gradient(35deg, #0073FF, #7D03DB 75%);
}

::-webkit-scrollbar-thumb {
  background: transparent;
  box-shadow: 0px 0px 0px 100000vh black;
}

body {
  margin: 0;
}

.loaderBg {
  position: fixed;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.95);
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px);
}

.loadingScreenVideo {
  display: block;
  width: 10%;
  margin: 400px auto 0;
}

/*///////////////////////////////////////////////////////////////
                    Cookies
/////////////////////////////////////////////////////////////////*/
#cookies {
  opacity: 0;
  position: fixed;
  z-index: 100;
  display: block;
  width: max-content;
  height: max-content;
  background-image: linear-gradient(35deg, #0073FF, #7D03DB);
  padding: 5px;
  transition: 0.5s ease;
  bottom: 20px;
  margin: 0 auto;
  right: 0;
  left: 0;
  box-shadow: 0 0 30px 0 #000;
}

#innerCookies {
  width: max-content;
  height: max-content;
  padding: 25px;
  background-image: linear-gradient(#262626, #171717);
  color: #fff;
  font-size: 80%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
}

#cookiesImg {
  margin-right: 25px;
}

#cookiesImg img {
  width: 90%;
  height: auto;
}

#cookiesBtn {
  margin-left: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}

#cookiesBtn div {
  width: max-content;
  height: max-content;
  padding: 3px;
  background-image: linear-gradient(35deg, #0073FF, #7D03DB);
}

#cookiesBtn button {
  position: relative;
  display: block;
  background-image: linear-gradient(#262626, #171717);
  outline: none;
  border: none;
  font-size: 130%;
  color: #fff;
  font-family: Arial;
  font-weight: 0;
  padding: 5px 20px;
  cursor: pointer;
}

/*//////////////////////////////////////////////////////
                    Header
//////////////////////////////////////////////////////*/
#header {
  position: fixed;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 12vh;
  z-index: 100;
  padding: 0 100px;
}

.backdropFilter {
  backdrop-filter: blur(5px);
}

.shadow {
  box-shadow: 0px 0px 50px 0px #000;
}

#headerLogo {
  height: 60%;
  width: auto;
}

#headerLogoImg {
  width: auto;
  height: 100%;
}

#navigation {
  display: block;
  position: relative;
}

#mainNav {
  display: block;
  visibility: visible;
}

#mainNav nav ul {
  list-style: none;
}

#mainNav nav ul li {
  list-style: none;
  display: inline-block;
  padding: 0 30px;
  position: relative;
}

#mainNav nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 100%;
}

#mainNav nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 2px;
  width: 40%;
  background-color: #fff;
  transform-origin: bottom center;
  transform: scaleX(0);
  transition: 0.3s ease;
}

#mainNav nav ul li a:hover::after {
  transform: scaleX(1);
}

#mobileNavMenu {
  display: none;
  visibility: hidden;
  position: relative;
}

#mobileNav {
  display: none;
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: auto;
  right: -100vw;
  top: 0;
  background-color: rgba(23, 23, 23, 0.7);
  z-index: 99;
  transition: 0.5s ease;
  backdrop-filter: blur(5px);
}

#mobileNav nav {
  width: 100%;
  height: 100%;
}

#mobileNav nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  padding-top: 12vh;
  padding-bottom: 50px;
}

#mobileNav nav ul li {
  list-style: none;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#mobileNav nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 135%;
}

/*//////////////////////////////////////////////////////
                    Hero
//////////////////////////////////////////////////////*/
#heroSection {
  background-image: linear-gradient(#262626, #171717);
  height: 110vh;
  position: relative;
  top: 0;
  margin: 0;
  box-shadow: 0px 0px 50px 0px #000;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.heroText {
  opacity: 0;
  display: block;
  margin: 0 auto 0;
  transform: translateY(50px);
  transition: 1s;
  position: relative;
  z-index: 1;
}

.heroText h1 {
  position: relative;
  transition: 0.3s ease;
  font-size: 60px;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-image: linear-gradient(35deg, #fff, #0073FF, #7D03DB 75%);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 2;
}

.heroVideoBox {
  position: absolute;
  width: 100%;
  height: 110vh;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 0;
}

.heroVideo {
  position: relative;
  display: block;
  z-index: 0;
  opacity: 0.3;
  width: 100%;
  margin: 0 auto 0;
}

/* Navigation bar ////////////////////////////////////*/
#menu {
  position: relative;
  cursor: pointer;
  float: right;
  margin: 8px 0 0 0;
  transition: 0.5s ease;
  z-index: 100;
}

.bar1, .bar2, .bar3 {
  border-radius: 1000px;
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}

#menu:hover .bar1,
#menu:hover .bar2,
#menu:hover .bar3 {
  background-color: #0073FF;
  transition: 0.5s ease;
}

.change .bar1 {
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: rotate(45deg) translate(-8px, -8px);
}

/***/
/*
.changeNav +.main-nav li{
    opacity: 1;
    display: block;
    transform:translateY(0px);
    transition: all 0.3s ease;
}
*/
.changeNav {
  pointer-events: all;
  height: 100vh;
  opacity: 1;
  transform: translateY(0em);
  transition: 0.3s ease-in-out;
}

.main-nav li a {
  color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 180%;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  background-clip: text;
  position: relative;
  background-position-x: 5%;
  background-image: linear-gradient(35deg, #0073FF, #7D03DB);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.7s ease;
}

.main-nav li a:hover,
.main-nav li a:active {
  background-position-x: 70%;
  transition: 0.7s ease;
}

#firstSection {
  padding-top: 200px;
}

.whiteSection h1 {
  margin-bottom: 15px;
  font-size: 200%;
  text-align: center;
  background-image: linear-gradient(-35deg, #000, #000, #7D03DB, #0073FF);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.whiteSection hr {
  border: none;
  height: 3px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #7D03DB, rgba(0, 0, 0, 0));
  width: 65%;
  margin: 0 auto;
}

.whiteSection .left {
  background-image: linear-gradient(to right, #000, rgba(0, 0, 0, 0));
}

.whiteSection .right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #000);
}

.blackSection {
  background-image: linear-gradient(#262626, #171717);
  padding: 40px 0;
  height: 550px;
  box-shadow: 0px 0px 50px 0px #000;
}

.blackSection h1 {
  position: relative;
  margin-bottom: 15px;
  font-size: 200%;
  text-align: center;
  vertical-align: top;
  background-image: linear-gradient(35deg, #fff, #0073FF, #7D03DB 75%);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blackSection hr {
  border: none;
  height: 3px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #0073FF, rgba(0, 0, 0, 0));
  width: 65%;
  margin: 0 auto 10px;
  line-height: 10px;
}

/*//////////////////////////////////////////////////////
                    Prezentare section
//////////////////////////////////////////////////////*/
#prezentareBox {
  transform: translateY(100px);
  opacity: 0;
  transition: 0.5s ease-out;
}

.prezentareSection {
  padding: 15% 0 10% 0;
}

.prezentareSection h2 {
  margin-top: 20px;
  font-size: 100%;
  text-align: center;
  background-image: linear-gradient(-35deg, #000, #000, #7D03DB, #0073FF);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.whatDev img {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 700px;
  height: 500px;
}

#whatDev {
  transform: translateY(100px);
  opacity: 0;
  transition: 0.5s ease-out;
}

#whyDevBox1, #whyDevBox2, #whyDevBox3, #whyDevBox4 {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.5s ease-out;
}

#whyDevBox1 {
  transition-delay: 0.15s;
}

#whyDevBox2 {
  transition-delay: 0.3s;
}

#whyDevBox3 {
  transition-delay: 0.45s;
}

#whyDevBox4 {
  transition-delay: 0.6s;
}

#whyDev {
  transform: translateY(100px);
  opacity: 0;
  transition: 0.5s ease-out;
}

.whyDevContainer {
  display: flex;
  width: 95%;
  height: auto;
  margin: 50px auto;
  position: relative;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.whyDevBox {
  z-index: 1;
  position: relative;
  width: 400px;
  height: 600px;
  background: #fff;
  opacity: 1;
  transition: 0.3s ease-out;
  animation-delay: 0.15s;
  margin: 0 10px;
}

.whyDevBox::before {
  z-index: 0;
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  transform: skewX(2deg) skewY(4deg);
  background-image: linear-gradient(45deg, #7D03DB, #0073FF);
  background-size: 100%;
  background-position: center;
  transition: 0.5s ease;
}

.whyDevBox:hover::before,
.whyDevBox:hover:after {
  transform: skewX(-2deg) skewY(-4deg);
  transition: 0.5s ease;
}

.whyDevBox2 {
  z-index: 1;
  position: relative;
  width: 400px;
  height: 600px;
  background: #fff;
  opacity: 1;
  margin: 0 10px;
  transition: 0.3s ease-out;
  animation-delay: 0.15s;
}

.whyDevBox2::before {
  content: '';
  z-index: 0;
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  transform: skewX(-2deg) skewY(-4deg);
  background-image: linear-gradient(45deg, #7D03DB, #0073FF);
  background-size: 100%;
  background-position: center;
  transition: 0.5s ease;
}

.whyDevBox2:hover::before,
.whyDevBox2:hover:after {
  transform: skewX(2deg) skewY(4deg);
  transition: 0.5s ease;
}

.whyDevBoxint {
  z-index: 1;
  position: relative;
  width: 400px;
  height: 600px;
  background: #fff;
  opacity: 1;
  transition: 0.3s ease-out;
  animation-delay: 0.15s;
  margin: 0 10px;
}

.whyDevBoxint::before {
  content: '';
  z-index: 0;
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  transform: skewX(1deg) skewY(2deg);
  background-image: linear-gradient(45deg, #7D03DB, #0073FF);
  background-size: 100%;
  background-position: center;
  transition: 0.5s ease;
}

.whyDevBoxint:hover::before,
.whyDevBoxint:hover:after {
  transform: skewX(-1deg) skewY(-2deg);
  transition: 0.5s ease;
}

.whyDevBox2int {
  position: relative;
  z-index: 1;
  width: 400px;
  height: 600px;
  background: #fff;
  opacity: 1;
  transition: 0.3s ease-out;
  animation-delay: 0.15s;
  margin: 0 10px;
}

.whyDevBox2int::before {
  content: '';
  z-index: 0;
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  transform: skewX(-1deg) skewY(-2deg);
  background-image: linear-gradient(45deg, #7D03DB, #0073FF);
  background-size: 100%;
  background-position: center;
  transition: 0.5s ease;
}

.whyDevBox2int:hover::before,
.whyDevBox2int:hover:after {
  transform: skewX(1deg) skewY(2deg);
  transition: 0.5s ease;
}

.whyDevBoxContent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#262626, #171717);
  z-index: 1;
  padding: 30px;
}

.whyDevBoxContent h2 {
  position: relative;
  height: 80px;
  margin: 10px auto;
  font-size: 100%;
  text-align: center;
  background-image: linear-gradient(35deg, #0073FF 50%, #7D03DB);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.whyDevBoxContent p {
  color: #0073ff;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  word-wrap: break-word;
  font-size: 18px;
}

.whyDevBoxContent img {
  position: relative;
  display: block;
  margin: 5px auto 0px;
  width: 100px;
  height: 100px;
}

.ourGoalVideo {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 55%;
}

/*//////////////////////////////////////////////////////
                    Available section
//////////////////////////////////////////////////////*/
.availableSection h1 {
  margin-bottom: 15px;
  font-size: 200%;
  text-align: center;
  background-image: linear-gradient(35deg, #FFF, #0073FF, #7D03DB 70%);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.availableSection hr {
  border: none;
  height: 3px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #fff, rgba(0, 0, 0, 0));
  width: 65%;
  margin: 0 auto 10px;
}

.availableSection {
  background-image: linear-gradient(#262626, #171717);
  padding: 40px 0;
  height: 500px;
}

.availableBox {
  width: max-content;
  margin: 80px auto 0;
}

.availableBox img {
  width: 500px;
  height: auto;
}

/*//////////////////////////////////////////////////////
                    Objectives section
//////////////////////////////////////////////////////*/
.objectivesSection {
  height: 500px;
}

.objectives::after {
  content: '|';
  color: #000;
  animation: blink 500ms  infinite alternate;
  -webkit-animation: blink 500ms  infinite alternate;
}

@-webkit-keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.objectives {
  width: 300px;
  font-family: monospace;
  font-size: 200%;
  font-weight: 600;
  margin: 200px auto 0;
  opacity: 0;
  position: relative;
  z-index: 0;
  color: #0073FF;
}

.objectivesPurple {
  color: #7D03DB;
}

.objectivesBlack {
  color: #000;
}

/*//////////////////////////////////////////////////////
                    Feedback section
//////////////////////////////////////////////////////*/
.feedbackBoxMenu {
  display: flex;
  position: relative;
  margin: 50px auto 0;
  align-items: center;
}

.feedbackBtn {
  text-align: center;
  color: #fff;
  font-size: 300%;
  cursor: pointer;
  width: 5%;
  display: inline-block;
  position: relative;
  transition: 0.3s ease;
  z-index: 3;
}

.feedbackBtn:hover {
  color: #7D03DB;
  transition: 0.3s ease;
}

.feedbackBox {
  position: relative;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  width: 100%;
  padding: 0;
}

.feedbacks {
  width: 100vw;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.feedbacksContent {
  width: 100vw;
  display: flex;
  justify-content: center;
}

.feedbacksContent p {
  color: #7D03DB;
  font-size: 170%;
  font-family: monospace;
  font-weight: 800;
}

.feedbacksContent .blue {
  color: #0073FF;
  margin-left: 176px;
  word-wrap: break-word;
  width: 500px;
}

.feedbacksContent p span {
  color: #fff;
}

.feedbackSection h2 {
  font-size: 100%;
  font-family: arial;
  color: #fff;
  text-align: center;
}

/*//////////////////////////////////////////////////////
                    Tech section
//////////////////////////////////////////////////////*/
.techBox {
  margin: 20px auto;
  margin-bottom: 0;
  width: 90%;
  height: 300px;
  display: flex;
  justify-content: center;
  vertical-align: middle;
}

.techImg {
  position: relative;
  vertical-align: middle;
  width: 200px;
  height: 200px;
  margin: 0 50px;
  display: inline-block;
  z-index: 0;
  text-decoration: none;
}

.techImg a {
  text-decoration: none;
  overflow: hidden;
}

.techImg h2 {
  color: #fff;
  margin-top: 20px;
  width: 200px;
  text-align: center;
  font-size: 100%;
  text-decoration: none;
  opacity: 0;
  transition: 0.5s ease-in-out;
  position: relative;
}

.techBox div img:hover + h2 {
  opacity: 1;
  transition: 0.5s ease-in-out;
}

.techBox div img {
  width: 80%;
  margin: 10%;
  transition: 0.3s ease-in-out;
}

.techBox div img:hover {
  width: 100%;
  margin: 0;
  transition: 0.3s ease-in-out;
}

.techBoxEdge {
  position: absolute;
  display: block;
  background-image: linear-gradient(to right, #262626 10%, transparent 30%, transparent 70%, #262626 90%);
  width: 100%;
  height: 270px;
  z-index: 2;
}

.slide {
  display: none;
}

#Slide {
  transition: 0.3s ease;
}

.dot {
  width: 15px;
  height: 15px;
  margin: 0 2px;
  border-radius: 50%;
  background-color: #fff;
  display: inline-block;
  transition: 0.6s ease-in-out;
  cursor: pointer;
}

.active {
  background-color: #7D03DB;
}

/*//////////////////////////////////////////////////////
                    Atuu section
//////////////////////////////////////////////////////*/
#atuuBox {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.5s ease-out;
}

#atuuDiv1 {
  opacity: 0;
  transform: translateY(80px);
  transition: 0.3s ease-out;
  transition-delay: 0.5s;
}

#atuuDiv2 {
  opacity: 0;
  transform: translateY(80px);
  transition: 0.3s ease-out;
  transition-delay: 0.8s;
}

#atuuDiv3 {
  opacity: 0;
  transform: translateY(80px);
  transition: 0.3s ease-out;
  transition-delay: 1.1s;
}

.atuu {
  padding-top: 10%;
  padding-bottom: 7%;
  margin-bottom: 20px;
}

.atuuBox {
  margin-top: 50px;
  width: 100%;
  text-align: center;
  padding: 30px 0;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}

.atuuDiv {
  margin: 0 auto;
  width: 400px;
  height: 200px;
  display: flex;
  flex-flow: row;
  text-align: left;
  vertical-align: middle;
}

.atuuBox img {
  width: 120px;
  height: 120px;
  margin: 0 10px;
}

.atuuBoxText {
  width: 250px;
  height: auto;
}

/*//////////////////////////////////////////////////////
                    Offer section
//////////////////////////////////////////////////////*/
.offerSection h2 {
  font-size: 100%;
  font-family: arial;
  text-align: center;
  color: #fff;
}

.offerSection {
  height: auto;
  position: relative;
  z-index: 0;
  padding: 80px 0 20px 0;
}

.offerForm {
  width: 800px;
  margin: 0 auto;
  position: relative;
  display: block;
}

.label {
  font-family: Arial;
  position: relative;
  display: inline-block;
  width: 150px;
  color: #fff;
  text-align: right;
}

.formLine {
  display: block;
}

:focus {
  outline: none;
}

.container {
  margin: 0 auto;
  height: 65px;
  display: inline-block;
}

.formDiv {
  width: fit-content;
  margin: 0 auto;
}

.textareaDiv {
  width: fit-content;
  margin: 40px auto 0;
}

.containterTextarea {
  margin: 0 auto;
  vertical-align: top;
  position: relative;
  display: inline-block;
}

.colInput {
  float: left;
  width: 500px;
  margin: 40px 3%;
  position: relative;
}

.colTextarea {
  display: inline-block;
  width: 500px;
  height: 100px;
  margin: 0px 3%;
  position: relative;
}

/* necessary to give position: relative to parent. */
input[type="text"] {
  position: relative;
  font: 15px/24px Arial, sans-serif;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  outline: none;
  border: 0;
}

input[type="email"] {
  position: relative;
  font: 15px/24px Arial, sans-serif;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  outline: none;
  border: 0;
}

textarea {
  position: relative;
  font: 15px/24px Arial, sans-serif;
  color: #fff;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  outline: none;
  border: 0;
  resize: none;
}

.effect-9 {
  border: 1px solid transparent;
  padding: 7px 14px 9px;
  transition: 0.4s;
}

.effect-9 ~ .focus-border:before,
.effect-9 ~ .focus-border:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-image: linear-gradient(35deg, #3399FF, #7D03DB);
  transition: 0.2s;
  transition-delay: 0.2s;
}

.effect-9 ~ .focus-border:after {
  top: auto;
  bottom: 0;
  right: auto;
  left: 0;
  transition-delay: 0.6s;
}

.effect-9 ~ .focus-border i:before {
  background-color: #3399FF;
}

.effect-9 ~ .focus-border i:after {
  background-color: #7D03DB;
}

.effect-9 ~ .focus-border i:before,
.effect-9 ~ .focus-border i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  transition: 0.2s;
}

.effect-9 ~ .focus-border i:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  transition-delay: 0.4s;
}

.effect-9:focus ~ .focus-border:before,
.effect-9:focus ~ .focus-border:after {
  width: 100%;
  transition: 0.2s;
  transition-delay: 0.6s;
}

.effect-9:focus ~ .focus-border:after {
  transition-delay: 0.2s;
}

.effect-9:focus ~ .focus-border i:before,
.effect-9:focus ~ .focus-border i:after {
  height: 100%;
  transition: 0.2s;
}

.effect-9:focus ~ .focus-border i:after {
  transition-delay: 0.4s;
}

.textareaFormLine {
  margin-top: 15px;
}

.button {
  position: relative;
  display: block;
  background: none;
  border: 0;
  box-sizing: border-box;
  margin: 20px auto;
  padding: 20px 50px;
  font-size: 120%;
  box-shadow: inset 0 0 0 2px transparent;
  color: #fff;
  vertical-align: middle;
}

.button::before,
.button::after {
  box-sizing: inherit;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  transition: width 0.5s ease, height 0.5s ease;
}

.draw {
  transition: 0.5s;
}

.draw::before {
  border: 2px solid transparent;
  width: 0;
  height: 0;
  transition: height 0.25s ease-in 0.5s, width 0.25s ease-in 0.75s, border 0s ease-in 1s;
}

.draw::after {
  border: 2px solid transparent;
  width: 0;
  height: 0;
  transition: height 0.25s ease-in 0s, width 0.25s ease-in 0.25s, border 0s ease-in 0.5s;
}

.draw::before {
  top: 0;
  left: 0;
}

.draw::after {
  bottom: 0;
  right: 0;
}

.draw:hover {
  background-image: linear-gradient(35deg, #0073FF, #7D03DB 85%);
  -webkit-background-clip: text;
  color: transparent;
}

.draw:hover::before,
.draw:hover:after {
  width: 100%;
  height: 100%;
}

.draw:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.draw:hover::after {
  border-bottom-color: #fff;
  border-left-color: #fff;
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}

/*//////////////////////////////////////////////////////
                    Partners Section
//////////////////////////////////////////////////////*/
.partnersSection {
  padding: 50px 0;
}

.partnersBox {
  position: relative;
  margin: 10px auto;
  display: flex;
  flex-flow: row;
  width: 90%;
  height: auto;
  overflow-x: hidden;
  justify-content: space-evenly;
}

.partnerDiv {
  padding: 10px;
}

.partnerDiv img:hover {
  filter: grayscale(0);
}

.partnerDiv img {
  width: 150px;
  height: 150px;
  filter: grayscale(1);
  transition: 0.3s ease-out;
}

/*//////////////////////////////////////////////////////
                    Footer
//////////////////////////////////////////////////////*/
footer {
  background-image: linear-gradient(#262626, #171717);
  bottom: 0;
  box-shadow: 0px 0px 50px 0px #000;
  padding: 30px 0 0 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

footer hr {
  border: none;
  height: 3px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #0073FF, rgba(0, 0, 0, 0));
  width: 65%;
  margin: 15px auto 15px;
  line-height: 10px;
}

.footerRow {
  width: 800px;
  position: relative;
  display: flex;
  flex-direction: row;
  margin: 15px auto 30px;
  align-items: center;
  justify-content: space-between;
}

.footerRowTop {
  width: 800px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: 15px auto 30px;
  justify-content: space-between;
}

.footerCol {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.footerCol div h2 {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: right;
}

.footerCol div h3 {
  text-align: right;
  margin-bottom: 7px;
  font-size: 1em;
}

.footerCol h2, .footerCol h3 {
  background-image: linear-gradient(35deg, #0073FF, #7D03DB 75%);
  background-attachment: fixed;
  -webkit-background-clip: text;
  color: transparent;
}

.footerNav {
  text-align: left;
}

.footerNav ul li {
  display: inline-block;
  list-style: none;
  margin: 0 0 0 25px;
}

/*.footerNav ul li a{
    text-decoration: none;
    transition: 0.2s ease-in-out;
    color:#0073FF;
}*/
.logoFooterBox {
  display: block;
  position: relative;
  margin: 0 auto;
  width: max-content;
}

.logoFooter {
  position: relative;
  width: 200px;
  margin: 0 auto;
}

.footerNav ul li a {
  text-align: center;
  font-size: 22px;
  text-decoration: none;
  background-clip: text;
  position: relative;
  color: transparent;
  background-position-x: 10%;
  background-image: linear-gradient(35deg, #0073FF, #7D03DB);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease;
}

.footerNav ul li a:hover {
  background-position-x: 70%;
  transition: 0.3s ease;
}

.footerData {
  font-size: 18px;
  text-align: left;
  color: transparent;
  display: flex;
  background-image: linear-gradient(35deg, #0073FF, #7D03DB);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  height: 100%;
}

.footerData div {
  display: flex;
  height: max-content;
  flex-direction: row;
  align-items: center;
}

.footerData img {
  width: 25px;
  height: auto;
}

.footerData a {
  text-decoration: none;
  color: transparent;
  background-position-x: 10%;
  background-image: linear-gradient(35deg, #0073FF, #7D03DB);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease;
}

.footerData a:hover {
  background-position-x: 80%;
  transition: 0.3s ease;
}

.footerHeroText {
  position: relative;
  display: block;
  background-image: linear-gradient(35deg, #0073FF, #7D03DB 75%);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#footerSocial {
  display: inline-block;
  position: relative;
}

#footerSocial img {
  display: inline-block;
}

.newsletterForm {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.newsletterForm .container {
  width: 100%;
  margin: 0;
}

.newsletterForm .container .colInput {
  width: 100%;
  height: 35px;
  margin: 0;
}

.newsletterForm .container .colInput input {
  width: 100%;
  height: 35px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  outline: none;
  border: none;
  border-radius: 2px 0 0 2px;
}

.newsletterForm .button {
  background-color: rgba(0, 0, 0, 0.5);
  height: 35px;
  width: 125px;
  margin: 0;
  font-size: 20px;
  padding: 0 15px;
}

.newsletterForm .draw {
  background-color: rgba(0, 0, 0, 0.5);
}

.newsletterForm .draw:hover {
  background-color: rgba(0, 0, 0, 0.6);
  background-image: none;
  -webkit-background-clip: border-box;
}

.newsletterForm .draw span {
  color: transparent;
  background-size: 200%;
  background-position-x: 0;
  background-image: linear-gradient(35deg, #0073FF, #7D03DB 85%);
  -webkit-background-clip: text;
}

.copyrights span{
    position: relative;
}

.copyrights a{
    text-decoration: none;
    color:#fff
}
.copyrights a:after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 2px;
    width: 60%;
    background-color: #fff;
    transform-origin: bottom center;
    transform: scaleX(0);
    transition: 0.3s ease;
}
.copyrights a:hover::after{
    transform: scaleX(1);
    height: 2px;
}
.copyrights p{
    color:#fff;
    font-size: 18px;
}

#sitemapbtn {
  text-align: left;
  width: 100%;
  font-size: 15px;
  text-decoration: none;
  color: transparent;
  background-position-x: 10%;
  background-image: linear-gradient(35deg, #0073FF, #7D03DB);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease;
}

#sitemapbtn:hover {
  background-position-x: 80%;
  transition: 0.3s ease;
}

/*////////////////////////////////////////////////////////
                    Team                
////////////////////////////////////////////////////////*/
#teamBox {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.5s ease-out;
}

#teamBoxText {
  margin-top: 20px;
  text-align: center;
  background-image: linear-gradient(-35deg, #000, #000, #7D03DB, #0073FF);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.teamSection {
  padding-top: 75px;
}

.teamSection hr {
  border: none;
  height: 3px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #000, rgba(0, 0, 0, 0));
  width: 65%;
  margin: 0 auto;
}

.teamSection h1 {
  margin-bottom: 15px;
  font-size: 200%;
  text-align: center;
  background-image: linear-gradient(-35deg, #000, #7D03DB, #0073FF);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#teamSectionh2 {
  margin-top: 20px;
  font-size: 100%;
  text-align: center;
  background-image: linear-gradient(-35deg, #000, #000, #7D03DB, #0073FF);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: linear-gradient(#262626, #171717);
  background: #fff;
  word-wrap: break-word;
}

.statusBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
}

.statusBox h3 {
  margin-left: 10px;
}

.teamPpl {
  position: relative;
  width: 400px;
  height: 600px;
  background: #fff;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 50px;
  margin-right: 50px;
  opacity: 0;
  transform: translateY(100px);
  transition: 0.3s ease-out;
  animation-delay: 0.15s;
}

.teamPpl::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  transform: skewX(2deg) skewY(4deg);
  background-image: linear-gradient(45deg, #7D03DB, #0073FF);
  transition: 0.5s ease;
}

.teamPpl::after {
  content: '';
  opacity: 0.7;
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  transform: skewX(2deg) skewY(4deg);
  background-image: linear-gradient(45deg, #7D03DB, #0073FF);
  filter: blur(50px);
  transition: 0.5s ease;
}

.teamPpl:hover::before,
.teamPpl:hover:after {
  transform: skewX(-2deg) skewY(-4deg);
  transition: 0.5s ease;
}

.span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#262626, #171717);
  z-index: 1;
  padding: 30px;
}

.techStackLogo {
  width: 60px;
  margin: 7px 7px;
}

.teamAvatar {
  overflow: hidden;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin: 1px 2px;
  padding: 1px;
  float: right;
  border: 5px solid transparent;
  border-radius: 300px;
  background-image: linear-gradient(#7D03DB, #0073FF);
  background-origin: border-box;
  background-clip: border-box,content-box;
}

.teamAvatarImg {
  width: 110%;
  height: auto;
  margin: 0;
}

.techStackText {
  text-align: center;
  background-image: linear-gradient(-35deg, #7D03DB, #0073FF);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.techStack {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.teamName {
  margin-bottom: 2px;
  background-image: linear-gradient(-35deg, #7D03DB, #0073FF);
  background-attachment: fixed;
  word-wrap: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.teamFunct {
  margin-bottom: 7px;
  background-image: linear-gradient(-35deg, #7D03DB, #0073FF);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 100%;
}

.teamDesc {
  color: #0073ff;
  margin-top: 5px;
  margin-bottom: 7px;
}

/*////////////////////////////////////////////////////////
                    About us                
////////////////////////////////////////////////////////*/
#aboutUsBox {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.5s ease-out;
}

#typewriter {
  height: 300px;
}

.aboutUsSection {
  padding: 75px 0;
}

.aboutUsSection .objectives {
  margin: 100px auto 0;
}

.aboutUsSection hr {
  border: none;
  height: 3px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #000, rgba(0, 0, 0, 0));
  width: 65%;
  margin: 0 auto;
}

.aboutUsSection h1 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 200%;
  text-align: center;
  background-image: linear-gradient(-35deg, #000, #7D03DB, #0073FF);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aboutUsSection h2 {
  margin-top: 20px;
  font-size: 100%;
  text-align: center;
  background-image: linear-gradient(-35deg, #000, #000, #7D03DB, #0073FF);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*////////////////////////////////////////////////////////
                Our story section       */
.ourStorySection {
  height: auto;
  margin-bottom: 50px;
}

#ourStoryBox {
  opacity: 1;
  transition: 0.5s ease-out;
}

#ourStoryBox h2 {
  margin-top: 20px;
  font-size: 100%;
  text-align: center;
  background-image: linear-gradient(-35deg, #000, #000, #7D03DB, #0073FF);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*////////////////////////////////////////////////////////
                    Services                
////////////////////////////////////////////////////////*/
.serviceSection {
  padding: 75px 0;
}

.serviceSection h2 {
  margin-top: 20px;
  font-size: 100%;
  text-align: center;
  background-image: linear-gradient(-35deg, #000, #000, #7D03DB, #0073FF);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#serviceMainBox {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.5s ease-out;
}

#serviceBox1, #serviceBox2, #serviceBox3, #serviceBox4, #serviceBox5 {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.3s ease-out;
}

#serviceBox1 {
  transition-delay: 0.3s;
}

#serviceBox2 {
  transition-delay: 0.45s;
}

#serviceBox3 {
  transition-delay: 0.6s;
}

#serviceBox4 {
  transition-delay: 0.75s;
}

.service {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: auto;
}

.serviceBox {
  display: inline-block;
  box-sizing: border-box;
  align-content: center;
  width: 600px;
  height: 250px;
  margin: 40px 55px;
}

.serviceBox img {
  position: relative;
  margin: 10px 10px;
  width: 120px;
  height: 120px;
  display: inline-block;
  float: left;
}

.serviceBoxText {
  width: 400px;
  height: 290px;
  display: inline-block;
  text-align: justify;
}

.serviceBox h2 {
  width: 100%;
  font-size: 150%;
  text-align: left;
  margin-bottom: 5px;
}

.serviceBox p {
  width: 100%;
  font-size: 100%;
}

/*////////////////////////////////////////////////////////
                    Contact                
////////////////////////////////////////////////////////*/
.contactSection {
  padding-top: 75px;
  padding-bottom: 50px;
}

.contactSection hr {
  margin-bottom: 30px;
}

.contactSection h3 {
  text-align: center;
  background-image: linear-gradient(-35deg, #000, #000, #7D03DB, #0073FF);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position-x: 0%;
}

.contactSection h3 a {
  text-decoration: none;
  background-image: linear-gradient(-35deg, #000, #000, #7D03DB, #0073FF);
  background-attachment: fixed;
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position-x: 30%;
  transition: 0.3s ease-out;
}

.contactSection h3 a:hover {
  background-position-x: -25%;
  transition: 0.3s ease-out;
}

/*//// feedback /////////////////////*/
@keyframes backgroundMoveBody {
  from {
    background-position-x: 10%;
  }
  to {
    background-position-x: 100%;
  }
}

#feedbackBody {
  display: flex;
  align-content: center;
  justify-content: center;
  background-image: linear-gradient(-35deg, #7D03DB 20%, #0073FF, #7D03DB 110%);
  background-size: 300%;
  background-repeat: no-repeat;
  background-position: center;
  animation: backgroundMoveBody 10s cubic-bezier(0.26, -0.04, 0.6, 0.99) infinite alternate;
  z-index: -1;
}

#feedbackFormBox {
  background-color: rgba(0, 0, 0, 0.7);
  width: 1000px;
  padding: 50px 0;
  border-radius: 25px;
  transition: 0.3s ease-out;
}

#feedbackFormBox h1, #feedbackFormBox h2 {
  background-image: linear-gradient(35deg, #fff, #0073FF, #7D03DB 75%);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 150%;
  text-align: center;
}

.feedbackCol {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

#feedbackLogo {
  width: 250px;
}

/*///////////////////////////////////////////
    Site map
/////////////////////////////////////////*/
#sitemap {
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(#262626, #171717);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}

#sitemapLogo {
  width: 250px;
}

#sitemapLogo img {
  width: 100%;
}

#sitemapList {
  text-align: center;
}

#sitemapList h2 {
  font-weight: 400;
  font-size: 170%;
  color: transparent;
  background-image: linear-gradient(35deg, #0073FF, #7D03DB);
  background-clip: text;
  -webkit-background-clip: text;
  text-transform: uppercase;
}

#sitemapList ul {
  text-align: center;
}

#sitemapList ul li {
  list-style: none;
  margin: 20px 0;
}

#sitemapList ul li a {
  color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 150%;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  background-clip: text;
  position: relative;
  background-position-x: 5%;
  background-image: linear-gradient(35deg, #0073FF, #7D03DB);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.7s ease;
}

#sitemapList ul li a:hover,
#sitemapList ul li a:active {
  background-position-x: 70%;
  transition: 0.7s ease;
}

/* mentainance //////////////*/
/*
.tempIndexHtml{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-image:linear-gradient(rgb(38, 38, 38),rgb(23, 23, 23));
}

.tempIndexHtml h1{
    position: relative;
    transition: 0.3s ease;
    font-size: 60px;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-image:linear-gradient(35deg,#fff,#0073FF, #7D03DB 75%);
    background-attachment:fixed;
    -webkit-background-clip: text;
    -webkit-text-fill-color:transparent;
}
.tempIndexHtml h2{
    position: relative;
    transition: 0.3s ease;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-image:linear-gradient(35deg,#fff,#0073FF, #7D03DB 75%);
    background-attachment:fixed;
    -webkit-background-clip: text;
    -webkit-text-fill-color:transparent;
}
.tempIndexHtml a{
    position: relative;
    transition: 0.3s ease;
    text-align: center;
    font-size: 40px;
    width: max-content;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-image:linear-gradient(35deg,#fff,#0073FF, #7D03DB 75%);
    background-attachment:fixed;
    -webkit-background-clip: text;
    -webkit-text-fill-color:transparent;
    border: 5px solid transparent;
    transition: 0.5s ease;
}
.tempIndexHtml a:hover{
    padding: 0 0 10px 0;
    
    border-bottom: 5px solid #0367e2;
    transition: 0.5s ease;
}
.tempIndex{
    display: block;
    justify-content: center;
    width: 100%;
    height: 100vh;
}
.logo{
    display: block;
    position: relative;
    width: 300px;
    margin: 50px auto 30px;
}


.box{
    position: relative;
    width: 850px;
    height: 700px;
    background: #fff;
    display: block;
    margin:100px auto 0;
}
.box::before{
    content:'';
    position: absolute;
    top:-5px;
    left:-5px;
    right: -5px;
    bottom:-5px;
    transform: skewX(2deg) skewY(4deg);
    background-image: linear-gradient(45deg ,#7D03DB, #0073FF);
    
}
.box::after{
    content:'';
    opacity: 0.7;
    position: absolute;
    top:-5px;
    left:-5px;
    right: -5px;
    bottom: -5px;
    transform: skewX(2deg) skewY(4deg);
    background-image: linear-gradient(45deg,#7D03DB, #0073FF);
    filter: blur(20px);
}*/
