@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
}

*::after, ::before {
  box-sizing: border-box;
}

::-moz-selection {
  background: #001328;
  color: #ffffff;
}

::selection {
  background: #001328;
  color: #ffffff;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-size: cover;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  overflow: hidden;
}
body .heading {
  font-family: "Montserrat", sans-serif;
}
body .paragraph {
  font-family: "Roboto", sans-serif;
  color: #37474f;
}
body nav {
  top: 0;
  width: 100%;
  height: 70px;
  position: fixed;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 999999999;
}
body nav .logo {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  color: #37474f;
  font-size: 20px;
  gap: 10px;
}
body nav .logo img {
  width: inherit;
  height: inherit;
}
body nav .links {
  width: 40%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
body nav .btn {
  color: #001328;
  background: #ffffff;
  padding: 10px;
}
body .circle {
  background: #002855;
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  position: absolute;
}
body .circle:nth-child(1) {
  width: 400px;
  height: 400px;
  left: 100px;
  bottom: -50px;
}
body .circle:nth-child(3) {
  width: 300px;
  height: 300px;
  right: 200px;
  top: -50px;
}
body .circle:nth-child(5) {
  width: 200px;
  height: 200px;
  right: 400px;
  bottom: 50px;
}
body .call {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .call form {
  position: relative;
  width: 70%;
  height: 80%;
  background: transparent;
  border: 2px solid #b0bec5;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  flex-wrap: wrap;
}
body .call form .bg {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(20px);
  position: absolute;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
}
body .call form .inputs {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  flex-wrap: wrap;
  flex-shrink: 1;
  gap: 20px;
}
body .call form .inputs input {
  height: 40px;
  border: none;
  outline: none;
  border-bottom: #001328 2px solid;
  background-color: transparent !important;
  z-index: 3;
  font-size: 20px;
  padding-left: 10px;
  transition: 1000000s;
  color: #37474f;
  flex: 1 0 40px;
}
body .call form .inputs textarea {
  width: 100%;
  height: 130px;
  border: none;
  outline: none;
  border-bottom: #001328 2px solid;
  background-color: transparent !important;
  resize: none;
  z-index: 3;
  font-size: 20px;
  padding-left: 10px;
  color: #37474f;
  flex: 1 0 90%;
}
body .call form .inputs button {
  height: 45px;
  border: none;
  outline: none;
  background: #001328;
  color: #ffffff;
  flex: 1 0 100%;
  z-index: 3;
  cursor: pointer;
  font-size: 20px;
}/*# sourceMappingURL=contactus.css.map */