/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

body {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: Arial, sans-serif;
}

.landing {
  background-image: url(bg4.jpg);
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.intro {
  font-size: 3rem;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.waviy {
  position: relative;
}

.waviy span {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  color: #fff;
  text-transform: uppercase;
  -webkit-animation: textclip 2s linear infinite, flip 2s infinite;
          animation: textclip 2s linear infinite, flip 2s infinite;
}

@-webkit-keyframes flip {
  0%, 80% {
      -webkit-transform: rotateY(360deg);
              transform: rotateY(360deg);
  }
}

@keyframes flip {
  0%, 80% {
      -webkit-transform: rotateY(360deg);
              transform: rotateY(360deg);
  }
}

@-webkit-keyframes textclip {
  to {
      background-position: 200% center;
  }
}

@keyframes textclip {
  to {
      background-position: 200% center;
  }
}

.projectabout {
  width: 80%;
  color: aqua;
}

.containers {
  height: auto;
  position: relative;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #4D194D;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.project-card {
  background-color: #fff;
  width: calc(50% - 10px);
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-details {
  padding: 20px;
}

.project-title {
  margin: 0;
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
}

.project-description {
  color: #666;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

.txt {
  margin-top: 5%;
  font-size: 1.5rem;
  color: #0bf8d9;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80vh;
  background: none;
  width: 100vw;
}

.card {
  margin-top: 10%;
  max-width: 70vw;
}

.containerfoot {
  width: 60vw;
  background-color: #03045e;
}

.plus {
  font-size: 3rem;
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  color: #0bf8d9;
}

.plus:hover {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  scale: 1.1;
  color: #03ee3e;
}

.bgvid {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  overflow: hidden;
}

#bgVideo {
  min-width: 100%;
  min-height: 100%;
}

.error {
  color: red;
  font-size: 0.8em;
  font-style: italic;
  margin-top: 5px;
  display: block;
}