@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --primary: #4460ef;
  --dark: #121b24;
  --body: #d8d8d8;
  --white: #ffffff;
  --dark-green: #043027;
  --green: #1baf20;
  --box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  color: var(--body);
}
/* Start NavBar  */
img {
  width: 100%;
}
.logo {
  width: 240px;
  font-weight: bold;
}

p {
  color: var(--dark);
}
h1,
h2,
h3,
h4,
h5,
h6,
.display-4 {
  color: var(--dark-green);
  font-weight: 700;
}
nav {
  background-color: var(--dark);
  color: #ffffff;
}
.navbar .nav-link {
  font-size: 14px;
  font-weight: 700;
}
.btn {
  padding: 10px 15px;
  border-width: 2px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  color: var(--white);
  background-color: var(--primary);
}
.btn:hover {
  background-color: var(--green);
  color: var(--white);
  transition: all 0.3s ease;
  border: 2px solid var(--body);
}
a {
  text-decoration: none;
}
.navbar {
  box-shadow: var(--box-shadow);
}
/* Landing BG */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 675px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.video-wrap {
  z-index: -100;
}
.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#txt {
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
  border-right: 2px solid;
  white-space: nowrap;
  width: 240px;
  animation: typewriter 5s steps(30) infinite, blink-cursor 5s step-end infinite;
  -webkit-animation: typewriter 5s steps(30) infinite,
    blink-cursor 5s step-end infinite;
}
@keyframes typewriter {
  0% {
    width: 0;
  }
  100% {
    width: 108%;
  }
}
@keyframes blink-cursor {
  0% {
    border-right-color: rgba(255, 255, 255, 0.75);
  }
  100% {
    border-right-color: transparent;
  }
}

/* Landing BG */
/* End NavBar  */
/* Start Services  */
.service {
  padding: 30px;
  background: var(--white);
  -webkit-box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 2px 0px rgba(0, 0, 0, 0.1);
  top: 0;
  border-radius: 15px;
  position: relative;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  transition: 0.3s all ease-in-out;
}
.service .svg-icon {
  margin-right: 20px;
}
.service .svg-icon img {
  width: 150px;
}
.service:hover {
  -webkit-box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
  top: -2px;
}
.service .service-number {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
}
.service .service-number span {
  position: relative;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: #e3d3c1;
  display: inline-block;
  color: #fff;
  text-align: center;
}
.service .service-about *:last-child {
  margin-bottom: 0;
}
.service .service-about h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
/* End Services  */
/* Start Features */
.icon-feature {
  font-size: 4rem;
  color: var(--primary);
}
.features-device-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.features-device-mockup .circle {
  position: absolute;
  fill: url(#circleGradient);
  width: 78%;
  z-index: -1;
  clip-path: inset(0 50% 0 0);
  left: -15%;
  top: 22%;
}

.features-device-mockup .circle .gradient-start-color {
  stop-color: #2937f0;
}
.features-device-mockup .circle .gradient-end-color {
  stop-color: #9f1ae2;
}
.features-device-mockup .shape-1 {
  position: absolute;
  height: 2rem;
  width: 1.5rem;
  transform: rotate(10deg);
  fill: #2937f0;
  top: 15%;
  right: -15%;
}
.features-device-mockup .shape-2 {
  position: absolute;
  height: 1.75rem;
  width: 1.75rem;
  fill: #2937f0;
  bottom: 15%;
  left: 10%;
}

/* End Features */
/* Start Projects */
.project {
  position: relative;
  overflow: hidden;
}
#project-filters {
  padding: 0;
  margin: 0;
  list-style: none;
}

#project-filters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 5px;
  padding: 10px 20px;
  color: #444;
  font-weight: 600;
}

#project-filters li:hover:not(.filter-active) {
  color: var(--primary);
}
.project .box {
  padding: 5px;
  overflow: hidden;
  position: relative;
}
.project .overlay {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 30%;
  bottom: -20%;
  background-color: var(--dark-green);
  padding: 20px;
  display: flex;
  text-align: center;
  margin: auto;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  opacity: 0;
}
.project img {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.project:hover .overlay {
  opacity: 1;
}
.project:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
/* End Projects */
/* Start Pricing  */

.card {
  position: relative;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin: 0 auto;
  padding: 40px 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  overflow: hidden;
}

.card:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  margin: 0 auto;
}

.col-sm-4:nth-child(1) .card,
.col-sm-4:nth-child(1) .card .title .bi {
  background: linear-gradient(-45deg, #f0f0f0, #808080);
}

.col-sm-4:nth-child(2) .card,
.col-sm-4:nth-child(2) .card .title .bi {
  background: linear-gradient(-45deg, #ffeb3b, #ffc107);
}

.col-sm-4:nth-child(3) .card,
.col-sm-4:nth-child(3) .card .title .bi {
  background: linear-gradient(-45deg, #b2e0f0, #4a90e2);
}

.card:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  transform: skewY(-5deg) scale(1.5);
  -webkit-transform: skewY(-5deg) scale(1.5);
  -moz-transform: skewY(-5deg) scale(1.5);
  -ms-transform: skewY(-5deg) scale(1.5);
  -o-transform: skewY(-5deg) scale(1.5);
}

.title .bi {
  color: var(--white);
  font-size: 60px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-align: center;
  line-height: 100px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

.title h2 {
  position: relative;
  margin: 20px 0 0;
  padding: 0;
  color: var(--white);
  font-size: 28px;
  z-index: 2;
}

.price {
  position: relative;
  z-index: 2;
}

.price h4 {
  margin: 0;
  padding: 20px 0;
  color: var(--white);
  font-size: 60px;
}

.option {
  position: relative;
  z-index: 2;
}

.option ul {
  margin: 0;
  padding: 0;
}

.option ul li {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  color: var(--dark);
  font-size: 16px;
}

.card a {
  position: relative;
  z-index: 2;
  background: var(--white);
  color: var(--primary);
  width: 150px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  display: block;
  text-align: center;
  margin: 20px auto 0;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.card a:hover {
  text-decoration: none;
  background: var(--primary);
  color: var(--white);
}
/*End Pricing   */
/* Start Contact  */
.wrapper1 {
  max-width: 350px;
  min-height: 500px;
  margin: 80px auto;
  padding: 40px 30px 30px 30px;
  background-color: #ecf0f3;
  border-radius: 15px;
  box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
}

.logo-info {
  width: 80px;
  margin: auto;
}

.logo-info img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px 0px 3px #5f5f5f, 0px 0px 0px 5px #ecf0f3, 8px 8px 15px #a7aaa7,
    -8px -8px 15px #fff;
}

.wrapper1 .name {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 1.3px;
  padding-left: 10px;
  color: #555;
}

.wrapper1 .form-field input {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  background: none;
  font-size: 1.2rem;
  color: #666;
  padding: 10px 15px 10px 10px;
}

.wrapper1 .form-field {
  padding-left: 10px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
}

.wrapper1 .form-field .fas {
  color: #555;
}

.wrapper1 .btn {
  box-shadow: none;
  width: 100%;
  height: 40px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 25px;
  box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #fff;
  letter-spacing: 1.3px;
}

.wrapper1 .btn:hover {
  background-color: var(--dark-green);
  color: var(--white);
}

.wrapper1 a {
  text-decoration: none;
  font-size: 0.8rem;
  color: #03a9f4;
}

.wrapper1 a:hover {
  color: var(--dark-green);
}

@media (max-width: 380px) {
  .wrapper1 {
    margin: 30px 20px;
    padding: 40px 15px 15px 15px;
  }
}
/* End Contact */
/* Start Footer   */
form input.form-control {
  height: 56px;
}
form .form-control {
  border: transparent;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.02);
}
.footer-top {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: var(--dark);
}
.footer-top a {
  color: var(--body);
}
.footer-top a:hover {
  color: var(--white);
}
.footer-bottom {
  background-color: var(--primary);
}
.edit {
  font-size: 30px;
  font-weight: bolder;
  font-family: "Montserrat", sans-serif;
  margin: 10px;
  color: var(--dark);
}
.icon-footer {
  font-size: 25px;
  font-weight: bold;
  margin: 10px;
}
.icon-footer:hover {
  color: var(--dark-green);
}
/* End Footer   */
