@import url('https://fonts.googleapis.com/css?family=Muli');

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* Start Variables */

:root {
  --main-color: #0084D6;
  --sec-color: #343A40;
  --back-color: #0C0A09;
  --text-color: #B0B0B0;
  --main-transition: 0.5s;
  --padding-top: 50px;
  --padding-bottom: 50px;
}

/* End Variables */

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Cairo", sans-serif;
  overflow-x: hidden !important;
  background-color: #222429;
  background-image: url(../media/backimg.png);
  margin: 0;
}

/* Start container */

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

/* End container */

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* img {
  width: 50px;
  height: 50px;
} */

p {
  color: var(--text-color);
}

/* ****************************** */

.menu {
  display: none;
  flex-direction: column;
  position: relative;
  height: 80px;
  width: 35px;
  border: none;
  outline: none;
  background-color: transparent;
  /* margin-right: 30px; */
  cursor: pointer;
  justify-content: center;
  gap: 2px;
}

@media (max-width: 768px) {
  .menu {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}

.menu span {
  display: block;
  width: 27px;
  height: 2px;
  margin: 3px auto;
  background-color: black;
  transition: all 0.3s ease-in-out;
}

.menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(-1px, 15px);
  background-color: red;
}

.menu.active span:nth-child(2) {
  opacity: 0;
}

.menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(-1px, -15px);
  background-color: red;
}

/* **************************** */

.btn {
  width: fit-content;
  background-color: #0c4f8c;
  padding: 7px 50px;
  color: white;
  border-radius: 3px;
  position: relative;
  transition: 0.5s;
  font-weight: bold;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .btn {
    padding: 7px 29px;
  }
}

.btn i {
  position: relative;
}

.btn:hover i {
  animation-name: rot;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

.btn span {
  position: relative;
  text-transform: capitalize;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  transition: var(--main-transition);
  width: 6%;
  background-color: rgb(53 55 66 / 20%);
  height: 100%;
  left: 0;
}

.btn:hover::before {
  width: 100%;
}

.color {
  position: fixed !important;
  width: 100%;
  z-index: 1000;
  background-color: white;
  transition: var(--main-transition);
}

.drop {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 768px) {
  .drop {
    display: none;
  }
}

.drop .dropMenu {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  height: 43px;
  padding: 0 20px;
  position: absolute;
  top: calc(100% + 10px);
  background-color: #5ebdba;
  border-radius: 5px;
}

.drop a {
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.drop a .lang {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

.drop a .drop-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7px;
  transform: translateX(-5px);
  transition: 0.2s;
}

.drop.active .dropMenu {
  display: flex;
}

.drop.active .drop-icon {
  transform: translateX(-5px) rotate(-90deg);
}

.mLinks {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 768px) {
  .mLinks {
    gap: 0;
    /* display: none; */
  }
}

/* End Global Rules */

/* Start Nav */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav img.logo {
  width: 100%;
  height: 40px;
}

@media (max-width: 768px) {
  nav img.logo {
    width: 100px;
  }
}

/* End Nav */

p {
  text-transform: uppercase;
  letter-spacing: .5em;
  display: inline-block;
  border: 4px double rgba(255, 255, 255, .25);
  border-width: 4px 0;
  padding: 1.5em 0em;
  position: absolute;
  top: 39%;
  left: 50%;
  width: 40em;
  margin: 0 0 0 -20em;

  span {

    font: 700 4em/1 "Oswald", sans-serif;
    letter-spacing: 0;
    padding: .25em 0 .325em;
    display: block;
    margin: 0 auto;
    text-shadow: 0 0 80px rgba(255, 255, 255, .5);

    /* Clip Background Image */

    background: url(https://i.ibb.co/RDTnNrT/animated-text-fill.png) repeat-y;
    -webkit-background-clip: text;
    background-clip: text;

    /* Animate Background Image */

    -webkit-text-fill-color: transparent;
    -webkit-animation: aitf 80s linear infinite;

    /* Activate hardware acceleration for smoother animations */

    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;

  }
}

/* Animate Background Image */

@-webkit-keyframes aitf {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.head {
  position: relative;
  z-index: 100;
  top: 0;
  padding: 15px 0;
  box-shadow: 0px 0px 10px #ffffff59;
}

.head .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Text Animation */

/* Import Font */
.header {
  border-bottom: 5px solid #0c4f8c;
  position: relative;
  height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .container {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.header .animation {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: -26%;
  transform: translate(-22%, 0%);
}

@media (max-width: 768px) {
  .header .animation {
    left: -665%;
  }
}

.text {
  color: #fff;
  font-size: 5rem;
  font-weight: 900;
  display: inline-block;
  position: absolute;
  bottom: 0;
  animation: text 1050ms ease-in infinite;
  transform: translateZ(0);
}

.text-w {
  left: 1.2rem;
  transform: translate3d(0, -4rem, 0);
  animation: text-w 1050ms ease-in infinite;
}

@media (max-width: 768px) {
  .text-w{
    left: 1.2rem;
  }
}

.text-a {
  left: 5.4rem;
  animation-delay: 150ms;
}
@media (max-width: 768px) {
  .text-a{
    left: 4.8rem;
  }
}

.text-v {
  left: 9.6rem;
  animation-delay: 230ms;
}
@media (max-width: 768px) {
  .text-v{
    left: 8.1rem;
  }
}

.text-e1 {
  left: 13.2rem;
  animation-delay: 310ms;
}
@media (max-width: 768px) {
  .text-e1{
    left: 12.1rem;
  }
}

.text-e2 {
  left: 15.6rem;
  animation-delay: 390ms;
}
@media (max-width: 768px) {
  .text-e2{
    left: 14.2rem;
  }
}

.text-r {
  left: 19rem;
  animation-delay: 470ms;
}
@media (max-width: 768px) {
  .text-r{
    left: 17.2rem;
  }
}

.text-s {
  left: 22.4rem;
  animation-delay: 550ms;
}
@media (max-width: 768px) {
  .text-s{
    left: 20.5rem;
  }
}

.text-rr {
  left: 25.8rem;
  animation-delay: 630ms;
}
@media (max-width: 768px) {
  .text-rr{
    left: 23.5rem;
  }
}

/* Wave Effect */
.coast {
  position: absolute;
  left: 1.3rem;
  bottom: 1.7rem;
  width: 6.2rem;
  height: 2.2rem;
  display: inline-block;
  animation: coast 2100ms linear infinite;
  transform: translateZ(0);
}

.wave-rel-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 3rem;
  perspective-origin: 0% 50%;
}

.wave {
  position: absolute;
  width: 6.2rem;
  height: 2.2rem;
  border-radius: 1.1rem;
  background: radial-gradient(ellipse at center, rgba(116, 241, 252, 1) 0%, rgba(50, 230, 255, 1) 73%, rgba(21, 199, 250, 1) 100%);
  display: inline-block;
  animation: wave 2100ms linear infinite;
  will-change: width;
  transform: translateZ(0) scale(0);
}

.delay {
  animation-delay: 1050ms;
}

/* Keyframes */
@keyframes text {

  0%,
  30% {
    transform: translate3d(0, 0, 0);
  }

  45% {
    transform: translate3d(0, -4rem, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes text-w {
  0% {
    transform: translate3d(0, -4rem, 0);
  }

  38% {
    transform: translate3d(0, -4rem, 0);
  }

  69% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -4rem, 0);
  }
}

@keyframes coast {

  0%,
  23% {
    transform: translate3d(0, 0, 0);
  }

  50%,
  100% {
    transform: translate3d(16rem, 0, 0);
  }
}

@keyframes wave {
  0% {
    transform: scale(0);
    width: 2.2rem;
  }

  10% {
    transform: scale(1);
  }

  23% {
    width: 2.2rem;
  }

  32% {
    width: 6.1rem;
  }

  42% {
    width: 5rem;
    transform: rotateY(0deg) scale(1, 1);
  }

  51% {
    transform: rotateY(90deg) scale(0.6, 0.2);
  }

  52% {
    transform: rotateY(90deg) scale(0);
  }

  100% {
    transform: rotateY(90deg) scale(0);
  }
}

/* Form Code */
.contact-wrap {
  padding: 40px 0;
}

.contact-wrap .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form2 {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

.form2 form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form2 header {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.form2 header h1 {
  color: #fff;
  font-size: 1.7em;
  text-transform: uppercase;
}

.form2 header span {
  text-transform: uppercase;
  font-size: 0.8em;
  color: #fff;
  font-weight: 300;
}

.form2 header .hcen {
  text-align: center;
  padding-bottom: 10px;
}

.w600 {
  max-width: 600px;
}

@media (max-width: 501px) {
  .file #fileData {
    width: 60%;
  }

  .forms {
    padding: 50px 10px;
  }

  .form,
  .dataCard {
    width: 100%;
    padding: 30px 20px;
  }

  .bac {
    width: calc(100% - 40px);
  }
}

.input {
  width: 100%;
  display: flex;
  gap: 5px;
  flex-direction: column;
  position: relative;
}

.input label {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 10px;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.4em;
}

.input label::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 6px;
  left: 0;
  background-color: #5ebdba;
}

.input input[type=text],
.input input[type=number],
.input input[type=tel],
.input input[type=email],
.input input[type=file],
.input .in {
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 10px;
  color: #fff;
  font-size: 1em;
  border: none;
  outline: none;
  background-color: transparent;
  height: 40px;
  background-color: rgba(94, 189, 186, 0.14);
}

.input textarea {
  border: none;
  outline: none;
  background-color: transparent;
  width: 100%;
  height: 200px;
  padding: 10px;
  resize: none;
  background-color: rgba(94, 189, 186, 0.14);
  color: #fff;
  font-size: 1.1em;
}

.input .send .login {
  margin: 0 auto;
}

.input span {
  position: absolute;
  height: 40px;
  width: 6px;
  left: 0;
  background-color: #5ebdba;
  bottom: 0;
}

.input.ta span {
  height: 200px;
}

.checks {
  display: flex;
  gap: 20px;
}

.check {
  display: flex;
  align-items: center;
}

.check label::before {
  display: none;
}

.sendBtn button {
  width: 200px;
  height: 40px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  border: none;
  outline: none;
  background-color: transparent;
  background-color: #5ebdba;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: 0.2s;
}

.inp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 768px) {
  .inp {
    flex-direction: column;
  }
}

.text-form {
  color: white;
  font-size: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  font-weight: bold;
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 50px 0;
  background-color: #0c4f8c;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.footerLogo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footerLogo img {
  width: 250px;
  height: auto;
}

.footerLogo .aboutText {
  width: 400px;
}

.footerLogo .aboutText article p {
  font-size: 1em;
}

.footerLinkGroup {
  display: flex;
  gap: 100px;
}

.linkGroup {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.linkGroup h2 {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 5px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
}

.linkGroup h2::after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: #5ebdba;
}

.linkGroup ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
}

.linkGroup ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #fff;
  text-transform: uppercase;
  transition: 0.2s all ease;
  font-weight: 300;
}

.linkGroup ul li a img {
  width: 8px;
  -o-object-fit: contain;
  object-fit: contain;
}

.linkGroup ul li a:hover {
  color: #5ebdba;
}

.cont {
  width: 290px;
}

.cont ul li:nth-child(1) a {
  line-height: 1.5;
}

.cont ul li a {
  line-height: 2;
}

.cont ul li a img {
  width: 20px;
}

.media {
  display: flex;
  gap: 10px;
  transform: translateY(-10px);
}

.media a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-decoration: none;
  background-color: #fff;
}

.media a i {
  color: #0c4f8c;
  font-size: 1.3em;
  transition: 200ms all ease;
}

.media a:hover i {
  color: #5ebdba;
}

@media (max-width: 1001px) {
  .footer {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 601px) {
  .footerLinkGroup {
    flex-direction: column;
    gap: 30px;
  }

  .linkGroup {
    width: 100%;
  }

  .cont {
    width: 100%;
  }
}

@media (max-width: 421px) {
  .footerLogo img {
    width: 200px;
  }

  .footerLogo .aboutText {
    width: 100%;
  }
}

article {
  color: white;
}

.goTop {
  display: none;
  position: fixed;
  bottom: 5%;
  right: 20px;
  z-index: 5;
}

.goTop span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #1c1e22;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.251);
  cursor: pointer;
  transition: 0.2s;
}

.goTop span:hover {
  background-color: #0c4f8c;
}

.goTop span:hover i {
  color: #fff;
}

.goTop span i {
  color: #fff;
  font-size: 1.5em;
}

/* Head */

.head.color {
  background-color: #222429;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.251);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lan {
  display: flex;
  align-items: center;
  gap: 15px;
}

select {
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 10px;
  color: black;
  font-size: 1em;
  border: none;
  outline: none;
  background-color: transparent;
  height: 40px;
  background-color: rgba(94, 189, 186, 0.14);
  font-weight: bold;
}